ROOT logo
2008-01-16 21:30  brun

	* [r21745] base/inc/RVersion.h, build/version_number: Stamp
	  production version 5.18/00

2008-01-16 20:47  pcanal

	* [r21744] io/inc/TContainerConverters.h,
	  io/inc/TGenCollectionStreamer.h, io/inc/TMakeProject.h,
	  io/src/TBufferFile.cxx, io/src/TContainerConverters.cxx,
	  io/src/TFile.cxx, io/src/TGenCollectionStreamer.cxx,
	  io/src/TMakeProject.cxx, io/src/TStreamerInfo.cxx,
	  meta/src/TStreamerElement.cxx: Correct the schema evolution from
	  a map<A,B> to a
	  (non map, non multimap) collection of pair<A,B>
	  (i.e vector<pair<A,B> >) when it is held by value
	  in an object (as opposed to by pointer).
	  
	  Conversion from vector<pair<A<B> > to map<A,B> is
	  now explicitly disabled (i.e. the vector will not be read).
	  
	  Conversion for a map<A,B>* to a vector<pair<A,B> >* is
	  now explicitly disabled (i.e. the map will not be read).
	  
	  TFile::MakeProject has been updated to generate the
	  needed dictionary for the pair.

2008-01-16 19:49  brun

	* [r21743] tutorials/eve/alice_esd.C: From Matevz:
	  retain track_container across several events so the user settings
	  remain the same. Rename variable 'TEveTrackPRopagator* rnrStyle'
	  to trkProp.

2008-01-16 19:48  brun

	* [r21742] eve/src/TEveTrack.cxx: From Matevz:
	  TEveTrack::SetAttLineAttMarker(TEveTrackList* tl): also copy the
	  state of fRnrPoints and fRnrLines flags.

2008-01-16 19:04  brun

	* [r21741] io/src/TFile.cxx: Change MAKE to MAKEP on Windows too.

2008-01-16 18:28  brun

	* [r21739] tutorials/eve/alice_esd.C: From Bertrand, Matevz, Rene:
	  Improved version with documentation and running on all systems.

2008-01-16 18:26  brun

	* [r21738] io/src/TFile.cxx: In TFile::MakeProject change the name
	  of the small generated makefile MAKE to MAKEP.
	  The reason is that MACOSX is not case sensitive and when calling
	  gSystem->Exec, make
	  instead of MAKE was called (depending on the search path).
	  We intend to replace the MAKEP par a direct use of ACLIC instead.

2008-01-16 17:12  rdm

	* [r21737] Makefile: in distclean clean up the cache directories
	  "files" in tutorials and also
	  tutorials/eve/aliesd.

2008-01-16 17:02  rdm

	* [r21736] net/inc/TWebFile.h, net/src/TWebFile.cxx: correct
	  comment that mentioned a "modified" apache is needed, which is
	  not the case anymore.

2008-01-16 16:54  brun

	* [r21735] io/src/TFile.cxx, io/src/TStreamerInfo.cxx,
	  tutorials/eve/alice_esd.C: from Bertrand and Axel:
	  * fix MakeProject build (also, but not only on windows):
	  - replace $Opt by opt / debug (whatever the ROOT build is),
	  - include dict in generated source instead of having to deal with
	  two dources = two object files (which is not really supported by
	  the ACLiC-like build commands)
	  * Always write out a class version higher thn what we are trying
	  to reproduce. E.g. in case of members of type enum (which are
	  generated as members of type int), the checksum equality check
	  will fail, and a complaint ("increase the class version!") will
	  be printed otherwise.

2008-01-16 16:23  brun

	* [r21734] treeplayer/src/TTreePlayer.cxx: From Jan:
	  Fixed 4 typos in comments in generated selectors.

2008-01-16 16:21  brun

	* [r21733] eve/src/TEveTransEditor.cxx: From Alja:
	  fixed the TEveTransEditor so that it does not evoke scroll-bars
	  with standard editor width.

2008-01-16 15:56  matevz

	* [r21732] tutorials/eve/alice_esd.C: New tutorial demonstrating
	  standalone visualization of ALICE ESD.
	  
	  TFile::MakeProject() is used to generate the header files and
	  distionaries of used ALICE classes.

2008-01-16 15:16  brun

	* [r21731] treeplayer/src/TTreeIndex.cxx: Fix an unfortunate error
	  in the documentation of the TTreeIndex constructor
	  reported by David Chamont at
	  :http://root.cern.ch/phpBB2/viewtopic.php?t=6036

2008-01-16 11:38  brun

	* [r21730] roofitcore/src/RooAbsOptTestStatistic.cxx: From Wouter:
	  Protect against null strings

2008-01-16 09:38  brun

	* [r21729] tutorials/geom/geomD0.C: Add new tutorial showing the D0
	  detector

2008-01-16 06:28  brun

	* [r21728] tutorials/geom/geomAtlas.C, utils/src/rootcint.cxx: Fix
	  coding conventions

2008-01-16 05:39  pcanal

	* [r21727] cint/src/v6_ifunc.cxx: From Paul:
	  Change the behavior of G__get_methodhandle() when passed
	  withConversion == 0.
	  
	  The old behavior was to call G__get_ifunchandle_base() with a
	  match parameter of G__EXACT, and if that failed then try to
	  instantiate a function template, with exact match, and if that
	  failed then loop calling G__get_ifuncandle_base() with
	  parameters from G__EXACT up to and including G__STDCONV. This
	  meant that we could match a function that did not exactly
	  match the passed prototype (and we called with G__EXACT
	  twice!).
	  
	  The new behavior is to return in failure if the function
	  template instantiation attempt fails to find a match, the loop
	  trying the integral promotions and standard conversions is not
	  done.
	  
	  So we must match the passed prototype exactly (unless the
	  template instantiation codes does something weird we do not
	  know about).
	  
	  This fixes:
	  
	  http://root.cern.ch/phpBB2/viewtopic.php?p=24563

2008-01-16 05:38  pcanal

	* [r21726] treeplayer/src/TTreeProxyGenerator.cxx: Mark the
	  function declared outside of the class declaration as inline. Use
	  the correct header file name for multimap and multiset

2008-01-16 05:37  pcanal

	* [r21725] meta/src/TStreamerElement.cxx: Once reloading a
	  TStreamerElement for a basic type, we must reset fSize to match
	  the sizeof. This is a problem for emulated classes as shown by
	  running valgrind on roottest/root/tree/addresses/runursula.C

2008-01-15 21:40  rdm

	* [r21724] asimage/src/TASImage.cxx,
	  pyroot/src/TPyClassGenerator.cxx: fix strict-aliasing warnings.

2008-01-15 21:39  rdm

	* [r21723] cint/Module.mk: suppress strict aliasing warnings from
	  gcc4strm.

2008-01-15 17:51  brun

	* [r21722] tutorials/eve/geom_cms.C: From Matevz:
	  New tutorial showing CMS geometry.

2008-01-15 17:34  rdm

	* [r21721] unix/src/TUnixSystem.cxx: add specific code for MacOS X
	  to get all .dylib's against which the application
	  is linked. This should fix the long standing problem of hadd
	  failing.
	  It uses _dyld_register_func_for_add_image() API from dyld(3).

2008-01-15 17:29  rdm

	* [r21720] rpdutils/src/net.cxx: use static_cast<> instead of
	  reinterpret_cast<>.

2008-01-15 17:28  rdm

	* [r21719] base/src/TSystem.cxx: typo in comments.

2008-01-15 17:10  brun

	* [r21718] gl/inc/TGLClipSetEditor.h, gl/src/TGLClipSetEditor.cxx,
	  gl/src/TGLSAViewer.cxx, gl/src/TGLViewer.cxx,
	  gl/src/TGLViewerEditor.cxx: From Matevz:
	  Added tooltip for scene-render timeouts.
	  Small improvement of manipulator description in help-text.
	  Added reset button for current clip.

2008-01-15 17:08  brun

	* [r21717] tree/src/TTree.cxx: From Jan:
	  Fix two typos in comments of TTree::MakeSelector

2008-01-15 16:54  rdm

	* [r21716] pyroot/Module.mk: From Axel:
	  patch allowing to use Python >= 2.5 on Windows (sic).
	  For the record:
	  from http://docs.python.org/whatsnew/ports.html:
	  .dll is no longer supported as a filename extension
	  for extension modules. .pyd is now the only filename
	  extension that will be searched for.
	  (no comments)
	  Thanks to Wim for pointing out this.

2008-01-15 15:30  brun

	* [r21715] clib/src/mmtrace.c, config/Makefile.win32: From Axel:
	  Fix several warnings for Windows

2008-01-15 11:12  moneta

	* [r21713] minuit/src/TFitter.cxx, minuit/src/TLinearFitter.cxx: -
	  fix a bug in getting the confidence intervals in an histogram of
	  TGraph2D
	  - use the 2-side confidence interval for the passed values in the
	  methods not the 1 side.

2008-01-15 10:34  brun

	* [r21712] io/src/TMakeProject.cxx,
	  treeplayer/src/TTreeFormula.cxx: From Gerri:
	  The trunk is currently broken on SLC3 because the recently
	  introduced usage of 'tolower'
	  in treeplayer/src/TTreeFormula.cxx and 'isdigit' in
	  io/srcTMakeProject.cxx require the
	  inclusion of 'ctype.h'.

2008-01-15 10:06  brun

	* [r21711] test/stressGeometry.cxx: In WriteRef remove the TVectorD
	  allocated in the stack from Tree.GetUserInfo

2008-01-15 08:43  ganis

	* [r21710] proofd/inc/XrdProofSched.h: Include XrdProofdAux.h to
	  fully define XrdProofdDirective; this class is used in
	  the hash table and the forward declaration is not sufficient.
	  This should also fix a compilation problem on macosx 10.3 .

2008-01-15 08:07  pcanal

	* [r21709] treeplayer/inc/TBranchProxy.h: remove warning

2008-01-15 08:04  pcanal

	* [r21708] treeplayer/inc/TBranchProxy.h,
	  treeplayer/inc/TBranchProxyTemplate.h,
	  treeplayer/src/TBranchProxyClassDescriptor.cxx: Prevent ambiguity
	  regarding operator[]

2008-01-15 05:36  pcanal

	* [r21707] treeplayer/src/TBranchProxyClassDescriptor.cxx: readd
	  operator* to allow access to vector<vector<double> >

2008-01-15 00:18  rdm

	* [r21706] base/Module.mk: also suppress strict-alias warnings in
	  TContextMenu.cxx under g++ 4.1.

2008-01-14 23:00  pcanal

	* [r21705] treeplayer/inc/TBranchProxyTemplate.h: remove superflous
	  typename keyword (fatal with gcc but works with microsoft C++)

2008-01-14 22:52  pcanal

	* [r21704] treeplayer/inc/TBranchProxyClassDescriptor.h,
	  treeplayer/inc/TBranchProxyTemplate.h,
	  treeplayer/src/TBranchProxyClassDescriptor.cxx,
	  treeplayer/src/TTreeProxyGenerator.cxx: more fixes for
	  vector<double> and vector<vector<double> >

2008-01-14 20:29  brun

	* [r21703] gl/src/TGLViewerEditor.cxx: From Bertrand:
	  - Fix a problem of TGLViewerEditor labels not being displayed on
	  Windows

2008-01-14 18:55  matevz

	* [r21702] gl/inc/TGLBoundingBox.h, gl/inc/TGLContextPrivate.h,
	  gl/inc/TGLScene.h, gl/inc/TGLSceneBase.h, gl/inc/TGLViewer.h,
	  gl/inc/TGLViewerEditor.h, gl/inc/TGLWidget.h, gl/src/TF2GL.cxx,
	  gl/src/TGLAxis.cxx, gl/src/TGLCamera.cxx,
	  gl/src/TGLLogicalShape.cxx, gl/src/TGLScene.cxx,
	  gl/src/TGLSceneBase.cxx, gl/src/TGLTF3Painter.cxx,
	  gl/src/TGLUtil.cxx, gl/src/TGLViewer.cxx,
	  gl/src/TGLViewerBase.cxx, gl/src/TGLViewerEditor.cxx,
	  gl/src/TH2GL.cxx: In TGLScene/TGLViewer add two timeouts for
	  high-quality and
	  low-quality (during rotation etc) scene rendering. Expose both
	  time
	  limits via TGLViewerEditor.
	  
	  In TGLCamera::OfInterest() remove redundant test for
	  physical-shape
	  bbox volume and optimize the remaining bbox diagonal length test.
	  
	  Remove blanks from the eols.

2008-01-14 17:24  rdm

	* [r21701] base/Module.mk: silence type-punned warning in
	  TString.cxx for gcc 4.1.

2008-01-14 17:15  ganis

	* [r21700] xrootd/src/xrootd-20071116-0000.src.tgz: From Bertrand:
	  - Silence a few more warnings:
	  LNK4006: __NULL_IMPORT_DESCRIPTOR already defined [...];
	  second definition ignored
	  LNK4221: no public symbols found; archive member will be
	  inaccessible (only with MSVC++ > 7.1)

2008-01-14 16:26  brun

	* [r21699] clib/src/mmcheck.c: From Axel:
	  Fixes mmcheck warnings on Windows.

2008-01-14 15:57  brun

	* [r21698] geom/src/TGeoPgon.cxx: From Andrei:
	  Add a protection in TGeoPgon::Safety found by running
	  stressGeometry under valgrind by Axel.

2008-01-14 15:56  axel

	* [r21697] reflex/python/genreflex/genreflex.py: cl puts its
	  version info into cerr; capture it from there (instead of issuing
	  a warning).

2008-01-14 15:49  brun

	* [r21695] tree/src/TTree.cxx: From Jan:
	  Fix a typo in documentation

2008-01-14 14:56  couet

	* [r21693] test/stressGraphics.ref: - small adjusment for Mac.

2008-01-14 14:00  rdm

	* [r21691] config/Makefile.win32: From Axel:
	  cint\src\bc_exec.cxx(305) : warning C4297:
	  'G__bc_exec_throw_bytecode' : function assumed not to throw an
	  exception but does
	  
	  is fixed in >= MSVC2003 by correcting -GX or -EHa to -EHsc-
	  ("exceptions only generated by throw(), even extern C functions
	  can throw"). With -GX, extern C functions are not allowed to
	  throw(). -EHa was used for >= MSVC2005, even though it's not
	  appropriate (my mistake).

2008-01-14 13:59  rdm

	* [r21690] config/thisroot.sh: From Axel:
	  nly windowsify ROOTSYS if != win32gcc.

2008-01-14 13:18  brun

	* [r21689] tmva/src/Configurable.cxx, tmva/src/FitterBase.cxx,
	  tmva/src/MethodBase.cxx, tmva/src/PDF.cxx, tmva/src/Reader.cxx,
	  tmva/src/TNeuron.cxx: Remove warnings like :"warning C4355:
	  'this' : used in base member initializer list"
	  by adding a pragma statement.

2008-01-14 12:32  ganis

	* [r21686] xrootd/src/xrootd-20071116-0000.src.tgz: From Bertrand
	  and me:
	  - Fix a few other compilation warnings
	  - Add support for MSVC++9.0 (.NET 2008)

2008-01-14 12:30  ganis

	* [r21685] xrootd/Module.mk: From Bertrand:
	  fix warning "LNK4098: defaultlib 'MSVCRTD' conflicts with use of
	  other libs;"
	  when building root in debug mode with the option
	  --disable-winrtdebug

2008-01-14 11:34  brun

	* [r21683] tmva/src/Configurable.cxx, tmva/src/FitterBase.cxx,
	  tmva/src/MethodBase.cxx, tmva/src/PDF.cxx, tmva/src/Reader.cxx,
	  tmva/src/TNeuron.cxx: Undo previous changes.

2008-01-14 11:20  brun

	* [r21681] tmva/src/Reader.cxx: Fix a remaining warning

2008-01-14 11:09  brun

	* [r21680] tmva/src/Configurable.cxx, tmva/src/FitterBase.cxx,
	  tmva/src/MethodBase.cxx, tmva/src/PDF.cxx, tmva/src/Reader.cxx,
	  tmva/src/TNeuron.cxx: Fix warnings on Windows of the type:
	  "warning C4355: 'this' : used in base member initializer list"

2008-01-14 11:08  brun

	* [r21679] hbook/src/THbookFile.cxx: Fix compiler warning

2008-01-14 10:29  ganis

	* [r21678] rpdutils/src/net.cxx: fix type-punned warning

2008-01-14 09:35  rdm

	* [r21676] net/src/TMessage.cxx: fix type-punned warning.

2008-01-14 09:28  rdm

	* [r21675] tmva/inc/MethodCuts.h, tmva/inc/TActivationIdentity.h,
	  tmva/src/MethodCuts.cxx, tmva/src/MethodVariable.cxx: fix
	  warning: empty body in an if-statement

2008-01-14 08:07  brun

	* [r21674] x3d/src/x3d.c: Fix 23 warnings: "dereferencing
	  type-punned pointer will break strict-aliasing rules"

2008-01-14 07:59  brun

	* [r21673] castor/src/TCastorFile.cxx: Fix 3 warnings:
	  "dereferencing type-punned pointer will break strict-aliasing
	  rules"

2008-01-14 07:55  brun

	* [r21672] table/src/TTableSorter.cxx: Fix warning: "dereferencing
	  type-punned pointer will break strict-aliasing rules"

2008-01-14 07:53  brun

	* [r21671] asimage/src/TASImage.cxx: Fix warnings: dereferencing
	  type-punned pointer will break strict-aliasing rules"

2008-01-14 07:38  brun

	* [r21670] treeplayer/src/TTreePlayer.cxx: Fix documentation errors
	  in TTreePlayer::DrawSelect

2008-01-13 14:06  wouter

	* [r21669] roofit/src/RooNDKeysPdf.cxx: o RooNDKeysPdf
	  
	  - Add class documentation and document constructors

2008-01-13 14:06  wouter

	* [r21668] roofitcore/inc/RooSharedPropertiesList.h,
	  roofitcore/src/RooFFTConvPdf.cxx, roofitcore/src/RooRealVar.cxx,
	  roofitcore/src/RooSharedPropertiesList.cxx,
	  roofitcore/src/RooWorkspace.cxx: o RooSharedPropertiesList
	  
	  - Extend registerProperties() to take additional argument to
	  control deletion of incoming duplicate objects
	  
	  
	  o RooRealVar
	  
	  - Use deletion control argument of registerProperties() in
	  streamer
	  
	  
	  o RooWorkspace
	  
	  - When importing data, check if observable is already imported
	  before
	  attempting (eliminates superfluous ERROR message)
	  
	  
	  o RooFFTConvPdf
	  
	  - Add more detailed instructions of installation and use of
	  FFTW package with ROOT in class documentation

2008-01-13 12:40  brun

	* [r21667] main/src/pmain.cxx, main/src/proofserv.sh: From Gerri:
	  - improved description for the usage of PROOF_INITCMD
	  - improve notification when when using dynamic environment
	  settings
	  fixes: issue on the PROOF forum (21 Dec 2007: 'change environment
	  variables in proof')

2008-01-13 12:39  brun

	* [r21666] proof/src/TProofServ.cxx: From Gerri:
	  - remove <package>/PROOF-INF/proofvers.txt when updating the
	  package tarball
	  - save again the MD5 if the package is rebuilt
	  - fix bug in adding standard paths to PATH
	  fixes: bug #32529

2008-01-13 12:39  brun

	* [r21665] netx/inc/TXNetFile.h, netx/src/TXNetFile.cxx: From
	  Gerri:
	  - fix problem with setting the xrootd cache parameters per
	  instance
	  fixes: problem reported privately by ALICE

2008-01-13 12:38  brun

	* [r21664] auth/Module.mk, auth/src/AFSAuth.cxx,
	  config/Makefile.in, configure: From Gerri:
	  - improved configuration of AFS
	  - add support for AFS >= 1.4.5 (current stable version)
	  fixes: bug #32552

2008-01-13 12:37  brun

	* [r21663] xrootd/Module.mk: From Gerri:
	  - fix a problem with trasmission of non-default AFS and SSL
	  include directories
	  fixes: bug #32450

2008-01-13 12:35  brun

	* [r21662] xrootd/src/xrootd-20071116-0000.src.tgz: From Gerri:
	  1. xrootd/src/xrootd-20071116-0000.src.tgz
	  - fix several warnings from gcc >= 4.1.1 and windows VC compilers
	  - improved configuration of AFS (fixes bug #32552)

2008-01-13 06:07  pcanal

	* [r21661] treeplayer/src/TTreeProxyGenerator.cxx: use a better
	  proxy type for the top level vector of fundamental type

2008-01-13 04:18  pcanal

	* [r21660] treeplayer/src/TBranchProxyClassDescriptor.cxx,
	  treeplayer/src/TBranchProxyDescriptor.cxx,
	  treeplayer/src/TTreeProxyGenerator.cxx: fix support for
	  std::vector of fundamental help in a top level branch

2008-01-13 00:25  pcanal

	* [r21659] tree/src/TBranchElement.cxx: Remove a few TBasket
	  creations that are no longer needed (this was a memory leak

2008-01-13 00:08  pcanal

	* [r21658] io/src/TMakeProject.cxx: coding conventions

2008-01-12 17:14  brun

	* [r21657] tutorials/fit/fitExclude.C: Remove the two created
	  functions from the list of global functions.
	  To avoid a double delete when TROOT destructor is called.

2008-01-12 09:08  pcanal

	* [r21656] cint/src/v6_ifunc.cxx, meta/src/TClass.cxx: cint: From
	  Scott Snyder, remove a memory leak in G__make_ifunctable
	  See http://savannah.cern.ch/bugs/?32609 from details
	  
	  meta: In BuildRealData, in addition to forcing the build of the
	  list of real data for the base classes, we need to force the
	  build of the list of real data for the type of the data member
	  which are embedded objects. Their type could also inherits from
	  an abstract base class.
	  This solves a problem where the list of real data of an abstract
	  class was requested before the same list was requested for one of
	  the derived class.
	  For example this cases occurs if you have a tree with a branch
	  containing a split vector<Contained> and Contained has a
	  sub-object whose class inherits from an abstract which contains
	  data members. In this case, the derived class's list of real data
	  was never constructed because there is no BranchElement actually
	  holding 'just' the embedded object (this conceptual branch has
	  been unrolled).
	  See the 'abstract' test in roottest/root/tree/split

2008-01-12 04:58  pcanal

	* [r21655] tree/src/TLeafL.cxx: correct typo in comment

2008-01-12 04:55  pcanal

	* [r21654] tree/src/TLeafL.cxx: Correct the sizeof long long leaf
	  data

2008-01-11 20:23  matevz

	* [r21653] eve/inc/LinkDef.h, eve/inc/TEveGLUtil.h,
	  eve/inc/TEveLineGL.h, eve/inc/TEveStraightLineSetGL.h,
	  eve/inc/TEveTrackGL.h, eve/src/TEveGLUtil.cxx,
	  eve/src/TEveLineGL.cxx, eve/src/TEveStraightLineSetGL.cxx,
	  eve/src/TEveTrackGL.cxx, eve/src/TEveTrackProjectedGL.cxx,
	  eve/src/TEveTriangleSetGL.cxx, gl/inc/TGLRnrCtx.h,
	  gl/inc/TGLUtil.h, gl/inc/TPointSet3DGL.h, gl/src/TGLRnrCtx.cxx,
	  gl/src/TGLUtil.cxx, gl/src/TPointSet3DGL.cxx,
	  tutorials/eve/lineset_test.C, tutorials/eve/pointset_test.C: Move
	  code for rendering of poly-markers and poly-lines from TEveGLUtil
	  to TGLUtil and remove TEveGLUtil class.
	  
	  Extend picking region also for fat lines so that lines can be
	  picked
	  also on their edges not only at the very center.
	  
	  Fix rendering of anitaliased points in TEveStraightLineSetGL.
	  
	  Honour wireframe and outline modes in TEveTriangleSetGL.
	  
	  Add new tutorial pointset_test.C.

2008-01-11 17:13  matevz

	* [r21652] eve/inc/TEveManager.h, eve/src/TEveBrowser.cxx,
	  eve/src/TEveElement.cxx, eve/src/TEveGedEditor.cxx,
	  eve/src/TEveGeoNode.cxx, eve/src/TEveManager.cxx,
	  eve/src/TEveProjectionManager.cxx, eve/src/TEveTrack.cxx,
	  eve/src/TEveTrackEditor.cxx, eve/src/TEveViewer.cxx: Cleanup
	  includes in TEveManager.h and add them in cxx files that actually
	  need them.

2008-01-11 17:11  matevz

	* [r21651] gl/inc/TGLOrthoCamera.h, gl/inc/TGLSAViewer.h,
	  gl/inc/TGLViewer.h, gl/src/TGLOrthoCamera.cxx,
	  gl/src/TGLSAViewer.cxx, gl/src/TGLViewer.cxx: Introduce option
	  for toggling dolly/zoom behaviour for orthographic
	  camera.
	  
	  Expose this and optional rotation in ortho camera via menu
	  entries in
	  TGLSAViewer.

2008-01-11 16:53  couet

	* [r21650] histpainter/src/TPainter3dAlgorithms.cxx: - Implement
	  option "0" for polar coordinates.

2008-01-11 16:19  brun

	* [r21649] clib/src/snprintf.c: From Axel:
	  Don't compile clib's snprintf implementation if it's not used.
	  Removes warning on linux AMD64 (pointer conversion) as a
	  side-effect.
	  Until now, we were compiling snprintf.c even though we did not
	  use its functions (we re-#defined them to e.g. r__snprintf so
	  they don't clash with glibc's). This patch skips the functions
	  (#if...#endif) if clib's snprintf is not needed on the platform.
	  I have tested it on MSVC 7.1, 9.0, linux AMD64.

2008-01-11 16:16  couet

	* [r21648] histpainter/inc/Hoption.h,
	  histpainter/src/THistPainter.cxx,
	  histpainter/src/TPainter3dAlgorithms.cxx: - When used with any
	  LEGO option, the option "0" allows to not draw the empty
	  bins.

2008-01-11 15:55  moneta

	* [r21646] mathcore/inc/Math/GenVector/Transform3D.h,
	  mathcore/inc/Math/GenVector/Translation3D.h,
	  mathcore/src/Transform3D.cxx, mathcore/test/testGenVector.cxx: -
	  add methods to make a Transform3D class from any rotation type
	  (request from LHCb)
	  - add also test for these new methods

2008-01-11 15:52  matevz

	* [r21645] tutorials/eve/geom_alias.C,
	  tutorials/eve/geom_alice_its.C, tutorials/eve/geom_alice_tpc.C,
	  tutorials/eve/geom_atlas.C, tutorials/eve/geom_default.C: New
	  tutorials demonstrating how to display TGeo geometries in Eve.

2008-01-11 15:51  matevz

	* [r21644] eve/inc/TEveManager.h, eve/src/TEveManager.cxx: Do not
	  check if geometry file is readable before calling
	  TGeoManager::Import() as it does not work for remote files (http
	  in
	  particular).
	  
	  Add option to assign aliases for geometries and to specify the
	  default
	  geometry.

2008-01-11 15:48  matevz

	* [r21643] gl/src/TGLClipSetEditor.cxx: In SetModel() fully update
	  the clip state in case it was changed from outside.

2008-01-11 14:55  rdm

	* [r21642] tree/inc/TVirtualTreePlayer.h: correct class description
	  comment.

2008-01-11 14:23  rdm

	* [r21641] meta/src/TCint.cxx: small typos in comments.

2008-01-11 14:20  rdm

	* [r21640] etc/valgrind-root.supp: From Axel:
	  Suppress bogus valgrind report on CINT's G__rate_parameter_match.

2008-01-11 10:48  brun

	* [r21639] hist/src/THnSparse.cxx: From Silvia Arcelli: in
	  projections, reset TAxis::kAxisRange bit instead of manually
	  bringing the coordinates into range for the target dimensions.

2008-01-11 10:38  moneta

	* [r21638] mathmore/test/Makefile, mathmore/test/UnuRanDist.h: fix
	  a Windows compilation problem in the tests

2008-01-11 09:56  moneta

	* [r21637] mathmore/inc/Math/Interpolator.h,
	  mathmore/src/GSLInterpolator.cxx, mathmore/src/GSLInterpolator.h,
	  mathmore/src/Interpolator.cxx,
	  mathmore/test/testInterpolation.cxx: - add possibility to set
	  data in interpolation object after having constructed
	  (request expressed at
	  http://root.cern.ch/phpBB2/viewtopic.php?t=5978 )
	  - use now as default CSPLINE
	  - add also some clean-up of the GSLINterpolator class.

2008-01-11 08:26  brun

	* [r21636] io/src/TMakeProject.cxx: Fix a compiler warning and
	  coding conventions

2008-01-10 21:58  pcanal

	* [r21633] cint/lib/dll_stl/cmplx.h, cint/src/v6_struct.cxx,
	  meta/src/TCint.cxx: cint: add option noerror==4 to
	  G__defined_tagname: only check for
	  existing classes, no typedefs. Use that when returning the
	  auto-load
	  libraries for a class.
	  cint: add missing update from cint v5-16-29
	  TCint: re-enable check for declaring class in rootmap setter,
	  reverting
	  r21611 to r21609.

2008-01-10 21:03  pcanal

	* [r21632] clib/src/snprintf.c: undo 21610

2008-01-10 20:03  wouter

	* [r21631] roofitcore/Module.mk, roofitcore/inc/LinkDef2.h,
	  roofitcore/inc/RooAbsCategory.h, roofitcore/inc/RooAbsPdf.h,
	  roofitcore/inc/RooAbsReal.h, roofitcore/inc/RooBinning.h,
	  roofitcore/inc/RooErrorVar.h, roofitcore/inc/RooHistError.h,
	  roofitcore/inc/RooNormListManager.h,
	  roofitcore/inc/RooNormManager.h, roofitcore/inc/RooNumber.h,
	  roofitcore/inc/RooPlot.h, roofitcore/inc/RooRealVar.h,
	  roofitcore/src/RooAbsCategory.cxx, roofitcore/src/RooAbsPdf.cxx,
	  roofitcore/src/RooAbsReal.cxx, roofitcore/src/RooBanner.cxx,
	  roofitcore/src/RooCurve.cxx, roofitcore/src/RooDataSet.cxx,
	  roofitcore/src/RooHistError.cxx,
	  roofitcore/src/RooNormListManager.cxx,
	  roofitcore/src/RooNormManager.cxx,
	  roofitcore/src/RooNumConvolution.cxx,
	  roofitcore/src/RooNumber.cxx, roofitcore/src/RooPlot.cxx,
	  roofitcore/src/RooRangeBinning.cxx,
	  roofitcore/src/RooResolutionModel.cxx,
	  roofitcore/src/RooStreamParser.cxx,
	  roofitcore/src/RooTreeData.cxx:
	  ***********************************************************************
	  * NOTE: THE FOLLOWING FILES MUST BE REMOVED BY HAND AFTER THIS
	  COMMIT *
	  * WHEN UPDATING AN EXISTING RELEASE AREA *
	  * *
	  * include/RooNormManager.h *
	  * include/RooNormListManager.h *
	  * roofitcore/src/RooNormManager.o *
	  * roofitcore/src/RooNormManager.d *
	  * roofitcore/src/RooNormListManager.o *
	  * roofitcore/src/RooNormListManager.d *
	  * *
	  ***********************************************************************
	  
	  o RooNormListManager, RooNormManager
	  
	  - Removed, now obsolete. Replacement is RooObjCacheManager
	  
	  
	  o RooNumber
	  
	  - Add non-inlined accessor function infinity() to replace
	  static double inifinity to fix Windows linked problems
	  
	  
	  o RooStreamParser, RooCurve, RooRangeBinning, RooNumConvolution
	  RooHistError, RooTreeData, RooRealVar, RooBinning, RooErrorVar
	  
	  - Follow migration of RooNumber::infinity()
	  
	  
	  o RooPlot
	  
	  - Fix SetTitle()
	  
	  
	  o RooDataSet
	  
	  - Initialize wgtVar ptr in default ctor
	  
	  
	  o RooAbsReal
	  
	  - Redesign scheme to import non-double TTree branches
	  to RooAbsReal buffer to fix gcc warnings on
	  strict aliasing rules for type-punned pointers.
	  
	  
	  o RooAbsPdf
	  
	  - Make globalSelectComp() non-inline to avoid
	  Windows linking problems.
	  
	  
	  o RooResolutionModel
	  
	  - Fix crash in use of resolution models when completely
	  const-optimized by deleting _norm pointer on a
	  serverRedirect.
	  
	  
	  o RooAbsCategory
	  
	  - Redesign scheme to import non-integer TTree branches
	  to RooAbsReal buffer to fix gcc warnings on
	  strict aliasing rules for type-punned pointers.
	  
	  o LinkDef2.h, Module.mk
	  
	  - Remove classes RooNormManager, RooNormListManager
	  
	  o RooBanner
	  
	  - Increment version tag to 2.31

2008-01-10 19:40  brun

	* [r21630] tmva/inc/BinaryTree.h, tmva/inc/Config.h,
	  tmva/inc/DataSet.h, tmva/inc/DecisionTree.h, tmva/inc/Event.h,
	  tmva/inc/IMetric.h, tmva/inc/LinkDef.h, tmva/inc/MethodANNBase.h,
	  tmva/inc/MethodBDT.h, tmva/inc/MethodBase.h,
	  tmva/inc/MethodBayesClassifier.h, tmva/inc/MethodCFMlpANN.h,
	  tmva/inc/MethodCommittee.h, tmva/inc/MethodCuts.h,
	  tmva/inc/MethodFDA.h, tmva/inc/MethodFisher.h,
	  tmva/inc/MethodHMatrix.h, tmva/inc/MethodKNN.h,
	  tmva/inc/MethodLikelihood.h, tmva/inc/MethodMLP.h,
	  tmva/inc/MethodPDERS.h, tmva/inc/MethodRuleFit.h,
	  tmva/inc/MethodSVM.h, tmva/inc/MethodSeedDistance.h,
	  tmva/inc/MethodTMlpANN.h, tmva/inc/MethodVariable.h,
	  tmva/inc/ModulekNN.h, tmva/inc/Reader.h, tmva/inc/SeedDistance.h,
	  tmva/inc/SeparationBase.h, tmva/inc/SimulatedAnnealingFitter.h,
	  tmva/inc/TActivationIdentity.h, tmva/inc/TNeuronInputAbs.h,
	  tmva/inc/TNeuronInputSqSum.h, tmva/inc/TNeuronInputSum.h,
	  tmva/inc/Types.h, tmva/inc/VariableDecorrTransform.h,
	  tmva/inc/VariableIdentityTransform.h,
	  tmva/inc/VariablePCATransform.h,
	  tmva/inc/VariableTransformBase.h, tmva/inc/Version.h,
	  tmva/src/BinarySearchTree.cxx, tmva/src/BinarySearchTreeNode.cxx,
	  tmva/src/BinaryTree.cxx, tmva/src/Config.cxx,
	  tmva/src/Configurable.cxx, tmva/src/CrossEntropy.cxx,
	  tmva/src/DecisionTree.cxx, tmva/src/DecisionTreeNode.cxx,
	  tmva/src/Event.cxx, tmva/src/Factory.cxx,
	  tmva/src/FitterBase.cxx, tmva/src/GiniIndex.cxx,
	  tmva/src/IFitterTarget.cxx, tmva/src/IMethod.cxx,
	  tmva/src/IMetric.cxx, tmva/src/Interval.cxx,
	  tmva/src/KDEKernel.cxx, tmva/src/MCFitter.cxx,
	  tmva/src/MethodANNBase.cxx, tmva/src/MethodBDT.cxx,
	  tmva/src/MethodBase.cxx, tmva/src/MethodBayesClassifier.cxx,
	  tmva/src/MethodCFMlpANN.cxx, tmva/src/MethodCommittee.cxx,
	  tmva/src/MethodCuts.cxx, tmva/src/MethodFDA.cxx,
	  tmva/src/MethodFisher.cxx, tmva/src/MethodHMatrix.cxx,
	  tmva/src/MethodKNN.cxx, tmva/src/MethodLikelihood.cxx,
	  tmva/src/MethodMLP.cxx, tmva/src/MethodPDERS.cxx,
	  tmva/src/MethodRuleFit.cxx, tmva/src/MethodSVM.cxx,
	  tmva/src/MethodSeedDistance.cxx, tmva/src/MethodTMlpANN.cxx,
	  tmva/src/MethodVariable.cxx, tmva/src/MetricEuler.cxx,
	  tmva/src/MetricManhattan.cxx, tmva/src/ModulekNN.cxx,
	  tmva/src/MsgLogger.cxx, tmva/src/Node.cxx, tmva/src/PDF.cxx,
	  tmva/src/Reader.cxx, tmva/src/RootFinder.cxx,
	  tmva/src/RuleEnsemble.cxx, tmva/src/RuleFit.cxx,
	  tmva/src/SdivSqrtSplusB.cxx, tmva/src/SeedDistance.cxx,
	  tmva/src/SeparationBase.cxx, tmva/src/Timer.cxx,
	  tmva/src/Types.cxx, tmva/src/VariableDecorrTransform.cxx,
	  tmva/src/VariableIdentityTransform.cxx,
	  tmva/src/VariablePCATransform.cxx,
	  tmva/src/VariableTransformBase.cxx, tmva/test/BDT.C,
	  tmva/test/TMVAGui.C, tmva/test/TMVAnalysis.C,
	  tmva/test/TMVApplication.C, tmva/test/annconvergencetest.C,
	  tmva/test/compareanapp.C, tmva/test/correlations.C,
	  tmva/test/likelihoodrefs.C, tmva/test/mvaeffs.C,
	  tmva/test/mvas.C, tmva/test/network.C, tmva/test/probas.C,
	  tmva/test/rulevisHists.C, tmva/test/tmvaglob.C: From Joerg
	  Stelzer:
	  * documentation of all classes ( I hope I caught all 17 of them,
	  but I didn't know how to check except by looking through all the
	  files)
	  * plugin capabilities for user developed multivariate classifiers
	  * An improved GUI where the user can print the significance
	  curves for adjustable signal and background yields
	  * A fix to a compiler complaint that Axel told me about

2008-01-10 19:01  brun

	* [r21629] hist/src/THnSparse.cxx: From Axel and Silvia Arcelli:
	  allow e.g. THnSparse::Projection() to only project non-over- and
	  underflow bins; see documentation in THnSparse::IsInRange().

2008-01-10 18:58  brun

	* [r21628] clib/src/snprintf.c: From Axel:
	  insert a missing "break" (used to be return) + protect some deref
	  operators. Fixes a fatal problem on windows.

2008-01-10 16:19  brun

	* [r21627] hist/src/TAxis.cxx: Remove a misleading "-" character in
	  the description of TAxis::GetFirst and TAxis::GetLast

2008-01-10 16:14  moneta

	* [r21626] tutorials/math/mathmoreIntegration.C: - fix a problem
	  due to a previous change in the Functor class

2008-01-10 14:57  moneta

	* [r21624] mathmore/test/UnuRanDist.h,
	  mathmore/test/testRandomDist.cxx: update random distribution test
	  adding binomial and unuran

2008-01-10 14:29  couet

	* [r21623] base/src/TColor.cxx: - SetPalette() calls
	  InitializeColors() before defining the deap sea palette.
	  Without this call the deap sea palette definition tried to
	  redefine some
	  existing colors.

2008-01-10 11:06  brun

	* [r21622] ruby/src/drr.cxx, ruby/test/test_rr.rb: From Jan
	  Scumacher:
	  fix for problem reported at:
	  <http://savannah.cern.ch/bugs/?32544>

2008-01-10 09:54  couet

	* [r21621] histpainter/src/THistPainter.cxx: - complete help for
	  option COL

2008-01-10 04:25  pcanal

	* [r21620] io/src/TStreamerInfo.cxx: fix coding convention

2008-01-10 03:08  pcanal

	* [r21617] utils/src/rootcint.cxx: repair the tmpnam case (still
	  used on mac) [tmpnam already prepend P_tmpdir so we don't need to
	  do it

2008-01-09 22:09  pcanal

	* [r21615] cint/src/v6_parse.cxx: Fix the problem with the switch
	  statement not working under -O4 in the
	  root/tutorial/gui/guitest.C test.

2008-01-09 22:06  pcanal

	* [r21614] utils/src/rootcint.cxx: use mkstemp instead of tempnam
	  on unixes

2008-01-09 21:43  pcanal

	* [r21611] meta/src/TCint.cxx: temporarily revert r21609 until it
	  is completed

2008-01-09 17:51  brun

	* [r21610] clib/src/snprintf.c: From Axel:
	  Remove a compilation warning with snprintf.
	  the only way out is to not pass the va_list - which means
	  converting the function snprintf_get_directive into a CPP macro.
	  Attached patch does just that. Log:
	  work around &va_list warning (incompatible pointer) on AMD64.

2008-01-09 15:05  pcanal

	* [r21609] meta/src/TCint.cxx: From Axel:
	  add G__get_class_autoloading_table() returning the library
	  name for a class name; used by TCint to determine whether the
	  enclosing
	  class's auto-load entry should be set.

2008-01-09 14:26  couet

	* [r21608] zip/src/deflate.c: - Reintroduce the fix Axel did in
	  revision 18373. It was lost with the upgrade
	  to version 1.2.3 done in revision 21207.

2008-01-09 11:12  moneta

	* [r21607] test/stressMathCore.cxx: relax a test condition to
	  suppress an error on gcc 4.1

2008-01-09 10:23  couet

	* [r21606] graf/inc/TPie.h, graf/src/TPie.cxx: - From Guido Volpi:
	  
	  * TPie::MakeLegend() now takes an extra argument to setup the
	  TLegend
	  header, the default now is an empty header for the legend instead
	  the
	  name of the TPie object.
	  
	  * TPie::SortSlices() has an extra argument that represents a
	  threshold;
	  if the threshold is greater than 0 (the default value), slices
	  with
	  values smaller than the threshold are merged together in a new
	  slice
	  with the label "other".

2008-01-09 10:18  couet

	* [r21605] graf/src/TLegend.cxx: - From Guido Volpi: In case of
	  multicolumns, the last line was outside the
	  frame if it was not complete.

2008-01-09 09:19  moneta

	* [r21604] tutorials/unuran/unuranDemo.C, unuran/Module.mk,
	  unuran/inc/TUnuran.h, unuran/src/TUnuran.cxx,
	  unuran/src/unuran-1.0.1-root.tar.gz,
	  unuran/src/unuran-1.1.1-root.tar.gz,
	  unuran/test/unuranDiscrete.cxx: - add a new version of unuran
	  (1.1.1) which fixes some warnings on gcc 4 and add a new method
	  (mvtdr)
	  - WARNING: to re-compile root a make distclean-unuran is required
	  
	  - fix a problem with re-initialization of discrete pre-defined
	  distributions (poisosn and binomial) when
	  changing their parameters
	  - improve and fix a problem with the test for discrete
	  distributions

2008-01-09 08:22  pcanal

	* [r21603] gpad/src/TPad.cxx: If WaitPrimitive is called with an
	  empty argument,
	  avoid unintentionally matching an unamed primitive.

2008-01-09 07:46  brun

	* [r21602] geom/src/TGeoBuilder.cxx: From Andrei:
	  Remove a useless test in TGeoShape constructor that was slowing
	  down the geometry building process.
	  Thanks to Sue Kasahara for reporting.

2008-01-09 04:34  pcanal

	* [r21601] io/inc/TMakeProject.h, io/inc/TStreamerInfo.h,
	  io/src/TBufferFile.cxx, io/src/TFile.cxx,
	  io/src/TMakeProject.cxx, io/src/TStreamerInfo.cxx,
	  meta/inc/TVirtualStreamerInfo.h: Extend TFile::MakeProject to
	  support namespaces, nested classes
	  and templates.
	  
	  2 new files are generated in the user directory (dirname):
	  dirnameProjectHeaders.h
	  dirnameProjectSource.cxx
	  the linkdef file is renamed dirnameLinkDef.h
	  Each non-nested class is generated in its own header file
	  with a name that is the fully qualified name of the class
	  after all the special characters "<>,:" are replaced by
	  underscored.
	  For example for pair<edm::Vertex,int> the file name is
	  pair_edm__Vertex_int_.h
	  
	  In the generated classes, map, multimap when the first template
	  parameter is a class
	  are replaced by a vector of pair. set and multiset when the
	  tempalte parameter
	  is a class are replaced by a vector. This is required since we do
	  not have the
	  code needed to order and/or compare the object of the classes.
	  
	  [The required schema evolution from map to vector of pair is not
	  yet functional]
	  
	  The new class TMakeProject contains a set of helper functions.

2008-01-09 03:57  pcanal

	* [r21600] meta/src/TStreamerElement.cxx: When 'calculating' the
	  include file name, remove const, *, &, etc. for the type of the
	  TStreamerElement

2008-01-09 03:56  pcanal

	* [r21599] meta/inc/TCint.h, meta/src/TCint.cxx: Update for better
	  version independence from CINT

2008-01-09 03:45  pcanal

	* [r21598] base/src/ManualBase4Body.h, base/src/TStorage.cxx,
	  tree/src/ManualTree2Body.h: Update for better version
	  independence from CINT

2008-01-09 03:36  pcanal

	* [r21597] cint/inc/Class.h, cint/inc/G__ci.h, cint/src/Apiif.cxx,
	  cint/src/Class.cxx: missing import from CINT v5-16-29

2008-01-09 03:27  pcanal

	* [r21595] metautils/src/TClassEdit.cxx: add std::greater as a
	  known std member

2008-01-09 02:37  pcanal

	* [r21594] cint/inc/G__ci.h, cint/src/HISTORY,
	  cint/src/v6_decl.cxx, cint/src/v6_expr.cxx,
	  cint/src/v6_inherit.cxx, cint/src/v6_loadfile.cxx,
	  cint/src/v6_newlink.cxx, cint/src/v6_parse.cxx,
	  cint/src/v6_pcode.cxx, cint/src/v6_struct.cxx,
	  cint/src/v6_typedef.cxx, cint/src/v6_value.h,
	  cint/src/v6_var.cxx: From Paul, Axel and Philippe:
	  CINT v5-16-29:
	  * - Fix 'int n((0));' and related syntax.
	  * - Fixes problem with re-using artificial source files.
	  * - Add G__get_class_autoloading_table() returning the library
	  name for a class name; used by TCint to determine whether the
	  enclosing class's auto-load entry should be set.
	  * - Fix <https://savannah.cern.ch/bugs/?32403> and "operator
	  std::string()" by skipping "std::" and setting G__vartype for
	  conversion functions.
	  * - Add better support for indirect self reference
	  * - Correct the constness in the case: Object * const &front()
	  const; (i.e Object*const vs Object const*).
	  * - Fix for passing the result of post increment directly to a
	  function taking a parameter by reference (for example cout <<
	  c++;
	  [Still outstanding is a fix for an odd problem with switch
	  statement]

2008-01-08 20:28  brun

	* [r21593] pyroot/src/Converters.cxx, pyroot/src/RootWrapper.cxx:
	  From Wim:
	  Fix to silence the compiler

2008-01-08 17:28  brun

	* [r21592] base/src/TROOT.cxx: From Gerri:
	  - Remove unused inclusion of TAuthenticate.h

2008-01-08 17:28  brun

	* [r21591] auth/inc/TAuthenticate.h, auth/src/TAuthenticate.cxx:
	  From Gerri:
	  - Fix "dereferencing type-punned pointer will break
	  strict-aliasing rules" warnings

2008-01-08 17:16  ganis

	* [r21590] proofd/inc/XrdProofConn.h, proofd/src/XrdProofConn.cxx,
	  proofd/src/XrdProofdManager.cxx,
	  proofd/src/XrdProofdProtocol.cxx, proofx/src/TXSocket.cxx: Fix a
	  bunch of "dereferencing type-punned pointer will break
	  strict-aliasing rules" warnings

2008-01-08 16:26  brun

	* [r21589] base/src/TContextMenu.cxx: silence strict-aliasing
	  warning.

2008-01-08 16:00  rdm

	* [r21588] base/src/TString.cxx: silcence strict-aliasing warning.

2008-01-08 15:34  couet

	* [r21587] graf/src/TGraph.cxx: In PaintGraph fHistogram's limits
	  are computed with some margins. The new
	  minimum along x is stored in "uxmin" and the new minimum along y
	  in "minimum".
	  In some cases the new minimum can be negative whereas the real
	  minimum is
	  positive. In such case, the new minimum was set to 90% of the
	  real minimum
	  in case of log scale, and to 0 in case of linear scale. Setting
	  to 0 in case
	  of linear scale, was not a good idea because if the pad is turned
	  into log
	  scale later on, then some points close to the real mimimum are
	  not visible.
	  The following macro demonstrate the problem:
	  
	  {
	  Double_t x[2];
	  Double_t y[2];
	  x[0]= 200; y[0]=2.0271;
	  x[1]=3e+06; y[1]=0.0005;
	  TGraph *gr = new TGraph(2,x,y);
	  gr->Draw("alp");
	  gr->SetMarkerStyle(20);
	  gPad->Update();
	  gPad->SetLogx();
	  gPad->SetLogy();
	  }
	  
	  Now, when the new computed minimum is negative and when the real
	  minimum is
	  positive, the new minimum is set to 90% of the real minimum in
	  both log and
	  linear scale.

2008-01-08 15:01  brun

	* [r21586] qtgsi/Module.mk: From Bertrand:
	  Fix a build problem with qtgsi

2008-01-08 14:49  rdm

	* [r21585] configure: allow custom PNG lib by setting $ASPNG which
	  must contain include and lib
	  directories.

2008-01-08 14:11  brun

	* [r21584] hist/src/TProfile.cxx, hist/src/TProfile2D.cxx: Fix
	  gcc4.1 compilation warnings.

2008-01-08 13:20  brun

	* [r21583] cintex/src/Cintex.cxx: Increase size of local tables in
	  function Declare_additional_CINT_typedefs.
	  This is a CMS request.

2008-01-08 09:37  couet

	* [r21582] freetype/src/freetype-2.3.5.tar.gz: - fix the warnings
	  listed here:
	  http://lcgapp.cern.ch/spi/aaLibrarian/nightlies/osx104_ia32_gcc401_dbg/dev.Mon_ROOT_today-osx104_ia32_gcc401_dbg-log.html

2008-01-07 20:36  brun

	* [r21581] pyroot/src/Utility.cxx: From Wim:
	  The problem is a string temporary that may or may not be
	  overwritten by the
	  time it is used. The fix prolongs the life of the variable to
	  past its use.

2008-01-07 15:49  brun

	* [r21579] build/win/w32pragma.h: From Axel:
	  MSVC: suppress warning "qualifier applied to reference type;
	  ignored"
	  (until this is fixed in CINT)

2008-01-07 15:14  brun

	* [r21578] win32gdk/gdk/src/gdk/gdk.c,
	  win32gdk/gdk/src/gdk/win32/gdkcolor-win32.c,
	  win32gdk/gdk/src/gdk/win32/gdkfont-win32.c,
	  win32gdk/gdk/src/gdk/win32/gdkpixmap-win32.c: From Bertrand:
	  - Remove "signed/unsigned mismatch" compilation warnings

2008-01-07 14:54  moneta

	* [r21576] mathmore/inc/Math/InterpolationTypes.h,
	  mathmore/inc/Math/Interpolator.h, minuit2/inc/LinkDef.h: - update
	  doc for interpolation (cubic splies are now available)
	  - add dictionary for Minuit2 class MnContours

2008-01-07 10:32  couet

	* [r21573] graf/src/TMultiGraph.cxx: - The fix done in the revision
	  20433 was not completely right: the multigraph
	  limits need to be initialisezd with call to ComputeRange on the
	  1st graph
	  before looping on the remaining graphs.

2008-01-07 09:48  rdm

	* [r21572] base/src/TSystem.cxx, unix/src/TUnixSystem.cxx:
	  correctly document new error code -3 in CopyFile().

2008-01-03 09:21  brun

	* [r21571] table/inc/TDataSetIter.h, table/src/TTable.cxx: Fix
	  coding conventions.

2007-12-29 16:00  brun

	* [r21570] base/inc/TVirtualX.h: From Bertrand:
	  - TVirtualX.h: suppress warning C4099: 'GLUtesselator' :
	  type name first seen using 'struct' now seen using 'class'

2007-12-29 15:56  brun

	* [r21569] geompainter/src/TGeoChecker.cxx: From Bertrand:
	  - TGeoChecker.cxx: suppress warning C4138: '*/' found outside of
	  comment

2007-12-28 16:45  brun

	* [r21568] hist/src/TH1.cxx: Add a Warning in TH1::Rebin in case
	  the argument ngroup is not an exact divider of the number of
	  bins.

2007-12-28 16:36  brun

	* [r21567] geom/inc/TGeoBuilder.h: Add missing forward
	  declarations.

2007-12-28 16:15  brun

	* [r21566] eve/inc/TEvePointSet.h, eve/inc/TEveScene.h,
	  eve/inc/TEveViewer.h, eve/src/TEvePointSet.cxx,
	  eve/src/TEveScene.cxx, eve/src/TEveViewer.cxx,
	  proofx/inc/TXSocket.h, proofx/src/TXSocket.cxx,
	  table/inc/TTable.h, table/inc/TTableDescriptor.h,
	  table/src/TTable.cxx, table/src/TTableDescriptor.cxx: Move
	  functions referencing static global variables from inline to
	  implementation file.

2007-12-28 12:28  brun

	* [r21565] eve/inc/TEveElement.h, eve/inc/TEveTrack.h,
	  eve/src/TEveElement.cxx, eve/src/TEveTrack.cxx,
	  fitpanel/inc/TFitEditor.h, fitpanel/src/TFitEditor.cxx,
	  ged/inc/TStyleManager.h, ged/src/TStyleManager.cxx,
	  geombuilder/inc/TGeoTabManager.h,
	  geombuilder/src/TGeoTabManager.cxx, gl/inc/TGLSelectBuffer.h,
	  gl/inc/TGLUtil.h, gl/src/TGLSelectBuffer.cxx, gl/src/TGLUtil.cxx,
	  table/inc/TDataSet.h, table/inc/TDataSetIter.h,
	  table/inc/TIndexTable.h, table/inc/TTableDescriptor.h,
	  table/src/TDataSet.cxx, table/src/TDataSetIter.cxx,
	  table/src/TIndexTable.cxx, table/src/TTableDescriptor.cxx,
	  vmc/inc/TVirtualMC.h, vmc/src/TVirtualMC.cxx: Functions
	  referencing a static global cannot be inlined.

2007-12-21 16:26  pcanal

	* [r21563] base/src/TSystem.cxx, foam/src/TFoam.cxx: do not use
	  TCint when TInterpreter or only the Cint C Api is needed

2007-12-21 16:19  pcanal

	* [r21562] eve/src/TEveEventManager.cxx: Do not use TCint.h when
	  TInterpreter will do

2007-12-21 15:39  brun

	* [r21561] test/stressShapes.cxx: Normalize stressShapes rootmarks

2007-12-21 15:09  brun

	* [r21560] hist/src/THnSparse.cxx: From Axel:
	  Fix error calculation for THnSparse: first calculate the bin's
	  current
	  error, then add new bin content. Also remove a few stray
	  "return"s.

2007-12-21 15:00  couet

	* [r21559] test/stressGraphics.ref: - mod for Solaris

2007-12-21 14:18  brun

	* [r21558] table/doc/index.txt: From Valeri:
	  More info about the table package.

2007-12-21 13:55  couet

	* [r21557] test/stressGraphics.ref: - mods needed for mac.

2007-12-21 13:41  couet

	* [r21556] test/stressGraphics.cxx, test/stressGraphics.ref: -
	  Changes needed because of a TEllipse bug fixed.

2007-12-21 12:57  couet

	* [r21555] graf/src/TEllipse.cxx: - PaintEllipse() now uses the
	  FillStyle to control wether or not a filled area
	  should be painted in case a closed ellipse. It used wrongly the
	  FillColor unlike the case of an open ellipse.

2007-12-21 11:43  brun

	* [r21554] test/Makefile.arch, test/Makefile.win32,
	  test/RootIDE/Makefile, test/rhtml/Makefile: From Bertrand:
	  - fixes for MSVC++9.0 (.NET 2008)

2007-12-21 10:55  moneta

	* [r21553] mathcore/doc/index.txt,
	  mathcore/inc/Math/AdaptiveIntegratorMultiDim.h,
	  mathcore/inc/Math/Functor.h,
	  mathcore/inc/Math/GenVector/CoordinateSystemTags.h,
	  mathcore/inc/Math/IFunction.h,
	  mathcore/inc/Math/IParamFunction.h,
	  mathcore/inc/Math/IntegratorMultiDim.h,
	  mathcore/inc/Math/VirtualIntegrator.h, mathmore/doc/index.txt,
	  mathmore/inc/Math/GSLMinimizer.h,
	  mathmore/inc/Math/GSLNLSMinimizer.h,
	  mathmore/inc/Math/GSLRndmEngines.h,
	  mathmore/inc/Math/GSLRootFinder.h,
	  mathmore/inc/Math/GSLSimAnnealing.h,
	  mathmore/inc/Math/Minimizer1D.h, mathmore/inc/Math/Random.h,
	  mathmore/inc/Math/RootFinderAlgorithms.h, minuit2/doc/index.txt,
	  smatrix/doc/index.txt,
	  smatrix/inc/Math/MatrixRepresentationsStatic.h,
	  smatrix/inc/Math/SMatrix.h, smatrix/inc/Math/SVector.h: anothe
	  doc update

2007-12-20 20:15  brun

	* [r21548] treeplayer/src/TBranchProxyDirector.cxx: Fix a typo in
	  the ClassImp directive making the compilation to fail with gcc.

2007-12-20 18:19  pcanal

	* [r21547] treeplayer/inc/TBranchProxy.h,
	  treeplayer/src/TBranchProxy.cxx,
	  treeplayer/src/TBranchProxyClassDescriptor.cxx,
	  treeplayer/src/TBranchProxyDescriptor.cxx,
	  treeplayer/src/TBranchProxyDirector.cxx,
	  treeplayer/src/TFriendProxy.cxx,
	  treeplayer/src/TFriendProxyDescriptor.cxx: Add ClassImp and doc
	  markers

2007-12-20 17:21  moneta

	* [r21546] mathcore/doc/MathCore.html, mathcore/doc/index.txt,
	  mathmore/doc/MathMore.html, mathmore/doc/index.txt,
	  minuit2/doc/Minuit2.html, minuit2/doc/index.txt,
	  smatrix/doc/index.txt, unuran/doc/index.txt: - update class index
	  pages

2007-12-20 16:06  brun

	* [r21544] html/src/TDocOutput.cxx: From Axel:
	  Insert newlines when processing a module's index.html.

2007-12-20 16:02  brun

	* [r21543] etc/vmc/fl_makedist.sh: From Ivana.
	  Add the distribution file to generate the VMC fluka tar file

2007-12-20 15:38  axel

	* [r21542] reflex/doc/index.html: Add module doc.

2007-12-20 15:09  brun

	* [r21541] hist/src/THStack.cxx: Protect THStack::GetXaxis and
	  THStack::GetYaxis in case the THStack does not have any
	  histogram.

2007-12-20 13:36  brun

	* [r21540] table/doc, table/doc/index.txt: From Valeri Fine:
	  Add the table package documentation index.

2007-12-20 12:55  rdm

	* [r21539] tutorials/gui/guitest.C: remove left over print
	  statement.

2007-12-20 12:46  rdm

	* [r21537] tutorials/gui/guitest.C: re-introduce old switch
	  statement but disable it via an ifdef, so we can
	  easily test if a new version of CINT fixes this problem.

2007-12-20 12:17  matevz

	* [r21534] eve/inc/LinkDef.h, eve/inc/TEveElement.h,
	  eve/inc/TEveManager.h, eve/inc/TEveViewer.h,
	  eve/src/TEveBrowser.cxx, eve/src/TEveElement.cxx,
	  eve/src/TEveGedEditor.cxx, eve/src/TEveManager.cxx,
	  eve/src/TEvePointSet.cxx, eve/src/TEveProjectionManager.cxx,
	  eve/src/TEveTrack.cxx, eve/src/TEveUtil.cxx,
	  eve/src/TEveViewer.cxx: Fix a bug in TEveElement::Destroy(): the
	  destruction was not properly
	  propagated to parents and thus redraw was not performed.
	  
	  Extend strings providing information about exceptions.
	  
	  Consolidate variable name for exception header in files that were
	  modified during the above changes.

2007-12-20 12:14  rdm

	* [r21533] configure: by default turn off pch, the effect is
	  minimal and it causes problems in
	  case RVersion.h is updated and the entire source is not
	  recompiled.

2007-12-20 12:10  rdm

	* [r21532] test/threads.cxx, thread/src/TThread.cxx: From Bertrand:
	  add protection again gSystem disappearing at end of program
	  before the last
	  thread is finished. There remains a problem with threads.cxx
	  however, that
	  will be solved later.

2007-12-20 11:14  moneta

	* [r21530] minuit2/inc/Minuit2/CombinedMinimizer.h,
	  minuit2/inc/Minuit2/FCNBase.h,
	  minuit2/inc/Minuit2/FCNGradientBase.h,
	  minuit2/inc/Minuit2/FumiliFCNBase.h,
	  minuit2/inc/Minuit2/FumiliMinimizer.h,
	  minuit2/inc/Minuit2/FunctionMinimizer.h,
	  minuit2/inc/Minuit2/FunctionMinimum.h,
	  minuit2/inc/Minuit2/GenericFunction.h,
	  minuit2/inc/Minuit2/MinosError.h,
	  minuit2/inc/Minuit2/Minuit2Minimizer.h,
	  minuit2/inc/Minuit2/MinuitParameter.h,
	  minuit2/inc/Minuit2/MnApplication.h,
	  minuit2/inc/Minuit2/MnContours.h,
	  minuit2/inc/Minuit2/MnFumiliMinimize.h,
	  minuit2/inc/Minuit2/MnHesse.h, minuit2/inc/Minuit2/MnMigrad.h,
	  minuit2/inc/Minuit2/MnMinos.h, minuit2/inc/Minuit2/MnScan.h,
	  minuit2/inc/Minuit2/MnSimplex.h,
	  minuit2/inc/Minuit2/MnStrategy.h,
	  minuit2/inc/Minuit2/MnUserParameterState.h,
	  minuit2/inc/Minuit2/ModularFunctionMinimizer.h,
	  minuit2/inc/Minuit2/ScanMinimizer.h,
	  minuit2/inc/Minuit2/SimplexMinimizer.h,
	  minuit2/inc/Minuit2/VariableMetricMinimizer.h: - add tag for
	  having class description of Minuit2 classes
	  - fix also some indentation problems

2007-12-20 11:01  brun

	* [r21528] tutorials/gui/guitest.C: From Bertrand:
	  - Temporary solves a problem with CINT optimisation.

2007-12-20 10:42  moneta

	* [r21526] tutorials/unuran/unuranDemo.C, unuran/doc/index.txt,
	  unuran/inc/TUnuranBaseDist.h, unuran/inc/TUnuranContDist.h,
	  unuran/inc/TUnuranDiscrDist.h, unuran/inc/TUnuranEmpDist.h,
	  unuran/inc/TUnuranMultiContDist.h, unuran/src/TUnuranEmpDist.cxx:
	  - update doc for unuran
	  - fix also the tutorial

2007-12-20 08:57  brun

	* [r21521] cint/src/g__cfunc.c: From Axel:
	  floor work-around also for MSVC2008 (2nd part)

2007-12-20 08:40  brun

	* [r21520] ruby/src/drr.cxx: From Jan Suchmacher
	  Fix a problem introduced in previous fix.

2007-12-20 08:30  ganis

	* [r21519] tutorials/tree/h1analysis.C: Adapt to the new settings
	  for the first and last bin default arguments in TH2::FitSlicesX
	  (SVN change #21305)

2007-12-20 05:56  brun

	* [r21518] matrix/doc/index.txt: From Eddy:
	  Fix a typo

2007-12-20 05:55  brun

	* [r21517] quadp/doc, quadp/doc/index.txt: From Eddy:
	  quadp package documentation index

2007-12-20 00:03  rdm

	* [r21514] win32gdk/doc, win32gdk/doc/index.txt, x11/doc,
	  x11/doc/index.txt, x11ttf/doc, x11ttf/doc/index.txt: some more
	  class descriptions.

2007-12-20 00:02  rdm

	* [r21513] auth/doc, auth/doc/index.txt: From Gerri:
	  auth class description.

2007-12-19 20:55  pcanal

	* [r21510] tree/inc/TVirtualTreePlayer.h,
	  tree/src/TVirtualTreePlayer.cxx, treeplayer/inc/TBranchProxy.h,
	  treeplayer/src/TBranchProxyClassDescriptor.cxx,
	  treeplayer/src/TBranchProxyDescriptor.cxx,
	  treeplayer/src/TFriendProxy.cxx,
	  treeplayer/src/TFriendProxyDescriptor.cxx,
	  treeplayer/src/TSelectorDraw.cxx: add missing class and typedef
	  descriptions

2007-12-19 20:42  pcanal

	* [r21509] treeplayer/src/TTreeFormula.cxx: Correctly case the
	  integral value (int, short, unsigned, etc.) to the size requested
	  by the user provided format (i.e if %llx is passed, cast to an
	  unsigned long long)

2007-12-19 19:39  brun

	* [r21506] ruby/test, ruby/test/test_rr.rb: From Jan Schumacher:
	  Add a Ruby test program.
	  This line, and those below, will be ignored--
	  
	  A ruby/test
	  A ruby/test/test_rr.rb

2007-12-19 19:18  brun

	* [r21505] qtroot/doc, qtroot/doc/index.txt: From Valeri Fine
	  add qtroot package documentation.

2007-12-19 17:51  moneta

	* [r21504] unuran/inc/TUnuran.h, unuran/inc/TUnuranBaseDist.h,
	  unuran/inc/TUnuranContDist.h, unuran/src/TUnuran.cxx: - update
	  doc
	  - remove some un-needed copy of strings

2007-12-19 17:34  moneta

	* [r21503] mathcore/Module.mk,
	  mathcore/inc/Math/AdaptiveIntegratorMultiDim.h,
	  mathcore/inc/Math/AllIntegrationTypes.h,
	  mathcore/inc/Math/Factory.h,
	  mathcore/inc/Math/FitMethodFunction.h,
	  mathcore/inc/Math/Functor.h,
	  mathcore/inc/Math/GenVector/AxisAngle.h,
	  mathcore/inc/Math/GenVector/BoostX.h,
	  mathcore/inc/Math/GenVector/BoostY.h,
	  mathcore/inc/Math/GenVector/BoostZ.h,
	  mathcore/inc/Math/GenVector/Cartesian2D.h,
	  mathcore/inc/Math/GenVector/Cartesian3D.h,
	  mathcore/inc/Math/GenVector/CoordinateSystemTags.h,
	  mathcore/inc/Math/GenVector/Cylindrical3D.h,
	  mathcore/inc/Math/GenVector/CylindricalEta3D.h,
	  mathcore/inc/Math/GenVector/DisplacementVector2D.h,
	  mathcore/inc/Math/GenVector/DisplacementVector3D.h,
	  mathcore/inc/Math/GenVector/EulerAngles.h,
	  mathcore/inc/Math/GenVector/LorentzVector.h,
	  mathcore/inc/Math/GenVector/Plane3D.h,
	  mathcore/inc/Math/GenVector/Polar2D.h,
	  mathcore/inc/Math/GenVector/Polar3D.h,
	  mathcore/inc/Math/GenVector/PositionVector2D.h,
	  mathcore/inc/Math/GenVector/PositionVector3D.h,
	  mathcore/inc/Math/GenVector/PtEtaPhiE4D.h,
	  mathcore/inc/Math/GenVector/PtEtaPhiM4D.h,
	  mathcore/inc/Math/GenVector/PxPyPzE4D.h,
	  mathcore/inc/Math/GenVector/PxPyPzM4D.h,
	  mathcore/inc/Math/GenVector/Quaternion.h,
	  mathcore/inc/Math/GenVector/Rotation3D.h,
	  mathcore/inc/Math/GenVector/RotationX.h,
	  mathcore/inc/Math/GenVector/RotationY.h,
	  mathcore/inc/Math/GenVector/RotationZ.h,
	  mathcore/inc/Math/GenVector/RotationZYX.h,
	  mathcore/inc/Math/GenVector/Transform3D.h,
	  mathcore/inc/Math/GenVector/Translation3D.h,
	  mathcore/inc/Math/IFunction.h,
	  mathcore/inc/Math/IParamFunction.h,
	  mathcore/inc/Math/Integrator.h, mathcore/inc/Math/LinkDef.h,
	  mathcore/inc/Math/Minimizer.h,
	  mathcore/inc/Math/PdfFuncMathCore.h,
	  mathcore/inc/Math/VirtualIntegrator.h,
	  mathcore/src/ProbFuncMathCore.cxx, mathmore/inc/Math/Chebyshev.h,
	  mathmore/inc/Math/Derivator.h, mathmore/inc/Math/GSLIntegrator.h,
	  mathmore/inc/Math/GSLMCIntegrator.h,
	  mathmore/inc/Math/GSLMinimizer.h,
	  mathmore/inc/Math/GSLNLSMinimizer.h,
	  mathmore/inc/Math/GSLRndmEngines.h,
	  mathmore/inc/Math/GSLRootFinder.h,
	  mathmore/inc/Math/GSLRootFinderDeriv.h,
	  mathmore/inc/Math/GSLSimAnMinimizer.h,
	  mathmore/inc/Math/GSLSimAnnealing.h,
	  mathmore/inc/Math/Interpolator.h,
	  mathmore/inc/Math/MCIntegrationTypes.h,
	  mathmore/inc/Math/MCParameters.h,
	  mathmore/inc/Math/ParamFunction.h,
	  mathmore/inc/Math/Polynomial.h, mathmore/inc/Math/Random.h,
	  mathmore/inc/Math/RootFinder.h,
	  mathmore/inc/Math/RootFinderAlgorithms.h,
	  mathmore/src/GSLMCIntegrationWorkspace.h,
	  mathmore/src/GSLMCIntegrator.cxx,
	  mathmore/src/GSLMonteFunctionAdapter.h,
	  mathmore/src/GSLMonteFunctionWrapper.h,
	  mathmore/src/QuantFuncMathMore.cxx: - update doc in mathcore and
	  mathmore by adding the tag for THtml.
	  Take the occasion to correct and update some of the doc.
	  Fix also some indentation problems and SVN keywords with some
	  files
	  add dictionary for some missing classes

2007-12-19 17:33  brun

	* [r21502] gui/inc/TGListTree.h, gui/src/TGFileBrowser.cxx,
	  gui/src/TGListTree.cxx: From Bertrand and matevz:
	  - Use TObjString for drag and drop to be able to specify full
	  pathname (and not rely on gSystem->WorkingDirectory()).
	  - Changed the way TGListTree handles drag and drop, to not rely
	  on gSystem->WorkingDirectory(), but use TObjString set in
	  TGFileBrowser instead.
	  - Added data member fOwnsData in TGListTreeItem, to specify
	  if fUserData member has to be deleted in the destructor
	  (to avoid memory leaks)
	  - Added corresponding argument in:
	  TGListTreeItem::SetUserData(void *userData, Bool_t own=kFALSE)
	  being kFALSE by default for backward compatibility
	  
	  This allows to drag and drop from any directory, whithout to have
	  to cd() in
	  it...
	  This also fixes some issues encountered with AliEVE

2007-12-19 16:52  brun

	* [r21500] qt/doc, qt/doc/index.txt: From Valeri Fine:
	  add index.txt file documenting the qt directory.

2007-12-19 16:50  brun

	* [r21499] etc/vmc/g4_makedist.sh: From Ivana:
	  Adding missing files (LICENSE, Geant4VMC.html)
	  in the list of files for tar command.

2007-12-19 16:29  brun

	* [r21498] eg/src/TParticlePDG.cxx: From Andreas Morsch:
	  the lifetime is initialized in case the width is
	  !=0. However there are particles in the pdg_table.txt with width
	  = 0 which
	  in reality have widh != 0.

2007-12-19 16:28  brun

	* [r21497] geom/inc/LinkDef1.h, geom/inc/TGeoVoxelFinder.h,
	  geom/src/TGeoNode.cxx, geom/src/TGeoVoxelFinder.cxx: From Andrei:
	  Implement a custom TGeoVoxelFinder::Streamer to read the old
	  versions of the class.
	  lso removed 3 obsolete voxels classes that were present in
	  TGeoVoxelFinder.h/.cxx. Old geometry files with voxels should be
	  readable now (tested) and produce consistent results. For me
	  stressGeometry works.

2007-12-19 16:05  brun

	* [r21496] geombuilder/doc, geombuilder/doc/index.txt,
	  geompainter/doc, geompainter/doc/index.txt: From Andrei:
	  Add the doc/index.txt files

2007-12-19 15:58  couet

	* [r21495] test/stressGraphics.ref: - small adjustment for test 28
	  (PDF)

2007-12-19 15:50  brun

	* [r21494] geom/doc/index.txt, geom/inc/TGeoNode.h,
	  geom/inc/TGeoVolume.h, geom/src/TGeoAtt.cxx,
	  geom/src/TGeoBoolNode.cxx, geom/src/TGeoBuilder.cxx,
	  geom/src/TGeoManager.cxx, geom/src/TGeoNavigator.cxx,
	  geom/src/TGeoNode.cxx, geom/src/TGeoParaboloid.cxx,
	  geom/src/TGeoPatternFinder.cxx, geom/src/TGeoPhysicalNode.cxx,
	  geom/src/TGeoShapeAssembly.cxx, geom/src/TGeoVolume.cxx,
	  geom/src/TGeoXtru.cxx, geom/src/TVirtualGeoPainter.cxx,
	  geom/src/TVirtualGeoTrack.cxx, geombuilder/src/TGeoGedFrame.cxx,
	  geombuilder/src/TGeoManagerEditor.cxx,
	  geombuilder/src/TGeoMaterialEditor.cxx,
	  geombuilder/src/TGeoMatrixEditor.cxx,
	  geombuilder/src/TGeoMediumEditor.cxx,
	  geombuilder/src/TGeoNodeEditor.cxx,
	  geombuilder/src/TGeoTabManager.cxx,
	  geombuilder/src/TGeoVolumeEditor.cxx,
	  geompainter/src/TGeoChecker.cxx, geompainter/src/TGeoOverlap.cxx,
	  geompainter/src/TGeoPainter.cxx, geompainter/src/TGeoTrack.cxx:
	  Update to the class docs and index.txt files.

2007-12-19 13:30  rdm

	* [r21493] base/doc/index.txt, chirp/doc, chirp/doc/index.txt,
	  sql/doc/index.txt, xml/doc/index.txt, xmlparser/doc,
	  xmlparser/doc/index.txt: more doc updates.

2007-12-19 13:18  rdm

	* [r21492] configure: typo in comment.

2007-12-19 13:18  rdm

	* [r21491] base/doc/index.txt, castor/doc, castor/doc/index.txt,
	  rfio/doc, rfio/doc/index.txt: add doc info.

2007-12-19 11:37  brun

	* [r21488] eve/src/TEveElement.cxx: Fix coding convention.

2007-12-19 11:08  brun

	* [r21479] etc/vmc/g4_makedist.sh: From Ivana:
	  geant4_vmc/config replaced with geant4_vmc/version_number
	  in the list of files for tar command.

2007-12-19 10:51  brun

	* [r21476] html/src/THtml.cxx: From Axel:
	  Do not magically set the sourcedir for math[cm]ore. It helps
	  THtml find
	  the source files, but prevents it to pick up the doc from the
	  headers.

2007-12-19 08:58  brun

	* [r21475] ruby/src/drr.cxx: From Jan Schumacher:
	  in drr_init and drr_method_missing it suffices to throw an
	  ArgumentError
	  instead of aborting outright. The attached patch tries to
	  implement that.

2007-12-19 08:38  moneta

	* [r21474] test/Makefile: remove dictionary file used in
	  stressMathCore when doing make clean

2007-12-19 08:37  ganis

	* [r21473] proofd/doc, proofd/doc/index.txt, proofplayer/doc,
	  proofplayer/doc/index.txt, proofx/doc, proofx/doc/index.txt:
	  First version of the 'doc/index.txt'

2007-12-19 08:33  rdm

	* [r21472] config/Makefile-comp.in, config/Makefile.win32gcc,
	  config/RConfigOptions.in, config/RConfigure.in,
	  config/genreflex-rootcint.in, config/genreflex.in,
	  config/html.C.in, config/memprobe.in, config/mimes.unix.in,
	  config/mimes.win32.in, config/olbd.in, config/precompile.h.in,
	  config/proofd.in, config/proofd.xinetd.in, config/root-config.in,
	  config/root-help.el.in, config/rootauthrc.in, config/rootd.in,
	  config/rootd.xinetd.in, config/rootdaemonrc.in, config/rootrc.in,
	  config/xrootd.in: set svn:eol-style=LF.

2007-12-19 08:21  rdm

	* [r21471] sql/doc, sql/doc/index.txt: doc for sql directory.

2007-12-19 07:22  brun

	* [r21470] ruby/src/drr.cxx: From Jan Schumacher
	  RubyRoot crashes when trying to emulate C-like casting if the
	  argument class
	  does not exist. Since the check for existence of the class checks
	  the return
	  type of new TClass(...), it is always true. Attached is a patch
	  that changes
	  this to TClass::GetClass, which returns 0 in case of failure.
	  Also, the result
	  of failure is mitigated from an abort to an exception.
	  
	  see: https://savannah.cern.ch/bugs/?32309

2007-12-18 18:12  brun

	* [r21469] physics/inc/TQuaternion.h: From Eric Anciant:
	  Fix an incoherency in the TQuaternion::getRXYZ functions.

2007-12-18 17:51  moneta

	* [r21468] mathcore/inc/Math/GenVector/AxisAngle.h,
	  mathcore/inc/Math/GenVector/Boost.h,
	  mathcore/inc/Math/GenVector/DisplacementVector2D.h,
	  mathcore/inc/Math/GenVector/DisplacementVector3D.h,
	  mathcore/inc/Math/GenVector/EulerAngles.h,
	  mathcore/inc/Math/GenVector/LorentzRotation.h,
	  mathcore/inc/Math/GenVector/LorentzVector.h,
	  mathcore/inc/Math/GenVector/PositionVector2D.h,
	  mathcore/inc/Math/GenVector/PositionVector3D.h,
	  mathcore/inc/Math/GenVector/Quaternion.h,
	  mathcore/inc/Math/GenVector/Rotation3D.h,
	  mathcore/inc/Math/GenVector/RotationZYX.h: add tag for class
	  description

2007-12-18 17:44  ganis

	* [r21467] proof/inc/TProof.h, proof/inc/TVirtualProofPlayer.h,
	  proof/src/TProof.cxx, proof/src/TVirtualProofPlayer.cxx,
	  proofplayer/inc/TEventIter.h,
	  proofplayer/inc/TProofLimitsFinder.h,
	  proofplayer/inc/TProofPlayer.h, proofplayer/src/TEventIter.cxx,
	  proofplayer/src/TPacketizer.cxx,
	  proofplayer/src/TProofLimitsFinder.cxx,
	  proofplayer/src/TProofPlayer.cxx: Add/correct doc statements
	  where needed

2007-12-18 17:09  rdm

	* [r21466] configure: fix detection of monalisawsclient.h and
	  libmonalisawsclient in case
	  the AliEn client is installed.

2007-12-18 17:01  rdm

	* [r21465] build/unix/compiledata.sh, cint/configcint.mk: make
	  scripts silent in case they don't update compiledate.h and
	  configcint.h.

2007-12-18 17:00  rdm

	* [r21464] Makefile, base/src/TROOT.cxx, config/RConfigOptions.in,
	  config/RConfigure.in, configure, ruby/src/drr.cxx: move
	  R__CONFIGUREOPTIONS, only used in TROOT.cxx, from RConfigure.h,
	  which
	  is included by a large number of source files. The
	  R__CONFIGUREOPTIONS are
	  now stored in RConfigOptions.h, which is only include in
	  TROOT.cxx.
	  In RConfigOptions.h also the R__RUBY_MAJOR and R__RUBY_MINOR are
	  stored
	  and included in drr.cxx. This change only forces a recompile of
	  TROOT.cxx
	  (and maybe drr.cxx) when doing e.g.:
	  ./configure --enable-roofit
	  make
	  ./configure
	  make [ here we used to compile all dictionaries again as rootcint
	  depends on RConfigure.h ]

2007-12-18 16:49  matevz

	* [r21463] tutorials/gl/viewer3DLocal.C,
	  tutorials/gl/viewer3DMaster.C: Automatically engage ACLiC
	  compilation as it is required for proper operation of the
	  tutorials. Add author (Richard Maunder).

2007-12-18 16:41  couet

	* [r21460] asimage/doc, asimage/doc/index.txt: - doc index

2007-12-18 16:29  matevz

	* [r21458] gl/doc, gl/doc/index.txt: Add gl/ module description.

2007-12-18 15:57  couet

	* [r21457] g3d/doc, g3d/doc/index.txt: - doc index

2007-12-18 15:46  rdm

	* [r21456] tree/src/TTree.cxx: typo in comment and white space.

2007-12-18 15:44  rdm

	* [r21455] base/inc/TSysEvtHandler.h: From Markus:
	  Fix compiler warning on Win32 VC7.1 (issue 32301).

2007-12-18 15:37  couet

	* [r21454] gpad/doc, gpad/doc/index.txt: - doc index

2007-12-18 15:18  matevz

	* [r21453] gl/inc/TGLContext.h, gl/inc/TGLFormat.h,
	  gl/inc/TGLPlotPainter.h, gl/inc/TGLTF3Painter.h,
	  gl/inc/TGLWidget.h, gl/src/TArcBall.cxx, gl/src/TF2GL.cxx,
	  gl/src/TGLAdapter.cxx, gl/src/TGLAxis.cxx,
	  gl/src/TGLBoxPainter.cxx, gl/src/TGLClipSetEditor.cxx,
	  gl/src/TGLContext.cxx, gl/src/TGLCylinder.cxx,
	  gl/src/TGLFaceSet.cxx, gl/src/TGLFormat.cxx,
	  gl/src/TGLLegoPainter.cxx, gl/src/TGLPShapeObjEditor.cxx,
	  gl/src/TGLParametricEquationGL.cxx, gl/src/TGLPhysicalShape.cxx,
	  gl/src/TGLPlotBox.cxx, gl/src/TGLPlotPainter.cxx,
	  gl/src/TGLPolyLine.cxx, gl/src/TGLPolyMarker.cxx,
	  gl/src/TGLSelectBuffer.cxx, gl/src/TGLSphere.cxx,
	  gl/src/TGLSurfacePainter.cxx, gl/src/TGLTF3Painter.cxx,
	  gl/src/TGLText.cxx, gl/src/TGLViewerEditor.cxx,
	  gl/src/TGLWidget.cxx: Add missing class descriptions.

2007-12-18 15:16  matevz

	* [r21452] eve/inc/TEveManager.h, eve/src/TEveElement.cxx,
	  eve/src/TEveManager.cxx: Main ged-editor was not updated from
	  TEveManager::ElementChanged().

2007-12-18 15:15  matevz

	* [r21451] eve/doc/index.txt: Added links to papers and talks about
	  Eve and AliEve.

2007-12-18 14:51  pcanal

	* [r21450] tree/src/TBranchBrowsable.cxx: strip (potential) array
	  dimension when constructing the Draw command

2007-12-18 14:41  couet

	* [r21449] postscript/doc, postscript/doc/index.txt: - doc index

2007-12-18 14:10  couet

	* [r21448] spectrumpainter/doc, spectrumpainter/doc/index.txt: -
	  doc index

2007-12-18 13:51  couet

	* [r21447] spectrum/doc, spectrum/doc/index.txt: - add
	  doc/index.txt

2007-12-18 13:19  couet

	* [r21446] histpainter/doc, histpainter/doc/index.txt: - add doc
	  index

2007-12-18 12:36  rdm

	* [r21445] build/unix/distfilelist.sh: avoid deleting some CINT
	  build products that are not needed in the binary
	  distribution, but that cause a large rebuild when doing "make"
	  after
	  "make dist".

2007-12-18 11:58  brun

	* [r21444] tree/src/TChain.cxx: Fix an oddity in the default TChain
	  constructor.
	  The TChain object was registered twice to
	  gROOT->GetListOfDataSets() !!

2007-12-18 10:27  brun

	* [r21443] ruby/src/TRuby.cxx: Add missing ClassImp

2007-12-18 09:44  brun

	* [r21442] oracle/doc, oracle/doc/index.txt: From Sergey Linev.
	  Add package documentation

2007-12-18 09:38  couet

	* [r21441] graf/src/TCutG.cxx: - Header reformating.
	  - Insist on the fact that the polygon should closed.

2007-12-18 09:35  antcheva

	* [r21440] fitpanel/doc, fitpanel/doc/index.txt: Added the
	  doc/index.txt file for Fit Panel classes.

2007-12-18 09:27  brun

	* [r21439] ruby/doc/index.txt: Update documentation page

2007-12-18 09:22  brun

	* [r21438] fftw/doc, fftw/doc/index.txt: Add package documentation

2007-12-18 09:17  brun

	* [r21437] dcache/doc, dcache/doc/index.txt: Add package
	  documentation

2007-12-18 09:11  brun

	* [r21436] eg/doc, eg/doc/index.txt: Add package index.txt
	  documentation.

2007-12-18 08:53  rdm

	* [r21435] base/src/TTimeStamp.cxx: fix error in comment, fixes
	  issue 32280.

2007-12-17 21:09  matevz

	* [r21434] eve/inc/TEveDigitSet.h, eve/inc/TEveGridStepper.h,
	  eve/src/TEveElement.cxx, eve/src/TEveGValuators.cxx,
	  eve/src/TEvePolygonSetProjectedEditor.cxx,
	  eve/src/TEveQuadSet.cxx, eve/src/TEveRGBAPalette.cxx,
	  eve/src/TEveRGBAPaletteEditor.cxx, eve/src/TEveUtil.cxx: Add
	  missing class descriptions and ClassImps.

2007-12-17 20:16  pcanal

	* [r21433] treeplayer/doc/index.txt: Add index

2007-12-17 20:13  pcanal

	* [r21432] treeplayer/doc, treeplayer/doc/index.txt: Add index

2007-12-17 20:03  pcanal

	* [r21431] meta/src/TClassGenerator.cxx,
	  meta/src/TStreamerElement.cxx, meta/src/TVirtualStreamerInfo.cxx:
	  Add class docs

2007-12-17 19:46  brun

	* [r21430] hist/src/TH1.cxx: Remove an unnecessary condition in
	  TH1::Draw.
	  (Thanks to Gordon Watts for the remark).

2007-12-17 18:19  brun

	* [r21429] qt/inc/TQtClientFilter.h, qt/inc/TQtClientWidget.h,
	  qt/inc/TQtRootSlot.h: Document the Qt header files

2007-12-17 17:38  brun

	* [r21428] ruby/src/drr.cxx: From Jan Sumacher:
	  Fix problem: https://savannah.cern.ch/bugs/?32271
	  this is in reference to the original problem described in
	  http://root.cern.ch/phpBB2/viewtopi.... RubyRoot needs to find
	  out whether to pass by pointer or reference. This used to work in
	  an earlier version of CINT (in 5.10 it worked for example). The
	  attached patch tries to solve this by going through all
	  combinations.

2007-12-17 16:17  brun

	* [r21427] ruby/src/drr.cxx: From Jan Schumacher:
	  Fix a problem in the Ruby interface:
	  https://savannah.cern.ch/bugs/?32182
	  The TApplication was not created at the right place.

2007-12-17 16:02  antcheva

	* [r21426] ged/doc, ged/doc/index.txt: Added ged/index.txt for GED.

2007-12-17 15:59  brun

	* [r21425] geom/inc/TGeoArb8.h, geom/inc/TGeoAtt.h,
	  geom/inc/TGeoBBox.h, geom/inc/TGeoBoolNode.h,
	  geom/inc/TGeoBuilder.h, geom/inc/TGeoCache.h,
	  geom/inc/TGeoCompositeShape.h, geom/inc/TGeoCone.h,
	  geom/inc/TGeoElement.h, geom/inc/TGeoEltu.h,
	  geom/inc/TGeoHalfSpace.h, geom/inc/TGeoHelix.h,
	  geom/inc/TGeoHype.h, geom/inc/TGeoManager.h,
	  geom/inc/TGeoMaterial.h, geom/inc/TGeoMatrix.h,
	  geom/inc/TGeoMedium.h, geom/inc/TGeoNavigator.h,
	  geom/inc/TGeoNode.h, geom/inc/TGeoPara.h,
	  geom/inc/TGeoParaboloid.h, geom/inc/TGeoPatternFinder.h,
	  geom/inc/TGeoPcon.h, geom/inc/TGeoPgon.h,
	  geom/inc/TGeoPhysicalNode.h, geom/inc/TGeoPolygon.h,
	  geom/inc/TGeoScaledShape.h, geom/inc/TGeoShape.h,
	  geom/inc/TGeoShapeAssembly.h, geom/inc/TGeoSphere.h,
	  geom/inc/TGeoTorus.h, geom/inc/TGeoTrd1.h, geom/inc/TGeoTrd2.h,
	  geom/inc/TGeoTube.h, geom/inc/TGeoVolume.h, geom/inc/TGeoXtru.h,
	  geom/inc/TVirtualGeoTrack.h, geom/src/TGeoVolume.cxx,
	  geombuilder/inc/TGeoGedFrame.h,
	  geombuilder/inc/TGeoMaterialEditor.h,
	  geombuilder/inc/TGeoPconEditor.h,
	  geombuilder/inc/TGeoTabManager.h, geompainter/inc/TGeoChecker.h,
	  geompainter/inc/TGeoOverlap.h, geompainter/inc/TGeoPainter.h,
	  geompainter/inc/TGeoTrack.h, geompainter/src/TGeoChecker.cxx:
	  From Andrei:
	  Improve the documentation layout such that THtml makes a better
	  rendering.

2007-12-17 15:59  antcheva

	* [r21424] gui/doc/index.txt: Fixed index.txt for GUI.

2007-12-17 15:50  brun

	* [r21423] xml/doc/index.txt: Fix typo.

2007-12-17 15:45  brun

	* [r21422] thread/doc/index.txt: From Sergei:
	  Add a missing html control sequence

2007-12-17 15:44  brun

	* [r21421] xml/doc, xml/doc/index.txt: From Sergei Linev;
	  Add doc/index.txt file describing the xml package.

2007-12-17 15:42  brun

	* [r21420] treeviewer/doc, treeviewer/doc/index.txt: From Bertrand:
	  Add the doc/index.txt describing the treeviewer package.

2007-12-17 15:40  brun

	* [r21419] sessionviewer/doc, sessionviewer/doc/index.txt: From
	  Bertrand:
	  Add the doc/index.txt file describing the sessionviewer package

2007-12-17 15:38  brun

	* [r21418] qtgsi/doc, qtgsi/doc/index.txt: From Bertrand:
	  Add the doc/index.txt describing the qtgsi package

2007-12-17 15:11  couet

	* [r21417] base/src/TAttFill.cxx: - Complete help

2007-12-17 14:24  brun

	* [r21416] qt/src/TQtClientFilter.cxx, qt/src/TQtClientWidget.cxx,
	  qt/src/TQtRootSlot.cxx: From Valeri Fine:
	  - Added missing class header docs.

2007-12-17 14:22  couet

	* [r21415] asimage/src/libAfterImage.tar.gz: - Fix in xwarp.h
	  needed to compile libAfterImage with MSVC2008.

2007-12-17 14:15  brun

	* [r21414] table/inc/TColumnView.h, table/inc/TTableDescriptor.h,
	  table/inc/tableDescriptor.h, table/src/TColumnView.cxx,
	  table/src/TPoints3D.cxx, table/src/TPointsArray3D.cxx,
	  table/src/TResponseTable.cxx, table/src/TTableDescriptor.cxx:
	  From Valeri Fine:
	  - Added missing class header docs.

2007-12-17 14:12  brun

	* [r21413] sessionviewer/src/TProofProgressLog.cxx,
	  sessionviewer/src/TSessionLogView.cxx: From Bertrand:
	  - Added missing class header docs.

2007-12-17 14:01  couet

	* [r21412] test/stressGraphics.cxx: - From Axel:
	  Enable stressGraphics to work from roottest without modifying
	  $ROOTSYS/test.

2007-12-17 11:42  moneta

	* [r21409] test/stressMathCore.cxx: fix (from Axel) for running
	  from roottest

2007-12-17 11:14  axel

	* [r21405] test: Update svn:ignore

2007-12-17 10:13  brun

	* [r21402] eg/src/TParticlePDG.cxx: Doc alignment improvements

2007-12-17 10:02  brun

	* [r21401] hist/inc/THnSparse.h: From Axel:
	  - Added missing class header docs.

2007-12-17 09:28  brun

	* [r21400] eg/src/TParticlePDG.cxx: Improve doc layout

2007-12-17 09:19  couet

	* [r21399] treeviewer/src/TParallelCoordEditor.cxx,
	  treeviewer/src/TSpiderEditor.cxx: - class header

2007-12-17 09:16  brun

	* [r21398] gui/src/TGFontDialog.cxx: From Bertrand:
	  - Added missing class header docs.

2007-12-17 09:15  brun

	* [r21397] io/src/TStreamerInfo.cxx: - Added missing class header
	  docs.

2007-12-17 09:00  brun

	* [r21396] guibuilder/src/TGuiBldDragManager.cxx,
	  guibuilder/src/TGuiBldHintsButton.cxx,
	  guibuilder/src/TGuiBldHintsEditor.cxx: From BertrandL
	  - Added missing class header docs.

2007-12-17 08:59  brun

	* [r21395] guihtml/src/TGHtml.cxx, guihtml/src/TGHtmlBrowser.cxx:
	  From Bertrand:
	  - Added missing class header docs.

2007-12-17 08:57  couet

	* [r21394] g3d/src/TPoints3DABC.cxx: - class header.

2007-12-17 08:55  brun

	* [r21393] eg/src/TParticle.cxx, eg/src/TParticleClassPDG.cxx,
	  eg/src/TParticlePDG.cxx, eg/src/TPrimary.cxx: Implement class
	  header ducumentation

2007-12-17 08:52  couet

	* [r21392] g3d/src/TNodeDiv.cxx: - Class header.

2007-12-17 08:38  brun

	* [r21391] base/src/TVirtualFitter.cxx: Implement class header doc.

2007-12-17 08:10  rdm

	* [r21390] rfio/src/TRFIOFile.cxx: Fix for win32.

2007-12-16 10:53  brun

	* [r21389] base/src/TApplication.cxx: Fix coding conventions

2007-12-15 16:47  pcanal

	* [r21388] io/src/TBufferFile.cxx: When reading, do not delete the
	  object being pointed to by a pointer when the call to
	  ReadObjectAny returns the object. This happens when a user class
	  has a pointer that is initialized by the default constructor to
	  the address of another object (read from the same buffer) but it
	  is not marked as transient.

2007-12-15 10:56  rdm

	* [r21387] rfio/inc/TRFIOFile.h, rfio/src/TRFIOFile.cxx: From
	  Andreas:
	  implementation of ReadBuffers() for RFIO.

2007-12-15 10:06  brun

	* [r21386] gui/inc/TGDNDManager.h, gui/inc/TRootBrowser.h,
	  gui/src/TGCommandPlugin.cxx, gui/src/TGDNDManager.cxx,
	  gui/src/TGFileBrowser.cxx, gui/src/TRootBrowser.cxx,
	  gui/src/TRootBrowserLite.cxx, gui/src/TVirtualDragManager.cxx:
	  From Bertrand:
	  - Added missing classes documentation.

2007-12-14 22:58  pcanal

	* [r21385] treeplayer/src/TTreeFormula.cxx: Do bitwise operation in
	  Long64_t instead of Int_t to prevent losing the most significant
	  bit of large integers

2007-12-14 21:18  pcanal

	* [r21384] tree/src/TBranchElement.cxx: Register the obj adresss in
	  the buffer's map even if the object does not inherit from TObject

2007-12-14 20:58  pcanal

	* [r21383] base/src/TBrowser.cxx: prevent uninitialize memory read
	  (was crashing root.exe -b tutorials/math/principal.C on linux/icc
	  8

2007-12-14 20:15  rdm

	* [r21382] net/src/TNetFile.cxx: From Bertrand and Gerri:
	  Fixes the problem reported at:
	  http://root.cern.ch/phpBB2/viewtopic.php?t=5917

2007-12-14 17:43  pcanal

	* [r21381] io/src/TBufferFile.cxx: Update ReadClassBuffer(TClass
	  *cl, void *pointer, Int_t version, UInt_t start, UInt_t count) to
	  properly handle the new foreign class version numbering scheme
	  (i.e. -1 is now a legal version number)

2007-12-14 15:12  wouter

	* [r21379] roofitcore/inc/Roo1DTable.h,
	  roofitcore/inc/RooAICRegistry.h, roofitcore/inc/RooAbsArg.h,
	  roofitcore/inc/RooAbsCache.h,
	  roofitcore/inc/RooAbsCacheElement.h,
	  roofitcore/inc/RooAbsCachedPdf.h,
	  roofitcore/inc/RooAbsCategory.h,
	  roofitcore/inc/RooAbsCategoryLValue.h,
	  roofitcore/inc/RooAbsLValue.h,
	  roofitcore/inc/RooAbsOptTestStatistic.h,
	  roofitcore/inc/RooAbsProxy.h, roofitcore/inc/RooAbsRealLValue.h,
	  roofitcore/inc/RooAbsTestStatistic.h,
	  roofitcore/inc/RooArgProxy.h, roofitcore/inc/RooCacheManager.h,
	  roofitcore/inc/RooCatType.h, roofitcore/inc/RooCategory.h,
	  roofitcore/inc/RooCategoryProxy.h, roofitcore/inc/RooComplex.h,
	  roofitcore/inc/RooConvCoefVar.h, roofitcore/inc/RooDataHist.h,
	  roofitcore/inc/RooDataHistSliceIter.h,
	  roofitcore/inc/RooErrorVar.h, roofitcore/inc/RooFFTConvPdf.h,
	  roofitcore/inc/RooFitResult.h, roofitcore/inc/RooLinearVar.h,
	  roofitcore/inc/RooListProxy.h, roofitcore/inc/RooMapCatEntry.h,
	  roofitcore/inc/RooMsgService.h, roofitcore/inc/RooMultiCatIter.h,
	  roofitcore/inc/RooNormSetCache.h,
	  roofitcore/inc/RooNumIntFactory.h, roofitcore/inc/RooPrintable.h,
	  roofitcore/inc/RooProdPdf.h, roofitcore/inc/RooProfileLL.h,
	  roofitcore/inc/RooRandomizeParamMCSModule.h,
	  roofitcore/inc/RooRealConstant.h, roofitcore/inc/RooRealProxy.h,
	  roofitcore/inc/RooRealVar.h, roofitcore/inc/RooSetProxy.h,
	  roofitcore/inc/RooStreamParser.h, roofitcore/inc/RooStringVar.h,
	  roofitcore/inc/RooTable.h, roofitcore/inc/RooThreshEntry.h,
	  roofitcore/inc/RooTrace.h, roofitcore/src/Roo1DTable.cxx,
	  roofitcore/src/RooAICRegistry.cxx, roofitcore/src/RooAbsArg.cxx,
	  roofitcore/src/RooAbsBinning.cxx,
	  roofitcore/src/RooAbsCachedPdf.cxx,
	  roofitcore/src/RooAbsData.cxx,
	  roofitcore/src/RooAbsGenContext.cxx,
	  roofitcore/src/RooAbsHiddenReal.cxx,
	  roofitcore/src/RooAbsIntegrator.cxx,
	  roofitcore/src/RooAbsOptTestStatistic.cxx,
	  roofitcore/src/RooAbsProxy.cxx,
	  roofitcore/src/RooAbsRealLValue.cxx,
	  roofitcore/src/RooAbsSelfCachedPdf.cxx,
	  roofitcore/src/RooAbsTestStatistic.cxx,
	  roofitcore/src/RooAcceptReject.cxx,
	  roofitcore/src/RooAdaptiveGaussKronrodIntegrator1D.cxx,
	  roofitcore/src/RooAddGenContext.cxx,
	  roofitcore/src/RooAddModel.cxx, roofitcore/src/RooAddPdf.cxx,
	  roofitcore/src/RooArgProxy.cxx, roofitcore/src/RooArgSet.cxx,
	  roofitcore/src/RooCacheManager.cxx,
	  roofitcore/src/RooCachedPdf.cxx, roofitcore/src/RooCatType.cxx,
	  roofitcore/src/RooCategoryProxy.cxx,
	  roofitcore/src/RooChi2Var.cxx,
	  roofitcore/src/RooClassFactory.cxx,
	  roofitcore/src/RooCmdConfig.cxx, roofitcore/src/RooConstVar.cxx,
	  roofitcore/src/RooCurve.cxx, roofitcore/src/RooCustomizer.cxx,
	  roofitcore/src/RooDLLSignificanceMCSModule.cxx,
	  roofitcore/src/RooDataHist.cxx,
	  roofitcore/src/RooDataProjBinding.cxx,
	  roofitcore/src/RooErrorVar.cxx, roofitcore/src/RooExtendPdf.cxx,
	  roofitcore/src/RooFFTConvPdf.cxx,
	  roofitcore/src/RooFitResult.cxx,
	  roofitcore/src/RooFormulaVar.cxx,
	  roofitcore/src/RooGenContext.cxx,
	  roofitcore/src/RooGenericPdf.cxx, roofitcore/src/RooHistPdf.cxx,
	  roofitcore/src/RooImproperIntegrator1D.cxx,
	  roofitcore/src/RooIntegrator1D.cxx,
	  roofitcore/src/RooLinearVar.cxx,
	  roofitcore/src/RooLinkedList.cxx,
	  roofitcore/src/RooListProxy.cxx,
	  roofitcore/src/RooMCIntegrator.cxx,
	  roofitcore/src/RooMCStudy.cxx, roofitcore/src/RooMinuit.cxx,
	  roofitcore/src/RooMsgService.cxx, roofitcore/src/RooNLLVar.cxx,
	  roofitcore/src/RooNameSet.cxx,
	  roofitcore/src/RooNormListManager.cxx,
	  roofitcore/src/RooNormManager.cxx,
	  roofitcore/src/RooNumIntConfig.cxx,
	  roofitcore/src/RooNumIntFactory.cxx,
	  roofitcore/src/RooObjCacheManager.cxx,
	  roofitcore/src/RooProdGenContext.cxx,
	  roofitcore/src/RooProdPdf.cxx, roofitcore/src/RooProduct.cxx,
	  roofitcore/src/RooProfileLL.cxx,
	  roofitcore/src/RooProjectedPdf.cxx,
	  roofitcore/src/RooRandomizeParamMCSModule.cxx,
	  roofitcore/src/RooRealBinding.cxx,
	  roofitcore/src/RooRealMPFE.cxx, roofitcore/src/RooRealProxy.cxx,
	  roofitcore/src/RooRealSumPdf.cxx, roofitcore/src/RooRealVar.cxx,
	  roofitcore/src/RooRealVarSharedProperties.cxx,
	  roofitcore/src/RooSegmentedIntegrator1D.cxx,
	  roofitcore/src/RooSegmentedIntegrator2D.cxx,
	  roofitcore/src/RooSetProxy.cxx,
	  roofitcore/src/RooSharedProperties.cxx,
	  roofitcore/src/RooSharedPropertiesList.cxx,
	  roofitcore/src/RooSimGenContext.cxx,
	  roofitcore/src/RooSimPdfBuilder.cxx,
	  roofitcore/src/RooSimultaneous.cxx,
	  roofitcore/src/RooStreamParser.cxx,
	  roofitcore/src/RooStringVar.cxx, roofitcore/src/RooTable.cxx,
	  roofitcore/src/RooTrace.cxx, roofitcore/src/RooTreeData.cxx,
	  roofitcore/src/RooUniformBinning.cxx: o (Large number of classes)
	  
	  - Systematically use Riosfwd.h in header files instead
	  of <iostream> or Riostream.h
	  
	  - Include "Riostream.h" in implementations where necessary
	  
	  - Convert remaining <iostream> to "Riostream" in implementations
	  
	  - Outline all inline functions using cout or endl to facilitate
	  use of fwd declaration of iostreams in all classes
	  
	  - Elimination of some duplicate headers
	  
	  - Match use of 'using namespace std' in implementation files
	  to classes that actually use STL classes

2007-12-14 11:37  rdm

	* [r21377] base/inc/TVirtualPadEditor.h,
	  base/src/TVirtualPadEditor.cxx: From Ilka:
	  add class description for TVirtualPadEditor.

2007-12-14 11:32  rdm

	* [r21376] hist/inc/THnSparse.h, hist/src/THnSparse.cxx,
	  meta/src/TCint.cxx, tmva/inc/MethodCuts.h,
	  tmva/inc/TActivationIdentity.h, tmva/src/MethodCuts.cxx,
	  tmva/src/MethodVariable.cxx, tmva/src/Timer.cxx,
	  utils/src/rootcint.cxx: fix the remaining bunch of gcc 4.2
	  warnings.

2007-12-14 11:12  antcheva

	* [r21375] guibuilder/inc/TGuiBldHintsButton.h,
	  guibuilder/src/TGuiBldDragManager.cxx,
	  guibuilder/src/TGuiBldHintsButton.cxx,
	  guibuilder/src/TGuiBldHintsEditor.cxx: Added class documentation.

2007-12-14 09:20  rdm

	* [r21374] meta/src/TCint.cxx: correct method description.

2007-12-14 09:19  rdm

	* [r21373] unix/src/TUnixSystem.cxx: fix typo in comment.

2007-12-14 09:18  rdm

	* [r21372] base/src/TSystem.cxx: explicitly mention that the regexp
	  argument is actually a wildcard with
	  a reference to TRegexp::Wildcard.

2007-12-14 09:17  rdm

	* [r21371] graf/inc/TGraphPolar.h, graf/src/TGraphPolar.cxx: remove
	  Riostream.h from header.

2007-12-14 08:34  brun

	* [r21370] base/inc/RVersion.h, build/version_number: Start
	  development version 5.17/09.
	  This new version is assumed to contain only bug fixes or
	  documentation improvements.

2007-12-13 11:26  brun

	* [r21358] base/inc/RVersion.h, build/version_number: Stamp
	  development release 5.17/08

2007-12-13 10:25  brun

	* [r21357] vmc/doc/index.txt: Delete reference to the HowtoMC page

2007-12-13 09:05  brun

	* [r21356] html/src/TDocParser.cxx: From Axel:
	  resurrect inline function documentation (usedocxx was not set
	  properly).

2007-12-13 07:53  moneta

	* [r21355] physics/src/TFeldmanCousins.cxx: use TMath::Poisson
	  instead of implementing the Poisson probability (fix suggested in
	  https://savannah.cern.ch/bugs/?27788

2007-12-13 07:26  brun

	* [r21354] vmc/doc/index.txt: Fix one more wrong doc link

2007-12-13 07:11  pcanal

	* [r21353] io/inc/TStreamerInfo.h, io/src/TStreamerInfo.cxx,
	  meta/inc/TClass.h, meta/inc/TVirtualStreamerInfo.h,
	  meta/src/TClass.cxx, tree/src/TBranchElement.cxx: NOTICE:
	  
	  This version introduces support for transitioning classes
	  from the mode where no class version is specified
	  (and the checksum is always used for lookup) and a mode
	  where the user specifies an explicit version number for
	  the class (Allow for simplier, clearer data model evolution).
	  
	  The class version can be specified in 3 different ways:
	  
	  a) Use rootcint and add a ClassDef macro in the class
	  declaration:
	  class MyClass {
	  ...
	  ClassDef(MyClass,10);
	  };
	  
	  b) Use rootcint and add a RootClassVersion macro in the class
	  source file:
	  RootClassVersion(MyClass,10);
	  
	  c) Use genreflex and specify a ClassVersion property in the
	  selection.xml :
	  <class name="MyClass" ClassVersion="10"/>
	  
	  Those 3 solutions set the class version of MyClass's TClass
	  object
	  to 10.
	  
	  IMPORTANT:
	  
	  In order to avoid a clash between this class version (and any
	  future
	  class versions) and the class versions given by default to the
	  non-versioned layout of the class, you MUST set this class
	  version to
	  a number that is greater than the number of distinct
	  non-versioned layout.
	  Otherwise you may see warning messages like:
	  
	  Warning in <TStreamerInfo::BuildCheck>:
	  The class MyClass transitioned from not having a specified class
	  version
	  to having a specified class version (the current class version is
	  2).
	  However too many different non-versioned layouts of the class
	  have been
	  loaded so far. This prevent the proper reading of objects written
	  with
	  the class layout version 3, in particular from the file:
	  myclass3.root.
	  
	  Addition Details:
	  
	  When loading a file containing a non-versioned layout of a class,
	  this
	  layout is assigned the next 'free' number in the list of
	  StreamerInfo.
	  In particular this means that if many files with non-versioned
	  layout
	  of the class are loaded before the loading of a library
	  containing a
	  versioned class layout, the slot reserved for this version layout
	  may
	  already be occupied and you will get the following error message:
	  
	  The class MyClass transitioned from not having a specified class
	  version
	  to having a specified class version (the current class version is
	  2).
	  However too many different non-versioned layouts of the class
	  have
	  already been loaded so far. To work around this problem you can
	  load fewer 'old' file in the same ROOT session or load the C++
	  library
	  describing the class MyClass before opening the files or increase
	  the version
	  number of the class for example ClassDef(MyClass,3).
	  Do not try to write objects with the current class definition,
	  the files might not be readable.
	  
	  Also if many files with non-versioned layout of the class are
	  read
	  before a file with a versioned layout (and this number is too
	  low), you
	  may get the following error message:
	  
	  Warning in <TStreamerInfo::BuildCheck>:
	  The class MyClass transitioned from not having a specified class
	  version
	  to having a specified class version (the current class version is
	  2).
	  However too many different non-versioned layouts of the class
	  have been
	  loaded so far. This prevent the proper reading of objects written
	  with
	  the class layout version 3, in particular from the file:
	  myclass3.root.
	  
	  Additional note:
	  For classes with no specified version (i.e. Foreign classes), the
	  current
	  TStreamerInfo is stored at index -1 in the list of StreamerInfo
	  and the
	  class version (gROOT->GetClass("MyClass")->GetClassVersion()) is
	  set to -1.

2007-12-13 07:06  pcanal

	* [r21352] cint/src/v6_decl.cxx, cint/src/v6_parse.cxx,
	  cint/src/v6_pcode.cxx: Fix handling of: case(1)
	  Fix the use of postinc directly in function call with parameter
	  than are references.
	  Correct the constness in the case: Object * const &front() const;
	  (i.e Object*const vs Object const*).

2007-12-12 22:04  rdm

	* [r21351] Makefile: in case config/Makefile.comp does not exist
	  print error message, like
	  in case config/Makefile.config does not exist.

2007-12-12 18:44  brun

	* [r21350] vmc/doc/index.txt: Update some VMC links

2007-12-12 17:02  brun

	* [r21349] gui/src/TRootBrowser.cxx: From Bertrand:
	  - Add forgotten ClassImp(TRootBrowser)

2007-12-12 16:59  rdm

	* [r21348] Makefile, cint/configcint.mk, config/Makefile-comp.in,
	  config/root-config.in, configure: compiledata.h and configcint.mk
	  now depend properly on config/Makefile.comp.

2007-12-12 16:47  couet

	* [r21347] treeviewer/src/TSpiderEditor.cxx: - Add header

2007-12-12 16:18  couet

	* [r21346] base/src/TVirtualPS.cxx, base/src/TVirtualPad.cxx,
	  gpad/src/TViewer3DPad.cxx, hist/src/TVirtualHistPainter.cxx: -
	  Class header

2007-12-12 15:33  couet

	* [r21345] gpad/src/TView.cxx: - Add header

2007-12-12 15:22  rdm

	* [r21344] config: add Makefile.comp to ignore list.

2007-12-12 15:20  couet

	* [r21343] gl/src/TGLPolyLine.cxx, gl/src/TGLPolyMarker.cxx: - Add
	  header

2007-12-12 15:20  rdm

	* [r21342] Makefile, config/Makefile-comp.in,
	  config/root-config.in, configure, test/Makefile.arch: added new
	  configure options:
	  --with-cc
	  --with-cxx
	  --with-f77
	  --with-ld
	  which allows the specification of alternative compilers, which,
	  of course,
	  have to be compatible with the specified or auto detected
	  platform.
	  This is ok:
	  ./configure solarisgcc --with-cxx=g++-4.2
	  this not:
	  ./configure macosxicc --with-cxx=g++-4.2
	  Also root-config now supports the options --cc, --cxx, -f77 and
	  --ld.
	  If no alternative compilers were specified these return a blank.
	  In test/Makefile.arch and example of root-config --cxx et al
	  usage is
	  given, so that the alternative compilers specified in ./configure
	  will
	  be used to build the test programs.

2007-12-12 15:15  couet

	* [r21341] g3d/src/TView3D.cxx: - Fix a warning (multi-line
	  comment)

2007-12-12 15:10  rdm

	* [r21340] utils/src/rlibmap.cxx: From Axel:
	  Re-add spaces between multiple closing template brackets, that
	  were
	  either removed by Compress() or forgotten by the LinkDef.h
	  author:
	  A<B<C>> becomes A<B<C> > (yes, op>>() is handled). They are now
	  compatible with CINT's version of the same class name, which
	  means that
	  TClass renaming (=delete old, create new) and thus the PyROOT
	  problem
	  with changed TClass objects is now gone.

2007-12-12 15:10  couet

	* [r21339] gl/src/TGLText.cxx: - Add a class header.

2007-12-12 15:07  couet

	* [r21338] gl/src/TGLAxis.cxx: - Add a class header

2007-12-12 15:01  couet

	* [r21337] g3d/src/TView3D.cxx: - Better help header(s).

2007-12-12 13:46  brun

	* [r21336] eve/doc, eve/doc/index.txt: Add a class directory file
	  describing the EVE package

2007-12-12 11:54  brun

	* [r21335] test/stressRooFit.cxx: Normalize rootmarks

2007-12-12 11:49  brun

	* [r21334] test/stressMathCore.cxx, test/stressMathMore.cxx:
	  Normalize rootmarks

2007-12-12 11:45  brun

	* [r21333] test/stressGraphics.cxx: Normalize rootmarks

2007-12-12 11:31  brun

	* [r21332] proof/src/TDSet.cxx: From Philippe:
	  make TDSet independent from the libRIO.

2007-12-12 11:29  brun

	* [r21331] gui/inc/HelpText.h, gui/inc/TRootBrowser.h,
	  gui/src/HelpText.cxx, gui/src/TRootBrowser.cxx,
	  gui/src/TRootBrowserLite.cxx, pythia6/src/TPythia6.cxx: From
	  Bertrand:
	  - Added help on remote sessions
	  - Added help menu in the new browser

2007-12-12 10:15  rdm

	* [r21330] base/src/TApplication.cxx,
	  net/src/TApplicationRemote.cxx: Add extensive help to the .R
	  command. Type .R -? or -h or --help to get
	  a detailed description of the options. Also support for sourced
	  scripts
	  is added, as well as the old behaviour to execute a custom roots
	  script,
	  to for example start in a special mode or special binary. To
	  source a
	  script before starting roots do:
	  
	  .R lxplus <go
	  
	  to execute your own roots like script do:
	  
	  .R lxplus myroots

2007-12-12 09:37  brun

	* [r21329] hist/src/THnSparse.cxx: From Axel:
	  Add doc for THnSparse's internal classes.

2007-12-12 09:32  axel

	* [r21328] html/src/TClassDocOutput.cxx,
	  html/src/TDocDirective.cxx, html/src/TDocOutput.cxx: Add class
	  doc.

2007-12-12 08:35  brun

	* [r21327] test/Makefile.win32: From Bertrand:
	  - Add new tests (stresses) in the native win32 nmake makefile

2007-12-12 08:26  axel

	* [r21326] html/inc/TDocParser.h, html/src/TClassDocOutput.cxx,
	  html/src/TDocParser.cxx: From Matevz and me:
	  * allow several classes in one source file with doc for each.
	  Documentation in front of a class' ClassImp() invocation will be
	  used; if there is none, the first one in the file will be taken
	  (see e.g. TH1F etc: shared doc for all classes).
	  * convert the class doc parsing into a state machine which fixes
	  a few cases where THtml was "forgetting" to write the class doc.
	  * fix a span for namespaces.
	  * Strip() now also removes newlines.
	  * clear un-used comments; fixes rare problem with misinterpreted
	  comments.

2007-12-12 06:21  brun

	* [r21325] build/unix/makestatic.sh: exclude rootfitcore and eve
	  from the static build

2007-12-11 18:20  brun

	* [r21324] configure: From Lorenzo:
	  patch for configure to use the static GSL libraries.
	  When using it on a Linux 64 bit machines (like SLC4 with gcc3.4),
	  one must have compiled GSL with the option -fPIC also for the
	  static library.
	  This is done by using the GSL configure option --with-pic
	  
	  With these changes the LD_LIBRARY_PATH to GSL is not needed
	  anymore when running or building stressMathMore

2007-12-11 17:37  brun

	* [r21323] graf/src/TGraphAsymmErrors.cxx: From Lorenzo:
	  patch for fixing the following problem with BayesDivide in
	  TGraphAsymmErrors:
	  
	  - missing precision when inverting the beta distribution (see bug
	  https://savannah.cern.ch/bugs/?30246
	  
	  - use lower(upper) error equal zero for bins with 0 (1)
	  efficiency

2007-12-11 13:07  brun

	* [r21322] math/src/TMath.cxx: In TMath::Gamma documentation remove
	  a blank character in the definition of a Latex #frac

2007-12-11 12:04  brun

	* [r21321] tree/src/TBranchElement.cxx: Fix a bug in
	  TBranchElement::GetTypeName.
	  The returned type should be fStreamerType%20 and not
	  fStreamerType%21

2007-12-11 11:01  moneta

	* [r21319] test/Makefile, test/stressMathCore.cxx,
	  test/stressMathMore.cxx: fix problems making and loading
	  dictionary library for stressMathcore and compilaiton problem on
	  Windows

2007-12-11 08:48  matevz

	* [r21317] eve/inc/TEveGValuators.h, eve/src/TEveGValuators.cxx,
	  eve/src/TEveProjections.cxx, eve/src/TEveTrackGL.cxx,
	  eve/src/TEveTrans.cxx: Fix the remaining four coding convention
	  violations.

2007-12-11 08:21  brun

	* [r21316] roofit/src/RooNDKeysPdf.cxx: From Wouter:
	  Fix one more fabs problem.

2007-12-11 08:14  brun

	* [r21315] test/stressMathMore.cxx: From Bertrand:
	  Fix a fatal compilation error on Windows

2007-12-10 22:09  brun

	* [r21314] roofit/src/RooBDecay.cxx, roofit/src/RooNDKeysPdf.cxx,
	  roofitcore/src/RooClassFactory.cxx: From Wouter:
	  Fix compilation warnings due to the use of fabs.
	  Fix a silly problem in RooClassFactory.cxx

2007-12-10 21:30  moneta

	* [r21313] test/Makefile, test/stressMathMore.cxx: fix a warning in
	  stressMathore and a problem making dictionary library on Windows

2007-12-10 19:42  matevz

	* [r21312] eve/inc/TEvePolygonSetProjectedEditor.h,
	  eve/inc/TEveQuadSet.h: Bertrand: fix unresolved external symbols
	  on Windows (class destructors).

2007-12-10 19:08  brun

	* [r21311] test/RootShower/MyEvent.cxx,
	  test/RootShower/MyParticle.cxx, test/RootShower/RSAbout.cxx,
	  test/RootShower/RSMsgBox.cxx, test/RootShower/RootShower.cxx:
	  From Bertrand:
	  Fix compiler warnings

2007-12-10 19:05  matevz

	* [r21310] eve/inc/TEveBoxSetGL.h, eve/inc/TEveDigitSetEditor.h,
	  eve/inc/TEveElement.h, eve/inc/TEveElementEditor.h,
	  eve/inc/TEveGedEditor.h, eve/inc/TEveGeoNode.h,
	  eve/inc/TEveLineEditor.h, eve/inc/TEvePolygonSetProjectedGL.h,
	  eve/inc/TEveQuadSetGL.h, eve/inc/TEveRGBAPaletteEditor.h,
	  eve/inc/TEveScene.h, eve/inc/TEveSceneInfo.h,
	  eve/inc/TEveStraightLineSetEditor.h, eve/inc/TEveTrackEditor.h,
	  eve/inc/TEveTrackPropagator.h,
	  eve/inc/TEveTrackPropagatorEditor.h, eve/inc/TEveTransEditor.h,
	  eve/inc/TEveTriangleSetEditor.h, eve/inc/TEveVSDStructs.h,
	  eve/inc/TEveViewer.h, eve/src/TEveBoxSetGL.cxx,
	  eve/src/TEveBrowser.cxx, eve/src/TEveChunkManager.cxx,
	  eve/src/TEveDigitSetEditor.cxx, eve/src/TEveElement.cxx,
	  eve/src/TEveElementEditor.cxx, eve/src/TEveEventManager.cxx,
	  eve/src/TEveFrameBox.cxx, eve/src/TEveFrameBoxGL.cxx,
	  eve/src/TEveGValuators.cxx, eve/src/TEveGedEditor.cxx,
	  eve/src/TEveGeoNode.cxx, eve/src/TEveGeoNodeEditor.cxx,
	  eve/src/TEveGridStepper.cxx, eve/src/TEveLineEditor.cxx,
	  eve/src/TEveMacro.cxx, eve/src/TEveManager.cxx,
	  eve/src/TEvePad.cxx, eve/src/TEvePointSet.cxx,
	  eve/src/TEvePolygonSetProjected.cxx,
	  eve/src/TEvePolygonSetProjectedEditor.cxx,
	  eve/src/TEvePolygonSetProjectedGL.cxx,
	  eve/src/TEveProjections.cxx, eve/src/TEveQuadSet.cxx,
	  eve/src/TEveQuadSetGL.cxx, eve/src/TEveRGBAPalette.cxx,
	  eve/src/TEveRGBAPaletteEditor.cxx, eve/src/TEveScene.cxx,
	  eve/src/TEveSceneInfo.cxx, eve/src/TEveStraightLineSet.cxx,
	  eve/src/TEveStraightLineSetEditor.cxx, eve/src/TEveTrack.cxx,
	  eve/src/TEveTrackEditor.cxx, eve/src/TEveTrackGL.cxx,
	  eve/src/TEveTrackProjected.cxx, eve/src/TEveTrackProjectedGL.cxx,
	  eve/src/TEveTrackPropagator.cxx,
	  eve/src/TEveTrackPropagatorEditor.cxx, eve/src/TEveTrans.cxx,
	  eve/src/TEveTransEditor.cxx, eve/src/TEveTreeTools.cxx,
	  eve/src/TEveTriangleSet.cxx, eve/src/TEveTriangleSetEditor.cxx,
	  eve/src/TEveTriangleSetGL.cxx, eve/src/TEveUtil.cxx,
	  eve/src/TEveVSDStructs.cxx, eve/src/TEveViewer.cxx: Fix coding
	  convention violations.

2007-12-10 18:58  brun

	* [r21309] test/RootShower/MyDetector.h: From Bertrand:
	  TGeoMatrix.h must now be included.

2007-12-10 17:19  moneta

	* [r21308] test/Makefile, test/stressMathCore.cxx,
	  test/stressMathMore.cxx: - add documentation on how to run the
	  tests
	  make now a library for the dictionary (TrackMathCoreCint.so) used
	  in stressMathCore
	  - make stressMathMore readable by CINT. Still to be able to run
	  in CINT, a problem with typedef's to free functions needs to be
	  understood.

2007-12-10 17:14  couet

	* [r21307] tutorials/graphics/psview.C: - Better version.

2007-12-10 17:04  brun

	* [r21306] test/stressShapes.cxx: TGeoMatrix.h must now be
	  included.

2007-12-10 16:56  brun

	* [r21305] hist/inc/TH1.h, hist/inc/TH2.h, hist/inc/THStack.h,
	  hist/src/TH1.cxx, hist/src/TH2.cxx, hist/src/THStack.cxx: From
	  Axel & Lorenzo:
	  Fixing first and last bin default arguments. Now the default
	  argument of:
	  
	  firstbin = 0, lastbin = -1 indicates [0,Nbin+1] (includes
	  underflow/overflow)
	  firstbin= 1, lastbin = -1 indicates [1,Nbin]

2007-12-10 16:53  rdm

	* [r21304] base/src/TSystem.cxx: lone option "L" was not supported
	  in GetLibraries().

2007-12-10 16:48  brun

	* [r21303] etc/vmc/MakeRules: From Federico:
	  Fix typo in previous patch

2007-12-10 16:36  axel

	* [r21302] reflex/python/genreflex/genreflex.py: Next try to find a
	  solution for option quotes to work on both windows cmd.exe and
	  bash, after python has mangled them. The problem only exists
	  because -DA="two words" needs to be supported - and the quotes
	  need to be kept!
	  Solution: if '=' is followed by '"' and the option ends on '"'
	  then escape the double quotes.
	  genreflex ... "-DSTRING=\"a string\""
	  works now on both windows and linux.
	  Also print the gccxml invocation command if debug is set.

2007-12-10 16:21  brun

	* [r21301] eve/src/TEveGeoNode.cxx,
	  g4root/src/TG4RootDetectorConstruction.cxx, geom/inc/TGeoCache.h,
	  geom/inc/TGeoHelix.h, geom/inc/TGeoNavigator.h,
	  geom/inc/TGeoNode.h, geom/inc/TGeoPatternFinder.h,
	  geom/src/TGeoArb8.cxx, geom/src/TGeoBBox.cxx,
	  geom/src/TGeoCache.cxx, geom/src/TGeoCompositeShape.cxx,
	  geom/src/TGeoHelix.cxx, geom/src/TGeoNavigator.cxx,
	  geom/src/TGeoNode.cxx, geom/src/TGeoPara.cxx,
	  geom/src/TGeoPatternFinder.cxx, geom/src/TGeoScaledShape.cxx,
	  geom/src/TGeoShapeAssembly.cxx, geom/src/TGeoTrd1.cxx,
	  geom/src/TGeoTrd2.cxx, geombuilder/src/TGeoManagerEditor.cxx,
	  geombuilder/src/TGeoNodeEditor.cxx,
	  geombuilder/src/TGeoVolumeEditor.cxx, test/stressGeometry.cxx,
	  vmc/src/TGeoMCGeometry.cxx: From Andrei:
	  there was an implicit dependency of TGeoMatrix by TGeoManager.h
	  via TGeoNavigator.h->TGeoCache.h + few other bad dependencies
	  like: TGeoMatrix included by TGeoNode.h via TGeoPatternFinder.h
	  Hmm... I had to cleanup few inlines, introduce a transient matrix
	  in TGeoNavigator (to recover the lost inlining speed) + add
	  several #include "TGeoMatrix.h" allover where this was included
	  and used via TGeoManager.h

2007-12-10 16:01  couet

	* [r21300] tutorials/graphics/psview.C: - Complete help.

2007-12-10 15:54  brun

	* [r21299] gui/src/TRootCanvas.cxx,
	  gui/src/TRootEmbeddedCanvas.cxx: From Bertrand:
	  - Allow to drag and drop ps, eps and pdf files in TRootCanvas and
	  TRootEmbeddedCanvas.

2007-12-10 15:34  matevz

	* [r21298] tutorials/gl/glViewerExercise.C: Connect
	  TTimer::TurnOff() to TGLSAFrame::CloseWindow(). Without this the
	  next timer call resulted in SEGV as it was operating on a deleted
	  window.

2007-12-10 15:17  rdm

	* [r21297] configure: remove the obsolete files lib/libASPluginGS.*
	  that might have been left over
	  from a previous built.

2007-12-10 15:09  rdm

	* [r21296] configure: From Eddy:
	  use -rpath for solarisgcc (was already done for linux).

2007-12-10 15:02  rdm

	* [r21295] etc/vmc/MakeRules, etc/vmc/Makefile.linux,
	  hist/inc/TFormulaPrimitive.h: From Fed:
	  - dummy copy ctor and assignment operator for TFormulaPrimitive
	  - fixes in vmc make files

2007-12-10 14:53  rdm

	* [r21294] asimage/Module.mk, asimage/inc/LinkDef.h,
	  asimage/inc/LinkDefGS.h, asimage/src/TASPluginGS.cxx: From
	  Bertrand:
	  Don't generate a separate library for the ghostscript plugin, but
	  put the
	  code in libASImage.
	  It didn't work on Windows, since there were two instances of
	  libAfterImage
	  storage manager (one in each DLL, each DLL being linked with
	  static
	  libAfterImage library) and they don't share memory. This means
	  that an
	  ASImage created in a DLL cannot be used in another DLL.
	  With this patch, the macro psview.C works on Linux and Windows
	  (if
	  ghostscript has been installed and is in the PATH).

2007-12-10 14:44  couet

	* [r21293] test/stressGraphics.cxx, test/stressGraphics.ref: -
	  Create $ROOTSYS/tutorials/hsimple.root if it does not exist by
	  running
	  in batch $ROOTSYS/tutorials/hsimple.C.

2007-12-10 11:57  brun

	* [r21292] winnt/inc/TWinNTSystem.h: From Bertrand:
	  Solves the problem reported at:
	  <http://savannah.cern.ch/bugs/?32048>
	  (no default values in TWinNTSystem::Load)

2007-12-10 11:56  matevz

	* [r21291] eve/inc/TEveManager.h, eve/src/TEveManager.cxx: Add
	  exception handler for TEveExceptions.
	  Rename function arguments that were still named render_element
	  and alike.
	  Add function descriptions.

2007-12-10 11:04  brun

	* [r21290] geom/inc/TGeoMatrix.h, geom/src/TGeoManager.cxx: From
	  Andrei:
	  another fix for the uninitialized variable spotted by Federico,
	  plus the addition of TGeoMatrix::Print() in the context menu
	  needed by Bjorn in Bug report #27780.

2007-12-10 10:59  ganis

	* [r21289] proofd/src/XrdProofWorker.cxx: Fix problem with support
	  for '[user@]host[:port]' in worker definition directives (bug
	  #31380)

2007-12-10 10:44  ganis

	* [r21288] proof/inc/TProof.h, proof/src/TCondor.cxx,
	  proof/src/TProofCondor.cxx, proof/src/TProofServ.cxx: Fix for bug
	  32035:
	  - Always use gSystem->TempDirectory() where relevant

2007-12-10 10:27  brun

	* [r21287] geom/src/TGeoBuilder.cxx: From Andrei:
	  I added coherency to all TGeoBuilder::MakeXXX("name",...) that
	  now create the shape for the corresponding volume with the same
	  name.

2007-12-10 10:26  brun

	* [r21286] roofitcore/src/RooAbsCache.cxx,
	  roofitcore/src/RooAbsCacheElement.cxx,
	  roofitcore/src/RooAbsCachedPdf.cxx,
	  roofitcore/src/RooAbsSelfCachedPdf.cxx,
	  roofitcore/src/RooCacheManager.cxx,
	  roofitcore/src/RooDataSet.cxx, roofitcore/src/RooFFTConvPdf.cxx,
	  roofitcore/src/RooProfileLL.cxx,
	  roofitcore/src/RooProjectedPdf.cxx: From Wouter:
	  o RooAbsSelfCachedPdf, RooAbsCacheElement, RooFFTConvPdf,
	  RooAbsCachedPdf, RooProfileLL, RooProjectedPdf, RooAbsCache
	  
	  - Include forgotten RooFit.h header to fix Solaris compilation
	  problems (Savannah #32026)
	  
	  o RooCacheManager
	  
	  - Add multiple-inclusion guards around templateClassImp
	  to solve Solaris compilation problem (Savannah #32026)
	  
	  o RooDataSet
	  
	  - Change message level of information message in RooDataSet::read
	  from its mistaken ERROR level to INFO level (reported by Jim
	  Smith)

2007-12-10 10:24  brun

	* [r21285] hist/src/TAxis.cxx: Fix documentation error in
	  TAxis::SetRange

2007-12-10 09:34  couet

	* [r21284] tutorials/graphics/psview.C: - Add a comment about
	  ghostscript

2007-12-10 07:59  rdm

	* [r21283] build/package/common/root-plugin-gl.control,
	  build/package/debian/changelog, build/package/debian/control.in,
	  build/package/debian/rules, build/package/lib/makebuilddepend.sh,
	  build/package/lib/makelists.sh, configure: Form Christian Holm:
	  * Re-enable use of Win32 Qt4 debug libraries
	  * Fix python problem on Ubuntu (thanks to Andy O'Neill
	  <oneill@phys.columbia.edu>)
	  * Make sure libRooFitCore is distributed
	  * Build-dependencies
	  * EVE in root-plugin-gl
	  * Fix Debian BTS bugs.

2007-12-10 02:46  rdm

	* [r21282] base/src/TSystem.cxx: From Matevz:
	  remove warning and re-throw in correct location.

2007-12-08 09:31  moneta

	* [r21281] hist/inc/TH2.h, hist/src/TH2.cxx: - from Axel:
	  change default range used when projecting a 2D histogram (TH2)
	  into a TH1.
	  The underflow/overflow along Y (X) are now by default considered
	  when projecting into X (Y).

2007-12-07 19:36  moneta

	* [r21280] mathcore/src/FunctorCint.cxx: fixes for Solaris forgot
	  in previous commit

2007-12-07 18:37  brun

	* [r21279] hist/inc/THnSparse.h, hist/src/THnSparse.cxx: From
	  Silvia Arcelli and Axel: make THnSparse::Projection() consistent
	  with the versions from TH3 and (soon) TH2 wrt handling of over-
	  and
	  underflow bins.

2007-12-07 18:33  axel

	* [r21278] tutorials/hist/sparsehist.C: Fix histogram title

2007-12-07 17:52  brun

	* [r21277] gpad/src/TPad.cxx: From Bertrand:
	  - Fixes the problem saving canvas from the menu
	  File->Save->canv.jpg ...on
	  Windows.

2007-12-07 17:26  moneta

	* [r21276] mathcore/inc/Math/LinkDef.h,
	  mathcore/src/FunctorCint.cxx: - fix a compilation problem on
	  Solaris
	  - use Form for passing the function parameters for a f (double *,
	  int)

2007-12-07 15:55  ganis

	* [r21273] xrootd/src/xrootd-20071116-0000.src.tgz: Fix a few
	  compilation warnings on Windows and on Mac (from F. Furano)

2007-12-07 14:54  brun

	* [r21272] roofit/inc/RooKeysPdf.h, roofit/src/RooKeysPdf.cxx,
	  roofitcore/inc/RooAbsOptTestStatistic.h,
	  roofitcore/inc/RooAbsTestStatistic.h,
	  roofitcore/src/RooAbsOptTestStatistic.cxx,
	  roofitcore/src/RooAbsTestStatistic.cxx,
	  roofitcore/src/RooBanner.cxx, roofitcore/src/RooTreeData.cxx,
	  tmva/inc/Version.h, tmva/src/MethodANNBase.cxx,
	  tmva/test/TMVAnalysis.C, tmva/test/TMVAnalysis.py: From Wouter:
	  o RooAbsTestStatistic, RooAbsOptTestStatistic, RooKeysPdf
	  
	  - Adjustments for persistence (correct default ctor etc...)
	  
	  o RooTreeData
	  
	  - Apply cut ranges when plotting asymmetry if specified
	  (Fix from Gerhard Raven)
	  
	  o RooBanner
	  
	  - Increment version tag to v2.30

2007-12-07 14:02  moneta

	* [r21271] mathcore/inc/Math/Functor.h,
	  mathcore/src/FunctorCint.cxx: fix xompilation error on gcc 3.4

2007-12-07 12:15  rdm

	* [r21270] base/inc/LinkDef2.h, base/inc/TSysEvtHandler.h,
	  base/inc/TSystem.h, base/src/TSysEvtHandler.cxx,
	  base/src/TSystem.cxx: From Matevz:
	  implementation of TStdExceptionHandler deriving from
	  TSysEvtHandler.
	  Whenever a std::exception is thrown it will be intercepted in
	  TSystem::Run where all TStdExceptionHandlers will be processed.
	  Just like
	  how signals are handled. std::exceptions are thrown by Eve so now
	  they
	  can be properly handled without aborting the system.

2007-12-07 12:06  moneta

	* [r21269] mathcore/inc/Math/Functor.h,
	  mathcore/inc/Math/LinkDef.h, mathcore/src/FunctorCint.cxx: add
	  implementation for Functor of interpreted functions

2007-12-07 12:05  ganis

	* [r21268] proof/src/TProof.cxx: In batch mode, do not call
	  PrintProgress until there is some info (fix for bug #31471)

2007-12-07 11:40  ganis

	* [r21267] proof/src/TDSet.cxx: Fix bugs preventing in some cases
	  proper validation in multi-level master mode
	  - Make sure that options and anchors are not removed after
	  TDSetElement::GetEntries()
	  - Use only the file name (and not the full Url) in matching
	  elements in
	  TDSetElement::Validate(TDSetElement *)

2007-12-07 11:37  rdm

	* [r21266] treeplayer/src/TTreePlayer.cxx: from Gerri:
	  remove limit on file name length and extend branch names
	  from 128 to 1024 in TTreePlayer::MakeClass() and
	  TTreePlayer::MakeCode().

2007-12-07 11:17  rdm

	* [r21265] base/inc/TApplication.h, base/src/TApplication.cxx,
	  gui/src/TGApplication.cxx, rint/src/TRint.cxx: Following changes:
	  - use TSystem::NotifyApplicationCreated()
	  - fix problem with TApplication changing directory during
	  argument parsing.
	  Directory is changed only in TRint when it processes the
	  directory argument.
	  - Add warning if argument file.root does not exists, before not
	  existing
	  file was ignored.
	  - Improve documentation of TApplication::GetOptions().

2007-12-07 11:13  rdm

	* [r21264] base/inc/TSystem.h, base/src/TSystem.cxx,
	  winnt/src/TWinNTSystem.cxx: add NotifyApplicationCreated() to
	  TSystem.h so that the special TWinNTSystem
	  cast and #include of TWinNTSystem.h in TApplication is not needed
	  anymore.
	  Also this call was missing from TGApplication.

2007-12-07 10:40  brun

	* [r21262] test/stressRooFit.cxx: From Wouter:
	  enables to new features
	  
	  - If write mode is enabled (-w) with a URL file, it automatically
	  reverts to the default of writing locally (file name = file name
	  listed in URL)
	  
	  - It add the '-d <N>' options to set the gDebug level to the
	  desired
	  value

2007-12-07 10:37  couet

	* [r21261] tutorials/gl/gldemos.C: - Add glparametric.C

2007-12-07 10:25  pcanal

	* [r21260] test/stressMathMore.cxx: Bend to Cint's will, resistance
	  is futile, spaces must be in the right places

2007-12-07 10:23  brun

	* [r21259] tutorials/eve/view3ds.C: From Bertrand:
	  - Fixes potential crash on some 3ds geometries
	  + remove a few unused variables.

2007-12-07 10:22  couet

	* [r21258] tutorials/graphics/psview.C: - This macro generates a PS
	  file and then visualize it in a Canvas. It used
	  psexam.C to create the PS file. The macro psexam.C is not
	  available anymore.
	  The PS file is now generated from feynman.C.

2007-12-07 10:21  wouter

	* [r21257] roofitcore/inc/RooCacheManager.h,
	  roofitcore/inc/RooDataHist.h, roofitcore/inc/RooHistPdf.h,
	  roofitcore/inc/RooMinuit.h, roofitcore/inc/RooObjCacheManager.h,
	  roofitcore/src/RooAbsReal.cxx, roofitcore/src/RooDataHist.cxx,
	  roofitcore/src/RooHistPdf.cxx, roofitcore/src/RooMinuit.cxx: o
	  RooDataHist, RooHistPdf, RooCacheManager
	  
	  - Fixes for persistence
	  
	  
	  o RooAbsReal
	  
	  - Use 'pdf-style' compact printing to have uniform
	  printing of p.d.f.s. and functions in RooWorkspace
	  
	  
	  o RooMinuit
	  
	  - Fix for BaBar in contour()

2007-12-07 09:41  brun

	* [r21256] geom/src/TGeoNavigator.cxx: From Andrei:
	  Fix coding conventions.

2007-12-07 08:43  brun

	* [r21255] eve/inc/TEveManager.h: From Bertrand:
	  - Use correct declaration of global gEve (R__EXTERN instead of
	  extern)
	  to make it externally available when linking on Windows.

2007-12-07 07:07  ganis

	* [r21254] proofd/inc/XrdProofdAux.h, proofd/src/XrdProofdAux.cxx,
	  proofd/src/XrdProofdManager.cxx,
	  proofd/src/XrdProofdProtocol.cxx: Fix a compilation problem on
	  Mac

2007-12-07 01:39  matevz

	* [r21252] eve/inc/TEveBoxSetGL.h, eve/inc/TEveGLUtil.h,
	  eve/inc/TEveLineGL.h, eve/inc/TEvePolygonSetProjectedGL.h,
	  eve/inc/TEveProjectionManagerGL.h, eve/inc/TEveQuadSetGL.h,
	  eve/inc/TEveStraightLineSetGL.h, eve/inc/TEveTrackGL.h,
	  eve/inc/TEveTrackProjectedGL.h, eve/inc/TEveTriangleSetGL.h,
	  eve/src/TEveBoxSetGL.cxx, eve/src/TEveFrameBoxGL.cxx,
	  eve/src/TEveGLText.cxx, eve/src/TEveGLUtil.cxx,
	  eve/src/TEveLineGL.cxx, eve/src/TEvePointSet.cxx,
	  eve/src/TEvePolygonSetProjectedGL.cxx,
	  eve/src/TEveProjectionManagerGL.cxx, eve/src/TEveQuadSetGL.cxx,
	  eve/src/TEveStraightLineSetGL.cxx, eve/src/TEveTrackGL.cxx,
	  eve/src/TEveTriangleSetGL.cxx, gl/inc/TF2GL.h,
	  gl/inc/TGLCylinder.h, gl/inc/TGLFaceSet.h,
	  gl/inc/TGLLogicalShape.h, gl/inc/TGLObject.h,
	  gl/inc/TGLParametricEquationGL.h, gl/inc/TGLPhysicalShape.h,
	  gl/inc/TGLPolyLine.h, gl/inc/TGLPolyMarker.h, gl/inc/TGLSphere.h,
	  gl/inc/TGLUtil.h, gl/inc/TH2GL.h, gl/inc/TPointSet3DGL.h,
	  gl/src/TGLPhysicalShape.cxx, gl/src/TGLUtil.cxx: Changes for
	  marking of top-level objects in GL window.
	  - TGLLogicalShape: move DirectDraw() from protected to public.
	  - Implement color-locking for object rendering.
	  - Wrap all calls to glColor() to go via TGLUtil::Color().

2007-12-06 23:55  ganis

	* [r21250] proof/src/TProofServ.cxx, proofd/inc/XrdProofSched.h,
	  proofd/inc/XrdProofServProxy.h, proofd/inc/XrdProofdAux.h,
	  proofd/inc/XrdProofdClient.h, proofd/inc/XrdProofdManager.h,
	  proofd/inc/XrdProofdProtocol.h, proofd/inc/XrdROOT.h,
	  proofd/src/XrdProofSched.cxx, proofd/src/XrdProofServProxy.cxx,
	  proofd/src/XrdProofdAux.cxx, proofd/src/XrdProofdClient.cxx,
	  proofd/src/XrdProofdManager.cxx,
	  proofd/src/XrdProofdProtocol.cxx,
	  proofplayer/src/TPacketizerAdaptive.cxx: - Fix problem crashing
	  the application at reconfig (bug #28778)
	  - Fix a bug preventing standard Scalla/Xrootd if-else-fi config
	  constructs
	  to work
	  - Fix a bug in XrdProofdManager::GetProofConn in checking
	  existing valid
	  connections
	  - Fix a bug in TProofServ::ApplyMaxQueries preventing the correct
	  removal
	  of empty query directories
	  - Fix coding convention violations in TPacketizerAdaptive (from
	  Jan)

2007-12-06 20:05  brun

	* [r21249] test/guitest.cxx: Apply the same fix in function
	  TestShutter::AddShutteritem than in guitest.C.
	  The new function API is
	  void TestShutter::AddShutterItem(const char *name, shutterData_t
	  *data)
	  instead of:
	  void TestShutter::AddShutterItem(const char *name, shutterData_t
	  data[])
	  The new form is more portable and works correctly with CINT too.

2007-12-06 19:53  brun

	* [r21248] tutorials/eve/view3ds.C: From Bertrand:
	  - Fixes a 64bit portability problem (replace ULong_t by UInt_t).
	  .3ds files are in binary format and size really matter ;-)

2007-12-06 18:27  matevz

	* [r21247] tutorials/eve/quad_test.C: Propagate changes from CCV
	  fixes.

2007-12-06 17:55  matevz

	* [r21246] eve/inc/TEveBoxSet.h, eve/inc/TEveProjections.h,
	  eve/inc/TEveVSDStructs.h, eve/src/TEveBoxSet.cxx,
	  eve/src/TEveBoxSetGL.cxx, eve/src/TEveElement.cxx,
	  eve/src/TEveGLText.cxx, eve/src/TEveGeoNode.cxx,
	  eve/src/TEveGridStepperEditor.cxx,
	  eve/src/TEvePolygonSetProjected.cxx,
	  eve/src/TEvePolygonSetProjectedGL.cxx: Fix some CCVs.

2007-12-06 17:47  pcanal

	* [r21245] tutorials/gui/guitest.C: Cint does not support
	  interpreted function taking an array as parameter ... anyway a
	  pointer is sufficient in this case (AddShutterItem)

2007-12-06 17:28  moneta

	* [r21243] mathcore/inc/Math/Functor.h,
	  mathcore/inc/Math/LinkDef.h, mathmore/src/GSLRootFinder.cxx,
	  mathmore/src/GSLRootFinderDeriv.cxx,
	  mathmore/test/testDerivation.cxx, mathmore/test/testFunctor.cxx,
	  mathmore/test/testIntegration.cxx,
	  mathmore/test/testIntegrationMultiDim.cxx, test/Makefile,
	  test/stressMathCore.cxx, test/stressMathMore.cxx: - sync with dev
	  branch 21238.
	  - add stressMathMore
	  - fix constructor for Functor and have now GradFunctor class for
	  functions providing derivatives.
	  - add warning message in RootFinder when failed for passing max
	  interations

2007-12-06 17:13  ganis

	* [r21241] proof/src/TProofChain.cxx: Avoid recursive destruction
	  (fix bug #30608)

2007-12-06 17:13  pcanal

	* [r21240] test/dt_DrawTest.C: The old style split branch do not
	  store Double32_t with annotation with the same precision. since
	  the interface is deprecated skip the test

2007-12-06 17:09  pcanal

	* [r21239] hist/src/TFormula.cxx: From Ole Hansen:
	  Work around the fact there appears to be a subtle logic error in
	  the check for string arguments in
	  TFormula::Compile. With user-defined string variables, this may
	  cause silent
	  corruption of the formula leading to incorrect results or even
	  segfaults at
	  evaluation time.
	  See https://savannah.cern.ch/bugs/?31988

2007-12-06 16:47  pcanal

	* [r21237] hist/src/TFormula.cxx: From Ole Hansen:
	  Fix for the fact that a string literal argument to the strstr()
	  function
	  in a TFormula expression currently cannot contain a comma.
	  See https://savannah.cern.ch/bugs/?31985

2007-12-06 16:32  ganis

	* [r21236] proof/inc/TProof.h, proof/src/TDSet.cxx,
	  proof/src/TProof.cxx, proof/src/TProofServ.cxx,
	  proofplayer/src/TProofPlayer.cxx: Honour the stop/cancel requests
	  during lookup and during final merge collection; fix bug #23208

2007-12-06 16:14  ganis

	* [r21235] proofx/src/TXProofMgr.cxx, proofx/src/TXSlave.cxx: Fix
	  warnings on Solaris

2007-12-06 15:45  rdm

	* [r21234] configure, io/inc/TFileCacheRead.h,
	  netx/inc/TXNetFile.h, netx/inc/TXNetSystem.h,
	  netx/src/TXNetFile.cxx, netx/src/TXNetSystem.cxx,
	  xrootd/Module.mk, xrootd/src/xrootd-20071001-0000.src.tgz,
	  xrootd/src/xrootd-20071116-0000.src.tgz: From Gerri, Fabrizio,
	  Andreas:
	  - Fix problems with readv and async reading
	  - Add possibility to set the cache parameters "per instance"
	  - Proper locate implementation

2007-12-06 15:34  antcheva

	* [r21233] gui/inc/TGToolTip.h, gui/src/TGToolTip.cxx: Updated doc
	  about multiple lines feature of tooltips.

2007-12-06 15:27  wouter

	* [r21232] roofitcore/src/RooDataHist.cxx: o RooDataHist
	  
	  - Fix pointer hashing issue that caused mixup
	  in partial bin volume calculation when multiple
	  partial intergrals are calculated off the same object
	  Solves Savannah #31869

2007-12-06 15:22  rdm

	* [r21231] asimage/src/TASPaletteEditor.cxx, base/src/TBuffer.cxx,
	  base/src/TGuiFactory.cxx, base/src/TMacro.cxx,
	  base/src/TStyle.cxx, cont/src/TClassTable.cxx,
	  cont/src/TClonesArray.cxx, cont/src/TObjArray.cxx,
	  cont/src/TRefArray.cxx, gl/src/TGLBoxPainter.cxx,
	  gl/src/TGLContext.cxx, gl/src/TGLLegoPainter.cxx,
	  gl/src/TGLPShapeObjEditor.cxx, gl/src/TGLParametric.cxx,
	  gl/src/TGLSAViewer.cxx, gl/src/TGLSurfacePainter.cxx,
	  gl/src/TGLTF3Painter.cxx, gl/src/TGLWidget.cxx,
	  graf/src/TGraph.cxx, graf/src/TPaveText.cxx, hist/src/TF1.cxx,
	  hist/src/TH1.cxx, histpainter/src/THistPainter.cxx,
	  io/src/TDirectoryFile.cxx, matrix/src/TMatrixTBase.cxx,
	  matrix/src/TVectorT.cxx, proofplayer/src/TPerfStats.cxx,
	  qt/src/TQtWidget.cxx, roofitcore/src/RooAbsArg.cxx,
	  table/src/TGenericTable.cxx, treeplayer/src/TSelectorDraw.cxx,
	  treeplayer/src/TTreeProxyGenerator.cxx: change all occurances
	  where %x is used to format a pointer to %lx.

2007-12-06 15:19  couet

	* [r21230] test/stressGraphics.ref: - Changes needed for Solaris.

2007-12-06 14:36  couet

	* [r21228] test/stressGraphics.cxx, test/stressGraphics.ref: - Call
	  gStyle->Reset() in StartTest() to make sure the settings of one
	  test
	  do no affect the further tests.

2007-12-06 13:02  rdm

	* [r21227] pyroot/src/PyROOT.h: handle special case for MacOS 10.3.

2007-12-06 13:02  rdm

	* [r21226] treeplayer/src/TFormLeafInfo.cxx: fix fCopyFormat and
	  fDeleteFormat, use %lx instead of %x. Without l specifier
	  got truncation on Leopard 64-bit.

2007-12-06 10:54  brun

	* [r21225] test/stressGeometry.cxx: From Andrei:
	  - The fix in stressGeometry makes the algorithm of crossing
	  boundaries more stable with respect to geometry definition errors
	  (overlaps)

2007-12-06 10:49  rdm

	* [r21224] freetype/src: change ignore to new version.

2007-12-06 10:47  rdm

	* [r21223] freetype/Module.mk, freetype/src/freetype-2.1.9.tar.gz,
	  freetype/src/freetype-2.3.5.tar.gz,
	  freetype/src/win/freetype.dep, freetype/src/win/freetype.mak:
	  move to the latest freetype, previous version had security
	  issues.

2007-12-06 10:39  brun

	* [r21222] geom/src/TGeoNavigator.cxx: From Andrei:
	  -The fix in navigation adds protections in case of MANY overlaps
	  of divided volumes, plus precision-related changes like:
	  
	  if (snext<fStep) -> if (snext<fStep-gTolerance)
	  
	  This should fix the discrepancies found when running
	  stressGeometry.
	  see coming check-in.

2007-12-06 10:26  wouter

	* [r21221] roofitcore/inc/RooCustomizer.h,
	  roofitcore/inc/RooSimPdfBuilder.h,
	  roofitcore/src/RooCustomizer.cxx,
	  roofitcore/src/RooSimPdfBuilder.cxx,
	  roofitcore/src/RooStreamParser.cxx: o RooSimPdfBuilder,
	  RooCustomizer
	  
	  - Clean up ownership bookkeeping of nodes that created vs
	  node that are imported. Fixes Savannah #31967
	  
	  o RooStreamParser
	  
	  - Fix uninitialized value that caused 'conditional jump on
	  uninitialized value' when valgrind test macro of Savannah #31967

2007-12-06 08:48  ganis

	* [r21220] proof/src/TProof.cxx: From Bertrand: avoid a crash when
	  deleting proof while using TSessionViewer GUI

2007-12-06 08:42  brun

	* [r21219] sessionviewer/src/TSessionViewer.cxx: From Bertrand:
	  - Properly update list tree when a session status change

2007-12-06 06:22  brun

	* [r21218] tmva/src/BinaryTree.cxx, tmva/test/network.C: From Joerg
	  Stelzer:
	  fix for the coding rule violation (missing docu) and a bug fix in
	  a macro in the tmva/test directory (we had hardcoded a filename
	  there).

2007-12-05 21:30  pcanal

	* [r21217] utils/src/rootcint.cxx: do not mistake the -pipe option
	  for -p

2007-12-05 17:19  matevz

	* [r21215] eve/inc/TEveBoxSet.h, eve/inc/TEveDigitSet.h,
	  eve/inc/TEveFrameBox.h, eve/inc/TEveGLText.h,
	  eve/inc/TEveGridStepper.h, eve/inc/TEveLine.h,
	  eve/inc/TEvePointSet.h, eve/inc/TEveProjections.h,
	  eve/inc/TEveQuadSet.h, eve/inc/TEveRGBAPalette.h,
	  eve/inc/TEveTrack.h, eve/inc/TEveTreeTools.h,
	  eve/inc/TEveVSDStructs.h, eve/src/TEveBoxSet.cxx,
	  eve/src/TEveBoxSetGL.cxx, eve/src/TEveDigitSet.cxx,
	  eve/src/TEveFrameBox.cxx, eve/src/TEveFrameBoxGL.cxx,
	  eve/src/TEveGLText.cxx, eve/src/TEveGridStepper.cxx,
	  eve/src/TEvePointSet.cxx, eve/src/TEvePolygonSetProjected.cxx,
	  eve/src/TEveProjectionManager.cxx,
	  eve/src/TEveProjectionManagerEditor.cxx,
	  eve/src/TEveProjections.cxx, eve/src/TEveQuadSet.cxx,
	  eve/src/TEveQuadSetGL.cxx, eve/src/TEveRGBAPalette.cxx,
	  eve/src/TEveTrack.cxx, eve/src/TEveTrackGL.cxx,
	  eve/src/TEveTrackProjectedGL.cxx,
	  eve/src/TEveTrackPropagatorEditor.cxx,
	  eve/src/TEveVSDStructs.cxx: Prefix all enum values with 'k'.

2007-12-05 16:38  rdm

	* [r21213] pcre/src/pcre-7.4.tar.gz: From Bertrand:
	  Win32 build fixes.

2007-12-05 16:16  wouter

	* [r21212] roofitcore/inc/RooAbsOptTestStatistic.h,
	  roofitcore/inc/RooAbsTestStatistic.h,
	  roofitcore/inc/RooDataHist.h, roofitcore/inc/RooDataSet.h,
	  roofitcore/inc/RooFitResult.h, roofitcore/inc/RooPlot.h,
	  roofitcore/src/RooAbsTestStatistic.cxx,
	  roofitcore/src/RooDataHist.cxx, roofitcore/src/RooDataSet.cxx,
	  roofitcore/src/RooFitResult.cxx, roofitcore/src/RooPlot.cxx,
	  roofitcore/src/RooRealSumPdf.cxx: o RooDataHist, RooDataSet,
	  RooFitResult
	  
	  - Overload SetName() and SetNameTitle() to remove
	  and append from associated directory
	  (Savannah bug #28906)
	  
	  
	  o RooPlot
	  
	  - Fix handling of SetName(), SetNameTitle()
	  as done above
	  
	  - Make sure that RooPlot is attached to gDirectory
	  and internal TH1 is not
	  
	  - Make sure that name changes apply to RooPlot and
	  not to TH1 (Savannah #31371)
	  
	  
	  o RooAbsTestStatistic, RooAbsOptTestStatistic
	  
	  - Fix bug in default value of _splitRange that is propagated
	  to client calculators in Simultaneous + MultiProcessor mode
	  (Savannah #31632)
	  
	  
	  o RooRealSumPdf
	  
	  - Fix bug in default ctor to allow persistence

2007-12-05 16:00  brun

	* [r21211] geom/inc/TGeoPhysicalNode.h, geom/src/TGeoManager.cxx,
	  geom/src/TGeoPhysicalNode.cxx: From Andrei:
	  adds a global matrix pointer to TGeoPNEntry objects - needed by
	  the alignment framework in ALICE.

2007-12-05 15:16  brun

	* [r21210] hist/inc/TH1.h, hist/src/TH1.cxx: Add a new getter
	  function
	  void TH1::GetBinXYZ(Int_t binglobal, Int_t &binx, Int_t &biny,
	  Int_t &binz) const
	  // return binx, biny, binz corresponding to the global bin number
	  globalbin

2007-12-05 10:19  couet

	* [r21208] test/stressGraphics.cxx, test/stressGraphics.ref: - New
	  test (inspired from waves.C) to test TPallette and TColor

2007-12-05 10:15  rdm

	* [r21207] zip/README, zip/inc/deflate.h, zip/inc/inflate.h,
	  zip/inc/inftrees.h, zip/inc/zconf.h, zip/inc/zlib.h,
	  zip/inc/zutil.h, zip/src/adler32.c, zip/src/compress.c,
	  zip/src/crc32.c, zip/src/deflate.c, zip/src/gzio.c,
	  zip/src/infback.c, zip/src/inffast.c, zip/src/inflate.c,
	  zip/src/inftrees.c, zip/src/trees.c, zip/src/zutil.c: upgrade to
	  version 1.2.3, the old 1.2.1 had security issues.

2007-12-05 10:15  rdm

	* [r21206] pcre/Module.mk: support pcre-7.4.

2007-12-05 10:14  rdm

	* [r21205] pcre/src, pcre/src/pcre-6.4.tar.gz,
	  pcre/src/pcre-7.4.tar.gz: upgrade to pcre-7.4, the old 6.4 had
	  severe security issues.

2007-12-05 09:43  wouter

	* [r21204] roofitcore/test/TestBasic11.cxx,
	  roofitcore/test/stressRooFit.cxx: Commit modular development
	  version of stressRooFit
	  in roofitcore/test

2007-12-05 09:08  brun

	* [r21203] tutorials/gui/CPUMeter.C, tutorials/gui/Slider3Demo.C,
	  tutorials/gui/WorldMap.C, tutorials/gui/buttonChangelabel.C,
	  tutorials/gui/buttonTest.C, tutorials/gui/buttongroupState.C,
	  tutorials/gui/buttonsLayout.C, tutorials/gui/calendar.C,
	  tutorials/gui/guiWithCINT.C, tutorials/gui/guilabels.C,
	  tutorials/gui/guitest.C, tutorials/gui/listBox.C,
	  tutorials/gui/mditest.C, tutorials/gui/numberEntry.C,
	  tutorials/gui/splitbuttonTest.C,
	  tutorials/gui/splitterHorizontal.C,
	  tutorials/gui/splitterVertical.C, tutorials/gui/statusBar.C,
	  tutorials/gui/textEntries.C: From Bertrand:
	  - Replace <tabs> by spaces
	  - Pass gClient->GetRoot() in TGMainFrame constructors
	  (instead of 0) to allow embedding any gui macro in
	  the new browser

2007-12-05 08:20  brun

	* [r21202] tutorials/math/limit.C: Fix a fatal typo (TFRame instead
	  of TFrame)

2007-12-05 07:57  brun

	* [r21201] gui/inc/TRootBrowser.h, gui/src/TRootBrowser.cxx: From
	  Matevz:
	  The StopEmbedding("Bla bla") did not work for tabs other than the
	  right one.
	  This patch fixes the problem.

2007-12-05 07:51  brun

	* [r21200] gdml/src/TGDMLParse.cxx: Fix coding convention

2007-12-05 07:30  brun

	* [r21199] hist/src/THnSparse.cxx: Fix coding conventions

2007-12-05 02:31  matevz

	* [r21198] eve/inc/TEveBoxSet.h, eve/inc/TEveDigitSet.h,
	  eve/inc/TEveFrameBox.h, eve/inc/TEveGLUtil.h,
	  eve/inc/TEveGeoShapeExtract.h, eve/inc/TEveGridStepper.h,
	  eve/inc/TEveLine.h, eve/inc/TEvePointSet.h,
	  eve/inc/TEveProjectionManager.h, eve/inc/TEveProjections.h,
	  eve/inc/TEveQuadSet.h, eve/inc/TEveRGBAPalette.h,
	  eve/inc/TEveTrack.h, eve/inc/TEveTrackProjected.h,
	  eve/inc/TEveTrackProjectedGL.h, eve/inc/TEveTrackPropagator.h,
	  eve/inc/TEveTrans.h, eve/inc/TEveTreeTools.h, eve/inc/TEveVSD.h,
	  eve/inc/TEveVSDStructs.h, eve/src/TEveBoxSet.cxx,
	  eve/src/TEveBrowser.cxx, eve/src/TEveGeoNode.cxx,
	  eve/src/TEveGeoShapeExtract.cxx, eve/src/TEveGridStepper.cxx,
	  eve/src/TEveLine.cxx, eve/src/TEvePointSet.cxx,
	  eve/src/TEvePolygonSetProjected.cxx,
	  eve/src/TEvePolygonSetProjectedGL.cxx,
	  eve/src/TEveProjectionManager.cxx,
	  eve/src/TEveProjectionManagerEditor.cxx,
	  eve/src/TEveProjectionManagerGL.cxx, eve/src/TEveProjections.cxx,
	  eve/src/TEveQuadSet.cxx, eve/src/TEveTrack.cxx,
	  eve/src/TEveTrackGL.cxx, eve/src/TEveTrackProjected.cxx,
	  eve/src/TEveTrackProjectedGL.cxx,
	  eve/src/TEveTrackPropagator.cxx,
	  eve/src/TEveTrackPropagatorEditor.cxx, eve/src/TEveTrans.cxx,
	  eve/src/TEveVSD.cxx, eve/src/TEveVSDStructs.cxx: Prefix enum
	  types with 'E'.
	  
	  Fix fix member names to begin with f[A-Z].
	  
	  Fix function member names to begin with a capital letter.
	  
	  Add some docs.

2007-12-04 19:29  matevz

	* [r21197] eve/src/TEveManager.cxx: In TEveManager::Create() make
	  sure GUI system is initialized.
	  Needed when linking Eve into a stand-alone application (CMS
	  fireworks).

2007-12-04 18:26  axel

	* [r21194] cint/src/v6_newlink.cxx: Better sanity check for ifunc's
	  allifunc vs. maxifunc; fixes autoload problem with libPhysics.
	  As this fixes a nightlies = roottest failure I'm putting it into
	  svn even though everybody needs to rebuild all the dictionaries.

2007-12-04 18:11  axel

	* [r21193] cintex/inc/LinkDef.h, cintex/src/CINTSourceFile.h,
	  cintex/src/Cintex.cxx: Explicitely mention the class;
	  nestedclasses won;t trigger a rootmap entry.
	  Use CINT's enw interface to register a dummy src file.
	  Register that dummy source file for all Callbacks.

2007-12-04 17:39  ganis

	* [r21192] proof/src/TProofLog.cxx: Add missing ClassImp()

2007-12-04 16:16  brun

	* [r21189] gui/src/TGFileBrowser.cxx: From Bertrand:
	  Add protection in case there is no tab on the right
	  in TRootBrowser and user double-click on a file in
	  the list tree.
	  Thanks to Ilka for reporting this case.

2007-12-04 16:03  pcanal

	* [r21188] treeplayer/src/TTreeFormula.cxx: better test for when we
	  must avoid the switch to TLeafFormLeafInfo

2007-12-04 15:47  rdm

	* [r21187] etc/vmc/Makefile.macosx, etc/vmc/Makefile.macosx64:
	  corrections for gfortran usage. However, 64-bit version does not
	  work yet.
	  We need 64 bit version fo gfortran to get the correct run time
	  libs.

2007-12-04 15:05  moneta

	* [r21186] minuit2/build/inc_Math_Makefile.am: add file forgot with
	  previous commit

2007-12-04 14:56  moneta

	* [r21185] mathcore/build/INSTALL, mathcore/build/configure.in,
	  mathcore/build/src_Makefile.am, mathcore/inc/Math/Factory.h,
	  mathcore/inc/Math/Minimizer.h, mathcore/src/Factory.cxx,
	  mathcore/src/QuantFuncMathCore.cxx, mathmore/build/INSTALL,
	  mathmore/build/configure.in, mathmore/build/doc_Makefile.am,
	  mathmore/build/inc_Makefile.am,
	  mathmore/build/inc_Math_Makefile.am, mathmore/build/setup.sh,
	  mathmore/build/src_Makefile.am, mathmore/build/test_Makefile.am,
	  mathmore/inc/Math/IntegrationTypes.h,
	  mathmore/inc/Math/MCIntegrationTypes.h, minuit2/build/INSTALL,
	  minuit2/build/configure.in, minuit2/build/doc_Makefile.am,
	  minuit2/build/inc_Makefile.am,
	  minuit2/build/inc_Minuit2_Makefile.am, minuit2/build/setup.sh,
	  minuit2/inc/LinkDef.h, minuit2/inc/Minuit2/FunctionMinimum.h,
	  minuit2/inc/Minuit2/Minuit2Minimizer.h,
	  minuit2/inc/Minuit2/MnApplication.h,
	  minuit2/inc/Minuit2/MnFumiliMinimize.h,
	  minuit2/inc/Minuit2/MnHesse.h, minuit2/inc/Minuit2/MnMigrad.h,
	  minuit2/inc/Minuit2/MnMinimize.h, minuit2/inc/Minuit2/MnScan.h,
	  minuit2/inc/Minuit2/MnSimplex.h,
	  minuit2/inc/Minuit2/MnUserParameterState.h,
	  minuit2/inc/Minuit2/MnUserParameters.h,
	  minuit2/src/Minuit2Minimizer.cxx, minuit2/src/MnHesse.cxx,
	  smatrix/build/configure.in, smatrix/build/doc_Makefile.am: - fix
	  coding convention violation
	  - generate dictionaries for main Minuit2 classes
	  - add strategy to the propriety of Minimizer class
	  - update standalone builds for mathcore/mathmore/smatrix/minuit2

2007-12-04 14:50  rdm

	* [r21184] pyroot/src/PyROOT.h: fix in PY_SSIZE_T_FORMAT.

2007-12-04 14:46  couet

	* [r21183] tutorials/graphs/waves.C: - Better way to draw the arcs.

2007-12-04 14:23  axel

	* [r21182] reflex/python/genreflex/genreflex.py: Remove quotes for
	  gccxml parameters; they makes gccxml fail on windows when invoked
	  from cmd. Instead, path names with spaces are not supported. We
	  can fix that once someone needs it.

2007-12-04 14:16  wouter

	* [r21181] roofitcore/inc/RooRealSumPdf.h,
	  roofitcore/src/RooRealSumPdf.cxx: o RooRealSumPdf
	  
	  - Add default constructor to make persistence possible

2007-12-04 14:10  axel

	* [r21180] cint/inc/G__ci.h, cint/src/v6_loadfile.cxx: Add
	  interface to set a G__ifile context: G__setfilecontext(filename,
	  ifile). Sets G__ifile to filename (can be an artificial tag) and
	  stores the previous one in ifile

2007-12-04 14:04  wouter

	* [r21179] roofitcore/inc/RooProduct.h,
	  roofitcore/src/RooProduct.cxx,
	  roofitcore/src/RooRealIntegral.cxx: o RooProduct
	  
	  - Contributed upgrade by G. Raven that implements factorizing
	  analytical integration
	  
	  o RooRealIntegral
	  
	  - Small change in handling of analytical integration to make
	  RooProduct code work

2007-12-04 14:02  wouter

	* [r21178] roofit/src/RooNDKeysPdf.cxx: o RooNDKeysPdf
	  
	  - Fix for Solaris

2007-12-04 09:37  couet

	* [r21174] test/stressGraphics.cxx, test/stressGraphics.ref: - PNG
	  output

2007-12-04 09:05  rdm

	* [r21172] config/Makefile.macosx, config/Makefile.macosx64:
	  misplaced endif causing F77LIBS not to be defined in case of
	  gfortran.

2007-12-04 07:54  rdm

	* [r21171] eve/inc/TEveStraightLineSet.h: I guess Matevz forgot to
	  rename TEveLine to Line_t.

2007-12-04 07:45  brun

	* [r21170] gdml/src/TGDMLParse.cxx: Fix coding conventions

2007-12-04 07:40  brun

	* [r21169] math/src/TMath.cxx: Fix coding conventions

2007-12-04 02:40  matevz

	* [r21168] eve/inc/TEveBoxSet.h, eve/inc/TEveBoxSetGL.h,
	  eve/inc/TEveDigitSet.h, eve/inc/TEveGLText.h, eve/inc/TEveLine.h,
	  eve/inc/TEveQuadSet.h, eve/inc/TEveQuadSetGL.h,
	  eve/inc/TEveStraightLineSet.h, eve/inc/TEveStraightLineSetGL.h,
	  eve/inc/TEveTrackPropagator.h, eve/src/TEveBoxSet.cxx,
	  eve/src/TEveBoxSetGL.cxx, eve/src/TEveDigitSet.cxx,
	  eve/src/TEveDigitSetEditor.cxx, eve/src/TEveGLText.cxx,
	  eve/src/TEveLine.cxx, eve/src/TEvePolygonSetProjected.cxx,
	  eve/src/TEveQuadSet.cxx, eve/src/TEveQuadSetGL.cxx,
	  eve/src/TEveStraightLineSet.cxx,
	  eve/src/TEveStraightLineSetGL.cxx, eve/src/TEveTrack.cxx,
	  eve/src/TEveTrackPropagator.cxx: Rename structures to end with
	  '_t'.

2007-12-04 01:01  matevz

	* [r21167] eve/inc/TEveManager.h, eve/inc/TEveTrackGL.h,
	  eve/inc/TEveTrackPropagator.h, eve/src/TEveManager.cxx,
	  eve/src/TEvePolygonSetProjected.cxx,
	  eve/src/TEveProjectionManager.cxx, eve/src/TEveTrack.cxx,
	  eve/src/TEveTrackGL.cxx, eve/src/TEveTrackProjected.cxx,
	  eve/src/TEveTrackProjectedGL.cxx,
	  eve/src/TEveTrackPropagator.cxx: Fix warnings about size_t.
	  Add some docs.
	  Change magnetic field units from kGauss to Tesla.

2007-12-03 21:02  brun

	* [r21164] win32gdk/inc/TGWin32.h, win32gdk/src/TGWin32.cxx: From
	  Bertrand:
	  Remove limitation of only 1000 colors. Colors are now stored in a
	  TExMap
	  hash table, with the key being the TColor color index and the
	  value a pointer
	  to the associated XColor_t structure.

2007-12-03 17:45  wouter

	* [r21163] roofitcore/inc/RooAbsArg.h,
	  roofitcore/src/RooAbsArg.cxx: o RooAbsArg
	  
	  - Make non-inline accessor function for static boolean
	  _inhibitDirty

2007-12-03 17:38  pcanal

	* [r21162] cint/src/v6_decl.cxx: Support const T& operator()(const
	  Key& key) const;Support const T& operator()(const Key& key)
	  const;

2007-12-03 17:10  moneta

	* [r21161] minuit2/test/testNewMinimizer.cxx: fix a double delete
	  of Minimizer pointer in test program

2007-12-03 17:07  moneta

	* [r21160] mathcore/src/Integrator.cxx: fix a mistake with previous
	  commit

2007-12-03 17:06  wouter

	* [r21159] roofit/inc/LinkDef1.h, roofit/inc/RooNDKeysPdf.h,
	  roofit/src/RooNDKeysPdf.cxx: o RooNDKeysPdf
	  
	  - This class is a multidimensional generalization of RooKeysPdf
	  that can model distributions in any number of dimensions and
	  incorporates correlations into the kernal function.
	  
	  - Code contributed by Max Baak, based on the algorithms by Kyle
	  Cranmer.

2007-12-03 17:01  moneta

	* [r21158] mathcore/build/doc_Makefile.am,
	  mathcore/build/inc_Makefile.am,
	  mathcore/build/inc_Math_Makefile.am, mathcore/build/setup.sh,
	  mathcore/build/src_Makefile.am, mathcore/build/test_Makefile.am,
	  mathcore/inc/Math/AllIntegrationTypes.h,
	  mathcore/src/Integrator.cxx: - update documentation files and
	  stand-alone build system o work with new added files

2007-12-03 16:58  pcanal

	* [r21157] treeplayer/src/TTreeFormula.cxx: Add support for auto
	  use of AsDouble and AsString for top level objects

2007-12-03 16:58  pcanal

	* [r21156] hist/src/TFormula.cxx: operator== and != can not be
	  optimized (yet) for strings

2007-12-03 16:47  brun

	* [r21155] config/Makefile.depend: Change RooFit dependencies. The
	  coming new version by Wouter will depend on libMatrix.

2007-12-03 16:36  rdm

	* [r21154] Makefile, config/Makefile.macosx,
	  config/Makefile.macosx64: silence message that g77 is not found
	  in case no F77 compiler is found.

2007-12-03 16:34  rdm

	* [r21153] rootx/src/rootx.cxx, unix/src/TUnixSystem.cxx: utmp.h is
	  now deprecated on MacOS X, use utmpx.h (removes compiler
	  warning).

2007-12-03 16:30  brun

	* [r21152] geom/src/TGeoManager.cxx: From Andrei:
	  a patch for an error in TGeoManager::InsertPNEId() that was not
	  correcly handling the increase of the uid array.

2007-12-03 16:29  brun

	* [r21151] html/src/THtml.cxx, matrix/inc/LinkDef.h,
	  treeplayer/inc/LinkDef.h: From Axel:
	  Set module of mathmore, smatrix, treeplayer by hand for several
	  classes; change Linkdef.h for matrix and treeplayer to enable
	  autoload entry (and thus library) for all classes templated as
	  <Float_t>, <Double_t> by using <float>, <double> instead.

2007-12-03 16:29  brun

	* [r21150] base/inc/RVersion.h, build/version_number: Start
	  development cycle for version 5.17/07

2007-12-01 09:57  brun

	* [r21140] base/inc/RVersion.h, build/version_number: Make
	  development release 5.17/06

2007-12-01 08:56  brun

	* [r21139] etc/valgrind-root.supp: Add special zlib case to the
	  suppression file

2007-11-30 23:06  matevz

	* [r21138] eve/inc/TEvePolygonSetProjected.h,
	  eve/inc/TEveProjectionManagerEditor.h,
	  eve/inc/TEveProjectionManagerGL.h, eve/inc/TEveTrackProjected.h,
	  eve/src/TEvePolygonSetProjected.cxx,
	  eve/src/TEvePolygonSetProjectedEditor.cxx,
	  eve/src/TEveProjectionBases.cxx,
	  eve/src/TEveProjectionManagerGL.cxx,
	  eve/src/TEveTrackProjected.cxx: Alja: add documentation for the
	  projection classes.

2007-11-30 22:33  wouter

	* [r21136] roofitcore/inc/RooAbsCategory.h,
	  roofitcore/inc/RooResolutionModel.h,
	  roofitcore/inc/RooSimultaneous.h,
	  roofitcore/src/RooAbsCategory.cxx: o RooResolutionModel,
	  RooSimultaneous, RooAbsCategory
	  
	  - Fix uninitialized values in ctor

2007-11-30 20:45  wlav

	* [r21135] pyroot/src/Pythonize.cxx: Make sure to use full
	  namespace when for TClass::GetClass in
	  Pythonize.cxx

2007-11-30 19:57  brun

	* [r21134] hist/src/TH1.cxx: Fix all SetBinContent functions in
	  case of an axis with the time display option set. (thanks to
	  Robert Hatcher)

2007-11-30 18:09  brun

	* [r21133] asimage/src/libAfterImage.tar.gz: From Valeriy:
	  - another mem. leak fix from Sasha

2007-11-30 18:04  brun

	* [r21132] asimage/Module.mk: From Valeriy:
	  - always use our own libungif (aka builtin-ungif)
	  which supports LZW compression.

2007-11-30 16:38  moneta

	* [r21131] minuit2/src/Minuit2Minimizer.cxx, minuit2/test/Makefile,
	  minuit2/test/testNewMinimizer.cxx: - add test of various
	  minimizers
	  - suppress some printout in Minuit2 when requested

2007-11-30 16:08  moneta

	* [r21130] mathcore/inc/Math/OneDimFunctionAdapter.h: fix a bug in
	  the adapter from multi-dim to one-dim functions

2007-11-30 14:41  moneta

	* [r21129] mathcore/inc/Math/PdfFuncMathCore.h,
	  mathcore/inc/Math/ProbFuncMathCore.h,
	  mathcore/inc/Math/QuantFuncMathCore.h,
	  mathcore/inc/Math/SpecFuncMathCore.h,
	  mathmore/inc/Math/QuantFuncMathMore.h,
	  mathmore/inc/Math/SpecFuncMathMore.h: - load automatically
	  libMathCore and libMathMore when running CINT and including the
	  header files for the
	  mathematical functions. This is done (thanks to Philippe) by
	  adding at the beginning of the header files:
	  
	  
	  #if defined(__CINT__) && !defined(__MAKECINT__)
	  // avoid to include header file when using CINT
	  #ifndef _WIN32
	  #include "../lib/libMathCore.so"
	  #else
	  #include "../bin/libMathCore.dll"
	  #endif
	  
	  #else
	  // normal header file

2007-11-30 10:05  moneta

	* [r21126] tutorials/math/limit.C, tutorials/math/mathcoreCDF.C,
	  tutorials/math/mathcoreGenVector.C,
	  tutorials/math/mathcoreSpecFunc.C,
	  tutorials/math/mathcoreVectorIO.C: fix (for running in compiled
	  mode) and improve some of the tutorials

2007-11-30 01:17  pcanal

	* [r21122] cint/src/v6_decl.cxx: support obj*&operator()(int)

2007-11-29 18:03  brun

	* [r21117] etc/plugins/ROOT@@Math@@Minimizer,
	  etc/plugins/ROOT@@Math@@Minimizer/P010_Minuit2Minimizer.C,
	  etc/plugins/ROOT@@Math@@Minimizer/P020_TMinuitMinimizer.C,
	  etc/plugins/ROOT@@Math@@Minimizer/P030_GSLMinimizer.C,
	  etc/plugins/ROOT@@Math@@Minimizer/P040_GSLNLSMinimizer.C,
	  etc/plugins/ROOT@@Math@@Minimizer/P050_GSLSimAnMinimizer.C: From
	  Lorenzo:
	  add a new plugins for Minimizer using GSL and Minuit2
	  minimization classes

2007-11-29 17:34  moneta

	* [r21116] test/stressMathCore.cxx: fix a problem with bad filename
	  char. for Windows

2007-11-29 17:25  moneta

	* [r21115] test/stressMathCore.cxx: do automatic removal of root
	  test files

2007-11-29 17:16  moneta

	* [r21114] mathcore/Module.mk, mathcore/inc/Math/DistFunc.h,
	  mathcore/inc/Math/DistFuncMathCore.h,
	  mathcore/inc/Math/Factory.h,
	  mathcore/inc/Math/FitMethodFunction.h,
	  mathcore/inc/Math/IParamFunction.h,
	  mathcore/inc/Math/Integrator.h, mathcore/inc/Math/LinkDef.h,
	  mathcore/inc/Math/LinkDef_Func.h, mathcore/inc/Math/Math.h,
	  mathcore/inc/Math/Minimizer.h,
	  mathcore/inc/Math/OneDimFunctionAdapter.h,
	  mathcore/inc/Math/PdfFunc.h, mathcore/inc/Math/PdfFuncMathCore.h,
	  mathcore/inc/Math/ProbFuncMathCore.h,
	  mathcore/inc/Math/QuantFunc.h,
	  mathcore/inc/Math/QuantFuncMathCore.h,
	  mathcore/inc/Math/SpecFuncMathCore.h, mathcore/src/Factory.cxx,
	  mathcore/src/Integrator.cxx, mathcore/src/PdfFuncMathCore.cxx,
	  mathcore/src/ProbFuncMathCore.cxx,
	  mathcore/src/QuantFuncMathCore.cxx,
	  mathcore/src/SpecFuncCephesInv.cxx,
	  mathcore/src/SpecFuncMathCore.cxx, mathmore/Module.mk,
	  mathmore/inc/Math/DistFuncMathMore.h,
	  mathmore/inc/Math/GSLMinimizer.h,
	  mathmore/inc/Math/GSLNLSMinimizer.h, mathmore/inc/Math/LinkDef.h,
	  mathmore/inc/Math/LinkDef_Func.h,
	  mathmore/inc/Math/LinkDef_SpecFunc.h,
	  mathmore/inc/Math/LinkDef_StatFunc.h,
	  mathmore/inc/Math/PdfFuncMathMore.h,
	  mathmore/inc/Math/Polynomial.h, mathmore/inc/Math/ProbFuncInv.h,
	  mathmore/inc/Math/QuantFuncMathMore.h,
	  mathmore/src/Derivator.cxx, mathmore/src/OneDimFunctionAdapter.h,
	  mathmore/src/PdfFuncMathMore.cxx, mathmore/src/Polynomial.cxx,
	  mathmore/src/QuantFuncMathMore.cxx,
	  mathmore/test/testInterpolation.cxx,
	  minuit2/inc/Minuit2/FumiliFCNAdapter.h,
	  minuit2/inc/Minuit2/FumiliFCNBase.h,
	  minuit2/inc/Minuit2/Minuit2Minimizer.h,
	  minuit2/inc/Minuit2/MinuitParameter.h,
	  minuit2/inc/Minuit2/MnUserTransformation.h,
	  minuit2/inc/Minuit2/SimplexParameters.h,
	  minuit2/src/Minuit2Minimizer.cxx, test/stressMathCore.cxx: -
	  syncronize mathcore, mathmore, minuit2 and test/stressMathCore
	  with development branches
	  
	  - main changes are:
	  
	  - move some remaining pdf (like beta and landau) from mathmore to
	  mathcore
	  - add missing landau_cdf
	  - fix a precision error with normal_cdf (and normal_cdf_c) for
	  small x (large x). Use the correct erf or erfc function according
	  to x
	  - move majority of quantiles functions from mathmore to mathcore
	  ( implementation is based on inverse functions from Cephes,
	  implemented in SpecFuncCephesInv.cxx)
	  
	  - add method to create Minimizer concreate classes via the plugin
	  manager
	  - add possibility to use multi-dim funciton type in one dim
	  integration
	  
	  - minuit2: add some missing include cassert

2007-11-29 14:45  brun

	* [r21108] test/stressRooFit.cxx: From Wouter:
	  test 11 which tests p.d.f. persistence.

2007-11-29 14:11  brun

	* [r21107] test/RootShower/GTitleFrame.cxx,
	  test/RootShower/GTitleFrame.h: From Bertrand:
	  Simplify the font settings for the title.

2007-11-29 13:47  couet

	* [r21106] test/stressGraphics.cxx, test/stressGraphics.ref: - Test
	  JPG

2007-11-29 10:30  brun

	* [r21105] gui/src/TGFont.cxx: From Bertrand:
	  This patch solve the problem reported at:
	  https://savannah.cern.ch/bugs/?31673

2007-11-29 09:33  axel

	* [r21104] test/stressRooFit.cxx: Prepend "SYS:" to uname output so
	  roottest can filter it.

2007-11-29 09:05  wouter

	* [r21103] roofitcore/src/RooBanner.cxx: increment RooFit version
	  tag to 2.23

2007-11-29 08:20  brun

	* [r21102] gpad/src/TPad.cxx: Protect Tpad::DrawFrame in case the
	  function is called on a pad/canvas that is not the current pad.
	  In this case, the call is forwarded to the current pad and a
	  Warning printed.

2007-11-28 23:41  rdm

	* [r21101] Makefile: fix ftgl, gl and eve dependency.

2007-11-28 22:55  pcanal

	* [r21100] cint/src/v6_newlink.cxx: properly handle pragma link of
	  operator in namespace

2007-11-28 20:05  pcanal

	* [r21099] meta/src/TCint.cxx: Support --prefix is TCint::IsLoaded

2007-11-28 18:07  pcanal

	* [r21098] cint/src/v6_struct.cxx: Prevent the autoloader from
	  destroying entries for templated classes that are defining in a
	  namespace and/or class

2007-11-28 17:31  brun

	* [r21097] Makefile: From Axel:
	  there is a problem with
	  the build system: libEve depends on libRGL, but gl/Module.mk gets
	  included after eve/Module.mk, so the dependency is not seen.
	  This patch fixes this problem.

2007-11-28 15:35  couet

	* [r21096] test/stressGraphics.ref: - Adjust for Mac

2007-11-28 15:28  couet

	* [r21095] test/stressGraphics.ref: - New version

2007-11-28 15:07  pcanal

	* [r21094] cint/lib/dll_stl/str.h, cint/lib/prec_stl/string: fix
	  for icc

2007-11-28 14:59  moneta

	* [r21093] test/Makefile, test/TrackMathCore.h,
	  test/TrackMathCoreRflx.xml: fix test also for using Reflex. CINT
	  dictionaries must not be loaded in that case

2007-11-28 14:07  brun

	* [r21092] main/src/hadd.cxx, proofplayer/src/TFileMerger.cxx: Add
	  support for files containing key names that are not the object
	  names.
	  see: <http://savannah.cern.ch/bugs/?31693>
	  Thanks to d.miskowiec@gsi.de

2007-11-28 12:31  moneta

	* [r21091] test/TrackMathCore.h, test/TrackMathCoreLinkDef.h,
	  test/stressMathCore.cxx: add more tests and include typedef
	  definition in dictionary of Track classes

2007-11-28 10:50  couet

	* [r21090] test/stressGraphics.cxx, test/stressGraphics.ref: - GIF
	  file for each test.

2007-11-28 08:36  brun

	* [r21088] gui/inc/TGTab.h, gui/src/TGTab.cxx: From Bertrand:
	  Add TGTab::AddTab with TGCompositeFrame in argument as requested
	  by the feature request at: https://savannah.cern.ch/bugs/?31668

2007-11-27 22:12  wouter

	* [r21087] roofitcore/src/RooMsgService.cxx: o RooMsgService
	  
	  - Fix bug in creation of singleton instance

2007-11-27 21:51  brun

	* [r21086] config/Makefile.depend: The RooFitCore lib does not
	  depend anymore on libHtml

2007-11-27 21:29  brun

	* [r21085] test/Makefile: Add a missing blank for Windows

2007-11-27 21:22  moneta

	* [r21084] test/stressMathCore.cxx: fix a warning on Solaris

2007-11-27 21:16  wouter

	* [r21083] roofitcore/Module.mk: o Module.mk
	  
	  - Forgotten last commit

2007-11-27 21:05  brun

	* [r21082] test/Makefile: stressTMVA requires lMinuit, lMLP,
	  lTreePlayer to link

2007-11-27 20:59  wouter

	* [r21081] roofitcore/inc/LinkDef1.h, roofitcore/inc/LinkDef2.h,
	  roofitcore/inc/RooAbsAnaConvPdf.h, roofitcore/inc/RooAbsArg.h,
	  roofitcore/inc/RooAbsData.h,
	  roofitcore/inc/RooAbsGoodnessOfFit.h,
	  roofitcore/inc/RooAbsOptGoodnessOfFit.h,
	  roofitcore/inc/RooAbsOptTestStatistic.h,
	  roofitcore/inc/RooAbsTestStatistic.h,
	  roofitcore/inc/RooChi2Var.h, roofitcore/inc/RooFormulaVar.h,
	  roofitcore/inc/RooGraphEdge.h, roofitcore/inc/RooGraphNode.h,
	  roofitcore/inc/RooGraphSpring.h, roofitcore/inc/RooHtml.h,
	  roofitcore/inc/RooNLLVar.h, roofitcore/inc/RooRealMPFE.h,
	  roofitcore/src/RooAbsAnaConvPdf.cxx,
	  roofitcore/src/RooAbsGoodnessOfFit.cxx,
	  roofitcore/src/RooAbsOptGoodnessOfFit.cxx,
	  roofitcore/src/RooAbsOptTestStatistic.cxx,
	  roofitcore/src/RooAbsTestStatistic.cxx,
	  roofitcore/src/RooChi2Var.cxx, roofitcore/src/RooErrorVar.cxx,
	  roofitcore/src/RooGraphEdge.cxx, roofitcore/src/RooGraphNode.cxx,
	  roofitcore/src/RooGraphSpring.cxx, roofitcore/src/RooHtml.cxx,
	  roofitcore/src/RooNLLVar.cxx: o RooErrorVar
	  
	  - Fix compiler warning on linux/gcc
	  
	  
	  o RooFormulaVar, RooAbsAnaConvPdf
	  
	  - Fix for persistence
	  
	  
	  o RooGraphSpring, RooGraphEdge, RooGraphNode
	  
	  - Retired, since superceded by new vizGraphTree() functionality
	  
	  
	  o RooHtml
	  
	  - Retired since no longer needed
	  
	  
	  o RooAbsOptGoodnessOfFit, RooAbsGoodnesOfFit
	  
	  - Renamed to RooAbsOptTestStatistic, RooAbsTestStatistic to
	  better
	  cover actual functionality
	  
	  
	  o RooChi2Var, RooNLLVar
	  
	  - Follow base class name change
	  
	  
	  o RooRealMPFE, RooAbsData
	  
	  - Follow friend class name change
	  
	  
	  o Module.mk, inc/LinkDef[12].h
	  
	  - Remove references to deleted classes, follow name changes

2007-11-27 20:28  brun

	* [r21080] test/Makefile, test/stressTMVA.cxx: From Joerg Stelzer:
	  Add a test suite for TMVA.

2007-11-27 20:08  brun

	* [r21079] tmva/inc/BinarySearchTree.h,
	  tmva/inc/BinarySearchTreeNode.h, tmva/inc/Config.h,
	  tmva/inc/Configurable.h, tmva/inc/DecisionTreeNode.h,
	  tmva/inc/Event.h, tmva/inc/Factory.h, tmva/inc/MethodCuts.h,
	  tmva/inc/MethodPDERS.h, tmva/inc/MsgLogger.h, tmva/inc/Node.h,
	  tmva/inc/NodekNN.h, tmva/inc/Ranking.h,
	  tmva/inc/TActivationIdentity.h, tmva/src/BinarySearchTree.cxx,
	  tmva/src/BinarySearchTreeNode.cxx, tmva/src/BinaryTree.cxx,
	  tmva/src/Configurable.cxx, tmva/src/DataSet.cxx,
	  tmva/src/DecisionTreeNode.cxx, tmva/src/Factory.cxx,
	  tmva/src/GeneticAlgorithm.cxx, tmva/src/MethodBase.cxx,
	  tmva/src/MethodBayesClassifier.cxx, tmva/src/MethodCommittee.cxx,
	  tmva/src/MethodCuts.cxx, tmva/src/MethodKNN.cxx,
	  tmva/src/MethodLikelihood.cxx, tmva/src/MethodPDERS.cxx,
	  tmva/src/MethodSVM.cxx, tmva/src/MethodVariable.cxx,
	  tmva/src/ModulekNN.cxx, tmva/src/MsgLogger.cxx,
	  tmva/src/Node.cxx, tmva/src/PDF.cxx, tmva/src/Ranking.cxx,
	  tmva/src/Reader.cxx, tmva/src/RuleEnsemble.cxx,
	  tmva/src/TSpline1.cxx, tmva/src/TSpline2.cxx, tmva/src/Timer.cxx,
	  tmva/src/Tools.cxx, tmva/src/VariablePCATransform.cxx,
	  tmva/src/VariableTransformBase.cxx, tmva/test/TMVAnalysis.C,
	  tmva/test/tmvaglob.C, tmva/test/variables.C: From Joerg Stelzer.
	  New version of TMVA (log file missing unfortunately)

2007-11-27 19:34  brun

	* [r21078] test/guitest.cxx, tutorials/gui/guitest.C: From
	  Bertrand:
	  Add protection against double-click on 'OK' and 'Cancel' buttons
	  in
	  guitest dialog, emitting the CloseWindow() signal twice...

2007-11-27 19:19  matevz

	* [r21077] eve/Module.mk, eve/inc/TEveUtil.h,
	  eve/src/SolarisCCDictHack.h: Undo previous hack for
	  std::exception conflict in dictionary file with solaris cc and
	  attempt a new one: put the exception define into
	  eve/src/SolarisCCDictHack.h and put it just in front of LinkDef.h
	  on the rootcint command line.

2007-11-27 17:58  matevz

	* [r21076] eve/inc/TEveBrowser.h, eve/inc/TEveGLUtil.h,
	  eve/inc/TEveManager.h, eve/inc/TEvePointSet.h,
	  eve/inc/TEveTrack.h, eve/inc/TEveTrackPropagatorEditor.h,
	  eve/inc/TEveTriangleSetGL.h, eve/src/TEveStraightLineSetGL.cxx,
	  eve/src/TEveTrack.cxx: Fix some coding-rule violations.

2007-11-27 17:45  moneta

	* [r21075] test/TrackMathCore.h, test/TrackMathCoreLinkDef.h,
	  test/TrackMathCoreRflx.xml, test/stressMathCore.cxx: comment
	  un-necessary classes in xml file
	  remove some debug statements in stressMathCore.cxx

2007-11-27 17:32  moneta

	* [r21074] mathcore/test/Makefile, mathcore/test/Track.h,
	  mathcore/test/testVectorIO.cxx, smatrix/test/Makefile: - fix
	  problem in building IO tests
	  - test with LorentzVector<Double32_t,PxPyPzE4D>

2007-11-27 17:16  moneta

	* [r21072] smatrix/test/Makefile, smatrix/test/testIO.cxx: fix dep
	  problem in Makefile. Update testIO to avoid need to generate a
	  libSmatrixRflx

2007-11-27 17:08  moneta

	* [r21071] mathcore/test/Makefile, mathcore/test/TrackDict.xml: fix
	  a wrong commit in xml file and fix dependency on dict library in
	  Makefile

2007-11-27 15:45  moneta

	* [r21070] test/Makefile, test/TrackMathCore.h,
	  test/TrackMathCoreLinkDef.h, test/TrackMathCoreRflx.xml,
	  test/stressMathCore.cxx: - add test of a double 32 and of
	  composite object containing matrices and vectors. test both the
	  double and Double32_t cases using CINT and optionally reflex
	  - update Makefile to generate the CInt and reflex dictionary when
	  the env USE_REFLEX is set. gccxml must be available in the path
	  to use the reflex dictionary
	  (root must be configured with ./configure
	  --with-gccxml=$GCCXML_PATH )
	  - add linkdef and xml needed files

2007-11-27 15:19  moneta

	* [r21068] mathcore/inc/Math/LinkDef_GenVector32.h: add missing
	  dictionaries for vectors of Double32_t

2007-11-27 15:19  brun

	* [r21067] win32gdk/src/TGWin32.cxx: From Bertrand:
	  Fix 'Array bounds read' error reported by purify

2007-11-27 15:15  brun

	* [r21066] test/stressEntryList.cxx: From Anna:
	  There is a new test is stressEntryList to check for this (in the
	  second patch). This test might take some time for large files,
	  but there is no point in running it for small files.

2007-11-27 15:13  brun

	* [r21065] tree/inc/TEntryList.h, tree/src/TChain.cxx,
	  tree/src/TEntryList.cxx, tree/src/TEntryListBlock.cxx: From Anna:
	  fixes an issue with a seg. fault in SetEventList() ==>
	  SetEntryList(), another issue with full entry lists, with correct
	  resetting of "current" indices and with printing of empty entry
	  lists.

2007-11-27 13:49  wouter

	* [r21064] roofitcore/inc/RooMsgService.h,
	  roofitcore/src/Roo1DTable.cxx, roofitcore/src/RooAICRegistry.cxx,
	  roofitcore/src/RooAbsAnaConvPdf.cxx,
	  roofitcore/src/RooAbsArg.cxx, roofitcore/src/RooAbsCategory.cxx,
	  roofitcore/src/RooAbsCategoryLValue.cxx,
	  roofitcore/src/RooAbsCollection.cxx,
	  roofitcore/src/RooAbsData.cxx,
	  roofitcore/src/RooAbsGenContext.cxx,
	  roofitcore/src/RooAbsGoodnessOfFit.cxx,
	  roofitcore/src/RooAbsHiddenReal.cxx,
	  roofitcore/src/RooAbsIntegrator.cxx,
	  roofitcore/src/RooAbsOptGoodnessOfFit.cxx,
	  roofitcore/src/RooAbsPdf.cxx, roofitcore/src/RooAbsReal.cxx,
	  roofitcore/src/RooAbsRealLValue.cxx,
	  roofitcore/src/RooAbsRootFinder.cxx,
	  roofitcore/src/RooAbsString.cxx,
	  roofitcore/src/RooAcceptReject.cxx,
	  roofitcore/src/RooAdaptiveGaussKronrodIntegrator1D.cxx,
	  roofitcore/src/RooAddModel.cxx, roofitcore/src/RooAddPdf.cxx,
	  roofitcore/src/RooAddition.cxx, roofitcore/src/RooArgList.cxx,
	  roofitcore/src/RooArgSet.cxx, roofitcore/src/RooBinning.cxx,
	  roofitcore/src/RooBrentRootFinder.cxx,
	  roofitcore/src/RooCategory.cxx, roofitcore/src/RooChi2Var.cxx,
	  roofitcore/src/RooClassFactory.cxx,
	  roofitcore/src/RooCmdConfig.cxx,
	  roofitcore/src/RooConvGenContext.cxx,
	  roofitcore/src/RooConvIntegrandBinding.cxx,
	  roofitcore/src/RooCurve.cxx, roofitcore/src/RooCustomizer.cxx,
	  roofitcore/src/RooDLLSignificanceMCSModule.cxx,
	  roofitcore/src/RooDataHist.cxx,
	  roofitcore/src/RooDataProjBinding.cxx,
	  roofitcore/src/RooDataSet.cxx, roofitcore/src/RooEllipse.cxx,
	  roofitcore/src/RooErrorVar.cxx, roofitcore/src/RooExtendPdf.cxx,
	  roofitcore/src/RooFitResult.cxx, roofitcore/src/RooFormula.cxx,
	  roofitcore/src/RooGaussKronrodIntegrator1D.cxx,
	  roofitcore/src/RooGenCategory.cxx,
	  roofitcore/src/RooGenericPdf.cxx, roofitcore/src/RooGrid.cxx,
	  roofitcore/src/RooHashTable.cxx, roofitcore/src/RooHist.cxx,
	  roofitcore/src/RooHistError.cxx, roofitcore/src/RooHistPdf.cxx,
	  roofitcore/src/RooImproperIntegrator1D.cxx,
	  roofitcore/src/RooIntegrator1D.cxx,
	  roofitcore/src/RooLinearVar.cxx,
	  roofitcore/src/RooLinkedList.cxx, roofitcore/src/RooList.cxx,
	  roofitcore/src/RooMCIntegrator.cxx,
	  roofitcore/src/RooMCStudy.cxx,
	  roofitcore/src/RooMappedCategory.cxx, roofitcore/src/RooMath.cxx,
	  roofitcore/src/RooMsgService.cxx,
	  roofitcore/src/RooMultiCategory.cxx,
	  roofitcore/src/RooNLLVar.cxx,
	  roofitcore/src/RooNormListManager.cxx,
	  roofitcore/src/RooNormManager.cxx,
	  roofitcore/src/RooNumConvolution.cxx,
	  roofitcore/src/RooNumIntConfig.cxx,
	  roofitcore/src/RooNumIntFactory.cxx, roofitcore/src/RooPlot.cxx,
	  roofitcore/src/RooPolyVar.cxx, roofitcore/src/RooProdPdf.cxx,
	  roofitcore/src/RooProduct.cxx, roofitcore/src/RooProfileLL.cxx,
	  roofitcore/src/RooQuasiRandomGenerator.cxx,
	  roofitcore/src/RooRandomizeParamMCSModule.cxx,
	  roofitcore/src/RooRangeBinning.cxx,
	  roofitcore/src/RooRealBinding.cxx,
	  roofitcore/src/RooRealIntegral.cxx,
	  roofitcore/src/RooRealSumPdf.cxx,
	  roofitcore/src/RooResolutionModel.cxx,
	  roofitcore/src/RooSegmentedIntegrator1D.cxx,
	  roofitcore/src/RooSegmentedIntegrator2D.cxx,
	  roofitcore/src/RooSetProxy.cxx,
	  roofitcore/src/RooSharedProperties.cxx,
	  roofitcore/src/RooSharedPropertiesList.cxx,
	  roofitcore/src/RooSimGenContext.cxx,
	  roofitcore/src/RooSimPdfBuilder.cxx,
	  roofitcore/src/RooSimultaneous.cxx,
	  roofitcore/src/RooStreamParser.cxx,
	  roofitcore/src/RooStringVar.cxx,
	  roofitcore/src/RooSuperCategory.cxx,
	  roofitcore/src/RooThresholdCategory.cxx,
	  roofitcore/src/RooUniformBinning.cxx,
	  roofitcore/src/RooWorkspace.cxx: o Most classes
	  
	  - Bulk migration from cout to RooMsgService
	  
	  
	  o RooSetProxy
	  
	  - Fix compiler warning on Windows
	  
	  
	  o RooSimPdfBuilder
	  
	  - Remove stray debug printouts

2007-11-27 09:56  couet

	* [r21062] test/stressGraphics.cxx: - Fix unused variable (found on
	  Mac).

2007-11-27 09:51  couet

	* [r21061] test/stressGraphics.cxx, test/stressGraphics.ref: - Test
	  the PDF output.
	  - New format for stressGraphics.ref.

2007-11-27 09:48  axel

	* [r21060] cintex/src/ROOTClassEnhancer.cxx: MSVC2003 forgot to
	  implement the stringstream::operator bool, so use good()

2007-11-27 09:45  matevz

	* [r21059] eve/inc/TEveUtil.h: Add workaround for solaris math.h
	  exception clashing with std::exception in dictionary (suggested
	  by Philippe).

2007-11-27 06:45  rdm

	* [r21058] etc/valgrind-root.supp: From Axel:
	  some additional valgrind suppressions.

2007-11-26 21:48  axel

	* [r21057] cintex/src/CINTCommentBuffer.h,
	  cintex/src/CINTVariableBuilder.cxx: Factor our CommentBuffer
	  Local typedef longlong (Reflex/Kernel.h's is now gone)

2007-11-26 19:48  matevz

	* [r21056] eve/inc/TEveTrans.h, eve/src/TEveBrowser.cxx,
	  eve/src/TEveManager.cxx, eve/src/TEveTrans.cxx: TEveTrans: coding
	  conventions. Fix warning by solaris cc.
	  
	  TEveBrowser: add missing ctor argument to TRootBrowser during
	  base
	  initialization (solaris cc).
	  
	  TEveManager: fix names of Eve components garbled by automatic
	  string
	  conversion.

2007-11-26 18:06  axel

	* [r21055] cintex/src/ROOTClassEnhancer.cxx: Add dictionary
	  property ClassVersion. In selection.xml write:
	  <class name="FOO" ClassVersion="42"/>
	  to set the class version of FOO's TClass object to 42, i.e.
	  TClass::GetClass("FOO")->GetClassVersion()
	  will return 42.

2007-11-26 18:00  matevz

	* [r21054] eve/inc/TEveBoxSet.h, eve/inc/TEveBoxSetGL.h,
	  eve/inc/TEveBrowser.h, eve/inc/TEveChunkManager.h,
	  eve/inc/TEveDigitSet.h, eve/inc/TEveDigitSetEditor.h,
	  eve/inc/TEveElement.h, eve/inc/TEveElementEditor.h,
	  eve/inc/TEveEventManager.h, eve/inc/TEveFrameBox.h,
	  eve/inc/TEveFrameBoxGL.h, eve/inc/TEveGLText.h,
	  eve/inc/TEveGLUtil.h, eve/inc/TEveGValuators.h,
	  eve/inc/TEveGedEditor.h, eve/inc/TEveGeoNode.h,
	  eve/inc/TEveGeoNodeEditor.h, eve/inc/TEveGeoShapeExtract.h,
	  eve/inc/TEveGridStepper.h, eve/inc/TEveGridStepperEditor.h,
	  eve/inc/TEveLine.h, eve/inc/TEveLineEditor.h,
	  eve/inc/TEveLineGL.h, eve/inc/TEveMacro.h, eve/inc/TEveManager.h,
	  eve/inc/TEvePad.h, eve/inc/TEvePointSet.h,
	  eve/inc/TEvePointSetArrayEditor.h,
	  eve/inc/TEvePointSetProjectedGL.h,
	  eve/inc/TEvePolygonSetProjected.h,
	  eve/inc/TEvePolygonSetProjectedEditor.h,
	  eve/inc/TEvePolygonSetProjectedGL.h,
	  eve/inc/TEveProjectionBases.h, eve/inc/TEveProjectionManager.h,
	  eve/inc/TEveProjectionManagerEditor.h,
	  eve/inc/TEveProjectionManagerGL.h, eve/inc/TEveProjections.h,
	  eve/inc/TEveQuadSet.h, eve/inc/TEveQuadSetGL.h,
	  eve/inc/TEveRGBAPalette.h, eve/inc/TEveRGBAPaletteEditor.h,
	  eve/inc/TEveScene.h, eve/inc/TEveSceneInfo.h,
	  eve/inc/TEveStraightLineSet.h,
	  eve/inc/TEveStraightLineSetEditor.h,
	  eve/inc/TEveStraightLineSetGL.h, eve/inc/TEveTrack.h,
	  eve/inc/TEveTrackEditor.h, eve/inc/TEveTrackGL.h,
	  eve/inc/TEveTrackProjected.h, eve/inc/TEveTrackProjectedGL.h,
	  eve/inc/TEveTrackPropagator.h,
	  eve/inc/TEveTrackPropagatorEditor.h, eve/inc/TEveTrans.h,
	  eve/inc/TEveTransEditor.h, eve/inc/TEveTreeTools.h,
	  eve/inc/TEveTriangleSet.h, eve/inc/TEveTriangleSetEditor.h,
	  eve/inc/TEveTriangleSetGL.h, eve/inc/TEveUtil.h,
	  eve/inc/TEveVSD.h, eve/inc/TEveVSDStructs.h,
	  eve/inc/TEveViewer.h, eve/src/TEveBoxSet.cxx,
	  eve/src/TEveBoxSetGL.cxx, eve/src/TEveBrowser.cxx,
	  eve/src/TEveChunkManager.cxx, eve/src/TEveDigitSet.cxx,
	  eve/src/TEveDigitSetEditor.cxx, eve/src/TEveElement.cxx,
	  eve/src/TEveElementEditor.cxx, eve/src/TEveEventManager.cxx,
	  eve/src/TEveFrameBox.cxx, eve/src/TEveFrameBoxGL.cxx,
	  eve/src/TEveGLText.cxx, eve/src/TEveGLUtil.cxx,
	  eve/src/TEveGValuators.cxx, eve/src/TEveGedEditor.cxx,
	  eve/src/TEveGeoNode.cxx, eve/src/TEveGeoNodeEditor.cxx,
	  eve/src/TEveGeoShapeExtract.cxx, eve/src/TEveGridStepper.cxx,
	  eve/src/TEveGridStepperEditor.cxx, eve/src/TEveLine.cxx,
	  eve/src/TEveLineEditor.cxx, eve/src/TEveLineGL.cxx,
	  eve/src/TEveMacro.cxx, eve/src/TEveManager.cxx,
	  eve/src/TEvePad.cxx, eve/src/TEvePointSet.cxx,
	  eve/src/TEvePointSetArrayEditor.cxx,
	  eve/src/TEvePointSetProjectedGL.cxx,
	  eve/src/TEvePolygonSetProjected.cxx,
	  eve/src/TEvePolygonSetProjectedEditor.cxx,
	  eve/src/TEvePolygonSetProjectedGL.cxx,
	  eve/src/TEveProjectionBases.cxx,
	  eve/src/TEveProjectionManager.cxx,
	  eve/src/TEveProjectionManagerEditor.cxx,
	  eve/src/TEveProjectionManagerGL.cxx, eve/src/TEveProjections.cxx,
	  eve/src/TEveQuadSet.cxx, eve/src/TEveQuadSetGL.cxx,
	  eve/src/TEveRGBAPalette.cxx, eve/src/TEveRGBAPaletteEditor.cxx,
	  eve/src/TEveScene.cxx, eve/src/TEveSceneInfo.cxx,
	  eve/src/TEveStraightLineSet.cxx,
	  eve/src/TEveStraightLineSetEditor.cxx,
	  eve/src/TEveStraightLineSetGL.cxx, eve/src/TEveTrack.cxx,
	  eve/src/TEveTrackEditor.cxx, eve/src/TEveTrackGL.cxx,
	  eve/src/TEveTrackProjected.cxx, eve/src/TEveTrackProjectedGL.cxx,
	  eve/src/TEveTrackPropagator.cxx,
	  eve/src/TEveTrackPropagatorEditor.cxx, eve/src/TEveTrans.cxx,
	  eve/src/TEveTransEditor.cxx, eve/src/TEveTreeTools.cxx,
	  eve/src/TEveTriangleSet.cxx, eve/src/TEveTriangleSetEditor.cxx,
	  eve/src/TEveTriangleSetGL.cxx, eve/src/TEveUtil.cxx,
	  eve/src/TEveVSD.cxx, eve/src/TEveVSDStructs.cxx,
	  eve/src/TEveViewer.cxx: When including ROOT header files use ""
	  instead of <>.
	  
	  Replace NULL with 0 in TEveGLText.
	  
	  TEveTrackPropagator: make public data-members protected and
	  provide
	  get/set methods. Second attempt at fixing Solaris cc errors: make
	  Helix and Vertex4d struct declarations public.

2007-11-26 17:54  axel

	* [r21053] reflex/src/Kernel.cxx: Move typedef (u)longlong from
	  Kernel.h to Kernel.cxx; make it local.

2007-11-26 17:54  axel

	* [r21052] reflex/inc/Reflex/Kernel.h: The definition of
	  ROOT::Reflex::longlong is now removed.
	  It is not needed by the Reflex API, and it interfers
	  with user code defining its own longlong, because
	  the dictionaries pull it in via "using namespace ROOT::Reflex".
	  Leave an "#if 0" in there, so it's easier to trace.
	  
	  Only Kernel.cxx needs the typedef.

2007-11-26 17:16  rdm

	* [r21051] build/unix/svninfo.sh: script needs bash.

2007-11-26 17:00  rdm

	* [r21050] base/inc/TSystem.h: workaround bug in gcc's effc++
	  option.

2007-11-26 16:48  matevz

	* [r21049] eve/inc/TEveChunkManager.h, eve/inc/TEveGridStepper.h,
	  eve/inc/TEveTrackPropagator.h, eve/inc/TEveUtil.h,
	  eve/src/TEveGridStepper.cxx, eve/src/TEveGridStepperEditor.cxx,
	  eve/src/TEvePolygonSetProjectedGL.cxx: Fix errors reported by
	  Solaris cc.

2007-11-26 16:01  matevz

	* [r21048] eve/inc/TEveManager.h, eve/src/TEveManager.cxx,
	  tutorials/eve/lineset_test.C, tutorials/eve/quad_test.C,
	  tutorials/eve/triangleset.C, tutorials/eve/view3ds.C: Add static
	  function TEveManager::Create() and removed old
	  initialization scripts.
	  
	  Fix macros to use this new initialization method.

2007-11-26 15:58  brun

	* [r21047] gui/src/TGFrame.cxx: From Bertrand:
	  Fix 'Conditional jump or move depends on uninitialised value(s)'
	  reported by valgrind on gui in batch mode (sic)

2007-11-26 15:52  rdm

	* [r21046] base/src/TApplication.cxx: print warning in case a
	  macro.C or data.root file specified as argument
	  does not exist. Fixes issue 30632.

2007-11-26 15:51  rdm

	* [r21045] tmva/src/MethodVariable.cxx: fix gcc 4.2 warning.

2007-11-26 14:31  rdm

	* [r21044] Makefile, config/Makefile.depend, eve, eve/Module.mk,
	  eve/inc, eve/inc/LinkDef.h, eve/inc/TEveBoxSet.h,
	  eve/inc/TEveBoxSetGL.h, eve/inc/TEveBrowser.h,
	  eve/inc/TEveChunkManager.h, eve/inc/TEveDigitSet.h,
	  eve/inc/TEveDigitSetEditor.h, eve/inc/TEveElement.h,
	  eve/inc/TEveElementEditor.h, eve/inc/TEveEventManager.h,
	  eve/inc/TEveFrameBox.h, eve/inc/TEveFrameBoxGL.h,
	  eve/inc/TEveGLText.h, eve/inc/TEveGLUtil.h,
	  eve/inc/TEveGValuators.h, eve/inc/TEveGedEditor.h,
	  eve/inc/TEveGeoNode.h, eve/inc/TEveGeoNodeEditor.h,
	  eve/inc/TEveGeoShapeExtract.h, eve/inc/TEveGridStepper.h,
	  eve/inc/TEveGridStepperEditor.h, eve/inc/TEveLine.h,
	  eve/inc/TEveLineEditor.h, eve/inc/TEveLineGL.h,
	  eve/inc/TEveMacro.h, eve/inc/TEveManager.h, eve/inc/TEvePad.h,
	  eve/inc/TEvePointSet.h, eve/inc/TEvePointSetArrayEditor.h,
	  eve/inc/TEvePointSetProjectedGL.h,
	  eve/inc/TEvePolygonSetProjected.h,
	  eve/inc/TEvePolygonSetProjectedEditor.h,
	  eve/inc/TEvePolygonSetProjectedGL.h,
	  eve/inc/TEveProjectionBases.h, eve/inc/TEveProjectionManager.h,
	  eve/inc/TEveProjectionManagerEditor.h,
	  eve/inc/TEveProjectionManagerGL.h, eve/inc/TEveProjections.h,
	  eve/inc/TEveQuadSet.h, eve/inc/TEveQuadSetGL.h,
	  eve/inc/TEveRGBAPalette.h, eve/inc/TEveRGBAPaletteEditor.h,
	  eve/inc/TEveScene.h, eve/inc/TEveSceneInfo.h,
	  eve/inc/TEveStraightLineSet.h,
	  eve/inc/TEveStraightLineSetEditor.h,
	  eve/inc/TEveStraightLineSetGL.h, eve/inc/TEveTrack.h,
	  eve/inc/TEveTrackEditor.h, eve/inc/TEveTrackGL.h,
	  eve/inc/TEveTrackProjected.h, eve/inc/TEveTrackProjectedGL.h,
	  eve/inc/TEveTrackPropagator.h,
	  eve/inc/TEveTrackPropagatorEditor.h, eve/inc/TEveTrans.h,
	  eve/inc/TEveTransEditor.h, eve/inc/TEveTreeTools.h,
	  eve/inc/TEveTriangleSet.h, eve/inc/TEveTriangleSetEditor.h,
	  eve/inc/TEveTriangleSetGL.h, eve/inc/TEveUtil.h,
	  eve/inc/TEveVSD.h, eve/inc/TEveVSDStructs.h,
	  eve/inc/TEveViewer.h, eve/src, eve/src/TEveBoxSet.cxx,
	  eve/src/TEveBoxSetGL.cxx, eve/src/TEveBrowser.cxx,
	  eve/src/TEveChunkManager.cxx, eve/src/TEveDigitSet.cxx,
	  eve/src/TEveDigitSetEditor.cxx, eve/src/TEveElement.cxx,
	  eve/src/TEveElementEditor.cxx, eve/src/TEveEventManager.cxx,
	  eve/src/TEveFrameBox.cxx, eve/src/TEveFrameBoxGL.cxx,
	  eve/src/TEveGLText.cxx, eve/src/TEveGLUtil.cxx,
	  eve/src/TEveGValuators.cxx, eve/src/TEveGedEditor.cxx,
	  eve/src/TEveGeoNode.cxx, eve/src/TEveGeoNodeEditor.cxx,
	  eve/src/TEveGeoShapeExtract.cxx, eve/src/TEveGridStepper.cxx,
	  eve/src/TEveGridStepperEditor.cxx, eve/src/TEveLine.cxx,
	  eve/src/TEveLineEditor.cxx, eve/src/TEveLineGL.cxx,
	  eve/src/TEveMacro.cxx, eve/src/TEveManager.cxx,
	  eve/src/TEvePad.cxx, eve/src/TEvePointSet.cxx,
	  eve/src/TEvePointSetArrayEditor.cxx,
	  eve/src/TEvePointSetProjectedGL.cxx,
	  eve/src/TEvePolygonSetProjected.cxx,
	  eve/src/TEvePolygonSetProjectedEditor.cxx,
	  eve/src/TEvePolygonSetProjectedGL.cxx,
	  eve/src/TEveProjectionBases.cxx,
	  eve/src/TEveProjectionManager.cxx,
	  eve/src/TEveProjectionManagerEditor.cxx,
	  eve/src/TEveProjectionManagerGL.cxx, eve/src/TEveProjections.cxx,
	  eve/src/TEveQuadSet.cxx, eve/src/TEveQuadSetGL.cxx,
	  eve/src/TEveRGBAPalette.cxx, eve/src/TEveRGBAPaletteEditor.cxx,
	  eve/src/TEveScene.cxx, eve/src/TEveSceneInfo.cxx,
	  eve/src/TEveStraightLineSet.cxx,
	  eve/src/TEveStraightLineSetEditor.cxx,
	  eve/src/TEveStraightLineSetGL.cxx, eve/src/TEveTrack.cxx,
	  eve/src/TEveTrackEditor.cxx, eve/src/TEveTrackGL.cxx,
	  eve/src/TEveTrackProjected.cxx, eve/src/TEveTrackProjectedGL.cxx,
	  eve/src/TEveTrackPropagator.cxx,
	  eve/src/TEveTrackPropagatorEditor.cxx, eve/src/TEveTrans.cxx,
	  eve/src/TEveTransEditor.cxx, eve/src/TEveTreeTools.cxx,
	  eve/src/TEveTriangleSet.cxx, eve/src/TEveTriangleSetEditor.cxx,
	  eve/src/TEveTriangleSetGL.cxx, eve/src/TEveUtil.cxx,
	  eve/src/TEveVSD.cxx, eve/src/TEveVSDStructs.cxx,
	  eve/src/TEveViewer.cxx, fonts/eve_fontdefault.txf,
	  fonts/eve_fonthelvetica34.txf, icons/eve_pointset.xpm,
	  icons/eve_rnr00_t.xpm, icons/eve_rnr01_t.xpm,
	  icons/eve_rnr10_t.xpm, icons/eve_rnr11_t.xpm,
	  icons/eve_scene.xpm, icons/eve_track.xpm, icons/eve_viewer.xpm,
	  tutorials/eve, tutorials/eve/broken_torus.tring,
	  tutorials/eve/lineset_test.C, tutorials/eve/nasashuttle.3ds,
	  tutorials/eve/quad_test.C, tutorials/eve/triangleset.C,
	  tutorials/eve/view3ds.C: from Matevz:
	  add the TEve classes to the svn trunk. Code compiles without
	  warnings on
	  MacOS X, Linux and Windows XP. Tutorials still don't work, as
	  init code
	  is still missing (coming later today).

2007-11-26 14:27  rdm

	* [r21043] test: add .exe to the ignore list.

2007-11-26 13:20  brun

	* [r21042] README/CREDITS: Add Silvia Arcelli for her contribution
	  to THnSparse

2007-11-26 13:19  brun

	* [r21041] hist/inc/THnSparse.h, hist/src/THnSparse.cxx,
	  math/src/TMath.cxx: From Axel and Silvia Arcelli:
	  * implement rebinning, add, multiply, divide (incl. binomial)
	  * fix error calculation, now similar to TH1 etc
	  * allow for non-equal bin sizes: call constructor without bin
	  edges,
	  call SetBinEdges() afterwards

2007-11-26 11:27  moneta

	* [r21040] test/stressMathCore.cxx: fix a problem with upper cases
	  in Smatrix library name

2007-11-26 11:01  moneta

	* [r21039] test/stressMathCore.cxx: add tests of SMatrix and remove
	  the root files after reading

2007-11-25 13:35  rdm

	* [r21035] cont/src/TObjArray.cxx: fix in non-const operator[],
	  where the return value may be used as an lvalue,
	  set fLast and call Changed(). If you want to access array
	  elements and not
	  invalidate the sorting, use At() or UncheckedAt().

2007-11-25 09:16  rdm

	* [r21034] README/INSTALL: typo.

2007-11-25 08:35  rdm

	* [r21033] README/BUILDSYSTEM, README/INSTALL: change references to
	  CVS into Subversion.

2007-11-25 08:09  brun

	* [r21032] base/src/TAttFill.cxx: Document the special case when
	  the style fill area color is set to 0.
	  In this case, all objects fill area color is ignored and a
	  black&white output generated.

2007-11-24 09:56  brun

	* [r21031] math/src/TMath.cxx: Improve TMath::KolmogorovTest (Jason
	  Detwiler)
	  //
	  // Method Improvement by Jason A Detwiler (JADetwiler@lbl.gov)
	  // -----------------------------------------------------------
	  // The nuts-and-bolts of the TMath::KolmogorovTest() algorithm is
	  a for-loop
	  // over the two sorted arrays a and b representing empirical
	  distribution
	  // functions. The for-loop handles 3 cases: when the next points
	  to be
	  // evaluated satisfy a>b, a<b, or a=b:
	  //
	  // for (Int_t i=0;i<na+nb;i++) {
	  // if (a[ia-1] < b[ib-1]) {
	  // rdiff -= sa;
	  // ia++;
	  // if (ia > na) {ok = kTRUE; break;}
	  // } else if (a[ia-1] > b[ib-1]) {
	  // rdiff += sb;
	  // ib++;
	  // if (ib > nb) {ok = kTRUE; break;}
	  // } else {
	  // rdiff += sb - sa;
	  // ia++;
	  // ib++;
	  // if (ia > na) {ok = kTRUE; break;}
	  // if (ib > nb) {ok = kTRUE; break;}
	  // }
	  // rdmax = TMath::Max(rdmax,TMath::Abs(rdiff));
	  // }
	  //
	  // For the last case, a=b, the algorithm advances each array by
	  one index in an
	  // attempt to move through the equality. However, this is
	  incorrect when one or
	  // the other of a or b (or both) have a repeated value, call it
	  x. For the KS
	  // statistic to be computed properly, rdiff needs to be
	  calculated after all of
	  // the a and b at x have been tallied (this is due to the
	  definition of the
	  // empirical distribution function; another way to convince
	  yourself that the
	  // old CERNLIB method is wrong is that it implies that the
	  function defined as the
	  // difference between a and b is multi-valued at x -- besides
	  being ugly, this
	  // would invalidate Kolmogorov's theorem).
	  //
	  // The solution is to just add while-loops into the equality-case
	  handling to
	  // perform the tally:
	  //
	  // } else {
	  // double x = a[ia-1];
	  // while(a[ia-1] == x && ia <= na) {
	  // rdiff -= sa;
	  // ia++;
	  // }
	  // while(b[ib-1] == x && ib <= nb) {
	  // rdiff += sb;
	  // ib++;
	  // }
	  // if (ia > na) {ok = kTRUE; break;}
	  // if (ib > nb) {ok = kTRUE; break;}
	  // }

2007-11-23 11:43  wouter

	* [r21025] roofitcore/src/RooSimPdfBuilder.cxx: o RooSimPdfBuilder
	  
	  - Back out fix strtok_r problem by Matthew Langston, it doesn't
	  work OK.
	  Instead insert implementation of strtok_r if _WIN32 is defined.

2007-11-23 11:37  brun

	* [r21024] test/stressGeometry.cxx: Relax condition on difference
	  in number of steps

2007-11-23 11:15  rdm

	* [r21023] test/Makefile: if exists use ../MyConfig.mk to customize
	  build.

2007-11-23 10:46  rdm

	* [r21022] etc/valgrind-root.supp: From Axel:
	  valgrind suppression file for ROOT. To be used like:
	  valgrind --suppressions=$ROOTSYS/etc/valgrind-root.supp ...

2007-11-23 09:50  moneta

	* [r21021] test/Makefile, test/stressMathCore.cxx: - add
	  stressMathcore with tests for:
	  
	  - statistical functions (pdf and cdf) checking that numerical
	  integral of pdf = cdf
	  - all types of GenVectors (2,3, and 4D) including I/O

2007-11-23 09:15  brun

	* [r21016] geom/src/TGeoPgon.cxx: From Andrei:
	  fix for the problem in TGeoPgon that was not a mis-initialization
	  but it was algorithmic, due to the comparison of the (ideally)
	  same number computed in 2 different ways.

2007-11-23 08:07  ganis

	* [r21015] tutorials/proof/runProof.C: Do not define the unused
	  variable refloc (defined and used by getProof.C)

2007-11-22 23:09  ganis

	* [r21012] test/stressProof.cxx, tutorials/proof/getProof.C: Fix
	  problem on MAC; improve argument parsing

2007-11-22 21:45  rdm

	* [r21008] config/root-config.in, configure: the _REENTRANT flag
	  was not correctly set on Mac OS X, hence the
	  global mutexes were not active.

2007-11-22 21:44  wouter

	* [r21007] roofitcore/inc/RooAbsArg.h, roofitcore/inc/RooAbsData.h,
	  roofitcore/inc/RooAbsPdf.h, roofitcore/inc/RooAbsReal.h,
	  roofitcore/inc/RooAbsRealLValue.h, roofitcore/inc/RooChi2Var.h,
	  roofitcore/inc/RooCmdArg.h, roofitcore/inc/RooCmdConfig.h,
	  roofitcore/inc/RooGlobalFunc.h, roofitcore/inc/RooHistError.h,
	  roofitcore/inc/RooMCStudy.h, roofitcore/inc/RooMath.h,
	  roofitcore/inc/RooMsgService.h, roofitcore/inc/RooNLLVar.h,
	  roofitcore/inc/RooNameReg.h, roofitcore/inc/RooNumber.h,
	  roofitcore/inc/RooRealVar.h, roofitcore/inc/RooTreeData.h,
	  roofitcore/src/RooAbsArg.cxx, roofitcore/src/RooAbsPdf.cxx,
	  roofitcore/src/RooAbsReal.cxx, roofitcore/src/RooCmdArg.cxx,
	  roofitcore/src/RooHistError.cxx, roofitcore/src/RooMath.cxx,
	  roofitcore/src/RooMsgService.cxx, roofitcore/src/RooNameReg.cxx,
	  roofitcore/src/RooNumber.cxx, roofitcore/src/RooRealVar.cxx: o
	  RooRealVar, RooAbsRealLValue, RooMCStudy, RooChi2Var, RooAbsData,
	  RooHistError, RooTreeData, RooAbsPdf, RooAbsArg, RooGlobalFunc,
	  RooCmdConfig, RooMath, RooNLLVar, RooAbsReal, RooNumber,
	  RooMsgService,
	  RooNameReg
	  
	  - Changes references to RooCmdArg::none to RooCmdArg::none()
	  
	  - Un-inline all static functions references static data members
	  
	  
	  o RooCmdArg
	  
	  - Rename static RooCmdArg none to _none and make protected. Add
	  public accessor function none()

2007-11-22 21:38  brun

	* [r21006] test/Makefile: Proof is not an optional package.

2007-11-22 21:29  brun

	* [r21005] test/Makefile: From Bertrand,
	  Do not build tragets line stressProof and stressRoofit if Proof
	  and RooFit have not been selected in configure.

2007-11-22 21:02  wouter

	* [r21004] roofitcore/inc/RooFitResult.h: o RooFitResult
	  
	  - Relax parameter comparison tolerance in isIdentical() from 1e-6
	  to 5e-5

2007-11-22 20:59  brun

	* [r21003] minuit/src/TMinuit.cxx: From Eddy:
	  In the default TMinuit constructor, preset fFCN=0

2007-11-22 20:40  wouter

	* [r21002] roofitcore/inc/RooTrace.h, roofitcore/src/RooTrace.cxx:
	  o RooTrace
	  
	  - Remove inlining of static control function as this appears
	  to give linking problems under Windows

2007-11-22 20:35  brun

	* [r21001] test/stressRooFit.cxx: Fix a compilation error on
	  Solaris.

2007-11-22 20:14  wouter

	* [r21000] roofitcore/inc/RooFitResult.h,
	  roofitcore/src/RooFitResult.cxx: o RooFitResult
	  
	  - Add seperate tolerance parameter in isIdentical() for
	  correlation
	  comparisons, with a default of 1e-4

2007-11-22 18:25  ganis

	* [r20999] proof/src/TProof.cxx, test/Makefile,
	  test/stressProof.cxx, tutorials/proof/ProofSimple.C,
	  tutorials/proof/ProofSimple.h: - First version of
	  'stressProof.cxx' and related changes in the test/Makefile
	  - Add missing protection in TProof to avoid starting the dialog
	  when in batch mode
	  - Add proper default initialization and destruction in
	  tutorials/proof/ProofSimple.C,.h

2007-11-22 17:03  brun

	* [r20996] test/Makefile: Fix for Windows

2007-11-22 17:02  rdm

	* [r20995] proofd/src/XrdProofWorker.cxx,
	  rpdutils/src/rpdutils.cxx: fix some gcc 4.2 warning.

2007-11-22 16:42  brun

	* [r20994] test/Makefile.win32: Add stressRooFit

2007-11-22 16:37  brun

	* [r20993] test/Makefile, test/stressRooFit.cxx: Add new stress
	  suite for RooFit (by Woter Verkerke)
	  Modify Makefile to build stressRooFit

2007-11-22 15:43  rdm

	* [r20992] tutorials/io/testMergeCont.C: set eol-style.

2007-11-22 15:30  couet

	* [r20991] test/stressGraphics.cxx: - On 64 bits linux machine
	  (lxplus) when stresssGraphics was ran une CINT,
	  valgrind showed many unitialized variables. This was due to
	  reasons:
	  * the Form() method (it seems to overwite memory ...).
	  * allocation of char arrays.
	  stressgraphics.cxx has been modified to work around these two
	  problems.
	  In compiled mode stressGraphics ran normally.

2007-11-22 15:24  couet

	* [r20990] test/stressGraphics.ref: - New version

2007-11-22 15:20  rdm

	* [r20989] tutorials/io/testMergeCont.C: From Andrei:
	  container merge test.

2007-11-22 14:54  wouter

	* [r20988] roofitcore/Module.mk, roofitcore/inc/LinkDef3.h,
	  roofitcore/inc/Roo1DTable.h, roofitcore/inc/RooAbsAnaConvPdf.h,
	  roofitcore/inc/RooAbsPdf.h, roofitcore/inc/RooAddModel.h,
	  roofitcore/inc/RooArgSet.h, roofitcore/inc/RooConvCoefVar.h,
	  roofitcore/inc/RooCurve.h, roofitcore/inc/RooFitResult.h,
	  roofitcore/inc/RooGlobalFunc.h, roofitcore/inc/RooHist.h,
	  roofitcore/inc/RooMath.h, roofitcore/inc/RooMinuit.h,
	  roofitcore/inc/RooMsgService.h, roofitcore/inc/RooNameReg.h,
	  roofitcore/inc/RooNumIntConfig.h,
	  roofitcore/inc/RooNumIntFactory.h,
	  roofitcore/inc/RooObjCacheManager.h, roofitcore/inc/RooPlot.h,
	  roofitcore/inc/RooProdPdf.h, roofitcore/inc/RooProjectedPdf.h,
	  roofitcore/inc/RooRealConstant.h, roofitcore/inc/RooRealVar.h,
	  roofitcore/inc/RooRealVarSharedProperties.h,
	  roofitcore/inc/RooResolutionModel.h,
	  roofitcore/inc/RooSentinel.h, roofitcore/inc/RooSimPdfBuilder.h,
	  roofitcore/inc/RooTable.h, roofitcore/src/Roo1DTable.cxx,
	  roofitcore/src/RooAbsAnaConvPdf.cxx,
	  roofitcore/src/RooAbsArg.cxx, roofitcore/src/RooAbsCachedPdf.cxx,
	  roofitcore/src/RooAbsCollection.cxx,
	  roofitcore/src/RooAbsOptGoodnessOfFit.cxx,
	  roofitcore/src/RooAbsPdf.cxx, roofitcore/src/RooAbsReal.cxx,
	  roofitcore/src/RooAdaptiveGaussKronrodIntegrator1D.cxx,
	  roofitcore/src/RooAddGenContext.cxx,
	  roofitcore/src/RooAddModel.cxx, roofitcore/src/RooAddPdf.cxx,
	  roofitcore/src/RooAddition.cxx, roofitcore/src/RooArgSet.cxx,
	  roofitcore/src/RooBinning.cxx,
	  roofitcore/src/RooClassFactory.cxx,
	  roofitcore/src/RooConvGenContext.cxx,
	  roofitcore/src/RooCurve.cxx, roofitcore/src/RooDataHist.cxx,
	  roofitcore/src/RooDataProjBinding.cxx,
	  roofitcore/src/RooFFTConvPdf.cxx,
	  roofitcore/src/RooFitResult.cxx,
	  roofitcore/src/RooFormulaVar.cxx,
	  roofitcore/src/RooGaussKronrodIntegrator1D.cxx,
	  roofitcore/src/RooGenContext.cxx,
	  roofitcore/src/RooGlobalFunc.cxx, roofitcore/src/RooGrid.cxx,
	  roofitcore/src/RooHist.cxx,
	  roofitcore/src/RooImproperIntegrator1D.cxx,
	  roofitcore/src/RooIntegrator1D.cxx,
	  roofitcore/src/RooIntegrator2D.cxx,
	  roofitcore/src/RooLinkedList.cxx,
	  roofitcore/src/RooMCIntegrator.cxx,
	  roofitcore/src/RooMCStudy.cxx, roofitcore/src/RooMath.cxx,
	  roofitcore/src/RooMinuit.cxx, roofitcore/src/RooMsgService.cxx,
	  roofitcore/src/RooNameReg.cxx,
	  roofitcore/src/RooNumIntConfig.cxx,
	  roofitcore/src/RooNumIntFactory.cxx,
	  roofitcore/src/RooObjCacheManager.cxx,
	  roofitcore/src/RooPlot.cxx, roofitcore/src/RooProdGenContext.cxx,
	  roofitcore/src/RooProdPdf.cxx, roofitcore/src/RooProfileLL.cxx,
	  roofitcore/src/RooProjectedPdf.cxx,
	  roofitcore/src/RooRealConstant.cxx,
	  roofitcore/src/RooRealIntegral.cxx,
	  roofitcore/src/RooRealVar.cxx,
	  roofitcore/src/RooRealVarSharedProperties.cxx,
	  roofitcore/src/RooResolutionModel.cxx,
	  roofitcore/src/RooSegmentedIntegrator2D.cxx,
	  roofitcore/src/RooSentinel.cxx,
	  roofitcore/src/RooSharedPropertiesList.cxx,
	  roofitcore/src/RooSimPdfBuilder.cxx,
	  roofitcore/src/RooSimultaneous.cxx, roofitcore/src/RooTrace.cxx,
	  roofitcore/src/RooTreeData.cxx, roofitcore/src/RooWorkspace.cxx,
	  roofitcore/test, roofitcore/test/Makefile,
	  roofitcore/test/Makefile.arch, roofitcore/test/TestBasic1.cxx,
	  roofitcore/test/TestBasic10.cxx, roofitcore/test/TestBasic11.cxx,
	  roofitcore/test/TestBasic12.cxx, roofitcore/test/TestBasic13.cxx,
	  roofitcore/test/TestBasic14.cxx, roofitcore/test/TestBasic15.cxx,
	  roofitcore/test/TestBasic16.cxx, roofitcore/test/TestBasic17.cxx,
	  roofitcore/test/TestBasic18.cxx, roofitcore/test/TestBasic19.cxx,
	  roofitcore/test/TestBasic2.cxx, roofitcore/test/TestBasic20.cxx,
	  roofitcore/test/TestBasic21.cxx, roofitcore/test/TestBasic22.cxx,
	  roofitcore/test/TestBasic3.cxx, roofitcore/test/TestBasic4.cxx,
	  roofitcore/test/TestBasic5.cxx, roofitcore/test/TestBasic6.cxx,
	  roofitcore/test/TestBasic7.cxx, roofitcore/test/TestBasic8.cxx,
	  roofitcore/test/TestBasic9.cxx, roofitcore/test/stressRooFit.cxx:
	  ** Bringing trunk up-to-date w.r.t recent changes in
	  branches/dev/roofit branch **
	  
	  Aggregated messages from branch commits follow
	  
	  --- Date: Fri Oct 19 20:35:30 2007 New Revision: 20422 ---
	  
	  o RooAbsArg
	  
	  - Add debug level print statement in findConstantNodes()
	  
	  o RooAbsAnaConvPdf
	  
	  - Do not expose cached RooCoefVars to constant term finding
	  process.
	  
	  
	  
	  --- Date: Fri Oct 19 21:03:40 2007 New Revision: 20423 ---
	  
	  o RooPlot
	  
	  - Add forwarding function for all revent Set*() methods of TH1
	  
	  
	  
	  --- Date: Fri Oct 19 21:48:40 2007 New Revision: 20424 ---
	  
	  o RooAbsAnaConvPdf
	  
	  - Back out special handling of exposure of cached RooCoefVars
	  to constant term finding process.
	  
	  
	  o RooObjCacheManager
	  
	  - Do not perform constant term finding on cache contents
	  if cache manager is configured to perform clearOnRedirect
	  for server redirects.
	  
	  
	  
	  --- Date: Wed Oct 31 23:36:10 2007 New Revision: 20587 ---
	  
	  o RooAbsRealLValue
	  
	  - Remove stray debug print statements
	  
	  
	  o RooAddPdf
	  
	  - Add new default ctor to fix persistence introduced by
	  new cache management scheme
	  
	  - Add forgotten initializer to regular ctor
	  
	  
	  o RooAbsCachedPdf
	  
	  - Add formal server-link dependency on cache parameters to
	  RooHistPdf cache representation so that the constant term
	  optimizer can make the correct decision
	  
	  - Make RooObjCacheManager a persistent data member
	  
	  
	  o RooObjCacheManager
	  
	  - Add debug message level information
	  
	  - Make _optCacheObservables a transient data member and
	  initialize
	  it in the default ctor.
	  
	  
	  o RooAbsPdf, RooProjectedPdf
	  
	  - Add new default ctor to fix persistence introduced by
	  new cache management scheme
	  
	  - Make RooObjCacheManager a persistent data member
	  
	  
	  o RooAbsArg
	  
	  - Add methods graphVizTree() that produce input files
	  for AT&Ts graphViz to make graphical representation
	  of object tree. (To make actual graphics run 'dot -Tps -o
	  graph.ps %s'
	  where %s is argument passed to graphVizTree().
	  
	  o RooSetProxy
	  
	  - Remove stray debug print statements
	  
	  
	  o RooSimultaneous
	  
	  - Initialize forgotten data member in all ctors
	  
	  
	  o RooProdPdf, RooAbsAnaConvPdf
	  
	  - Make RooObjCacheManager a persistent data member
	  
	  
	  o RooSuperCategory
	  
	  - Make contained iterator a transient data member
	  and initialize it in the default ctor.
	  
	  
	  o RooCacheManager
	  
	  - Add explicit separate default ctor.
	  
	  
	  o RooAddModel
	  
	  - Completely new implementation, based on existing RooAddPdf.
	  RooResolutionModel functionality (convolution(),basisCode())
	  taken from original RooAddModel. Reimplement integration strategy
	  with caching of integral objects, rather than implementing
	  only common analytical component
	  
	  o RooAbsAnaConvPdf,RooResolutionModel,RooAbsPdf
	  
	  - Remove special hook function that were required for functioning
	  of original RooAddModel
	  
	  o RooObjCacheManager
	  
	  - Keep all _optCacheObservables versions created alive in
	  separate owned list
	  and only delete at end in dtor to avoid dangling pointer in
	  complex
	  optimizations
	  
	  o RooAbsArg
	  
	  - In optimizeCacheMode() ignore nodes that already have been
	  const optimized.
	  Although const optimization normally happens first, late cache
	  optimization
	  that happen upon late creation of objects can take place after
	  const optimization.
	  
	  
	  
	  --- Date: Tue Nov 13 12:04:55 2007 New Revision: 20774 ---
	  
	  o RooAddModel
	  
	  - Completely new implementation, based on existing RooAddPdf.
	  RooResolutionModel functionality (convolution(),basisCode())
	  taken from original RooAddModel. Reimplement integration strategy
	  with caching of integral objects, rather than implementing
	  only common analytical component
	  
	  o RooAbsAnaConvPdf,RooResolutionModel,RooAbsPdf
	  
	  - Remove special hook function that were required for functioning
	  of original RooAddModel
	  
	  o RooObjCacheManager
	  
	  - Keep all _optCacheObservables versions created alive in
	  separate owned list
	  and only delete at end in dtor to avoid dangling pointer in
	  complex
	  optimizations
	  
	  o RooAbsArg
	  
	  - In optimizeCacheMode() ignore nodes that already have been
	  const optimized.
	  Although const optimization normally happens first, late cache
	  optimization
	  that happen upon late creation of objects can take place after
	  const optimization.
	  
	  o RooMsgService
	  
	  - Some restructuring to speed up code.
	  
	  - Change topic naming from string to enum.
	  
	  - Change debug-level print macros to take inline pre-decision
	  based on static RooMsgService boolean that indicates if any debug
	  stream is active. Also extend this speedup to doLogD() macro.
	  
	  - Allow multiple Topic specifications in a single stream using
	  bit-wise
	  or to reduce default number of streams from 6 to 2.
	  
	  - Terminate matching logic to streams early for 'universal'
	  streams
	  for which the logic does not depend on object properties.
	  
	  
	  o RooGlobalFunc
	  
	  - Change Topic() argument from RooMsgService::MsgTopic to Int_t
	  to allow specification
	  of multiple topics
	  
	  
	  o RooDataHist, RooMsgService, RooGenContext, RooAddModel,
	  RooFFTConvPdf
	  RooAbsAnaConvPdf, RooAbsReal, RooAddPdf, RooAbsOptGoodnessOfFit,
	  RooAbsCachedPdf
	  RooProfileLL, RooObjCacheManager, RooAbsArg, RooAbsPdf,
	  RooRealIntegral
	  RooAddGenContext, RooProdGenContext, RooConvGenContext,
	  RooProjectedPdf, RooClassFactory
	  RooWorkspace, RooTreeData
	  
	  - Follow change in RooMsgService interface
	  
	  
	  
	  --- Date: Tue Nov 13 13:13:05 2007 New Revision: 20776 ---
	  
	  
	  o RooMCStudy
	  
	  - Initialize _genParams in 2nd ctor (fixes savannah #31139)
	  
	  
	  
	  --- Date: Fri Nov 16 21:24:52 2007 New Revision: 20853 ---
	  
	  
	  o RooProdPdf, RooAddition
	  
	  - Fix memory leaks found with valgrind
	  
	  
	  o RooMsgService, RooRealConstant, RooNumIntFactory, RooMinuit,
	  RooNameReg, RooNumIntConfig, RooArgSet
	  
	  - Add cleanup() function to delete singleton at exit
	  
	  
	  o RooMinuit
	  
	  - Initialize _warnLevel data member (valgrind)
	  
	  
	  o RooAddModel
	  
	  - Disable coefficient projections in convolution mode
	  (savannah #31302)
	  
	  
	  o RooTrace
	  
	  - Remove messages about objects already deleted when not in
	  verbose mode
	  
	  
	  o RooSentinel
	  
	  - New class handling cleanup at exit
	  
	  
	  --- Date: Mon Nov 19 16:41:52 2007 New Revision: 20901 ---
	  
	  
	  o Makefile
	  
	  - Makefile to build stressRooFit
	  
	  
	  o Makefile.arch
	  
	  - Stolen from $ROOTSYS/test
	  
	  
	  o stressRooFit
	  
	  - Driver framework, base class of unit tests and
	  automatic plot, curve, fit result comparison tools
	  that unit tests can request
	  
	  
	  o TestBasic1
	  
	  - Basic test running fitting, generation and plotting on Gaussian
	  p.d.f
	  
	  
	  
	  --- Date: Wed Nov 21 17:58:28 2007 New Revision: 20965 ---
	  
	  o stressRooFit
	  
	  - Add regression test support for Double_t values
	  and RooTables
	  
	  - In post-test analysis mode, analyze count of
	  (silent) ERROR messages and fail test if they
	  occcur
	  
	  - Eliminate memory leaks in testing framework
	  
	  - Add arguments '-n <N>' to run single test and
	  argument '-mc' to run suite in memory checking
	  mode in which case no references files are opened
	  to avoid ROOT I/O related noise in valgrind leak reports.
	  
	  - Link in 21 new tests
	  
	  
	  o TestBasic2 ... TestBasic22
	  
	  - New stress testing modules. Modules 4,6,7,11,21 and 22
	  are empty for now. All others are fully functional.
	  
	  
	  
	  --- Date: Thu Nov 22 14:32:14 2007 New Revision: 20980 ---
	  
	  
	  o test/TestBasic15, test/TestBasic16, test/TestBasic20
	  
	  - Fix memory leak in test code itself
	  
	  
	  o test/stressRooFit
	  
	  - Activate RooFit internal memory tracing when run in memory
	  check mode
	  
	  
	  o RooDataHist
	  
	  - Fix memory leak
	  
	  
	  o RooMsgService
	  
	  - Add Tracing subject
	  
	  - Fix bug in printing of multi-subject streams
	  
	  - Keep track of total number of (silent) ERROR messages
	  
	  - Add method to access contents of stream configurations
	  
	  
	  o RooIntegrator1D, RooIntegrator2D, RooSegmentedIntegrator1D,
	  RooSegmentedIntegrator2D,
	  RooGaussKronrodIntegrator1D, RooAdaptiveGaussKronronIntegrator1D,
	  RooMCIntegrator, RooGrid
	  
	  - Fix default ctor to initialize all values used in dtor
	  
	  
	  o RooAddModel
	  
	  - Add optional boolean to ctor to take ownership of components.
	  Used
	  in RooAddModel::convolution()
	  
	  - Fix memory leak in convolution()
	  
	  
	  o RooFitResult
	  
	  - Migrations to RooMsgService
	  
	  - Add isIdentical() method for use in regression testing
	  
	  
	  o RooCurve, RooHist
	  
	  - Add isIdentical() method for use in regression testing
	  
	  
	  o Roo1DTable
	  
	  - Make persistable
	  
	  - Add isIdentical() method for use in regression testing
	  
	  
	  o RooMath
	  
	  - Migrations to RooMsgService
	  
	  - Register static memory allocation of CERF lookup table in
	  RooSentinel
	  for cleanup in atexit().
	  
	  
	  o RooAbsReal
	  
	  - Migrations to RooMsgService
	  
	  - Fix invalid read access due to wrong destructor order in
	  plotAsymOn()
	  
	  - Fix memory leak in plotOn()
	  
	  
	  o RooAbsCollection
	  
	  - Restrict creation of hash tables to deep-copy operations
	  or shallow copy operations of lists with >30 elements
	  
	  
	  o RooAddPdf, RooRealVar, RooDataProjBinding, RooFormulaVar,
	  RooTreeData
	  
	  - Migrations to RooMsgService
	  
	  
	  o RooAbsOptGoodnessOfFit
	  
	  - Fix memory leak
	  
	  
	  o RooAbsPdf
	  
	  - Migrations to RooMsgService
	  
	  - Fix memory leak in fitTo()
	  
	  
	  o RooNumIntFactory
	  
	  - Delete all owned prototype integrators in dtor
	  
	  
	  o RooBinning
	  
	  - Fix ctors to always initialize _xlo and _xhi
	  
	  
	  o RooResolutioModel
	  
	  - Register static identity RooFormulaVar with RooSentinel
	  for cleanup in atexit()
	  
	  
	  o RooSimPdfBuilder
	  
	  - Migrations to RooMsgService
	  
	  - Delete all fitCats and RooSimultaneous instances created
	  by builder in dtor
	  
	  - Return non-const top-level p.d.f. from buildPdf()
	  
	  
	  o RooLinkedList
	  
	  - First delete hash tables, then clear list instead of
	  reverse order to avoid invalid read problems with TList
	  
	  
	  o RooMinuit
	  
	  - Migrations to RooMsgService
	  
	  - Initialize MINUIT print levels to -1 if RooMsgService
	  is operating in silent mode
	  
	  - Trim initial error on parameters if param +/- 2*errors
	  is out of param range
	  
	  
	  o RooSentinel
	  
	  - Add cleanup hooks from RooMath and RooResolutionModel
	  
	  
	  o RooSimultaneous
	  
	  - Fix memory leak
	  
	  - Migrations to RooMsgService
	  
	  
	  o RooProjectedPdf
	  
	  - Implement RooProjectedPdf::CacheElem dtor
	  
	  
	  o RooTable
	  
	  - Add pure virtual isIdentical() interface

2007-11-22 14:47  ganis

	* [r20987] proof/inc/TProofLog.h: Add getters for the list of log
	  elements and the element TMacro

2007-11-22 14:42  rdm

	* [r20986] cont/inc/TSeqCollection.h, cont/src/TSeqCollection.cxx:
	  From Andrei:
	  implements Merge() method.

2007-11-22 14:35  rdm

	* [r20985] alien/inc/TAlienJobStatusList.h,
	  krb5auth/src/TKSocket.cxx, table/src/TTableMap.cxx: fix gcc 4.2
	  compilation warnings.

2007-11-22 14:29  rdm

	* [r20984] pyroot/src/PyROOT.h: fix Py_ssize_t and %u print format
	  warnings.

2007-11-22 14:02  antcheva

	* [r20983] test/guitest.cxx: Do not reuse the same cascaded menu on
	  different level.

2007-11-22 13:48  antcheva

	* [r20982] gui/src/TGButton.cxx, gui/src/TGNumberEntry.cxx,
	  gui/src/TGTextEntry.cxx: Handle multi-line tooltips in the
	  generated code.

2007-11-22 13:47  antcheva

	* [r20981] tutorials/gui/guitest.C: Do not reuse the same cascaded
	  menu on different level.

2007-11-22 11:36  axel

	* [r20979] cint/lib/dll_stl/str.h, cint/lib/prec_stl/string,
	  cint/src/fproto.h, cint/src/v6_func.cxx, cint/src/v6_newlink.cxx,
	  cint/src/v6_parse.cxx, cint/src/v6_pcode.cxx,
	  cint/src/v6_scrupto.cxx, cint/src/v6_typedef.cxx,
	  cint/src/v6_value.h, cint/src/v6_var.cxx, cint/stl/algobase.h:
	  From Philippe, Paul, Fons, Christian Holm, and me:
	  CINT v5-16-28 (actually: up to r2026)
	  * - support MacOSX 10.5 + macos64, rename macgcc to macos.
	  * - from Christian Holm Christensen:
	  * new MIPS and HPPA linux architectures supported
	  * - support MSVC2008
	  * - fix several problems discovered in CINT's test suite and with
	  valgrind
	  * - fix autoloading of templated classes with typedefs as
	  template argument
	  * - Add dictionary for std::string::(const_)reverse_iterator and
	  * std::string::iterator's operator ==, != also for GCC > 3.

2007-11-22 09:27  brun

	* [r20978] win32gdk/src/TGWin32.cxx: From Bertrand:
	  - Make sure event->fWindow is always set

2007-11-22 09:13  brun

	* [r20977] hist/inc/TH1.h, hist/src/TH1.cxx, main/src/hadd.cxx: Add
	  support for "average/efficiency" histograms in TH1::Add
	  // SPECIAL CASE (Average/Efficiency histograms)
	  // For histograms representing averages or efficiencies, one
	  should compute the average
	  // of the two histograms and not the sum. One can mark a
	  histogram to be an average
	  // histogram by setting its bit kIsAverage with
	  // myhist.SetBit(TH1::kIsAverage);
	  // Note that the two histograms must have their kIsAverage bit
	  set
	  
	  When the utility hadd is used, histograms with teh kIsAverage bit
	  set are averaged and not summed.

2007-11-22 09:11  brun

	* [r20976] gdml/src/TGDMLParse.cxx: Fix coding conventions

2007-11-22 08:59  moneta

	* [r20975] math/src/TMath.cxx: update documentation for
	  TMath::Gamma according to https://savannah.cern.ch/bugs/?31513

2007-11-22 07:29  brun

	* [r20974] asimage/src/TASImage.cxx: From Valeriy:
	  - fix a small mem.leak reported by purify

2007-11-21 22:27  wlav

	* [r20971] pyroot/inc/TPython.h: added static to declarations

2007-11-21 18:11  axel

	* [r20969] reflex/python/genreflex/gendict.py: From Scott Snyder:
	  Fix a problem with the dictionary generation when the default
	  arguments depends not just on the template name, but on earlier
	  template arguments:
	  ---------------------------------------------------------
	  #include "Reflex/Builder/DictSelection.h"
	  
	  template <class T>
	  class Default {};
	  
	  namespace ROOT { namespace Reflex { namespace Selection {
	  template <class T, class U> struct C;
	  }}}
	  
	  template <class T, class U = Default<T> >
	  class C
	  {
	  typedef typename
	  ROOT::Reflex::Selection::C<T, U>::self self;
	  };
	  
	  
	  namespace ROOT { namespace Reflex { namespace Selection {
	  template <class T, class U>
	  struct C
	  {
	  typedef C<T, U> self;
	  ROOT::Reflex::Selection::TEMPLATE_DEFAULTS<
	  ROOT::Reflex::Selection::NODEFAULT,
	  Default<T> > dum1;
	  ROOT::Reflex::Selection::NO_SELF_AUTOSELECT dum2;
	  };
	  }}}
	  
	  
	  struct foo
	  {
	  C<int> a;
	  C<float> b;
	  };
	  
	  ---------------------------------------------------------
	  <lcgdict>
	  <class name="C<int>"/>
	  <class name="C<float>"/>
	  </lcgdict>
	  ---------------------------------------------------------
	  resulted in the warning:
	  
	  --->> genreflex: WARNING: Class C<float> in selection file
	  selection.xml not generated.

2007-11-21 16:59  antcheva

	* [r20966] gui/src/TGFileBrowser.cxx: From Bertrand:
	  Fixed leaking pictures - seen in gObjectTable->Print().

2007-11-21 16:52  axel

	* [r20964] reflex/python/genreflex/genrootmap.py: For rootmap
	  entries: remove "std::" also for template parameters, otherwise
	  CINT won't identify our rootmap entries

2007-11-21 16:07  axel

	* [r20963] cintex/src/Cintex.cxx: Remove artificial CINT source
	  file used for Reflex->CINT type declaration for now; it has ugly
	  side effects for Reflex dictionaries loaded at start-up.
	  This effectively reverts r19811; I still have to find a solution
	  for late-converted dictionaries and thus leave CINTSourceFile in
	  for now.

2007-11-21 15:48  rdm

	* [r20962] gl/src/TGLHistPainter.cxx, gl/src/TGLParametric.cxx,
	  gl/src/TGLSurfacePainter.cxx, gl/src/TGLTF3Painter.cxx,
	  gl/src/TGLText.cxx: Fix gcc 4.2 compiler warnings.

2007-11-21 15:45  rdm

	* [r20961] proof/src/TProof.cxx, proof/src/TProofChain.cxx,
	  proof/src/TProofServ.cxx: remove compiler warnings.

2007-11-21 15:18  rdm

	* [r20960] tmva/inc/MethodCuts.h, tmva/inc/TActivationIdentity.h,
	  tmva/src/MethodBayesClassifier.cxx, tmva/src/MethodCuts.cxx,
	  tmva/src/Timer.cxx: remove number of gcc 4.2 warnings.

2007-11-21 15:14  antcheva

	* [r20959] gui/src/TGFileBrowser.cxx, gui/src/TRootBrowser.cxx:
	  From Bertrand:
	  Fixed more leaks...

2007-11-21 12:23  antcheva

	* [r20958] gui/src/TGTextEditor.cxx: From Bertrand:
	  Fixed memory leaks discovered with gObjectTable->Print().

2007-11-21 12:16  brun

	* [r20957] test/stressGeometry.cxx: Be ?\127?\127Relax the
	  constraints.

2007-11-21 11:53  brun

	* [r20955] win32gdk/src/TGWin32.cxx: From Bertrand:
	  Fix memory leak in drag & drop + code cleanup

2007-11-21 11:34  brun

	* [r20954] test/stressGeometry.cxx: Increase an internal buffer
	  size for fname

2007-11-21 11:20  brun

	* [r20952] test/stressGeometry.cxx: Use CACHEREAD option for the
	  reference files.

2007-11-21 10:48  brun

	* [r20951] test/stressGeometry.cxx: From Andrei.
	  Use the reference files from the http://root.cern.ch/files web
	  site instead of local copies

2007-11-21 10:42  brun

	* [r20949] win32gdk/src/TGWin32.cxx: From Bertrand:
	  - Revert previous changes (side effects) ++ fixes memory leaks

2007-11-21 10:34  antcheva

	* [r20948] gui/src/TGDNDManager.cxx, gui/src/TRootBrowser.cxx: From
	  Bertrand:
	  Memory leak fixes.

2007-11-21 09:17  brun

	* [r20947] gdml/inc/TGDMLParse.h, gdml/src/TGDMLParse.cxx: From
	  Zoltan Torzsok:
	  Fix for a problem with long expressions lines.

2007-11-21 08:48  brun

	* [r20945] geom/src/TGeoTube.cxx: Fix a bug in TGeoCtub::Safety.
	  The array saf is dimensioned as saf[4],
	  but TMath::LocMax(5,saf) was called instead of
	  TMath::Locmax(4,saf).

2007-11-21 06:12  brun

	* [r20944] asimage/src/libAfterImage.tar.gz: From Valeriy:
	  New version from Sasha that should fix some of the recently
	  reported memory leaks.

2007-11-21 06:09  brun

	* [r20943] test/stressLinear.cxx: From Eddy:
	  Add a new test for TMatrixTSparse

2007-11-21 06:07  brun

	* [r20942] matrix/src/TMatrixTSparse.cxx: From Eddy:
	  Fix a bug in TMatrixTSparse::ExtractRow (symmetric to the bug
	  previously fixed
	  in TMatrixTSparse::InsertRow.

2007-11-21 00:59  wlav

	* [r20941] pyroot/inc/TPython.h, pyroot/src/TPython.cxx: extension
	  of programmer access to PyROOT

2007-11-20 22:26  ganis

	* [r20939] proofplayer/src/TFileMerger.cxx: Use
	  gSystem->TempDirectory() instead of /tmp

2007-11-20 17:39  rdm

	* [r20935] auth/src/TAuthenticate.cxx, base/src/TApplication.cxx,
	  base/src/TROOT.cxx, ged/src/TGedMarkerSelect.cxx,
	  geom/src/TGeoManager.cxx, gpad/src/TColorWheel.cxx,
	  io/src/TMapFile.cxx, meta/src/TCint.cxx, rint/src/TTabCom.cxx,
	  treeviewer/src/TParallelCoordVar.cxx: Remove gcc 4.2 compiler
	  warnings.

2007-11-20 17:11  rdm

	* [r20933] gui/inc/LinkDef3.h, gui/inc/TGCanvas.h,
	  gui/inc/TGDNDManager.h, gui/inc/TGFSContainer.h,
	  gui/inc/TGFrame.h, gui/inc/TGListTree.h, gui/inc/TGTextView.h,
	  gui/inc/TRootCanvas.h, gui/inc/TRootEmbeddedCanvas.h,
	  gui/src/TGCanvas.cxx, gui/src/TGDNDManager.cxx,
	  gui/src/TGFrame.cxx, gui/src/TGListTree.cxx,
	  gui/src/TGTextView.cxx, gui/src/TRootBrowserLite.cxx,
	  gui/src/TRootCanvas.cxx, gui/src/TRootEmbeddedCanvas.cxx: From
	  Bertrand:
	  fix naming conventions, after acronym, next word starts with
	  upper case.

2007-11-20 17:08  rdm

	* [r20932] gui/inc/TRootBrowser.h, gui/inc/TRootBrowserLite.h:
	  white space.

2007-11-20 17:08  rdm

	* [r20931] gui/inc/TGFileBrowser.h, gui/src/TGFileBrowser.cxx:
	  Added missing copyright notice. Still class description block
	  missing.

2007-11-20 15:52  brun

	* [r20930] win32gdk/src/TGWin32.cxx: From Bertrand:
	  Fix minor memory leaks and uninitialized variables

2007-11-20 15:28  antcheva

	* [r20928] gui/src/TGFrame.cxx, gui/src/TGLayout.cxx: Fixed
	  valgrind message: Conditional jump or move depends on
	  uninitialised value(s)

2007-11-20 14:36  antcheva

	* [r20927] tutorials/gui/CPUMeter.C: From Bertrand:
	  Fixed errors reported by valgrind (slc4/ia32) and purify (win32).

2007-11-20 14:10  brun

	* [r20926] proofplayer/src/TFileMerger.cxx: In a file containing
	  TRefs read and save TProcessIDs too

2007-11-20 14:10  brun

	* [r20925] main/src/hadd.cxx: In a file containing TRefs read and
	  save TProcessIDs too

2007-11-20 13:34  antcheva

	* [r20924] gui/src/TGScrollBar.cxx: Fixed errors reported by
	  valgrind.

2007-11-20 13:27  antcheva

	* [r20923] gui/src/TGListTree.cxx: Fixed a warning on solaris.

2007-11-20 12:41  antcheva

	* [r20922] gui/src/TGColorDialog.cxx: Fixed a worning reported by
	  Solaris.

2007-11-20 12:12  brun

	* [r20921] base/src/TColor.cxx: In the TColor destructor delete the
	  static palette when all colors have been deleted.

2007-11-20 12:10  rdm

	* [r20920] etc/proof/utils/circle.sh, etc/proof/utils/proofctl.sh,
	  etc/proof/utils/proofinstall.sh: First version of PROOF install
	  and control scripts. Not yet fully operational.

2007-11-20 11:41  brun

	* [r20919] treeplayer/src/TTreeFormula.cxx: Set offset to prevent a
	  compiler warning

2007-11-20 11:21  brun

	* [r20918] asimage/src/TASImage.cxx: From Valeriy:
	  Fix a mismatch between new/malloc and free/delete

2007-11-20 11:02  brun

	* [r20917] winnt/src/TWinNTSystem.cxx: From Bertrand:
	  - Remove memory leaks reported by Purify

2007-11-20 10:02  antcheva

	* [r20915] gui/src/TGListView.cxx: From Bertrand:
	  Fixed memory leak reported by Purify.

2007-11-20 09:41  couet

	* [r20914] histpainter/src/THistPainter.cxx: - Fix a memory leak in
	  PaintContour (found by Bertrand using "purify").

2007-11-20 09:27  antcheva

	* [r20913] gui/src/TRootEmbeddedCanvas.cxx: From Bertrand:
	  Added handling TKey objects in HandleDNDdrop.

2007-11-20 09:26  antcheva

	* [r20912] gui/src/TRootCanvas.cxx: From Bertrand:
	  Added handling TKey objects in HandleDNDdrop.

2007-11-20 09:26  antcheva

	* [r20911] gui/src/TGFileBrowser.cxx: From Bertrand:
	  Implemented the Drag and drom mechanism on list tree items.

2007-11-20 09:25  antcheva

	* [r20910] gui/src/TGDNDManager.cxx: From Bertrand:
	  Increased the Window search depth.

2007-11-20 09:24  antcheva

	* [r20909] gui/inc/TGListTree.h, gui/src/TGListTree.cxx: From
	  Bertrand:
	  ImplementED drag & drop in TGListTree
	  Simple example of how to use it:
	  // add an item in a list tree
	  TGListTreeItem *itm = fListTree->AddItem(item,fname,pic,pic);
	  // to set this item as a DND source:
	  itm->SetDNDSource(kTRUE);
	  // to set this item as a DND target:
	  itm->SetDNDTarget(kTRUE);
	  
	  Changes:
	  In class TGListTreeItem:
	  New data member Int_t fDNDState with its setters and getters:
	  SetDNDSource(), SetDNDTarget(), IsDNDSource(), IsDNDTarget()
	  
	  In class TGListTree:
	  New data members:
	  TBufferFile *fBuf; // buffer used for Drag and Drop
	  TDNDdata fDNDData; // Drag and Drop data
	  Atom_t *fDNDTypeList; // handles DND types
	  TGListTreeItem *fDropItem; // item on which DND is over
	  New methods:
	  HandleDNDdrop(), HandleDNDposition(), HandleDNDenter()
	  HandleDNDleave(), GetDNDdata()
	  New signal method: DataDropped(TGListTreeItem *item, TDNDdata
	  *data);

2007-11-20 06:18  brun

	* [r20907] matrix/src/TMatrixTSparse.cxx: From Eddy:
	  Fix a bug in TMatrixTSparse<Element>::ExtractRow reported by
	  Jiajie Ling.
	  At line 408 acoln+n was used instead of acoln+nr.

2007-11-19 21:03  pcanal

	* [r20906] mathmore/inc/Math/GSLNLSMinimizer.h: Correct a typo in
	  the name of an overloaded (abstract) member functions

2007-11-19 16:19  antcheva

	* [r20904] gui/src/TGTab.cxx: From Bertrand:
	  Fixed identation.

2007-11-19 16:10  brun

	* [r20903] asimage/src/TASImage.cxx: From Ilka:
	  fix of memory leak reported by valgrind

2007-11-19 14:49  brun

	* [r20900] asimage/src/TASImage.cxx, gui/src/TGCommandPlugin.cxx,
	  gui/src/TGTextEditor.cxx,
	  win32gdk/gdk/src/gdk/win32/gdkgc-win32.c: From Bertrand:
	  - Fixes uninitialized memory reads and memory leaks reported by
	  Rational
	  Purify

2007-11-19 14:42  couet

	* [r20899] test/stressGraphics.ref: - Fixes for Mac Intel

2007-11-19 14:18  brun

	* [r20898] tree/inc/TChain.h: From Leandro:
	  Don't redefine default parameters.

2007-11-19 13:47  couet

	* [r20897] gl/src/TGLHistPainter.cxx: - Fix compilation's warning
	  on Solaris.

2007-11-19 13:43  couet

	* [r20896] graf/src/TGraphPolar.cxx: - Fix compilation's warnings
	  on Solaris.

2007-11-19 13:40  couet

	* [r20895] gl/src/TGLText.cxx: - Fix compilation's warning on
	  Solaris.

2007-11-19 13:37  rdm

	* [r20894] base/src/TROOT.cxx: From Axel:
	  fix small memory leak.

2007-11-19 13:36  couet

	* [r20893] gl/src/TGLTF3Painter.cxx: - Fix compilation's warning on
	  Solaris.

2007-11-19 13:35  couet

	* [r20892] gl/src/TGLSurfacePainter.cxx: - Fix compilation's
	  warning on Solaris.

2007-11-19 13:30  couet

	* [r20891] gl/src/TGLParametric.cxx: - Fix compilation's warning on
	  Solaris.

2007-11-19 13:23  couet

	* [r20890] gpad/src/TColorWheel.cxx: - Fix Solaris compilation's
	  warning.

2007-11-19 13:19  couet

	* [r20889] treeviewer/src/TParallelCoordVar.cxx: - Fix Solaris
	  compilation's warning.

2007-11-19 12:54  brun

	* [r20888] geom/src/TGeoManager.cxx: From Andrei:
	  Fix warning on Solaris

2007-11-19 12:08  rdm

	* [r20887] Makefile: etc/svninfo.txt was not deleted in distclean.

2007-11-19 12:08  rdm

	* [r20886] cint/Module.mk: sys/types.h and systypes.h were not
	  deleted in distclean.

2007-11-19 12:07  rdm

	* [r20885] reflex/Module.mk: G__Reflex..cxx and .h were not deleted
	  in distclean.

2007-11-19 12:06  rdm

	* [r20884] smatrix/Module.mk: G__Smatrix32.cxx and .h were not
	  deleted in distclean.

2007-11-19 11:52  rdm

	* [r20883] LICENSE, README/BUILDSYSTEM, README/COPYING.CINT,
	  README/CREDITS, README/ChangeLog-2-24, README/INSTALL,
	  README/README, README/README.ALIEN, README/README.AUTH,
	  README/README.GLOBUS, README/README.MONALISA,
	  README/README.PROOF, README/README.SELECTOR, README/cfortran.doc,
	  configure, reflex/Module.mk, reflex/build/Makefile.am,
	  reflex/doc/Makefile.am, reflex/inc/LinkDef.h,
	  reflex/inc/Makefile.am, reflex/inc/Reflex/Any.h,
	  reflex/inc/Reflex/Base.h,
	  reflex/inc/Reflex/Builder/ClassBuilder.h,
	  reflex/inc/Reflex/Builder/CollectionProxy.h,
	  reflex/inc/Reflex/Builder/DictSelection.h,
	  reflex/inc/Reflex/Builder/EnumBuilder.h,
	  reflex/inc/Reflex/Builder/FunctionBuilder.h,
	  reflex/inc/Reflex/Builder/Makefile.am,
	  reflex/inc/Reflex/Builder/NamespaceBuilder.h,
	  reflex/inc/Reflex/Builder/NewDelFunctions.h,
	  reflex/inc/Reflex/Builder/ReflexBuilder.h,
	  reflex/inc/Reflex/Builder/TypeBuilder.h,
	  reflex/inc/Reflex/Builder/TypedefBuilder.h,
	  reflex/inc/Reflex/Builder/UnionBuilder.h,
	  reflex/inc/Reflex/Builder/VariableBuilder.h,
	  reflex/inc/Reflex/Callback.h,
	  reflex/inc/Reflex/DictionaryGenerator.h,
	  reflex/inc/Reflex/Kernel.h, reflex/inc/Reflex/Makefile.am,
	  reflex/inc/Reflex/Member.h, reflex/inc/Reflex/MemberTemplate.h,
	  reflex/inc/Reflex/Object.h, reflex/inc/Reflex/PluginService.h,
	  reflex/inc/Reflex/PropertyList.h, reflex/inc/Reflex/Reflex.h,
	  reflex/inc/Reflex/Scope.h, reflex/inc/Reflex/SharedLibrary.h,
	  reflex/inc/Reflex/Tools.h, reflex/inc/Reflex/Type.h,
	  reflex/inc/Reflex/TypeTemplate.h,
	  reflex/inc/Reflex/ValueObject.h,
	  reflex/inc/Reflex/internal/InternalTools.h,
	  reflex/inc/Reflex/internal/Makefile.am,
	  reflex/inc/Reflex/internal/MemberBase.h,
	  reflex/inc/Reflex/internal/MemberTemplateImpl.h,
	  reflex/inc/Reflex/internal/MemberTemplateName.h,
	  reflex/inc/Reflex/internal/OwnedMember.h,
	  reflex/inc/Reflex/internal/OwnedMemberTemplate.h,
	  reflex/inc/Reflex/internal/OwnedPropertyList.h,
	  reflex/inc/Reflex/internal/PropertyListImpl.h,
	  reflex/inc/Reflex/internal/ScopeBase.h,
	  reflex/inc/Reflex/internal/ScopeName.h,
	  reflex/inc/Reflex/internal/TypeBase.h,
	  reflex/inc/Reflex/internal/TypeName.h,
	  reflex/inc/Reflex/internal/TypeTemplateImpl.h,
	  reflex/inc/Reflex/internal/TypeTemplateName.h,
	  reflex/python/Makefile.am, reflex/python/genreflex/Makefile.am,
	  reflex/python/genreflex/gccdemangler.py,
	  reflex/python/genreflex/gencapa.py,
	  reflex/python/genreflex/gendict.py,
	  reflex/python/genreflex/gendict06.py,
	  reflex/python/genreflex/genheader.py,
	  reflex/python/genreflex/genreflex-rootcint.py,
	  reflex/python/genreflex/genreflex.py,
	  reflex/python/genreflex/genreflex06.py,
	  reflex/python/genreflex/genrootmap.py,
	  reflex/python/genreflex/selclass.py, reflex/src/Any.cxx,
	  reflex/src/Array.cxx, reflex/src/Array.h, reflex/src/Base.cxx,
	  reflex/src/Callback.cxx, reflex/src/Class.cxx,
	  reflex/src/Class.h, reflex/src/ClassBuilder.cxx,
	  reflex/src/ClassTemplateInstance.cxx,
	  reflex/src/ClassTemplateInstance.h, reflex/src/DataMember.cxx,
	  reflex/src/DataMember.h, reflex/src/DictionaryGenerator.cxx,
	  reflex/src/Enum.cxx, reflex/src/Enum.h,
	  reflex/src/EnumBuilder.cxx, reflex/src/FuncHandler.cxx,
	  reflex/src/FuncHandler.h, reflex/src/Function.cxx,
	  reflex/src/Function.h, reflex/src/FunctionBuilder.cxx,
	  reflex/src/FunctionMember.cxx, reflex/src/FunctionMember.h,
	  reflex/src/FunctionMemberTemplateInstance.cxx,
	  reflex/src/FunctionMemberTemplateInstance.h,
	  reflex/src/Fundamental.cxx, reflex/src/Fundamental.h,
	  reflex/src/Kernel.cxx, reflex/src/Makefile.am,
	  reflex/src/Member.cxx, reflex/src/MemberBase.cxx,
	  reflex/src/MemberTemplate.cxx, reflex/src/MemberTemplateImpl.cxx,
	  reflex/src/MemberTemplateName.cxx, reflex/src/NameLookup.cxx,
	  reflex/src/NameLookup.h, reflex/src/Namespace.cxx,
	  reflex/src/Namespace.h, reflex/src/NamespaceBuilder.cxx,
	  reflex/src/Object.cxx, reflex/src/PluginFactoryMap.cxx,
	  reflex/src/PluginFactoryMap.h, reflex/src/PluginService.cxx,
	  reflex/src/Pointer.cxx, reflex/src/Pointer.h,
	  reflex/src/PointerToMember.cxx, reflex/src/PointerToMember.h,
	  reflex/src/PropertyList.cxx, reflex/src/PropertyListImpl.cxx,
	  reflex/src/Scope.cxx, reflex/src/ScopeBase.cxx,
	  reflex/src/ScopeName.cxx, reflex/src/TemplateInstance.cxx,
	  reflex/src/TemplateInstance.h, reflex/src/Tools.cxx,
	  reflex/src/Type.cxx, reflex/src/TypeBase.cxx,
	  reflex/src/TypeBuilder.cxx, reflex/src/TypeName.cxx,
	  reflex/src/TypeTemplate.cxx, reflex/src/TypeTemplateImpl.cxx,
	  reflex/src/TypeTemplateName.cxx, reflex/src/Typedef.cxx,
	  reflex/src/Typedef.h, reflex/src/TypedefBuilder.cxx,
	  reflex/src/Union.cxx, reflex/src/Union.h,
	  reflex/src/UnionBuilder.cxx, reflex/src/VariableBuilder.cxx,
	  reflex/src/dir_manip.h, reflex/src/genmap/genmap.cxx,
	  reflex/src/stl_hash.h, reflex/test/CppUnit_testdriver.cpp,
	  reflex/test/Makefile.am, reflex/test/dictionary_generator.cpp,
	  reflex/test/testDict1/Makefile.am,
	  reflex/test/testDict1/Reflex.h,
	  reflex/test/testDict2/Class2Dict.h,
	  reflex/test/testDict2/ClassA.h, reflex/test/testDict2/ClassB.h,
	  reflex/test/testDict2/ClassC.h, reflex/test/testDict2/ClassD.h,
	  reflex/test/testDict2/ClassE.h, reflex/test/testDict2/ClassF.h,
	  reflex/test/testDict2/ClassG.h, reflex/test/testDict2/ClassH.h,
	  reflex/test/testDict2/ClassI.h, reflex/test/testDict2/ClassJ.h,
	  reflex/test/testDict2/ClassK.h, reflex/test/testDict2/ClassL.h,
	  reflex/test/testDict2/ClassM.h, reflex/test/testDict2/ClassN.h,
	  reflex/test/testDict2/ClassO.h,
	  reflex/test/testDict2/ClassSelections.h,
	  reflex/test/testDict2/ClassT.h,
	  reflex/test/testDict2/Functions.h,
	  reflex/test/testDict2/InheritanceTree.txt,
	  reflex/test/testDict2/Makefile.am,
	  reflex/test/testDict2/MemberPointer.h,
	  reflex/test/testDict2/TemplatedClasses.h,
	  reflex/test/testDict2/TestClasses.h,
	  reflex/test/testPlugins/ICommon.h,
	  reflex/test/testPlugins/plugin1.cxx,
	  reflex/test/testPlugins/plugin1bis.cxx,
	  reflex/test/testPlugins/plugin2.cxx,
	  reflex/test/testPlugins/plugin3.cxx,
	  reflex/test/test_ReflexBuilder_unit.cxx,
	  reflex/test/test_Reflex_generate.cxx,
	  reflex/test/test_Reflex_lookup.cxx,
	  reflex/test/test_Reflex_plugins.cxx,
	  reflex/test/test_Reflex_simple1.cxx,
	  reflex/test/test_Reflex_simple2.cxx,
	  reflex/test/test_Reflex_unit.cxx: et property svn:eol-style LF on
	  all source and Makefiles. This should avoid
	  problems with Win32 line endings ending up in the repository. All
	  MS tools
	  support LF eols fine.

2007-11-19 11:31  rdm

	* [r20882] Makefile, alien/Module.mk, alien/inc/LinkDef.h,
	  alien/inc/TAlien.h, alien/inc/TAlienCollection.h,
	  alien/inc/TAlienDirectory.h, alien/inc/TAlienFile.h,
	  alien/inc/TAlienJDL.h, alien/inc/TAlienJob.h,
	  alien/inc/TAlienJobStatus.h, alien/inc/TAlienJobStatusList.h,
	  alien/inc/TAlienMasterJob.h, alien/inc/TAlienMasterJobStatus.h,
	  alien/inc/TAlienResult.h, alien/inc/TAlienSystem.h,
	  alien/src/TAlien.cxx, alien/src/TAlienCollection.cxx,
	  alien/src/TAlienDirectory.cxx, alien/src/TAlienFile.cxx,
	  alien/src/TAlienJDL.cxx, alien/src/TAlienJob.cxx,
	  alien/src/TAlienJobStatus.cxx, alien/src/TAlienJobStatusList.cxx,
	  alien/src/TAlienMasterJob.cxx,
	  alien/src/TAlienMasterJobStatus.cxx, alien/src/TAlienResult.cxx,
	  alien/src/TAlienSystem.cxx, asimage/Module.mk,
	  asimage/inc/LinkDef.h, asimage/inc/LinkDefGS.h,
	  asimage/inc/LinkDefGui.h, asimage/inc/TASImage.h,
	  asimage/inc/TASImagePlugin.h, asimage/inc/TASPaletteEditor.h,
	  asimage/inc/TASPluginGS.h, asimage/src/TASImage.cxx,
	  asimage/src/TASPaletteEditor.cxx, asimage/src/TASPluginGS.cxx,
	  asimage/src/TASPolyUtils.c, auth/Module.mk, auth/inc/AFSAuth.h,
	  auth/inc/AFSAuthTypes.h, auth/inc/AuthConst.h,
	  auth/inc/DaemonUtils.h, auth/inc/LinkDefAFS.h,
	  auth/inc/LinkDefRoot.h, auth/inc/TAFS.h,
	  auth/inc/TAuthenticate.h, auth/inc/THostAuth.h,
	  auth/inc/TRootAuth.h, auth/inc/TRootSecContext.h,
	  auth/inc/rsaaux.h, auth/inc/rsadef.h, auth/inc/rsafun.h,
	  auth/inc/rsalib.h, auth/src/AFSAuth.cxx,
	  auth/src/DaemonUtils.cxx, auth/src/TAFS.cxx,
	  auth/src/TAuthenticate.cxx, auth/src/THostAuth.cxx,
	  auth/src/TRootAuth.cxx, auth/src/TRootSecContext.cxx,
	  auth/src/rsaaux.cxx, auth/src/rsafun.cxx, auth/src/rsalib.cxx,
	  build/Module.mk, build/package/lib/makebuilddepend.sh,
	  build/package/lib/makedebdir.sh, build/package/lib/makelists.sh,
	  build/package/lib/makerpmspec.sh, build/package/msi/makemsi.cxx,
	  build/package/msi/makemsi.sh, build/rmkdepend/cppsetup.c,
	  build/rmkdepend/def.h, build/rmkdepend/ifparser.c,
	  build/rmkdepend/ifparser.h, build/rmkdepend/imakemdep.h,
	  build/rmkdepend/include.c, build/rmkdepend/main.c,
	  build/rmkdepend/mainroot.cxx, build/rmkdepend/parse.c,
	  build/rmkdepend/pr.c, build/unix/compiledata.sh,
	  build/unix/distfilelist.sh, build/unix/importcint.sh,
	  build/unix/makechangelog.sh, build/unix/makecintdll.sh,
	  build/unix/makedist.sh, build/unix/makedistsrc.sh,
	  build/unix/makehtml.sh, build/unix/makelib.sh,
	  build/unix/makeloghtml.sh, build/unix/makestatic.sh,
	  build/unix/makeversion.sh, build/unix/reconfigure.sh,
	  build/unix/svn2cl.sh, build/unix/svninfo.sh,
	  build/unix/wingcc_ld.sh, build/version.cxx,
	  build/win/bindexplib/bindexplib.cxx, build/win/compiledata.sh,
	  build/win/f77.sh, build/win/ld.sh, build/win/makelib.sh,
	  build/win/w32pragma.h, castor/Module.mk, castor/inc/LinkDef.h,
	  castor/inc/TCastorFile.h, castor/src/TCastorFile.cxx,
	  chirp/Module.mk, chirp/inc/LinkDef.h, chirp/inc/TChirpFile.h,
	  chirp/src/TChirpFile.cxx, cintex/Module.mk,
	  cintex/inc/Cintex/Cintex.h, cintex/inc/LinkDef.h,
	  cintex/python/PyCintex.py, cintex/src/CINTClassBuilder.cxx,
	  cintex/src/CINTClassBuilder.h, cintex/src/CINTEnumBuilder.cxx,
	  cintex/src/CINTEnumBuilder.h, cintex/src/CINTFunctionBuilder.cxx,
	  cintex/src/CINTFunctionBuilder.h, cintex/src/CINTFunctional.cxx,
	  cintex/src/CINTFunctional.h, cintex/src/CINTScopeBuilder.cxx,
	  cintex/src/CINTScopeBuilder.h, cintex/src/CINTSourceFile.h,
	  cintex/src/CINTTypedefBuilder.cxx,
	  cintex/src/CINTTypedefBuilder.h, cintex/src/CINTUtils.cxx,
	  cintex/src/CINTVariableBuilder.cxx,
	  cintex/src/CINTVariableBuilder.h, cintex/src/CINTdefs.h,
	  cintex/src/Cintex.cxx, cintex/src/ROOTClassEnhancer.cxx,
	  cintex/src/ROOTClassEnhancer.h, cintex/test/dict/CintexTest.h,
	  cintex/test/test_Cintex.C, cintex/test/test_Persistency.C,
	  cintex/test/test_PyCintex_basics.py, cintex/test/test_all.sh,
	  clarens/Module.mk, clarens/inc/LinkDef.h, clarens/inc/TClProxy.h,
	  clarens/inc/TClSession.h, clarens/inc/TClarens.h,
	  clarens/inc/TEcho.h, clarens/inc/TGM.h, clarens/inc/TLM.h,
	  clarens/inc/TSAM.h, clarens/inc/TXmlRpc.h,
	  clarens/src/TClProxy.cxx, clarens/src/TClSession.cxx,
	  clarens/src/TClarens.cxx, clarens/src/TEcho.cxx,
	  clarens/src/TGM.cxx, clarens/src/TLM.cxx, clarens/src/TSAM.cxx,
	  clarens/src/TXmlRpc.cxx, clib/Module.mk, clib/inc/Demangle.h,
	  clib/inc/Getline.h, clib/inc/LinkDef.h, clib/inc/mmalloc.h,
	  clib/inc/mmconfig.h, clib/inc/mmprivate.h, clib/inc/snprintf.h,
	  clib/src/Demangle.c, clib/src/Getline.c, clib/src/attach.c,
	  clib/src/detach.c, clib/src/getpagesize.c, clib/src/keys.c,
	  clib/src/mcalloc.c, clib/src/mfree.c, clib/src/mmalloc.c,
	  clib/src/mmapsup.c, clib/src/mmcheck.c, clib/src/mmemalign.c,
	  clib/src/mmstats.c, clib/src/mmtrace.c, clib/src/mrealloc.c,
	  clib/src/mvalloc.c, clib/src/sbrksup.c, clib/src/snprintf.c,
	  config/Makefile.aix, config/Makefile.aix5,
	  config/Makefile.aixgcc, config/Makefile.alphacxx6,
	  config/Makefile.alphagcc, config/Makefile.alphakcc,
	  config/Makefile.depend, config/Makefile.freebsd4,
	  config/Makefile.freebsd5, config/Makefile.hpuxacc,
	  config/Makefile.hpuxgcc, config/Makefile.hpuxia64acc,
	  config/Makefile.hurddeb, config/Makefile.in,
	  config/Makefile.linux, config/Makefile.linuxalphagcc,
	  config/Makefile.linuxarm, config/Makefile.linuxdeb2ppc,
	  config/Makefile.linuxia64ecc, config/Makefile.linuxia64gcc,
	  config/Makefile.linuxia64sgi, config/Makefile.linuxicc,
	  config/Makefile.linuxkcc, config/Makefile.linuxpgcc,
	  config/Makefile.linuxppc64gcc, config/Makefile.linuxppcgcc,
	  config/Makefile.linuxx8664gcc, config/Makefile.linuxx8664icc,
	  config/Makefile.lynxos, config/Makefile.macosx,
	  config/Makefile.macosx64, config/Makefile.macosxicc,
	  config/Makefile.macosxxlc, config/Makefile.openbsd,
	  config/Makefile.precomp, config/Makefile.sgicc,
	  config/Makefile.sgicc64, config/Makefile.sgikcc,
	  config/Makefile.sgin32gcc, config/Makefile.solaris,
	  config/Makefile.solarisCC5, config/Makefile.solarisgcc,
	  config/Makefile.solariskcc, config/Makefile.win32,
	  config/Makefile.win32gcc, config/thisroot.sh, cont/Module.mk,
	  cont/doc/index.txt, cont/inc/LinkDef.h, cont/inc/TArray.h,
	  cont/inc/TArrayC.h, cont/inc/TArrayD.h, cont/inc/TArrayF.h,
	  cont/inc/TArrayI.h, cont/inc/TArrayL.h, cont/inc/TArrayL64.h,
	  cont/inc/TArrayS.h, cont/inc/TBits.h, cont/inc/TBtree.h,
	  cont/inc/TClassTable.h, cont/inc/TClonesArray.h,
	  cont/inc/TCollection.h, cont/inc/TCollectionProxyInfo.h,
	  cont/inc/TExMap.h, cont/inc/THashList.h, cont/inc/THashTable.h,
	  cont/inc/TIterator.h, cont/inc/TList.h, cont/inc/TMap.h,
	  cont/inc/TObjArray.h, cont/inc/TObjectTable.h,
	  cont/inc/TOrdCollection.h, cont/inc/TRefArray.h,
	  cont/inc/TRefTable.h, cont/inc/TSeqCollection.h,
	  cont/inc/TSortedList.h, cont/inc/TVirtualCollectionProxy.h,
	  cont/src/TArray.cxx, cont/src/TArrayC.cxx, cont/src/TArrayD.cxx,
	  cont/src/TArrayF.cxx, cont/src/TArrayI.cxx, cont/src/TArrayL.cxx,
	  cont/src/TArrayL64.cxx, cont/src/TArrayS.cxx, cont/src/TBits.cxx,
	  cont/src/TBtree.cxx, cont/src/TClassTable.cxx,
	  cont/src/TClonesArray.cxx, cont/src/TCollection.cxx,
	  cont/src/TExMap.cxx, cont/src/THashList.cxx,
	  cont/src/THashTable.cxx, cont/src/TIterator.cxx,
	  cont/src/TList.cxx, cont/src/TMap.cxx, cont/src/TObjArray.cxx,
	  cont/src/TObjectTable.cxx, cont/src/TOrdCollection.cxx,
	  cont/src/TRefArray.cxx, cont/src/TRefTable.cxx,
	  cont/src/TSeqCollection.cxx, cont/src/TSortedList.cxx,
	  dcache/Module.mk, dcache/inc/LinkDef.h, dcache/inc/TDCacheFile.h,
	  dcache/src/TDCacheFile.cxx, eg/Module.mk, eg/inc/Hepevt.h,
	  eg/inc/LinkDef.h, eg/inc/TAttParticle.h, eg/inc/TDatabasePDG.h,
	  eg/inc/TDecayChannel.h, eg/inc/TGenerator.h, eg/inc/TParticle.h,
	  eg/inc/TParticleClassPDG.h, eg/inc/TParticlePDG.h,
	  eg/inc/TPrimary.h, eg/inc/TVirtualMCDecayer.h, eg/inc/cfortran.h,
	  eg/src/TAttParticle.cxx, eg/src/TDatabasePDG.cxx,
	  eg/src/TDecayChannel.cxx, eg/src/TGenerator.cxx,
	  eg/src/TParticle.cxx, eg/src/TParticleClassPDG.cxx,
	  eg/src/TParticlePDG.cxx, eg/src/TPrimary.cxx,
	  eg/src/TVirtualMCDecayer.cxx, etc/RadioNuclides.txt,
	  etc/gdb-backtrace.sh, etc/pdg_table.txt,
	  etc/plugins/ROOT@@Math@@VirtualIntegrator/P010_GSLIntegrator.C,
	  etc/plugins/ROOT@@Math@@VirtualIntegrator/P020_GSLMCIntegrator.C,
	  etc/plugins/TAFS/P010_TAFS.C,
	  etc/plugins/TApplication/P010_TApplicationRemote.C,
	  etc/plugins/TApplication/P020_TApplicationServer.C,
	  etc/plugins/TArchiveFile/P010_TZIPFile.C,
	  etc/plugins/TBrowserImp/P010_TRootBrowser.C,
	  etc/plugins/TBrowserImp/P020_TRootBrowserLite.C,
	  etc/plugins/TChain/P010_TProofChain.C,
	  etc/plugins/TDataProgressDialog/P010_TDataProgressDialog.C,
	  etc/plugins/TFile/P010_TWebFile.C,
	  etc/plugins/TFile/P020_TRFIOFile.C,
	  etc/plugins/TFile/P030_TCastorFile.C,
	  etc/plugins/TFile/P040_TDCacheFile.C,
	  etc/plugins/TFile/P050_TGFALFile.C,
	  etc/plugins/TFile/P060_TChirpFile.C,
	  etc/plugins/TFile/P070_TAlienFile.C,
	  etc/plugins/TFile/P080_TXMLFile.C,
	  etc/plugins/TFile/P090_TSQLFile.C,
	  etc/plugins/TFile/P100_TXNetFile.C,
	  etc/plugins/TFileDrawMap/P010_TFileDrawMap.C,
	  etc/plugins/TFileStager/P010_TXNetFileStager.C,
	  etc/plugins/TFitEditor/P010_TFitEditor.C,
	  etc/plugins/TGLHistPainter/P010_TGLHistPainter.C,
	  etc/plugins/TGLManager/P010_TX11GLManager.C,
	  etc/plugins/TGLManager/P020_TGWin32GLManager.C,
	  etc/plugins/TGPasswdDialog/P010_TGPasswdDialog.C,
	  etc/plugins/TGeoManagerEditor/P010_TGeoManagerEditor.C,
	  etc/plugins/TGrid/P010_TAlien.C,
	  etc/plugins/TGuiBuilder/P010_TRootGuiBuilder.C,
	  etc/plugins/TGuiFactory/P010_TRootGuiFactory.C,
	  etc/plugins/TGuiFactory/P020_TQtRootGuiFactory.C,
	  etc/plugins/TImage/P010_TASImage.C,
	  etc/plugins/TImagePlugin/P010_TASPluginGS.C,
	  etc/plugins/TMinuitGraph/P010_TGraph.C,
	  etc/plugins/TPaletteEditor/P010_TASPaletteEditor.C,
	  etc/plugins/TProof/P010_TProofCondor.C,
	  etc/plugins/TProof/P020_TProofSuperMaster.C,
	  etc/plugins/TProof/P030_TProofPEAC.C,
	  etc/plugins/TProof/P040_TProof.C,
	  etc/plugins/TProofMgr/P010_TXProofMgr.C,
	  etc/plugins/TProofProgressDialog/P010_TProofProgressDialog.C,
	  etc/plugins/TProofServ/P010_TXProofServ.C,
	  etc/plugins/TSQLServer/P010_TMySQLServer.C,
	  etc/plugins/TSQLServer/P020_TPgSQLServer.C,
	  etc/plugins/TSQLServer/P030_TSapDBServer.C,
	  etc/plugins/TSQLServer/P040_TOracleServer.C,
	  etc/plugins/TSQLServer/P050_TODBCServer.C,
	  etc/plugins/TSessionViewer/P010_TSessionViewer.C,
	  etc/plugins/TSlave/P010_TXSlave.C,
	  etc/plugins/TSystem/P010_TRFIOSystem.C,
	  etc/plugins/TSystem/P020_TDCacheSystem.C,
	  etc/plugins/TSystem/P030_TAlienSystem.C,
	  etc/plugins/TSystem/P040_TXNetSystem.C,
	  etc/plugins/TView/P010_TView3D.C,
	  etc/plugins/TViewerX3D/P010_TViewerX3D.C,
	  etc/plugins/TViewerX3D/P020_TQtViewerX3D.C,
	  etc/plugins/TVirtualAuth/P010_TRootAuth.C,
	  etc/plugins/TVirtualDragManager/P010_TGuiBldDragManager.C,
	  etc/plugins/TVirtualFFT/P010_TFFTComplex.C,
	  etc/plugins/TVirtualFFT/P020_TFFTComplexReal.C,
	  etc/plugins/TVirtualFFT/P030_TFFTRealComplex.C,
	  etc/plugins/TVirtualFFT/P040_TFFTReal.C,
	  etc/plugins/TVirtualFitter/P010_TFitter.C,
	  etc/plugins/TVirtualFitter/P020_TFumili.C,
	  etc/plugins/TVirtualFitter/P030_TFitterMinuit.C,
	  etc/plugins/TVirtualFitter/P040_TFitterFumili.C,
	  etc/plugins/TVirtualGLImp/P010_TX11GL.C,
	  etc/plugins/TVirtualGLImp/P020_TGWin32GL.C,
	  etc/plugins/TVirtualGeoPainter/P010_TGeoPainter.C,
	  etc/plugins/TVirtualHistPainter/P010_THistPainter.C,
	  etc/plugins/TVirtualMonitoringWriter/P010_TMonaLisaWriter.C,
	  etc/plugins/TVirtualMonitoringWriter/P020_TSQLMonitoringWriter.C,
	  etc/plugins/TVirtualPS/P010_TPostScript.C,
	  etc/plugins/TVirtualPS/P020_TSVG.C,
	  etc/plugins/TVirtualPS/P030_TPDF.C,
	  etc/plugins/TVirtualPS/P040_TImageDump.C,
	  etc/plugins/TVirtualPad/P010_TPad.C,
	  etc/plugins/TVirtualPadEditor/P010_TGedEditor.C,
	  etc/plugins/TVirtualProofPlayer/P010_TProofPlayer.C,
	  etc/plugins/TVirtualProofPlayer/P020_TProofPlayerRemote.C,
	  etc/plugins/TVirtualProofPlayer/P030_TProofPlayerLocal.C,
	  etc/plugins/TVirtualProofPlayer/P040_TProofPlayerSlave.C,
	  etc/plugins/TVirtualProofPlayer/P050_TProofPlayerSuperMaster.C,
	  etc/plugins/TVirtualStreamerInfo/P010_TStreamerInfo.C,
	  etc/plugins/TVirtualTreePlayer/P010_TTreePlayer.C,
	  etc/plugins/TVirtualTreeViewer/P010_TTreeViewer.C,
	  etc/plugins/TVirtualViewer3D/P010_TViewerX3D.C,
	  etc/plugins/TVirtualViewer3D/P020_TGLSAViewer.C,
	  etc/plugins/TVirtualViewer3D/P030_TGLViewer.C,
	  etc/plugins/TVirtualX/P010_TGX11.C,
	  etc/plugins/TVirtualX/P020_TGX11TTF.C,
	  etc/plugins/TVirtualX/P030_TGWin32.C,
	  etc/plugins/TVirtualX/P040_TGQt.C, etc/vmc/MakeExe,
	  etc/vmc/MakeMacros, etc/vmc/MakeRules, etc/vmc/Makedepend,
	  fftw/Module.mk, fftw/inc/LinkDef.h, fftw/inc/TFFTComplex.h,
	  fftw/inc/TFFTComplexReal.h, fftw/inc/TFFTReal.h,
	  fftw/inc/TFFTRealComplex.h, fftw/src/TFFTComplex.cxx,
	  fftw/src/TFFTComplexReal.cxx, fftw/src/TFFTReal.cxx,
	  fftw/src/TFFTRealComplex.cxx, fitpanel/Module.mk,
	  fitpanel/inc/LinkDef.h, fitpanel/inc/TFitEditor.h,
	  fitpanel/inc/TFitParametersDialog.h, fitpanel/src/TFitEditor.cxx,
	  fitpanel/src/TFitParametersDialog.cxx, foam/Module.mk,
	  foam/doc/index.txt, foam/inc/LinkDef.h, foam/inc/TFoam.h,
	  foam/inc/TFoamCell.h, foam/inc/TFoamIntegrand.h,
	  foam/inc/TFoamMaxwt.h, foam/inc/TFoamVect.h, foam/src/TFoam.cxx,
	  foam/src/TFoamCell.cxx, foam/src/TFoamIntegrand.cxx,
	  foam/src/TFoamMaxwt.cxx, foam/src/TFoamVect.cxx,
	  freetype/Module.mk, ftgl/Module.mk, ftgl/inc/FTBBox.h,
	  ftgl/inc/FTBitmapGlyph.h, ftgl/inc/FTCharToGlyphIndexMap.h,
	  ftgl/inc/FTCharmap.h, ftgl/inc/FTContour.h,
	  ftgl/inc/FTExtrdGlyph.h, ftgl/inc/FTFace.h, ftgl/inc/FTFont.h,
	  ftgl/inc/FTGL.h, ftgl/inc/FTGLBitmapFont.h,
	  ftgl/inc/FTGLExtrdFont.h, ftgl/inc/FTGLOutlineFont.h,
	  ftgl/inc/FTGLPixmapFont.h, ftgl/inc/FTGLPolygonFont.h,
	  ftgl/inc/FTGLTextureFont.h, ftgl/inc/FTGlyph.h,
	  ftgl/inc/FTGlyphContainer.h, ftgl/inc/FTLibrary.h,
	  ftgl/inc/FTList.h, ftgl/inc/FTOutlineGlyph.h,
	  ftgl/inc/FTPixmapGlyph.h, ftgl/inc/FTPoint.h,
	  ftgl/inc/FTPolyGlyph.h, ftgl/inc/FTSize.h,
	  ftgl/inc/FTTextureGlyph.h, ftgl/inc/FTVector.h,
	  ftgl/inc/FTVectoriser.h, ftgl/src/FTBitmapGlyph.cxx,
	  ftgl/src/FTCharmap.cxx, ftgl/src/FTContour.cxx,
	  ftgl/src/FTExtrdGlyph.cxx, ftgl/src/FTFace.cxx,
	  ftgl/src/FTFont.cxx, ftgl/src/FTGLBitmapFont.cxx,
	  ftgl/src/FTGLExtrdFont.cxx, ftgl/src/FTGLOutlineFont.cxx,
	  ftgl/src/FTGLPixmapFont.cxx, ftgl/src/FTGLPolygonFont.cxx,
	  ftgl/src/FTGLTextureFont.cxx, ftgl/src/FTGlyph.cxx,
	  ftgl/src/FTGlyphContainer.cxx, ftgl/src/FTLibrary.cxx,
	  ftgl/src/FTOutlineGlyph.cxx, ftgl/src/FTPixmapGlyph.cxx,
	  ftgl/src/FTPoint.cxx, ftgl/src/FTPolyGlyph.cxx,
	  ftgl/src/FTSize.cxx, ftgl/src/FTTextureGlyph.cxx,
	  ftgl/src/FTVectoriser.cxx, fumili/Module.mk,
	  fumili/inc/LinkDef.h, fumili/inc/TFumili.h,
	  fumili/src/TFumili.cxx, g3d/Module.mk, g3d/inc/LinkDef.h,
	  g3d/inc/TAxis3D.h, g3d/inc/TBRIK.h, g3d/inc/TCONE.h,
	  g3d/inc/TCONS.h, g3d/inc/TCTUB.h, g3d/inc/TELTU.h,
	  g3d/inc/TGTRA.h, g3d/inc/TGeometry.h, g3d/inc/THYPE.h,
	  g3d/inc/THelix.h, g3d/inc/TMarker3DBox.h, g3d/inc/TMaterial.h,
	  g3d/inc/TMixture.h, g3d/inc/TNode.h, g3d/inc/TNodeDiv.h,
	  g3d/inc/TPARA.h, g3d/inc/TPCON.h, g3d/inc/TPGON.h,
	  g3d/inc/TPointSet3D.h, g3d/inc/TPoints3DABC.h,
	  g3d/inc/TPolyLine3D.h, g3d/inc/TPolyMarker3D.h,
	  g3d/inc/TRotMatrix.h, g3d/inc/TSPHE.h, g3d/inc/TShape.h,
	  g3d/inc/TTRAP.h, g3d/inc/TTRD1.h, g3d/inc/TTRD2.h,
	  g3d/inc/TTUBE.h, g3d/inc/TTUBS.h, g3d/inc/TView3D.h,
	  g3d/inc/TXTRU.h, g3d/inc/X3DBuffer.h, g3d/inc/X3DDefs.h,
	  g3d/src/TAxis3D.cxx, g3d/src/TBRIK.cxx, g3d/src/TCONE.cxx,
	  g3d/src/TCONS.cxx, g3d/src/TCTUB.cxx, g3d/src/TELTU.cxx,
	  g3d/src/TGTRA.cxx, g3d/src/TGeometry.cxx, g3d/src/THYPE.cxx,
	  g3d/src/THelix.cxx, g3d/src/TMarker3DBox.cxx,
	  g3d/src/TMaterial.cxx, g3d/src/TMixture.cxx, g3d/src/TNode.cxx,
	  g3d/src/TNodeDiv.cxx, g3d/src/TPARA.cxx, g3d/src/TPCON.cxx,
	  g3d/src/TPGON.cxx, g3d/src/TPointSet3D.cxx,
	  g3d/src/TPoints3DABC.cxx, g3d/src/TPolyLine3D.cxx,
	  g3d/src/TPolyMarker3D.cxx, g3d/src/TRotMatrix.cxx,
	  g3d/src/TSPHE.cxx, g3d/src/TShape.cxx, g3d/src/TTRAP.cxx,
	  g3d/src/TTRD1.cxx, g3d/src/TTRD2.cxx, g3d/src/TTUBE.cxx,
	  g3d/src/TTUBS.cxx, g3d/src/TView3D.cxx, g3d/src/TXTRU.cxx,
	  g3d/src/X3DBuffer.c, g4root/Module.mk, g4root/g4libs.C,
	  g4root/inc/LinkDef.h, g4root/inc/TG4RootDetectorConstruction.h,
	  g4root/inc/TG4RootNavMgr.h, g4root/inc/TG4RootNavigator.h,
	  g4root/inc/TG4RootSolid.h,
	  g4root/src/TG4RootDetectorConstruction.cxx,
	  g4root/src/TG4RootNavMgr.cxx, g4root/src/TG4RootNavigator.cxx,
	  g4root/src/TG4RootSolid.cxx, g4root/test/drawTracks.C,
	  g4root/test/exN06/Makefile, gdml/Module.mk, gdml/ROOTwriter.py,
	  gdml/inc/LinkDef.h, gdml/inc/TGDMLParse.h,
	  gdml/src/TGDMLParse.cxx, gdml/writer.py, ged/Module.mk,
	  ged/inc/HelpSMText.h, ged/inc/LinkDef.h, ged/inc/TArrowEditor.h,
	  ged/inc/TAttFillEditor.h, ged/inc/TAttLineEditor.h,
	  ged/inc/TAttMarkerEditor.h, ged/inc/TAttTextEditor.h,
	  ged/inc/TAxisEditor.h, ged/inc/TCurlyArcEditor.h,
	  ged/inc/TCurlyLineEditor.h, ged/inc/TF1Editor.h,
	  ged/inc/TFrameEditor.h, ged/inc/TFunctionParametersDialog.h,
	  ged/inc/TGedEditor.h, ged/inc/TGedFrame.h,
	  ged/inc/TGedMarkerSelect.h, ged/inc/TGedPatternSelect.h,
	  ged/inc/TGraphEditor.h, ged/inc/TH1Editor.h, ged/inc/TH2Editor.h,
	  ged/inc/TLineEditor.h, ged/inc/TPadEditor.h,
	  ged/inc/TPaveStatsEditor.h, ged/inc/TStyleDialog.h,
	  ged/inc/TStyleManager.h, ged/inc/TStylePreview.h,
	  ged/src/HelpSMText.cxx, ged/src/TArrowEditor.cxx,
	  ged/src/TAttFillEditor.cxx, ged/src/TAttLineEditor.cxx,
	  ged/src/TAttMarkerEditor.cxx, ged/src/TAttTextEditor.cxx,
	  ged/src/TAxisEditor.cxx, ged/src/TCurlyArcEditor.cxx,
	  ged/src/TCurlyLineEditor.cxx, ged/src/TF1Editor.cxx,
	  ged/src/TFrameEditor.cxx, ged/src/TFunctionParametersDialog.cxx,
	  ged/src/TGedEditor.cxx, ged/src/TGedFrame.cxx,
	  ged/src/TGedMarkerSelect.cxx, ged/src/TGedPatternSelect.cxx,
	  ged/src/TGraphEditor.cxx, ged/src/TH1Editor.cxx,
	  ged/src/TH2Editor.cxx, ged/src/TLineEditor.cxx,
	  ged/src/TPadEditor.cxx, ged/src/TPaveStatsEditor.cxx,
	  ged/src/TStyleDialog.cxx, ged/src/TStyleManager.cxx,
	  ged/src/TStylePreview.cxx, geom/Module.mk, geom/doc/index.txt,
	  geom/inc/LinkDef1.h, geom/inc/LinkDef2.h, geom/inc/TGeoArb8.h,
	  geom/inc/TGeoAtt.h, geom/inc/TGeoBBox.h, geom/inc/TGeoBoolNode.h,
	  geom/inc/TGeoBuilder.h, geom/inc/TGeoCache.h,
	  geom/inc/TGeoCompositeShape.h, geom/inc/TGeoCone.h,
	  geom/inc/TGeoElement.h, geom/inc/TGeoEltu.h,
	  geom/inc/TGeoHalfSpace.h, geom/inc/TGeoHelix.h,
	  geom/inc/TGeoHype.h, geom/inc/TGeoManager.h,
	  geom/inc/TGeoMaterial.h, geom/inc/TGeoMatrix.h,
	  geom/inc/TGeoMedium.h, geom/inc/TGeoNavigator.h,
	  geom/inc/TGeoNode.h, geom/inc/TGeoPara.h,
	  geom/inc/TGeoParaboloid.h, geom/inc/TGeoPatternFinder.h,
	  geom/inc/TGeoPcon.h, geom/inc/TGeoPgon.h,
	  geom/inc/TGeoPhysicalNode.h, geom/inc/TGeoPolygon.h,
	  geom/inc/TGeoScaledShape.h, geom/inc/TGeoShape.h,
	  geom/inc/TGeoShapeAssembly.h, geom/inc/TGeoSphere.h,
	  geom/inc/TGeoTorus.h, geom/inc/TGeoTrd1.h, geom/inc/TGeoTrd2.h,
	  geom/inc/TGeoTube.h, geom/inc/TGeoVolume.h,
	  geom/inc/TGeoVoxelFinder.h, geom/inc/TGeoXtru.h,
	  geom/inc/TVirtualGeoPainter.h, geom/inc/TVirtualGeoTrack.h,
	  geom/src/TGeoArb8.cxx, geom/src/TGeoAtt.cxx,
	  geom/src/TGeoBBox.cxx, geom/src/TGeoBoolNode.cxx,
	  geom/src/TGeoBuilder.cxx, geom/src/TGeoCache.cxx,
	  geom/src/TGeoCompositeShape.cxx, geom/src/TGeoCone.cxx,
	  geom/src/TGeoElement.cxx, geom/src/TGeoEltu.cxx,
	  geom/src/TGeoHalfSpace.cxx, geom/src/TGeoHelix.cxx,
	  geom/src/TGeoHype.cxx, geom/src/TGeoManager.cxx,
	  geom/src/TGeoMaterial.cxx, geom/src/TGeoMatrix.cxx,
	  geom/src/TGeoMedium.cxx, geom/src/TGeoNavigator.cxx,
	  geom/src/TGeoNode.cxx, geom/src/TGeoPara.cxx,
	  geom/src/TGeoParaboloid.cxx, geom/src/TGeoPatternFinder.cxx,
	  geom/src/TGeoPcon.cxx, geom/src/TGeoPgon.cxx,
	  geom/src/TGeoPhysicalNode.cxx, geom/src/TGeoPolygon.cxx,
	  geom/src/TGeoScaledShape.cxx, geom/src/TGeoShape.cxx,
	  geom/src/TGeoShapeAssembly.cxx, geom/src/TGeoSphere.cxx,
	  geom/src/TGeoTorus.cxx, geom/src/TGeoTrd1.cxx,
	  geom/src/TGeoTrd2.cxx, geom/src/TGeoTube.cxx,
	  geom/src/TGeoVolume.cxx, geom/src/TGeoVoxelFinder.cxx,
	  geom/src/TGeoXtru.cxx, geom/src/TVirtualGeoPainter.cxx,
	  geom/src/TVirtualGeoTrack.cxx, geombuilder/Module.mk,
	  geombuilder/inc/LinkDef.h, geombuilder/inc/TGeoBBoxEditor.h,
	  geombuilder/inc/TGeoConeEditor.h,
	  geombuilder/inc/TGeoEltuEditor.h, geombuilder/inc/TGeoGedFrame.h,
	  geombuilder/inc/TGeoHypeEditor.h,
	  geombuilder/inc/TGeoManagerEditor.h,
	  geombuilder/inc/TGeoMaterialEditor.h,
	  geombuilder/inc/TGeoMatrixEditor.h,
	  geombuilder/inc/TGeoMediumEditor.h,
	  geombuilder/inc/TGeoNodeEditor.h,
	  geombuilder/inc/TGeoParaEditor.h,
	  geombuilder/inc/TGeoPconEditor.h,
	  geombuilder/inc/TGeoPgonEditor.h,
	  geombuilder/inc/TGeoSphereEditor.h,
	  geombuilder/inc/TGeoTabManager.h,
	  geombuilder/inc/TGeoTorusEditor.h,
	  geombuilder/inc/TGeoTrapEditor.h,
	  geombuilder/inc/TGeoTrd1Editor.h,
	  geombuilder/inc/TGeoTrd2Editor.h,
	  geombuilder/inc/TGeoTubeEditor.h,
	  geombuilder/inc/TGeoVolumeEditor.h,
	  geombuilder/src/TGeoBBoxEditor.cxx,
	  geombuilder/src/TGeoConeEditor.cxx,
	  geombuilder/src/TGeoEltuEditor.cxx,
	  geombuilder/src/TGeoGedFrame.cxx,
	  geombuilder/src/TGeoHypeEditor.cxx,
	  geombuilder/src/TGeoManagerEditor.cxx,
	  geombuilder/src/TGeoMaterialEditor.cxx,
	  geombuilder/src/TGeoMatrixEditor.cxx,
	  geombuilder/src/TGeoMediumEditor.cxx,
	  geombuilder/src/TGeoNodeEditor.cxx,
	  geombuilder/src/TGeoParaEditor.cxx,
	  geombuilder/src/TGeoPconEditor.cxx,
	  geombuilder/src/TGeoPgonEditor.cxx,
	  geombuilder/src/TGeoSphereEditor.cxx,
	  geombuilder/src/TGeoTabManager.cxx,
	  geombuilder/src/TGeoTorusEditor.cxx,
	  geombuilder/src/TGeoTrapEditor.cxx,
	  geombuilder/src/TGeoTrd1Editor.cxx,
	  geombuilder/src/TGeoTrd2Editor.cxx,
	  geombuilder/src/TGeoTubeEditor.cxx,
	  geombuilder/src/TGeoVolumeEditor.cxx, geompainter/Module.mk,
	  geompainter/inc/LinkDef.h, geompainter/inc/TGeoChecker.h,
	  geompainter/inc/TGeoOverlap.h, geompainter/inc/TGeoPainter.h,
	  geompainter/inc/TGeoTrack.h, geompainter/src/TGeoChecker.cxx,
	  geompainter/src/TGeoOverlap.cxx, geompainter/src/TGeoPainter.cxx,
	  geompainter/src/TGeoTrack.cxx, gfal/Module.mk,
	  gfal/inc/LinkDef.h, gfal/inc/TGFALFile.h, gfal/src/TGFALFile.cxx,
	  gl/Module.mk, gl/inc/CsgOps.h, gl/inc/LinkDef.h,
	  gl/inc/TArcBall.h, gl/inc/TF2GL.h, gl/inc/TGLAdapter.h,
	  gl/inc/TGLAxis.h, gl/inc/TGLBoundingBox.h,
	  gl/inc/TGLBoxPainter.h, gl/inc/TGLCamera.h, gl/inc/TGLClip.h,
	  gl/inc/TGLClipSetEditor.h, gl/inc/TGLContext.h,
	  gl/inc/TGLContextPrivate.h, gl/inc/TGLCylinder.h,
	  gl/inc/TGLFaceSet.h, gl/inc/TGLFormat.h, gl/inc/TGLHistPainter.h,
	  gl/inc/TGLIncludes.h, gl/inc/TGLLegoPainter.h,
	  gl/inc/TGLLightSet.h, gl/inc/TGLLightSetEditor.h,
	  gl/inc/TGLLockable.h, gl/inc/TGLLogicalShape.h,
	  gl/inc/TGLManip.h, gl/inc/TGLManipSet.h, gl/inc/TGLObject.h,
	  gl/inc/TGLOrthoCamera.h, gl/inc/TGLOutput.h, gl/inc/TGLOverlay.h,
	  gl/inc/TGLPShapeObj.h, gl/inc/TGLPShapeObjEditor.h,
	  gl/inc/TGLPShapeRef.h, gl/inc/TGLParametric.h,
	  gl/inc/TGLParametricEquationGL.h, gl/inc/TGLPerspectiveCamera.h,
	  gl/inc/TGLPhysicalShape.h, gl/inc/TGLPlotBox.h,
	  gl/inc/TGLPlotPainter.h, gl/inc/TGLPolyLine.h,
	  gl/inc/TGLPolyMarker.h, gl/inc/TGLQuadric.h, gl/inc/TGLRnrCtx.h,
	  gl/inc/TGLRotateManip.h, gl/inc/TGLSAFrame.h,
	  gl/inc/TGLSAViewer.h, gl/inc/TGLScaleManip.h, gl/inc/TGLScene.h,
	  gl/inc/TGLSceneBase.h, gl/inc/TGLSceneInfo.h,
	  gl/inc/TGLScenePad.h, gl/inc/TGLSelectBuffer.h,
	  gl/inc/TGLSelectRecord.h, gl/inc/TGLSphere.h,
	  gl/inc/TGLStopwatch.h, gl/inc/TGLSurfacePainter.h,
	  gl/inc/TGLTF3Painter.h, gl/inc/TGLText.h, gl/inc/TGLTransManip.h,
	  gl/inc/TGLUtil.h, gl/inc/TGLViewer.h, gl/inc/TGLViewerBase.h,
	  gl/inc/TGLViewerEditor.h, gl/inc/TGLWidget.h, gl/inc/TH2GL.h,
	  gl/inc/TPointSet3DGL.h, gl/inc/TX11GL.h, gl/inc/gl2ps.h,
	  gl/src/CsgOps.cxx, gl/src/TArcBall.cxx, gl/src/TF2GL.cxx,
	  gl/src/TGLAdapter.cxx, gl/src/TGLAxis.cxx,
	  gl/src/TGLBoundingBox.cxx, gl/src/TGLBoxPainter.cxx,
	  gl/src/TGLCamera.cxx, gl/src/TGLClip.cxx,
	  gl/src/TGLClipSetEditor.cxx, gl/src/TGLContext.cxx,
	  gl/src/TGLContextPrivate.cxx, gl/src/TGLCylinder.cxx,
	  gl/src/TGLFaceSet.cxx, gl/src/TGLFormat.cxx,
	  gl/src/TGLHistPainter.cxx, gl/src/TGLLegoPainter.cxx,
	  gl/src/TGLLightSet.cxx, gl/src/TGLLightSetEditor.cxx,
	  gl/src/TGLLockable.cxx, gl/src/TGLLogicalShape.cxx,
	  gl/src/TGLManip.cxx, gl/src/TGLManipSet.cxx,
	  gl/src/TGLObject.cxx, gl/src/TGLOrthoCamera.cxx,
	  gl/src/TGLOutput.cxx, gl/src/TGLOverlay.cxx,
	  gl/src/TGLPShapeObj.cxx, gl/src/TGLPShapeObjEditor.cxx,
	  gl/src/TGLPShapeRef.cxx, gl/src/TGLParametric.cxx,
	  gl/src/TGLParametricEquationGL.cxx,
	  gl/src/TGLPerspectiveCamera.cxx, gl/src/TGLPhysicalShape.cxx,
	  gl/src/TGLPlotBox.cxx, gl/src/TGLPlotPainter.cxx,
	  gl/src/TGLPolyLine.cxx, gl/src/TGLPolyMarker.cxx,
	  gl/src/TGLQuadric.cxx, gl/src/TGLRnrCtx.cxx,
	  gl/src/TGLRotateManip.cxx, gl/src/TGLSAFrame.cxx,
	  gl/src/TGLSAViewer.cxx, gl/src/TGLScaleManip.cxx,
	  gl/src/TGLScene.cxx, gl/src/TGLSceneBase.cxx,
	  gl/src/TGLSceneInfo.cxx, gl/src/TGLScenePad.cxx,
	  gl/src/TGLSelectBuffer.cxx, gl/src/TGLSelectRecord.cxx,
	  gl/src/TGLSphere.cxx, gl/src/TGLStopwatch.cxx,
	  gl/src/TGLSurfacePainter.cxx, gl/src/TGLTF3Painter.cxx,
	  gl/src/TGLText.cxx, gl/src/TGLTransManip.cxx, gl/src/TGLUtil.cxx,
	  gl/src/TGLViewer.cxx, gl/src/TGLViewerBase.cxx,
	  gl/src/TGLViewerEditor.cxx, gl/src/TGLWidget.cxx,
	  gl/src/TH2GL.cxx, gl/src/TPointSet3DGL.cxx, gl/src/TX11GL.cxx,
	  gl/src/gl2ps.c, globusauth/Module.mk,
	  globusauth/src/GlobusAuth.cxx,
	  globusauth/src/patches/globus_gsi_credential/0.5/globus_gsi_credential.c,
	  globusauth/src/patches/globus_gsi_credential/0.5/include/globus_i_gsi_credential.h,
	  globusauth/src/patches/globus_gsi_credential/0.5/include/version.h,
	  globusauth/src/patches/globus_gsi_credential/0.7/globus_gsi_credential.c,
	  globusauth/src/patches/globus_gsi_credential/0.7/include/globus_i_gsi_credential.h,
	  globusauth/src/patches/globus_gsi_credential/0.7/include/version.h,
	  globusauth/src/patches/globus_gsi_credential/0.8/globus_gsi_credential.c,
	  globusauth/src/patches/globus_gsi_credential/0.8/include/globus_i_gsi_credential.h,
	  globusauth/src/patches/globus_gsi_credential/0.8/include/version.h,
	  globusauth/src/patches/globus_gsi_credential/0.9/globus_gsi_credential.c,
	  globusauth/src/patches/globus_gsi_credential/0.9/include/globus_i_gsi_credential.h,
	  globusauth/src/patches/globus_gsi_credential/0.9/include/version.h,
	  gpad/Module.mk, gpad/inc/LinkDef.h, gpad/inc/TAttCanvas.h,
	  gpad/inc/TButton.h, gpad/inc/TCanvas.h, gpad/inc/TClassTree.h,
	  gpad/inc/TColorWheel.h, gpad/inc/TControlBar.h,
	  gpad/inc/TControlBarButton.h, gpad/inc/TCreatePrimitives.h,
	  gpad/inc/TDialogCanvas.h, gpad/inc/TGroupButton.h,
	  gpad/inc/TInspectCanvas.h, gpad/inc/TPad.h,
	  gpad/inc/TPaveClass.h, gpad/inc/TSlider.h, gpad/inc/TSliderBox.h,
	  gpad/inc/TView.h, gpad/inc/TViewer3DPad.h,
	  gpad/src/TAttCanvas.cxx, gpad/src/TButton.cxx,
	  gpad/src/TCanvas.cxx, gpad/src/TClassTree.cxx,
	  gpad/src/TColorWheel.cxx, gpad/src/TControlBar.cxx,
	  gpad/src/TControlBarButton.cxx, gpad/src/TCreatePrimitives.cxx,
	  gpad/src/TDialogCanvas.cxx, gpad/src/TGroupButton.cxx,
	  gpad/src/TInspectCanvas.cxx, gpad/src/TPad.cxx,
	  gpad/src/TPaveClass.cxx, gpad/src/TSlider.cxx,
	  gpad/src/TSliderBox.cxx, gpad/src/TView.cxx,
	  gpad/src/TViewer3DPad.cxx, graf/Module.mk, graf/doc/index.txt,
	  graf/doc/macros/greekletters.C, graf/doc/macros/mathsymbols.C,
	  graf/inc/LinkDef1.h, graf/inc/LinkDef2.h, graf/inc/TArc.h,
	  graf/inc/TArrow.h, graf/inc/TAttImage.h, graf/inc/TBox.h,
	  graf/inc/TCrown.h, graf/inc/TCurlyArc.h, graf/inc/TCurlyLine.h,
	  graf/inc/TCutG.h, graf/inc/TDiamond.h, graf/inc/TEllipse.h,
	  graf/inc/TFrame.h, graf/inc/TGaxis.h, graf/inc/TGraph.h,
	  graf/inc/TGraphAsymmErrors.h, graf/inc/TGraphBentErrors.h,
	  graf/inc/TGraphErrors.h, graf/inc/TGraphPolar.h,
	  graf/inc/TGraphQQ.h, graf/inc/TGraphSmooth.h, graf/inc/TImage.h,
	  graf/inc/TImagePlugin.h, graf/inc/TLatex.h, graf/inc/TLegend.h,
	  graf/inc/TLegendEntry.h, graf/inc/TLine.h, graf/inc/TLink.h,
	  graf/inc/TMarker.h, graf/inc/TMultiGraph.h, graf/inc/TPave.h,
	  graf/inc/TPaveLabel.h, graf/inc/TPaveStats.h,
	  graf/inc/TPaveText.h, graf/inc/TPavesText.h, graf/inc/TPie.h,
	  graf/inc/TPieSlice.h, graf/inc/TPoints.h, graf/inc/TPolyLine.h,
	  graf/inc/TSpline.h, graf/inc/TTF.h, graf/inc/TText.h,
	  graf/inc/TWbox.h, graf/src/TArc.cxx, graf/src/TArrow.cxx,
	  graf/src/TAttImage.cxx, graf/src/TBox.cxx, graf/src/TCrown.cxx,
	  graf/src/TCurlyArc.cxx, graf/src/TCurlyLine.cxx,
	  graf/src/TCutG.cxx, graf/src/TDiamond.cxx, graf/src/TEllipse.cxx,
	  graf/src/TFrame.cxx, graf/src/TGaxis.cxx, graf/src/TGraph.cxx,
	  graf/src/TGraphAsymmErrors.cxx, graf/src/TGraphBentErrors.cxx,
	  graf/src/TGraphErrors.cxx, graf/src/TGraphPolar.cxx,
	  graf/src/TGraphQQ.cxx, graf/src/TGraphSmooth.cxx,
	  graf/src/TImage.cxx, graf/src/TLatex.cxx, graf/src/TLegend.cxx,
	  graf/src/TLegendEntry.cxx, graf/src/TLine.cxx,
	  graf/src/TLink.cxx, graf/src/TMarker.cxx,
	  graf/src/TMultiGraph.cxx, graf/src/TPave.cxx,
	  graf/src/TPaveLabel.cxx, graf/src/TPaveStats.cxx,
	  graf/src/TPaveText.cxx, graf/src/TPavesText.cxx,
	  graf/src/TPie.cxx, graf/src/TPieSlice.cxx, graf/src/TPoints.cxx,
	  graf/src/TPolyLine.cxx, graf/src/TSpline.cxx, graf/src/TTF.cxx,
	  graf/src/TText.cxx, graf/src/TWbox.cxx, gui/Module.mk,
	  gui/doc/index.txt, gui/inc/HelpText.h, gui/inc/LinkDef1.h,
	  gui/inc/LinkDef2.h, gui/inc/LinkDef3.h, gui/inc/TG3DLine.h,
	  gui/inc/TGApplication.h, gui/inc/TGButton.h,
	  gui/inc/TGButtonGroup.h, gui/inc/TGCanvas.h, gui/inc/TGClient.h,
	  gui/inc/TGColorDialog.h, gui/inc/TGColorSelect.h,
	  gui/inc/TGComboBox.h, gui/inc/TGCommandPlugin.h,
	  gui/inc/TGDNDManager.h, gui/inc/TGDimension.h,
	  gui/inc/TGDockableFrame.h, gui/inc/TGDoubleSlider.h,
	  gui/inc/TGFSComboBox.h, gui/inc/TGFSContainer.h,
	  gui/inc/TGFileBrowser.h, gui/inc/TGFileDialog.h,
	  gui/inc/TGFont.h, gui/inc/TGFontDialog.h, gui/inc/TGFrame.h,
	  gui/inc/TGGC.h, gui/inc/TGIcon.h, gui/inc/TGIdleHandler.h,
	  gui/inc/TGImageMap.h, gui/inc/TGInputDialog.h, gui/inc/TGLabel.h,
	  gui/inc/TGLayout.h, gui/inc/TGListBox.h, gui/inc/TGListTree.h,
	  gui/inc/TGListView.h, gui/inc/TGMdi.h, gui/inc/TGMdiDecorFrame.h,
	  gui/inc/TGMdiFrame.h, gui/inc/TGMdiMainFrame.h,
	  gui/inc/TGMdiMenu.h, gui/inc/TGMenu.h, gui/inc/TGMimeTypes.h,
	  gui/inc/TGMsgBox.h, gui/inc/TGNumberEntry.h, gui/inc/TGObject.h,
	  gui/inc/TGPasswdDialog.h, gui/inc/TGPicture.h,
	  gui/inc/TGProgressBar.h, gui/inc/TGRedirectOutputGuard.h,
	  gui/inc/TGResourcePool.h, gui/inc/TGScrollBar.h,
	  gui/inc/TGShutter.h, gui/inc/TGSlider.h, gui/inc/TGSpeedo.h,
	  gui/inc/TGSplitter.h, gui/inc/TGStatusBar.h, gui/inc/TGString.h,
	  gui/inc/TGTab.h, gui/inc/TGTableLayout.h, gui/inc/TGText.h,
	  gui/inc/TGTextBuffer.h, gui/inc/TGTextEdit.h,
	  gui/inc/TGTextEditDialogs.h, gui/inc/TGTextEditor.h,
	  gui/inc/TGTextEntry.h, gui/inc/TGTextView.h, gui/inc/TGToolBar.h,
	  gui/inc/TGToolTip.h, gui/inc/TGTripleSlider.h, gui/inc/TGView.h,
	  gui/inc/TGWidget.h, gui/inc/TGWindow.h, gui/inc/TGXYLayout.h,
	  gui/inc/TGuiBuilder.h, gui/inc/TRootApplication.h,
	  gui/inc/TRootBrowser.h, gui/inc/TRootBrowserLite.h,
	  gui/inc/TRootCanvas.h, gui/inc/TRootContextMenu.h,
	  gui/inc/TRootControlBar.h, gui/inc/TRootDialog.h,
	  gui/inc/TRootEmbeddedCanvas.h, gui/inc/TRootGuiFactory.h,
	  gui/inc/TRootHelpDialog.h, gui/inc/TVirtualDragManager.h,
	  gui/inc/WidgetMessageTypes.h, gui/src/HelpText.cxx,
	  gui/src/TG3DLine.cxx, gui/src/TGApplication.cxx,
	  gui/src/TGButton.cxx, gui/src/TGButtonGroup.cxx,
	  gui/src/TGCanvas.cxx, gui/src/TGClient.cxx,
	  gui/src/TGColorDialog.cxx, gui/src/TGColorSelect.cxx,
	  gui/src/TGComboBox.cxx, gui/src/TGCommandPlugin.cxx,
	  gui/src/TGDNDManager.cxx, gui/src/TGDimension.cxx,
	  gui/src/TGDockableFrame.cxx, gui/src/TGDoubleSlider.cxx,
	  gui/src/TGFSComboBox.cxx, gui/src/TGFSContainer.cxx,
	  gui/src/TGFileBrowser.cxx, gui/src/TGFileDialog.cxx,
	  gui/src/TGFont.cxx, gui/src/TGFontDialog.cxx,
	  gui/src/TGFrame.cxx, gui/src/TGGC.cxx, gui/src/TGIcon.cxx,
	  gui/src/TGIdleHandler.cxx, gui/src/TGImageMap.cxx,
	  gui/src/TGInputDialog.cxx, gui/src/TGLabel.cxx,
	  gui/src/TGLayout.cxx, gui/src/TGListBox.cxx,
	  gui/src/TGListTree.cxx, gui/src/TGListView.cxx,
	  gui/src/TGMdiDecorFrame.cxx, gui/src/TGMdiFrame.cxx,
	  gui/src/TGMdiMainFrame.cxx, gui/src/TGMdiMenu.cxx,
	  gui/src/TGMenu.cxx, gui/src/TGMimeTypes.cxx,
	  gui/src/TGMsgBox.cxx, gui/src/TGNumberEntry.cxx,
	  gui/src/TGObject.cxx, gui/src/TGPasswdDialog.cxx,
	  gui/src/TGPicture.cxx, gui/src/TGProgressBar.cxx,
	  gui/src/TGRedirectOutputGuard.cxx, gui/src/TGResourcePool.cxx,
	  gui/src/TGScrollBar.cxx, gui/src/TGShutter.cxx,
	  gui/src/TGSlider.cxx, gui/src/TGSpeedo.cxx,
	  gui/src/TGSplitter.cxx, gui/src/TGStatusBar.cxx,
	  gui/src/TGString.cxx, gui/src/TGTab.cxx,
	  gui/src/TGTableLayout.cxx, gui/src/TGText.cxx,
	  gui/src/TGTextBuffer.cxx, gui/src/TGTextEdit.cxx,
	  gui/src/TGTextEditDialogs.cxx, gui/src/TGTextEditor.cxx,
	  gui/src/TGTextEntry.cxx, gui/src/TGTextView.cxx,
	  gui/src/TGToolBar.cxx, gui/src/TGToolTip.cxx,
	  gui/src/TGTripleSlider.cxx, gui/src/TGView.cxx,
	  gui/src/TGWidget.cxx, gui/src/TGWindow.cxx,
	  gui/src/TGXYLayout.cxx, gui/src/TGuiBuilder.cxx,
	  gui/src/TRootApplication.cxx, gui/src/TRootBrowser.cxx,
	  gui/src/TRootBrowserLite.cxx, gui/src/TRootCanvas.cxx,
	  gui/src/TRootContextMenu.cxx, gui/src/TRootControlBar.cxx,
	  gui/src/TRootDialog.cxx, gui/src/TRootEmbeddedCanvas.cxx,
	  gui/src/TRootGuiFactory.cxx, gui/src/TRootHelpDialog.cxx,
	  gui/src/TVirtualDragManager.cxx, guibuilder/Module.mk,
	  guibuilder/doc/index.txt, guibuilder/inc/LinkDef.h,
	  guibuilder/inc/TGuiBldDragManager.h,
	  guibuilder/inc/TGuiBldEditor.h,
	  guibuilder/inc/TGuiBldHintsButton.h,
	  guibuilder/inc/TGuiBldHintsEditor.h,
	  guibuilder/inc/TGuiBldNameFrame.h,
	  guibuilder/inc/TRootGuiBuilder.h,
	  guibuilder/src/TGuiBldDragManager.cxx,
	  guibuilder/src/TGuiBldEditor.cxx,
	  guibuilder/src/TGuiBldHintsButton.cxx,
	  guibuilder/src/TGuiBldHintsEditor.cxx,
	  guibuilder/src/TGuiBldNameFrame.cxx,
	  guibuilder/src/TRootGuiBuilder.cxx, guihtml/Module.mk,
	  guihtml/doc/index.txt, guihtml/inc/LinkDef.h,
	  guihtml/inc/TGHtml.h, guihtml/inc/TGHtmlBrowser.h,
	  guihtml/inc/TGHtmlTokens.h, guihtml/inc/TGHtmlUri.h,
	  guihtml/src/TGHtml.cxx, guihtml/src/TGHtmlBrowser.cxx,
	  guihtml/src/TGHtmlDraw.cxx, guihtml/src/TGHtmlElement.cxx,
	  guihtml/src/TGHtmlForm.cxx, guihtml/src/TGHtmlImage.cxx,
	  guihtml/src/TGHtmlIndex.cxx, guihtml/src/TGHtmlLayout.cxx,
	  guihtml/src/TGHtmlParse.cxx, guihtml/src/TGHtmlSizer.cxx,
	  guihtml/src/TGHtmlTable.cxx, guihtml/src/TGHtmlTokenMap.cxx,
	  guihtml/src/TGHtmlUri.cxx, hbook/Module.mk, hbook/doc/index.txt,
	  hbook/inc/LinkDef.h, hbook/inc/THbookBranch.h,
	  hbook/inc/THbookFile.h, hbook/inc/THbookKey.h,
	  hbook/inc/THbookTree.h, hbook/src/THbookBranch.cxx,
	  hbook/src/THbookFile.cxx, hbook/src/THbookKey.cxx,
	  hbook/src/THbookTree.cxx, hbook/src/hntvar2.f, hist/Module.mk,
	  hist/doc/index.txt, hist/inc/Foption.h, hist/inc/LinkDef.h,
	  hist/inc/TAxis.h, hist/inc/TBinomialEfficiencyFitter.h,
	  hist/inc/TConfidenceLevel.h, hist/inc/TF1.h, hist/inc/TF12.h,
	  hist/inc/TF2.h, hist/inc/TF3.h, hist/inc/TFormula.h,
	  hist/inc/TFormulaPrimitive.h, hist/inc/TFractionFitter.h,
	  hist/inc/TGraph2D.h, hist/inc/TGraph2DErrors.h,
	  hist/inc/TGraphDelaunay.h, hist/inc/TH1.h, hist/inc/TH1C.h,
	  hist/inc/TH1D.h, hist/inc/TH1F.h, hist/inc/TH1I.h,
	  hist/inc/TH1K.h, hist/inc/TH1S.h, hist/inc/TH2.h,
	  hist/inc/TH2C.h, hist/inc/TH2D.h, hist/inc/TH2F.h,
	  hist/inc/TH2I.h, hist/inc/TH2S.h, hist/inc/TH3.h,
	  hist/inc/TH3C.h, hist/inc/TH3D.h, hist/inc/TH3F.h,
	  hist/inc/TH3I.h, hist/inc/TH3S.h, hist/inc/THLimitsFinder.h,
	  hist/inc/THStack.h, hist/inc/THnSparse.h, hist/inc/TLimit.h,
	  hist/inc/TLimitDataSource.h, hist/inc/TMultiDimFit.h,
	  hist/inc/TPolyMarker.h, hist/inc/TPrincipal.h,
	  hist/inc/TProfile.h, hist/inc/TProfile2D.h,
	  hist/inc/TProfile3D.h, hist/inc/TVirtualHistPainter.h,
	  hist/src/Haxis.cxx, hist/src/TAxis.cxx,
	  hist/src/TBinomialEfficiencyFitter.cxx,
	  hist/src/TConfidenceLevel.cxx, hist/src/TF1.cxx,
	  hist/src/TF12.cxx, hist/src/TF1Helper.cxx, hist/src/TF1Helper.h,
	  hist/src/TF2.cxx, hist/src/TF3.cxx, hist/src/TFormula.cxx,
	  hist/src/TFormulaMathInterface.cxx,
	  hist/src/TFormulaPrimitive.cxx, hist/src/TFractionFitter.cxx,
	  hist/src/TGraph2D.cxx, hist/src/TGraph2DErrors.cxx,
	  hist/src/TGraphDelaunay.cxx, hist/src/TH1.cxx, hist/src/TH1K.cxx,
	  hist/src/TH2.cxx, hist/src/TH3.cxx, hist/src/THLimitsFinder.cxx,
	  hist/src/THStack.cxx, hist/src/THnSparse.cxx,
	  hist/src/TLimit.cxx, hist/src/TLimitDataSource.cxx,
	  hist/src/TMultiDimFit.cxx, hist/src/TPolyMarker.cxx,
	  hist/src/TPrincipal.cxx, hist/src/TProfile.cxx,
	  hist/src/TProfile2D.cxx, hist/src/TProfile3D.cxx,
	  hist/src/TVirtualHistPainter.cxx, histpainter/Module.mk,
	  histpainter/inc/Hoption.h, histpainter/inc/Hparam.h,
	  histpainter/inc/LinkDef.h, histpainter/inc/TGraphPainter.h,
	  histpainter/inc/THistPainter.h, histpainter/inc/TLego.h,
	  histpainter/inc/TPainter3dAlgorithms.h,
	  histpainter/inc/TPaletteAxis.h,
	  histpainter/src/TGraphPainter.cxx,
	  histpainter/src/THistPainter.cxx,
	  histpainter/src/TPainter3dAlgorithms.cxx,
	  histpainter/src/TPaletteAxis.cxx, html/Module.mk,
	  html/doc/index.txt, html/doc/macros/testmacro.C,
	  html/inc/LinkDef.h, html/inc/TClassDocOutput.h,
	  html/inc/TDocDirective.h, html/inc/TDocInfo.h,
	  html/inc/TDocOutput.h, html/inc/TDocParser.h, html/inc/THtml.h,
	  html/src/TClassDocOutput.cxx, html/src/TDocDirective.cxx,
	  html/src/TDocInfo.cxx, html/src/TDocOutput.cxx,
	  html/src/TDocParser.cxx, html/src/THtml.cxx, io/Module.mk,
	  io/doc/index.txt, io/inc/LinkDef.h, io/inc/TArchiveFile.h,
	  io/inc/TBufferFile.h, io/inc/TCollectionProxyFactory.h,
	  io/inc/TContainerConverters.h, io/inc/TDirectoryFile.h,
	  io/inc/TEmulatedCollectionProxy.h, io/inc/TEmulatedMapProxy.h,
	  io/inc/TFile.h, io/inc/TFileCacheRead.h,
	  io/inc/TFileCacheWrite.h, io/inc/TFree.h,
	  io/inc/TGenCollectionProxy.h, io/inc/TGenCollectionStreamer.h,
	  io/inc/TKey.h, io/inc/TKeyMapFile.h, io/inc/TMapFile.h,
	  io/inc/TStreamerInfo.h, io/inc/TZIPFile.h,
	  io/src/TArchiveFile.cxx, io/src/TBufferFile.cxx,
	  io/src/TCollectionProxyFactory.cxx,
	  io/src/TContainerConverters.cxx, io/src/TDirectoryFile.cxx,
	  io/src/TEmulatedCollectionProxy.cxx,
	  io/src/TEmulatedMapProxy.cxx, io/src/TFile.cxx,
	  io/src/TFileCacheRead.cxx, io/src/TFileCacheWrite.cxx,
	  io/src/TFree.cxx, io/src/TGenCollectionProxy.cxx,
	  io/src/TGenCollectionStreamer.cxx, io/src/TKey.cxx,
	  io/src/TKeyMapFile.cxx, io/src/TMapFile.cxx,
	  io/src/TStreamerInfo.cxx, io/src/TStreamerInfoReadBuffer.cxx,
	  io/src/TStreamerInfoWriteBuffer.cxx, io/src/TZIPFile.cxx,
	  krb5auth/Module.mk, krb5auth/inc/Krb5Auth.h,
	  krb5auth/inc/LinkDef.h, krb5auth/inc/TKSocket.h,
	  krb5auth/src/Krb5Auth.cxx, krb5auth/src/TKSocket.cxx,
	  ldap/Module.mk, ldap/inc/CintLDAP.h, ldap/inc/LinkDef.h,
	  ldap/inc/TLDAPAttribute.h, ldap/inc/TLDAPEntry.h,
	  ldap/inc/TLDAPResult.h, ldap/inc/TLDAPServer.h,
	  ldap/src/TLDAPAttribute.cxx, ldap/src/TLDAPEntry.cxx,
	  ldap/src/TLDAPResult.cxx, ldap/src/TLDAPServer.cxx,
	  macros/Dialogs.C, main/Module.mk, main/src/cppmain.cxx,
	  main/src/g2root.f, main/src/g2rootold.f, main/src/h2root.cxx,
	  main/src/hadd.cxx, main/src/pmain.cxx, main/src/proofserv.sh,
	  main/src/rmain.cxx, main/src/roots.cxx, main/src/roots.sh,
	  main/src/setpawc.c, main/src/ssh2rpd.cxx, main/win32/cfget.c,
	  main/win32/cfgeto.c, main/win32/cfopei.c, main/win32/cfput.c,
	  main/win32/cfputo.c, main/win32/setpawc.c, main/win32/tzvers.f,
	  math/Module.mk, math/doc/index.txt, math/inc/LinkDef.h,
	  math/inc/Math/ParamFunctor.h, math/inc/TComplex.h,
	  math/inc/TMath.h, math/inc/TRandom.h, math/inc/TRandom1.h,
	  math/inc/TRandom2.h, math/inc/TRandom3.h, math/src/TComplex.cxx,
	  math/src/TMath.cxx, math/src/TRandom.cxx, math/src/TRandom1.cxx,
	  math/src/TRandom2.cxx, math/src/TRandom3.cxx, mathcore/Module.mk,
	  mathcore/build/Makefile.am, mathcore/build/setup.sh,
	  mathcore/doc/index.txt,
	  mathcore/inc/Math/AdaptiveIntegratorMultiDim.h,
	  mathcore/inc/Math/AllIntegrationTypes.h,
	  mathcore/inc/Math/AxisAngle.h, mathcore/inc/Math/Boost.h,
	  mathcore/inc/Math/BoostX.h, mathcore/inc/Math/BoostY.h,
	  mathcore/inc/Math/BoostZ.h, mathcore/inc/Math/Cartesian2D.h,
	  mathcore/inc/Math/Cartesian3D.h,
	  mathcore/inc/Math/Cylindrical3D.h,
	  mathcore/inc/Math/CylindricalEta3D.h,
	  mathcore/inc/Math/DisplacementVector2D.h,
	  mathcore/inc/Math/DisplacementVector3D.h,
	  mathcore/inc/Math/DistFunc.h,
	  mathcore/inc/Math/DistFuncMathCore.h, mathcore/inc/Math/Error.h,
	  mathcore/inc/Math/EulerAngles.h,
	  mathcore/inc/Math/FitMethodFunction.h,
	  mathcore/inc/Math/Functor.h,
	  mathcore/inc/Math/GenVector/3DConversions.h,
	  mathcore/inc/Math/GenVector/3DDistances.h,
	  mathcore/inc/Math/GenVector/AxisAngle.h,
	  mathcore/inc/Math/GenVector/AxisAnglefwd.h,
	  mathcore/inc/Math/GenVector/BitReproducible.h,
	  mathcore/inc/Math/GenVector/Boost.h,
	  mathcore/inc/Math/GenVector/BoostX.h,
	  mathcore/inc/Math/GenVector/BoostXfwd.h,
	  mathcore/inc/Math/GenVector/BoostY.h,
	  mathcore/inc/Math/GenVector/BoostYfwd.h,
	  mathcore/inc/Math/GenVector/BoostZ.h,
	  mathcore/inc/Math/GenVector/BoostZfwd.h,
	  mathcore/inc/Math/GenVector/Boostfwd.h,
	  mathcore/inc/Math/GenVector/Cartesian2D.h,
	  mathcore/inc/Math/GenVector/Cartesian2Dfwd.h,
	  mathcore/inc/Math/GenVector/Cartesian3D.h,
	  mathcore/inc/Math/GenVector/Cartesian3Dfwd.h,
	  mathcore/inc/Math/GenVector/CoordinateSystemTags.h,
	  mathcore/inc/Math/GenVector/Cylindrical3D.h,
	  mathcore/inc/Math/GenVector/Cylindrical3Dfwd.h,
	  mathcore/inc/Math/GenVector/CylindricalEta3D.h,
	  mathcore/inc/Math/GenVector/CylindricalEta3Dfwd.h,
	  mathcore/inc/Math/GenVector/DisplacementVector2D.h,
	  mathcore/inc/Math/GenVector/DisplacementVector2Dfwd.h,
	  mathcore/inc/Math/GenVector/DisplacementVector3D.h,
	  mathcore/inc/Math/GenVector/DisplacementVector3Dfwd.h,
	  mathcore/inc/Math/GenVector/EulerAngles.h,
	  mathcore/inc/Math/GenVector/EulerAnglesfwd.h,
	  mathcore/inc/Math/GenVector/GenVectorIO.h,
	  mathcore/inc/Math/GenVector/GenVector_exception.h,
	  mathcore/inc/Math/GenVector/LorentzRotation.h,
	  mathcore/inc/Math/GenVector/LorentzRotationfwd.h,
	  mathcore/inc/Math/GenVector/LorentzVector.h,
	  mathcore/inc/Math/GenVector/LorentzVectorfwd.h,
	  mathcore/inc/Math/GenVector/Plane3D.h,
	  mathcore/inc/Math/GenVector/Polar2D.h,
	  mathcore/inc/Math/GenVector/Polar2Dfwd.h,
	  mathcore/inc/Math/GenVector/Polar3D.h,
	  mathcore/inc/Math/GenVector/Polar3Dfwd.h,
	  mathcore/inc/Math/GenVector/PositionVector2D.h,
	  mathcore/inc/Math/GenVector/PositionVector2Dfwd.h,
	  mathcore/inc/Math/GenVector/PositionVector3D.h,
	  mathcore/inc/Math/GenVector/PositionVector3Dfwd.h,
	  mathcore/inc/Math/GenVector/PtEtaPhiE4D.h,
	  mathcore/inc/Math/GenVector/PtEtaPhiE4Dfwd.h,
	  mathcore/inc/Math/GenVector/PtEtaPhiM4D.h,
	  mathcore/inc/Math/GenVector/PtEtaPhiM4Dfwd.h,
	  mathcore/inc/Math/GenVector/PxPyPzE4D.h,
	  mathcore/inc/Math/GenVector/PxPyPzE4Dfwd.h,
	  mathcore/inc/Math/GenVector/PxPyPzM4D.h,
	  mathcore/inc/Math/GenVector/PxPyPzM4Dfwd.h,
	  mathcore/inc/Math/GenVector/Quaternion.h,
	  mathcore/inc/Math/GenVector/Quaternionfwd.h,
	  mathcore/inc/Math/GenVector/Rotation3D.h,
	  mathcore/inc/Math/GenVector/Rotation3Dfwd.h,
	  mathcore/inc/Math/GenVector/RotationX.h,
	  mathcore/inc/Math/GenVector/RotationXfwd.h,
	  mathcore/inc/Math/GenVector/RotationY.h,
	  mathcore/inc/Math/GenVector/RotationYfwd.h,
	  mathcore/inc/Math/GenVector/RotationZ.h,
	  mathcore/inc/Math/GenVector/RotationZYX.h,
	  mathcore/inc/Math/GenVector/RotationZYXfwd.h,
	  mathcore/inc/Math/GenVector/RotationZfwd.h,
	  mathcore/inc/Math/GenVector/Transform3D.h,
	  mathcore/inc/Math/GenVector/Translation3D.h,
	  mathcore/inc/Math/GenVector/VectorUtil.h,
	  mathcore/inc/Math/GenVector/eta.h,
	  mathcore/inc/Math/GenVector/etaMax.h,
	  mathcore/inc/Math/IFunction.h, mathcore/inc/Math/IFunctionfwd.h,
	  mathcore/inc/Math/IParamFunction.h,
	  mathcore/inc/Math/IParamFunctionfwd.h,
	  mathcore/inc/Math/Integrator.h,
	  mathcore/inc/Math/IntegratorMultiDim.h,
	  mathcore/inc/Math/LinkDef.h, mathcore/inc/Math/LinkDef_Func.h,
	  mathcore/inc/Math/LinkDef_GenVector.h,
	  mathcore/inc/Math/LinkDef_GenVector32.h,
	  mathcore/inc/Math/LinkDef_Point3D.h,
	  mathcore/inc/Math/LinkDef_Rotation.h,
	  mathcore/inc/Math/LinkDef_Vector3D.h,
	  mathcore/inc/Math/LinkDef_Vector4D.h,
	  mathcore/inc/Math/LorentzRotation.h,
	  mathcore/inc/Math/LorentzVector.h, mathcore/inc/Math/Math.h,
	  mathcore/inc/Math/Minimizer.h, mathcore/inc/Math/PdfFunc.h,
	  mathcore/inc/Math/PdfFuncMathCore.h, mathcore/inc/Math/Plane3D.h,
	  mathcore/inc/Math/Point2D.h, mathcore/inc/Math/Point2Dfwd.h,
	  mathcore/inc/Math/Point3D.h, mathcore/inc/Math/Point3Dfwd.h,
	  mathcore/inc/Math/Polar2D.h, mathcore/inc/Math/Polar3D.h,
	  mathcore/inc/Math/PositionVector2D.h,
	  mathcore/inc/Math/PositionVector3D.h,
	  mathcore/inc/Math/ProbFunc.h,
	  mathcore/inc/Math/ProbFuncMathCore.h,
	  mathcore/inc/Math/PtEtaPhiE4D.h, mathcore/inc/Math/PtEtaPhiM4D.h,
	  mathcore/inc/Math/PxPyPzE4D.h, mathcore/inc/Math/PxPyPzM4D.h,
	  mathcore/inc/Math/Quaternion.h, mathcore/inc/Math/Rotation3D.h,
	  mathcore/inc/Math/RotationX.h, mathcore/inc/Math/RotationY.h,
	  mathcore/inc/Math/RotationZ.h, mathcore/inc/Math/RotationZYX.h,
	  mathcore/inc/Math/SpecFunc.h,
	  mathcore/inc/Math/SpecFuncMathCore.h,
	  mathcore/inc/Math/Transform3D.h,
	  mathcore/inc/Math/Translation3D.h, mathcore/inc/Math/Util.h,
	  mathcore/inc/Math/Vector2D.h, mathcore/inc/Math/Vector2Dfwd.h,
	  mathcore/inc/Math/Vector3D.h, mathcore/inc/Math/Vector3Dfwd.h,
	  mathcore/inc/Math/Vector4D.h, mathcore/inc/Math/Vector4Dfwd.h,
	  mathcore/inc/Math/VectorUtil.h,
	  mathcore/inc/Math/VectorUtil_Cint.h,
	  mathcore/inc/Math/VirtualIntegrator.h,
	  mathcore/inc/Math/WrappedFunction.h,
	  mathcore/inc/Math/WrappedParamFunction.h,
	  mathcore/src/3DConversions.cxx, mathcore/src/3DDistances.cxx,
	  mathcore/src/AdaptiveIntegratorMultiDim.cxx,
	  mathcore/src/AxisAngle.cxx, mathcore/src/AxisAngleXother.cxx,
	  mathcore/src/BitReproducible.cxx, mathcore/src/Boost.cxx,
	  mathcore/src/BoostX.cxx, mathcore/src/BoostY.cxx,
	  mathcore/src/BoostZ.cxx, mathcore/src/EulerAngles.cxx,
	  mathcore/src/GenVector_exception.cxx,
	  mathcore/src/Integrator.cxx, mathcore/src/LorentzRotation.cxx,
	  mathcore/src/PdfFuncMathCore.cxx, mathcore/src/Plane3D.cxx,
	  mathcore/src/ProbFuncMathCore.cxx, mathcore/src/Quaternion.cxx,
	  mathcore/src/QuaternionXaxial.cxx, mathcore/src/Rotation3D.cxx,
	  mathcore/src/Rotation3DxAxial.cxx, mathcore/src/RotationZYX.cxx,
	  mathcore/src/SpecFuncCephes.cxx, mathcore/src/SpecFuncCephes.h,
	  mathcore/src/SpecFuncCephesInv.cxx,
	  mathcore/src/SpecFuncMathCore.cxx, mathcore/src/Transform3D.cxx,
	  mathcore/src/Translation3D.cxx, mathcore/src/VectorUtil.cxx,
	  mathcore/test/CoordinateTraits.h, mathcore/test/Makefile,
	  mathcore/test/RotationTraits.h, mathcore/test/Track.h,
	  mathcore/test/TrackLinkDef.h, mathcore/test/coordinates3D.cxx,
	  mathcore/test/coordinates4D.cxx,
	  mathcore/test/rotationApplication.cxx,
	  mathcore/test/stress2D.cxx, mathcore/test/stress3D.cxx,
	  mathcore/test/testBoost.cxx, mathcore/test/testGenVector.cxx,
	  mathcore/test/testIntegration.cxx,
	  mathcore/test/testIterator.cxx, mathcore/test/testVectorIO.cxx,
	  mathcore/test/vectorOperation.cxx, mathmore/Module.mk,
	  mathmore/build/Makefile.am, mathmore/build/setup.sh,
	  mathmore/doc/index.txt, mathmore/inc/Math/Chebyshev.h,
	  mathmore/inc/Math/Derivator.h,
	  mathmore/inc/Math/DistFuncMathMore.h,
	  mathmore/inc/Math/GSLFunctionAdapter.h,
	  mathmore/inc/Math/GSLIntegrator.h,
	  mathmore/inc/Math/GSLMCIntegrator.h,
	  mathmore/inc/Math/GSLMinimizer.h,
	  mathmore/inc/Math/GSLNLSMinimizer.h,
	  mathmore/inc/Math/GSLRndmEngines.h,
	  mathmore/inc/Math/GSLRootFinder.h,
	  mathmore/inc/Math/GSLRootFinderDeriv.h,
	  mathmore/inc/Math/GSLRootHelper.h,
	  mathmore/inc/Math/GSLSimAnMinimizer.h,
	  mathmore/inc/Math/GSLSimAnnealing.h,
	  mathmore/inc/Math/IntegrationTypes.h,
	  mathmore/inc/Math/InterpolationTypes.h,
	  mathmore/inc/Math/Interpolator.h,
	  mathmore/inc/Math/KelvinFunctions.h, mathmore/inc/Math/LinkDef.h,
	  mathmore/inc/Math/LinkDef_RootFinding.h,
	  mathmore/inc/Math/LinkDef_SpecFunc.h,
	  mathmore/inc/Math/LinkDef_StatFunc.h,
	  mathmore/inc/Math/MCIntegrationTypes.h,
	  mathmore/inc/Math/MCParameters.h,
	  mathmore/inc/Math/Minimizer1D.h,
	  mathmore/inc/Math/NumGradFunction.h,
	  mathmore/inc/Math/ParamFunction.h,
	  mathmore/inc/Math/PdfFuncMathMore.h,
	  mathmore/inc/Math/Polynomial.h, mathmore/inc/Math/ProbFuncInv.h,
	  mathmore/inc/Math/QuantFuncMathMore.h,
	  mathmore/inc/Math/Random.h, mathmore/inc/Math/RootFinder.h,
	  mathmore/inc/Math/RootFinderAlgorithms.h,
	  mathmore/inc/Math/SpecFuncMathMore.h,
	  mathmore/inc/Math/WrappedMultiTF1.h,
	  mathmore/inc/Math/WrappedTF1.h, mathmore/src/Chebyshev.cxx,
	  mathmore/src/Derivator.cxx, mathmore/src/GSL1DMinimizer.h,
	  mathmore/src/GSLChebSeries.h, mathmore/src/GSLDerivator.cxx,
	  mathmore/src/GSLDerivator.h, mathmore/src/GSLError.h,
	  mathmore/src/GSLFunctionWrapper.h,
	  mathmore/src/GSLIntegrationWorkspace.h,
	  mathmore/src/GSLIntegrator.cxx, mathmore/src/GSLInterpolator.cxx,
	  mathmore/src/GSLInterpolator.h,
	  mathmore/src/GSLMCIntegrationWorkspace.h,
	  mathmore/src/GSLMCIntegrator.cxx, mathmore/src/GSLMinimizer.cxx,
	  mathmore/src/GSLMonteFunctionAdapter.h,
	  mathmore/src/GSLMonteFunctionWrapper.h,
	  mathmore/src/GSLMultiFit.h,
	  mathmore/src/GSLMultiFitFunctionAdapter.h,
	  mathmore/src/GSLMultiFitFunctionWrapper.h,
	  mathmore/src/GSLMultiMinFunctionAdapter.h,
	  mathmore/src/GSLMultiMinFunctionWrapper.h,
	  mathmore/src/GSLMultiMinimizer.h,
	  mathmore/src/GSLNLSMinimizer.cxx,
	  mathmore/src/GSLRndmEngines.cxx, mathmore/src/GSLRngWrapper.h,
	  mathmore/src/GSLRootFSolver.h, mathmore/src/GSLRootFdFSolver.h,
	  mathmore/src/GSLRootFinder.cxx,
	  mathmore/src/GSLRootFinderDeriv.cxx,
	  mathmore/src/GSLRootHelper.cxx,
	  mathmore/src/GSLSimAnMinimizer.cxx,
	  mathmore/src/GSLSimAnnealing.cxx, mathmore/src/Interpolator.cxx,
	  mathmore/src/KelvinFunctions.cxx, mathmore/src/Minimizer1D.cxx,
	  mathmore/src/OneDimFunctionAdapter.h,
	  mathmore/src/ParamFunction.cxx, mathmore/src/PdfFuncMathMore.cxx,
	  mathmore/src/Polynomial.cxx, mathmore/src/QuantFuncMathMore.cxx,
	  mathmore/src/RootFinderAlgorithms.cxx,
	  mathmore/src/SpecFuncMathMore.cxx,
	  mathmore/src/complex_quartic.h, mathmore/test/Makefile,
	  mathmore/test/UnuRanDist.h, mathmore/test/piRandom.C,
	  mathmore/test/pirndm.C, mathmore/test/simanTSP.cxx,
	  mathmore/test/testChebyshev.cxx,
	  mathmore/test/testDerivation.cxx, mathmore/test/testFunctor.cxx,
	  mathmore/test/testIntegration.cxx,
	  mathmore/test/testIntegrationMultiDim.cxx,
	  mathmore/test/testInterpolation.cxx,
	  mathmore/test/testMinimization1D.cxx,
	  mathmore/test/testRandom.cxx, mathmore/test/testRandomDist.cxx,
	  mathmore/test/testRootFinder.cxx, mathmore/test/testSpecFunc.cxx,
	  mathmore/test/testStatFunc.cxx, matrix/Module.mk,
	  matrix/doc/index.txt, matrix/inc/LinkDef.h,
	  matrix/inc/TDecompBK.h, matrix/inc/TDecompBase.h,
	  matrix/inc/TDecompChol.h, matrix/inc/TDecompLU.h,
	  matrix/inc/TDecompQRH.h, matrix/inc/TDecompSVD.h,
	  matrix/inc/TDecompSparse.h, matrix/inc/TMatrix.h,
	  matrix/inc/TMatrixD.h, matrix/inc/TMatrixDBase.h,
	  matrix/inc/TMatrixDBasefwd.h, matrix/inc/TMatrixDEigen.h,
	  matrix/inc/TMatrixDLazy.h, matrix/inc/TMatrixDSparse.h,
	  matrix/inc/TMatrixDSparsefwd.h, matrix/inc/TMatrixDSym.h,
	  matrix/inc/TMatrixDSymEigen.h, matrix/inc/TMatrixDSymfwd.h,
	  matrix/inc/TMatrixDUtils.h, matrix/inc/TMatrixDUtilsfwd.h,
	  matrix/inc/TMatrixDfwd.h, matrix/inc/TMatrixF.h,
	  matrix/inc/TMatrixFBase.h, matrix/inc/TMatrixFBasefwd.h,
	  matrix/inc/TMatrixFLazy.h, matrix/inc/TMatrixFSparse.h,
	  matrix/inc/TMatrixFSparsefwd.h, matrix/inc/TMatrixFSym.h,
	  matrix/inc/TMatrixFSymfwd.h, matrix/inc/TMatrixFUtils.h,
	  matrix/inc/TMatrixFUtilsfwd.h, matrix/inc/TMatrixFfwd.h,
	  matrix/inc/TMatrixT.h, matrix/inc/TMatrixTBase.h,
	  matrix/inc/TMatrixTCramerInv.h, matrix/inc/TMatrixTLazy.h,
	  matrix/inc/TMatrixTSparse.h, matrix/inc/TMatrixTSym.h,
	  matrix/inc/TMatrixTSymCramerInv.h, matrix/inc/TMatrixTUtils.h,
	  matrix/inc/TVector.h, matrix/inc/TVectorD.h,
	  matrix/inc/TVectorDfwd.h, matrix/inc/TVectorF.h,
	  matrix/inc/TVectorFfwd.h, matrix/inc/TVectorT.h,
	  matrix/inc/TVectorfwd.h, matrix/src/TDecompBK.cxx,
	  matrix/src/TDecompBase.cxx, matrix/src/TDecompChol.cxx,
	  matrix/src/TDecompLU.cxx, matrix/src/TDecompQRH.cxx,
	  matrix/src/TDecompSVD.cxx, matrix/src/TDecompSparse.cxx,
	  matrix/src/TMatrixDEigen.cxx, matrix/src/TMatrixDSymEigen.cxx,
	  matrix/src/TMatrixT.cxx, matrix/src/TMatrixTBase.cxx,
	  matrix/src/TMatrixTCramerInv.cxx, matrix/src/TMatrixTLazy.cxx,
	  matrix/src/TMatrixTSparse.cxx, matrix/src/TMatrixTSym.cxx,
	  matrix/src/TMatrixTSymCramerInv.cxx,
	  matrix/src/TMatrixTUtils.cxx, matrix/src/TVectorT.cxx,
	  meta/Module.mk, meta/doc/index.txt, meta/inc/LinkDef.h,
	  meta/inc/TBaseClass.h, meta/inc/TCint.h, meta/inc/TClass.h,
	  meta/inc/TClassGenerator.h, meta/inc/TClassMenuItem.h,
	  meta/inc/TClassRef.h, meta/inc/TClassStreamer.h,
	  meta/inc/TDataMember.h, meta/inc/TDataType.h,
	  meta/inc/TDictionary.h, meta/inc/TFunction.h,
	  meta/inc/TGenericClassInfo.h, meta/inc/TGlobal.h,
	  meta/inc/TInterpreter.h, meta/inc/TIsAProxy.h,
	  meta/inc/TMemberStreamer.h, meta/inc/TMethod.h,
	  meta/inc/TMethodArg.h, meta/inc/TMethodCall.h,
	  meta/inc/TRealData.h, meta/inc/TStreamer.h,
	  meta/inc/TStreamerElement.h, meta/inc/TToggle.h,
	  meta/inc/TToggleGroup.h, meta/inc/TVirtualIsAProxy.h,
	  meta/inc/TVirtualRefProxy.h, meta/inc/TVirtualStreamerInfo.h,
	  meta/src/TBaseClass.cxx, meta/src/TCint.cxx, meta/src/TClass.cxx,
	  meta/src/TClassGenerator.cxx, meta/src/TClassMenuItem.cxx,
	  meta/src/TClassRef.cxx, meta/src/TDataMember.cxx,
	  meta/src/TDataType.cxx, meta/src/TDictionary.cxx,
	  meta/src/TFunction.cxx, meta/src/TGenericClassInfo.cxx,
	  meta/src/TGlobal.cxx, meta/src/TInterpreter.cxx,
	  meta/src/TIsAProxy.cxx, meta/src/TMethod.cxx,
	  meta/src/TMethodArg.cxx, meta/src/TMethodCall.cxx,
	  meta/src/TRealData.cxx, meta/src/TStreamerElement.cxx,
	  meta/src/TToggle.cxx, meta/src/TToggleGroup.cxx,
	  meta/src/TVirtualStreamerInfo.cxx, metautils/Module.mk,
	  metautils/inc/LinkDef.h, metautils/inc/TClassEdit.h,
	  metautils/src/TClassEdit.cxx, metautils/src/dequeLinkdef.h,
	  metautils/src/listLinkdef.h, metautils/src/mapLinkdef.h,
	  metautils/src/multimapLinkdef.h, metautils/src/multisetLinkdef.h,
	  metautils/src/setLinkdef.h, metautils/src/valarrayLinkdef.h,
	  metautils/src/vectorLinkdef.h, minuit/Module.mk,
	  minuit/doc/index.txt, minuit/inc/LinkDef.h, minuit/inc/TFitter.h,
	  minuit/inc/TLinearFitter.h, minuit/inc/TMinuit.h,
	  minuit/src/TFitter.cxx, minuit/src/TLinearFitter.cxx,
	  minuit/src/TMinuit.cxx, mlp/Module.mk, mlp/inc/LinkDef.h,
	  mlp/inc/TMLPAnalyzer.h, mlp/inc/TMultiLayerPerceptron.h,
	  mlp/inc/TNeuron.h, mlp/inc/TSynapse.h, mlp/src/TMLPAnalyzer.cxx,
	  mlp/src/TMultiLayerPerceptron.cxx, mlp/src/TNeuron.cxx,
	  mlp/src/TSynapse.cxx, monalisa/Module.mk, monalisa/inc/LinkDef.h,
	  monalisa/inc/TMonaLisaReader.h, monalisa/inc/TMonaLisaWriter.h,
	  monalisa/src/TMonaLisaReader.cxx,
	  monalisa/src/TMonaLisaWriter.cxx, mysql/Module.mk,
	  mysql/inc/LinkDef.h, mysql/inc/TMySQLResult.h,
	  mysql/inc/TMySQLRow.h, mysql/inc/TMySQLServer.h,
	  mysql/inc/TMySQLStatement.h, mysql/src/TMySQLResult.cxx,
	  mysql/src/TMySQLRow.cxx, mysql/src/TMySQLServer.cxx,
	  mysql/src/TMySQLStatement.cxx, net/Module.mk, net/doc/index.txt,
	  net/inc/LinkDef.h, net/inc/NetErrors.h,
	  net/inc/RRemoteProtocol.h, net/inc/TApplicationRemote.h,
	  net/inc/TApplicationServer.h, net/inc/TFTP.h,
	  net/inc/TFileStager.h, net/inc/TGrid.h,
	  net/inc/TGridCollection.h, net/inc/TGridJDL.h,
	  net/inc/TGridJob.h, net/inc/TGridJobStatus.h,
	  net/inc/TGridJobStatusList.h, net/inc/TGridResult.h,
	  net/inc/TMessage.h, net/inc/TMonitor.h, net/inc/TNetFile.h,
	  net/inc/TPServerSocket.h, net/inc/TPSocket.h,
	  net/inc/TSQLColumnInfo.h, net/inc/TSQLMonitoring.h,
	  net/inc/TSQLResult.h, net/inc/TSQLRow.h, net/inc/TSQLServer.h,
	  net/inc/TSQLStatement.h, net/inc/TSQLTableInfo.h,
	  net/inc/TSecContext.h, net/inc/TServerSocket.h,
	  net/inc/TSocket.h, net/inc/TWebFile.h, net/src/NetErrors.cxx,
	  net/src/TApplicationRemote.cxx, net/src/TApplicationServer.cxx,
	  net/src/TFTP.cxx, net/src/TFileStager.cxx, net/src/TGrid.cxx,
	  net/src/TGridJDL.cxx, net/src/TGridJob.cxx,
	  net/src/TGridJobStatus.cxx, net/src/TGridJobStatusList.cxx,
	  net/src/TGridResult.cxx, net/src/TMessage.cxx,
	  net/src/TMonitor.cxx, net/src/TNetFile.cxx,
	  net/src/TPServerSocket.cxx, net/src/TPSocket.cxx,
	  net/src/TSQLColumnInfo.cxx, net/src/TSQLMonitoring.cxx,
	  net/src/TSQLResult.cxx, net/src/TSQLRow.cxx,
	  net/src/TSQLServer.cxx, net/src/TSQLStatement.cxx,
	  net/src/TSQLTableInfo.cxx, net/src/TSecContext.cxx,
	  net/src/TServerSocket.cxx, net/src/TSocket.cxx,
	  net/src/TWebFile.cxx, netx/Module.mk, netx/inc/LinkDef.h,
	  netx/inc/TXNetFile.h, netx/inc/TXNetFileStager.h,
	  netx/inc/TXNetSystem.h, netx/src/TXNetFile.cxx,
	  netx/src/TXNetFileStager.cxx, netx/src/TXNetSystem.cxx,
	  newdelete/Module.mk, newdelete/inc/MemCheck.h,
	  newdelete/src/MemCheck.cxx, newdelete/src/NewDelete.cxx,
	  odbc/Module.mk, odbc/inc/LinkDef.h, odbc/inc/TODBCResult.h,
	  odbc/inc/TODBCRow.h, odbc/inc/TODBCServer.h,
	  odbc/inc/TODBCStatement.h, odbc/src/TODBCResult.cxx,
	  odbc/src/TODBCRow.cxx, odbc/src/TODBCServer.cxx,
	  odbc/src/TODBCStatement.cxx, oracle/Module.mk,
	  oracle/inc/LinkDef.h, oracle/inc/TOracleResult.h,
	  oracle/inc/TOracleRow.h, oracle/inc/TOracleServer.h,
	  oracle/inc/TOracleStatement.h, oracle/src/TOracleResult.cxx,
	  oracle/src/TOracleRow.cxx, oracle/src/TOracleServer.cxx,
	  oracle/src/TOracleStatement.cxx, pcre/Module.mk, peac/Module.mk,
	  peac/inc/LinkDef.h, peac/inc/LinkDefGui.h, peac/inc/TPEAC.h,
	  peac/inc/TProofPEAC.h, peac/inc/TProofStartupDialog.h,
	  peac/src/TPEAC.cxx, peac/src/TProofPEAC.cxx,
	  peac/src/TProofStartupDialog.cxx, pgsql/Module.mk,
	  pgsql/inc/LinkDef.h, pgsql/inc/TPgSQLResult.h,
	  pgsql/inc/TPgSQLRow.h, pgsql/inc/TPgSQLServer.h,
	  pgsql/inc/TPgSQLStatement.h, pgsql/src/TPgSQLResult.cxx,
	  pgsql/src/TPgSQLRow.cxx, pgsql/src/TPgSQLServer.cxx,
	  pgsql/src/TPgSQLStatement.cxx, physics/Module.mk,
	  physics/doc/index.txt, physics/inc/LinkDef.h,
	  physics/inc/TFeldmanCousins.h, physics/inc/TGenPhaseSpace.h,
	  physics/inc/TLorentzRotation.h, physics/inc/TLorentzVector.h,
	  physics/inc/TQuaternion.h, physics/inc/TRobustEstimator.h,
	  physics/inc/TRolke.h, physics/inc/TRotation.h,
	  physics/inc/TVector2.h, physics/inc/TVector3.h,
	  physics/src/TFeldmanCousins.cxx, physics/src/TGenPhaseSpace.cxx,
	  physics/src/TLorentzRotation.cxx, physics/src/TLorentzVector.cxx,
	  physics/src/TQuaternion.cxx, physics/src/TRobustEstimator.cxx,
	  physics/src/TRolke.cxx, physics/src/TRotation.cxx,
	  physics/src/TVector2.cxx, physics/src/TVector3.cxx,
	  postscript/Module.mk, postscript/inc/LinkDef.h,
	  postscript/inc/TImageDump.h, postscript/inc/TPDF.h,
	  postscript/inc/TPostScript.h, postscript/inc/TSVG.h,
	  postscript/src/TImageDump.cxx, postscript/src/TPDF.cxx,
	  postscript/src/TPostScript.cxx, postscript/src/TSVG.cxx,
	  proof/Module.mk, proof/doc/index.txt, proof/inc/LinkDef.h,
	  proof/inc/TCondor.h, proof/inc/TDSet.h, proof/inc/TDSetProxy.h,
	  proof/inc/TProof.h, proof/inc/TProofChain.h,
	  proof/inc/TProofCondor.h, proof/inc/TProofDebug.h,
	  proof/inc/TProofLog.h, proof/inc/TProofMgr.h,
	  proof/inc/TProofNodeInfo.h, proof/inc/TProofQueryResult.h,
	  proof/inc/TProofResources.h, proof/inc/TProofResourcesStatic.h,
	  proof/inc/TProofServ.h, proof/inc/TProofSuperMaster.h,
	  proof/inc/TSlave.h, proof/inc/TVirtualProofPlayer.h,
	  proof/src/TCondor.cxx, proof/src/TDSet.cxx,
	  proof/src/TDSetProxy.cxx, proof/src/TProof.cxx,
	  proof/src/TProofChain.cxx, proof/src/TProofCondor.cxx,
	  proof/src/TProofDebug.cxx, proof/src/TProofLog.cxx,
	  proof/src/TProofMgr.cxx, proof/src/TProofNodeInfo.cxx,
	  proof/src/TProofQueryResult.cxx,
	  proof/src/TProofResourcesStatic.cxx, proof/src/TProofServ.cxx,
	  proof/src/TProofSuperMaster.cxx, proof/src/TSlave.cxx,
	  proof/src/TVirtualProofPlayer.cxx, proofd/Module.mk,
	  proofd/inc/XProofProtUtils.h, proofd/inc/XProofProtocol.h,
	  proofd/inc/XrdProofConn.h, proofd/inc/XrdProofGroup.h,
	  proofd/inc/XrdProofPhyConn.h, proofd/inc/XrdProofSched.h,
	  proofd/inc/XrdProofServProxy.h, proofd/inc/XrdProofWorker.h,
	  proofd/inc/XrdProofdAux.h, proofd/inc/XrdProofdClient.h,
	  proofd/inc/XrdProofdManager.h, proofd/inc/XrdProofdPlatform.h,
	  proofd/inc/XrdProofdProtocol.h, proofd/inc/XrdProofdResponse.h,
	  proofd/inc/XrdProofdTrace.h, proofd/inc/XrdROOT.h,
	  proofd/inc/XrdSysToOuc.h, proofd/inc/proofdp.h,
	  proofd/src/XProofProtUtils.cxx, proofd/src/XrdProofConn.cxx,
	  proofd/src/XrdProofGroup.cxx, proofd/src/XrdProofPhyConn.cxx,
	  proofd/src/XrdProofSched.cxx, proofd/src/XrdProofServProxy.cxx,
	  proofd/src/XrdProofWorker.cxx, proofd/src/XrdProofdAux.cxx,
	  proofd/src/XrdProofdClient.cxx, proofd/src/XrdProofdManager.cxx,
	  proofd/src/XrdProofdProtocol.cxx,
	  proofd/src/XrdProofdResponse.cxx, proofd/src/XrdROOT.cxx,
	  proofd/src/proofd.cxx, proofplayer/Module.mk,
	  proofplayer/inc/LinkDef.h, proofplayer/inc/LinkDefDraw.h,
	  proofplayer/inc/TDrawFeedback.h, proofplayer/inc/TEventIter.h,
	  proofplayer/inc/TFileMerger.h, proofplayer/inc/TPacketizer.h,
	  proofplayer/inc/TPacketizerAdaptive.h,
	  proofplayer/inc/TPacketizerProgressive.h,
	  proofplayer/inc/TPacketizerUnit.h, proofplayer/inc/TPerfStats.h,
	  proofplayer/inc/TProofDraw.h, proofplayer/inc/TProofFile.h,
	  proofplayer/inc/TProofLimitsFinder.h,
	  proofplayer/inc/TProofPlayer.h, proofplayer/inc/TStatus.h,
	  proofplayer/inc/TVirtualPacketizer.h,
	  proofplayer/src/TDrawFeedback.cxx,
	  proofplayer/src/TEventIter.cxx, proofplayer/src/TFileMerger.cxx,
	  proofplayer/src/TPacketizer.cxx,
	  proofplayer/src/TPacketizerAdaptive.cxx,
	  proofplayer/src/TPacketizerProgressive.cxx,
	  proofplayer/src/TPacketizerUnit.cxx,
	  proofplayer/src/TPerfStats.cxx, proofplayer/src/TProofDraw.cxx,
	  proofplayer/src/TProofFile.cxx,
	  proofplayer/src/TProofLimitsFinder.cxx,
	  proofplayer/src/TProofPlayer.cxx, proofplayer/src/TStatus.cxx,
	  proofplayer/src/TVirtualPacketizer.cxx, proofx/Module.mk,
	  proofx/inc/LinkDef.h, proofx/inc/TXHandler.h,
	  proofx/inc/TXProofMgr.h, proofx/inc/TXProofServ.h,
	  proofx/inc/TXSlave.h, proofx/inc/TXSocket.h,
	  proofx/inc/TXSocketHandler.h, proofx/inc/TXUnixSocket.h,
	  proofx/src/TXHandler.cxx, proofx/src/TXProofMgr.cxx,
	  proofx/src/TXProofServ.cxx, proofx/src/TXSlave.cxx,
	  proofx/src/TXSocket.cxx, proofx/src/TXSocketHandler.cxx,
	  proofx/src/TXUnixSocket.cxx, pyroot/Module.mk, pyroot/ROOT.py,
	  pyroot/doc/index.txt, pyroot/inc/LinkDef.h,
	  pyroot/inc/TPyDispatcher.h, pyroot/inc/TPyException.h,
	  pyroot/inc/TPyROOTApplication.h, pyroot/inc/TPyReturn.h,
	  pyroot/inc/TPython.h, pyroot/src/Adapters.cxx,
	  pyroot/src/Adapters.h, pyroot/src/ClassMethodHolder.cxx,
	  pyroot/src/ClassMethodHolder.h, pyroot/src/ConstructorHolder.cxx,
	  pyroot/src/ConstructorHolder.h, pyroot/src/Converters.cxx,
	  pyroot/src/Converters.h, pyroot/src/Executors.cxx,
	  pyroot/src/Executors.h, pyroot/src/FunctionHolder.cxx,
	  pyroot/src/FunctionHolder.h, pyroot/src/MemoryRegulator.cxx,
	  pyroot/src/MemoryRegulator.h, pyroot/src/MethodHolder.cxx,
	  pyroot/src/MethodHolder.h, pyroot/src/MethodProxy.cxx,
	  pyroot/src/MethodProxy.h, pyroot/src/ObjectProxy.cxx,
	  pyroot/src/ObjectProxy.h, pyroot/src/PropertyProxy.cxx,
	  pyroot/src/PropertyProxy.h, pyroot/src/PyBufferFactory.cxx,
	  pyroot/src/PyBufferFactory.h, pyroot/src/PyCallable.h,
	  pyroot/src/PyROOT.h, pyroot/src/PyRootType.cxx,
	  pyroot/src/PyRootType.h, pyroot/src/Pythonize.cxx,
	  pyroot/src/Pythonize.h, pyroot/src/RootModule.cxx,
	  pyroot/src/RootWrapper.cxx, pyroot/src/RootWrapper.h,
	  pyroot/src/TCustomPyTypes.cxx, pyroot/src/TCustomPyTypes.h,
	  pyroot/src/TPyClassGenerator.cxx, pyroot/src/TPyClassGenerator.h,
	  pyroot/src/TPyDispatcher.cxx, pyroot/src/TPyException.cxx,
	  pyroot/src/TPyROOTApplication.cxx, pyroot/src/TPyReturn.cxx,
	  pyroot/src/TPython.cxx, pyroot/src/TRflxCallback.cxx,
	  pyroot/src/TRflxCallback.h, pyroot/src/TSetItemHolder.cxx,
	  pyroot/src/TSetItemHolder.h, pyroot/src/Utility.cxx,
	  pyroot/src/Utility.h, pythia6/Module.mk, pythia6/inc/LinkDef.h,
	  pythia6/inc/TMCParticle.h, pythia6/inc/TPythia6.h,
	  pythia6/inc/TPythia6Calls.h, pythia6/inc/TPythia6Decayer.h,
	  pythia6/src/TMCParticle.cxx, pythia6/src/TPythia6.cxx,
	  pythia6/src/TPythia6Decayer.cxx, qt/Module.mk, qt/inc/LinkDef.h,
	  qt/inc/TGQt.h, qt/inc/TObjectExecute.h, qt/inc/TQMimeTypes.h,
	  qt/inc/TQUserEvent.h, qt/inc/TQtApplication.h, qt/inc/TQtBrush.h,
	  qt/inc/TQtClientFilter.h, qt/inc/TQtClientGuard.h,
	  qt/inc/TQtClientWidget.h, qt/inc/TQtEmitter.h, qt/inc/TQtEvent.h,
	  qt/inc/TQtEventQueue.h, qt/inc/TQtLock.h, qt/inc/TQtLockGuard.h,
	  qt/inc/TQtMarker.h, qt/inc/TQtRConfig.h,
	  qt/inc/TQtRootApplication.h, qt/inc/TQtRootSlot.h,
	  qt/inc/TQtSymbolCodec.h, qt/inc/TQtTimer.h, qt/inc/TQtUtil.h,
	  qt/inc/TQtWidget.h, qt/inc/TVirtualX.interface.h,
	  qt/inc/TWaitCondition.h, qt/src/GQtGUI.cxx, qt/src/TGQt.cxx,
	  qt/src/TGQtDummy.cxx, qt/src/TQMimeTypes.cxx,
	  qt/src/TQtApplication.cxx, qt/src/TQtBrush.cxx,
	  qt/src/TQtClientFilter.cxx, qt/src/TQtClientGuard.cxx,
	  qt/src/TQtClientWidget.cxx, qt/src/TQtEvent.cxx,
	  qt/src/TQtEventQueue.cxx, qt/src/TQtMarker.cxx,
	  qt/src/TQtRootApplication.cxx, qt/src/TQtRootSlot.cxx,
	  qt/src/TQtSymbolCodec.cxx, qt/src/TQtTimer.cxx,
	  qt/src/TQtWidget.cxx, qtgsi/Module.mk, qtgsi/inc/LinkDef.h,
	  qtgsi/inc/TQApplication.h, qtgsi/inc/TQCanvasImp.h,
	  qtgsi/inc/TQCanvasMenu.h, qtgsi/inc/TQRootApplication.h,
	  qtgsi/inc/TQRootCanvas.h, qtgsi/inc/TQRootDialog.h,
	  qtgsi/inc/TQRootGuiFactory.h, qtgsi/src/TQApplication.cxx,
	  qtgsi/src/TQCanvasImp.cxx, qtgsi/src/TQCanvasMenu.cxx,
	  qtgsi/src/TQRootApplication.cxx, qtgsi/src/TQRootCanvas.cxx,
	  qtgsi/src/TQRootDialog.cxx, qtgsi/src/TQRootGuiFactory.cxx,
	  qtgsi/test/Makefile, qtgsi/test/Makefile.win,
	  qtgsi/test/example1/Makefile, qtgsi/test/example1/Makefile.win,
	  qtgsi/test/example1/guitest.cpp, qtgsi/test/example1/guitest.h,
	  qtgsi/test/example1/main.cpp, qtgsi/test/example1/qtroot.cpp,
	  qtgsi/test/example1/qtroot.h, qtgsi/test/example2/Makefile,
	  qtgsi/test/example2/Makefile.win, qtgsi/test/example2/main.cpp,
	  qtgsi/test/example2/qtrootexample1.ui.h, qtroot/Module.mk,
	  qtroot/inc/LinkDef.h, qtroot/inc/TQtRootGuiFactory.h,
	  qtroot/src/TQtRootGuiFactory.cxx, quadp/Module.mk,
	  quadp/inc/LinkDef.h, quadp/inc/TGondzioSolver.h,
	  quadp/inc/TMehrotraSolver.h, quadp/inc/TQpDataBase.h,
	  quadp/inc/TQpDataDens.h, quadp/inc/TQpDataSparse.h,
	  quadp/inc/TQpLinSolverBase.h, quadp/inc/TQpLinSolverDens.h,
	  quadp/inc/TQpLinSolverSparse.h, quadp/inc/TQpProbBase.h,
	  quadp/inc/TQpProbDens.h, quadp/inc/TQpProbSparse.h,
	  quadp/inc/TQpResidual.h, quadp/inc/TQpSolverBase.h,
	  quadp/inc/TQpVar.h, quadp/src/TGondzioSolver.cxx,
	  quadp/src/TMehrotraSolver.cxx, quadp/src/TQpDataBase.cxx,
	  quadp/src/TQpDataDens.cxx, quadp/src/TQpDataSparse.cxx,
	  quadp/src/TQpLinSolverBase.cxx, quadp/src/TQpLinSolverDens.cxx,
	  quadp/src/TQpLinSolverSparse.cxx, quadp/src/TQpProbBase.cxx,
	  quadp/src/TQpProbDens.cxx, quadp/src/TQpProbSparse.cxx,
	  quadp/src/TQpResidual.cxx, quadp/src/TQpSolverBase.cxx,
	  quadp/src/TQpVar.cxx, rfio/Module.mk, rfio/inc/LinkDef.h,
	  rfio/inc/TRFIOFile.h, rfio/src/TRFIOFile.cxx, rint/Module.mk,
	  rint/inc/LinkDef.h, rint/inc/TRint.h, rint/inc/TTabCom.h,
	  rint/src/TRint.cxx, rint/src/TTabCom.cxx, rootd/Module.mk,
	  rootd/inc/rootdp.h, rootd/src/rootd.cxx, roots/inc/TGXClient.h,
	  roots/inc/TGXServer.h, roots/src/TGXClient.cxx,
	  roots/src/TGXServer.cxx, roots/src/roots.cxx, rootx/Module.mk,
	  rootx/src/rootx.cxx, rootx/src/rootxx.cxx, rpdutils/Module.mk,
	  rpdutils/inc/rpddefs.h, rpdutils/inc/rpderr.h,
	  rpdutils/inc/rpdp.h, rpdutils/src/daemon.cxx,
	  rpdutils/src/error.cxx, rpdutils/src/globus.cxx,
	  rpdutils/src/net.cxx, rpdutils/src/netpar.cxx,
	  rpdutils/src/rpdutils.cxx, rpdutils/src/ssh.cxx, ruby/Module.mk,
	  ruby/doc/index.txt, ruby/inc/LinkDef.h, ruby/inc/TRuby.h,
	  ruby/src/TRuby.cxx, ruby/src/drr.cxx, ruby/src/rrcommon.h,
	  ruby/src/rrenums.h, sapdb/Module.mk, sapdb/inc/LinkDef.h,
	  sapdb/inc/TSapDBResult.h, sapdb/inc/TSapDBRow.h,
	  sapdb/inc/TSapDBServer.h, sapdb/src/TSapDBResult.cxx,
	  sapdb/src/TSapDBRow.cxx, sapdb/src/TSapDBServer.cxx,
	  sessionviewer/Module.mk, sessionviewer/inc/LinkDef.h,
	  sessionviewer/inc/TProofProgressDialog.h,
	  sessionviewer/inc/TProofProgressLog.h,
	  sessionviewer/inc/TSessionDialogs.h,
	  sessionviewer/inc/TSessionLogView.h,
	  sessionviewer/inc/TSessionViewer.h,
	  sessionviewer/src/TProofProgressDialog.cxx,
	  sessionviewer/src/TProofProgressLog.cxx,
	  sessionviewer/src/TSessionDialogs.cxx,
	  sessionviewer/src/TSessionLogView.cxx,
	  sessionviewer/src/TSessionViewer.cxx, smatrix/CreateBinaryOp.sh,
	  smatrix/CreateUnaryOp.sh, smatrix/Module.mk,
	  smatrix/build/Makefile.am, smatrix/build/setup.sh,
	  smatrix/doc/index.txt, smatrix/inc/LinkDef.h,
	  smatrix/inc/LinkDefD32.h, smatrix/inc/Math/BinaryOpPolicy.h,
	  smatrix/inc/Math/BinaryOperators.h, smatrix/inc/Math/Dfact.h,
	  smatrix/inc/Math/Dfactir.h, smatrix/inc/Math/Dfinv.h,
	  smatrix/inc/Math/Dinv.h, smatrix/inc/Math/Dsfact.h,
	  smatrix/inc/Math/Dsinv.h, smatrix/inc/Math/Expression.h,
	  smatrix/inc/Math/Functions.h, smatrix/inc/Math/HelperOps.h,
	  smatrix/inc/Math/MConfig.h, smatrix/inc/Math/MatrixFunctions.h,
	  smatrix/inc/Math/MatrixRepresentationsStatic.h,
	  smatrix/inc/Math/SMatrix.h, smatrix/inc/Math/SMatrixDfwd.h,
	  smatrix/inc/Math/SMatrixFfwd.h, smatrix/inc/Math/SVector.h,
	  smatrix/inc/Math/StaticCheck.h,
	  smatrix/inc/Math/UnaryOperators.h, smatrix/src/Dict.h,
	  smatrix/test/Makefile, smatrix/test/TestTimer.h,
	  smatrix/test/Track.h, smatrix/test/TrackLinkDef.h,
	  smatrix/test/kalman.C, smatrix/test/matrixOperations.C,
	  smatrix/test/matrix_op.h, smatrix/test/matrix_util.h,
	  smatrix/test/stressKalman.cxx, smatrix/test/stressOperations.cxx,
	  smatrix/test/testIO.cxx, smatrix/test/testKalman.cxx,
	  smatrix/test/testOperations.cxx, smatrix/test/testSMatrix.cxx,
	  spectrum/Module.mk, spectrum/inc/LinkDef.h,
	  spectrum/inc/TSpectrum.h, spectrum/inc/TSpectrum2.h,
	  spectrum/inc/TSpectrum2Fit.h, spectrum/inc/TSpectrum2Transform.h,
	  spectrum/inc/TSpectrum3.h, spectrum/inc/TSpectrumFit.h,
	  spectrum/inc/TSpectrumTransform.h, spectrum/src/TSpectrum.cxx,
	  spectrum/src/TSpectrum2.cxx, spectrum/src/TSpectrum2Fit.cxx,
	  spectrum/src/TSpectrum2Transform.cxx,
	  spectrum/src/TSpectrum3.cxx, spectrum/src/TSpectrumFit.cxx,
	  spectrum/src/TSpectrumTransform.cxx, spectrumpainter/Module.mk,
	  spectrumpainter/inc/LinkDef.h,
	  spectrumpainter/inc/TSpectrum2Painter.h,
	  spectrumpainter/src/TSpectrum2Painter.cxx, splot/Module.mk,
	  splot/inc/LinkDef.h, splot/inc/TSPlot.h, splot/src/TSPlot.cxx,
	  sql/Module.mk, sql/inc/LinkDef.h, sql/inc/TBufferSQL2.h,
	  sql/inc/TKeySQL.h, sql/inc/TSQLClassInfo.h, sql/inc/TSQLFile.h,
	  sql/inc/TSQLObjectData.h, sql/inc/TSQLStructure.h,
	  sql/src/TBufferSQL2.cxx, sql/src/TKeySQL.cxx,
	  sql/src/TSQLClassInfo.cxx, sql/src/TSQLFile.cxx,
	  sql/src/TSQLObjectData.cxx, sql/src/TSQLStructure.cxx,
	  srputils/Module.mk, srputils/src/SRPAuth.cxx,
	  srputils/src/rpasswd.c, srputils/src/rtconf.c, table/Module.mk,
	  table/inc/LinkDef.h, table/inc/TCernLib.h, table/inc/TChair.h,
	  table/inc/TColumnView.h, table/inc/TDataSet.h,
	  table/inc/TDataSetIter.h, table/inc/TDsKey.h,
	  table/inc/TFileIter.h, table/inc/TFileSet.h,
	  table/inc/TGenericTable.h, table/inc/TIndexTable.h,
	  table/inc/TObjectSet.h, table/inc/TPoints3D.h,
	  table/inc/TPointsArray3D.h, table/inc/TPolyLineShape.h,
	  table/inc/TResponseTable.h, table/inc/TTable.h,
	  table/inc/TTable3Points.h, table/inc/TTableDescriptor.h,
	  table/inc/TTableIter.h, table/inc/TTableMap.h,
	  table/inc/TTablePadView3D.h, table/inc/TTablePoints.h,
	  table/inc/TTableSorter.h, table/inc/TVolume.h,
	  table/inc/TVolumePosition.h, table/inc/TVolumeView.h,
	  table/inc/TVolumeViewIter.h, table/inc/Ttypes.h,
	  table/inc/tableDescriptor.h, table/src/TCernLib.cxx,
	  table/src/TChair.cxx, table/src/TColumnView.cxx,
	  table/src/TDataSet.cxx, table/src/TDataSetIter.cxx,
	  table/src/TDsKey.cxx, table/src/TFileIter.cxx,
	  table/src/TFileSet.cxx, table/src/TGenericTable.cxx,
	  table/src/TIndexTable.cxx, table/src/TObjectSet.cxx,
	  table/src/TPoints3D.cxx, table/src/TPointsArray3D.cxx,
	  table/src/TPolyLineShape.cxx, table/src/TResponseTable.cxx,
	  table/src/TTable.cxx, table/src/TTable3Points.cxx,
	  table/src/TTableDescriptor.cxx, table/src/TTableIter.cxx,
	  table/src/TTableMap.cxx, table/src/TTablePadView3D.cxx,
	  table/src/TTablePoints.cxx, table/src/TTableSorter.cxx,
	  table/src/TVolume.cxx, table/src/TVolumePosition.cxx,
	  table/src/TVolumeView.cxx, table/src/TVolumeViewIter.cxx,
	  test/Aclock.cxx, test/Aclock.h, test/DrawTest.sh, test/Event.cxx,
	  test/Event.h, test/EventLinkDef.h, test/GetWebHistogram.C,
	  test/Hello.cxx, test/Hello.h, test/MainEvent.cxx, test/Makefile,
	  test/Makefile.arch, test/Makefile.win32,
	  test/ProofBench/Draw_PerfProfiles.C,
	  test/ProofBench/Draw_Slave_Access.C,
	  test/ProofBench/Draw_Time_Hists.C,
	  test/ProofBench/EventTree_NoProc.C,
	  test/ProofBench/EventTree_NoProc.h,
	  test/ProofBench/EventTree_Proc.C,
	  test/ProofBench/EventTree_Proc.h,
	  test/ProofBench/EventTree_ProcOpt.C,
	  test/ProofBench/EventTree_ProcOpt.h,
	  test/ProofBench/Makefile_event, test/ProofBench/Run_Node_Tests.C,
	  test/ProofBench/Run_Simple_Test.C,
	  test/ProofBench/SavePerfInfo.C,
	  test/ProofBench/make_event_par.sh,
	  test/ProofBench/make_event_trees.C, test/ProofBench/make_tdset.C,
	  test/QpRandomDriver.cxx, test/RootIDE/LinkDef.h,
	  test/RootIDE/Makefile, test/RootIDE/TGRootIDE.cxx,
	  test/RootIDE/TGRootIDE.h, test/RootIDE/main.cxx,
	  test/RootShower/GButtonFrame.cxx, test/RootShower/GButtonFrame.h,
	  test/RootShower/GTitleFrame.cxx, test/RootShower/GTitleFrame.h,
	  test/RootShower/Makefile, test/RootShower/MyDetector.cxx,
	  test/RootShower/MyDetector.h, test/RootShower/MyEvent.cxx,
	  test/RootShower/MyEvent.h, test/RootShower/MyParticle.cxx,
	  test/RootShower/MyParticle.h, test/RootShower/ParticlesDef.h,
	  test/RootShower/RSAbout.cxx, test/RootShower/RSAbout.h,
	  test/RootShower/RSHelpText.cxx, test/RootShower/RSHelpText.h,
	  test/RootShower/RSLinkDef.h, test/RootShower/RSMsgBox.cxx,
	  test/RootShower/RSMsgBox.h, test/RootShower/RSVersion.h,
	  test/RootShower/RootShower.cxx, test/RootShower/RootShower.h,
	  test/RootShower/SettingsDlg.cxx, test/RootShower/SettingsDlg.h,
	  test/RootShower/constants.h, test/TBench.cxx, test/TBench.h,
	  test/TestVectors.cxx, test/Tetris.cxx, test/Tetris.h,
	  test/bench.cxx, test/benchLinkDef.h, test/ctorture.cxx,
	  test/dt_DrawTest.C, test/dt_MakeFiles.sh, test/dt_MakeRef.C,
	  test/dt_RunDrawTest.C, test/dt_RunDrawTest.sh, test/dt_build.C,
	  test/dt_wrap.C, test/eventa.cxx, test/eventb.cxx,
	  test/eventload.cxx, test/guitest.cxx, test/guiviewer.cxx,
	  test/guiviewer.h, test/guiviewerLinkDef.h, test/hsimple.cxx,
	  test/hworld.cxx, test/hworld2.cxx, test/minexam.cxx,
	  test/rhtml/LinkDef.h, test/rhtml/Makefile, test/rhtml/rhtml.cxx,
	  test/rhtml/rhtml.h, test/stress.cxx, test/stressEntryList.cxx,
	  test/stressFit.cxx, test/stressGeometry.cxx,
	  test/stressGraphics.cxx, test/stressHepix.cxx,
	  test/stressLinear.cxx, test/stressShapes.cxx,
	  test/stressSpectrum.cxx, test/stressVector.cxx, test/tcollbm.cxx,
	  test/tcollex.cxx, test/test2html.cxx, test/testbits.cxx,
	  test/threads.cxx, test/tstring.cxx, test/vlazy.cxx,
	  test/vmatrix.cxx, test/vvector.cxx, thread/Module.mk,
	  thread/doc/index.txt, thread/inc/LinkDef.h,
	  thread/inc/PosixThreadInc.h, thread/inc/TAtomicCount.h,
	  thread/inc/TAtomicCountGcc.h, thread/inc/TAtomicCountPthread.h,
	  thread/inc/TAtomicCountWin32.h, thread/inc/TCondition.h,
	  thread/inc/TConditionImp.h, thread/inc/TLockFile.h,
	  thread/inc/TMutex.h, thread/inc/TMutexImp.h,
	  thread/inc/TPosixCondition.h, thread/inc/TPosixMutex.h,
	  thread/inc/TPosixThread.h, thread/inc/TPosixThreadFactory.h,
	  thread/inc/TRWLock.h, thread/inc/TSemaphore.h,
	  thread/inc/TThread.h, thread/inc/TThreadFactory.h,
	  thread/inc/TThreadImp.h, thread/inc/TWin32Condition.h,
	  thread/inc/TWin32Mutex.h, thread/inc/TWin32Thread.h,
	  thread/inc/TWin32ThreadFactory.h, thread/src/TCondition.cxx,
	  thread/src/TConditionImp.cxx, thread/src/TLockFile.cxx,
	  thread/src/TMutex.cxx, thread/src/TMutexImp.cxx,
	  thread/src/TPosixCondition.cxx, thread/src/TPosixMutex.cxx,
	  thread/src/TPosixThread.cxx, thread/src/TPosixThreadFactory.cxx,
	  thread/src/TRWLock.cxx, thread/src/TSemaphore.cxx,
	  thread/src/TThread.cxx, thread/src/TThreadFactory.cxx,
	  thread/src/TThreadImp.cxx, thread/src/TWin32Condition.cxx,
	  thread/src/TWin32Mutex.cxx, thread/src/TWin32Thread.cxx,
	  thread/src/TWin32ThreadFactory.cxx, tmva/Module.mk,
	  tmva/doc/index.txt, tmva/inc/BinarySearchTree.h,
	  tmva/inc/BinarySearchTreeNode.h, tmva/inc/BinaryTree.h,
	  tmva/inc/Config.h, tmva/inc/Configurable.h,
	  tmva/inc/CrossEntropy.h, tmva/inc/DataSet.h,
	  tmva/inc/DecisionTree.h, tmva/inc/DecisionTreeNode.h,
	  tmva/inc/Event.h, tmva/inc/Factory.h, tmva/inc/FitterBase.h,
	  tmva/inc/GeneticAlgorithm.h, tmva/inc/GeneticFitter.h,
	  tmva/inc/GeneticGenes.h, tmva/inc/GeneticPopulation.h,
	  tmva/inc/GeneticRange.h, tmva/inc/GiniIndex.h,
	  tmva/inc/IFitterTarget.h, tmva/inc/IMethod.h, tmva/inc/IMetric.h,
	  tmva/inc/Interval.h, tmva/inc/KDEKernel.h, tmva/inc/LinkDef.h,
	  tmva/inc/MCFitter.h, tmva/inc/MethodANNBase.h,
	  tmva/inc/MethodBDT.h, tmva/inc/MethodBase.h,
	  tmva/inc/MethodBayesClassifier.h, tmva/inc/MethodCFMlpANN.h,
	  tmva/inc/MethodCFMlpANN_Utils.h, tmva/inc/MethodCFMlpANN_def.h,
	  tmva/inc/MethodCommittee.h, tmva/inc/MethodCuts.h,
	  tmva/inc/MethodFDA.h, tmva/inc/MethodFisher.h,
	  tmva/inc/MethodHMatrix.h, tmva/inc/MethodKNN.h,
	  tmva/inc/MethodLikelihood.h, tmva/inc/MethodMLP.h,
	  tmva/inc/MethodPDERS.h, tmva/inc/MethodRuleFit.h,
	  tmva/inc/MethodSVM.h, tmva/inc/MethodSeedDistance.h,
	  tmva/inc/MethodTMlpANN.h, tmva/inc/MethodVariable.h,
	  tmva/inc/Methods.h, tmva/inc/MetricEuler.h,
	  tmva/inc/MetricManhattan.h, tmva/inc/MinuitFitter.h,
	  tmva/inc/MinuitWrapper.h, tmva/inc/MisClassificationError.h,
	  tmva/inc/ModulekNN.h, tmva/inc/MsgLogger.h, tmva/inc/Node.h,
	  tmva/inc/NodekNN.h, tmva/inc/Option.h, tmva/inc/PDF.h,
	  tmva/inc/Ranking.h, tmva/inc/Reader.h, tmva/inc/RootFinder.h,
	  tmva/inc/Rule.h, tmva/inc/RuleCut.h, tmva/inc/RuleEnsemble.h,
	  tmva/inc/RuleFit.h, tmva/inc/RuleFitAPI.h,
	  tmva/inc/RuleFitParams.h, tmva/inc/SdivSqrtSplusB.h,
	  tmva/inc/SeedDistance.h, tmva/inc/SeparationBase.h,
	  tmva/inc/SimulatedAnnealing.h,
	  tmva/inc/SimulatedAnnealingFitter.h, tmva/inc/TActivation.h,
	  tmva/inc/TActivationChooser.h, tmva/inc/TActivationIdentity.h,
	  tmva/inc/TActivationRadial.h, tmva/inc/TActivationSigmoid.h,
	  tmva/inc/TActivationTanh.h, tmva/inc/TNeuron.h,
	  tmva/inc/TNeuronInput.h, tmva/inc/TNeuronInputAbs.h,
	  tmva/inc/TNeuronInputChooser.h, tmva/inc/TNeuronInputSqSum.h,
	  tmva/inc/TNeuronInputSum.h, tmva/inc/TSpline1.h,
	  tmva/inc/TSpline2.h, tmva/inc/TSynapse.h, tmva/inc/Timer.h,
	  tmva/inc/Tools.h, tmva/inc/Types.h,
	  tmva/inc/VariableDecorrTransform.h,
	  tmva/inc/VariableIdentityTransform.h, tmva/inc/VariableInfo.h,
	  tmva/inc/VariablePCATransform.h,
	  tmva/inc/VariableTransformBase.h, tmva/inc/Version.h,
	  tmva/inc/Volume.h, tmva/src/BinarySearchTree.cxx,
	  tmva/src/BinarySearchTreeNode.cxx, tmva/src/BinaryTree.cxx,
	  tmva/src/Config.cxx, tmva/src/Configurable.cxx,
	  tmva/src/CrossEntropy.cxx, tmva/src/DataSet.cxx,
	  tmva/src/DecisionTree.cxx, tmva/src/DecisionTreeNode.cxx,
	  tmva/src/Event.cxx, tmva/src/Factory.cxx,
	  tmva/src/FitterBase.cxx, tmva/src/GeneticAlgorithm.cxx,
	  tmva/src/GeneticFitter.cxx, tmva/src/GeneticGenes.cxx,
	  tmva/src/GeneticPopulation.cxx, tmva/src/GeneticRange.cxx,
	  tmva/src/GiniIndex.cxx, tmva/src/IFitterTarget.cxx,
	  tmva/src/IMethod.cxx, tmva/src/IMetric.cxx,
	  tmva/src/Interval.cxx, tmva/src/KDEKernel.cxx,
	  tmva/src/MCFitter.cxx, tmva/src/MethodANNBase.cxx,
	  tmva/src/MethodBDT.cxx, tmva/src/MethodBase.cxx,
	  tmva/src/MethodBayesClassifier.cxx, tmva/src/MethodCFMlpANN.cxx,
	  tmva/src/MethodCFMlpANN_Utils.cxx, tmva/src/MethodCommittee.cxx,
	  tmva/src/MethodCuts.cxx, tmva/src/MethodFDA.cxx,
	  tmva/src/MethodFisher.cxx, tmva/src/MethodHMatrix.cxx,
	  tmva/src/MethodKNN.cxx, tmva/src/MethodLikelihood.cxx,
	  tmva/src/MethodMLP.cxx, tmva/src/MethodPDERS.cxx,
	  tmva/src/MethodRuleFit.cxx, tmva/src/MethodSVM.cxx,
	  tmva/src/MethodSeedDistance.cxx, tmva/src/MethodTMlpANN.cxx,
	  tmva/src/MethodVariable.cxx, tmva/src/MetricEuler.cxx,
	  tmva/src/MetricManhattan.cxx, tmva/src/MinuitFitter.cxx,
	  tmva/src/MinuitWrapper.cxx, tmva/src/MisClassificationError.cxx,
	  tmva/src/ModulekNN.cxx, tmva/src/MsgLogger.cxx,
	  tmva/src/Node.cxx, tmva/src/Option.cxx, tmva/src/PDF.cxx,
	  tmva/src/Ranking.cxx, tmva/src/Reader.cxx,
	  tmva/src/RootFinder.cxx, tmva/src/Rule.cxx, tmva/src/RuleCut.cxx,
	  tmva/src/RuleEnsemble.cxx, tmva/src/RuleFit.cxx,
	  tmva/src/RuleFitAPI.cxx, tmva/src/RuleFitParams.cxx,
	  tmva/src/SdivSqrtSplusB.cxx, tmva/src/SeedDistance.cxx,
	  tmva/src/SeparationBase.cxx, tmva/src/SimulatedAnnealing.cxx,
	  tmva/src/SimulatedAnnealingFitter.cxx,
	  tmva/src/TActivationIdentity.cxx, tmva/src/TActivationRadial.cxx,
	  tmva/src/TActivationSigmoid.cxx, tmva/src/TActivationTanh.cxx,
	  tmva/src/TNeuron.cxx, tmva/src/TSpline1.cxx,
	  tmva/src/TSpline2.cxx, tmva/src/TSynapse.cxx, tmva/src/Timer.cxx,
	  tmva/src/Tools.cxx, tmva/src/Types.cxx,
	  tmva/src/VariableDecorrTransform.cxx,
	  tmva/src/VariableIdentityTransform.cxx,
	  tmva/src/VariableInfo.cxx, tmva/src/VariablePCATransform.cxx,
	  tmva/src/VariableTransformBase.cxx, tmva/src/Volume.cxx,
	  tmva/test/BDT.C, tmva/test/ClassApplication.C,
	  tmva/test/CorrGui.C, tmva/test/TMVAGui.C, tmva/test/TMVAlogon.C,
	  tmva/test/TMVAnalysis.C, tmva/test/TMVAnalysis.py,
	  tmva/test/TMVApplication.C, tmva/test/annconvergencetest.C,
	  tmva/test/compareanapp.C, tmva/test/correlations.C,
	  tmva/test/correlationscatters.C, tmva/test/efficiencies.C,
	  tmva/test/likelihoodrefs.C, tmva/test/loader.C,
	  tmva/test/mutransform.C, tmva/test/mvaeffs.C, tmva/test/mvas.C,
	  tmva/test/mvaweights.C, tmva/test/network.C, tmva/test/plotall.C,
	  tmva/test/probas.C, tmva/test/rulevis.C, tmva/test/rulevisCorr.C,
	  tmva/test/rulevisHists.C, tmva/test/tmvaglob.C,
	  tmva/test/variables.C, tree/Module.mk, tree/doc/index.txt,
	  tree/doc/macros/entrylist_figure1.C,
	  tree/doc/macros/entrylist_figure2.C,
	  tree/doc/macros/entrylistblock_figure1.C, tree/inc/LinkDef.h,
	  tree/inc/LinkDef2.h, tree/inc/TBasket.h, tree/inc/TBasketSQL.h,
	  tree/inc/TBranch.h, tree/inc/TBranchBrowsable.h,
	  tree/inc/TBranchClones.h, tree/inc/TBranchElement.h,
	  tree/inc/TBranchObject.h, tree/inc/TBranchRef.h,
	  tree/inc/TBufferSQL.h, tree/inc/TChain.h,
	  tree/inc/TChainElement.h, tree/inc/TCut.h, tree/inc/TEntryList.h,
	  tree/inc/TEntryListBlock.h, tree/inc/TEntryListFromFile.h,
	  tree/inc/TEventList.h, tree/inc/TFriendElement.h,
	  tree/inc/TLeaf.h, tree/inc/TLeafB.h, tree/inc/TLeafC.h,
	  tree/inc/TLeafD.h, tree/inc/TLeafElement.h, tree/inc/TLeafF.h,
	  tree/inc/TLeafI.h, tree/inc/TLeafL.h, tree/inc/TLeafO.h,
	  tree/inc/TLeafObject.h, tree/inc/TLeafS.h, tree/inc/TNtuple.h,
	  tree/inc/TNtupleD.h, tree/inc/TQueryResult.h,
	  tree/inc/TSelector.h, tree/inc/TSelectorCint.h,
	  tree/inc/TSelectorList.h, tree/inc/TSelectorScalar.h,
	  tree/inc/TTree.h, tree/inc/TTreeCache.h, tree/inc/TTreeCloner.h,
	  tree/inc/TTreeResult.h, tree/inc/TTreeRow.h, tree/inc/TTreeSQL.h,
	  tree/inc/TVirtualIndex.h, tree/inc/TVirtualTreePlayer.h,
	  tree/src/ManualTree2.cxx, tree/src/ManualTree2.h,
	  tree/src/ManualTree2Body.h, tree/src/TBasket.cxx,
	  tree/src/TBasketSQL.cxx, tree/src/TBranch.cxx,
	  tree/src/TBranchBrowsable.cxx, tree/src/TBranchClones.cxx,
	  tree/src/TBranchElement.cxx, tree/src/TBranchObject.cxx,
	  tree/src/TBranchRef.cxx, tree/src/TBufferSQL.cxx,
	  tree/src/TChain.cxx, tree/src/TChainElement.cxx,
	  tree/src/TCut.cxx, tree/src/TEntryList.cxx,
	  tree/src/TEntryListBlock.cxx, tree/src/TEntryListFromFile.cxx,
	  tree/src/TEventList.cxx, tree/src/TFriendElement.cxx,
	  tree/src/TLeaf.cxx, tree/src/TLeafB.cxx, tree/src/TLeafC.cxx,
	  tree/src/TLeafD.cxx, tree/src/TLeafElement.cxx,
	  tree/src/TLeafF.cxx, tree/src/TLeafI.cxx, tree/src/TLeafL.cxx,
	  tree/src/TLeafO.cxx, tree/src/TLeafObject.cxx,
	  tree/src/TLeafS.cxx, tree/src/TNtuple.cxx, tree/src/TNtupleD.cxx,
	  tree/src/TQueryResult.cxx, tree/src/TSelector.cxx,
	  tree/src/TSelectorCint.cxx, tree/src/TSelectorList.cxx,
	  tree/src/TSelectorScalar.cxx, tree/src/TTree.cxx,
	  tree/src/TTreeCache.cxx, tree/src/TTreeCloner.cxx,
	  tree/src/TTreeResult.cxx, tree/src/TTreeRow.cxx,
	  tree/src/TTreeSQL.cxx, tree/src/TVirtualIndex.cxx,
	  tree/src/TVirtualTreePlayer.cxx, treeplayer/Module.mk,
	  treeplayer/inc/LinkDef.h, treeplayer/inc/TBranchProxy.h,
	  treeplayer/inc/TBranchProxyClassDescriptor.h,
	  treeplayer/inc/TBranchProxyDescriptor.h,
	  treeplayer/inc/TBranchProxyDirector.h,
	  treeplayer/inc/TBranchProxyTemplate.h,
	  treeplayer/inc/TChainIndex.h, treeplayer/inc/TFileDrawMap.h,
	  treeplayer/inc/TFormLeafInfo.h,
	  treeplayer/inc/TFormLeafInfoReference.h,
	  treeplayer/inc/TFriendProxy.h,
	  treeplayer/inc/TFriendProxyDescriptor.h,
	  treeplayer/inc/TRefArrayProxy.h, treeplayer/inc/TRefProxy.h,
	  treeplayer/inc/TSelectorDraw.h,
	  treeplayer/inc/TSelectorEntries.h,
	  treeplayer/inc/TTreeDrawArgsParser.h,
	  treeplayer/inc/TTreeFormula.h,
	  treeplayer/inc/TTreeFormulaManager.h,
	  treeplayer/inc/TTreeIndex.h, treeplayer/inc/TTreePlayer.h,
	  treeplayer/inc/TTreeProxyGenerator.h,
	  treeplayer/src/TBranchProxy.cxx,
	  treeplayer/src/TBranchProxyClassDescriptor.cxx,
	  treeplayer/src/TBranchProxyDescriptor.cxx,
	  treeplayer/src/TBranchProxyDirector.cxx,
	  treeplayer/src/TChainIndex.cxx, treeplayer/src/TFileDrawMap.cxx,
	  treeplayer/src/TFormLeafInfo.cxx,
	  treeplayer/src/TFormLeafInfoReference.cxx,
	  treeplayer/src/TFriendProxy.cxx,
	  treeplayer/src/TFriendProxyDescriptor.cxx,
	  treeplayer/src/TRefArrayProxy.cxx, treeplayer/src/TRefProxy.cxx,
	  treeplayer/src/TSelectorDraw.cxx,
	  treeplayer/src/TSelectorEntries.cxx,
	  treeplayer/src/TTreeDrawArgsParser.cxx,
	  treeplayer/src/TTreeFormula.cxx,
	  treeplayer/src/TTreeFormulaManager.cxx,
	  treeplayer/src/TTreeIndex.cxx, treeplayer/src/TTreePlayer.cxx,
	  treeplayer/src/TTreeProxyGenerator.cxx, treeviewer/Module.mk,
	  treeviewer/inc/HelpTextTV.h, treeviewer/inc/LinkDef.h,
	  treeviewer/inc/LinkDefWin32.h, treeviewer/inc/TParallelCoord.h,
	  treeviewer/inc/TParallelCoordEditor.h,
	  treeviewer/inc/TParallelCoordRange.h,
	  treeviewer/inc/TParallelCoordVar.h, treeviewer/inc/TSpider.h,
	  treeviewer/inc/TSpiderEditor.h, treeviewer/inc/TTVLVContainer.h,
	  treeviewer/inc/TTVSession.h, treeviewer/inc/TTreeViewer.h,
	  treeviewer/src/HelpTextTV.cxx, treeviewer/src/TParallelCoord.cxx,
	  treeviewer/src/TParallelCoordEditor.cxx,
	  treeviewer/src/TParallelCoordRange.cxx,
	  treeviewer/src/TParallelCoordVar.cxx, treeviewer/src/TSpider.cxx,
	  treeviewer/src/TSpiderEditor.cxx,
	  treeviewer/src/TTVLVContainer.cxx, treeviewer/src/TTVSession.cxx,
	  treeviewer/src/TTreeViewer.cxx, unix/Module.mk,
	  unix/inc/LinkDef.h, unix/inc/TUnixSystem.h,
	  unix/src/TUnixSystem.cxx, unuran/Module.mk, unuran/doc/index.txt,
	  unuran/inc/LinkDef.h, unuran/inc/TUnuran.h,
	  unuran/inc/TUnuranBaseDist.h, unuran/inc/TUnuranContDist.h,
	  unuran/inc/TUnuranDiscrDist.h, unuran/inc/TUnuranEmpDist.h,
	  unuran/inc/TUnuranMultiContDist.h, unuran/src/TUnuran.cxx,
	  unuran/src/TUnuranContDist.cxx, unuran/src/TUnuranDiscrDist.cxx,
	  unuran/src/TUnuranEmpDist.cxx,
	  unuran/src/TUnuranMultiContDist.cxx, unuran/src/UnuranDistr.h,
	  unuran/src/UnuranDistrAdapter.h, unuran/src/UnuranRng.h,
	  unuran/test/Makefile, unuran/test/unuranDiscrete.cxx,
	  unuran/test/unuranDistr.cxx, unuran/test/unuranHist.cxx,
	  unuran/test/unuranMulti2D.cxx, unuran/test/unuranMultiDim.cxx,
	  unuran/test/unuranSimple.cxx, utils/Module.mk,
	  utils/src/RStl.cxx, utils/src/RStl.h, utils/src/rlibmap.cxx,
	  utils/src/rootcint.cxx, vmc/Module.mk, vmc/doc/index.txt,
	  vmc/inc/LinkDef.h, vmc/inc/TGeoMCGeometry.h,
	  vmc/inc/TMCOptical.h, vmc/inc/TMCParticleType.h,
	  vmc/inc/TMCProcess.h, vmc/inc/TMCVerbose.h, vmc/inc/TPDGCode.h,
	  vmc/inc/TVirtualMC.h, vmc/inc/TVirtualMCApplication.h,
	  vmc/inc/TVirtualMCGeometry.h, vmc/inc/TVirtualMCStack.h,
	  vmc/src/TGeoMCGeometry.cxx, vmc/src/TMCVerbose.cxx,
	  vmc/src/TVirtualMC.cxx, vmc/src/TVirtualMCApplication.cxx,
	  vmc/src/TVirtualMCGeometry.cxx, vmc/src/TVirtualMCStack.cxx,
	  win32gdk/Module.mk, win32gdk/gdk/src/gdk/config.h,
	  win32gdk/gdk/src/gdk/gdk.c, win32gdk/gdk/src/gdk/gdk.h,
	  win32gdk/gdk/src/gdk/gdkcc.h, win32gdk/gdk/src/gdk/gdkcolor.c,
	  win32gdk/gdk/src/gdk/gdkcolor.h,
	  win32gdk/gdk/src/gdk/gdkcompat.h,
	  win32gdk/gdk/src/gdk/gdkconfig.h,
	  win32gdk/gdk/src/gdk/gdkcursor.c,
	  win32gdk/gdk/src/gdk/gdkcursor.h,
	  win32gdk/gdk/src/gdk/gdkcursors.h, win32gdk/gdk/src/gdk/gdkdnd.h,
	  win32gdk/gdk/src/gdk/gdkdraw.c,
	  win32gdk/gdk/src/gdk/gdkdrawable.h,
	  win32gdk/gdk/src/gdk/gdkevents.c,
	  win32gdk/gdk/src/gdk/gdkevents.h, win32gdk/gdk/src/gdk/gdkfont.c,
	  win32gdk/gdk/src/gdk/gdkfont.h, win32gdk/gdk/src/gdk/gdkgc.c,
	  win32gdk/gdk/src/gdk/gdkgc.h, win32gdk/gdk/src/gdk/gdkglobals.c,
	  win32gdk/gdk/src/gdk/gdki18n.h, win32gdk/gdk/src/gdk/gdkim.h,
	  win32gdk/gdk/src/gdk/gdkimage.c, win32gdk/gdk/src/gdk/gdkimage.h,
	  win32gdk/gdk/src/gdk/gdkinput.h,
	  win32gdk/gdk/src/gdk/gdkkeysyms.h,
	  win32gdk/gdk/src/gdk/gdkpixmap.h,
	  win32gdk/gdk/src/gdk/gdkprivate.h,
	  win32gdk/gdk/src/gdk/gdkproperty.h,
	  win32gdk/gdk/src/gdk/gdkrectangle.c,
	  win32gdk/gdk/src/gdk/gdkregion.h, win32gdk/gdk/src/gdk/gdkrgb.c,
	  win32gdk/gdk/src/gdk/gdkrgb.h,
	  win32gdk/gdk/src/gdk/gdkselection.h,
	  win32gdk/gdk/src/gdk/gdktypes.h,
	  win32gdk/gdk/src/gdk/gdkvisual.h,
	  win32gdk/gdk/src/gdk/gdkwindow.c,
	  win32gdk/gdk/src/gdk/gdkwindow.h, win32gdk/gdk/src/gdk/testgdk.c,
	  win32gdk/gdk/src/gdk/win32/gdkcc-win32.c,
	  win32gdk/gdk/src/gdk/win32/gdkcolor-win32.c,
	  win32gdk/gdk/src/gdk/win32/gdkcursor-win32.c,
	  win32gdk/gdk/src/gdk/win32/gdkdnd-win32.c,
	  win32gdk/gdk/src/gdk/win32/gdkdrawable-win32.c,
	  win32gdk/gdk/src/gdk/win32/gdkevents-win32.c,
	  win32gdk/gdk/src/gdk/win32/gdkfont-win32.c,
	  win32gdk/gdk/src/gdk/win32/gdkgc-win32.c,
	  win32gdk/gdk/src/gdk/win32/gdkglobals-win32.c,
	  win32gdk/gdk/src/gdk/win32/gdkim-win32.c,
	  win32gdk/gdk/src/gdk/win32/gdkimage-win32.c,
	  win32gdk/gdk/src/gdk/win32/gdkinput-win32.c,
	  win32gdk/gdk/src/gdk/win32/gdkinputprivate.h,
	  win32gdk/gdk/src/gdk/win32/gdkmain-win32.c,
	  win32gdk/gdk/src/gdk/win32/gdkpixmap-win32.c,
	  win32gdk/gdk/src/gdk/win32/gdkprivate-win32.h,
	  win32gdk/gdk/src/gdk/win32/gdkproperty-win32.c,
	  win32gdk/gdk/src/gdk/win32/gdkregion-win32.c,
	  win32gdk/gdk/src/gdk/win32/gdkselection-win32.c,
	  win32gdk/gdk/src/gdk/win32/gdkvisual-win32.c,
	  win32gdk/gdk/src/gdk/win32/gdkwin32.h,
	  win32gdk/gdk/src/gdk/win32/gdkwin32id.c,
	  win32gdk/gdk/src/gdk/win32/gdkwindow-win32.c,
	  win32gdk/gdk/src/gdk/win32/surrogate-dimm.h,
	  win32gdk/gdk/src/glib/acconfig.h,
	  win32gdk/gdk/src/glib/g_types.h, win32gdk/gdk/src/glib/galloca.h,
	  win32gdk/gdk/src/glib/garray.h,
	  win32gdk/gdk/src/glib/gasyncqueue.h,
	  win32gdk/gdk/src/glib/gbacktrace.h,
	  win32gdk/gdk/src/glib/gcache.h, win32gdk/gdk/src/glib/gcompat.h,
	  win32gdk/gdk/src/glib/gcompletion.h,
	  win32gdk/gdk/src/glib/gconvert.h,
	  win32gdk/gdk/src/glib/gdataset.h, win32gdk/gdk/src/glib/gdate.h,
	  win32gdk/gdk/src/glib/gerror.h,
	  win32gdk/gdk/src/glib/gfileutils.h,
	  win32gdk/gdk/src/glib/ghash.h, win32gdk/gdk/src/glib/ghook.h,
	  win32gdk/gdk/src/glib/giochannel.h,
	  win32gdk/gdk/src/glib/glib-object.h,
	  win32gdk/gdk/src/glib/glib.h, win32gdk/gdk/src/glib/glibconfig.h,
	  win32gdk/gdk/src/glib/glist.h, win32gdk/gdk/src/glib/gmacros.h,
	  win32gdk/gdk/src/glib/gmain.h, win32gdk/gdk/src/glib/gmarkup.h,
	  win32gdk/gdk/src/glib/gmem.h, win32gdk/gdk/src/glib/gmessages.h,
	  win32gdk/gdk/src/glib/gnode.h, win32gdk/gdk/src/glib/gprimes.h,
	  win32gdk/gdk/src/glib/gqsort.h, win32gdk/gdk/src/glib/gquark.h,
	  win32gdk/gdk/src/glib/gqueue.h, win32gdk/gdk/src/glib/grand.h,
	  win32gdk/gdk/src/glib/grel.h, win32gdk/gdk/src/glib/gscanner.h,
	  win32gdk/gdk/src/glib/gshell.h, win32gdk/gdk/src/glib/gslist.h,
	  win32gdk/gdk/src/glib/gspawn.h,
	  win32gdk/gdk/src/glib/gstrfuncs.h,
	  win32gdk/gdk/src/glib/gstring.h, win32gdk/gdk/src/glib/gthread.h,
	  win32gdk/gdk/src/glib/gthreadpool.h,
	  win32gdk/gdk/src/glib/gtimer.h, win32gdk/gdk/src/glib/gtree.h,
	  win32gdk/gdk/src/glib/gunibreak.h,
	  win32gdk/gdk/src/glib/gunichartables.h,
	  win32gdk/gdk/src/glib/gunicode.h,
	  win32gdk/gdk/src/glib/gunidecomp.h,
	  win32gdk/gdk/src/glib/gutils.h, win32gdk/gdk/src/glib/gwin32.h,
	  win32gdk/inc/LinkDef.h, win32gdk/inc/TGWin32.h,
	  win32gdk/inc/TGWin32GL.h, win32gdk/inc/TGWin32InterpreterProxy.h,
	  win32gdk/inc/TGWin32ProxyBase.h, win32gdk/inc/TGWin32ProxyDefs.h,
	  win32gdk/inc/TGWin32VirtualGLProxy.h,
	  win32gdk/inc/TGWin32VirtualXProxy.h, win32gdk/inc/xatom.h,
	  win32gdk/src/TGWin32.cxx, win32gdk/src/TGWin32GL.cxx,
	  win32gdk/src/TGWin32InterpreterProxy.cxx,
	  win32gdk/src/TGWin32ProxyBase.cxx,
	  win32gdk/src/TGWin32VirtualGLProxy.cxx,
	  win32gdk/src/TGWin32VirtualXProxy.cxx, win32gdk/src/gifdecode.c,
	  win32gdk/src/gifencode.c, win32gdk/src/gifquantize.c,
	  winnt/Module.mk, winnt/inc/LinkDef.h,
	  winnt/inc/TWin32SplashThread.h, winnt/inc/TWinNTSystem.h,
	  winnt/inc/Win32Constants.h, winnt/src/TWin32SplashThread.cxx,
	  winnt/src/TWinNTSystem.cxx, winnt/src/Win32Splash.cxx,
	  x11/Module.mk, x11/inc/LinkDef.h, x11/inc/TGX11.h, x11/inc/Xpm.h,
	  x11/src/GX11Gui.cxx, x11/src/Rotated.cxx, x11/src/TGX11.cxx,
	  x11/src/gifdecode.c, x11/src/gifencode.c, x11/src/gifquantize.c,
	  x11ttf/Module.mk, x11ttf/inc/LinkDef.h, x11ttf/inc/TGX11TTF.h,
	  x11ttf/src/TGX11TTF.cxx, x3d/Module.mk, x3d/inc/LinkDef.h,
	  x3d/inc/TViewerX3D.h, x3d/inc/TX3DFrame.h, x3d/inc/x3d.h,
	  x3d/src/TViewerX3D.cxx, x3d/src/TX3DFrame.cxx, x3d/src/x3d.c,
	  xml/Module.mk, xml/inc/LinkDef.h, xml/inc/TBufferXML.h,
	  xml/inc/TKeyXML.h, xml/inc/TXMLEngine.h, xml/inc/TXMLFile.h,
	  xml/inc/TXMLPlayer.h, xml/inc/TXMLSetup.h,
	  xml/src/TBufferXML.cxx, xml/src/TKeyXML.cxx,
	  xml/src/TXMLEngine.cxx, xml/src/TXMLFile.cxx,
	  xml/src/TXMLPlayer.cxx, xml/src/TXMLSetup.cxx,
	  xmlparser/Module.mk, xmlparser/inc/LinkDef.h,
	  xmlparser/inc/TDOMParser.h, xmlparser/inc/TSAXParser.h,
	  xmlparser/inc/TXMLAttr.h, xmlparser/inc/TXMLDocument.h,
	  xmlparser/inc/TXMLNode.h, xmlparser/inc/TXMLParser.h,
	  xmlparser/src/TDOMParser.cxx, xmlparser/src/TSAXParser.cxx,
	  xmlparser/src/TXMLAttr.cxx, xmlparser/src/TXMLDocument.cxx,
	  xmlparser/src/TXMLNode.cxx, xmlparser/src/TXMLParser.cxx,
	  xrootd/Module.mk, zip/Module.mk, zip/inc/Bits.h,
	  zip/inc/Tailor.h, zip/inc/ZDeflate.h, zip/inc/ZIP.h,
	  zip/inc/ZTrees.h, zip/inc/crc32.h, zip/inc/deflate.h,
	  zip/inc/inffast.h, zip/inc/inffixed.h, zip/inc/inflate.h,
	  zip/inc/inftrees.h, zip/inc/trees.h, zip/inc/zconf.h,
	  zip/inc/zlib.h, zip/inc/zutil.h, zip/src/ZDeflate.c,
	  zip/src/ZInflate.c, zip/src/adler32.c, zip/src/compress.c,
	  zip/src/crc32.c, zip/src/deflate.c, zip/src/gzio.c,
	  zip/src/infback.c, zip/src/inffast.c, zip/src/inflate.c,
	  zip/src/inftrees.c, zip/src/trees.c, zip/src/uncompr.c,
	  zip/src/zutil.c: Set property svn:eol-style LF on all source and
	  Makefiles. This should avoid
	  problems with Win32 line endings ending up in the repository. All
	  MS tools
	  support LF eols fine.

2007-11-19 11:23  rdm

	* [r20881] tutorials/MyTasks.cxx, tutorials/benchmarks.C,
	  tutorials/demos.C, tutorials/demoshelp.C, tutorials/fft/FFT.C,
	  tutorials/fit/ConfidenceIntervals.C,
	  tutorials/fit/ErrorIntegral.C, tutorials/fit/FittingDemo.C,
	  tutorials/fit/Ifit.C, tutorials/fit/RoofitDemo.C,
	  tutorials/fit/TestBinomial.C, tutorials/fit/TwoHistoFit2D.C,
	  tutorials/fit/fit1.C, tutorials/fit/fit1_C.C,
	  tutorials/fit/fit2.C, tutorials/fit/fit2a.C,
	  tutorials/fit/fit2d.C, tutorials/fit/fit2dHist.C,
	  tutorials/fit/fitCircle.C, tutorials/fit/fitExclude.C,
	  tutorials/fit/fitLinear.C, tutorials/fit/fitLinear2.C,
	  tutorials/fit/fitLinearRobust.C, tutorials/fit/fitMultiGraph.C,
	  tutorials/fit/fitcont.C, tutorials/fit/fithist.C,
	  tutorials/fit/fitslicesy.C, tutorials/fit/graph2dfit.C,
	  tutorials/fit/langaus.C, tutorials/fit/minuit2FitBench.C,
	  tutorials/fit/minuit2FitBench2D.C,
	  tutorials/fit/minuit2GausFit.C, tutorials/fit/multidimfit.C,
	  tutorials/fit/multifit.C, tutorials/fit/myfit.C,
	  tutorials/foam/foam_demo.C, tutorials/foam/foam_demopers.C,
	  tutorials/foam/foam_kanwa.C, tutorials/geant3tasks.C,
	  tutorials/geom/RadioNuclides.C, tutorials/geom/assembly.C,
	  tutorials/geom/building.C, tutorials/geom/cheongwadae.C,
	  tutorials/geom/csgdemo.C, tutorials/geom/geodemo.C,
	  tutorials/geom/geomAlice.C, tutorials/geom/geomAlice_itsv.C,
	  tutorials/geom/geomAtlas.C, tutorials/geom/geomBrahms.C,
	  tutorials/geom/geometry.C, tutorials/geom/lego.C,
	  tutorials/geom/mp3player.C, tutorials/geom/na49.C,
	  tutorials/geom/na49geomfile.C, tutorials/geom/na49view.C,
	  tutorials/geom/robot.C, tutorials/geom/rootgeom.C,
	  tutorials/geom/shapes.C, tutorials/geom/shapesAnim.C,
	  tutorials/geom/south_gate.C, tutorials/geom/station1.C,
	  tutorials/geom/station2.C, tutorials/geom/tank.C,
	  tutorials/geom/xtruDraw.C, tutorials/geom/xtruSamples.C,
	  tutorials/gl/glViewerExercise.C, tutorials/gl/glViewerLOD.C,
	  tutorials/gl/glbox.C, tutorials/gl/gldemos.C,
	  tutorials/gl/glparametric.C, tutorials/gl/glrose.C,
	  tutorials/gl/glsurfaces.C, tutorials/gl/gltf3.C,
	  tutorials/gl/nucleus.C, tutorials/gl/viewer3DLocal.C,
	  tutorials/gl/viewer3DMaster.C, tutorials/graphics/analyze.C,
	  tutorials/graphics/anim.C, tutorials/graphics/archi.C,
	  tutorials/graphics/arrow.C, tutorials/graphics/basic3d.C,
	  tutorials/graphics/canvas.C, tutorials/graphics/compile.C,
	  tutorials/graphics/earth.C, tutorials/graphics/ellipse.C,
	  tutorials/graphics/eval.C, tutorials/graphics/event.C,
	  tutorials/graphics/feynman.C, tutorials/graphics/first.C,
	  tutorials/graphics/formula1.C, tutorials/graphics/framework.C,
	  tutorials/graphics/gaxis.C, tutorials/graphics/gtime.C,
	  tutorials/graphics/latex.C, tutorials/graphics/latex2.C,
	  tutorials/graphics/latex3.C, tutorials/graphics/latex4.C,
	  tutorials/graphics/latex5.C, tutorials/graphics/mandelbrot.C,
	  tutorials/graphics/manyaxis.C,
	  tutorials/graphics/markerwarning.C,
	  tutorials/graphics/piechart.C, tutorials/graphics/pstable.C,
	  tutorials/graphics/psview.C, tutorials/graphics/quarks.C,
	  tutorials/graphics/tornado.C, tutorials/graphics/triangles.C,
	  tutorials/graphs/approx.C, tutorials/graphs/bent.C,
	  tutorials/graphs/exclusiongraph.C,
	  tutorials/graphs/exclusiongraph2.C, tutorials/graphs/gerrors.C,
	  tutorials/graphs/gerrors2.C, tutorials/graphs/graph.C,
	  tutorials/graphs/graph2derrorsfit.C,
	  tutorials/graphs/graphApply.C, tutorials/graphs/graphpolar.C,
	  tutorials/graphs/labels1.C, tutorials/graphs/labels2.C,
	  tutorials/graphs/motorcycle.C, tutorials/graphs/multigraph.C,
	  tutorials/graphs/seism.C, tutorials/graphs/splines.C,
	  tutorials/graphs/surfaces.C, tutorials/graphs/timeonaxis.C,
	  tutorials/graphs/timeonaxis2.C, tutorials/graphs/waves.C,
	  tutorials/graphs/zdemo.C, tutorials/graphs/zones.C,
	  tutorials/gui/CPUMeter.C, tutorials/gui/QtFileDialog.C,
	  tutorials/gui/QtMultiFileDialog.C, tutorials/gui/Slider3Demo.C,
	  tutorials/gui/WorldMap.C, tutorials/gui/buttonChangelabel.C,
	  tutorials/gui/buttonTest.C, tutorials/gui/buttongroupState.C,
	  tutorials/gui/buttonsLayout.C, tutorials/gui/calendar.C,
	  tutorials/gui/customContextMenu.C,
	  tutorials/gui/customTH1Fmenu.C, tutorials/gui/exec3.C,
	  tutorials/gui/games.C, tutorials/gui/guiWithCINT.C,
	  tutorials/gui/guilabels.C, tutorials/gui/guitest.C,
	  tutorials/gui/iconAsXPMData.C, tutorials/gui/listBox.C,
	  tutorials/gui/mditest.C, tutorials/gui/numberEntry.C,
	  tutorials/gui/splitbuttonTest.C,
	  tutorials/gui/splitterHorizontal.C,
	  tutorials/gui/splitterVertical.C, tutorials/gui/statusBar.C,
	  tutorials/gui/textEntries.C, tutorials/hist/ContourList.C,
	  tutorials/hist/DynamicSlice.C, tutorials/hist/FirstContour.C,
	  tutorials/hist/draw2dopt.C, tutorials/hist/exec1.C,
	  tutorials/hist/exec2.C, tutorials/hist/fillrandom.C,
	  tutorials/hist/greyscale.C, tutorials/hist/h1draw.C,
	  tutorials/hist/hbars.C, tutorials/hist/hksimple.C,
	  tutorials/hist/hlabels1.C, tutorials/hist/hlabels2.C,
	  tutorials/hist/hstack.C, tutorials/hist/hsum.C,
	  tutorials/hist/hsumTimer.C, tutorials/hist/logscales.C,
	  tutorials/hist/multicolor.C, tutorials/hist/sparsehist.C,
	  tutorials/hist/transpad.C, tutorials/hist/twoscales.C,
	  tutorials/hsimple.C, tutorials/htmlex.C,
	  tutorials/image/galaxy_image.C, tutorials/image/hist2image.C,
	  tutorials/image/hsumanim.C, tutorials/image/img2pad.C,
	  tutorials/image/imgconv.C, tutorials/image/pad2png.C,
	  tutorials/image/rose_image.C, tutorials/image/trans_graph.C,
	  tutorials/io/copyFiles.C, tutorials/io/dirs.C,
	  tutorials/io/double32.C, tutorials/io/fildir.C,
	  tutorials/io/file.C, tutorials/io/hadd.C,
	  tutorials/io/importCode.C, tutorials/io/loopdir.C,
	  tutorials/io/readCode.C, tutorials/math/Bessel.C,
	  tutorials/math/FeldmanCousins.C, tutorials/math/GammaFun.C,
	  tutorials/math/Legendre.C, tutorials/math/LegendreAssoc.C,
	  tutorials/math/Rolke.C, tutorials/math/binomial.C,
	  tutorials/math/chi2test.C, tutorials/math/exampleFunctor.C,
	  tutorials/math/limit.C, tutorials/math/mathBeta.C,
	  tutorials/math/mathGammaNormal.C, tutorials/math/mathLaplace.C,
	  tutorials/math/mathStudent.C, tutorials/math/mathcoreCDF.C,
	  tutorials/math/mathcoreGenVector.C,
	  tutorials/math/mathcoreSpecFunc.C,
	  tutorials/math/mathcoreStatFunc.C,
	  tutorials/math/mathcoreVectorCollection.C,
	  tutorials/math/mathcoreVectorFloatIO.C,
	  tutorials/math/mathcoreVectorIO.C,
	  tutorials/math/mathmoreIntegration.C,
	  tutorials/math/normalDist.C, tutorials/math/permute.C,
	  tutorials/math/principal.C, tutorials/math/quantiles.C,
	  tutorials/math/tStudent.C, tutorials/math/testrandom.C,
	  tutorials/math/vavilov.C, tutorials/matrix/invertMatrix.C,
	  tutorials/matrix/solveLinear.C, tutorials/mlp/mlpHiggs.C,
	  tutorials/mlp/mlpRegression.C, tutorials/net/LDAPExample.C,
	  tutorials/net/TUriTest.C, tutorials/net/TestAuth.C,
	  tutorials/net/alien.C, tutorials/net/authclient.C,
	  tutorials/net/authserv.C, tutorials/net/hclient.C,
	  tutorials/net/hcons.C, tutorials/net/hprod.C,
	  tutorials/net/hserv.C, tutorials/net/hserv2.C,
	  tutorials/net/pclient.C, tutorials/net/pserv.C,
	  tutorials/net/spy.C, tutorials/net/spyserv.C,
	  tutorials/physics/PhaseSpace.C, tutorials/proof/ProofSimple.C,
	  tutorials/proof/ProofSimple.h, tutorials/proof/finalizeProof.C,
	  tutorials/proof/getProof.C, tutorials/proof/runProof.C,
	  tutorials/pyroot/DynamicSlice.py, tutorials/pyroot/aptuple.txt,
	  tutorials/pyroot/benchmarks.py, tutorials/pyroot/demo.py,
	  tutorials/pyroot/demoshelp.py, tutorials/pyroot/fildir.py,
	  tutorials/pyroot/file.py, tutorials/pyroot/fillrandom.py,
	  tutorials/pyroot/first.py, tutorials/pyroot/fit1.py,
	  tutorials/pyroot/formula1.py, tutorials/pyroot/framework.py,
	  tutorials/pyroot/geometry.py, tutorials/pyroot/gerrors.py,
	  tutorials/pyroot/graph.py, tutorials/pyroot/gui_ex.py,
	  tutorials/pyroot/h1draw.py, tutorials/pyroot/hsimple.py,
	  tutorials/pyroot/hsum.py, tutorials/pyroot/mrt.py,
	  tutorials/pyroot/multifit.py, tutorials/pyroot/na49geomfile.py,
	  tutorials/pyroot/na49view.py, tutorials/pyroot/na49visible.py,
	  tutorials/pyroot/ntuple1.py, tutorials/pyroot/qtexample.py,
	  tutorials/pyroot/rootmarks.py, tutorials/pyroot/shapes.py,
	  tutorials/pyroot/staff.py, tutorials/pyroot/surfaces.py,
	  tutorials/pyroot/test.py, tutorials/pyroot/tornado.py,
	  tutorials/pyroot/tree.py, tutorials/pyroot/zdemo.py,
	  tutorials/pythia/pythiaExample.C, tutorials/quadp/Quad.cxx,
	  tutorials/quadp/Quad.h, tutorials/quadp/portfolio.C,
	  tutorials/regexp.C, tutorials/rootalias.C, tutorials/rootenv.C,
	  tutorials/rootlogoff.C, tutorials/rootlogon.C,
	  tutorials/rootmarks.C, tutorials/spectrum/peaks.C,
	  tutorials/spectrum/peaks2.C,
	  tutorials/spectrum/spectrumpainter.C,
	  tutorials/splot/TestSPlot.C, tutorials/sql/sqlcanvas.C,
	  tutorials/sql/sqlcreatedb.C, tutorials/sql/sqlfilldb.C,
	  tutorials/sql/sqlselect.C, tutorials/sql/sqltables.C,
	  tutorials/tasks.C, tutorials/thread/threads.C,
	  tutorials/thread/threadsh1.C, tutorials/tree/JetEvent.cxx,
	  tutorials/tree/JetEvent.h, tutorials/tree/basic.C,
	  tutorials/tree/basic2.C, tutorials/tree/bill.C,
	  tutorials/tree/cernbuild.C, tutorials/tree/cernstaff.C,
	  tutorials/tree/circular.C, tutorials/tree/clonesA_Event.C,
	  tutorials/tree/clonesA_Event.cxx, tutorials/tree/clonesA_Event.h,
	  tutorials/tree/copytree.C, tutorials/tree/copytree2.C,
	  tutorials/tree/copytree3.C, tutorials/tree/drawsparse.C,
	  tutorials/tree/h1analysis.C, tutorials/tree/h1analysis.h,
	  tutorials/tree/h1analysisProxy.C,
	  tutorials/tree/h1analysisProxy.h,
	  tutorials/tree/h1analysisProxyCut.C, tutorials/tree/h1chain.C,
	  tutorials/tree/hsimpleProxy.C, tutorials/tree/htest.C,
	  tutorials/tree/jets.C, tutorials/tree/ntuple1.C,
	  tutorials/tree/parallelcoord.C, tutorials/tree/spider.C,
	  tutorials/tree/staff.C, tutorials/tree/tcl.C,
	  tutorials/tree/tree.C, tutorials/tree/tree0.C,
	  tutorials/tree/tree1.C, tutorials/tree/tree2.C,
	  tutorials/tree/tree2a.C, tutorials/tree/tree3.C,
	  tutorials/tree/tree4.C, tutorials/tree/treefriend.C,
	  tutorials/tree/tv3.C, tutorials/tree/tvdemo.C,
	  tutorials/unuran/unuranDemo.C, tutorials/unuran/unuranFoamTest.C,
	  tutorials/xml/DOMParsePerson.C, tutorials/xml/DOMRecursive.C,
	  tutorials/xml/SAXHandler.C, tutorials/xml/xmlnewfile.C,
	  tutorials/xml/xmlreadfile.C: Set property svn:eol-style LF on all
	  source and Makefiles. This should avoid
	  problems with Win32 line endings ending up in the repository. All
	  MS tools
	  support LF eols fine.

2007-11-19 11:23  rdm

	* [r20880] minuit2/Module.mk, minuit2/build/Makefile.am,
	  minuit2/build/setup.sh, minuit2/doc/index.txt,
	  minuit2/inc/LinkDef.h, minuit2/inc/Minuit2/ABObj.h,
	  minuit2/inc/Minuit2/ABProd.h, minuit2/inc/Minuit2/ABSum.h,
	  minuit2/inc/Minuit2/ABTypes.h,
	  minuit2/inc/Minuit2/AnalyticalGradientCalculator.h,
	  minuit2/inc/Minuit2/BasicFunctionGradient.h,
	  minuit2/inc/Minuit2/BasicFunctionMinimum.h,
	  minuit2/inc/Minuit2/BasicMinimumError.h,
	  minuit2/inc/Minuit2/BasicMinimumParameters.h,
	  minuit2/inc/Minuit2/BasicMinimumSeed.h,
	  minuit2/inc/Minuit2/BasicMinimumState.h,
	  minuit2/inc/Minuit2/CombinedMinimizer.h,
	  minuit2/inc/Minuit2/CombinedMinimumBuilder.h,
	  minuit2/inc/Minuit2/ContoursError.h,
	  minuit2/inc/Minuit2/DavidonErrorUpdator.h,
	  minuit2/inc/Minuit2/FCNAdapter.h, minuit2/inc/Minuit2/FCNBase.h,
	  minuit2/inc/Minuit2/FCNGradAdapter.h,
	  minuit2/inc/Minuit2/FCNGradientBase.h,
	  minuit2/inc/Minuit2/FumiliBuilder.h,
	  minuit2/inc/Minuit2/FumiliChi2FCN.h,
	  minuit2/inc/Minuit2/FumiliErrorUpdator.h,
	  minuit2/inc/Minuit2/FumiliFCNBase.h,
	  minuit2/inc/Minuit2/FumiliGradientCalculator.h,
	  minuit2/inc/Minuit2/FumiliMaximumLikelihoodFCN.h,
	  minuit2/inc/Minuit2/FumiliMinimizer.h,
	  minuit2/inc/Minuit2/FumiliStandardChi2FCN.h,
	  minuit2/inc/Minuit2/FumiliStandardMaximumLikelihoodFCN.h,
	  minuit2/inc/Minuit2/FunctionGradient.h,
	  minuit2/inc/Minuit2/FunctionMinimizer.h,
	  minuit2/inc/Minuit2/FunctionMinimum.h,
	  minuit2/inc/Minuit2/GenericFunction.h,
	  minuit2/inc/Minuit2/GradientCalculator.h,
	  minuit2/inc/Minuit2/HessianGradientCalculator.h,
	  minuit2/inc/Minuit2/InitialGradientCalculator.h,
	  minuit2/inc/Minuit2/LASymMatrix.h,
	  minuit2/inc/Minuit2/LAVector.h, minuit2/inc/Minuit2/LaInverse.h,
	  minuit2/inc/Minuit2/LaOuterProduct.h,
	  minuit2/inc/Minuit2/LaProd.h, minuit2/inc/Minuit2/LaSum.h,
	  minuit2/inc/Minuit2/MatrixInverse.h,
	  minuit2/inc/Minuit2/MinimumBuilder.h,
	  minuit2/inc/Minuit2/MinimumError.h,
	  minuit2/inc/Minuit2/MinimumErrorUpdator.h,
	  minuit2/inc/Minuit2/MinimumParameters.h,
	  minuit2/inc/Minuit2/MinimumSeed.h,
	  minuit2/inc/Minuit2/MinimumSeedGenerator.h,
	  minuit2/inc/Minuit2/MinimumState.h,
	  minuit2/inc/Minuit2/MinosError.h,
	  minuit2/inc/Minuit2/Minuit2Minimizer.h,
	  minuit2/inc/Minuit2/MinuitParameter.h,
	  minuit2/inc/Minuit2/MnApplication.h,
	  minuit2/inc/Minuit2/MnConfig.h, minuit2/inc/Minuit2/MnContours.h,
	  minuit2/inc/Minuit2/MnCovarianceSqueeze.h,
	  minuit2/inc/Minuit2/MnCross.h, minuit2/inc/Minuit2/MnEigen.h,
	  minuit2/inc/Minuit2/MnFcn.h,
	  minuit2/inc/Minuit2/MnFumiliMinimize.h,
	  minuit2/inc/Minuit2/MnFunctionCross.h,
	  minuit2/inc/Minuit2/MnGlobalCorrelationCoeff.h,
	  minuit2/inc/Minuit2/MnHesse.h,
	  minuit2/inc/Minuit2/MnLineSearch.h,
	  minuit2/inc/Minuit2/MnMachinePrecision.h,
	  minuit2/inc/Minuit2/MnMatrix.h, minuit2/inc/Minuit2/MnMigrad.h,
	  minuit2/inc/Minuit2/MnMinimize.h, minuit2/inc/Minuit2/MnMinos.h,
	  minuit2/inc/Minuit2/MnParabola.h,
	  minuit2/inc/Minuit2/MnParabolaFactory.h,
	  minuit2/inc/Minuit2/MnParabolaPoint.h,
	  minuit2/inc/Minuit2/MnParameterScan.h,
	  minuit2/inc/Minuit2/MnPlot.h, minuit2/inc/Minuit2/MnPosDef.h,
	  minuit2/inc/Minuit2/MnPrint.h,
	  minuit2/inc/Minuit2/MnRefCountedPointer.h,
	  minuit2/inc/Minuit2/MnReferenceCounter.h,
	  minuit2/inc/Minuit2/MnScan.h,
	  minuit2/inc/Minuit2/MnSeedGenerator.h,
	  minuit2/inc/Minuit2/MnSimplex.h,
	  minuit2/inc/Minuit2/MnStrategy.h, minuit2/inc/Minuit2/MnTiny.h,
	  minuit2/inc/Minuit2/MnUserCovariance.h,
	  minuit2/inc/Minuit2/MnUserFcn.h,
	  minuit2/inc/Minuit2/MnUserParameterState.h,
	  minuit2/inc/Minuit2/MnUserParameters.h,
	  minuit2/inc/Minuit2/MnUserTransformation.h,
	  minuit2/inc/Minuit2/MnVectorTransform.h,
	  minuit2/inc/Minuit2/ModularFunctionMinimizer.h,
	  minuit2/inc/Minuit2/NegativeG2LineSearch.h,
	  minuit2/inc/Minuit2/Numerical2PGradientCalculator.h,
	  minuit2/inc/Minuit2/ParametricFunction.h,
	  minuit2/inc/Minuit2/ScanBuilder.h,
	  minuit2/inc/Minuit2/ScanMinimizer.h,
	  minuit2/inc/Minuit2/SimplexBuilder.h,
	  minuit2/inc/Minuit2/SimplexMinimizer.h,
	  minuit2/inc/Minuit2/SimplexParameters.h,
	  minuit2/inc/Minuit2/SimplexSeedGenerator.h,
	  minuit2/inc/Minuit2/SinParameterTransformation.h,
	  minuit2/inc/Minuit2/SqrtLowParameterTransformation.h,
	  minuit2/inc/Minuit2/SqrtUpParameterTransformation.h,
	  minuit2/inc/Minuit2/StackAllocator.h,
	  minuit2/inc/Minuit2/VariableMetricBuilder.h,
	  minuit2/inc/Minuit2/VariableMetricEDMEstimator.h,
	  minuit2/inc/Minuit2/VariableMetricMinimizer.h,
	  minuit2/inc/Minuit2/VectorOuterProduct.h,
	  minuit2/inc/TBinLikelihoodFCN.h, minuit2/inc/TChi2ExtendedFCN.h,
	  minuit2/inc/TChi2ExtendedFitData.h, minuit2/inc/TChi2FCN.h,
	  minuit2/inc/TChi2FitData.h, minuit2/inc/TFcnAdapter.h,
	  minuit2/inc/TFitterFumili.h, minuit2/inc/TFitterMinuit.h,
	  minuit2/inc/TFumiliFCN.h,
	  minuit2/src/AnalyticalGradientCalculator.cxx,
	  minuit2/src/BasicMinimumError.cxx,
	  minuit2/src/CombinedMinimumBuilder.cxx,
	  minuit2/src/DavidonErrorUpdator.cxx, minuit2/src/FitterUtil.cxx,
	  minuit2/src/FitterUtil.h, minuit2/src/FumiliBuilder.cxx,
	  minuit2/src/FumiliErrorUpdator.cxx,
	  minuit2/src/FumiliGradientCalculator.cxx,
	  minuit2/src/FumiliMinimizer.cxx,
	  minuit2/src/FumiliStandardChi2FCN.cxx,
	  minuit2/src/FumiliStandardMaximumLikelihoodFCN.cxx,
	  minuit2/src/HessianGradientCalculator.cxx,
	  minuit2/src/InitialGradientCalculator.cxx,
	  minuit2/src/LaEigenValues.cxx, minuit2/src/LaInnerProduct.cxx,
	  minuit2/src/LaInverse.cxx, minuit2/src/LaOuterProduct.cxx,
	  minuit2/src/LaSumOfElements.cxx,
	  minuit2/src/LaVtMVSimilarity.cxx,
	  minuit2/src/Minuit2Minimizer.cxx, minuit2/src/MnApplication.cxx,
	  minuit2/src/MnContours.cxx, minuit2/src/MnCovarianceSqueeze.cxx,
	  minuit2/src/MnEigen.cxx, minuit2/src/MnFcn.cxx,
	  minuit2/src/MnFumiliMinimize.cxx,
	  minuit2/src/MnFunctionCross.cxx,
	  minuit2/src/MnGlobalCorrelationCoeff.cxx,
	  minuit2/src/MnHesse.cxx, minuit2/src/MnLineSearch.cxx,
	  minuit2/src/MnMachinePrecision.cxx, minuit2/src/MnMinos.cxx,
	  minuit2/src/MnParabolaFactory.cxx,
	  minuit2/src/MnParameterScan.cxx, minuit2/src/MnPlot.cxx,
	  minuit2/src/MnPosDef.cxx, minuit2/src/MnPrint.cxx,
	  minuit2/src/MnScan.cxx, minuit2/src/MnSeedGenerator.cxx,
	  minuit2/src/MnStrategy.cxx, minuit2/src/MnTiny.cxx,
	  minuit2/src/MnUserFcn.cxx, minuit2/src/MnUserParameterState.cxx,
	  minuit2/src/MnUserParameters.cxx,
	  minuit2/src/MnUserTransformation.cxx,
	  minuit2/src/ModularFunctionMinimizer.cxx,
	  minuit2/src/NegativeG2LineSearch.cxx,
	  minuit2/src/Numerical2PGradientCalculator.cxx,
	  minuit2/src/ParametricFunction.cxx, minuit2/src/ScanBuilder.cxx,
	  minuit2/src/SimplexBuilder.cxx,
	  minuit2/src/SimplexParameters.cxx,
	  minuit2/src/SimplexSeedGenerator.cxx,
	  minuit2/src/SinParameterTransformation.cxx,
	  minuit2/src/SqrtLowParameterTransformation.cxx,
	  minuit2/src/SqrtUpParameterTransformation.cxx,
	  minuit2/src/TBinLikelihoodFCN.cxx,
	  minuit2/src/TChi2ExtendedFCN.cxx,
	  minuit2/src/TChi2ExtendedFitData.cxx, minuit2/src/TChi2FCN.cxx,
	  minuit2/src/TChi2FitData.cxx, minuit2/src/TFcnAdapter.cxx,
	  minuit2/src/TFitterFumili.cxx, minuit2/src/TFitterMinuit.cxx,
	  minuit2/src/TFumiliFCN.cxx,
	  minuit2/src/VariableMetricBuilder.cxx,
	  minuit2/src/VariableMetricEDMEstimator.cxx,
	  minuit2/src/mnbins.cxx, minuit2/src/mndasum.cxx,
	  minuit2/src/mndaxpy.cxx, minuit2/src/mnddot.cxx,
	  minuit2/src/mndscal.cxx, minuit2/src/mndspmv.cxx,
	  minuit2/src/mndspr.cxx, minuit2/src/mnlsame.cxx,
	  minuit2/src/mnteigen.cxx, minuit2/src/mntplot.cxx,
	  minuit2/src/mnvert.cxx, minuit2/src/mnxerbla.cxx,
	  minuit2/test/Makefile, minuit2/test/MnSim/DemoFumili.cxx,
	  minuit2/test/MnSim/DemoGaussSim.cxx,
	  minuit2/test/MnSim/FlatRandomGen.h,
	  minuit2/test/MnSim/GaussDataGen.cxx,
	  minuit2/test/MnSim/GaussDataGen.h,
	  minuit2/test/MnSim/GaussFcn.cxx, minuit2/test/MnSim/GaussFcn.h,
	  minuit2/test/MnSim/GaussFcn2.cxx, minuit2/test/MnSim/GaussFcn2.h,
	  minuit2/test/MnSim/GaussFunction.h,
	  minuit2/test/MnSim/GaussRandomGen.h,
	  minuit2/test/MnSim/GaussianModelFunction.h,
	  minuit2/test/MnSim/PaulTest.cxx,
	  minuit2/test/MnSim/PaulTest2.cxx,
	  minuit2/test/MnSim/PaulTest3.cxx,
	  minuit2/test/MnSim/PaulTest4.cxx,
	  minuit2/test/MnSim/ReneTest.cxx, minuit2/test/MnSim/paul.txt,
	  minuit2/test/MnSim/paul2.txt, minuit2/test/MnSim/paul3.txt,
	  minuit2/test/MnSim/paul4.txt, minuit2/test/MnTutorial/Quad12F.h,
	  minuit2/test/MnTutorial/Quad12FMain.cxx,
	  minuit2/test/MnTutorial/Quad1F.h,
	  minuit2/test/MnTutorial/Quad1FMain.cxx,
	  minuit2/test/MnTutorial/Quad4F.h,
	  minuit2/test/MnTutorial/Quad4FMain.cxx,
	  minuit2/test/MnTutorial/Quad8F.h,
	  minuit2/test/MnTutorial/Quad8FMain.cxx,
	  minuit2/test/testGraph.cxx, minuit2/test/testMinimize.cxx,
	  minuit2/test/testUserFunc.cxx: Set property svn:eol-style LF on
	  all source and Makefiles. This should avoid
	  problems with Win32 line endings ending up in the repository. All
	  MS tools
	  support LF eols fine.

2007-11-19 11:22  rdm

	* [r20879] roofitcore/Module.mk, roofitcore/doc/index.txt,
	  roofitcore/inc/LinkDef1.h, roofitcore/inc/LinkDef2.h,
	  roofitcore/inc/LinkDef3.h, roofitcore/inc/Roo1DTable.h,
	  roofitcore/inc/RooAICRegistry.h,
	  roofitcore/inc/RooAbsAnaConvPdf.h, roofitcore/inc/RooAbsArg.h,
	  roofitcore/inc/RooAbsBinning.h, roofitcore/inc/RooAbsCache.h,
	  roofitcore/inc/RooAbsCacheElement.h,
	  roofitcore/inc/RooAbsCachedPdf.h,
	  roofitcore/inc/RooAbsCategory.h,
	  roofitcore/inc/RooAbsCategoryLValue.h,
	  roofitcore/inc/RooAbsCollection.h, roofitcore/inc/RooAbsData.h,
	  roofitcore/inc/RooAbsFunc.h, roofitcore/inc/RooAbsGenContext.h,
	  roofitcore/inc/RooAbsGoodnessOfFit.h,
	  roofitcore/inc/RooAbsHiddenReal.h,
	  roofitcore/inc/RooAbsIntegrator.h, roofitcore/inc/RooAbsLValue.h,
	  roofitcore/inc/RooAbsMCStudyModule.h,
	  roofitcore/inc/RooAbsOptGoodnessOfFit.h,
	  roofitcore/inc/RooAbsPdf.h, roofitcore/inc/RooAbsProxy.h,
	  roofitcore/inc/RooAbsReal.h, roofitcore/inc/RooAbsRealLValue.h,
	  roofitcore/inc/RooAbsRootFinder.h,
	  roofitcore/inc/RooAbsSelfCachedPdf.h,
	  roofitcore/inc/RooAbsString.h, roofitcore/inc/RooAcceptReject.h,
	  roofitcore/inc/RooAdaptiveGaussKronrodIntegrator1D.h,
	  roofitcore/inc/RooAddGenContext.h, roofitcore/inc/RooAddModel.h,
	  roofitcore/inc/RooAddPdf.h, roofitcore/inc/RooAddition.h,
	  roofitcore/inc/RooArgList.h, roofitcore/inc/RooArgProxy.h,
	  roofitcore/inc/RooArgSet.h, roofitcore/inc/RooBanner.h,
	  roofitcore/inc/RooBinning.h, roofitcore/inc/RooBrentRootFinder.h,
	  roofitcore/inc/RooCacheManager.h, roofitcore/inc/RooCachedPdf.h,
	  roofitcore/inc/RooCatType.h, roofitcore/inc/RooCategory.h,
	  roofitcore/inc/RooCategoryProxy.h,
	  roofitcore/inc/RooCategorySharedProperties.h,
	  roofitcore/inc/RooChi2Var.h, roofitcore/inc/RooClassFactory.h,
	  roofitcore/inc/RooCmdArg.h, roofitcore/inc/RooCmdConfig.h,
	  roofitcore/inc/RooComplex.h, roofitcore/inc/RooConstVar.h,
	  roofitcore/inc/RooConvCoefVar.h,
	  roofitcore/inc/RooConvGenContext.h,
	  roofitcore/inc/RooConvIntegrandBinding.h,
	  roofitcore/inc/RooCurve.h, roofitcore/inc/RooCustomizer.h,
	  roofitcore/inc/RooDLLSignificanceMCSModule.h,
	  roofitcore/inc/RooDataHist.h,
	  roofitcore/inc/RooDataHistSliceIter.h,
	  roofitcore/inc/RooDataProjBinding.h, roofitcore/inc/RooDataSet.h,
	  roofitcore/inc/RooDataSetSliceIter.h,
	  roofitcore/inc/RooDirItem.h, roofitcore/inc/RooDouble.h,
	  roofitcore/inc/RooEffGenContext.h, roofitcore/inc/RooEffProd.h,
	  roofitcore/inc/RooEfficiency.h, roofitcore/inc/RooEllipse.h,
	  roofitcore/inc/RooErrorHandler.h, roofitcore/inc/RooErrorVar.h,
	  roofitcore/inc/RooExtendPdf.h, roofitcore/inc/RooExtendedTerm.h,
	  roofitcore/inc/RooFFTConvPdf.h, roofitcore/inc/RooFit.h,
	  roofitcore/inc/RooFitCore_LinkDef.h,
	  roofitcore/inc/RooFitResult.h, roofitcore/inc/RooFormula.h,
	  roofitcore/inc/RooFormulaVar.h,
	  roofitcore/inc/RooGaussKronrodIntegrator1D.h,
	  roofitcore/inc/RooGenCategory.h, roofitcore/inc/RooGenContext.h,
	  roofitcore/inc/RooGenProdProj.h, roofitcore/inc/RooGenericPdf.h,
	  roofitcore/inc/RooGlobalFunc.h, roofitcore/inc/RooGraphEdge.h,
	  roofitcore/inc/RooGraphNode.h, roofitcore/inc/RooGraphSpring.h,
	  roofitcore/inc/RooGrid.h, roofitcore/inc/RooHashTable.h,
	  roofitcore/inc/RooHist.h, roofitcore/inc/RooHistError.h,
	  roofitcore/inc/RooHistPdf.h, roofitcore/inc/RooHtml.h,
	  roofitcore/inc/RooImproperIntegrator1D.h,
	  roofitcore/inc/RooInt.h, roofitcore/inc/RooIntegrator1D.h,
	  roofitcore/inc/RooIntegrator2D.h,
	  roofitcore/inc/RooIntegratorBinding.h,
	  roofitcore/inc/RooInvTransform.h,
	  roofitcore/inc/RooLinTransBinning.h,
	  roofitcore/inc/RooLinearVar.h, roofitcore/inc/RooLinkedList.h,
	  roofitcore/inc/RooLinkedListElem.h,
	  roofitcore/inc/RooLinkedListIter.h, roofitcore/inc/RooList.h,
	  roofitcore/inc/RooListProxy.h, roofitcore/inc/RooMCIntegrator.h,
	  roofitcore/inc/RooMCStudy.h, roofitcore/inc/RooMPSentinel.h,
	  roofitcore/inc/RooMapCatEntry.h,
	  roofitcore/inc/RooMappedCategory.h, roofitcore/inc/RooMath.h,
	  roofitcore/inc/RooMinuit.h, roofitcore/inc/RooMsgService.h,
	  roofitcore/inc/RooMultiCatIter.h,
	  roofitcore/inc/RooMultiCategory.h, roofitcore/inc/RooNLLVar.h,
	  roofitcore/inc/RooNameReg.h, roofitcore/inc/RooNameSet.h,
	  roofitcore/inc/RooNormListManager.h,
	  roofitcore/inc/RooNormManager.h,
	  roofitcore/inc/RooNormSetCache.h, roofitcore/inc/RooNumConvPdf.h,
	  roofitcore/inc/RooNumConvolution.h,
	  roofitcore/inc/RooNumIntConfig.h,
	  roofitcore/inc/RooNumIntFactory.h, roofitcore/inc/RooNumber.h,
	  roofitcore/inc/RooObjCacheManager.h, roofitcore/inc/RooPlot.h,
	  roofitcore/inc/RooPlotable.h, roofitcore/inc/RooPolyVar.h,
	  roofitcore/inc/RooPrintable.h,
	  roofitcore/inc/RooProdGenContext.h, roofitcore/inc/RooProdPdf.h,
	  roofitcore/inc/RooProduct.h, roofitcore/inc/RooProfileLL.h,
	  roofitcore/inc/RooProjectedPdf.h, roofitcore/inc/RooPullVar.h,
	  roofitcore/inc/RooQuasiRandomGenerator.h,
	  roofitcore/inc/RooRandom.h,
	  roofitcore/inc/RooRandomizeParamMCSModule.h,
	  roofitcore/inc/RooRangeBinning.h,
	  roofitcore/inc/RooRealAnalytic.h,
	  roofitcore/inc/RooRealBinding.h,
	  roofitcore/inc/RooRealConstant.h,
	  roofitcore/inc/RooRealIntegral.h, roofitcore/inc/RooRealMPFE.h,
	  roofitcore/inc/RooRealProxy.h, roofitcore/inc/RooRealSumPdf.h,
	  roofitcore/inc/RooRealVar.h,
	  roofitcore/inc/RooRealVarSharedProperties.h,
	  roofitcore/inc/RooRefCountList.h,
	  roofitcore/inc/RooResolutionModel.h,
	  roofitcore/inc/RooScaledFunc.h,
	  roofitcore/inc/RooSegmentedIntegrator1D.h,
	  roofitcore/inc/RooSegmentedIntegrator2D.h,
	  roofitcore/inc/RooSetPair.h, roofitcore/inc/RooSetProxy.h,
	  roofitcore/inc/RooSharedProperties.h,
	  roofitcore/inc/RooSharedPropertiesList.h,
	  roofitcore/inc/RooSimGenContext.h,
	  roofitcore/inc/RooSimPdfBuilder.h,
	  roofitcore/inc/RooSimultaneous.h,
	  roofitcore/inc/RooStreamParser.h, roofitcore/inc/RooStringVar.h,
	  roofitcore/inc/RooSuperCategory.h, roofitcore/inc/RooTObjWrap.h,
	  roofitcore/inc/RooTable.h, roofitcore/inc/RooThreshEntry.h,
	  roofitcore/inc/RooThresholdCategory.h, roofitcore/inc/RooTrace.h,
	  roofitcore/inc/RooTreeData.h, roofitcore/inc/RooTruthModel.h,
	  roofitcore/inc/RooUniformBinning.h,
	  roofitcore/inc/RooWorkspace.h, roofitcore/src/Roo1DTable.cxx,
	  roofitcore/src/RooAICRegistry.cxx,
	  roofitcore/src/RooAbsAnaConvPdf.cxx,
	  roofitcore/src/RooAbsArg.cxx, roofitcore/src/RooAbsBinning.cxx,
	  roofitcore/src/RooAbsCache.cxx,
	  roofitcore/src/RooAbsCacheElement.cxx,
	  roofitcore/src/RooAbsCachedPdf.cxx,
	  roofitcore/src/RooAbsCategory.cxx,
	  roofitcore/src/RooAbsCategoryLValue.cxx,
	  roofitcore/src/RooAbsCollection.cxx,
	  roofitcore/src/RooAbsData.cxx, roofitcore/src/RooAbsFunc.cxx,
	  roofitcore/src/RooAbsGenContext.cxx,
	  roofitcore/src/RooAbsGoodnessOfFit.cxx,
	  roofitcore/src/RooAbsHiddenReal.cxx,
	  roofitcore/src/RooAbsIntegrator.cxx,
	  roofitcore/src/RooAbsLValue.cxx,
	  roofitcore/src/RooAbsMCStudyModule.cxx,
	  roofitcore/src/RooAbsOptGoodnessOfFit.cxx,
	  roofitcore/src/RooAbsPdf.cxx, roofitcore/src/RooAbsProxy.cxx,
	  roofitcore/src/RooAbsReal.cxx,
	  roofitcore/src/RooAbsRealLValue.cxx,
	  roofitcore/src/RooAbsRootFinder.cxx,
	  roofitcore/src/RooAbsSelfCachedPdf.cxx,
	  roofitcore/src/RooAbsString.cxx,
	  roofitcore/src/RooAcceptReject.cxx,
	  roofitcore/src/RooAdaptiveGaussKronrodIntegrator1D.cxx,
	  roofitcore/src/RooAddGenContext.cxx,
	  roofitcore/src/RooAddModel.cxx, roofitcore/src/RooAddPdf.cxx,
	  roofitcore/src/RooAddition.cxx, roofitcore/src/RooArgList.cxx,
	  roofitcore/src/RooArgProxy.cxx, roofitcore/src/RooArgSet.cxx,
	  roofitcore/src/RooBanner.cxx, roofitcore/src/RooBinning.cxx,
	  roofitcore/src/RooBrentRootFinder.cxx,
	  roofitcore/src/RooCacheManager.cxx,
	  roofitcore/src/RooCachedPdf.cxx, roofitcore/src/RooCatType.cxx,
	  roofitcore/src/RooCategory.cxx,
	  roofitcore/src/RooCategoryProxy.cxx,
	  roofitcore/src/RooCategorySharedProperties.cxx,
	  roofitcore/src/RooChi2Var.cxx,
	  roofitcore/src/RooClassFactory.cxx, roofitcore/src/RooCmdArg.cxx,
	  roofitcore/src/RooCmdConfig.cxx, roofitcore/src/RooComplex.cxx,
	  roofitcore/src/RooConstVar.cxx,
	  roofitcore/src/RooConvCoefVar.cxx,
	  roofitcore/src/RooConvGenContext.cxx,
	  roofitcore/src/RooConvIntegrandBinding.cxx,
	  roofitcore/src/RooCurve.cxx, roofitcore/src/RooCustomizer.cxx,
	  roofitcore/src/RooDLLSignificanceMCSModule.cxx,
	  roofitcore/src/RooDataHist.cxx,
	  roofitcore/src/RooDataHistSliceIter.cxx,
	  roofitcore/src/RooDataProjBinding.cxx,
	  roofitcore/src/RooDataSet.cxx, roofitcore/src/RooDirItem.cxx,
	  roofitcore/src/RooDouble.cxx,
	  roofitcore/src/RooEffGenContext.cxx,
	  roofitcore/src/RooEffProd.cxx, roofitcore/src/RooEfficiency.cxx,
	  roofitcore/src/RooEllipse.cxx, roofitcore/src/RooErrorVar.cxx,
	  roofitcore/src/RooExtendPdf.cxx,
	  roofitcore/src/RooExtendedTerm.cxx,
	  roofitcore/src/RooFFTConvPdf.cxx,
	  roofitcore/src/RooFitResult.cxx, roofitcore/src/RooFormula.cxx,
	  roofitcore/src/RooFormulaVar.cxx,
	  roofitcore/src/RooGaussKronrodIntegrator1D.cxx,
	  roofitcore/src/RooGenCategory.cxx,
	  roofitcore/src/RooGenContext.cxx,
	  roofitcore/src/RooGenProdProj.cxx,
	  roofitcore/src/RooGenericPdf.cxx,
	  roofitcore/src/RooGlobalFunc.cxx,
	  roofitcore/src/RooGraphEdge.cxx, roofitcore/src/RooGraphNode.cxx,
	  roofitcore/src/RooGraphSpring.cxx, roofitcore/src/RooGrid.cxx,
	  roofitcore/src/RooHashTable.cxx, roofitcore/src/RooHist.cxx,
	  roofitcore/src/RooHistError.cxx, roofitcore/src/RooHistPdf.cxx,
	  roofitcore/src/RooHtml.cxx,
	  roofitcore/src/RooImproperIntegrator1D.cxx,
	  roofitcore/src/RooInt.cxx, roofitcore/src/RooIntegrator1D.cxx,
	  roofitcore/src/RooIntegrator2D.cxx,
	  roofitcore/src/RooIntegratorBinding.cxx,
	  roofitcore/src/RooInvTransform.cxx,
	  roofitcore/src/RooLinTransBinning.cxx,
	  roofitcore/src/RooLinearVar.cxx,
	  roofitcore/src/RooLinkedList.cxx,
	  roofitcore/src/RooLinkedListElem.cxx,
	  roofitcore/src/RooLinkedListIter.cxx, roofitcore/src/RooList.cxx,
	  roofitcore/src/RooListProxy.cxx,
	  roofitcore/src/RooMCIntegrator.cxx,
	  roofitcore/src/RooMCStudy.cxx, roofitcore/src/RooMPSentinel.cxx,
	  roofitcore/src/RooMapCatEntry.cxx,
	  roofitcore/src/RooMappedCategory.cxx, roofitcore/src/RooMath.cxx,
	  roofitcore/src/RooMinuit.cxx, roofitcore/src/RooMsgService.cxx,
	  roofitcore/src/RooMultiCatIter.cxx,
	  roofitcore/src/RooMultiCategory.cxx,
	  roofitcore/src/RooNLLVar.cxx, roofitcore/src/RooNameReg.cxx,
	  roofitcore/src/RooNameSet.cxx,
	  roofitcore/src/RooNormListManager.cxx,
	  roofitcore/src/RooNormManager.cxx,
	  roofitcore/src/RooNormSetCache.cxx,
	  roofitcore/src/RooNumConvPdf.cxx,
	  roofitcore/src/RooNumConvolution.cxx,
	  roofitcore/src/RooNumIntConfig.cxx,
	  roofitcore/src/RooNumIntFactory.cxx,
	  roofitcore/src/RooNumber.cxx,
	  roofitcore/src/RooObjCacheManager.cxx,
	  roofitcore/src/RooPlot.cxx, roofitcore/src/RooPlotable.cxx,
	  roofitcore/src/RooPolyVar.cxx, roofitcore/src/RooPrintable.cxx,
	  roofitcore/src/RooProdGenContext.cxx,
	  roofitcore/src/RooProdPdf.cxx, roofitcore/src/RooProduct.cxx,
	  roofitcore/src/RooProfileLL.cxx,
	  roofitcore/src/RooProjectedPdf.cxx,
	  roofitcore/src/RooPullVar.cxx,
	  roofitcore/src/RooQuasiRandomGenerator.cxx,
	  roofitcore/src/RooRandom.cxx,
	  roofitcore/src/RooRandomizeParamMCSModule.cxx,
	  roofitcore/src/RooRangeBinning.cxx,
	  roofitcore/src/RooRealAnalytic.cxx,
	  roofitcore/src/RooRealBinding.cxx,
	  roofitcore/src/RooRealConstant.cxx,
	  roofitcore/src/RooRealIntegral.cxx,
	  roofitcore/src/RooRealMPFE.cxx, roofitcore/src/RooRealProxy.cxx,
	  roofitcore/src/RooRealSumPdf.cxx, roofitcore/src/RooRealVar.cxx,
	  roofitcore/src/RooRealVarSharedProperties.cxx,
	  roofitcore/src/RooRefCountList.cxx,
	  roofitcore/src/RooResolutionModel.cxx,
	  roofitcore/src/RooScaledFunc.cxx,
	  roofitcore/src/RooSegmentedIntegrator1D.cxx,
	  roofitcore/src/RooSegmentedIntegrator2D.cxx,
	  roofitcore/src/RooSetPair.cxx, roofitcore/src/RooSetProxy.cxx,
	  roofitcore/src/RooSharedProperties.cxx,
	  roofitcore/src/RooSharedPropertiesList.cxx,
	  roofitcore/src/RooSimGenContext.cxx,
	  roofitcore/src/RooSimPdfBuilder.cxx,
	  roofitcore/src/RooSimultaneous.cxx,
	  roofitcore/src/RooStreamParser.cxx,
	  roofitcore/src/RooStringVar.cxx,
	  roofitcore/src/RooSuperCategory.cxx,
	  roofitcore/src/RooTObjWrap.cxx, roofitcore/src/RooTable.cxx,
	  roofitcore/src/RooThreshEntry.cxx,
	  roofitcore/src/RooThresholdCategory.cxx,
	  roofitcore/src/RooTrace.cxx, roofitcore/src/RooTreeData.cxx,
	  roofitcore/src/RooTruthModel.cxx,
	  roofitcore/src/RooUniformBinning.cxx,
	  roofitcore/src/RooWorkspace.cxx: Set property svn:eol-style LF on
	  all source and Makefiles. This should avoid
	  problems with Win32 line endings ending up in the repository. All
	  MS tools
	  support LF eols fine.

2007-11-19 11:22  rdm

	* [r20878] roofit/Module.mk, roofit/doc/index.txt,
	  roofit/inc/LinkDef1.h, roofit/inc/Roo2DKeysPdf.h,
	  roofit/inc/RooArgusBG.h, roofit/inc/RooBCPEffDecay.h,
	  roofit/inc/RooBCPGenDecay.h, roofit/inc/RooBDecay.h,
	  roofit/inc/RooBMixDecay.h, roofit/inc/RooBifurGauss.h,
	  roofit/inc/RooBlindTools.h, roofit/inc/RooBreitWigner.h,
	  roofit/inc/RooBukinPdf.h, roofit/inc/RooCBShape.h,
	  roofit/inc/RooChebychev.h, roofit/inc/RooDecay.h,
	  roofit/inc/RooDstD0BG.h, roofit/inc/RooExponential.h,
	  roofit/inc/RooGExpModel.h, roofit/inc/RooGaussModel.h,
	  roofit/inc/RooGaussian.h, roofit/inc/RooKeysPdf.h,
	  roofit/inc/RooLandau.h, roofit/inc/RooNonCPEigenDecay.h,
	  roofit/inc/RooNovosibirsk.h,
	  roofit/inc/RooParametricStepFunction.h,
	  roofit/inc/RooPolynomial.h, roofit/inc/RooUnblindCPAsymVar.h,
	  roofit/inc/RooUnblindOffset.h, roofit/inc/RooUnblindPrecision.h,
	  roofit/inc/RooUnblindUniform.h, roofit/inc/RooVoigtian.h,
	  roofit/src/Roo2DKeysPdf.cxx, roofit/src/RooArgusBG.cxx,
	  roofit/src/RooBCPEffDecay.cxx, roofit/src/RooBCPGenDecay.cxx,
	  roofit/src/RooBDecay.cxx, roofit/src/RooBMixDecay.cxx,
	  roofit/src/RooBifurGauss.cxx, roofit/src/RooBlindTools.cxx,
	  roofit/src/RooBreitWigner.cxx, roofit/src/RooBukinPdf.cxx,
	  roofit/src/RooCBShape.cxx, roofit/src/RooChebychev.cxx,
	  roofit/src/RooDecay.cxx, roofit/src/RooDstD0BG.cxx,
	  roofit/src/RooExponential.cxx, roofit/src/RooGExpModel.cxx,
	  roofit/src/RooGaussModel.cxx, roofit/src/RooGaussian.cxx,
	  roofit/src/RooKeysPdf.cxx, roofit/src/RooLandau.cxx,
	  roofit/src/RooNonCPEigenDecay.cxx, roofit/src/RooNovosibirsk.cxx,
	  roofit/src/RooParametricStepFunction.cxx,
	  roofit/src/RooPolynomial.cxx, roofit/src/RooUnblindCPAsymVar.cxx,
	  roofit/src/RooUnblindOffset.cxx,
	  roofit/src/RooUnblindPrecision.cxx,
	  roofit/src/RooUnblindUniform.cxx, roofit/src/RooVoigtian.cxx: Set
	  property svn:eol-style LF on all source and Makefiles. This
	  should avoid
	  problems with Win32 line endings ending up in the repository. All
	  MS tools
	  support LF eols fine.

2007-11-19 11:17  rdm

	* [r20877] base/Module.mk, base/doc/macros/fillpatterns.C,
	  base/doc/macros/fonts.C, base/doc/macros/textalign.C,
	  base/doc/macros/textangle.C, base/inc/Bswapcpy.h,
	  base/inc/Buttons.h, base/inc/Bytes.h, base/inc/Byteswap.h,
	  base/inc/DllImport.h, base/inc/GLConstants.h, base/inc/Gtypes.h,
	  base/inc/GuiTypes.h, base/inc/Htypes.h, base/inc/KeySymbols.h,
	  base/inc/LinkDef1.h, base/inc/LinkDef2.h, base/inc/LinkDef3.h,
	  base/inc/LinkDef4.h, base/inc/Match.h, base/inc/MessageTypes.h,
	  base/inc/RConfig.h, base/inc/RQ_OBJECT.h, base/inc/RStipples.h,
	  base/inc/RVersion.h, base/inc/Riosfwd.h, base/inc/Riostream.h,
	  base/inc/Rpair.h, base/inc/Rstrstream.h, base/inc/Rtypeinfo.h,
	  base/inc/Rtypes.h, base/inc/RtypesCint.h, base/inc/RtypesImp.h,
	  base/inc/Strlen.h, base/inc/TApplication.h,
	  base/inc/TApplicationImp.h, base/inc/TAtt3D.h,
	  base/inc/TAttAxis.h, base/inc/TAttBBox.h, base/inc/TAttFill.h,
	  base/inc/TAttLine.h, base/inc/TAttMarker.h, base/inc/TAttPad.h,
	  base/inc/TAttText.h, base/inc/TBenchmark.h, base/inc/TBrowser.h,
	  base/inc/TBrowserImp.h, base/inc/TBuffer.h, base/inc/TBuffer3D.h,
	  base/inc/TBuffer3DTypes.h, base/inc/TCanvasImp.h,
	  base/inc/TColor.h, base/inc/TContextMenu.h,
	  base/inc/TContextMenuImp.h, base/inc/TControlBarImp.h,
	  base/inc/TDatime.h, base/inc/TDirectory.h, base/inc/TEnv.h,
	  base/inc/TError.h, base/inc/TException.h, base/inc/TExec.h,
	  base/inc/TFileCollection.h, base/inc/TFileInfo.h,
	  base/inc/TFolder.h, base/inc/TGuiFactory.h,
	  base/inc/TInetAddress.h, base/inc/TInspectorImp.h,
	  base/inc/TMD5.h, base/inc/TMacro.h, base/inc/TMathBase.h,
	  base/inc/TMemberInspector.h, base/inc/TMessageHandler.h,
	  base/inc/TNamed.h, base/inc/TObjString.h, base/inc/TObject.h,
	  base/inc/TObjectSpy.h, base/inc/TPRegexp.h,
	  base/inc/TParameter.h, base/inc/TPluginManager.h,
	  base/inc/TPoint.h, base/inc/TProcessID.h,
	  base/inc/TProcessUUID.h, base/inc/TQClass.h,
	  base/inc/TQCommand.h, base/inc/TQConnection.h,
	  base/inc/TQObject.h, base/inc/TROOT.h,
	  base/inc/TRedirectOutputGuard.h, base/inc/TRef.h,
	  base/inc/TRefCnt.h, base/inc/TRegexp.h, base/inc/TRemoteObject.h,
	  base/inc/TRootIOCtor.h, base/inc/TStopwatch.h,
	  base/inc/TStorage.h, base/inc/TString.h, base/inc/TStringLong.h,
	  base/inc/TStyle.h, base/inc/TSysEvtHandler.h, base/inc/TSystem.h,
	  base/inc/TSystemDirectory.h, base/inc/TSystemFile.h,
	  base/inc/TTask.h, base/inc/TTime.h, base/inc/TTimeStamp.h,
	  base/inc/TTimer.h, base/inc/TUUID.h, base/inc/TUri.h,
	  base/inc/TUrl.h, base/inc/TVersionCheck.h,
	  base/inc/TVirtualAuth.h, base/inc/TVirtualFFT.h,
	  base/inc/TVirtualFitter.h, base/inc/TVirtualGL.h,
	  base/inc/TVirtualMonitoring.h, base/inc/TVirtualMutex.h,
	  base/inc/TVirtualPS.h, base/inc/TVirtualPad.h,
	  base/inc/TVirtualPadEditor.h, base/inc/TVirtualPerfStats.h,
	  base/inc/TVirtualViewer3D.h, base/inc/TVirtualX.h,
	  base/inc/Varargs.h, base/inc/Windows4Root.h, base/inc/config.h,
	  base/src/InitGui.cxx, base/src/ManualBase4.cxx,
	  base/src/ManualBase4.h, base/src/ManualBase4Body.h,
	  base/src/Match.cxx, base/src/String.cxx, base/src/Stringio.cxx,
	  base/src/TApplication.cxx, base/src/TApplicationImp.cxx,
	  base/src/TAtt3D.cxx, base/src/TAttAxis.cxx,
	  base/src/TAttBBox.cxx, base/src/TAttFill.cxx,
	  base/src/TAttLine.cxx, base/src/TAttMarker.cxx,
	  base/src/TAttPad.cxx, base/src/TAttText.cxx,
	  base/src/TBenchmark.cxx, base/src/TBrowser.cxx,
	  base/src/TBrowserImp.cxx, base/src/TBuffer.cxx,
	  base/src/TBuffer3D.cxx, base/src/TCanvasImp.cxx,
	  base/src/TColor.cxx, base/src/TContextMenu.cxx,
	  base/src/TContextMenuImp.cxx, base/src/TControlBarImp.cxx,
	  base/src/TDatime.cxx, base/src/TDirectory.cxx, base/src/TEnv.cxx,
	  base/src/TError.cxx, base/src/TException.cxx, base/src/TExec.cxx,
	  base/src/TFileCollection.cxx, base/src/TFileInfo.cxx,
	  base/src/TFolder.cxx, base/src/TGuiFactory.cxx,
	  base/src/TInetAddress.cxx, base/src/TInspectorImp.cxx,
	  base/src/TMD5.cxx, base/src/TMacro.cxx, base/src/TMathBase.cxx,
	  base/src/TMemberInspector.cxx, base/src/TMessageHandler.cxx,
	  base/src/TNamed.cxx, base/src/TObjString.cxx,
	  base/src/TObject.cxx, base/src/TObjectSpy.cxx,
	  base/src/TPRegexp.cxx, base/src/TParameter.cxx,
	  base/src/TPluginManager.cxx, base/src/TProcessID.cxx,
	  base/src/TProcessUUID.cxx, base/src/TQCommand.cxx,
	  base/src/TQConnection.cxx, base/src/TQObject.cxx,
	  base/src/TRef.cxx, base/src/TRefCnt.cxx, base/src/TRegexp.cxx,
	  base/src/TRemoteObject.cxx, base/src/TStopwatch.cxx,
	  base/src/TStorage.cxx, base/src/TString.cxx,
	  base/src/TStringLong.cxx, base/src/TStyle.cxx,
	  base/src/TSysEvtHandler.cxx, base/src/TSystem.cxx,
	  base/src/TSystemDirectory.cxx, base/src/TSystemFile.cxx,
	  base/src/TTask.cxx, base/src/TTime.cxx, base/src/TTimeStamp.cxx,
	  base/src/TTimer.cxx, base/src/TUUID.cxx, base/src/TUri.cxx,
	  base/src/TUrl.cxx, base/src/TVirtualFFT.cxx,
	  base/src/TVirtualFitter.cxx, base/src/TVirtualGL.cxx,
	  base/src/TVirtualMonitoring.cxx, base/src/TVirtualMutex.cxx,
	  base/src/TVirtualPS.cxx, base/src/TVirtualPad.cxx,
	  base/src/TVirtualPadEditor.cxx, base/src/TVirtualPerfStats.cxx,
	  base/src/TVirtualViewer3D.cxx, base/src/TVirtualX.cxx,
	  base/src/precompile.cxx: Set property svn:eol-style LF on all
	  source and Makefiles. This should avoid
	  problems with Win32 line endings ending up in the repository. All
	  MS tools
	  support LF eols fine.

2007-11-19 11:16  rdm

	* [r20876] cint7/Cint.mk, cint7/FAQ.txt, cint7/Makefile,
	  cint7/Module.mk, cint7/README.txt, cint7/RELNOTE.txt,
	  cint7/configcint.mk, cint7/demo/README.txt,
	  cint7/demo/Win32App/TestApp/ReadMe.txt,
	  cint7/demo/Win32App/TestApp/StdAfx.cpp,
	  cint7/demo/Win32App/TestApp/StdAfx.h,
	  cint7/demo/Win32App/TestApp/TestApp.cpp,
	  cint7/demo/Win32App/TestApp/TestApp.h,
	  cint7/demo/Win32App/TestApp/resource.h,
	  cint7/demo/Win32App/TestApp/script.cxx,
	  cint7/demo/Win32App/graph01/CompiledLib.c,
	  cint7/demo/Win32App/graph01/CompiledLib.h,
	  cint7/demo/Win32App/graph01/README.txt,
	  cint7/demo/Win32App/graph01/Script.c,
	  cint7/demo/Win32App/graph01/StdAfx.h,
	  cint7/demo/Win32App/graph01/WinMain.c,
	  cint7/demo/Win32App/graph01/WndProc.c,
	  cint7/demo/Win32App/graph01/WndProc.h,
	  cint7/demo/Win32App/graph01/resource.h,
	  cint7/demo/debug/README.txt, cint7/demo/debug/debug.c,
	  cint7/demo/debug/debug2.cxx, cint7/demo/errpipe/README.txt,
	  cint7/demo/errpipe/errpipe.cxx, cint7/demo/errpipe/errpipe.h,
	  cint7/demo/exception/Makefile, cint7/demo/exception/README.txt,
	  cint7/demo/exception/ehdemo.cxx, cint7/demo/exception/ehdemo.h,
	  cint7/demo/gl/README.txt, cint7/demo/gl/display0.h,
	  cint7/demo/gl/display1.h, cint7/demo/gl/display2.h,
	  cint7/demo/gl/test0.c, cint7/demo/gl/test1.c,
	  cint7/demo/gl/test2.c, cint7/demo/graphs/FFT.c,
	  cint7/demo/graphs/README.txt, cint7/demo/graphs/dft.c,
	  cint7/demo/graphs/eular.c, cint7/demo/graphs/fir.c,
	  cint7/demo/graphs/fir2.c, cint7/demo/graphs/jitter.c,
	  cint7/demo/graphs/modulation.c, cint7/demo/graphs/sin.c,
	  cint7/demo/graphs/sin123.c, cint7/demo/graphs/skineffect.c,
	  cint7/demo/graphs/stripline.c, cint7/demo/intprt_cint/cint.sh,
	  cint7/demo/intprt_cint/simple.c,
	  cint7/demo/intprt_cint/simple.cxx,
	  cint7/demo/intprt_cint/testmain.c, cint7/demo/ipc/README.txt,
	  cint7/demo/ipc/common.cxx, cint7/demo/ipc/proc1.cxx,
	  cint7/demo/ipc/proc2.cxx, cint7/demo/makecint/Array/Array.C,
	  cint7/demo/makecint/Array/Array.h,
	  cint7/demo/makecint/Array/Fundament.C,
	  cint7/demo/makecint/Array/Fundament.h,
	  cint7/demo/makecint/Array/Makefile,
	  cint7/demo/makecint/Array/README.txt,
	  cint7/demo/makecint/Array/inherit.C,
	  cint7/demo/makecint/Array/loopcompile.c,
	  cint7/demo/makecint/Array/loopcompile0.c,
	  cint7/demo/makecint/Array/loopcompile1.c,
	  cint7/demo/makecint/Array/test.C,
	  cint7/demo/makecint/Complex/Complex.C,
	  cint7/demo/makecint/Complex/Complex.h,
	  cint7/demo/makecint/Complex/Makefile,
	  cint7/demo/makecint/Complex/README.txt,
	  cint7/demo/makecint/Complex/temp.C,
	  cint7/demo/makecint/Complex/test.C,
	  cint7/demo/makecint/DArray/DArray.C,
	  cint7/demo/makecint/DArray/DArray.h,
	  cint7/demo/makecint/DArray/Makefile,
	  cint7/demo/makecint/DArray/README.txt,
	  cint7/demo/makecint/DArray/test.C,
	  cint7/demo/makecint/KRcc/Complex.c,
	  cint7/demo/makecint/KRcc/Complex.h,
	  cint7/demo/makecint/KRcc/Makefile,
	  cint7/demo/makecint/KRcc/README.txt,
	  cint7/demo/makecint/KRcc/stub.c, cint7/demo/makecint/KRcc/stub.h,
	  cint7/demo/makecint/KRcc/test.c, cint7/demo/makecint/README.txt,
	  cint7/demo/makecint/ReadFile/Common.h,
	  cint7/demo/makecint/ReadFile/Makefile,
	  cint7/demo/makecint/ReadFile/README.txt,
	  cint7/demo/makecint/ReadFile/ReadFile.C,
	  cint7/demo/makecint/ReadFile/ReadFile.h,
	  cint7/demo/makecint/ReadFile/test.C,
	  cint7/demo/makecint/Stub/Makefile,
	  cint7/demo/makecint/Stub/README.txt,
	  cint7/demo/makecint/Stub/Src.C, cint7/demo/makecint/Stub/Src.h,
	  cint7/demo/makecint/Stub/Stub.C, cint7/demo/makecint/Stub/Stub.h,
	  cint7/demo/makecint/Stub2/Make1, cint7/demo/makecint/Stub2/Make2,
	  cint7/demo/makecint/Stub2/README.txt,
	  cint7/demo/makecint/Stub2/compiled.cxx,
	  cint7/demo/makecint/Stub2/compiled.h,
	  cint7/demo/makecint/Stub2/dmy.h,
	  cint7/demo/makecint/Stub2/main.cxx,
	  cint7/demo/makecint/Stub2/stub.h,
	  cint7/demo/makecint/UserMain/README.txt,
	  cint7/demo/makecint/UserMain/UserMain.cxx,
	  cint7/demo/makecint/UserMain/UserMain.h,
	  cint7/demo/makecint/UserMain/script.cxx,
	  cint7/demo/makecint/exception/README.txt,
	  cint7/demo/makecint/exception/eh.cxx,
	  cint7/demo/makecint/exception/eh.h,
	  cint7/demo/makecint/p2f/Makefile,
	  cint7/demo/makecint/p2f/README.txt,
	  cint7/demo/makecint/p2f/p2f.C, cint7/demo/makecint/p2f/p2f.h,
	  cint7/demo/makecint/p2f/test.C, cint7/demo/makecint/stl/Makefile,
	  cint7/demo/makecint/stl/sample.h,
	  cint7/demo/makecint/stl/test.cxx, cint7/demo/mthread/README.txt,
	  cint7/demo/mthread/fork.cxx, cint7/demo/mthread/mtlib.h,
	  cint7/demo/mthread/mtmain.cxx, cint7/demo/mthread/ptlib.h,
	  cint7/demo/mthread/ptmain.cxx,
	  cint7/demo/multilibcint/README.txt,
	  cint7/demo/multilibcint/main.cxx, cint7/demo/multilibcint/mt.c,
	  cint7/demo/multilibcint/mt.h, cint7/demo/multilibcint/test1.cxx,
	  cint7/demo/multilibcint/test2.cxx,
	  cint7/demo/perlawk/parseplot.c, cint7/demo/posix/readdir.cxx,
	  cint7/demo/qt/README.txt, cint7/demo/qt/cannon.cpp,
	  cint7/demo/qt/cannon.h, cint7/demo/qt/lcdrange.cpp,
	  cint7/demo/qt/lcdrange.h, cint7/demo/qt/moc_cannon.cpp,
	  cint7/demo/qt/qcompactstyle.h, cint7/demo/qt/qtstatic.cxx,
	  cint7/demo/qt/test0.cxx, cint7/demo/qt/test1.cxx,
	  cint7/demo/qt/test2.cxx, cint7/demo/qt/test3.cxx,
	  cint7/demo/qt/test4.cxx, cint7/demo/qt/test5.cxx,
	  cint7/demo/qt/test6.cxx, cint7/demo/qt/test7.cxx,
	  cint7/demo/qt/test7.h, cint7/demo/qt/test8.cxx,
	  cint7/demo/qt/test8.h, cint7/demo/qt/test9.cxx,
	  cint7/demo/simple/HelloWorld.c, cint7/demo/simple/HelloWorld.cxx,
	  cint7/demo/simple/NativeCalc.c, cint7/demo/simple/README.txt,
	  cint7/demo/simple/access0.c, cint7/demo/simple/array.c,
	  cint7/demo/simple/csum.c, cint7/demo/simple/inherit1.c,
	  cint7/demo/simple/init.c, cint7/demo/simple/oprovld.c,
	  cint7/demo/simple/oprovld0.c, cint7/demo/simple/scope0.c,
	  cint7/demo/simple/staticmem0.c, cint7/demo/simple/template0.c,
	  cint7/demo/simple/template2.c, cint7/demo/simple/text2tex.c,
	  cint7/demo/simple/virtualfunc1.c, cint7/demo/stl/README.txt,
	  cint7/demo/stl/array2.cxx, cint7/demo/stl/array4.cxx,
	  cint7/demo/stl/deque0.cxx, cint7/demo/stl/deque1.cxx,
	  cint7/demo/stl/deque1i.cxx, cint7/demo/stl/list0.cxx,
	  cint7/demo/stl/list1.cxx, cint7/demo/stl/list2.cxx,
	  cint7/demo/stl/list3.cxx, cint7/demo/stl/list4.cxx,
	  cint7/demo/stl/map0.cxx, cint7/demo/stl/stl0.cxx,
	  cint7/demo/stl/stl1.cxx, cint7/demo/stl/stl2.cxx,
	  cint7/demo/stl/stl3.cxx, cint7/demo/stl/stl3x.cxx,
	  cint7/demo/stl/stl4.cxx, cint7/demo/stl/stl5.cxx,
	  cint7/demo/stl/string0.cxx, cint7/demo/stl/vec0.cxx,
	  cint7/demo/stl/vec1.cxx, cint7/demo/stl/vec1s.cxx,
	  cint7/demo/stl/vec1u.cxx, cint7/demo/stl/vec2.cxx,
	  cint7/demo/stl/vec3.cxx, cint7/demo/stl/vec3t.cxx,
	  cint7/demo/stl/vec4.cxx, cint7/demo/tcpip/README.txt,
	  cint7/demo/tcpip/client.cxx, cint7/demo/tcpip/server.cxx,
	  cint7/demo/xlib/README.txt, cint7/demo/xlib/test.c,
	  cint7/doc/bytecode.txt, cint7/doc/cint.txt,
	  cint7/doc/cintapi.txt, cint7/doc/extlib.txt, cint7/doc/ifdef.txt,
	  cint7/doc/limitati.txt, cint7/doc/limitnum.txt,
	  cint7/doc/makecint.txt, cint7/doc/message.txt, cint7/doc/ref.txt,
	  cint7/inc/Api.h, cint7/inc/BaseCls.h, cint7/inc/CallFunc.h,
	  cint7/inc/Class.h, cint7/inc/DataMbr.h, cint7/inc/G__ci.h,
	  cint7/inc/G__ci_fproto.h, cint7/inc/G__security.h,
	  cint7/inc/Method.h, cint7/inc/MethodAr.h, cint7/inc/Property.h,
	  cint7/inc/Token.h, cint7/inc/Type.h, cint7/inc/Typedf.h,
	  cint7/include/Common.h, cint7/include/GL/gl.h,
	  cint7/include/GL/glu.h, cint7/include/GL/glut.h,
	  cint7/include/GL/xmesa.h, cint7/include/README.txt,
	  cint7/include/ReadF.C, cint7/include/ReadF.cxx,
	  cint7/include/ReadF.h, cint7/include/RegE.C,
	  cint7/include/RegE.cxx, cint7/include/RegE.h,
	  cint7/include/X11/Xlib.h, cint7/include/X11/Xutil.h,
	  cint7/include/X11/keysym.h, cint7/include/X11/xos.h,
	  cint7/include/_complex.h, cint7/include/_exception.h,
	  cint7/include/_stdexcept.h, cint7/include/api.h,
	  cint7/include/array.c, cint7/include/array.h,
	  cint7/include/arrayiostream.h, cint7/include/assert.h,
	  cint7/include/bool.h, cint7/include/boolean.h,
	  cint7/include/carray.c, cint7/include/carray.h,
	  cint7/include/complex.h, cint7/include/constants.h,
	  cint7/include/ctype.h, cint7/include/darray.cxx,
	  cint7/include/darray.h, cint7/include/ertti.h,
	  cint7/include/exception.h, cint7/include/fcntl.h,
	  cint7/include/fft.c, cint7/include/fft.h,
	  cint7/include/fstream.h, cint7/include/graphbuf.h,
	  cint7/include/iomanip.h, cint7/include/iosenum.cxx,
	  cint7/include/iosfwd.h, cint7/include/iostream.h,
	  cint7/include/lsm.c, cint7/include/lsm.h, cint7/include/makeit.c,
	  cint7/include/matrix.cxx, cint7/include/matrix.h,
	  cint7/include/matrixstream.h, cint7/include/mkincld.c,
	  cint7/include/new.h, cint7/include/platform.h,
	  cint7/include/pthread.h, cint7/include/readfile.h,
	  cint7/include/regex.h, cint7/include/regexp.h,
	  cint7/include/setjmp.h, cint7/include/socket.h,
	  cint7/include/spice.h, cint7/include/statistics.c,
	  cint7/include/statistics.h, cint7/include/stdarg.h,
	  cint7/include/stdiostream.h, cint7/include/stream.h,
	  cint7/include/string.h, cint7/include/striostream.h,
	  cint7/include/strstream.h, cint7/include/sys/cdefs.h,
	  cint7/include/sys/file.h, cint7/include/sys/ipc.h,
	  cint7/include/sys/msg.h, cint7/include/sys/sem.h,
	  cint7/include/sys/shm.h, cint7/include/sys/stat.h,
	  cint7/include/termios.h, cint7/include/timespec.h,
	  cint7/include/typeinfo.h, cint7/include/unistd.h,
	  cint7/include/windows.h, cint7/include/winsock.h,
	  cint7/include/xgraph.c, cint7/include/xygraphbuf.h,
	  cint7/lib/Makefile, cint7/lib/README.txt,
	  cint7/lib/WildCard/AppInit.c, cint7/lib/WildCard/Main.c,
	  cint7/lib/WildCard/Main.cxx, cint7/lib/WildCard/Makefile,
	  cint7/lib/WildCard/TCLMACRO.h, cint7/lib/WildCard/TCLTK.h,
	  cint7/lib/WildCard/TKMACRO.h, cint7/lib/WildCard/TOP.h,
	  cint7/lib/WildCard/TclIns.c, cint7/lib/WildCard/TkInit.c,
	  cint7/lib/WildCard/WildCard.c, cint7/lib/WildCard/test.c,
	  cint7/lib/WildCard/tktest.c, cint7/lib/WildCard/tktest1.c,
	  cint7/lib/WildCard/tktest2.c, cint7/lib/accstrm/Makefile,
	  cint7/lib/accstrm/README.txt, cint7/lib/accstrm/fstrm.h,
	  cint7/lib/accstrm/iostrm.h, cint7/lib/accstrm/linkdef.h,
	  cint7/lib/accstrm/sstrm.h, cint7/lib/alphastrm/Makefile,
	  cint7/lib/alphastrm/README.txt, cint7/lib/alphastrm/fstrm.h,
	  cint7/lib/alphastrm/iostrm.h, cint7/lib/alphastrm/linkdef.h,
	  cint7/lib/alphastrm/sstrm.h, cint7/lib/bcstream/Makefile,
	  cint7/lib/bcstream/fstrm.h, cint7/lib/bcstream/iostrm.h,
	  cint7/lib/bcstream/stdiostr.h, cint7/lib/bcstream/strm.h,
	  cint7/lib/bcstream/strstrm.h, cint7/lib/cbstream/Makefile,
	  cint7/lib/cbstream/fstrm.h, cint7/lib/cbstream/iostrm.h,
	  cint7/lib/cbstream/linkdef.h, cint7/lib/cbstream/readme.txt,
	  cint7/lib/cbstream/strstrm.h, cint7/lib/cintocx/CintocxCtl.cpp,
	  cint7/lib/cintocx/CintocxCtl.h, cint7/lib/cintocx/CintocxPpg.cpp,
	  cint7/lib/cintocx/CintocxPpg.h, cint7/lib/cintocx/README.txt,
	  cint7/lib/cintocx/Resource.h, cint7/lib/cintocx/StdAfx.cpp,
	  cint7/lib/cintocx/StdAfx.h, cint7/lib/cintocx/cintocx.cpp,
	  cint7/lib/cintocx/cintocx.h, cint7/lib/dll_stl/README.txt,
	  cint7/lib/dll_stl/cinteh.h, cint7/lib/dll_stl/clim.h,
	  cint7/lib/dll_stl/cmplx.h, cint7/lib/dll_stl/dqu.h,
	  cint7/lib/dll_stl/iter.h, cint7/lib/dll_stl/lst.h,
	  cint7/lib/dll_stl/mp.h, cint7/lib/dll_stl/multmp.h,
	  cint7/lib/dll_stl/multst.h, cint7/lib/dll_stl/pr.h,
	  cint7/lib/dll_stl/que.h, cint7/lib/dll_stl/se.h,
	  cint7/lib/dll_stl/st.h, cint7/lib/dll_stl/stk.h,
	  cint7/lib/dll_stl/str.h, cint7/lib/dll_stl/suncc5_deque.h,
	  cint7/lib/dll_stl/suncc5_string.h, cint7/lib/dll_stl/vary.h,
	  cint7/lib/dll_stl/vec.h, cint7/lib/dll_stl/vecbool.h,
	  cint7/lib/gcc3strm/Makefile, cint7/lib/gcc3strm/README.txt,
	  cint7/lib/gcc3strm/fstrm.h, cint7/lib/gcc3strm/iostrm.h,
	  cint7/lib/gcc3strm/linkdef.h, cint7/lib/gcc3strm/sstrm.h,
	  cint7/lib/gl/GL.h, cint7/lib/gl/README.txt, cint7/lib/gl/TOP.h,
	  cint7/lib/gl/cintGL.h, cint7/lib/iccstrm/Makefile,
	  cint7/lib/iccstrm/README.txt, cint7/lib/iccstrm/fstrm.h,
	  cint7/lib/iccstrm/iostrm.h, cint7/lib/iccstrm/linkdef.h,
	  cint7/lib/iccstrm/sstrm.h, cint7/lib/ipc/README.txt,
	  cint7/lib/ipc/ipcif.h, cint7/lib/longlong/README.txt,
	  cint7/lib/longlong/longdbl.h, cint7/lib/longlong/longlong.h,
	  cint7/lib/posix/README.txt, cint7/lib/posix/exten.c,
	  cint7/lib/posix/exten.h, cint7/lib/posix/mktypes.c,
	  cint7/lib/posix/posix.h, cint7/lib/posix/winposix.c,
	  cint7/lib/posix/winposix.h, cint7/lib/prec_stl/README.txt,
	  cint7/lib/pthread/Makefile, cint7/lib/pthread/README.txt,
	  cint7/lib/pthread/pthd.h, cint7/lib/pthread/thread.h,
	  cint7/lib/qt/Makefile, cint7/lib/qt/README.txt,
	  cint7/lib/qt/qcompactstyle.h, cint7/lib/qt/qconfig.h,
	  cint7/lib/qt/qmodules.h, cint7/lib/qt/qplatformdefs.h,
	  cint7/lib/qt/qtcint.h, cint7/lib/qt/qtclasses.h,
	  cint7/lib/qt/qtdummy.h, cint7/lib/qt/qtfunctions.h,
	  cint7/lib/qt/qtglobals.h, cint7/lib/qt/qtstatic.cxx,
	  cint7/lib/socket/README.txt, cint7/lib/socket/cintsock.c,
	  cint7/lib/socket/cintsock.h, cint7/lib/socket/mksockh.c,
	  cint7/lib/stdstrct/Makefile, cint7/lib/stdstrct/stdcxxfunc.h,
	  cint7/lib/stdstrct/stdfunc.h, cint7/lib/stdstrct/stdstr.h,
	  cint7/lib/stream/Makefile, cint7/lib/stream/fstrm.h,
	  cint7/lib/stream/iostrm.h, cint7/lib/stream/stdiostr.h,
	  cint7/lib/stream/strm.h, cint7/lib/stream/strstrm.h,
	  cint7/lib/sunstrm/Makefile, cint7/lib/sunstrm/fstrm.h,
	  cint7/lib/sunstrm/iostrm.h, cint7/lib/sunstrm/length.cxx,
	  cint7/lib/sunstrm/linkdef.h, cint7/lib/sunstrm/readme.txt,
	  cint7/lib/sunstrm/sstrm.h, cint7/lib/vc7strm/Makefile,
	  cint7/lib/vc7strm/README.txt, cint7/lib/vc7strm/fstrm.h,
	  cint7/lib/vc7strm/iostrm.h, cint7/lib/vc7strm/linkdef.h,
	  cint7/lib/vc7strm/sstrm.h, cint7/lib/vcstream/Makefile,
	  cint7/lib/vcstream/Makefileold, cint7/lib/vcstream/fstrm.h,
	  cint7/lib/vcstream/iostrm.h, cint7/lib/vcstream/stdiostr.h,
	  cint7/lib/vcstream/strm.h, cint7/lib/vcstream/strstrm.h,
	  cint7/lib/win32api/cintwin.h, cint7/lib/win32api/readme.txt,
	  cint7/lib/win32api/winfunc.h, cint7/lib/wintcldl/README.txt,
	  cint7/lib/wintcldl/cintlib.c, cint7/lib/wintcldl/tclmacro.h,
	  cint7/lib/wintcldl/tcltk.h, cint7/lib/wintcldl/test.c,
	  cint7/lib/wintcldl/tkmacro.h, cint7/lib/wintcldl/top.h,
	  cint7/lib/wintcldl83/README.txt, cint7/lib/wintcldl83/cintlib.c,
	  cint7/lib/wintcldl83/tclmacro.h, cint7/lib/wintcldl83/tcltk.h,
	  cint7/lib/wintcldl83/test.c, cint7/lib/wintcldl83/tkmacro.h,
	  cint7/lib/wintcldl83/top.h, cint7/lib/xlib/README.txt,
	  cint7/lib/xlib/TOP.h, cint7/lib/xlib/XLIB.h,
	  cint7/lib/xlib/x11const.h, cint7/lib/xlib/x11mfunc.h,
	  cint7/libCint.mk, cint7/libReflex.mk, cint7/main/G__main.c,
	  cint7/main/G__setup.c, cint7/main/cppmain.cxx, cint7/src/Api.cxx,
	  cint7/src/Apiif.cxx, cint7/src/Apiif.h, cint7/src/BaseCls.cxx,
	  cint7/src/CallFunc.cxx, cint7/src/Class.cxx,
	  cint7/src/DataMbr.cxx, cint7/src/Dict.cxx, cint7/src/Dict.h,
	  cint7/src/Makebcdict, cint7/src/Makefile,
	  cint7/src/Makefile.base, cint7/src/Makefile.base.nec,
	  cint7/src/Makefile.base.sgi, cint7/src/Method.cxx,
	  cint7/src/MethodAr.cxx, cint7/src/README.txt,
	  cint7/src/Shadow.cxx, cint7/src/Token.cxx, cint7/src/Type.cxx,
	  cint7/src/Typedf.cxx, cint7/src/accstrm.cxx, cint7/src/accstrm.h,
	  cint7/src/allstrm.cxx, cint7/src/alphastrm.cxx,
	  cint7/src/alphastrm.h, cint7/src/bc_assign.cxx,
	  cint7/src/bc_assign.h, cint7/src/bc_autoobj.cxx,
	  cint7/src/bc_autoobj.h, cint7/src/bc_cfunc.cxx,
	  cint7/src/bc_cfunc.h, cint7/src/bc_debug.cxx,
	  cint7/src/bc_debug.h, cint7/src/bc_eh.cxx, cint7/src/bc_eh.h,
	  cint7/src/bc_exec.cxx, cint7/src/bc_exec.h,
	  cint7/src/bc_exec_asm.h, cint7/src/bc_inst.cxx,
	  cint7/src/bc_inst.h, cint7/src/bc_item.cxx, cint7/src/bc_item.h,
	  cint7/src/bc_linkdef.h, cint7/src/bc_parse.cxx,
	  cint7/src/bc_parse.h, cint7/src/bc_reader.cxx,
	  cint7/src/bc_reader.h, cint7/src/bc_type.cxx,
	  cint7/src/bc_type.h, cint7/src/bc_vtbl.cxx, cint7/src/bc_vtbl.h,
	  cint7/src/bcstrm.cxx, cint7/src/bcstrm.h, cint7/src/cbstrm.cpp,
	  cint7/src/cbstrm.h, cint7/src/common.h, cint7/src/dllrev.h,
	  cint7/src/fakestrm.cxx, cint7/src/fproto.h, cint7/src/g__cfunc.c,
	  cint7/src/gcc3strm.cxx, cint7/src/gcc3strm.h, cint7/src/global.h,
	  cint7/src/header.h, cint7/src/iccstrm.cxx, cint7/src/iccstrm.h,
	  cint7/src/kccstrm.cxx, cint7/src/kccstrm.h,
	  cint7/src/libstrm.cxx, cint7/src/libstrm.h, cint7/src/longif.cxx,
	  cint7/src/longif.h, cint7/src/longif3.cxx, cint7/src/longif3.h,
	  cint7/src/memo.txt, cint7/src/memo2.txt, cint7/src/memtest.h,
	  cint7/src/newsos.h, cint7/src/precedence.txt,
	  cint7/src/rflx_gendict.cxx, cint7/src/rflx_gendict.h,
	  cint7/src/rflx_gensrc.cxx, cint7/src/rflx_gensrc.h,
	  cint7/src/rflx_tools.cxx, cint7/src/rflx_tools.h,
	  cint7/src/stdstrct.h, cint7/src/sun5strm.cxx, cint7/src/sunos.h,
	  cint7/src/sunstrm.cxx, cint7/src/sunstrm.h, cint7/src/typesym.h,
	  cint7/src/v6_auxu.cxx, cint7/src/v6_cast.cxx,
	  cint7/src/v6_debug.cxx, cint7/src/v6_decl.cxx,
	  cint7/src/v6_disp.cxx, cint7/src/v6_dmyinit.cxx,
	  cint7/src/v6_dmystrct.cxx, cint7/src/v6_dmystrm.cxx,
	  cint7/src/v6_dump.cxx, cint7/src/v6_end.cxx,
	  cint7/src/v6_error.cxx, cint7/src/v6_expr.cxx,
	  cint7/src/v6_fread.cxx, cint7/src/v6_func.cxx,
	  cint7/src/v6_gcoll.cxx, cint7/src/v6_global1.cxx,
	  cint7/src/v6_global2.cxx, cint7/src/v6_ifunc.cxx,
	  cint7/src/v6_inherit.cxx, cint7/src/v6_init.cxx,
	  cint7/src/v6_input.cxx, cint7/src/v6_intrpt.cxx,
	  cint7/src/v6_loadfile.cxx, cint7/src/v6_macos.cxx,
	  cint7/src/v6_macro.cxx, cint7/src/v6_malloc.cxx,
	  cint7/src/v6_memtest.cxx, cint7/src/v6_new.cxx,
	  cint7/src/v6_newlink.cxx, cint7/src/v6_newsos.cxx,
	  cint7/src/v6_oldlink.cxx, cint7/src/v6_opr.cxx,
	  cint7/src/v6_parse.cxx, cint7/src/v6_pause.cxx,
	  cint7/src/v6_pcode.cxx, cint7/src/v6_pragma.cxx,
	  cint7/src/v6_quote.cxx, cint7/src/v6_rflxutil.cxx,
	  cint7/src/v6_scrupto.cxx, cint7/src/v6_shl.cxx,
	  cint7/src/v6_sizeof.cxx, cint7/src/v6_stdstrct.cxx,
	  cint7/src/v6_struct.cxx, cint7/src/v6_stub.cxx,
	  cint7/src/v6_sunos.cxx, cint7/src/v6_tmplt.cxx,
	  cint7/src/v6_typedef.cxx, cint7/src/v6_val2a.cxx,
	  cint7/src/v6_value.cxx, cint7/src/v6_var.cxx,
	  cint7/src/v6_winnt.cxx, cint7/src/vararg.h,
	  cint7/src/vc7strm.cxx, cint7/src/vc7strm.h, cint7/src/vcstrm.cxx,
	  cint7/src/vcstrm.h, cint7/src/vcstrmold.cxx,
	  cint7/src/vcstrmold.h, cint7/stl/G__postprocess.h,
	  cint7/stl/README.txt, cint7/stl/_climits.h, cint7/stl/_deque.h,
	  cint7/stl/_iterator.h, cint7/stl/_list.h, cint7/stl/_map.h,
	  cint7/stl/_memory.h, cint7/stl/_multimap.h,
	  cint7/stl/_multiset.h, cint7/stl/_pair.h, cint7/stl/_set.h,
	  cint7/stl/_stack.h, cint7/stl/_utility.h, cint7/stl/_vector.h,
	  cint7/stl/algo.h, cint7/stl/algobase.h, cint7/stl/bstring.h,
	  cint7/stl/bvector.h, cint7/stl/defalloc.h, cint7/stl/deque.h,
	  cint7/stl/faralloc.h, cint7/stl/fdeque.h, cint7/stl/flist.h,
	  cint7/stl/fmap.h, cint7/stl/fmultmap.h, cint7/stl/fmultset.h,
	  cint7/stl/fset.h, cint7/stl/function.h, cint7/stl/hdeque.h,
	  cint7/stl/heap.h, cint7/stl/hlist.h, cint7/stl/hmap.h,
	  cint7/stl/hmultmap.h, cint7/stl/hmultset.h, cint7/stl/hset.h,
	  cint7/stl/hugalloc.h, cint7/stl/hvector.h, cint7/stl/iterator.h,
	  cint7/stl/lbvector.h, cint7/stl/ldeque.h, cint7/stl/list.h,
	  cint7/stl/llist.h, cint7/stl/lmap.h, cint7/stl/lmultmap.h,
	  cint7/stl/lmultset.h, cint7/stl/lngalloc.h, cint7/stl/lset.h,
	  cint7/stl/map.h, cint7/stl/multimap.h, cint7/stl/multiset.h,
	  cint7/stl/neralloc.h, cint7/stl/nmap.h, cint7/stl/nmultmap.h,
	  cint7/stl/nmultset.h, cint7/stl/nset.h, cint7/stl/pair.h,
	  cint7/stl/projectn.h, cint7/stl/random.cpp, cint7/stl/set.h,
	  cint7/stl/stack.h, cint7/stl/tempbuf.cpp, cint7/stl/tempbuf.h,
	  cint7/stl/teststl.c, cint7/stl/tree.h, cint7/stl/utility.h,
	  cint7/stl/vector.h, cint7/test/Complex.cxx, cint7/test/Complex.h,
	  cint7/test/IPair.cpp, cint7/test/IPair.h, cint7/test/MyAlgo0.h,
	  cint7/test/MyString.cxx, cint7/test/MyString.h,
	  cint7/test/README.txt, cint7/test/Test0.cxx,
	  cint7/test/Test1.cxx, cint7/test/VArray.cxx, cint7/test/VArray.h,
	  cint7/test/VCompany.cxx, cint7/test/VCompany.h,
	  cint7/test/VObject.cxx, cint7/test/VObject.h,
	  cint7/test/VPerson.cxx, cint7/test/VPerson.h,
	  cint7/test/VPersonTest.cxx, cint7/test/VString.cxx,
	  cint7/test/VString.h, cint7/test/VType.h, cint7/test/access0.cxx,
	  cint7/test/anonunion.cxx, cint7/test/aoki0.cxx,
	  cint7/test/aryinit0.cxx, cint7/test/aryinit1.cxx,
	  cint7/test/autocc.cxx, cint7/test/baseconv0.cxx,
	  cint7/test/bitfield.cxx, cint7/test/borg1.cxx,
	  cint7/test/borg2.cxx, cint7/test/bruce1.cxx,
	  cint7/test/btmplt.cxx, cint7/test/complex1.cxx,
	  cint7/test/complex1.h, cint7/test/const.cxx,
	  cint7/test/constary.cxx, cint7/test/convopr0.cxx,
	  cint7/test/cout1.cxx, cint7/test/cpp0.cxx, cint7/test/cpp1.cxx,
	  cint7/test/cpp2.cxx, cint7/test/cpp3.cxx, cint7/test/cpp4.cxx,
	  cint7/test/cpp5.cxx, cint7/test/cpp6.cxx, cint7/test/cpp8.cxx,
	  cint7/test/delete0.cxx, cint7/test/eh1.cxx,
	  cint7/test/enumscope.cxx, cint7/test/explicitdtor.cxx,
	  cint7/test/fons3.cxx, cint7/test/friend0.cxx,
	  cint7/test/funcmacro.cxx, cint7/test/fwdtmplt.cxx,
	  cint7/test/idxscope0.cxx, cint7/test/ifs.cxx,
	  cint7/test/include.cxx, cint7/test/inherit0.cxx,
	  cint7/test/inherit1.cxx, cint7/test/inherit2.cxx,
	  cint7/test/init1.cxx, cint7/test/init2.cxx,
	  cint7/test/longlong.cxx, cint7/test/loopcompile1.cxx,
	  cint7/test/loopcompile2.cxx, cint7/test/loopcompile3.cxx,
	  cint7/test/loopcompile4.cxx, cint7/test/loopcompile5.cxx,
	  cint7/test/maincmplx.cxx, cint7/test/maptest.cxx,
	  cint7/test/maptest.h, cint7/test/memo.txt,
	  cint7/test/mfstatic.cxx, cint7/test/minexam.cxx,
	  cint7/test/minherit0.cxx, cint7/test/mkcmain.cxx,
	  cint7/test/new0.cxx, cint7/test/nick3.cxx, cint7/test/nick4.cxx,
	  cint7/test/nstmplt1.cxx, cint7/test/oprovld0.cxx,
	  cint7/test/oprovld2.cxx, cint7/test/ostream.cxx,
	  cint7/test/pb19.cxx, cint7/test/refassign.cxx,
	  cint7/test/scope0.cxx, cint7/test/setw0.cxx,
	  cint7/test/staticary.cxx, cint7/test/staticmem0.cxx,
	  cint7/test/staticmem1.cxx, cint7/test/t1002.cxx,
	  cint7/test/t1002.h, cint7/test/t1004.cxx, cint7/test/t1011.cxx,
	  cint7/test/t1011.h, cint7/test/t1015.cxx, cint7/test/t1016.cxx,
	  cint7/test/t1016.h, cint7/test/t1023.cxx, cint7/test/t1024.cxx,
	  cint7/test/t1024.h, cint7/test/t1025.cxx, cint7/test/t1025.h,
	  cint7/test/t1026.cxx, cint7/test/t1026.h, cint7/test/t1027.cxx,
	  cint7/test/t1027.h, cint7/test/t1030.cxx, cint7/test/t1030.h,
	  cint7/test/t1031.cxx, cint7/test/t1031.h, cint7/test/t1032.cxx,
	  cint7/test/t1033.cxx, cint7/test/t1034.cxx, cint7/test/t1035.cxx,
	  cint7/test/t1035.h, cint7/test/t1036.cxx, cint7/test/t1040.cxx,
	  cint7/test/t1040.h, cint7/test/t1042.cxx, cint7/test/t1046.cxx,
	  cint7/test/t1046.h, cint7/test/t1047.cxx, cint7/test/t1047.h,
	  cint7/test/t1048.cxx, cint7/test/t1048.h, cint7/test/t1049.cxx,
	  cint7/test/t1054.cxx, cint7/test/t1055.cxx, cint7/test/t1061.cxx,
	  cint7/test/t1061.h, cint7/test/t1062.cxx, cint7/test/t1062.h,
	  cint7/test/t1067.cxx, cint7/test/t1067.h, cint7/test/t1068.cxx,
	  cint7/test/t1068.h, cint7/test/t1079.cxx, cint7/test/t1079.h,
	  cint7/test/t1084.cxx, cint7/test/t1085.cxx, cint7/test/t1086.cxx,
	  cint7/test/t1088.cxx, cint7/test/t1094.cxx, cint7/test/t1101.cxx,
	  cint7/test/t1115.cxx, cint7/test/t1115.h, cint7/test/t1124.cxx,
	  cint7/test/t1125.cxx, cint7/test/t1126.cxx, cint7/test/t1127.cxx,
	  cint7/test/t1127.h, cint7/test/t1128.cxx, cint7/test/t1129.cxx,
	  cint7/test/t1134.cxx, cint7/test/t1136.cxx, cint7/test/t1140.cxx,
	  cint7/test/t1143.cxx, cint7/test/t1144.cxx, cint7/test/t1148.cxx,
	  cint7/test/t1157.cxx, cint7/test/t1158.cxx, cint7/test/t1160.cxx,
	  cint7/test/t1164.cxx, cint7/test/t1165.cxx, cint7/test/t1178.cxx,
	  cint7/test/t1178.h, cint7/test/t1187.cxx, cint7/test/t1187.h,
	  cint7/test/t1192.cxx, cint7/test/t1193.cxx, cint7/test/t1193.h,
	  cint7/test/t1200.h, cint7/test/t1203.cxx, cint7/test/t1205.cxx,
	  cint7/test/t1205.h, cint7/test/t1213.cxx, cint7/test/t1214.cxx,
	  cint7/test/t1215.cxx, cint7/test/t1215.h, cint7/test/t1221.cxx,
	  cint7/test/t1222.cxx, cint7/test/t1223.cxx, cint7/test/t1224.cxx,
	  cint7/test/t1228.cxx, cint7/test/t1247.cxx, cint7/test/t1247.h,
	  cint7/test/t1247a.h, cint7/test/t1276.cxx, cint7/test/t1276.h,
	  cint7/test/t1277.cxx, cint7/test/t1277.h, cint7/test/t1278.cxx,
	  cint7/test/t1279.cxx, cint7/test/t1280.cxx, cint7/test/t1281.cxx,
	  cint7/test/t1282.cxx, cint7/test/t215.cxx, cint7/test/t358.cxx,
	  cint7/test/t488.cxx, cint7/test/t516.cxx, cint7/test/t516.h,
	  cint7/test/t603.cxx, cint7/test/t627.cxx, cint7/test/t627.h,
	  cint7/test/t630.cxx, cint7/test/t633.cxx, cint7/test/t633.h,
	  cint7/test/t634.cxx, cint7/test/t648.cxx, cint7/test/t674.cxx,
	  cint7/test/t674.h, cint7/test/t676.cxx, cint7/test/t694.cxx,
	  cint7/test/t694.h, cint7/test/t695.cxx, cint7/test/t705.cxx,
	  cint7/test/t705.h, cint7/test/t714.cxx, cint7/test/t733.cxx,
	  cint7/test/t733.h, cint7/test/t749.cxx, cint7/test/t751.cxx,
	  cint7/test/t764.cxx, cint7/test/t767.cxx, cint7/test/t776.cxx,
	  cint7/test/t777.cxx, cint7/test/t784.cxx, cint7/test/t825.cxx,
	  cint7/test/t910.cxx, cint7/test/t916.cxx, cint7/test/t927.cxx,
	  cint7/test/t927.h, cint7/test/t928.cxx, cint7/test/t928.h,
	  cint7/test/t928a.h, cint7/test/t928b.h, cint7/test/t930.cxx,
	  cint7/test/t938.cxx, cint7/test/t958.cxx, cint7/test/t958.h,
	  cint7/test/t959.cxx, cint7/test/t961.cxx, cint7/test/t961.h,
	  cint7/test/t963.cxx, cint7/test/t963.h, cint7/test/t966.cxx,
	  cint7/test/t966.h, cint7/test/t968.cxx, cint7/test/t968.h,
	  cint7/test/t970.cxx, cint7/test/t970.h, cint7/test/t972.cxx,
	  cint7/test/t972a.h, cint7/test/t972b.h, cint7/test/t976.cxx,
	  cint7/test/t976.h, cint7/test/t977.cxx, cint7/test/t977.h,
	  cint7/test/t980.cxx, cint7/test/t980.h, cint7/test/t986.cxx,
	  cint7/test/t987.cxx, cint7/test/t987.h, cint7/test/t991.cxx,
	  cint7/test/t991.h, cint7/test/t991a.h, cint7/test/t991b.h,
	  cint7/test/t991c.h, cint7/test/t992.cxx, cint7/test/t992.h,
	  cint7/test/t993.c, cint7/test/t993.h, cint7/test/t995.cxx,
	  cint7/test/t995.h, cint7/test/t996.cxx, cint7/test/t996.h,
	  cint7/test/t998.cxx, cint7/test/telea0.cxx,
	  cint7/test/telea1.cxx, cint7/test/telea2.cxx,
	  cint7/test/telea3.cxx, cint7/test/telea5.cxx,
	  cint7/test/telea6.cxx, cint7/test/telea7.cxx,
	  cint7/test/telea8.cxx, cint7/test/temp.cxx,
	  cint7/test/template.cxx, cint7/test/template.h,
	  cint7/test/template0.cxx, cint7/test/template1.cxx,
	  cint7/test/template2.cxx, cint7/test/template3.cxx,
	  cint7/test/template4.cxx, cint7/test/template5.cxx,
	  cint7/test/template6.cxx, cint7/test/testall.cxx,
	  cint7/test/vbase.cxx, cint7/test/vbase.h, cint7/test/vbase1.cxx,
	  cint7/test/vbase1.h, cint7/test/vec3d.cxx, cint7/test/vec3d.h,
	  cint7/test/virtualfunc0.cxx, cint7/test/virtualfunc1.cxx,
	  cint7/test/virtualfunc2.cxx, cint7/tool/batch.c,
	  cint7/tool/chmod.cxx, cint7/tool/cxx2cpp.c,
	  cint7/tool/ifdef/Makefile.base, cint7/tool/ifdef/Makefile.bcc5,
	  cint7/tool/ifdef/get.c, cint7/tool/ifdef/ifdef.cxx,
	  cint7/tool/makecint.cxx, cint7/tool/rmkdepend/cppsetup.c,
	  cint7/tool/rmkdepend/def.h, cint7/tool/rmkdepend/ifparser.c,
	  cint7/tool/rmkdepend/ifparser.h,
	  cint7/tool/rmkdepend/imakemdep.h, cint7/tool/rmkdepend/include.c,
	  cint7/tool/rmkdepend/main.c, cint7/tool/rmkdepend/mainroot.cxx,
	  cint7/tool/rmkdepend/parse.c, cint7/tool/rmkdepend/pr.c: Set
	  property svn:eol-style LF on all source and Makefiles. This
	  should avoid
	  problems with Win32 line endings ending up in the repository. All
	  MS tools
	  support LF eols fine.

2007-11-19 11:15  rdm

	* [r20875] cint/Module.mk, cint/cintdlls.mk, cint/configcint.mk,
	  cint/inc/Api.h, cint/inc/BaseCls.h, cint/inc/CallFunc.h,
	  cint/inc/Class.h, cint/inc/DataMbr.h, cint/inc/G__ci.h,
	  cint/inc/Method.h, cint/inc/MethodAr.h, cint/inc/Property.h,
	  cint/inc/Shadow.h, cint/inc/Token.h, cint/inc/Type.h,
	  cint/inc/Typedf.h, cint/include/Common.h, cint/include/GL/gl.h,
	  cint/include/GL/glu.h, cint/include/GL/glut.h,
	  cint/include/GL/xmesa.h, cint/include/README.txt,
	  cint/include/ReadF.C, cint/include/ReadF.cxx,
	  cint/include/ReadF.h, cint/include/RegE.C, cint/include/RegE.cxx,
	  cint/include/RegE.h, cint/include/X11/Xlib.h,
	  cint/include/X11/Xutil.h, cint/include/X11/keysym.h,
	  cint/include/X11/xos.h, cint/include/_complex.h,
	  cint/include/_exception.h, cint/include/_stdexcept.h,
	  cint/include/api.h, cint/include/array.c, cint/include/array.h,
	  cint/include/arrayiostream.h, cint/include/assert.h,
	  cint/include/bool.h, cint/include/boolean.h,
	  cint/include/carray.c, cint/include/carray.h,
	  cint/include/complex.h, cint/include/constants.h,
	  cint/include/ctype.h, cint/include/darray.cxx,
	  cint/include/darray.h, cint/include/errno.h,
	  cint/include/ertti.h, cint/include/exception.h,
	  cint/include/fcntl.h, cint/include/fft.c, cint/include/fft.h,
	  cint/include/float.h, cint/include/fstream.h,
	  cint/include/graphbuf.h, cint/include/iomanip.h,
	  cint/include/iosfwd.h, cint/include/iostream.h,
	  cint/include/limits.h, cint/include/locale.h, cint/include/lsm.c,
	  cint/include/lsm.h, cint/include/makeit.c, cint/include/math.h,
	  cint/include/matrix.cxx, cint/include/matrix.h,
	  cint/include/matrixstream.h, cint/include/mkincld.c,
	  cint/include/new.h, cint/include/platform.h,
	  cint/include/pthread.h, cint/include/readfile.h,
	  cint/include/regex.h, cint/include/regexp.h,
	  cint/include/setjmp.h, cint/include/signal.h,
	  cint/include/socket.h, cint/include/spice.h,
	  cint/include/statistics.c, cint/include/statistics.h,
	  cint/include/stdarg.h, cint/include/stddef.h,
	  cint/include/stdio.h, cint/include/stdiostream.h,
	  cint/include/stdlib.h, cint/include/stream.h,
	  cint/include/string.h, cint/include/striostream.h,
	  cint/include/strstream.h, cint/include/sys/cdefs.h,
	  cint/include/sys/file.h, cint/include/sys/ipc.h,
	  cint/include/sys/msg.h, cint/include/sys/sem.h,
	  cint/include/sys/shm.h, cint/include/sys/stat.h,
	  cint/include/termios.h, cint/include/time.h,
	  cint/include/timespec.h, cint/include/typeinfo.h,
	  cint/include/unistd.h, cint/include/windows.h,
	  cint/include/winsock.h, cint/include/xgraph.c,
	  cint/include/xygraphbuf.h, cint/iosenum/iosenum.cxx,
	  cint/lib/Makefile, cint/lib/README.txt,
	  cint/lib/accstrm/Makefile, cint/lib/accstrm/README.txt,
	  cint/lib/accstrm/fstrm.h, cint/lib/accstrm/iostrm.h,
	  cint/lib/accstrm/linkdef.h, cint/lib/accstrm/sstrm.h,
	  cint/lib/alphastrm/Makefile, cint/lib/alphastrm/README.txt,
	  cint/lib/alphastrm/fstrm.h, cint/lib/alphastrm/iostrm.h,
	  cint/lib/alphastrm/linkdef.h, cint/lib/alphastrm/sstrm.h,
	  cint/lib/bcstream/Makefile, cint/lib/bcstream/fstrm.h,
	  cint/lib/bcstream/iostrm.h, cint/lib/bcstream/stdiostr.h,
	  cint/lib/bcstream/strm.h, cint/lib/bcstream/strstrm.h,
	  cint/lib/cbstream/Makefile, cint/lib/cbstream/fstrm.h,
	  cint/lib/cbstream/iostrm.h, cint/lib/cbstream/linkdef.h,
	  cint/lib/cbstream/readme.txt, cint/lib/cbstream/strstrm.h,
	  cint/lib/dll_stl/README.txt, cint/lib/dll_stl/cinteh.h,
	  cint/lib/dll_stl/clim.h, cint/lib/dll_stl/cmplx.h,
	  cint/lib/dll_stl/dqu.h, cint/lib/dll_stl/iter.h,
	  cint/lib/dll_stl/lst.h, cint/lib/dll_stl/mp.h,
	  cint/lib/dll_stl/multmp.h, cint/lib/dll_stl/multst.h,
	  cint/lib/dll_stl/pr.h, cint/lib/dll_stl/que.h,
	  cint/lib/dll_stl/se.h, cint/lib/dll_stl/st.h,
	  cint/lib/dll_stl/stk.h, cint/lib/dll_stl/str.h,
	  cint/lib/dll_stl/suncc5_deque.h,
	  cint/lib/dll_stl/suncc5_string.h, cint/lib/dll_stl/vary.h,
	  cint/lib/dll_stl/vec.h, cint/lib/dll_stl/vecbool.h,
	  cint/lib/gcc3strm/Makefile, cint/lib/gcc3strm/README.txt,
	  cint/lib/gcc3strm/fstrm.h, cint/lib/gcc3strm/iostrm.h,
	  cint/lib/gcc3strm/linkdef.h, cint/lib/gcc3strm/sstrm.h,
	  cint/lib/gcc4strm/Makefile, cint/lib/gcc4strm/README.txt,
	  cint/lib/gcc4strm/fstrm.h, cint/lib/gcc4strm/iostrm.h,
	  cint/lib/gcc4strm/linkdef.h, cint/lib/gcc4strm/sstrm.h,
	  cint/lib/gl/GL.h, cint/lib/gl/README.txt, cint/lib/gl/TOP.h,
	  cint/lib/gl/cintGL.h, cint/lib/iccstrm/Makefile,
	  cint/lib/iccstrm/README.txt, cint/lib/iccstrm/fstrm.h,
	  cint/lib/iccstrm/iostrm.h, cint/lib/iccstrm/linkdef.h,
	  cint/lib/iccstrm/sstrm.h, cint/lib/ipc/README.txt,
	  cint/lib/ipc/ipcif.h, cint/lib/longlong/README.txt,
	  cint/lib/longlong/longdbl.h, cint/lib/longlong/longlong.h,
	  cint/lib/posix/README.txt, cint/lib/posix/exten.c,
	  cint/lib/posix/exten.h, cint/lib/posix/mktypes.c,
	  cint/lib/posix/posix.h, cint/lib/posix/winposix.c,
	  cint/lib/posix/winposix.h, cint/lib/prec_stl/README.txt,
	  cint/lib/pthread/Makefile, cint/lib/pthread/README.txt,
	  cint/lib/pthread/pthd.h, cint/lib/pthread/thread.h,
	  cint/lib/qt/Makefile, cint/lib/qt/README.txt,
	  cint/lib/qt/qcompactstyle.h, cint/lib/qt/qconfig.h,
	  cint/lib/qt/qmodules.h, cint/lib/qt/qplatformdefs.h,
	  cint/lib/qt/qtcint.h, cint/lib/qt/qtclasses.h,
	  cint/lib/qt/qtdummy.h, cint/lib/qt/qtfunctions.h,
	  cint/lib/qt/qtglobals.h, cint/lib/qt/qtstatic.cxx,
	  cint/lib/socket/README.txt, cint/lib/socket/cintsock.c,
	  cint/lib/socket/cintsock.h, cint/lib/socket/mksockh.c,
	  cint/lib/stdstrct/Makefile, cint/lib/stdstrct/stdcxxfunc.h,
	  cint/lib/stdstrct/stdfunc.h, cint/lib/stdstrct/stdstr.h,
	  cint/lib/stream/Makefile, cint/lib/stream/fstrm.h,
	  cint/lib/stream/iostrm.h, cint/lib/stream/stdiostr.h,
	  cint/lib/stream/strm.h, cint/lib/stream/strstrm.h,
	  cint/lib/sunstrm/Makefile, cint/lib/sunstrm/fstrm.h,
	  cint/lib/sunstrm/iostrm.h, cint/lib/sunstrm/length.cxx,
	  cint/lib/sunstrm/linkdef.h, cint/lib/sunstrm/readme.txt,
	  cint/lib/sunstrm/sstrm.h, cint/lib/vc7strm/Makefile,
	  cint/lib/vc7strm/README.txt, cint/lib/vc7strm/fstrm.h,
	  cint/lib/vc7strm/iostrm.h, cint/lib/vc7strm/linkdef.h,
	  cint/lib/vc7strm/sstrm.h, cint/lib/vcstream/Makefile,
	  cint/lib/vcstream/Makefileold, cint/lib/vcstream/fstrm.h,
	  cint/lib/vcstream/iostrm.h, cint/lib/vcstream/stdiostr.h,
	  cint/lib/vcstream/strm.h, cint/lib/vcstream/strstrm.h,
	  cint/lib/win32api/cintwin.h, cint/lib/win32api/readme.txt,
	  cint/lib/win32api/winfunc.h, cint/lib/xlib/README.txt,
	  cint/lib/xlib/TOP.h, cint/lib/xlib/XLIB.h,
	  cint/lib/xlib/x11const.h, cint/lib/xlib/x11mfunc.h,
	  cint/main/G__main.c, cint/main/G__setup.c, cint/main/cppmain.cxx,
	  cint/src/Api.cxx, cint/src/Apiif.cxx, cint/src/Apiif.h,
	  cint/src/Apiifold.cxx, cint/src/Apiifold.h, cint/src/BaseCls.cxx,
	  cint/src/CallFunc.cxx, cint/src/Class.cxx, cint/src/DataMbr.cxx,
	  cint/src/Method.cxx, cint/src/MethodAr.cxx, cint/src/Shadow.cxx,
	  cint/src/Token.cxx, cint/src/Type.cxx, cint/src/Typedf.cxx,
	  cint/src/accstrm.cxx, cint/src/accstrm.h, cint/src/allstrm.cxx,
	  cint/src/alphastrm.cxx, cint/src/alphastrm.h,
	  cint/src/bc_assign.cxx, cint/src/bc_assign.h,
	  cint/src/bc_autoobj.cxx, cint/src/bc_autoobj.h,
	  cint/src/bc_cfunc.cxx, cint/src/bc_cfunc.h,
	  cint/src/bc_debug.cxx, cint/src/bc_debug.h, cint/src/bc_eh.cxx,
	  cint/src/bc_eh.h, cint/src/bc_exec.cxx, cint/src/bc_exec.h,
	  cint/src/bc_exec_asm.h, cint/src/bc_inst.cxx, cint/src/bc_inst.h,
	  cint/src/bc_item.cxx, cint/src/bc_item.h, cint/src/bc_linkdef.h,
	  cint/src/bc_parse.cxx, cint/src/bc_parse.h,
	  cint/src/bc_reader.cxx, cint/src/bc_reader.h,
	  cint/src/bc_type.cxx, cint/src/bc_type.h, cint/src/bc_vtbl.cxx,
	  cint/src/bc_vtbl.h, cint/src/bcstrm.cxx, cint/src/bcstrm.h,
	  cint/src/cbstrm.cpp, cint/src/cbstrm.h, cint/src/common.h,
	  cint/src/dllrev.h, cint/src/fakestrm.cxx, cint/src/fproto.h,
	  cint/src/g__cfunc.c, cint/src/gcc3strm.cxx, cint/src/gcc3strm.h,
	  cint/src/gcc4strm.cxx, cint/src/gcc4strm.h, cint/src/global.h,
	  cint/src/header.h, cint/src/iccstrm.cxx, cint/src/iccstrm.h,
	  cint/src/kccstrm.cxx, cint/src/kccstrm.h, cint/src/libstrm.cxx,
	  cint/src/libstrm.h, cint/src/longif.cxx, cint/src/longif.h,
	  cint/src/longif3.cxx, cint/src/longif3.h, cint/src/memtest.h,
	  cint/src/newsos.h, cint/src/rflx_gendict.cxx,
	  cint/src/rflx_gendict.h, cint/src/rflx_gensrc.cxx,
	  cint/src/rflx_gensrc.h, cint/src/rflx_tools.cxx,
	  cint/src/rflx_tools.h, cint/src/security.h, cint/src/stdstrct.h,
	  cint/src/sun5strm.cxx, cint/src/sunos.h, cint/src/sunstrm.cxx,
	  cint/src/sunstrm.h, cint/src/typesym.h, cint/src/v6_auxu.cxx,
	  cint/src/v6_cast.cxx, cint/src/v6_debug.cxx,
	  cint/src/v6_decl.cxx, cint/src/v6_disp.cxx, cint/src/v6_dump.cxx,
	  cint/src/v6_end.cxx, cint/src/v6_error.cxx, cint/src/v6_expr.cxx,
	  cint/src/v6_fread.cxx, cint/src/v6_func.cxx,
	  cint/src/v6_gcoll.cxx, cint/src/v6_global1.cxx,
	  cint/src/v6_global2.cxx, cint/src/v6_ifunc.cxx,
	  cint/src/v6_inherit.cxx, cint/src/v6_init.cxx,
	  cint/src/v6_input.cxx, cint/src/v6_intrpt.cxx,
	  cint/src/v6_loadfile.cxx, cint/src/v6_macos.cxx,
	  cint/src/v6_macro.cxx, cint/src/v6_malloc.cxx,
	  cint/src/v6_memtest.cxx, cint/src/v6_new.cxx,
	  cint/src/v6_newlink.cxx, cint/src/v6_newsos.cxx,
	  cint/src/v6_oldlink.cxx, cint/src/v6_opr.cxx,
	  cint/src/v6_parse.cxx, cint/src/v6_pause.cxx,
	  cint/src/v6_pcode.cxx, cint/src/v6_pragma.cxx,
	  cint/src/v6_quote.cxx, cint/src/v6_random.cxx,
	  cint/src/v6_scrupto.cxx, cint/src/v6_shl.cxx,
	  cint/src/v6_sizeof.cxx, cint/src/v6_stdstrct.cxx,
	  cint/src/v6_struct.cxx, cint/src/v6_stub.cxx,
	  cint/src/v6_sunos.cxx, cint/src/v6_tmplt.cxx,
	  cint/src/v6_typedef.cxx, cint/src/v6_val2a.cxx,
	  cint/src/v6_value.cxx, cint/src/v6_value.h, cint/src/v6_var.cxx,
	  cint/src/v6_winnt.cxx, cint/src/vc7strm.cxx, cint/src/vc7strm.h,
	  cint/src/vcstrm.cxx, cint/src/vcstrm.h, cint/src/vcstrmold.cxx,
	  cint/src/vcstrmold.h, cint/stl/G__postprocess.h,
	  cint/stl/README.txt, cint/stl/_climits.h, cint/stl/_deque.h,
	  cint/stl/_iterator.h, cint/stl/_list.h, cint/stl/_map.h,
	  cint/stl/_memory.h, cint/stl/_multimap.h, cint/stl/_multiset.h,
	  cint/stl/_pair.h, cint/stl/_set.h, cint/stl/_stack.h,
	  cint/stl/_utility.h, cint/stl/_vector.h, cint/stl/algo.h,
	  cint/stl/algobase.h, cint/stl/bstring.h, cint/stl/bvector.h,
	  cint/stl/defalloc.h, cint/stl/deque.h, cint/stl/faralloc.h,
	  cint/stl/fdeque.h, cint/stl/flist.h, cint/stl/fmap.h,
	  cint/stl/fmultmap.h, cint/stl/fmultset.h, cint/stl/fset.h,
	  cint/stl/function.h, cint/stl/hdeque.h, cint/stl/heap.h,
	  cint/stl/hlist.h, cint/stl/hmap.h, cint/stl/hmultmap.h,
	  cint/stl/hmultset.h, cint/stl/hset.h, cint/stl/hugalloc.h,
	  cint/stl/hvector.h, cint/stl/iterator.h, cint/stl/lbvector.h,
	  cint/stl/ldeque.h, cint/stl/list.h, cint/stl/llist.h,
	  cint/stl/lmap.h, cint/stl/lmultmap.h, cint/stl/lmultset.h,
	  cint/stl/lngalloc.h, cint/stl/lset.h, cint/stl/map.h,
	  cint/stl/multimap.h, cint/stl/multiset.h, cint/stl/neralloc.h,
	  cint/stl/nmap.h, cint/stl/nmultmap.h, cint/stl/nmultset.h,
	  cint/stl/nset.h, cint/stl/pair.h, cint/stl/projectn.h,
	  cint/stl/random.cpp, cint/stl/set.h, cint/stl/stack.h,
	  cint/stl/tempbuf.cpp, cint/stl/tempbuf.h, cint/stl/teststl.c,
	  cint/stl/tree.h, cint/stl/utility.h, cint/stl/vector.h,
	  cint/tool/chmod.cxx, cint/tool/ifdef/Makefile.base,
	  cint/tool/ifdef/Makefile.bcc5, cint/tool/ifdef/get.c,
	  cint/tool/ifdef/ifdef.cxx, cint/tool/makecint.cxx: Set property
	  svn:eol-style LF on all source and Makefiles. This should avoid
	  problems with Win32 line endings ending up in the repository. All
	  MS tools
	  support LF eols fine.

2007-11-19 10:50  brun

	* [r20873] win32gdk/src/TGWin32.cxx: From Bertrand:
	  - Fixes uninitialized memory reads reported by Rational Purify.

2007-11-19 10:36  couet

	* [r20872] test/stressGraphics.cxx: - TestReport2 does not need any
	  input parameter. It uses gPad to generate
	  the PS file.

2007-11-19 09:58  ganis

	* [r20871] xrootd/src/xrootd-20071001-0000.src.tgz: Still missing a
	  piece needed by Mac OS X 64-bit

2007-11-19 08:11  antcheva

	* [r20869] gui/inc/TGTextEdit.h, gui/src/TGTextEdit.cxx: Added new
	  data member and corresponding methods allowing to hide cursor in
	  the TGTextEditor window when when focus went out from its window.
	  (Requested by a user at
	  http://root.cern.ch/phpBB2/viewtopic.php?p=23464
	  Bool_t fEnableCursorWithoutFocus; // enable cursor visibility
	  when focus
	  // went out from text editor window
	  // (default is kTRUE)
	  EnableCursorWithoutFocus(Bool_t on = kTRUE)
	  Bool_t IsCursorEnabledithoutFocus() const

2007-11-18 20:41  ganis

	* [r20868] xrootd/src/xrootd-20071001-0000.src.tgz: Fix a couple of
	  warnings.
	  Re-insert a piece needed by Mac OS X 64-bit which was missed by
	  the previous tarball.
	  
	  XROOTD reference tag: v20071001-0000d

2007-11-18 17:03  rdm

	* [r20867] proofx/src/TXProofMgr.cxx: add io.h on Windows for lseek
	  et al.

2007-11-18 16:58  rdm

	* [r20866] guihtml/src/TGHtmlParse.cxx: fix for byoass if variable
	  initialization.

2007-11-18 16:51  brun

	* [r20865] asimage/src/TASImage.cxx,
	  win32gdk/gdk/src/gdk/win32/gdkdrawable-win32.c: From Valeriy:
	  o TASImage
	  - initiate variables to fix valgrind warnings
	  - fix compilation warnings on Solaris
	  - fix bug when saving canvas containing several images as macro.
	  
	  o TASImage::Image2Drawable, win32gdk
	  - fix displaying images with transparency under win32

2007-11-18 16:07  brun

	* [r20864] asimage/src/libAfterImage.tar.gz: From Valeriy:
	  - new tarball from Sasha hopefully fixing valgrind warnings

2007-11-18 15:47  brun

	* [r20863] guihtml/src/TGHtmlDraw.cxx,
	  guihtml/src/TGHtmlLayout.cxx, guihtml/src/TGHtmlTable.cxx: From
	  Ilka:
	  Fix compilation warnings

2007-11-18 14:51  ganis

	* [r20862] proof/inc/TProofMgr.h, proof/src/TProof.cxx,
	  proof/src/TProofMgr.cxx, proof/src/TProofServ.cxx,
	  proofd/inc/XProofProtocol.h, proofd/inc/XrdProofdManager.h,
	  proofd/src/XrdProofConn.cxx, proofd/src/XrdProofdManager.cxx,
	  proofd/src/XrdProofdProtocol.cxx, proofplayer/inc/TEventIter.h,
	  proofplayer/inc/TPacketizerAdaptive.h,
	  proofplayer/src/TEventIter.cxx,
	  proofplayer/src/TPacketizerAdaptive.cxx, proofx/inc/TXProofMgr.h,
	  proofx/inc/TXSocket.h, proofx/src/TXProofMgr.cxx,
	  proofx/src/TXSocket.cxx, tutorials/proof/runProof.C: Synchronize
	  with braches/dev/proof r20835
	  
	  Summary:
	  
	  TProofServ:
	  - read session.rootrc with level kEnvChange to be able to change
	  existing
	  settings
	  - Avoid deleting a query result twice in some special cases
	  - Fix a problem with the initialization of fKeptQueries
	  rootrc.in:
	  - restore default settings the asynchronous reading
	  TFileCacheRead:
	  - add missing protection in ReadBuffer
	  TEventIter:
	  - Enable the usage of TTreeCache
	  XrdProofdProtocol:
	  - Additional check on the ownership of the unix socket
	  - Improve notification during Reset
	  - Reduce default timeout on admin requests and make it
	  configurable
	  XrdProofConn:
	  - Use the configurable maxtry everywhere where relevant
	  TPacketizerAdaptive:
	  - Store info on all the processed packets in per-worker lists
	  
	  TProofMgr, TXProofMgr, TXSocket, XProofProtocol,
	  XrdProofdProtocol:
	  - Add possibility for the admin to broadcast a message to the
	  connected users
	  
	  getProof:
	  - Add missing protection

2007-11-18 14:43  brun

	* [r20861] io/src/TFileCacheRead.cxx: From Gerri:
	  This adds a protection against 'buf = 0' when using TXNetFile
	  without asynchronous reading.

2007-11-18 14:40  ganis

	* [r20860] xrootd/src/xrootd-20071001-0000.src.tgz: Import later
	  fixes in the client and in XrdSysPriv
	  
	  XROOTD reference tag: v20071001-0000c

2007-11-17 15:50  brun

	* [r20858] geom/src/TGeoVoxelFinder.cxx: From Andrei
	  a small precision fix for a problem of voxelization in case of
	  misaligned volumes.

2007-11-17 13:47  brun

	* [r20857] geom/src/TGeoPcon.cxx: From Philippe:
	  to avoid a crash in stressGeometry on Windows with vc7.1

2007-11-16 23:56  rdm

	* [r20855] Makefile: don't build FTGL if GL is not build. This was
	  a regression recently introduced.

2007-11-16 22:34  pcanal

	* [r20854] io/inc/TStreamerInfo.h, io/src/TStreamerInfo.cxx,
	  io/src/TStreamerInfoReadBuffer.cxx,
	  meta/inc/TVirtualStreamerInfo.h, meta/src/TClass.cxx: * Correct
	  the schema evolution to and from any numerical type involvind on
	  one
	  end or the other any variation of Float16_t and Double32_t.
	  * Add the annotation (aka the comment part with [xyz]) of C style
	  arrays,
	  Float16_t and Double32_t to the checksum calculation.
	  * Allow the checksum of existing class with a ClassDef to match
	  with and
	  without the annotation taken in consideration. This allows for
	  reading
	  older file (hence with desufficient checksum) to be read without
	  any warning
	  message. However this also means that if the classes on this
	  older file are
	  different _only_ by the annotation, it will not be noted.
	  * Prevent the fact that any consecutive Double32_t, independently
	  of their
	  annotation are 'compiled' together and thus only the annotation
	  of the first
	  one are used (incorrectly). To support backward compatibility
	  with files
	  written with this bug, the version number of TStreamerInfo has
	  been
	  increased to 6. The compilation is still done the same way for
	  'old'
	  TStreamerInfo (TStreamerInfo version 5 or less). However if the
	  Double32_t are changed to Float16_t, since the compilation is
	  turned off
	  because of the schema evolution, the 'wrong' annotation might be
	  used for
	  those old files. [This should be rare]
	  * Corrected the fact that due to an off by one lookup, the number
	  of
	  TStreamerInfo for a class was actually limited to 13.

2007-11-16 17:36  rdm

	* [r20851] etc/vmc/g3_makedist.sh, etc/vmc/g4_makedist.sh: From
	  Ivana:
	  Corrected makedist scripts:
	  - File with version_number is now one level up
	  - Exclude .svn instead of CVS

2007-11-16 16:38  pcanal

	* [r20849] hist/src/TFormula.cxx: Do not publish the function
	  created for the LinearParts in the list of functions (hence avoid
	  double deletion and other weirdness)

2007-11-16 16:37  pcanal

	* [r20848] tutorials/fit/fitLinear.C: Correct typo

2007-11-16 16:05  couet

	* [r20847] test/stressGraphics.cxx, test/stressGraphics.ref: - Two
	  new tests: parallelcoord() and labels1()
	  - The test timage() now generates .C and test it back.

2007-11-16 16:01  wlav

	* [r20846] pyroot/src/Pythonize.cxx, pyroot/src/RootWrapper.cxx:
	  Use ProcessLine instead of loading of cint dlls

2007-11-16 15:48  rdm

	* [r20845] etc/vmc, etc/vmc/MakeExe, etc/vmc/MakeMacros,
	  etc/vmc/MakeRules, etc/vmc/Makedepend,
	  etc/vmc/Makefile.alphacxx6, etc/vmc/Makefile.hpuxacc,
	  etc/vmc/Makefile.linux, etc/vmc/Makefile.linuxalphagcc,
	  etc/vmc/Makefile.linuxia64ecc, etc/vmc/Makefile.linuxia64gcc,
	  etc/vmc/Makefile.linuxicc, etc/vmc/Makefile.linuxx8664gcc,
	  etc/vmc/Makefile.macosx, etc/vmc/Makefile.macosxicc,
	  etc/vmc/Makefile.macosxxlc, etc/vmc/Makefile.solarisCC5,
	  etc/vmc/g3_makedist.sh, etc/vmc/g4_makedist.sh: From Ivana:
	  common VMC Makefile and build scripts.

2007-11-16 14:45  couet

	* [r20842] histpainter/src/TGraphPainter.cxx: - Fix uninitialized
	  variables found by valgrind.

2007-11-16 13:19  axel

	* [r20839] test/stressShapes.cxx: From Mihaela: suppress numbers in
	  printout for succeeding test; solves problem with reference file
	  comparison and precision.

2007-11-16 09:04  couet

	* [r20836] asimage/src/TASImage.cxx: - From V.Onuchin: fix saving
	  image in macro

2007-11-15 22:16  pcanal

	* [r20832] base/src/TROOT.cxx: remove windows end of line

2007-11-15 21:51  rdm

	* [r20831] base/Module.mk, config/Makefile.win32, graf/Module.mk:
	  From Axel:
	  fixes for MSVC2008.

2007-11-15 14:45  rdm

	* [r20828] guihtml/inc/TGHtml.h, guihtml/inc/TGHtmlBrowser.h,
	  guihtml/src/TGHtml.cxx, guihtml/src/TGHtmlBrowser.cxx,
	  guihtml/src/TGHtmlDraw.cxx, guihtml/src/TGHtmlElement.cxx,
	  guihtml/src/TGHtmlForm.cxx, guihtml/src/TGHtmlImage.cxx,
	  guihtml/src/TGHtmlLayout.cxx, guihtml/src/TGHtmlParse.cxx,
	  guihtml/src/TGHtmlSizer.cxx, guihtml/src/TGHtmlTable.cxx: From
	  Ilka and me:
	  fix all warnings of const char* assignment to char* reported by
	  gcc 4.2.
	  Due to ripple effect there were many changes.

2007-11-15 14:11  couet

	* [r20827] test/stressGraphics.ref: - Adjustment for Windows

2007-11-15 13:57  couet

	* [r20826] test/stressGraphics.ref: - New version

2007-11-15 13:16  couet

	* [r20825] test/stressGraphics.ref: - New version

2007-11-15 11:03  couet

	* [r20820] test/stressGraphics.cxx: - New version of
	  stressGraphics.cxx. For most of the test the .C file is
	  generated excuted again and the ps output is tested the same way
	  as the
	  original output.

2007-11-15 07:29  brun

	* [r20819] geom/src/TGeoElement.cxx: From Andrei:
	  Fix for bug: https://savannah.cern.ch/bugs/index.php?31309

2007-11-14 19:24  axel

	* [r20818] cint/lib/prec_stl/iterator, cint/src/g__cfunc.c: Support
	  MSVC2008: revertse_iterator::_Myt is now a private typedef, so
	  use the underlying type.
	  Don't check MSC_VER==1400 but >=.

2007-11-14 16:41  rdm

	* [r20816] base/src/TSystem.cxx: add missing io.h for Windows (for
	  lseek).

2007-11-14 16:23  axel

	* [r20815] tutorials/spectrum/peaks2.C,
	  tutorials/tree/clonesA_Event.cxx: clonesA: add missing #include
	  peaks2: replace inf loop by looping 10 times

2007-11-14 15:55  rdm

	* [r20814] config/Makefile.depend, configure, gl/Module.mk:
	  explicit link libFTGL with libRGL.

2007-11-14 15:43  antcheva

	* [r20812] tutorials/gui/CPUMeter.C: From Bertrand:
	  Added some transparency.

2007-11-14 15:38  axel

	* [r20811] test/Makefile: Change libpath (../ to $ROOTSYS) for
	  linking on windows so we can build inside roottest

2007-11-14 15:32  rdm

	* [r20810] base/inc/LinkDef2.h, base/inc/TSystem.h,
	  base/src/TSystem.cxx, io/inc/TFile.h, io/src/TFile.cxx,
	  unix/inc/TUnixSystem.h, unix/src/TUnixSystem.cxx,
	  winnt/inc/TWinNTSystem.h, winnt/src/TWinNTSystem.cxx: From Gerri:
	  TFile:
	  - Move the code checking / creating a local cache for a file
	  from TFile::Open to a new private method TFile::OpenFromCache().
	  - Add support for multiple URLs in TFile::Open() and
	  TFile::AsyncOpen():
	  the URLs must be passed separated by a '|' and are tried
	  sequentially
	  in the specified order until an open is successful.
	  TSystem, TUnixSystem, TWinNTSystem:
	  - Add new method ShowOutput() to display the redirected output
	  after
	  stdout and stderr are restored.
	  TUnixSystem:
	  - Fix a bug in RedirectOutput() affecting the case of multiple
	  redirections.

2007-11-14 15:20  axel

	* [r20809] tutorials/fit/fit1.C: Rename canvas "c1" so it doesn't
	  clash with the one generated in fillrandom.C. That macro is
	  invoked by fit1.C if fillrandom.root doesn't exist.

2007-11-14 14:34  rdm

	* [r20805] io/src/TFile.cxx: protect against SysClose() being
	  called with fD < 0 (happens in case of
	  net or webfiles).

2007-11-14 14:04  couet

	* [r20804] histpainter/src/THistPainter.cxx: - Make option BAR work
	  with option HIST as explain in the Paint() method
	  help (option HIST). Previously the option BAR was ignored when an
	  histo
	  was painted with "BAR HIST".

2007-11-14 12:53  antcheva

	* [r20802] tutorials/gui/CPUMeter.C: Removed unused variable 'i' in
	  function `void Update()'.

2007-11-14 12:51  antcheva

	* [r20801] tutorials/gui/CPUMeter.C: Added ClassDef to avoid error
	  message when compiling the macro.

2007-11-14 12:44  antcheva

	* [r20800] tutorials/gui/CPUMeter.C: From bertrand:
	  Better version of CPUMeter.C

2007-11-14 02:39  pcanal

	* [r20796] base/src/TROOT.cxx: Speed up ROOT::GetFunction when the
	  argument null

2007-11-14 01:56  brun

	* [r20795] mlp/src/TMultiLayerPerceptron.cxx: In all documentations
	  of the MultiLayerPerceptron it is written: "The layers
	  are separated by semicolons". In fact they are separated by
	  colons ":".
	  see: <http://savannah.cern.ch/bugs/?31248>

2007-11-14 01:41  brun

	* [r20794] tree/inc/TTreeCache.h, tree/src/TTreeCache.cxx: From
	  Gerri:
	  Following the implementation in TChain, I have succeded in
	  enabling the TTree cache in Proof.
	  However, for that I need a small addition in TTreeCache to be
	  able to change also the 'fOwner'
	  member, because on the workers we have to delete the previous
	  tree, so the owner tree creating
	  the cache is gone after the first file.
	  In the attached patch I propose to add a second argument to
	  TTreeCache::UpdateBranches, a boolean
	  indicating whether to set also the ownership or not. Default is
	  not, so we do not break any existing
	  usage of the call.
	  
	  With this, and other changes in TEventIter that I am finalizing,
	  I get for h1analysis with http files
	  from my place and my single core machine
	  
	  TChain 52s
	  Proof 1 worker 57-62s
	  
	  i.e. a 10-20% overhead in Proof, which is what we expect without
	  the local optimizations.

2007-11-13 17:10  axel

	* [r20791] cint/lib/prec_stl/string: Add
	  std::string::(const_)reverse_iterator also for GCC > 3.

2007-11-13 15:58  couet

	* [r20790] hist/src/TGraph2D.cxx: - In SavePrimitive: name the
	  saved TGraph2D "graph2d" instead of "graph" to
	  avoid problems when a TGraph and a TGraph2D are in the same
	  picture. (found
	  thanks to stressGraphics).

2007-11-13 15:12  couet

	* [r20788] gpad/src/TCanvas.cxx: - Print the message telling a .C
	  file has been generated, using Info() instead
	  of printf in order to be able to disable it using
	  gErrorIgnoreLevel.

2007-11-13 14:28  antcheva

	* [r20785] gui/src/TRootBrowser.cxx: From Bertrand:
	  Fixes valgrind errors.

2007-11-13 13:40  rdm

	* [r20782] thread/inc/TThread.h, thread/src/TThread.cxx: From Joern
	  Adamczewski:
	  fixed issue 31085 by just changing the argument of
	  static TThread::Delete to a reference.

2007-11-13 08:26  brun

	* [r20772] geom/src/TGeoElement.cxx: From Mihaela:
	  fix for the bug related to Bateman solution reported in Savannah.
	  https://savannah.cern.ch/bugs/?31224

2007-11-12 17:06  pcanal

	* [r20771] cint/src/v6_struct.cxx: If an autoload entry is still
	  marked as autoload after
	  the execution of the autoloader and it is a templated
	  class and a lookup of the class (by name) finds a
	  different entry, then remove this autoloade entry.
	  
	  This happens in the case where a template class was
	  entered in the autloader with some typedef in its
	  name/argument. For example, if mytemplate<Long64_t>
	  is entered in the autoloader map, its type status
	  will never be reset because the CINT dictionary is
	  actually updating the entry with all typedef resolved:
	  mytemplate<long long>

2007-11-12 16:04  ivana

	* [r20768] vmc/inc/TMCVerbose.h, vmc/inc/TVirtualMC.h,
	  vmc/inc/TVirtualMCApplication.h, vmc/src/TMCVerbose.cxx,
	  vmc/src/TVirtualMC.cxx: - Modified interface
	  TVirtualMC::DefineParticle() - added more arguments
	  needed for Geant4 implementation
	  - Added new function TVirtualMCApplication::AddIons(),
	  additional to AddParticles(), as in Geant4 ions have to be added
	  later then particles
	  From Mohammad Al-Turany:
	  - Added new function:
	  TVirtualMC::SetDecayMode()

2007-11-12 14:53  rdm

	* [r20767] build/unix/makehtml.sh: From Axel:
	  simplify generation of htmldoc.

2007-11-12 13:50  rdm

	* [r20766] gui/src/TGListTree.cxx: From Ilka:
	  gui/src/TGListTree.cxx:1957: warning: the address of 'dirname'
	  will always
	  evaluate as 'true'.

2007-11-12 13:44  rdm

	* [r20765] gui/inc/TGFont.h, gui/src/TGFont.cxx: From Ilka:
	  remove warnings converning conversion from const char* to char*.

2007-11-11 21:41  ganis

	* [r20759] tutorials/proof/ProofSimple.C,
	  tutorials/proof/ProofSimple.h, tutorials/proof/finalizeProof.C,
	  tutorials/proof/getProof.C, tutorials/proof/runProof.C:
	  Improvements in the proof tutorials:
	  
	  - ProofSimple:
	  + Make it fill an crtainf number of histograms with gaussian
	  numbers; the ntuple
	  will be subject of a different tutorial and made disk-resident
	  - getProof.C:
	  + Improve detection of the tutorial xrootd daemon and fine-tune
	  the settings to
	  avoid any interference with any running daemon listening on
	  standard ports
	  - runProof.C:
	  + Add possibility to specify the relevent parameters as arguments
	  + Enable feedback on the number of events processed per worker
	  + Enable the possibility to run in non-blocking mode
	  + Add some documentation in the header
	  - finalizeProof.C:
	  + Retrieve and finalize queries previously submitted via
	  runProof.C (either
	  synchronously or asynchronously). Se documentation in the header.

2007-11-11 21:29  ganis

	* [r20758] proof/inc/TProof.h, proof/inc/TProofDebug.h,
	  proof/inc/TProofServ.h, proof/src/TProof.cxx,
	  proof/src/TProofServ.cxx, proofd/inc/XProofProtocol.h,
	  proofd/inc/XrdProofWorker.h, proofd/inc/XrdProofdManager.h,
	  proofd/src/XrdProofWorker.cxx, proofd/src/XrdProofdManager.cxx,
	  proofd/src/XrdProofdProtocol.cxx,
	  proofplayer/src/TPacketizerUnit.cxx,
	  proofplayer/src/TPerfStats.cxx, proofplayer/src/TProofPlayer.cxx,
	  proofx/src/TXProofMgr.cxx: Several small fixes and few additions
	  imported from 'branches/dev/proof':
	  - XrdProofdProtocol:
	  + Fix a problem in CleanuProofServ sometimes preventing proper
	  cleanup
	  + In ReadBuffer, do not trigger an error on empty files
	  + Add missing protection against an empty string while setting
	  the ROOT version
	  - XrdProofdManager:
	  + Define the list of unique nodes to avoid broadcasting twice to
	  the same node
	  - XrdProofWorker: improve matching technique
	  - TProof: add setter and getter for Int_t parameter
	  - TProofServ:
	  + do not flush the log file in SendAsynMessage: this recent
	  change
	  made the logs "disappear" form the ProgressDialog
	  + Activate control on the max number of query result kept
	  - TPacketizerUnit: fix a problem with filling the histof for
	  PerfStats
	  - TProofPlayer: call Begin() also during selecter
	  re-initialization

2007-11-11 16:27  ganis

	* [r20757] tutorials/tree/h1analysis.C,
	  tutorials/tree/h1analysis.h: Define the output histos as data
	  members and remove the gDirectory->Delete(...)
	  calls in Begin() and SlaveBegin(); this allows to avoid weird
	  side-effects when
	  re-initializing the selector.

2007-11-09 17:19  ganis

	* [r20755] tutorials/tree/h1analysis.h: In Notify(), use Info(...)
	  instead of printf(...) to have the message appearing at the right
	  place in Proof

2007-11-09 17:14  rdm

	* [r20753] cint/lib/posix/posix.h: fix compilation warning on Mac
	  OS X.

2007-11-09 17:02  ganis

	* [r20752] proofd/src/XrdProofConn.cxx: Fix a problem in a debug
	  statement with a potentially non-null terminated string

2007-11-09 15:04  antcheva

	* [r20748] gui/src/TRootBrowserLite.cxx: From Bertrand:
	  Fixed a bug introduced in Revision 18536, which effected the menu
	  interactions (if a popup menu was opened, moving mouse to another
	  menu
	  title does not opened the corresponding popup menu).

2007-11-09 14:33  antcheva

	* [r20747] ged/src/TGedMarkerSelect.cxx: Cosmetics.

2007-11-09 14:32  antcheva

	* [r20746] ged/src/TGedPatternSelect.cxx: Fix in
	  TGedPatternSelect::ProcessMessage - parm1 should
	  contain widget Id

2007-11-09 13:25  couet

	* [r20741] test/stressGraphics.cxx: - Replace sprintf by Form()

2007-11-09 13:07  antcheva

	* [r20740] qt/inc/TQUserEvent.h: From Valeri Fine:
	  the bug fix:. the fEvent data-member was not initialized at ctor

2007-11-09 13:06  antcheva

	* [r20739] qtroot/inc/TQtRootGuiFactory.h,
	  qtroot/src/TQtRootGuiFactory.cxx: From Valeri Fine:
	  make its interface forward / backward compatible for the
	  different ROOT versions

2007-11-09 13:05  antcheva

	* [r20738] qt/src/TQtApplication.cxx: From Valeri Fine:
	  the new option to debug the X11 connections under Qt4

2007-11-09 13:04  antcheva

	* [r20737] qt/inc/TGQt.h, qt/inc/TQtWidget.h, qt/src/TGQt.cxx,
	  qt/src/TQtWidget.cxx: From Valeri Fine:
	  the various corrections to accommodate Qt4 features for X11/Win32
	  platforms.

2007-11-09 13:03  antcheva

	* [r20736] qt/Module.mk: From Valeri Fine:
	  Add the Qt4 options to the makefile rules.

2007-11-09 12:45  couet

	* [r20735] test/stressGraphics.cxx: - From Axel: Be a bit less
	  picky about where input files are; for including
	  test in roottest/root/stress/.

2007-11-09 11:47  rdm

	* [r20734] test/stress.cxx: From Axel:
	  fix to allow local version of libEvent.

2007-11-09 11:04  rdm

	* [r20733] configure: fix issue with Qt4 test.

2007-11-09 09:40  couet

	* [r20730] g3d/inc/TAxis3D.h: - From Leo: In the desctructor name,
	  remove the space after "~"

2007-11-08 16:39  rdm

	* [r20725] build/package/common/root-system-common.control,
	  config/Makefile.linuxhppa, config/Makefile.linuxmips,
	  config/Makefile.linuxmips64: From Christian Holm:
	  makefiles for the newly supported (old) platforms.

2007-11-08 16:38  rdm

	* [r20724] Makefile, base/inc/RConfig.h,
	  build/package/common/libroot-clarens.control,
	  build/package/common/libroot-ldap.control,
	  build/package/common/libroot-mathmore.control,
	  build/package/common/libroot-minuit.control,
	  build/package/common/libroot-mlp.control,
	  build/package/common/libroot-python.control,
	  build/package/common/libroot-quadp.control,
	  build/package/common/libroot-roofit.control,
	  build/package/common/libroot-ruby.control,
	  build/package/common/libroot-tmva.control,
	  build/package/common/libroot-unuran.control,
	  build/package/common/libroot.control,
	  build/package/common/libroot.install.in,
	  build/package/common/root-plugin-pythia6.control,
	  build/package/common/root-plugin-sql.control,
	  build/package/common/root-system-bin.control,
	  build/package/common/root-system-common.install.in,
	  build/package/common/root-system-proofd.install.in,
	  build/package/debian/README.Debian,
	  build/package/debian/changelog, build/package/debian/control.in,
	  build/package/debian/copyright, build/package/debian/dirs,
	  build/package/debian/po/dk.po,
	  build/package/debian/po/templates.pot,
	  build/package/debian/root-system-bin.desktop.in,
	  build/package/debian/root-system-bin.menu.in,
	  build/package/debian/root-system-common.dirs.in,
	  build/package/debian/root-system-proofd.init.in,
	  build/package/debian/root-system-proofd.postinst.in,
	  build/package/debian/root-system-rootd.init.in,
	  build/package/debian/root-system-rootd.postinst.in,
	  build/package/debian/rules,
	  build/package/debian/ttf-root-installer.templates,
	  build/package/lib/makebuilddepend.sh,
	  build/package/lib/makedebdir.sh, build/package/lib/makelist,
	  build/package/rpm/spec.in, cint/inc/G__ci.h,
	  cint7/demo/Win32App/graph01/G__clink.c,
	  cint7/demo/Win32App/graph01/G__clink.h, clib/src/Getline.c,
	  config/ARCHS, config/Makefile.depend, config/Makefile.hurddeb,
	  config/Makefile.in, config/Makefile.linuxalphagcc,
	  config/Makefile.linuxarm, config/Makefile.linuxia64gcc,
	  config/Makefile.linuxppcgcc, config/root-config.in, configure,
	  gl/Module.mk, qtgsi/Module.mk, qtgsi/inc/TQCanvasMenu.h,
	  qtgsi/inc/TQRootCanvas.h, qtgsi/inc/TQRootDialog.h,
	  qtgsi/src/TQCanvasMenu.cxx, qtgsi/src/TQRootCanvas.cxx,
	  qtgsi/src/TQRootDialog.cxx, roofitcore/inc/RooConvCoefVar.h,
	  test/Makefile.arch: From Christian Holm:
	  - updates for the Debian build system
	  - new MIPS and HPPA linux architectures supported
	  - added better checks for Qt4
	  - added support for external FTGL package is desired

2007-11-08 15:49  couet

	* [r20723] base/src/TColor.cxx: - Initialise locale variables in
	  RGB2HLS() to prevent valgrind's error messages
	  on 64bits linux (lxplus).

2007-11-08 15:15  couet

	* [r20722] postscript/src/TPostScript.cxx: - Initialise local
	  variables in Range() to avoid error messages with valgrind
	  on 64 bits linux.

2007-11-08 15:07  rdm

	* [r20721] netx/src/TXNetFile.cxx: in raw mode don't use the
	  read-ahead cache.

2007-11-08 14:24  moneta

	* [r20720] mathcore/src/Integrator.cxx,
	  mathcore/src/SpecFuncCephesInv.cxx, minuit2/inc/LinkDef.h,
	  minuit2/inc/Minuit2/FCNAdapter.h,
	  minuit2/inc/Minuit2/FCNGradAdapter.h,
	  minuit2/inc/Minuit2/Minuit2Minimizer.h,
	  minuit2/inc/Minuit2/MnPrint.h, minuit2/src/Minuit2Minimizer.cxx,
	  minuit2/src/MnFunctionCross.cxx, minuit2/src/MnMinos.cxx,
	  tutorials/unuran/unuranDemo.C, unuran/inc/LinkDef.h,
	  unuran/inc/TUnuranContDist.h, unuran/inc/TUnuranDiscrDist.h,
	  unuran/src/TUnuranContDist.cxx, unuran/src/TUnuranDiscrDist.cxx,
	  unuran/src/TUnuranMultiContDist.cxx: - sync. with dev branch
	  (revision 20719) mathcore, unuran, minuit2
	  
	  - fix coding convention in mathcore and minuit2
	  - fix problem with interpreted TF1 in unuran and tutorial
	  - add implementation of Minimizer interface in Minuit2

2007-11-08 13:07  rdm

	* [r20718] base/inc/TUri.h, base/src/TUri.cxx: From Gerhard:
	  fix one more issue showing up in the TUriTest.C program. Now
	  tests run fine.

2007-11-08 09:57  couet

	* [r20717] gpad/src/TPad.cxx: - In RedrawAxis(), in the TH1 case,
	  DrawCopy() should be used instead of Draw()
	  like in the other cases. This problem was found running valgrind
	  on
	  stressGraphics.

2007-11-08 08:01  brun

	* [r20716] proof/src/TProof.cxx: Fix coding conventions.

2007-11-08 01:14  rdm

	* [r20715] base/src/TUri.cxx, tutorials/net/TUriTest.C: From
	  Gerhard Bruckner:
	  fix a bug in PCtEncode/Decode.

2007-11-08 00:48  wlav

	* [r20714] pyroot/src/PyROOT.h, pyroot/src/Utility.cxx: compiler
	  fixes for p2.2 and MacOS X

2007-11-08 00:34  wlav

	* [r20713] pyroot/ROOT.py, pyroot/inc/TPyROOTApplication.h,
	  pyroot/src/TPyROOTApplication.cxx, pyroot/src/Utility.cxx,
	  pyroot/src/Utility.h: o) Install handler for ROOT message to be
	  translated to python
	  o) Python-side filter for warnings caused by linkage on the Mac

2007-11-08 00:14  ganis

	* [r20712] xrootd/src/xrootd-20071001-0000.src.tgz: Add support for
	  Mac OS X 64-bit (Leopard)
	  
	  XROOTD reference tag: v20071001-0000b

2007-11-07 16:51  brun

	* [r20708] guihtml/inc/TGHtmlBrowser.h,
	  guihtml/src/TGHtmlBrowser.cxx: From Bertrand:
	  - New signal Clicked(char *uri) in TGHtmlBrowser and new method
	  Selected(char *) in TRootBrowser, used to automatically update
	  and switch to
	  ROOT files folder in the new TBrowser when users opens a ROOT
	  file from HTML
	  browser.

2007-11-07 16:49  brun

	* [r20707] gui/src/TGListTree.cxx: From Bertrand:
	  Improvements in check boxes status update in recursive mode

2007-11-07 16:48  brun

	* [r20706] gui/inc/TGFileBrowser.h, gui/src/TGFileBrowser.cxx: From
	  Bertrand:
	  - New signal Clicked(char *uri) in TGHtmlBrowser and new method
	  Selected(char *) in TRootBrowser, used to automatically update
	  and switch to
	  ROOT files folder in the new TBrowser when users opens a ROOT
	  file from HTML
	  browser.

2007-11-07 15:58  pcanal

	* [r20704] cint/src/v6_fread.cxx: prevent reading before the start
	  of string

2007-11-07 11:36  brun

	* [r20698]
	  etc/plugins/ROOT@@Math@@VirtualIntegrator/P010_GSLIntegrator.C:
	  From Lorenzo:
	  fix for a change in GSLIntegrator constructor to use Gauss
	  integration rule

2007-11-07 10:39  rdm

	* [r20697] test/stressGraphics.cxx: fixed bug that caused
	  stressGraphics to die terribly on Mac OS X in optimized
	  mode. Amazing that valgrind did not find this.

2007-11-07 10:19  moneta

	* [r20696] math/inc/Math/ParamFunctor.h, mathcore/Module.mk,
	  mathcore/inc/Math/AdaptiveIntegratorMultiDim.h,
	  mathcore/inc/Math/Error.h, mathcore/inc/Math/Functor.h,
	  mathcore/inc/Math/GenVector/Cartesian3D.h,
	  mathcore/inc/Math/IFunction.h, mathcore/inc/Math/IFunctionfwd.h,
	  mathcore/inc/Math/IParamFunction.h,
	  mathcore/inc/Math/IParamFunctionfwd.h,
	  mathcore/inc/Math/Integrator.h,
	  mathcore/inc/Math/IntegratorMultiDim.h,
	  mathcore/inc/Math/LinkDef.h, mathcore/inc/Math/LinkDef_Func.h,
	  mathcore/inc/Math/Minimizer.h,
	  mathcore/inc/Math/SpecFuncMathCore.h,
	  mathcore/inc/Math/VirtualIntegrator.h,
	  mathcore/inc/Math/WrappedParamFunction.h,
	  mathcore/src/AdaptiveIntegratorMultiDim.cxx,
	  mathcore/src/Integrator.cxx, mathcore/src/IntegratorMultiDim.cxx,
	  mathcore/src/ProbFuncMathCore.cxx,
	  mathcore/src/SpecFuncCephes.cxx, mathcore/src/SpecFuncCephes.h,
	  mathcore/src/SpecFuncCephesInv.cxx,
	  mathcore/src/SpecFuncMathCore.cxx, mathcore/test/TrackDict.xml,
	  mathcore/test/testIntegration.cxx,
	  mathmore/inc/Math/GSLIntegrator.h,
	  mathmore/inc/Math/GSLMCIntegrator.h,
	  mathmore/inc/Math/GSLMinimizer.h,
	  mathmore/inc/Math/GSLRndmEngines.h,
	  mathmore/inc/Math/GSLSimAnMinimizer.h,
	  mathmore/inc/Math/GSLSimAnnealing.h, mathmore/inc/Math/LinkDef.h,
	  mathmore/inc/Math/ParamFunction.h,
	  mathmore/inc/Math/Polynomial.h, mathmore/src/GSLIntegrator.cxx,
	  mathmore/src/GSLMCIntegrator.cxx,
	  mathmore/src/GSLMultiMinimizer.h,
	  mathmore/src/GSLRndmEngines.cxx, mathmore/src/GSLRngWrapper.h,
	  mathmore/src/GSLSimAnMinimizer.cxx,
	  mathmore/src/GSLSimAnnealing.cxx, mathmore/test/Makefile,
	  mathmore/test/simanTSP.cxx, mathmore/test/testDerivation.cxx,
	  mathmore/test/testFunctor.cxx,
	  mathmore/test/testIntegrationMultiDim.cxx: - syncronize math,
	  mathcore and mathmore with development branch
	  
	  - math: remove the const in ParamFunctor::operator()(double *x,
	  double *p)
	  
	  - mathcore:
	  - improve integration interface, have now two separate classes :
	  one for 1D the other for multi-dim functions. Rename class
	  IntegratorMultiDim to AdaptiveIntegratorMultiDim
	  - clean up of IFunction by removing the un-necessary Dim template
	  parameter
	  - add from Cephes inverse functions for normal, beta and gamma
	  functions
	  - improve error reporting
	  
	  - mathmore: improve simulated annealing class and ad a test
	  program taken from GSL: simanTSP
	  fix problem with dictionary of concrete function classes (like
	  Polynomial) on Windows

2007-11-07 09:37  brun

	* [r20695] main/src/hadd.cxx: Optimize hadd in case of files with
	  huge number of objects.
	  The directory hash tables for the temp lists or target file are
	  preset
	  with the number of objects on the input files.

2007-11-07 07:21  brun

	* [r20693] io/src/TFileCacheRead.cxx: Fix typo in previous fix.

2007-11-07 07:16  brun

	* [r20692] io/src/TFileCacheRead.cxx: From Gerri:
	  Fix an important bug introduced in the latest change by Fabrizio.

2007-11-07 01:10  wlav

	* [r20691] pyroot/src/PyRootType.cxx: one more solaris warning fix

2007-11-07 01:05  rdm

	* [r20690] config/Makefile.macosx, config/Makefile.macosx64: remove
	  -fvisibility-inlines-hidden option as it has side effects if not
	  all
	  third party code is also conpiled with this option.

2007-11-06 20:34  brun

	* [r20689] tutorials/proof, tutorials/proof/ProofSimple.C,
	  tutorials/proof/ProofSimple.h, tutorials/proof/getProof.C,
	  tutorials/proof/runProof.C, tutorials/tree/h1analysis.C: From
	  Gerri:
	  - Add a new directory 'proof' under tutorials with a frame to run
	  PROOF tutorials and an example of non-data driven selector making
	  some drawings.
	  
	  Run like this:
	  
	  $ cd tutorials; root -l
	  root[0] .L proof/runProof.C+
	  // Run locally with a number of workers equal to the cores in the
	  machine
	  root[1] runProof("simple")
	  // H1 analysis reading the data via 'http'
	  root[2] runProof("h1")
	  
	  To run on a cluster at 'master.domain' pass the master as second
	  argument
	  
	  root[1] runProof("simple", "master.domain")
	  root[2] runProof("h1", "master.domain")
	  
	  - fix a missing include problem in h1analysis.C

2007-11-06 20:18  ganis

	* [r20688] proofd/src/XrdProofdProtocol.cxx: Fix compilation
	  problem on Solaris

2007-11-06 17:57  ganis

	* [r20685] proof/inc/TProofServ.h, proof/src/TProofServ.cxx: Use
	  the correct name for the new exception handling function

2007-11-06 17:47  rdm

	* [r20684] cint/configcint.mk: fix for macosx and try to optimize
	  when to trigger a recompile by comparing
	  if anything changed compared to previous version. But since a lot
	  of
	  Makefile.ARCH is used this does not help too much.

2007-11-06 15:51  ganis

	* [r20682] netx/src/TXNetFile.cxx, netx/src/TXNetSystem.cxx,
	  proof/inc/TProof.h, proof/inc/TProofLog.h, proof/inc/TProofMgr.h,
	  proof/inc/TProofServ.h, proof/inc/TProofSuperMaster.h,
	  proof/inc/TVirtualProofPlayer.h, proof/src/TDSet.cxx,
	  proof/src/TProof.cxx, proof/src/TProofLog.cxx,
	  proof/src/TProofNodeInfo.cxx,
	  proof/src/TProofResourcesStatic.cxx, proof/src/TProofServ.cxx,
	  proof/src/TProofSuperMaster.cxx, proof/src/TSlave.cxx,
	  proofd/inc/XrdProofConn.h, proofd/inc/XrdProofdClient.h,
	  proofd/inc/XrdProofdManager.h, proofd/inc/XrdProofdProtocol.h,
	  proofd/inc/XrdProofdTrace.h, proofd/src/XrdProofConn.cxx,
	  proofd/src/XrdProofPhyConn.cxx, proofd/src/XrdProofSched.cxx,
	  proofd/src/XrdProofWorker.cxx, proofd/src/XrdProofdAux.cxx,
	  proofd/src/XrdProofdClient.cxx, proofd/src/XrdProofdManager.cxx,
	  proofd/src/XrdProofdProtocol.cxx,
	  proofplayer/inc/TPacketizerAdaptive.h,
	  proofplayer/inc/TProofPlayer.h,
	  proofplayer/inc/TVirtualPacketizer.h,
	  proofplayer/src/TEventIter.cxx,
	  proofplayer/src/TPacketizerAdaptive.cxx,
	  proofplayer/src/TProofFile.cxx, proofplayer/src/TProofPlayer.cxx,
	  proofplayer/src/TVirtualPacketizer.cxx, proofx/inc/TXProofMgr.h,
	  proofx/inc/TXSocket.h, proofx/src/TXProofMgr.cxx,
	  proofx/src/TXProofServ.cxx, proofx/src/TXSlave.cxx,
	  proofx/src/TXSocket.cxx: Import branches/dev/proof r20654
	  
	  Summary:
	  
	  + Improvements
	  - Add support for SSH SOCKS4 tunnelling; the local port for the
	  tunnel can be specified
	  in the master URL, e.g. TProof::Open("master/?tunnel:8000")
	  - Add the possibility to plot the estimated instantaneous rate
	  - Add "PROOF_ForceLocal" parameter to the !TPacketizerAdaptive;
	  if set to 1, all the data
	  are processed locally.
	  - Add support for remote grep functionality while retrieving logs
	  (needed by the forthcoming
	  memory monitor)
	  + Bug fixes
	  - Several small fixes to revive the multi-master mode.
	  - XrdProofdProtocol:
	  - add missing lock to the client instance in SendMsg to avoid
	  screwing up requests from
	  workers on the same machine
	  - lock the mutex of the requester when setting prorities
	  - add notification during Reset
	  - fix problem with the detection of the 'allow' directive
	  - fix problem with the parsing of the return value from
	  XrdProofServProxy::TerminateProofServ()
	  - always use the effective user to retrieve info fom another
	  server
	  (XrdProofdManager::GetProofConn is now used)
	  - fix possible dead-locks from debug notifications done after
	  hard-killing a session
	  - re-enable the garbage collector thread of the connection
	  manager in XrdProofConn to
	  fix a problem with closing physical connections;
	  - fix a problem with !CleanupProofServ in the case of a
	  non-privileged daemon running
	  in multi-user mode
	  - introduce a timeout when waiting for the startup of a
	  'proofserv'.
	  - XrdProofConn: init mutex in the ctor; lock in SendRecv
	  - XrdProofSched: add support for using the priorities defined in
	  the group manager to define
	  the number of workers for sessions
	  - TProof:
	  - Broadcast priorities to unique nodes only
	  - timeout after 5 mins the initial Collect to avoid clients
	  getting stuck at this stage
	  - add support for generic timeout in Collect (disabled by
	  default)
	  - fix a problem with SendFile.
	  - TXProofServ: add a call to !TProof::InterruptCurrentMonitor()
	  in Terminate() to stop
	  infinite loops in Collect
	  - TXSocket:
	  - Implement a flag to interrupt a TXSocket while waiting for
	  messages
	  - Split the session creation timeout in 4 attempts: the total
	  timeout is the same but
	  it may circumvent occasional forking problems.
	  - XROOTD:
	  - fix a potential (possibly accademic) memory leak in the client
	  - fix a access permission problem with Kerberos ticket forwarding
	  - fix bug preventing 'locate' to work properly
	  - re-enable optimized 'locate'

2007-11-06 15:48  rdm

	* [r20681] build/unix/compiledata.sh: add case for macosx64 and
	  macosxicc.

2007-11-06 15:28  rdm

	* [r20680] base/inc/TApplication.h, base/src/TApplication.cxx,
	  rint/inc/TRint.h, rint/src/TRint.cxx, unix/src/TUnixSystem.cxx:
	  From Gerri and me:
	  Add TApplication::HandleException() method, which gets called by
	  TSystem::DispatchSignals() in case of an exception (sigbus,
	  sigsegv, sigill
	  or sigfpe). In derived TApplication's one might now want to not
	  throw
	  or do something else to reset the environment.

2007-11-06 12:41  rdm

	* [r20678] etc/plugins/TProof/P020_TProofSuperMaster.C: From Gerri:
	  fix signature of the supermaster plugin.

2007-11-06 12:40  rdm

	* [r20677] test/ProofBench/Draw_Slave_Access.C: From Gerri:
	  Set a default for the perfstats name (to "PROOF_PerfStats").

2007-11-06 12:40  rdm

	* [r20676] tree/src/TQueryResult.cxx: From Gerri:
	  Fix uninitialized variable issue.

2007-11-06 12:39  rdm

	* [r20675] sessionviewer/src/TProofProgressDialog.cxx: From Gerri:
	  - change background of the rate plot to white
	  - add possibility to plot the instataneous average rate
	  (instead of the instantaneous rate)

2007-11-06 11:55  brun

	* [r20674] tutorials/math/vavilov.C: From valeriy:
	  Add a few lines getting random numbers from the vavilov
	  distribution and filling/drawing a histogram.

2007-11-06 11:31  brun

	* [r20673] gui/inc/TGListTree.h, gui/src/TGListTree.cxx: From
	  Bertrand:
	  Improvements in check boxes handling in TGListTree
	  - Added fCheckMode member.
	  Can be one of the following values:
	  kSimple: check only the selected item
	  kRecursive: recursively check children
	  by default kSimple is used.
	  To change the behaviour, use:
	  TGListTree::SetCheckMode(ECheckMode mode)
	  - Improved the update of the list tree item
	  status (checked/unchecked/greyed)

2007-11-06 11:03  brun

	* [r20670] qtroot/inc/TQtRootGuiFactory.h,
	  qtroot/src/TQtRootGuiFactory.cxx: From Bertrand,
	  
	  Fix compiler warnings

2007-11-06 09:18  couet

	* [r20668] test/stressGraphics.cxx: - Prepend the string "SYS: " to
	  system uname so it can be suppressed when
	  comparing with a test reference.

2007-11-06 08:45  couet

	* [r20667] test/stressGraphics.cxx, test/stressGraphics.ref: - Make
	  sure stressGraphics can run in interactive mode (CINT).
	  - Add 3 new tests.

2007-11-06 00:45  wlav

	* [r20666] pyroot/src/Pythonize.cxx: removed need for ::iterator
	  typedef in containers in pythonize; used
	  the return type from begin() to determine iterator type instead

2007-11-06 00:14  wlav

	* [r20665] tutorials/pyroot/gui_ex.py: beautifications

2007-11-06 00:13  wlav

	* [r20664] pyroot/src/Converters.cxx, pyroot/src/Converters.h,
	  pyroot/src/PropertyProxy.cxx: improved usage of global void*

2007-11-06 00:13  rdm

	* [r20663] config/Makefile.macosx64: remove some differences with
	  the macosx version.

2007-11-06 00:10  rdm

	* [r20662] xrootd/Module.mk: add case for macosx64.

2007-11-05 23:38  wlav

	* [r20661] tutorials/pyroot/aptuple.txt,
	  tutorials/pyroot/gui_ex.py: db file for mrt.py

2007-11-05 23:21  wlav

	* [r20660] tutorials/pyroot/shapes.py: fix memory mgmt

2007-11-05 21:59  wlav

	* [r20659] pyroot/src/PyBufferFactory.cxx, pyroot/src/PyROOT.h:
	  another attempt to quiet warnings on SunOS

2007-11-05 21:13  rdm

	* [r20658] config/Makefile.linux, config/Makefile.linuxx8664gcc:
	  fix location of libgfortranbegin and libgfortran.

2007-11-05 20:45  brun

	* [r20657] test/stress.cxx, test/stressFit.cxx,
	  test/stressGeometry.cxx, test/stressHepix.cxx,
	  test/stressLinear.cxx: From Axel:
	  prepend the string "SYS: " to system uname so it can be
	  suppressed when
	  comparing with a test reference.

2007-11-05 19:15  wlav

	* [r20656] pyroot/src/Converters.cxx, pyroot/src/PyROOT.h,
	  pyroot/src/Pythonize.cxx, pyroot/src/RootModule.cxx,
	  pyroot/src/RootWrapper.cxx: first attempt to quiet warnings on
	  SunOS

2007-11-05 17:53  axel

	* [r20655] reflex/Module.mk: Don't let check-reflex pollute
	  $ROOTSYS/lib/ with test libraries; put them into reflex/test/lib
	  instead.
	  Make sure that ALL tests finish successfully for check-reflex to
	  be successful!

2007-11-05 17:28  axel

	* [r20653] cintex/Module.mk, cintex/test/test_all.bat,
	  cintex/test/test_all.sh: Don't pollute $ROOTSYS/lib/ with test
	  libraries - their rootmap files will screw up ROOT! Instead put
	  them into cintex/test/lib/

2007-11-05 16:50  ganis

	* [r20648] xrootd/src/xrootd-20071001-0000.src.tgz: Import an
	  important fix in the client
	  
	  XROOTD reference tag: v20071001-0000a

2007-11-05 14:57  couet

	* [r20647] graf/inc/TSpline.h, graf/src/TSpline.cxx: - Implement
	  DistancetoPimitive and ExecuteEvent

2007-11-05 14:05  brun

	* [r20646] meta/src/TClass.cxx: Protect TClass::GetClass against
	  infinite loops.

2007-11-05 08:00  brun

	* [r20645] x11/src/TGX11.cxx: Fix a typo in correction proposed by
	  Christian.

2007-11-05 07:29  brun

	* [r20644] x11/src/TGX11.cxx: In TGX11::SetMarkerType replace the
	  statement
	  gMarker.xy[i] = xy[i];
	  
	  with the lines
	  
	  gMarker.xy[i].x = xy[i].x;
	  gMarker.xy[i].x = xy[i].y;
	  to bypass a bug in gcc4.2 with a wrong inlining of a copy
	  constructor.
	  Thanks to Christian Hom: see:
	  <http://savannah.cern.ch/bugs/?30940>

2007-11-05 00:10  rdm

	* [r20640] thread/src/TSemaphore.cxx: corrected method
	  descriptions.

2007-11-04 08:56  brun

	* [r20635] gui/src/TRootBrowser.cxx: From Bertrand:
	  Display the menu of the last remaining tab (when removing tabs)
	  ++ Added protection on menu switching method

2007-11-04 08:55  brun

	* [r20634] gui/src/TGTextEditor.cxx: From Bertrand:
	  - Fix a problem reported by Sergey Linev:
	  When I work with new browser and edit text file, it
	  ask to save modified file when browser is closed.
	  If I press "Yes" or "No", everything is ok, but if
	  I press "Cancel", I get segmentation violation.
	  Same is happening, if I press "Yes", but in file
	  dialog press "Cancel".

2007-11-03 17:15  brun

	* [r20633] sessionviewer/src/TSessionViewer.cxx: From Bertrand:
	  - Fix uninitialized variables reported by valgrind
	  - Fix a crash on Windows at cleanup time

2007-11-02 20:01  brun

	* [r20631] tree/src/TBranch.cxx: From Marian Ivanov:
	  Add a protection in TBranch::GetFile

2007-11-02 19:36  brun

	* [r20630] base/src/TGuiFactory.cxx: From Gerri:
	  Fix compiler warnings on Linux.

2007-11-02 19:34  brun

	* [r20629] geom/src/TGeoNode.cxx: From Gerri:
	  Fix comp[iler warnings on Linux.

2007-11-02 19:30  brun

	* [r20628] configure: From Valeri Fine
	  Fix one more problem with QT4 when configuring.
	  see: http://root.cern.ch/phpBB2/viewtopic.php?t=5677
	  In addition it allows to build Qt layer against of the "debug"
	  version of Qt4 on Win32 platform.

2007-11-02 16:48  antcheva

	* [r20625] gui/src/TGColorSelect.cxx: Fixed warning on linux about
	  unused 'parm1' (Thanks Gerri!)

2007-11-02 16:13  couet

	* [r20623] histpainter/src/TGraphPainter.cxx: - Fix a valgrind
	  error:
	  "Conditional jump or move depends on uninitialised value(s)"

2007-11-02 15:36  antcheva

	* [r20622] gui/src/TRootBrowser.cxx: From Bertrand:
	  Here is the protection. Thanks for reporting new browser crash
	  when
	  executing Close Tab from the menu after all tabs were already
	  closed.

2007-11-02 14:56  couet

	* [r20621] graf/src/TGaxis.cxx: - Some attributes were not saved by
	  SavePrimitive():
	  TitleSize, TitleColor, TitleFont

2007-11-02 14:15  antcheva

	* [r20620] gui/inc/TGTextEditor.h, gui/src/TGTextEditor.cxx: From
	  Bertrand:
	  Remove the command line combo box and its associated label
	  and disable the "Quit" toolbar button when embedding the
	  TGTextEditor in TRootBrowser

2007-11-02 13:51  ganis

	* [r20618] xrootd/src/xrootd-20071001-0000.src.tgz: Add support for
	  Debian GNU/Linux on hppa and mips (from C.H. Christensen)

2007-11-02 13:41  antcheva

	* [r20617] gui/src/TGCommandPlugin.cxx: From Bertrand:
	  Cleanup temporary log file in destructor.

2007-11-02 09:40  antcheva

	* [r20615] gui/src/TGFileBrowser.cxx: From Bertrand:
	  - Solve problems browsing remote files

2007-11-02 09:11  couet

	* [r20613] graf/src/TGraphPolar.cxx: - Remove warning with GCC
	  4.2.3 on Debian GNU/Linux

2007-11-02 08:59  brun

	* [r20612] sessionviewer/src/TSessionDialogs.cxx: From Bertrand:
	  Fix compiler warnings

2007-11-02 08:04  brun

	* [r20611] clarens/src/TXmlRpc.cxx: Fix compiler warnings.

2007-11-02 08:01  brun

	* [r20610] table/src/TFileIter.cxx: Fix compiler warning.

2007-11-02 07:58  brun

	* [r20609] ruby/src/drr.cxx: Fix compiler warning

2007-11-02 07:56  brun

	* [r20608] minuit/src/TLinearFitter.cxx: Fix compiler warning.

2007-11-01 14:30  couet

	* [r20601] hist/src/TF1.cxx: - In Paint: Revision 19260 fixed a
	  problem when plotting several TF1 with
	  option SAME. But this fix made visible an other problem when
	  zooming and
	  unzooming a plot with a fit. This is now also fixed. The
	  following macro
	  shows the problem:
	  {
	  hpx->Fit("gaus");
	  hpx->GetXaxis()->SetRangeUser(.1,.3);
	  gPad->Modified();
	  gPad->Update();
	  hpx->GetXaxis()->UnZoom();
	  gPad->Modified();
	  gPad->Update();
	  }

2007-11-01 09:45  ganis

	* [r20597] proof/src/TProofServ.cxx, proofplayer/inc/TProofFile.h,
	  proofplayer/src/TPacketizerUnit.cxx: Fix coding conventions

2007-11-01 08:13  brun

	* [r20591] main/src/h2root.cxx: Do not break the loop when finding
	  a condition qith zebra setting iquest(1) when reading.

2007-11-01 08:00  brun

	* [r20590] sessionviewer/src/TSessionDialogs.cxx: From Bertrand:
	  Fix coding conventions.

2007-11-01 07:54  brun

	* [r20589] tmva/src/BinarySearchTree.cxx: Fix coding conventions

2007-11-01 07:48  brun

	* [r20588] gl/src/TGLClipSetEditor.cxx, gl/src/TGLOrthoCamera.cxx,
	  gl/src/TGLViewerEditor.cxx: Fix coding conventions

2007-10-31 21:06  wlav

	* [r20586] tutorials/pyroot/gui_ex.py: new gui example gui_ex.py

2007-10-31 14:09  brun

	* [r20582] build/unix/makestatic.sh: Exclude g4root package when
	  building the static versions.

2007-10-31 14:00  rdm

	* [r20581] guihtml/src/TGHtmlBrowser.cxx,
	  sessionviewer/src/TSessionDialogs.cxx: make filetypes static, so
	  they don't conflict. Caused multiple
	  defined symbols error when doing "make static".

2007-10-31 12:22  couet

	* [r20580] histpainter/src/THistPainter.cxx: - Complete the
	  THistPainter::Paint() help with the GL options and interactive
	  commands description.

2007-10-31 09:40  rdm

	* [r20577] config/Makefile.macosx, config/Makefile.macosx64:
	  streamlining for Leopard.

2007-10-31 09:35  rdm

	* [r20576] test/Makefile: distclean did miss some files.

2007-10-31 08:14  rdm

	* [r20573] test/stressFit.cxx, test/stressGraphics.cxx,
	  test/stressLinear.cxx, test/stressShapes.cxx: use in TBenchmark
	  the correct benchmark names and not the generic "stress".

2007-10-31 08:10  antcheva

	* [r20572] gui/src/TRootBrowser.cxx: From Bertrand:
	  Make TRootBrowser status bar the same look than TRootBrowserLite
	  (requested by Sergey Linev)

2007-10-30 15:26  antcheva

	* [r20552] gui/src/TGColorSelect.cxx: ix in
	  TGColorSelect::ProcessMessage - parm1 should
	  contain widget Id

2007-10-30 15:00  brun

	* [r20550] base/inc/TBrowser.h, base/inc/TBrowserImp.h,
	  gui/inc/TRootBrowser.h, gui/inc/TRootBrowserLite.h,
	  gui/src/TRootBrowser.cxx, gui/src/TRootBrowserLite.cxx: From
	  Bertrand:
	  Added TBrowser::SetStatusText(const char* txt, int col), as asked
	  by Sergey Linev to remove dependency of their code from ROOT gui
	  (TG..) classes.

2007-10-30 14:42  brun

	* [r20548] qtgsi/inc/TQRootDialog.h: From Guido Volpi, solve a
	  problem on ubuntu:
	  
	  I tried to compile the ROOT development version using qtgsi
	  extension.
	  The compilation fails because cannot include "qlist.h" file. I
	  found that
	  this file doesn't exist in my QT3 installation and include the
	  "qptrlist.h"
	  file solves the problem.
	  Today I was looking better, and seems that the inclusion of the
	  "qptrfile.h"
	  solves the problem only because it includes the "qglist.h" file.
	  So, trying to summarize all, I can solve the compilation problem
	  applying
	  this change.

2007-10-30 12:01  brun

	* [r20545] pythia6/inc/TPythia6Decayer.h: Make the two functions
	  public instead of protected:
	  void ForceParticleDecay(Int_t particle, Int_t* products,
	  Int_t* mult, Int_t npart);
	  void ForceParticleDecay(Int_t particle, Int_t product, Int_t
	  mult);

2007-10-30 11:47  brun

	* [r20544] base/inc/TAttMarker.h: Increment version number to 2.

2007-10-30 11:47  brun

	* [r20543] gui/src/TRootBrowserLite.cxx: Fix a compiler warning

2007-10-30 11:38  rdm

	* [r20542] asimage/src/TASPaletteEditor.cxx: From Bertrand:
	  Solve a problem on Windows where the 'ramps' radio buttons were
	  not
	  visible and improve their layout.

2007-10-30 10:36  rdm

	* [r20539] config/Makefile.macosx: use UNIX03 compatiblity mode
	  also on 32 bit Leopard (is already default on
	  64 bit).

2007-10-30 10:00  couet

	* [r20538] graf/inc/TPie.h, graf/src/TPie.cxx,
	  tutorials/graphics/piechart.C: - From Guido Volpi:
	  - Redefinition of some static variables: in global variable the
	  flag is
	  not needed, in other part the definition as const is better.
	  - MakeLegend() method can have 4 arguments that represent the
	  TLegend
	  position: TPie::Makelegend(x1,y1,x2,y2). The default values are
	  the old
	  one.
	  - Added the method TPie::SortSlices(Bool_t); this method sorts
	  the
	  TPieSlices according the values in increasing (kTRUE) or
	  decreasing
	  (kFALSE) order.
	  - Added the two more drawing options ">" and "<", to draw
	  applying the
	  increasing or decreasing order.

2007-10-30 09:21  axel

	* [r20536] cintex/Module.mk: Fix check-cintex even more: generate
	  libCintexTestRflx.$(SOEXT).rootmap instead of ./rootmap; make it
	  work for versioned SOs.

2007-10-30 09:10  rdm

	* [r20535] cint/cintdlls.mk: Leopard is now UNIX03 compliant.

2007-10-30 09:10  rdm

	* [r20534] config/Makefile.macosx, config/Makefile.macosx64,
	  config/Makefile.macosxicc, config/Makefile.macosxxlc: Fix some
	  minor issue with the Leopard port.

2007-10-30 02:17  rdm

	* [r20533] cint/lib/posix: ignore mktypes.dSYM which is generated
	  by Mac OS X 10.5 to store debug info.

2007-10-29 16:37  antcheva

	* [r20528] gui/src/TRootBrowser.cxx: From Bertrand:
	  - Added HTML plugin in the Browser menu
	  - Added some documentation (more to come)

2007-10-29 15:17  antcheva

	* [r20527] gui/src/TRootBrowser.cxx: Coding conventions.

2007-10-29 15:16  antcheva

	* [r20526] gui/src/TRootBrowserLite.cxx: Typo in comment. Coding
	  conventions.

2007-10-28 20:32  ivana

	* [r20522] vmc/inc/TMCProcess.h: Adding new process codes:
	  kPAnnihilationRest, // positron annihilation at rest
	  kPAnnihilationFlight, // positron annihilation in flight
	  kPNbarAnnihilation, // antineutron annihilation
	  kPHIElastic, // hadronic elastic incoherent scattering
	  kPHCElastic, // hadronic elastic coherent scattering
	  kPPhotonInhelastic, // photon inelastic scattering
	  kPElectronNuclear, // electron nuclear interaction
	  kPPositronNuclear, // positron nuclear interaction
	  kPScintillation, // scintillation

2007-10-28 11:45  rdm

	* [r20521] base/src/TUri.cxx: include ctype.h for tolower().

2007-10-28 11:44  rdm

	* [r20520] configure: fix for linking with libGL on MacOS X 10.5.

2007-10-27 17:36  rdm

	* [r20519] base/doc/macros/fillpatterns.C,
	  build/unix/makechangelog.sh, graf/doc/macros/mathsymbols.C,
	  mathmore/src/GSLMonteFunctionAdapter.h, qt/inc/TQtRootSlot.h,
	  test/stressEntryList.cxx, tutorials/tree/parallelcoord.C: remove
	  CRLF line endings.

2007-10-27 11:47  rdm

	* [r20518] test/TUriTest.C, tutorials/net/TUriTest.C: move to
	  tutorials.

2007-10-27 08:56  brun

	* [r20517] tmva/inc/Version.h, tmva/src/DataSet.cxx,
	  tmva/src/Factory.cxx, tmva/src/TSpline2.cxx: From Joerg Stelzer:
	  Solves a problem that occurs when preselecting events based on
	  variables that are not part of the training. It was introduced
	  with the last version of TMVA.

2007-10-26 16:17  rdm

	* [r20516] base/inc/TBrowser.h, base/inc/TBrowserImp.h,
	  base/inc/TGuiFactory.h, base/src/TBrowser.cxx,
	  base/src/TGuiFactory.cxx, config/rootrc.in,
	  etc/plugins/TBrowserImp,
	  etc/plugins/TBrowserImp/P010_TRootBrowser.C,
	  etc/plugins/TBrowserImp/P020_TRootBrowserLite.C,
	  geom/src/TGeoManager.cxx, gui/Module.mk, gui/inc/LinkDef3.h,
	  gui/inc/TGCommandPlugin.h, gui/inc/TGFileBrowser.h,
	  gui/inc/TRootBrowser.h, gui/inc/TRootBrowserLite.h,
	  gui/inc/TRootGuiFactory.h, gui/src/TGCommandPlugin.cxx,
	  gui/src/TGFileBrowser.cxx, gui/src/TRootBrowser.cxx,
	  gui/src/TRootBrowserLite.cxx, gui/src/TRootGuiFactory.cxx,
	  guihtml/inc/LinkDef.h, guihtml/inc/TGHtmlBrowser.h,
	  guihtml/src/TGHtmlBrowser.cxx, icons/class.png, icons/member.png,
	  icons/method.png, qtroot/src/TQtRootGuiFactory.cxx: From
	  Bertrand:
	  merged bertrand dev branch changes r20120:20514 into the trunk.
	  
	  Main new feature is the new TBrowser. To turn it on by default
	  change the Browser.Name option in rootrc.
	  
	  Here the detailed ChangeLog:
	  
	  - Renamed TRootBrowser TRootBrowserLite
	  - Introduced the new class TRootBrowser, consisting of three
	  main tabs, as shown below:
	  ______________
	  | | |
	  | | |
	  | |__________|
	  | | |
	  |___|__________|
	  
	  All tabs can 'swallow' frames, thanks to the new method:
	  ExecPlugin(const char *name = 0, const char *fname = 0,
	  const char *cmd = 0, Int_t pos = kRight,
	  Int_t subpos = -1)
	  allowing to select plugins (can be a macro or a command)
	  to be executed, and where to embed the frame created by
	  the plugin. Examples:
	  
	  // create a new browser:
	  TBrowser b;
	  
	  // create a new TCanvas in a new top right tab element:
	  b.ExecPlugin("Canvas", 0, "new TCanvas()");
	  
	  // creates a new top right tab element embedding the
	  // TGMainFrame created by the macro 'myMacro.C':
	  b.ExecPlugin("MyPlugin", "myMacro.C");
	  
	  // creates a new bottom tab element embedding the
	  // TGMainFrame created by the macro 'myMacro.C':
	  b.ExecPlugin("MyPlugin", "myMacro.C", 0, TRootBrowser::kBottom);
	  
	  - new class TGFileBrowser, a file browser plugin for the new
	  TRootBrowser
	  - new class TGCommandPlugin, a command I/O plugin for the new
	  TRootBrowser
	  - new class TGHtmlBrowser, a html browser plugin for the new
	  TRootBrowser
	  - new TBrowserImp plugin used to load the selected TBrowser
	  implementation
	  - the browser implementation can be selected via the env
	  'Browser.Name' in
	  .rootrc, (can be TRootBrowser or TRootBrowserLite) the default
	  being
	  TRootBrowserLite
	  - a list of options (plugins) for the new TRootBrowser is also
	  specified
	  via the env 'Browser.Options' in .rootrc, default being: FEHCI
	  Here is the list of available options:
	  F: File browser E: Text Editor H: HTML browser C: Canvas I: I/O
	  redirection P: Proof G: GL viewer
	  - modified TRootGuiFactory, used to create the real TBrowser
	  implementation.

2007-10-26 14:59  antcheva

	* [r20514] fitpanel/inc/TFitEditor.h: Changed comment.

2007-10-26 14:54  rdm

	* [r20513] base/inc/TUri.h, base/src/TUri.cxx, test/TUriTest.C:
	  remove some more g++ specials (__FUNCTION__).

2007-10-26 14:35  rdm

	* [r20512] base/src/TUri.cxx: not all compilers accept the new
	  "and" and "or" keywords.

2007-10-26 14:21  rdm

	* [r20511] base/Module.mk, base/inc/LinkDef3.h, base/inc/TUri.h,
	  base/src/TUri.cxx, test/TUriTest.C: From Gerhard Bruckner:
	  new TUri class implementing the RFC 3986
	  (http://rfc.net/rfc3986.html).
	  The TUriTest.C still reports a failure for the
	  PctEncode/PctDecode test
	  but that will be fixed shortly.

2007-10-26 14:20  couet

	* [r20510] postscript/src/TSVG.cxx: - Improve header

2007-10-26 14:05  couet

	* [r20509] postscript/src/TPostScript.cxx: - Improve THtml header.

2007-10-26 13:50  couet

	* [r20508] postscript/src/TSVG.cxx: - Implement greek charaters.
	  - Improve the THTML doc.

2007-10-26 13:27  axel

	* [r20504] cintex/test/test_all.sh: set svn:executable property

2007-10-26 12:46  rdm

	* [r20503] build/unix/svninfo.sh: report revision of branch, not of
	  last in repository.

2007-10-26 11:01  brun

	* [r20501] win32gdk/src/TGWin32.cxx: From Bertrand:
	  - solve a crash on Windows when trying to save a GIF file with
	  more than
	  256 colors

2007-10-26 10:59  brun

	* [r20500] asimage/inc/TASImage.h, asimage/src/TASImage.cxx,
	  graf/inc/TImage.h, graf/src/TAttImage.cxx: From valeriy:
	  o TASImage.h, TASImage.cxx, TImage.h
	  new method was introduced GetVecArray
	  Returns a pointer to internal array[width x height] of double
	  values [0, 1]
	  This array is directly accessible. That allows to
	  manipulate/change the image.
	  
	  o TASImage::GetArray
	  Fix to return correct array (previously it was truncated when
	  x, y shift position were not zeros).
	  
	  o TASImage::GetPolygonSpans
	  Fix segv when producing images from some Rene's macro.
	  
	  o fix segv. when image is drawn in canvas and canvas resized.
	  
	  o TAttImage.cxx
	  For "Pretty Palette with a Spectrum Violet->Red" set
	  white color to zeros.

2007-10-25 18:20  brun

	* [r20498] tree/inc/TEntryListFromFile.h: From Axel:
	  Fix a warning on Windows.

2007-10-25 17:45  axel

	* [r20497] cint/src/v6_ifunc.cxx, cint/src/v6_newlink.cxx: Patch
	  CINT's rev 1920 (re-tagged as v5-16-27) into ROOT:
	  Don't call conversion "A::op T()" "A::op ::T()" or conversions
	  will break in CINT.
	  Instead, write out dictionary for "A::op ::T()".
	  ifunc always contains the fully qualified typename for conversion
	  operators.

2007-10-25 16:06  axel

	* [r20495] cint/inc/G__ci.h, cint/src/HISTORY,
	  cint/src/v6_expr.cxx, cint/src/v6_ifunc.cxx,
	  cint/src/v6_loadfile.cxx, cint/src/v6_pause.cxx, cint/test: From
	  Paul, Philippe, and me: CINT 5.16.27

2007-10-25 15:29  rdm

	* [r20491] configure: From Bertrand:
	  fix in python version detection on Windows.

2007-10-25 15:26  rdm

	* [r20490] io/inc/TFileCacheRead.h: make GetBufferSize() const.

2007-10-25 13:22  brun

	* [r20488] config/rootrc.in, io/inc/TFile.h,
	  io/inc/TFileCacheRead.h, io/src/TFile.cxx,
	  io/src/TFileCacheRead.cxx, netx/inc/TXNetFile.h,
	  netx/src/TXNetFile.cxx: From Fabrizio & Gerri:
	  Patch enabling asynchronous reading via XROOTD; a new method
	  TFile::ReadBufferAsync
	  is introduced which gets appropriately overritten in TXNetFile .
	  The new feature can be enabled / disabled via the env
	  'TFile.AsyncReading' in .rootrc,
	  the default being ON.
	  The patch also cleans up the netx section in the system.rootrc,
	  by removing
	  very old unused variables and commenting and setting appropriate
	  default
	  values for the others (no additions, except for the comments).

2007-10-25 10:10  rdm

	* [r20483] gpad/src/TPad.cxx: two typos in comment.

2007-10-25 09:52  ganis

	* [r20481] xrootd/src/xrootd-20071001-0000.src.tgz: Import a fix in
	  the client needed by ALICE in the DPM integration

2007-10-25 07:39  brun

	* [r20479] hist/src/TProfile.cxx, hist/src/TProfile2D.cxx: Fix a
	  bug in the copy constructor.
	  see <http://savannah.cern.ch/bugs/?30716>

2007-10-25 06:44  antcheva

	* [r20478] gui/src/TRootDialog.cxx: Fix in HandleKey method.

2007-10-24 14:30  rdm

	* [r20466] unix/src/TUnixSystem.cxx: Don't return after handling
	  kSigChild in DispatchSignals().

2007-10-24 13:58  couet

	* [r20465] test/stressGraphics.ref: - More adjustments needed.

2007-10-24 13:52  couet

	* [r20464] test/stressGraphics.ref: - Adjustments needed after some
	  changes in the PS output.

2007-10-24 13:24  rdm

	* [r20462] build/unix/distfilelist.sh: the man pages directory was
	  forgotten.

2007-10-24 08:32  couet

	* [r20461] graf/inc/TWbox.h: - As suggested here
	  https://savannah.cern.ch/bugs/?30643 the dark and bright
	  colors are now taken from TColor.

2007-10-24 06:36  brun

	* [r20459] base/src/TColor.cxx: From Valeri Fine:
	  Fix a wrong definition of palette[48] (was 112 instead of 2).

2007-10-23 16:39  rdm

	* [r20457] base/src/TRegexp.cxx: From Gerri:
	  tokenizing "ab" with "/" was giving 2 tokens: 'ab', 'b', while
	  the other
	  tokenizer gives one, 'ab', as 'strtok'.

2007-10-23 16:34  rdm

	* [r20456] config/Makefile.linuxia64ecc, test/Makefile.arch: From
	  Sverre:
	  option ftz = flush-to-zero is needed in some cases of
	  denormalized
	  floating-point numbers.

2007-10-23 12:53  couet

	* [r20448] hist/inc/TGraph2D.h, hist/inc/TGraph2DErrors.h,
	  hist/src/TGraph2D.cxx, hist/src/TGraph2DErrors.cxx: - Implement
	  the Set(n) method as requested here:
	  https://savannah.cern.ch/bugs/?29007

2007-10-23 08:08  antcheva

	* [r20445] gui/src/TGTextEntry.cxx: Updated doc about
	  ShiftTabPressed signal.

2007-10-22 16:21  couet

	* [r20443] gpad/src/TPad.cxx: - The old pending problem with
	  hatched canvases is not fixed. When piece of
	  graphics was moved interactivelly on a pad being painted with a
	  pattern,
	  traces were left.
	  Some code was foreseen in Pad::PaintModified to avoid that but it
	  did not
	  work. Some mods were also needed in windows version of
	  ClearWindow.

2007-10-22 14:38  rdm

	* [r20440] base/src/TRegexp.cxx: fix TString::Tokenize(tok, from,
	  delim) to behave like the other
	  TString::Tokenize() and like strtok().

2007-10-22 14:20  brun

	* [r20436] win32gdk/src/TGWin32.cxx: From Bertrand:
	  Fix a discrepency between X11 and Win32 in
	  TVirtualX::ClearWindow()
	  (call "fill rectangle" instead of "draw rectangle" in
	  TGWin32::ClearWindow())

2007-10-22 13:12  couet

	* [r20433] graf/src/TMultiGraph.cxx: - Fix
	  https://savannah.cern.ch/bugs/?30595 . The loop on the
	  ComputeRange
	  methods (called for each graph in the multigraph) returned the
	  last values
	  provided by the last call to ComputeRange instead of computing
	  the minimum
	  and maximum of all of them. Revision 20335 introduced this bug.

2007-10-22 11:53  antcheva

	* [r20432] tutorials/gui/statusBar.C: Fixed typos, missing include

2007-10-22 11:50  antcheva

	* [r20431] gui/inc/TRootDialog.h, gui/src/TRootDialog.cxx: Made
	  keyboard navigation via <TAB> available for ROOT dialogs
	  with no need to move the mouse pointer over a text entry.

2007-10-22 09:07  moneta

	* [r20428] tutorials/math/mathcoreGenVector.C: - fix tutorials for
	  changes in interface of Transform3D class

2007-10-19 15:45  brun

	* [r20418] tutorials/io/double32.C: New version of the tutorial
	  illustrating the new features with range like [0,0,14].

2007-10-19 15:29  brun

	* [r20417] io/src/TBufferFile.cxx: Fix a comment

2007-10-19 14:56  brun

	* [r20416] geom/inc/TGeoNode.h, geom/inc/TVirtualGeoPainter.h,
	  geom/src/TGeoNode.cxx, geompainter/inc/TGeoChecker.h,
	  geompainter/inc/TGeoPainter.h, geompainter/src/TGeoChecker.cxx,
	  geompainter/src/TGeoPainter.cxx: From Andrei:
	  some modifications to the progress bar and included it when
	  calling gGeoManager->CheckOverlaps()

2007-10-19 13:37  rdm

	* [r20414] tutorials: ignore .root files created by benchmarks.C.

2007-10-19 13:10  rdm

	* [r20413] base/src/TString.cxx: add protection in case of negative
	  len specified in operator()(start, len).
	  Fixes issue 30409.

2007-10-19 12:42  rdm

	* [r20412] configure: fix typo.

2007-10-19 12:37  rdm

	* [r20411] auth/src/TAuthenticate.cxx, auth/src/THostAuth.cxx,
	  auth/src/TRootSecContext.cxx, base/src/TApplication.cxx,
	  base/src/TEnv.cxx, base/src/TQObject.cxx,
	  cint/src/v6_loadfile.cxx, cint/tool/makecint.cxx,
	  cint7/src/v6_loadfile.cxx, cint7/tool/makecint.cxx,
	  eg/src/TDatabasePDG.cxx, geom/src/TGeoElement.cxx,
	  gpad/src/TClassTree.cxx, graf/src/TTF.cxx,
	  gui/src/TGApplication.cxx, gui/src/TGClient.cxx,
	  gui/src/TGFSComboBox.cxx, gui/src/TGResourcePool.cxx,
	  gui/src/TRootBrowser.cxx, gui/src/TRootCanvas.cxx,
	  main/src/pmain.cxx, net/src/TApplicationServer.cxx,
	  net/src/TSecContext.cxx, proof/src/TProof.cxx,
	  proof/src/TProofServ.cxx, proof/src/TSlave.cxx,
	  proofd/src/XrdProofdProtocol.cxx, proofd/src/proofd.cxx,
	  proofx/src/TXProofServ.cxx, qt/src/TGQt.cxx,
	  rint/src/TTabCom.cxx, rootd/src/rootd.cxx, rootx/src/rootx.cxx,
	  rootx/src/rootxx.cxx, thread/src/TThread.cxx,
	  treeviewer/src/TTreeViewer.cxx, unix/src/TUnixSystem.cxx,
	  utils/src/RStl.cxx, utils/src/rootcint.cxx: remove conditional
	  around include of RConfigure.h:
	  
	  #ifdef R__HAVE_CONFIG
	  #include "RConfigure.h"
	  #endif
	  
	  Having this conditional caused RConfigure.h to be missing from
	  the .d
	  files and hence these files would not be recompiled after
	  re-configuring
	  using --prefix.

2007-10-19 12:34  rdm

	* [r20409] configure: don't regenerate include/RConfigure.h when
	  its contents does not change.
	  This saves a lot of recompilation after running ./configure.

2007-10-19 12:18  wouter

	* [r20408] roofitcore/inc/RooAbsAnaConvPdf.h,
	  roofitcore/inc/RooAbsArg.h, roofitcore/inc/RooAbsCachedPdf.h,
	  roofitcore/inc/RooAbsPdf.h, roofitcore/inc/RooAddPdf.h,
	  roofitcore/inc/RooCacheManager.h,
	  roofitcore/inc/RooLinkedListIter.h,
	  roofitcore/inc/RooObjCacheManager.h, roofitcore/inc/RooProdPdf.h,
	  roofitcore/inc/RooProjectedPdf.h,
	  roofitcore/inc/RooSuperCategory.h, roofitcore/src/RooAbsArg.cxx,
	  roofitcore/src/RooAbsCachedPdf.cxx, roofitcore/src/RooAbsPdf.cxx,
	  roofitcore/src/RooAbsRealLValue.cxx,
	  roofitcore/src/RooAddPdf.cxx, roofitcore/src/RooFFTConvPdf.cxx,
	  roofitcore/src/RooObjCacheManager.cxx,
	  roofitcore/src/RooProjectedPdf.cxx,
	  roofitcore/src/RooRealIntegral.cxx,
	  roofitcore/src/RooSetProxy.cxx,
	  roofitcore/src/RooSimultaneous.cxx,
	  roofitcore/src/RooTreeData.cxx: o RooAbsRealLValue
	  
	  - Remove stray debug print statements
	  
	  
	  o RooAddPdf
	  
	  - Add new default ctor to fix persistence introduced by
	  new cache management scheme
	  
	  - Add forgotten initializer to regular ctor
	  
	  
	  o RooAbsCachedPdf
	  
	  - Add formal server-link dependency on cache parameters to
	  RooHistPdf cache representation so that the constant term
	  optimizer can make the correct decision
	  
	  - Make RooObjCacheManager a persistent data member
	  
	  
	  o RooObjCacheManager
	  
	  - Add debug message level information
	  
	  - Make _optCacheObservables a transient data member and
	  initialize
	  it in the default ctor.
	  
	  
	  o RooAbsPdf, RooProjectedPdf
	  
	  - Add new default ctor to fix persistence introduced by
	  new cache management scheme
	  
	  - Make RooObjCacheManager a persistent data member
	  
	  
	  o RooAbsArg
	  
	  - Add methods graphVizTree() that produce input files
	  for AT&Ts graphViz to make graphical representation
	  of object tree. (To make actual graphics run 'dot -Tps -o
	  graph.ps %s'
	  where %s is argument passed to graphVizTree().
	  
	  o RooSetProxy
	  
	  - Remove stray debug print statements
	  
	  
	  o RooSimultaneous
	  
	  - Initialize forgotten data member in all ctors
	  
	  
	  o RooProdPdf, RooAbsAnaConvPdf
	  
	  - Make RooObjCacheManager a persistent data member
	  
	  
	  o RooSuperCategory
	  
	  - Make contained iterator a transient data member
	  and initialize it in the default ctor.
	  
	  
	  o RooCacheManager
	  
	  - Add explicit separate default ctor.

2007-10-19 07:48  brun

	* [r20405] hist/src/TH1.cxx, minuit/src/TLinearFitter.cxx: Add
	  support for fitting with a function dimension less than the
	  histogram dimension.
	  // It is possible to fit a TH2 with a TF1 or a TH3 with a TF2.
	  // In this case the option "Integral" is not allowed and each
	  cell has
	  // equal weight.

2007-10-18 17:48  brun

	* [r20402] io/src/TBufferFile.cxx: Fix an error introduced in the
	  previous patch assumed to fix a compilation problem with icc.

2007-10-18 13:02  brun

	* [r20398] geom/src/TGeoCone.cxx, geom/src/TGeoSphere.cxx: From
	  Andrei:
	  fix for the raytracing problem reported at the forum:
	  http://root.cern.ch/phpBB2/viewtopic.php?t=5584.
	  In fact there was a repeated bug in
	  TGeoSphere::DistFromOutside/Inside.

2007-10-18 10:42  ganis

	* [r20397] netx/src/TXNetSystem.cxx: Uncommit part of the last
	  patch which uses functionality not yet in SVN

2007-10-18 10:30  ganis

	* [r20396] netx/src/TXNetSystem.cxx,
	  xrootd/src/xrootd-20071001-0000.src.tgz: Import change 20384:
	  - Fix bug preventing 'locate' to work properly
	  - Re-enable optimized 'locate'

2007-10-18 09:55  couet

	* [r20395] histpainter/src/THistPainter.cxx: - Two new options in
	  PaintErrors: E5 and E6. They are like E3 and E4 but
	  the empty bins are ignored.

2007-10-17 21:07  brun

	* [r20391] main/src/h2root.cxx: Remove obsolete code when
	  converting hbook profile histograms.
	  Use SetBinEntries instead of an explicit loop that was extremely
	  slow
	  in case of a profile with many entries.

2007-10-17 14:35  brun

	* [r20390] tree/inc/TChain.h, tree/src/TChain.cxx: Following a
	  suggestion by Philip Rodrigues (p.rodrigues1@physics.ox.ac.uk)
	  add more comments to explain how to get the list of files of a
	  TChain.

2007-10-17 14:19  brun

	* [r20388] io/src/TKey.cxx: From Ilka:
	  Fix a crash in ROOT after double-click on the same object in a
	  root file introduced by changes in TKey::Browse in rev. 19743

2007-10-17 09:23  brun

	* [r20387] graf/src/TGraphAsymmErrors.cxx: From Lorenzo:
	  patch to fix TGraphAsymmErrors::BayesDivide (bug
	  https://savannah.cern.ch/bugs/?30246).
	  Fixed by increasing precision when inverting the integral of the
	  beta (beta quantile). In the long term should be fixed by using
	  directly ROOT::Math::beta_quantile

2007-10-17 08:08  couet

	* [r20385] histpainter/src/THistPainter.cxx: - Fix
	  https://savannah.cern.ch/bugs/index.php?29574.
	  In PaintInit, in case of (log scale long X) && (xmin <=0) &&
	  (option
	  SAME), Hparam.xmin should be initialise with the Pad xmin value
	  instead
	  of 0.1*binwidth.

2007-10-16 19:42  pcanal

	* [r20381] cint/src/v6_expr.cxx, treeplayer/src/TFormLeafInfo.cxx:
	  Avoid stripping the space after const in class name like:
	  std::vector<const ns::myclass*>
	  when operator new and operator delete are called via G__calc
	  In TFormLeafInfoMethod use this new parsing for calling new
	  and delete of the temporary objects.

2007-10-16 19:39  pcanal

	* [r20380] utils/src/rootcint.cxx: From Axel:
	  Use header files instead of bundle name in auto-generated
	  Linkdef.h if
	  rootcint is run with "-p".

2007-10-16 19:07  pcanal

	* [r20379] tree/inc/TTreeCache.h: remove fixed length array of
	  branch

2007-10-16 19:07  pcanal

	* [r20378] tree/src/TTreeCache.cxx: remove fixed length array of
	  branch

2007-10-16 16:21  rdm

	* [r20376] io/src/TBufferFile.cxx: white space.

2007-10-16 16:21  rdm

	* [r20375] io/inc/TStreamerInfo.h, meta/inc/TVirtualStreamerInfo.h:
	  removing Intel icc compiler warning.

2007-10-16 16:19  rdm

	* [r20374] README/CREDITS: Add Long Tran-Thanh for work on PROOF.

2007-10-16 14:28  brun

	* [r20372] hist/src/TAxis.cxx: n TAxis::setRangeUser fix problem
	  reported at: https://savannah.cern.ch/bugs/index.php
	  The solution is to use FindFixBin instead of FindBin.

2007-10-16 14:26  brun

	* [r20371] base/inc/RVersion.h, build/version_number: Start
	  development version 5.17/05

2007-10-16 10:24  brun

	* [r20368] build/package/msi/makemsi.cxx: From Axel:
	  No '@' in file IDs for MSI.

2007-10-16 08:52  brun

	* [r20365] build/unix/distfilelist.sh: From Axel:
	  Fix for make dist and make distmsi to not distribute some
	  internals SVN files.

2007-10-16 08:23  brun

	* [r20363] gl/inc/TGLUtil.h, gl/src/TGLLegoPainter.cxx,
	  gl/src/TGLPlotPainter.cxx, gl/src/TGLSurfacePainter.cxx,
	  gl/src/TGLUtil.cxx: From Timur:
	  Fix problem reported at:
	  http://root.cern.ch/phpBB2/viewtopic.php?t=5595&sid=6404e6f8698a5d871642febd9bd0636a

2007-10-16 07:14  brun

	* [r20362] base/inc/RVersion.h, build/version_number: Stamp
	  development release 5.17/04

2007-10-16 06:20  brun

	* [r20360] tutorials/math/mathmoreIntegration.C: From Lorenzo:
	  Fix for broken tutorial.

2007-10-15 23:09  pcanal

	* [r20359] pyroot/inc/TPyException.h: Work around the fact that
	  Sun's math.h define a
	  struct named exception and rw/math.h also define
	  a related #define

2007-10-15 16:44  brun

	* [r20355] io/src/TBufferFile.cxx: Remove compiler warnings in
	  functions riteDouble32 and WriteFloat16.

2007-10-15 15:49  brun

	* [r20353] reflex/python/genreflex/genreflex.py,
	  reflex/python/genreflex/genreflex06.py: From Axel:
	  Properly quote parameters when invoking gccxml. Fixes
	  https://savannah.cern.ch/bugs/?30133

2007-10-15 15:11  brun

	* [r20352] mathcore/Module.mk,
	  mathcore/inc/Math/LinkDef_GenVector32.h, mathcore/test/Track.h,
	  mathcore/test/testVectorIO.cxx, mathmore/test/Makefile,
	  mathmore/test/testRandomDist.cxx: From Lorenzo:
	  patch for adding classes requested by CMS in the dictionary for
	  double 32 in MathCore.
	  I have added also a patch for fixing a test in mathmore .

2007-10-15 14:43  rdm

	* [r20351] alien/inc/TAlien.h, alien/inc/TAlienJDL.h,
	  alien/inc/TAlienJob.h, alien/src/TAlien.cxx,
	  alien/src/TAlienJDL.cxx, alien/src/TAlienJob.cxx,
	  net/inc/TGrid.h, net/inc/TGridJob.h: From Andreas:
	  implement suggestion coming from Savannah: 29472. Also some minor
	  bug
	  fixes.

2007-10-15 11:54  brun

	* [r20345] roofitcore/src/RooRealIntegral.cxx: From Wouter:
	  Emergency bug fix.

2007-10-15 09:50  wouter

	* [r20342] roofitcore/src/RooBanner.cxx: o RooBanner
	  
	  - Increment version from v2.22

2007-10-15 09:47  brun

	* [r20341] geom/src/TGeoPcon.cxx, geom/src/TGeoPgon.cxx,
	  geom/src/TGeoVolume.cxx, geom/src/TGeoXtru.cxx: From Andrei:
	  some fixes for some array access violations in pcon, pgon and
	  xtru spotted by Federico. Some protections were missing in
	  correlation of the usage of TMath::BinarySearch() (numeric
	  exception cases on boundaries).

2007-10-13 16:15  rdm

	* [r20337] xmlparser/inc/TXMLParser.h,
	  xmlparser/src/TXMLParser.cxx: Add methods:
	  void SetReplaceEntities(Bool_t)
	  Bool_t GetReplaceEntities() const
	  this allows the setting of the replaceEntities attribute in the
	  xmlParserCtxt
	  so that entities coming from external documents will be properly
	  expanded.
	  This fixes issue: 28145.

2007-10-13 15:55  wlav

	* [r20336] pyroot/src/MethodHolder.cxx: fix for Solaris method
	  overloading

2007-10-13 14:19  brun

	* [r20335] graf/src/TGraph.cxx, graf/src/TGraphAsymmErrors.cxx,
	  graf/src/TGraphBentErrors.cxx, graf/src/TGraphErrors.cxx,
	  graf/src/TMultiGraph.cxx: Change TGraph::ComputeRange to compute
	  the x/y range of the graph.
	  Move code previously in TGraph::PaintGraph or
	  TGraph::PaintGrapHist to TGraph::ComputeGraph.
	  The functions like TGraphErrors::ComputeGraph call first
	  TGraph::ComputeRange.
	  --achis line, and those below, will be ignored--
	  
	  M graf/src/TGraph.cxx
	  M graf/src/TMultiGraph.cxx
	  M graf/src/TGraphErrors.cxx
	  M graf/src/TGraphAsymmErrors.cxx
	  M graf/src/TGraphBentErrors.cxx

2007-10-13 08:51  brun

	* [r20334]
	  etc/plugins/ROOT@@Math@@VirtualIntegrator/P010_GSLIntegrator.C,
	  etc/plugins/ROOT@@Math@@VirtualIntegrator/P020_GSLMCIntegrator.C:
	  From Lorenzo:
	  By more testing, I found a a problem loading the library. Here is
	  the patch that
	  
	  fix the loading of the MathMore library when instantiating the
	  plugin.

2007-10-13 07:12  ganis

	* [r20333] proof/inc/TProof.h, proof/src/TProof.cxx: Add missing
	  check on the version run by the server before sending a request
	  for generic non-data driven processing

2007-10-13 00:53  wlav

	* [r20332] pyroot/src/MethodHolder.cxx: fix for Solaris compilation
	  error

2007-10-12 17:38  pcanal

	* [r20331] cint/src/v6_parse.cxx: From Paul:
	  Fix parsing problem during bytecode generation for
	  a switch statement when a case block is empty.
	  
	  switch (i) {
	  case 0:
	  case 1:
	  printf("case 0 or 1\n");
	  break;
	  default:
	  printf("case default\n");
	  break;
	  }
	  
	  would execute the default block when i was 0.
	  
	  The problem was that we forgot to tell the
	  parser to handle case labels when we started
	  to evaluate the code for a case block, resulting
	  in the "case 1:" label not being processed,
	  which caused the "intentional fallthrough"
	  jump at the end of the "case 0:" block to be
	  improperly backpatched.
	  
	  The fix is simple, we enable case label
	  processing when we execute a case block, and
	  restore state when we have finished.

2007-10-12 17:04  brun

	* [r20329] etc/plugins/ROOT@@Math@@VirtualIntegrator,
	  etc/plugins/ROOT@@Math@@VirtualIntegrator/P010_GSLIntegrator.C,
	  etc/plugins/ROOT@@Math@@VirtualIntegrator/P020_GSLMCIntegrator.C:
	  From Lorenzo:
	  add plugin for MathMore numerical integration

2007-10-12 16:40  pcanal

	* [r20328] meta/src/TCint.cxx: TCint::TypeName, avoid skipping
	  unsigned in 'unsigned long long'

2007-10-12 16:39  pcanal

	* [r20327] tree/src/TLeaf.cxx: In GetLeafCounter, correct and
	  expand comments. Return countval==-1 when the array dim in not
	  parseable

2007-10-12 16:28  moneta

	* [r20326] mathmore/Module.mk, mathmore/inc/Math/GSLIntegrator.h,
	  mathmore/inc/Math/GSLMCIntegrator.h,
	  mathmore/inc/Math/IntegrationTypes.h,
	  mathmore/inc/Math/Integrator.h, mathmore/inc/Math/LinkDef.h,
	  mathmore/src/GSLIntegrator.cxx, mathmore/src/GSLIntegrator.h,
	  mathmore/src/GSLMCIntegrationWorkspace.h,
	  mathmore/src/GSLMCIntegrator.cxx, mathmore/src/Integrator.cxx,
	  mathmore/test/testIntegration.cxx,
	  mathmore/test/testIntegrationMultiDim.cxx,
	  mathmore/test/testStatFunc.cxx: - sync with dev branch (r 20324)
	  - use common interface for integration methods

2007-10-12 16:26  moneta

	* [r20325] mathcore/Module.mk,
	  mathcore/inc/Math/AllIntegrationTypes.h,
	  mathcore/inc/Math/Integrator.h,
	  mathcore/inc/Math/IntegratorMultiDim.h,
	  mathcore/inc/Math/LinkDef.h,
	  mathcore/inc/Math/VirtualIntegrator.h,
	  mathcore/src/Integrator.cxx, mathcore/src/IntegratorMultiDim.cxx,
	  mathcore/test/Makefile, mathcore/test/testIntegration.cxx: - add
	  common class for integration method + VirtualIntegrator interface
	  - use plug-in manager to use GSL implementation

2007-10-12 15:36  wouter

	* [r20321] roofitcore/Module.mk, roofitcore/inc/LinkDef3.h,
	  roofitcore/inc/RooAbsArg.h, roofitcore/inc/RooAbsPdf.h,
	  roofitcore/inc/RooExtendedTerm.h, roofitcore/inc/RooRealVar.h,
	  roofitcore/src/RooAbsPdf.cxx, roofitcore/src/RooAbsReal.cxx,
	  roofitcore/src/RooAddPdf.cxx, roofitcore/src/RooCmdConfig.cxx,
	  roofitcore/src/RooExtendedTerm.cxx, roofitcore/src/RooMinuit.cxx,
	  roofitcore/src/RooMultiCatIter.cxx,
	  roofitcore/src/RooMultiCategory.cxx,
	  roofitcore/src/RooObjCacheManager.cxx,
	  roofitcore/src/RooSimPdfBuilder.cxx: o RooExtendedTerm
	  
	  - New p.d.f. class that has no shape but just introduces
	  an extended likelihood term
	  
	  
	  o RooCmdConfig
	  
	  - Add production to null pointer in decodeStringOnTheFly()
	  
	  
	  o RooAbsReal
	  
	  - Fix attachment to of TTree branches that are not of type
	  Double_t.
	  
	  
	  o RooAddPdf
	  
	  - Remove forgotten debug print statements
	  
	  
	  o RooObjCacheManager
	  
	  - In optimizeCacheMode() remove old snapshot of cacheObservables
	  only after new snapshot has been created to resolve cyclical
	  dependency problems where new snapshot is modeled on old
	  snapshot.
	  
	  o RooAbsPdf
	  
	  - Add redirectServersHook() that clears _norm pointer
	  
	  - Add checkfor null _norm object in getVal() and retrieve
	  new normalization object in such cases from syncNormalization()
	  
	  - Migrate messages in generate() to RooMsgService
	  
	  
	  o RooMultiCatIter
	  
	  - Remove requirement that input categories are lvalues as this
	  is not required.
	  
	  
	  o RooSimPdfBuilder
	  
	  - Add check in build code that verifies that auxiliary splitting
	  categories
	  used in composite splits do not depend on any other category of
	  that
	  composite split, i.e. you cannot split in f(x),x, only in f(y),x
	  
	  
	  o RooMinuit
	  
	  - Add protection in contour function agains Minuit failures which
	  cause
	  a null TGraph pointer to be returned
	  
	  
	  o LinkDef3.h,Module.mk
	  
	  - Add class RooExtendedTerm

2007-10-12 15:34  ganis

	* [r20320] proofd/src/XrdProofPhyConn.cxx, proofd/src/proofd.cxx:
	  Fix some warnings on Solaris

2007-10-12 09:15  pcanal

	* [r20318] cint/inc/Api.h, cint/inc/G__ci.h, cint/include/ReadF.C,
	  cint/include/ReadF.cxx, cint/include/ReadF.h,
	  cint/lib/stdstrct/stdcxxfunc.h, cint/src/Apiif.cxx,
	  cint/src/Apiif.h, cint/src/HISTORY, cint/src/v6_expr.cxx,
	  cint/src/v6_ifunc.cxx, cint/src/v6_init.cxx,
	  cint/src/v6_parse.cxx, cint/src/v6_struct.cxx, cint/stl/algo.h:
	  from Paul, Philippe, Masa, and Axel: import CINT v5-16-26.

2007-10-12 05:25  ganis

	* [r20316] xrootd/src/xrootd-20071001-0000.src.tgz: Previous
	  tarball missed a fix in one of the Windows makefiles.

2007-10-11 23:26  rdm

	* [r20315] configure, netx/src/TXNetSystem.cxx, xrootd/Module.mk,
	  xrootd/src/xrootd-20070716-0300.src.tgz,
	  xrootd/src/xrootd-20071001-0000.src.tgz: From Gerri:
	  Import updated version of XROOTD, including some crucial fixes in
	  the
	  client ReadV code.
	  To build do: make distclean-netx distclean-proofd
	  distclean-proofx.

2007-10-11 14:50  moneta

	* [r20311] tutorials/math/Bessel.C, tutorials/math/GammaFun.C,
	  tutorials/math/Legendre.C, tutorials/math/LegendreAssoc.C,
	  tutorials/math/tStudent.C: - add new tutorials of math functions
	  developed by Magdalena

2007-10-11 12:45  couet

	* [r20309] graf/inc/TGraphBentErrors.h,
	  graf/src/TGraphBentErrors.cxx: - The signatures of the two
	  SetPointError methods were incomplete. The shift
	  values in the various directions were missing. To preserve the
	  backward
	  compatibility, the missing parameters have been added with
	  default value = 0.
	  The new signature is now used in SavePrimitive which allows a
	  correct saving
	  of the TGraphBentErrors.

2007-10-11 11:23  couet

	* [r20308] graf/src/TGraph.cxx, graf/src/TGraphAsymmErrors.cxx,
	  graf/src/TGraphBentErrors.cxx, graf/src/TGraphErrors.cxx: - In
	  SavePrimitive "*l" should be declared as const (strtstr returns a
	  const *char). This produced an error on Solaris.

2007-10-11 10:58  ganis

	* [r20307] proof/inc/TDSet.h, proof/inc/TProof.h,
	  proof/src/TDSet.cxx, proof/src/TProof.cxx,
	  proof/src/TProofServ.cxx, proof/src/TSlave.cxx,
	  proofd/inc/XProofProtocol.h, proofd/inc/XrdProofGroup.h,
	  proofd/inc/XrdProofServProxy.h, proofd/inc/XrdProofdProtocol.h,
	  proofd/inc/XrdProofdTrace.h, proofd/src/XrdProofGroup.cxx,
	  proofd/src/XrdProofServProxy.cxx, proofd/src/XrdProofdClient.cxx,
	  proofd/src/XrdProofdManager.cxx,
	  proofd/src/XrdProofdProtocol.cxx, proofplayer/inc/LinkDef.h,
	  proofplayer/inc/TPacketizerUnit.h, proofplayer/inc/TProofFile.h,
	  proofplayer/inc/TProofPlayer.h, proofplayer/src/TPacketizer.cxx,
	  proofplayer/src/TPacketizerAdaptive.cxx,
	  proofplayer/src/TPacketizerProgressive.cxx,
	  proofplayer/src/TPacketizerUnit.cxx,
	  proofplayer/src/TProofFile.cxx, proofplayer/src/TProofPlayer.cxx,
	  proofx/src/TXProofServ.cxx, proofx/src/TXSocket.cxx: Import
	  branches/dev/proof r20306
	  
	  Summary (see branch logs for more details):
	  
	  - Set of changes related to CPU quota control including
	  - broadcast of centrally determined priorities
	  - mechanism to renice processes in a quantitative way
	  - New packetizer for non-tree based analysis and related API in
	  TProof (from L. Tran-Thanh)
	  - Support for merging output objects saved in files on the
	  workers (from L. Tran-Thanh and me)
	  - Improve version binary compatibility checks using also the SVN
	  revision number
	  (when available) to define the running version.
	  - Extend the version binary compatibility checks also to the
	  cached selector binaries.
	  - Extend TDSet::Lookup so that in case of missing files, it can
	  remove them from the
	  dataset (option removeMissing must be set).
	  - Move the data set lookup to the TProofPlayerRemote::Process.
	  - Handle properly the case of incomple datasets: if the file is
	  not found in the lookup
	  don't try to validate it; add it, instead, to a 'missingFiles'
	  list returned in the
	  output list (fixing bug #28800 in Savannah).

2007-10-11 08:53  rdm

	* [r20303] config/root-config.in, configure: Simplify and robustify
	  the python library and include detection (use
	  the actuall python used to get info on the paths).
	  
	  In root-config add new options:
	  --python-version Print the Python version used by ROOT
	  --svn-revision Print the ROOT SVN revision number

2007-10-10 21:12  moneta

	* [r20302] hist/src/TF1Helper.cxx: remove a left-out debug
	  statement

2007-10-10 21:06  moneta

	* [r20301] hist/src/TF1Helper.cxx: fix bug #30166, thanks to Chul
	  Su Park

2007-10-10 19:12  brun

	* [r20299] io/src/TBufferFile.cxx, meta/src/TStreamerElement.cxx:
	  Fix bad conversions issues and do not accept cases with nbits>=15
	  when the Double32_t mode like [0,0,nbits] is specified.

2007-10-10 16:20  couet

	* [r20297] graf/src/TGraph.cxx, graf/src/TGraphAsymmErrors.cxx,
	  graf/src/TGraphBentErrors.cxx, graf/src/TGraphErrors.cxx,
	  graf/src/TMultiGraph.cxx: - The SavePrimitive mechanism did not
	  work properly. In particular
	  it was not possible to save various kind of graphs in several
	  multigraph
	  in the same macro. Also in case of TGraph the generated macro was
	  wrong
	  (Add() was missing).
	  - Make the help in the THTML style
	  - coding convension

2007-10-10 15:12  brun

	* [r20293] io/src/TBufferFile.cxx: Add a few more comments to the
	  description of Double32 and Float16 in
	  TBufferFile::WriteFloat16 and TBufferFile::WriteDouble32.

2007-10-10 14:08  brun

	* [r20292] base/inc/TVirtualViewer3D.h, ged/src/TGedEditor.cxx,
	  gl/inc/TGLCamera.h, gl/inc/TGLLightSetEditor.h,
	  gl/inc/TGLOrthoCamera.h, gl/inc/TGLPerspectiveCamera.h,
	  gl/inc/TGLScenePad.h, gl/inc/TGLUtil.h, gl/inc/TGLViewer.h,
	  gl/inc/TGLViewerEditor.h, gl/src/TGLCamera.cxx,
	  gl/src/TGLClipSetEditor.cxx, gl/src/TGLLightSet.cxx,
	  gl/src/TGLLightSetEditor.cxx, gl/src/TGLOrthoCamera.cxx,
	  gl/src/TGLPerspectiveCamera.cxx, gl/src/TGLScenePad.cxx,
	  gl/src/TGLUtil.cxx, gl/src/TGLViewer.cxx,
	  gl/src/TGLViewerEditor.cxx, tutorials/gl/glViewerExercise.C,
	  tutorials/gl/glViewerLOD.C: From Matevz & Alja
	  
	  * base/inc/TVirtualViewer3D.h:
	  Add function virtual void ObjectPaint(TObject*, Option_t*).
	  
	  
	  /**************************************************************************/
	  
	  * ged/src/TGedEditor.cxx:
	  When adding top-level TGFrame for the extra tabs specify layout
	  hints with kLHintsExpandX.
	  
	  
	  /**************************************************************************/
	  
	  * gl/inc/TGLScenePad.h:
	  * gl/src/TGLScenePad.cxx:
	  Implement virtual TVirtualViewer3D::ObjectPaint().
	  
	  * gl/src/TGLCamera.cxx:
	  * gl/inc/TGLCamera.h:
	  * gl/src/TGLPerspectiveCamera.cxx:
	  * gl/inc/TGLPerspectiveCamera.h:
	  * gl/src/TGLOrthoCamera.cxx:
	  * gl/inc/TGLOrthoCamera.h:
	  Introduce two transformation matrices to clearly define movement
	  of camera around the center point. The first transformation
	  matrix
	  fCamBase defines the coordinate system placed at the camera
	  center
	  point with camera up-vector as the third base vector. The second
	  transformation matrix fCamTrans defines the camera transformation
	  relative to fCamBase.
	  
	  Implement a common Truck(), Rotate() and Dolly() function for
	  orthographic and perspective camera.
	  
	  Implement an option to define camera center point
	  externally. Center can also be determined via picking.
	  
	  * gl/src/TGLUtil.cxx:
	  * gl/inc/TGLUtil.h:
	  TGLMatrix: add new functions to get/set the base vectors
	  directly.
	  
	  TGLUtil: add member UInt_t fgDefaultDrawQuality.
	  
	  TGLRect: bugfix in Diagonal(), integer calculation overflowed.
	  
	  * gl/src/TGLViewer.cxx:
	  * gl/inc/TGLViewer.h:
	  Make interface to draw camera center point.
	  Add option to disable/enable depth test when drawing axis guides.
	  
	  * gl/src/TGLViewerEditor.cxx:
	  * gl/inc/TGLViewerEditor.h:
	  Add GUI to manipulate camera center and to disable/enable depth
	  test when drawing axis guides.
	  
	  * gl/src/TGLClipSetEditor.cxx:
	  Change layout of labeled number entries.
	  
	  * gl/src/TGLLightSet.cxx:
	  Fix positioning of front light. White-space consolidation.
	  
	  * gl/src/TGLLightSetEditor.cxx:
	  * gl/inc/TGLLightSetEditor.h:
	  Put GUI for the 6 lights in two columns.
	  
	  
	  /**************************************************************************/
	  
	  * tutorials/gl/glViewerExercise.C:
	  Follow-up on changes in TGLCamera. Enable rotation on
	  orthographic camera.
	  
	  * tutorials/gl/glViewerLOD.C:
	  Workourond for cint bug with switch statements.

2007-10-10 12:47  couet

	* [r20291] base/src/TColor.cxx: - In TColor::InitializeColors()
	  SetPalette is called only if fgPalette.fN == 0.
	  fgPalette.fN !=0 means that SetPalette has been, very likely,
	  already called
	  from rootlogon.C. Calling it again would reset the palette.

2007-10-10 10:59  axel

	* [r20290] reflex/src/Class.cxx: From Hady Zalek: fix path
	  determination for Class::HasBase()

2007-10-09 21:19  brun

	* [r20284] tmva/inc/BinarySearchTree.h, tmva/inc/MethodPDERS.h,
	  tmva/src/BinarySearchTree.cxx, tmva/src/DataSet.cxx,
	  tmva/src/MethodLikelihood.cxx, tmva/src/MethodPDERS.cxx,
	  tmva/src/RuleEnsemble.cxx, tmva/test/TMVAnalysis.C,
	  tmva/test/TMVAnalysis.py: From Joerg Stelzer:
	  * Bug fix:
	  A segmentation fault was fixed that appeared when the user gave
	  signal and background data in form of TChains.
	  
	  * Feature:
	  The search speed of the BinarySearchTree has been increased by
	  improving the tree balance.

2007-10-09 19:56  pcanal

	* [r20281] cint/src/CallFunc.cxx: Do not allocated memory in
	  SetArgs when there is nothing to parse\!

2007-10-09 18:47  pcanal

	* [r20280] tree/inc/TTreeCache.h, tree/src/TTreeCache.cxx: From
	  Leo:
	  Add the ability to manually enter the list of used branches.
	  
	  root [0] f = TFile::Open("root://localhost://tmp/Event.root");
	  root [1] TTree *T = (TTree*)f->Get("T");
	  root [2] T->SetCacheSize(10000000);
	  root [4] TFile::GetFileReadCalls()
	  (Int_t)(7)
	  root [5] f->GetBytesRead()
	  (const Long64_t)638632
	  
	  root [3] TTreeCache *tpf = (TTreeCache*) f->GetCacheRead();
	  root [6] tpf->AddBranch("fTracks", kTRUE);
	  root [7] tpf->StopLearningPhase();
	  
	  root [8] T->Draw("fTracks.fPx", "fTracks.fPy");
	  <TCanvas::MakeDefCanvas>: created default TCanvas with name c1
	  root [9] TFile::GetFileReadCalls()
	  (Int_t)(42)
	  root [10] f->GetBytesRead()
	  (const Long64_t)359898352

2007-10-09 15:13  rdm

	* [r20279] cint/cintdlls.mk: fix for MacOS X case.

2007-10-09 14:22  rdm

	* [r20278] base/inc/TPluginManager.h, base/src/TPluginManager.cxx:
	  in case the plugin base class is in a namespace, like
	  ROOT::MyBase, the
	  plugins should be stored in the directory ROOT@@MyBase. The :
	  character
	  is a pathname character on Windows.

2007-10-09 09:57  brun

	* [r20273] io/src/TFileCacheRead.cxx: From Leo:
	  Fix a small bug when resizing buffers smaller than 10KB to an
	  acceptable size (spotted by Fabrizio Furano).

2007-10-09 09:06  moneta

	* [r20272] minuit2/doc/Minuit2.html, minuit2/doc/main.html,
	  minuit2/inc/Minuit2/BasicFunctionMinimum.h,
	  minuit2/inc/Minuit2/FCNBase.h,
	  minuit2/inc/Minuit2/FunctionMinimum.h,
	  minuit2/inc/Minuit2/MnMinos.h, minuit2/src/MnFunctionCross.cxx,
	  minuit2/src/MnMinos.cxx, minuit2/src/MnPrint.cxx,
	  minuit2/src/MnSeedGenerator.cxx,
	  minuit2/src/MnUserTransformation.cxx,
	  minuit2/src/TFitterMinuit.cxx,
	  minuit2/src/VariableMetricBuilder.cxx,
	  minuit2/test/testMinimize.cxx: - fix tolerance in Minos (use same
	  value for the tolerance in FunctionCross as in Fortran version)
	  - add additional comments and debug info to Minos and
	  FunctionCross
	  - fix tolerance in VariableMetricBuilder (Migrad) to be 0.001 of
	  given value (instead of 0.0001)
	  - fix a problem in VariableMetricBuilder when all derivatives are
	  zero
	  - add method to change error definition in function minimum.
	  Required if one wants to run Minos with different error def.
	  - upgrade doc for main page

2007-10-09 08:03  rdm

	* [r20271] io/src/TFile.cxx: From Gerri:
	  Anchors and Options where not restored in the local file name.

2007-10-08 23:42  wlav

	* [r20269] pyroot/src/TPyROOTApplication.cxx: Fix
	  http://savannah.cern.ch/bugs/?30217 by adding a dummy
	  Gl_histinit()
	  in TPyROOTApplication.cxx

2007-10-08 19:23  pcanal

	* [r20267] treeplayer/src/TTreeProxyGenerator.cxx: add missing
	  protection

2007-10-08 17:19  wlav

	* [r20266] pyroot/ROOT.py: fix finalSetup pb when doing from ROOT
	  import gROOT

2007-10-08 15:38  ganis

	* [r20264] proofplayer/inc/TPacketizerProgressive.h,
	  proofplayer/inc/TVirtualPacketizer.h: Implement GetTotalEntries()
	  in packetizers (from J.Iwaszkiewicz)

2007-10-08 15:33  ganis

	* [r20263] proofplayer/inc/TFileMerger.h,
	  proofplayer/src/TFileMerger.cxx: Add option to avoid copying
	  locally the files before merging

2007-10-08 15:10  ganis

	* [r20262] xrootd/src/xrootd-20070716-0300.src.tgz: Import possible
	  fix for the endless loop in the client admin interface

2007-10-08 08:55  brun

	* [r20257] asimage/src/TASImage.cxx: From Axel:
	  this version of the patch gets rid of a warning "conversion of
	  ptr to
	  smaller type". And yes, with that it just works - congrats,
	  Valeriy!!!

2007-10-08 08:51  brun

	* [r20256] asimage/src/TASImage.cxx: From Valeriy:
	  Correction to previous change in TASImage that fixes a problem
	  with THtml.

2007-10-08 08:38  moneta

	* [r20255] mathmore/src/GSLMinimizer.cxx: fix problem with to
	  tolower on Windows

2007-10-08 07:25  brun

	* [r20254] asimage/src/TASImage.cxx: From Valeriy:
	  - fix for bug reported by Axel
	  I encountered a problem with THtml, and I don't know how to solve
	  it. As
	  you know, THtml can generate "screen shots" of TCanvases etc as
	  GIFs and
	  embed them in the doc. For performance and beauty reasons, THtml
	  switches to batch more before creating a TCanvas - except when
	  it's told
	  not to, e.g. for creating a GIF of a GUI element using
	  TGObject::SaveAs().
	  
	  What happens during THtml::MakeAll() is:
	  * switch to batch,
	  * create a TCanvas in batch,
	  * switch to non-batch,
	  * create a TCanvas in non-batch.
	  
	  Alas, when the non-batch canvas is to be created, fgVisual is
	  still in
	  "batch mode", and asimage2pixmap (as called by the TGCanvas
	  constructor
	  for its scroll bars) fails.
	  "

2007-10-06 11:34  brun

	* [r20249] config/Makefile.in, configure: From Lorenzo:
	  patch to configure to fix some linking problem with GSL,
	  (add cblas library and use GSL version number)

2007-10-06 10:43  moneta

	* [r20248] mathmore/src/GSLMinimizer.cxx: fix for Windows

2007-10-06 05:42  pcanal

	* [r20247] base/src/TSystem.cxx: Correct the syntax of the rootmap
	  file issued by ACLiC (fix load problem on mac)

2007-10-05 22:14  moneta

	* [r20246] mathcore/src/SpecFuncCephes.cxx,
	  mathmore/inc/Math/GSLNLSMinimizer.h, mathmore/inc/Math/LinkDef.h,
	  mathmore/src/GSLMinimizer.cxx,
	  mathmore/src/GSLMultiFitFunctionAdapter.h: - sync with branch L
	  fix a warning for Mac + some Windows fixes

2007-10-05 21:53  wlav

	* [r20243] pyroot/src/PyBufferFactory.cxx, pyroot/src/Utility.cxx:
	  add typecode to buffers from factor

2007-10-05 21:22  pcanal

	* [r20242] cint/src/v6_var.cxx: Reset G__struct_offset when var
	  point to global variable

2007-10-05 20:57  wlav

	* [r20241] pyroot/ROOT.py, pyroot/inc/LinkDef.h,
	  pyroot/inc/TPyDispatcher.h, pyroot/src/Converters.cxx,
	  pyroot/src/TPyDispatcher.cxx: o) Added TPyDispatcher for use with
	  ROOT-signal/slot based GUIs
	  o) Check for currentThread shutdown, in case of shutdown from GUI
	  o) Delay setting of the display hook to final setup

2007-10-05 17:03  brun

	* [r20237] test/Event.h: We cannot use Float16_t for fRandom
	  (otherwise DrawTest fails on 64 bit machines). DrawTest.sh makes
	  a severe comparison between the written and read value out of
	  reacf with less than 32 bits.

2007-10-05 16:25  moneta

	* [r20235] mathcore/src/SpecFuncCephes.cxx,
	  mathmore/src/PdfFuncMathMore.cxx: fix problem with INFINITY on
	  Windows, use numeric_limits

2007-10-05 15:33  brun

	* [r20234] meta/src/TStreamerElement.cxx: Simplify the GetRange
	  function.

2007-10-05 15:32  brun

	* [r20233] io/src/TBufferFile.cxx: Fix a bug in
	  TBufferFile::WriteFastArrayDouble affecting Double32_t arrays

2007-10-05 15:28  moneta

	* [r20232] mathcore/inc/Math/DistFunc.h,
	  mathcore/inc/Math/LinkDef_Func.h, mathcore/inc/Math/ProbFunc.h,
	  mathcore/inc/Math/ProbFuncMathCore.h,
	  mathcore/src/ProbFuncMathCore.cxx,
	  mathcore/src/SpecFuncCephes.cxx, mathmore/Module.mk,
	  mathmore/doc/MathMore.html, mathmore/doc/main.html,
	  mathmore/inc/Math/Chebyshev.h, mathmore/inc/Math/Derivator.h,
	  mathmore/inc/Math/DistFuncMathMore.h,
	  mathmore/inc/Math/GSLMCIntegrator.h,
	  mathmore/inc/Math/GSLMinimizer.h,
	  mathmore/inc/Math/GSLNLSMinimizer.h,
	  mathmore/inc/Math/GSLRndmEngines.h,
	  mathmore/inc/Math/GSLSimAnMinimizer.h,
	  mathmore/inc/Math/GSLSimAnnealing.h,
	  mathmore/inc/Math/Integrator.h, mathmore/inc/Math/Interpolator.h,
	  mathmore/inc/Math/KelvinFunctions.h, mathmore/inc/Math/LinkDef.h,
	  mathmore/inc/Math/LinkDef_Func.h,
	  mathmore/inc/Math/LinkDef_StatFunc.h,
	  mathmore/inc/Math/MCIntegrationTypes.h,
	  mathmore/inc/Math/MCParameters.h,
	  mathmore/inc/Math/Minimizer1D.h,
	  mathmore/inc/Math/NumGradFunction.h,
	  mathmore/inc/Math/PdfFuncMathMore.h,
	  mathmore/inc/Math/ProbFuncInv.h,
	  mathmore/inc/Math/ProbFuncMathMore.h,
	  mathmore/inc/Math/QuantFuncMathMore.h,
	  mathmore/inc/Math/RootFinder.h,
	  mathmore/inc/Math/SpecFuncMathMore.h,
	  mathmore/inc/Math/WrappedMultiTF1.h,
	  mathmore/inc/Math/WrappedTF1.h, mathmore/src/GSLError.h,
	  mathmore/src/GSLIntegrator.h,
	  mathmore/src/GSLMCIntegrationWorkspace.h,
	  mathmore/src/GSLMCIntegrator.cxx, mathmore/src/GSLMinimizer.cxx,
	  mathmore/src/GSLMonteFunctionAdapter.h,
	  mathmore/src/GSLMonteFunctionWrapper.h,
	  mathmore/src/GSLMultiFit.h,
	  mathmore/src/GSLMultiFitFunctionAdapter.h,
	  mathmore/src/GSLMultiFitFunctionWrapper.h,
	  mathmore/src/GSLMultiMinFunctionAdapter.h,
	  mathmore/src/GSLMultiMinFunctionWrapper.h,
	  mathmore/src/GSLMultiMinimizer.h,
	  mathmore/src/GSLNLSMinimizer.cxx,
	  mathmore/src/GSLRndmEngines.cxx, mathmore/src/GSLRngWrapper.h,
	  mathmore/src/GSLSimAnMinimizer.cxx,
	  mathmore/src/GSLSimAnnealing.cxx,
	  mathmore/src/KelvinFunctions.cxx, mathmore/src/Minimizer1D.cxx,
	  mathmore/src/OneDimFunctionAdapter.h,
	  mathmore/src/ProbFuncInv.cxx, mathmore/src/ProbFuncMathMore.cxx,
	  mathmore/src/QuantFuncMathMore.cxx, mathmore/test/Makefile,
	  mathmore/test/UnuRanDist.h, mathmore/test/testFunctor.cxx,
	  mathmore/test/testIntegration.cxx,
	  mathmore/test/testIntegrationMultiDim.cxx,
	  mathmore/test/testRandomDist.cxx, mathmore/test/testSpecFunc.cxx,
	  mathmore/test/testStatFunc.cxx, smatrix/doc/SMatrix.html,
	  smatrix/doc/SMatrixClass.html, smatrix/doc/main.html,
	  smatrix/inc/Math/Expression.h, smatrix/inc/Math/Functions.h,
	  smatrix/inc/Math/MatrixFunctions.h,
	  smatrix/inc/Math/MatrixRepresentationsStatic.h,
	  smatrix/inc/Math/SMatrix.h, smatrix/inc/Math/SVector.h: - port
	  latest changes (forgot in previous commit) in mathcore
	  - update doc for groups and smatrix page
	  - changes in MathMore :
	  - add GSL MC integration
	  - add GSL Multi-dim minimization, non linear fitting and
	  simulated annealing
	  - remove cdf (are in mathcore) now
	  - update doc for groups and mathmore page

2007-10-05 14:36  moneta

	* [r20231] mathcore/Module.mk, mathcore/doc/MathCore.html,
	  mathcore/doc/VectorPoint2D.html, mathcore/doc/main.html,
	  mathcore/inc/Math/Error.h, mathcore/inc/Math/FitMethodFunction.h,
	  mathcore/inc/Math/GenVector/DisplacementVector2D.h,
	  mathcore/inc/Math/GenVector/DisplacementVector3D.h,
	  mathcore/inc/Math/IFunction.h,
	  mathcore/inc/Math/IntegratorMultiDim.h,
	  mathcore/inc/Math/LinkDef.h, mathcore/inc/Math/LinkDef_Func.h,
	  mathcore/inc/Math/Minimizer.h,
	  mathcore/inc/Math/PdfFuncMathCore.h,
	  mathcore/inc/Math/ProbFuncMathCore.h,
	  mathcore/inc/Math/SpecFuncMathCore.h,
	  mathcore/inc/Math/WrappedParamFunction.h,
	  mathcore/src/IntegratorMultiDim.cxx,
	  mathcore/src/ProbFuncMathCore.cxx,
	  mathcore/src/SpecFuncCephes.cxx, mathcore/src/SpecFuncCephes.h,
	  mathcore/src/SpecFuncMathCore.cxx: - port changes from
	  development branch (mathDev):
	  
	  - add interface class for minimization and for fitting method
	  function
	  - add multi-dim integration class (CERNLIB algorithm)
	  - add implementation for special functions from Cephes (gamma,
	  error function, incomplete gamma and incomplete beta)
	  - move all the cumulative distribution from MathMore to MathCore
	  (they can be implemented in therm of the inc beta and inc gamma)
	  - update documentation making mathcore, mathmore separate groups
	  which can be combined together

2007-10-05 11:14  brun

	* [r20226] tmva/inc/BinarySearchTree.h,
	  tmva/inc/BinarySearchTreeNode.h, tmva/inc/BinaryTree.h,
	  tmva/inc/Configurable.h, tmva/inc/DataSet.h,
	  tmva/inc/DecisionTree.h, tmva/inc/Factory.h,
	  tmva/inc/GeneticAlgorithm.h, tmva/inc/IFitterTarget.h,
	  tmva/inc/IMethod.h, tmva/inc/IMetric.h, tmva/inc/MethodBDT.h,
	  tmva/inc/MethodBase.h, tmva/inc/MethodBayesClassifier.h,
	  tmva/inc/MethodCFMlpANN.h, tmva/inc/MethodCFMlpANN_Utils.h,
	  tmva/inc/MethodCommittee.h, tmva/inc/MethodCuts.h,
	  tmva/inc/MethodFDA.h, tmva/inc/MethodFisher.h,
	  tmva/inc/MethodHMatrix.h, tmva/inc/MethodKNN.h,
	  tmva/inc/MethodLikelihood.h, tmva/inc/MethodMLP.h,
	  tmva/inc/MethodPDERS.h, tmva/inc/MethodRuleFit.h,
	  tmva/inc/MethodSVM.h, tmva/inc/MethodTMlpANN.h,
	  tmva/inc/MethodVariable.h, tmva/inc/MetricEuler.h,
	  tmva/inc/MetricManhattan.h, tmva/inc/Node.h, tmva/inc/NodekNN.h,
	  tmva/inc/Option.h, tmva/inc/PDF.h, tmva/inc/Reader.h,
	  tmva/inc/RuleCut.h, tmva/inc/RuleFitAPI.h,
	  tmva/inc/SeedDistance.h, tmva/inc/TActivation.h,
	  tmva/inc/Tools.h, tmva/inc/Version.h, tmva/inc/Volume.h,
	  tmva/src/BinarySearchTree.cxx, tmva/src/BinarySearchTreeNode.cxx,
	  tmva/src/BinaryTree.cxx, tmva/src/Configurable.cxx,
	  tmva/src/DataSet.cxx, tmva/src/DecisionTree.cxx,
	  tmva/src/DecisionTreeNode.cxx, tmva/src/Factory.cxx,
	  tmva/src/GeneticAlgorithm.cxx, tmva/src/MethodANNBase.cxx,
	  tmva/src/MethodBDT.cxx, tmva/src/MethodBase.cxx,
	  tmva/src/MethodCFMlpANN.cxx, tmva/src/MethodCFMlpANN_Utils.cxx,
	  tmva/src/MethodCommittee.cxx, tmva/src/MethodCuts.cxx,
	  tmva/src/MethodFDA.cxx, tmva/src/MethodFisher.cxx,
	  tmva/src/MethodKNN.cxx, tmva/src/MethodLikelihood.cxx,
	  tmva/src/MethodMLP.cxx, tmva/src/MethodPDERS.cxx,
	  tmva/src/MethodRuleFit.cxx, tmva/src/MethodSVM.cxx,
	  tmva/src/MethodVariable.cxx, tmva/src/MetricManhattan.cxx,
	  tmva/src/MinuitFitter.cxx, tmva/src/ModulekNN.cxx,
	  tmva/src/MsgLogger.cxx, tmva/src/Node.cxx, tmva/src/PDF.cxx,
	  tmva/src/Reader.cxx, tmva/src/RuleEnsemble.cxx,
	  tmva/src/RuleFit.cxx, tmva/src/RuleFitAPI.cxx,
	  tmva/src/RuleFitParams.cxx, tmva/src/TActivationIdentity.cxx,
	  tmva/src/TActivationRadial.cxx, tmva/src/TActivationSigmoid.cxx,
	  tmva/src/TActivationTanh.cxx, tmva/src/Timer.cxx,
	  tmva/src/Tools.cxx, tmva/src/VariablePCATransform.cxx,
	  tmva/test/BDT.C, tmva/test/ClassApplication.C,
	  tmva/test/TMVAGui.C, tmva/test/TMVAlogon.C,
	  tmva/test/TMVAnalysis.C, tmva/test/TMVAnalysis.py,
	  tmva/test/TMVApplication.C, tmva/test/correlationscatters.C,
	  tmva/test/efficiencies.C, tmva/test/loader.C, tmva/test/mvas.C,
	  tmva/test/mvaweights.C, tmva/test/network.C, tmva/test/probas.C,
	  tmva/test/tmvaglob.C, tmva/test/variables.C: From Joerg Stelzer:
	  New features:
	  
	  - Cuts can now be applied independently for signal and background
	  in the PrepareTrainingAndTestTree phase.
	  
	  - Previously, the input variables used by the Fisher classifier
	  were always normalised to [-1,1] by default. This has been
	  removed, so that it is now in the hand of the user to decide
	  whether or not normalisation is applied. Choose "Normalise"
	  ("!Normalise") for normalisation (no normalisation), default is
	  "!Normalise".
	  
	  
	  
	  
	  - Significant speed improvements for PDERS. For the options to
	  benefit from this, see the example "PDERSkNN" in
	  macros/TMVAnalysis.C or examples/TMVAnalysis.cxx.
	  Thanks to Kamil Kraszewski and friends from Cracow for
	  implementing this.
	  
	  - Re-established backward compatibility of TMVA code down to ROOT
	  version 4.02/00.
	  
	  - Shortened BDT weight-file and standalone C++ reader class by
	  20% and 50%, respectively.
	  
	  - Weight expressions can now be set individually for signal and
	  background via
	  the calls factory->SetSignalWeightExpression(
	  "<signal-expression>" ) and
	  factory->SetBackgroundWeightExpression( "<background-expression>"
	  ). The former call is still supported.
	  - Overtraining test: a new GUI button (corresponding to an
	  extension of the macro "mvas.C") is available to plot a
	  comparison of the classifier response distributions for the
	  training and independent test data sets. The results of a
	  Kolmogorov-Smirnov compatibility test are printed on stdout and
	  plots.
	  - The cuts corresponding to a given signal efficiency can be
	  retrieved via the reader. An example for this is implemented in
	  "macros/TMVApplication.C". Briefly,
	  retrieve the cuts classifier object as follows:
	  TMVA::MethodCuts* mcuts = (TMVA::MethodCuts*)reader->FindMVA(
	  "CutsGA method" );,
	  define cut vectors (a vector of pairs can also be retrieved via
	  overloaded
	  GetCuts function): std::vector<Double_t> cutsMin;
	  std::vector<Double_t> cutsMax;
	  and fill them via: mcuts->GetCuts( wantedSignalEfficiency,
	  cutsMin, cutsMax );
	  
	  - Clean up of code and include headers to improve forward
	  declaration.
	  
	  
	  
	  
	  - Bug fixes:
	  
	  - Memory leaks in the Reader class are removed: the Reader is now
	  properly destructed (deletion of all handled classifiers).
	  Thereby, pointer problems in the destructors of Fisher and SVM
	  have been found and fixed.
	  - The macro TMVApplication.C produced a segmentation fault when
	  run from the ROOT prompt
	  (the compiled version in the examples directory worked fine).
	  This problem is now solved.
	  - The color selection has been adapted to the new color palette
	  that was introduced in ROOT 5.16. The macros should now look
	  alike with all ROOT versions (above 4.02/00).
	  - Very important bug fix: the application of cuts in the
	  PrepareTrainingAndTestTree
	  call in conjunction with the use of several trees (ie, several
	  consecutive calls
	  of factory->AddSignalTree(...) or
	  factory->AddBackgroundTree(...)), lead to a wrong application of
	  the cut to all trees but the first one in the signal and
	  background chains. More details can be provided if requested -
	  please contact
	  the authors. We wish to thank Manfred Groh for spotting and
	  analysing the problem!
	  - Some compilers complained about a missing #include
	  "TMVA/Configurable.h" in the Reader
	  class. This has been fixed. - Fixed problem in RuleFit's
	  standalone class when using integer input variables.
	  - Fixed compilation problem when using decorrelation
	  preprocessing of input variables in C++ standalone reader
	  classes.
	  - Fixed bug in number-of-plots calculation in correlation script.
	  - Fixed bug in printing of number of events in case of several
	  trees (no impact on results).
	  - Fixed inconsistency between cut optimisation and cut reading:
	  the aligned definition of min and max cuts is: a variable passes
	  a cut if: min < var <= max.
	  (This inconsistency may have affected your results if you used
	  cut optimisation together with integer variables. Please check
	  with the new version.)
	  - Fixed macro path in TMVAGui.C to fix problem when running the
	  GUI in the ROOT/TMVA distribution.
	  Also: TMVA Style moved from TMVAlogon into tmvaglob to fix style
	  problem when running in the ROOT/TMVA distribution.
	  - Fixed typos in weight file names in MLP and BDT macros - Fixed
	  "MinMax" and "RMS" options of PDERS (thanks to Junpei Maeda for
	  spotting this)
	  - Fixed compilation problem in MetricEuler class on some
	  platforms

2007-10-04 23:00  rdm

	* [r20220] base/inc/Match.h, base/inc/Strlen.h, base/inc/TAtt3D.h,
	  base/inc/TInspectorImp.h, base/inc/TRegexp.h,
	  base/inc/TStringLong.h, base/src/InitGui.cxx,
	  base/src/TApplicationImp.cxx, base/src/TCanvasImp.cxx,
	  base/src/TContextMenuImp.cxx, base/src/TControlBarImp.cxx,
	  base/src/TInspectorImp.cxx, base/src/TMemberInspector.cxx,
	  clib/inc/Demangle.h, clib/src/detach.c, clib/src/mcalloc.c,
	  clib/src/mfree.c, clib/src/mmalloc.c, clib/src/mmemalign.c,
	  clib/src/mmstats.c, clib/src/mrealloc.c, clib/src/sbrksup.c,
	  cont/inc/TIterator.h, cont/src/TIterator.cxx,
	  cont/src/TSortedList.cxx, g3d/src/X3DBuffer.c,
	  ged/inc/TFrameEditor.h, ged/inc/TPadEditor.h,
	  ged/inc/TPaveStatsEditor.h, ged/src/TFrameEditor.cxx,
	  ged/src/TH1Editor.cxx, ged/src/TH2Editor.cxx,
	  ged/src/TPadEditor.cxx, ged/src/TPaveStatsEditor.cxx,
	  gl/inc/TF2GL.h, gl/inc/TGLAdapter.h, gl/inc/TGLClipSetEditor.h,
	  gl/inc/TGLLightSet.h, gl/inc/TGLLightSetEditor.h,
	  gl/inc/TGLLockable.h, gl/inc/TGLPShapeRef.h,
	  gl/inc/TGLSelectRecord.h, gl/inc/TH2GL.h, gl/src/TGLAdapter.cxx,
	  gl/src/TGLLightSet.cxx, gl/src/TGLLightSetEditor.cxx,
	  gl/src/TGLLockable.cxx, gl/src/TGLPShapeObj.cxx,
	  gl/src/TGLPShapeRef.cxx, gpad/inc/TControlBarButton.h,
	  gpad/src/TControlBarButton.cxx, graf/src/TPoints.cxx,
	  gui/src/TGWidget.cxx, main/src/setpawc.c, main/win32/cfget.c,
	  main/win32/cfgeto.c, main/win32/cfopei.c, main/win32/cfput.c,
	  main/win32/cfputo.c, main/win32/setpawc.c, main/win32/tzvers.f,
	  meta/inc/TToggle.h, meta/inc/TToggleGroup.h,
	  meta/src/TDictionary.cxx, mysql/src/TMySQLResult.cxx,
	  mysql/src/TMySQLRow.cxx, net/inc/TSQLRow.h,
	  net/src/TSQLResult.cxx, net/src/TSQLRow.cxx, rint/inc/LinkDef.h,
	  roofit/src/Roo2DKeysPdf.cxx, roofit/src/RooArgusBG.cxx,
	  roofit/src/RooBCPEffDecay.cxx, roofit/src/RooBCPGenDecay.cxx,
	  roofit/src/RooBDecay.cxx, roofit/src/RooBMixDecay.cxx,
	  roofit/src/RooBifurGauss.cxx, roofit/src/RooBlindTools.cxx,
	  roofit/src/RooBreitWigner.cxx, roofit/src/RooBukinPdf.cxx,
	  roofit/src/RooCBShape.cxx, roofit/src/RooChebychev.cxx,
	  roofit/src/RooDecay.cxx, roofit/src/RooDstD0BG.cxx,
	  roofit/src/RooExponential.cxx, roofit/src/RooGExpModel.cxx,
	  roofit/src/RooGaussModel.cxx, roofit/src/RooGaussian.cxx,
	  roofit/src/RooKeysPdf.cxx, roofit/src/RooLandau.cxx,
	  roofit/src/RooNonCPEigenDecay.cxx, roofit/src/RooNovosibirsk.cxx,
	  roofit/src/RooParametricStepFunction.cxx,
	  roofit/src/RooPolynomial.cxx, roofit/src/RooUnblindCPAsymVar.cxx,
	  roofit/src/RooUnblindOffset.cxx,
	  roofit/src/RooUnblindPrecision.cxx,
	  roofit/src/RooUnblindUniform.cxx, roofit/src/RooVoigtian.cxx,
	  roofitcore/src/Roo1DTable.cxx, roofitcore/src/RooAICRegistry.cxx,
	  roofitcore/src/RooAbsAnaConvPdf.cxx,
	  roofitcore/src/RooAbsArg.cxx, roofitcore/src/RooAbsBinning.cxx,
	  roofitcore/src/RooAbsCategory.cxx,
	  roofitcore/src/RooAbsCategoryLValue.cxx,
	  roofitcore/src/RooAbsCollection.cxx,
	  roofitcore/src/RooAbsData.cxx, roofitcore/src/RooAbsFunc.cxx,
	  roofitcore/src/RooAbsGenContext.cxx,
	  roofitcore/src/RooAbsGoodnessOfFit.cxx,
	  roofitcore/src/RooAbsHiddenReal.cxx,
	  roofitcore/src/RooAbsIntegrator.cxx,
	  roofitcore/src/RooAbsLValue.cxx,
	  roofitcore/src/RooAbsMCStudyModule.cxx,
	  roofitcore/src/RooAbsOptGoodnessOfFit.cxx,
	  roofitcore/src/RooAbsPdf.cxx, roofitcore/src/RooAbsProxy.cxx,
	  roofitcore/src/RooAbsReal.cxx,
	  roofitcore/src/RooAbsRealLValue.cxx,
	  roofitcore/src/RooAbsRootFinder.cxx,
	  roofitcore/src/RooAbsString.cxx,
	  roofitcore/src/RooAcceptReject.cxx,
	  roofitcore/src/RooAdaptiveGaussKronrodIntegrator1D.cxx,
	  roofitcore/src/RooAddGenContext.cxx,
	  roofitcore/src/RooAddModel.cxx, roofitcore/src/RooAddPdf.cxx,
	  roofitcore/src/RooAddition.cxx, roofitcore/src/RooArgList.cxx,
	  roofitcore/src/RooArgProxy.cxx, roofitcore/src/RooArgSet.cxx,
	  roofitcore/src/RooBinning.cxx,
	  roofitcore/src/RooBrentRootFinder.cxx,
	  roofitcore/src/RooCacheManager.cxx,
	  roofitcore/src/RooCatType.cxx, roofitcore/src/RooCategory.cxx,
	  roofitcore/src/RooCategoryProxy.cxx,
	  roofitcore/src/RooCategorySharedProperties.cxx,
	  roofitcore/src/RooChi2Var.cxx,
	  roofitcore/src/RooClassFactory.cxx, roofitcore/src/RooCmdArg.cxx,
	  roofitcore/src/RooCmdConfig.cxx, roofitcore/src/RooComplex.cxx,
	  roofitcore/src/RooConstVar.cxx,
	  roofitcore/src/RooConvCoefVar.cxx,
	  roofitcore/src/RooConvGenContext.cxx,
	  roofitcore/src/RooConvIntegrandBinding.cxx,
	  roofitcore/src/RooCurve.cxx, roofitcore/src/RooCustomizer.cxx,
	  roofitcore/src/RooDLLSignificanceMCSModule.cxx,
	  roofitcore/src/RooDataHist.cxx,
	  roofitcore/src/RooDataHistSliceIter.cxx,
	  roofitcore/src/RooDataProjBinding.cxx,
	  roofitcore/src/RooDataSet.cxx, roofitcore/src/RooDirItem.cxx,
	  roofitcore/src/RooDouble.cxx,
	  roofitcore/src/RooEffGenContext.cxx,
	  roofitcore/src/RooEffProd.cxx, roofitcore/src/RooEfficiency.cxx,
	  roofitcore/src/RooEllipse.cxx, roofitcore/src/RooErrorVar.cxx,
	  roofitcore/src/RooExtendPdf.cxx, roofitcore/src/RooFitResult.cxx,
	  roofitcore/src/RooFormula.cxx, roofitcore/src/RooFormulaVar.cxx,
	  roofitcore/src/RooGaussKronrodIntegrator1D.cxx,
	  roofitcore/src/RooGenCategory.cxx,
	  roofitcore/src/RooGenContext.cxx,
	  roofitcore/src/RooGenProdProj.cxx,
	  roofitcore/src/RooGenericPdf.cxx,
	  roofitcore/src/RooGlobalFunc.cxx,
	  roofitcore/src/RooGraphEdge.cxx, roofitcore/src/RooGraphNode.cxx,
	  roofitcore/src/RooGraphSpring.cxx, roofitcore/src/RooGrid.cxx,
	  roofitcore/src/RooHashTable.cxx, roofitcore/src/RooHist.cxx,
	  roofitcore/src/RooHistError.cxx, roofitcore/src/RooHistPdf.cxx,
	  roofitcore/src/RooHtml.cxx,
	  roofitcore/src/RooImproperIntegrator1D.cxx,
	  roofitcore/src/RooInt.cxx, roofitcore/src/RooIntegrator1D.cxx,
	  roofitcore/src/RooIntegrator2D.cxx,
	  roofitcore/src/RooIntegratorBinding.cxx,
	  roofitcore/src/RooInvTransform.cxx,
	  roofitcore/src/RooLinTransBinning.cxx,
	  roofitcore/src/RooLinearVar.cxx,
	  roofitcore/src/RooLinkedList.cxx,
	  roofitcore/src/RooLinkedListElem.cxx,
	  roofitcore/src/RooLinkedListIter.cxx, roofitcore/src/RooList.cxx,
	  roofitcore/src/RooListProxy.cxx,
	  roofitcore/src/RooMCIntegrator.cxx,
	  roofitcore/src/RooMCStudy.cxx, roofitcore/src/RooMPSentinel.cxx,
	  roofitcore/src/RooMapCatEntry.cxx,
	  roofitcore/src/RooMappedCategory.cxx, roofitcore/src/RooMath.cxx,
	  roofitcore/src/RooMinuit.cxx, roofitcore/src/RooMsgService.cxx,
	  roofitcore/src/RooMultiCatIter.cxx,
	  roofitcore/src/RooMultiCategory.cxx,
	  roofitcore/src/RooNLLVar.cxx, roofitcore/src/RooNameReg.cxx,
	  roofitcore/src/RooNameSet.cxx,
	  roofitcore/src/RooNormListManager.cxx,
	  roofitcore/src/RooNormManager.cxx,
	  roofitcore/src/RooNormSetCache.cxx,
	  roofitcore/src/RooNumConvPdf.cxx,
	  roofitcore/src/RooNumConvolution.cxx,
	  roofitcore/src/RooNumIntConfig.cxx,
	  roofitcore/src/RooNumIntFactory.cxx,
	  roofitcore/src/RooNumber.cxx,
	  roofitcore/src/RooObjCacheManager.cxx,
	  roofitcore/src/RooPlot.cxx, roofitcore/src/RooPlotable.cxx,
	  roofitcore/src/RooPolyVar.cxx, roofitcore/src/RooPrintable.cxx,
	  roofitcore/src/RooProdGenContext.cxx,
	  roofitcore/src/RooProdPdf.cxx, roofitcore/src/RooProduct.cxx,
	  roofitcore/src/RooPullVar.cxx,
	  roofitcore/src/RooQuasiRandomGenerator.cxx,
	  roofitcore/src/RooRandom.cxx,
	  roofitcore/src/RooRandomizeParamMCSModule.cxx,
	  roofitcore/src/RooRangeBinning.cxx,
	  roofitcore/src/RooRealAnalytic.cxx,
	  roofitcore/src/RooRealBinding.cxx,
	  roofitcore/src/RooRealConstant.cxx,
	  roofitcore/src/RooRealIntegral.cxx,
	  roofitcore/src/RooRealMPFE.cxx, roofitcore/src/RooRealProxy.cxx,
	  roofitcore/src/RooRealSumPdf.cxx, roofitcore/src/RooRealVar.cxx,
	  roofitcore/src/RooRealVarSharedProperties.cxx,
	  roofitcore/src/RooRefCountList.cxx,
	  roofitcore/src/RooResolutionModel.cxx,
	  roofitcore/src/RooScaledFunc.cxx,
	  roofitcore/src/RooSegmentedIntegrator1D.cxx,
	  roofitcore/src/RooSegmentedIntegrator2D.cxx,
	  roofitcore/src/RooSetPair.cxx, roofitcore/src/RooSetProxy.cxx,
	  roofitcore/src/RooSharedProperties.cxx,
	  roofitcore/src/RooSharedPropertiesList.cxx,
	  roofitcore/src/RooSimGenContext.cxx,
	  roofitcore/src/RooSimPdfBuilder.cxx,
	  roofitcore/src/RooSimultaneous.cxx,
	  roofitcore/src/RooStreamParser.cxx,
	  roofitcore/src/RooStringVar.cxx,
	  roofitcore/src/RooSuperCategory.cxx,
	  roofitcore/src/RooTObjWrap.cxx, roofitcore/src/RooTable.cxx,
	  roofitcore/src/RooThreshEntry.cxx,
	  roofitcore/src/RooThresholdCategory.cxx,
	  roofitcore/src/RooTrace.cxx, roofitcore/src/RooTreeData.cxx,
	  roofitcore/src/RooTruthModel.cxx,
	  roofitcore/src/RooUniformBinning.cxx,
	  roofitcore/src/RooWorkspace.cxx, roots/inc/TGXClient.h,
	  roots/inc/TGXServer.h, roots/src/TGXClient.cxx,
	  roots/src/TGXServer.cxx, rootx/src/rootx.cxx,
	  table/inc/TGenericTable.h, table/inc/TResponseTable.h,
	  table/src/TGenericTable.cxx, table/src/TResponseTable.cxx,
	  test/eventb.cxx, test/eventload.cxx, test/rhtml/rhtml.h,
	  test/test2html.cxx, thread/inc/TPosixCondition.h,
	  thread/inc/TPosixMutex.h, thread/inc/TPosixThreadFactory.h,
	  thread/src/TPosixMutex.cxx, thread/src/TPosixThreadFactory.cxx,
	  thread/src/TRWLock.cxx, tree/inc/TCut.h,
	  tree/src/TSelectorScalar.cxx, unix/inc/LinkDef.h, x11/inc/Xpm.h,
	  x11/src/gifdecode.c, x11/src/gifencode.c, x11/src/gifquantize.c,
	  x11ttf/inc/LinkDef.h, x3d/inc/LinkDef.h, zip/inc/deflate.h,
	  zip/inc/zconf.h, zip/src/adler32.c, zip/src/compress.c,
	  zip/src/crc32.c, zip/src/gzio.c, zip/src/trees.c,
	  zip/src/uncompr.c: remove a bunch of $Name$ tags that were missed
	  due to a problem in the
	  initial svn patch up script. Also add svn:keywords Id to all
	  files not
	  having the property yet.

2007-10-04 22:43  rdm

	* [r20219] Makefile, cint/cintdlls.mk: fix some macosx issues with
	  cleaning up the cint/stl/*.so's.

2007-10-04 22:22  rdm

	* [r20218] Makefile: in distclean on the Mac also delete
	  cint/stl/*.so.

2007-10-04 20:51  pcanal

	* [r20217] io/src/TFile.cxx: In the case where Recover is called
	  for a file that was intentionally empty (and hence already has a
	  list of free segment), prevent the adding of duplicate (and
	  fatal) end of file free segment

2007-10-04 20:50  pcanal

	* [r20216] io/src/TKey.cxx: Relax test for end of file

2007-10-04 20:49  pcanal

	* [r20215] io/inc/TFree.h, io/src/TFree.cxx: Add ls method. Cleanup
	  comment layout

2007-10-04 17:50  pcanal

	* [r20214] tree/src/TBranch.cxx: Add warning message in case of
	  missing leaf name in leaflist. Use _noname as the name of the
	  leaf

2007-10-04 16:37  brun

	* [r20213] test/RootShower/MyParticle.h: From Bertrand:
	  - Implement empty SetDrawOption() to remove it from context menu
	  (not used)

2007-10-04 14:49  brun

	* [r20212] gui/src/TGClient.cxx, rootx/src/rootx.cxx: When messages
	  like "can't figure out DISPLAY, set it manually
	  or other X11 server connection errors, add a message indicating
	  to reconnect with ssh -Y

2007-10-04 13:08  couet

	* [r20209] base/inc/TColor.h, base/src/TColor.cxx: - Two new
	  functions: RGB2HSV and HSV2RGB to convert a color from RGB to
	  HSV system and vice versa (requested by V.Onuchin).

2007-10-04 11:32  couet

	* [r20207] base/src/TAttLine.cxx: - Update the help concerning the
	  line style.

2007-10-04 10:11  brun

	* [r20206] test/RootShower/MyEvent.cxx,
	  test/RootShower/MyParticle.cxx, test/RootShower/MyParticle.h,
	  test/RootShower/RSVersion.h, test/RootShower/RootShower.cxx,
	  test/RootShower/RootShower.h: From Bertrand:
	  Added protections + added highlighting track function (via
	  context menu)
	  Thanks to Magdalena for testing and reporting problems.

2007-10-04 09:43  antcheva

	* [r20205] tutorials/gui/iconAsXPMData.C: A new tutorial how to
	  create an icon image from
	  XPM data included into the code.

2007-10-04 08:03  brun

	* [r20202] hist/src/THnSparse.cxx: Fix coding conventions

2007-10-04 07:59  brun

	* [r20201] minuit/src/TLinearFitter.cxx: Fix coding conventions.

2007-10-03 15:15  antcheva

	* [r20194] fitpanel/src/TFitParametersDialog.cxx: Typo in comment

2007-10-03 14:26  brun

	* [r20193] test/Event.h: Modify the Event example to illustrate the
	  use of the new type Float16_t

2007-10-03 14:19  brun

	* [r20192] io/src/TBufferFile.cxx: In all Float16 functions assume
	  a default value of 12 bits for the truncated mantissa.
	  When reading from a file GetRange may not be called, hence the
	  protection.

2007-10-03 14:18  brun

	* [r20191] tree/src/TBranchElement.cxx: Change the test of
	  TVirtualStreamerInfo::kBool for TVirtualStreamerInfo::kFloat16.
	  Make symmetric the processing of Float16 and Double32.

2007-10-03 14:16  brun

	* [r20190] meta/src/TStreamerElement.cxx: Make symmetric the use of
	  GetRange for Float16 and Double32

2007-10-03 12:02  antcheva

	* [r20189] fitpanel/src/TFitEditor.cxx: Make Fit panel working for
	  appropriate objects drawn
	  in user classes, which are derived from TCanvas
	  (thanks to Reiner Rohlfs)

2007-10-03 10:46  rdm

	* [r20188] Makefile: restore behaviour of allowing to install to
	  directory ROOTSY points to.
	  Also cleanup .svn directories after install.

2007-10-03 09:58  brun

	* [r20187] configure: From Lorenzo
	  Fix for finding gsl version 10

2007-10-03 08:23  antcheva

	* [r20186] gui/inc/TGView.h: Renamed const TGGC &GetWhiteGC() to
	  const TGGC &GetViewWhiteGC()
	  to avoid hiding of static const TGGC &GetWhiteGC() in TGFrame
	  class.

2007-10-02 16:25  antcheva

	* [r20184] gui/inc/TGListTree.h, gui/src/TGListTree.cxx: Added
	  following new methods (requested by LHCb):
	  
	  TGListTreeItem
	  o CheckAllChildren(Bool_t state = kTRUE) - set the state of this
	  TGListTreeItem and all its children (if any) as checked if
	  state=kTRUE (default behavior); or unchecked if state=kFALSE.
	  
	  o CheckChildren(TGListTreeItem *item, Bool_t state) - helper
	  method
	  
	  
	  TGListTree class
	  o GetChecked(TList *checked) - add the item text of all checked
	  list tree items as TObjString into the list 'checked'. This list
	  is not adopted and must be deleted by the user later.
	  Example:
	  TList *mylist = new TList();
	  fListTree->GetChecked(mylist);
	  ...
	  mylist->Delete();
	  delete mylist;
	  
	  o GetCheckedChildren(TList *checked, TGListTreeItem *item) -
	  helper method
	  
	  o CheckAllChildren(TGListTreeItem *item, Bool_t state) - check
	  all child items of 'item' and 'item' itself according to the
	  state value: kTRUE means check all, kFALSE - uncheck all.
	  Example:
	  TGListTreeItem *it;
	  it = fLTree->FindChildByName(fLTree->GetFirstItem(),"P1D");
	  fLTree->CheckAllChildren(it, kFALSE);
	  // or users can use
	  it->CheckAllChildren(kFALSE);

2007-10-02 16:08  brun

	* [r20182] io/src/TBufferFile.cxx, meta/src/TStreamerElement.cxx:
	  More changes for Float16_t

2007-10-02 15:58  rdm

	* [r20181] io/src/TFile.cxx: From Gerri:
	  protection against prefix being 0.

2007-10-02 13:24  rdm

	* [r20177] config/thisroot.csh, config/thisroot.sh: set PYTHONPATH
	  if not defined and add $ROOTSYS/lib to PYTHONPATH.

2007-10-02 12:51  rdm

	* [r20175] build/unix/makedistsrc.sh: use svn to checkout sources.

2007-10-02 12:01  rdm

	* [r20174] config/rootrc.in, rint/src/TRint.cxx: new option
	  Rint.WelcomeLite. It true print only a 1 line welcome message
	  instead of the default 16 line message.

2007-10-02 11:52  brun

	* [r20173] io/src/TStreamerInfo.cxx,
	  io/src/TStreamerInfoReadBuffer.cxx,
	  io/src/TStreamerInfoWriteBuffer.cxx,
	  meta/inc/TVirtualStreamerInfo.h, metautils/src/TClassEdit.cxx,
	  tree/src/TBranchElement.cxx, tree/src/TTree.cxx,
	  tree/src/TTreeSQL.cxx, treeplayer/inc/TBranchProxy.h,
	  treeplayer/src/TFormLeafInfo.cxx,
	  treeplayer/src/TTreeProxyGenerator.cxx, xml/src/TXMLPlayer.cxx:
	  Second batch of changes to support the new type Float16_t.

2007-10-02 11:02  rdm

	* [r20172] config/Makefile.linux, config/Makefile.linuxx8664gcc:
	  Link gfortran programs using CERNLIB with g++ since libshift is
	  now
	  in C++ and needs the C++ runtime.

2007-10-02 09:02  brun

	* [r20170] base/inc/LinkDef1.h, base/inc/Rtypes.h,
	  base/inc/TBuffer.h, cint/src/v6_tmplt.cxx,
	  cint7/src/v6_tmplt.cxx, io/inc/TBufferFile.h,
	  io/inc/TStreamerInfo.h, io/src/TBufferFile.cxx,
	  io/src/TEmulatedCollectionProxy.cxx,
	  io/src/TEmulatedMapProxy.cxx, io/src/TGenCollectionStreamer.cxx,
	  meta/inc/TDataType.h, meta/inc/TVirtualStreamerInfo.h,
	  meta/src/TDataType.cxx, meta/src/TStreamerElement.cxx,
	  metautils/src/TClassEdit.cxx, odbc/src/TODBCStatement.cxx,
	  sql/inc/TBufferSQL2.h, sql/src/TBufferSQL2.cxx,
	  sql/src/TSQLFile.cxx, sql/src/TSQLStructure.cxx,
	  tree/inc/TBufferSQL.h, tree/src/TBufferSQL.cxx,
	  utils/src/rootcint.cxx, xml/inc/TBufferXML.h,
	  xml/src/TBufferXML.cxx: First batch of changes to support the new
	  data type Float16_t.
	  For more info about Float16_t see TBufferFile::WriteFloat16.

2007-10-02 08:22  wouter

	* [r20168] roofitcore/inc/RooAbsCacheElement.h,
	  roofitcore/inc/RooClassFactory.h: o RooClassFactory
	  
	  - Add forgotten forward declaration to RooAbsPdf
	  
	  
	  o RooAbsCacheElement
	  
	  - Add dummy virtual destructor

2007-10-01 19:26  wouter

	* [r20167] roofitcore/inc/RooAbsAnaConvPdf.h: test part 2

2007-10-01 19:25  wouter

	* [r20166] roofitcore/inc/RooAbsAnaConvPdf.h: test

2007-10-01 19:18  wouter

	* [r20165] roofitcore/inc/RooAbsAnaConvPdf.h: dummy change

2007-10-01 17:02  wouter

	* [r20164] roofit/inc/RooKeysPdf.h, roofit/src/RooKeysPdf.cxx: back
	  out new version of RooKeysPdf that was accidentally committed

2007-10-01 16:34  wouter

	* [r20163] roofit/inc/LinkDef1.h, roofit/inc/Roo2DKeysPdf.h,
	  roofit/inc/RooArgusBG.h, roofit/inc/RooBCPEffDecay.h,
	  roofit/inc/RooBCPGenDecay.h, roofit/inc/RooBDecay.h,
	  roofit/inc/RooBMixDecay.h, roofit/inc/RooBifurGauss.h,
	  roofit/inc/RooBlindTools.h, roofit/inc/RooBreitWigner.h,
	  roofit/inc/RooBukinPdf.h, roofit/inc/RooCBShape.h,
	  roofit/inc/RooChebychev.h, roofit/inc/RooDecay.h,
	  roofit/inc/RooDstD0BG.h, roofit/inc/RooExponential.h,
	  roofit/inc/RooGExpModel.h, roofit/inc/RooGaussModel.h,
	  roofit/inc/RooGaussian.h, roofit/inc/RooHistPdf.h,
	  roofit/inc/RooKeysPdf.h, roofit/inc/RooLandau.h,
	  roofit/inc/RooNonCPEigenDecay.h, roofit/inc/RooNovosibirsk.h,
	  roofit/inc/RooParametricStepFunction.h,
	  roofit/inc/RooPolynomial.h, roofit/inc/RooUnblindCPAsymVar.h,
	  roofit/inc/RooUnblindOffset.h, roofit/inc/RooUnblindPrecision.h,
	  roofit/inc/RooUnblindUniform.h, roofit/inc/RooVoigtian.h,
	  roofit/src/Roo2DKeysPdf.cxx, roofit/src/RooArgusBG.cxx,
	  roofit/src/RooBCPEffDecay.cxx, roofit/src/RooBCPGenDecay.cxx,
	  roofit/src/RooBDecay.cxx, roofit/src/RooBMixDecay.cxx,
	  roofit/src/RooBifurGauss.cxx, roofit/src/RooBlindTools.cxx,
	  roofit/src/RooBreitWigner.cxx, roofit/src/RooBukinPdf.cxx,
	  roofit/src/RooCBShape.cxx, roofit/src/RooChebychev.cxx,
	  roofit/src/RooDecay.cxx, roofit/src/RooDstD0BG.cxx,
	  roofit/src/RooExponential.cxx, roofit/src/RooGExpModel.cxx,
	  roofit/src/RooGaussModel.cxx, roofit/src/RooGaussian.cxx,
	  roofit/src/RooHistPdf.cxx, roofit/src/RooKeysPdf.cxx,
	  roofit/src/RooLandau.cxx, roofit/src/RooNonCPEigenDecay.cxx,
	  roofit/src/RooNovosibirsk.cxx,
	  roofit/src/RooParametricStepFunction.cxx,
	  roofit/src/RooPolynomial.cxx, roofit/src/RooUnblindCPAsymVar.cxx,
	  roofit/src/RooUnblindOffset.cxx,
	  roofit/src/RooUnblindPrecision.cxx,
	  roofit/src/RooUnblindUniform.cxx, roofit/src/RooVoigtian.cxx: o
	  RooHistPdf
	  
	  - Moved from RooFit to RooFitCore because it is used by caching
	  classes
	  
	  
	  o RooBCPGenDecay,RooBCPEffDecay,RooBMixDecay,RooNonCPEigenDecay
	  
	  - Adapt to getCoefAnalyticalIntegral interface change in
	  RooAbsAnaConvPdf
	  
	  
	  o RooBDecay
	  
	  - Adapt to getCoefAnalyticalIntegral interface change in
	  RooAbsAnaConvPdf
	  
	  - Implement coefAnalyticalIntegral and getCoefAnalytical integral
	  to forward
	  class to objects representing the coefficients
	  
	  - Implement coefVars() so that RooAbsAnaConvPdf can sort out
	  actual
	  dependents of each coefficient individually

2007-10-01 16:28  wouter

	* [r20161] roofitcore/Module.mk, roofitcore/inc/LinkDef3.h,
	  roofitcore/inc/Roo1DTable.h, roofitcore/inc/RooAICRegistry.h,
	  roofitcore/inc/RooAbsAnaConvPdf.h, roofitcore/inc/RooAbsArg.h,
	  roofitcore/inc/RooAbsBinning.h, roofitcore/inc/RooAbsCache.h,
	  roofitcore/inc/RooAbsCacheElement.h,
	  roofitcore/inc/RooAbsCachedPdf.h,
	  roofitcore/inc/RooAbsCategory.h,
	  roofitcore/inc/RooAbsCategoryLValue.h,
	  roofitcore/inc/RooAbsCollection.h, roofitcore/inc/RooAbsData.h,
	  roofitcore/inc/RooAbsFunc.h, roofitcore/inc/RooAbsGenContext.h,
	  roofitcore/inc/RooAbsGoodnessOfFit.h,
	  roofitcore/inc/RooAbsHiddenReal.h,
	  roofitcore/inc/RooAbsIntegrator.h, roofitcore/inc/RooAbsLValue.h,
	  roofitcore/inc/RooAbsMCStudyModule.h,
	  roofitcore/inc/RooAbsOptGoodnessOfFit.h,
	  roofitcore/inc/RooAbsPdf.h, roofitcore/inc/RooAbsProxy.h,
	  roofitcore/inc/RooAbsReal.h, roofitcore/inc/RooAbsRealLValue.h,
	  roofitcore/inc/RooAbsRootFinder.h,
	  roofitcore/inc/RooAbsSelfCachedPdf.h,
	  roofitcore/inc/RooAbsString.h, roofitcore/inc/RooAcceptReject.h,
	  roofitcore/inc/RooAdaptiveGaussKronrodIntegrator1D.h,
	  roofitcore/inc/RooAddGenContext.h, roofitcore/inc/RooAddModel.h,
	  roofitcore/inc/RooAddPdf.h, roofitcore/inc/RooAddition.h,
	  roofitcore/inc/RooArgList.h, roofitcore/inc/RooArgProxy.h,
	  roofitcore/inc/RooArgSet.h, roofitcore/inc/RooBinning.h,
	  roofitcore/inc/RooBrentRootFinder.h,
	  roofitcore/inc/RooCacheManager.h, roofitcore/inc/RooCachedPdf.h,
	  roofitcore/inc/RooCatType.h, roofitcore/inc/RooCategory.h,
	  roofitcore/inc/RooCategoryProxy.h,
	  roofitcore/inc/RooCategorySharedProperties.h,
	  roofitcore/inc/RooChi2Var.h, roofitcore/inc/RooClassFactory.h,
	  roofitcore/inc/RooCmdArg.h, roofitcore/inc/RooCmdConfig.h,
	  roofitcore/inc/RooComplex.h, roofitcore/inc/RooConstVar.h,
	  roofitcore/inc/RooConvCoefVar.h,
	  roofitcore/inc/RooConvGenContext.h,
	  roofitcore/inc/RooConvIntegrandBinding.h,
	  roofitcore/inc/RooCurve.h, roofitcore/inc/RooCustomizer.h,
	  roofitcore/inc/RooDLLSignificanceMCSModule.h,
	  roofitcore/inc/RooDataHist.h,
	  roofitcore/inc/RooDataHistSliceIter.h,
	  roofitcore/inc/RooDataProjBinding.h, roofitcore/inc/RooDataSet.h,
	  roofitcore/inc/RooDataSetSliceIter.h,
	  roofitcore/inc/RooDirItem.h, roofitcore/inc/RooDouble.h,
	  roofitcore/inc/RooEffGenContext.h, roofitcore/inc/RooEffProd.h,
	  roofitcore/inc/RooEfficiency.h, roofitcore/inc/RooEllipse.h,
	  roofitcore/inc/RooErrorHandler.h, roofitcore/inc/RooErrorVar.h,
	  roofitcore/inc/RooExtendPdf.h, roofitcore/inc/RooFFTConvPdf.h,
	  roofitcore/inc/RooFit.h, roofitcore/inc/RooFitResult.h,
	  roofitcore/inc/RooFormula.h, roofitcore/inc/RooFormulaVar.h,
	  roofitcore/inc/RooGaussKronrodIntegrator1D.h,
	  roofitcore/inc/RooGenCategory.h, roofitcore/inc/RooGenContext.h,
	  roofitcore/inc/RooGenProdProj.h, roofitcore/inc/RooGenericPdf.h,
	  roofitcore/inc/RooGlobalFunc.h, roofitcore/inc/RooGraphEdge.h,
	  roofitcore/inc/RooGraphNode.h, roofitcore/inc/RooGraphSpring.h,
	  roofitcore/inc/RooGrid.h, roofitcore/inc/RooHashTable.h,
	  roofitcore/inc/RooHist.h, roofitcore/inc/RooHistError.h,
	  roofitcore/inc/RooHistPdf.h, roofitcore/inc/RooHtml.h,
	  roofitcore/inc/RooImproperIntegrator1D.h,
	  roofitcore/inc/RooInt.h, roofitcore/inc/RooIntegrator1D.h,
	  roofitcore/inc/RooIntegrator2D.h,
	  roofitcore/inc/RooIntegratorBinding.h,
	  roofitcore/inc/RooInvTransform.h,
	  roofitcore/inc/RooLinTransBinning.h,
	  roofitcore/inc/RooLinearVar.h, roofitcore/inc/RooLinkedList.h,
	  roofitcore/inc/RooLinkedListElem.h,
	  roofitcore/inc/RooLinkedListIter.h, roofitcore/inc/RooList.h,
	  roofitcore/inc/RooListProxy.h, roofitcore/inc/RooMCIntegrator.h,
	  roofitcore/inc/RooMCStudy.h, roofitcore/inc/RooMPSentinel.h,
	  roofitcore/inc/RooMapCatEntry.h,
	  roofitcore/inc/RooMappedCategory.h, roofitcore/inc/RooMath.h,
	  roofitcore/inc/RooMinuit.h, roofitcore/inc/RooMsgService.h,
	  roofitcore/inc/RooMultiCatIter.h,
	  roofitcore/inc/RooMultiCategory.h, roofitcore/inc/RooNLLVar.h,
	  roofitcore/inc/RooNameReg.h, roofitcore/inc/RooNameSet.h,
	  roofitcore/inc/RooNormListManager.h,
	  roofitcore/inc/RooNormManager.h,
	  roofitcore/inc/RooNormSetCache.h, roofitcore/inc/RooNumConvPdf.h,
	  roofitcore/inc/RooNumConvolution.h,
	  roofitcore/inc/RooNumIntConfig.h,
	  roofitcore/inc/RooNumIntFactory.h, roofitcore/inc/RooNumber.h,
	  roofitcore/inc/RooObjCacheManager.h, roofitcore/inc/RooPlot.h,
	  roofitcore/inc/RooPlotable.h, roofitcore/inc/RooPolyVar.h,
	  roofitcore/inc/RooPrintable.h,
	  roofitcore/inc/RooProdGenContext.h, roofitcore/inc/RooProdPdf.h,
	  roofitcore/inc/RooProduct.h, roofitcore/inc/RooProjectedPdf.h,
	  roofitcore/inc/RooPullVar.h,
	  roofitcore/inc/RooQuasiRandomGenerator.h,
	  roofitcore/inc/RooRandom.h,
	  roofitcore/inc/RooRandomizeParamMCSModule.h,
	  roofitcore/inc/RooRangeBinning.h,
	  roofitcore/inc/RooRealAnalytic.h,
	  roofitcore/inc/RooRealBinding.h,
	  roofitcore/inc/RooRealConstant.h,
	  roofitcore/inc/RooRealIntegral.h, roofitcore/inc/RooRealMPFE.h,
	  roofitcore/inc/RooRealProxy.h, roofitcore/inc/RooRealSumPdf.h,
	  roofitcore/inc/RooRealVar.h,
	  roofitcore/inc/RooRealVarSharedProperties.h,
	  roofitcore/inc/RooRefCountList.h,
	  roofitcore/inc/RooResolutionModel.h,
	  roofitcore/inc/RooScaledFunc.h,
	  roofitcore/inc/RooSegmentedIntegrator1D.h,
	  roofitcore/inc/RooSegmentedIntegrator2D.h,
	  roofitcore/inc/RooSetPair.h, roofitcore/inc/RooSetProxy.h,
	  roofitcore/inc/RooSharedProperties.h,
	  roofitcore/inc/RooSharedPropertiesList.h,
	  roofitcore/inc/RooSimGenContext.h,
	  roofitcore/inc/RooSimPdfBuilder.h,
	  roofitcore/inc/RooSimultaneous.h,
	  roofitcore/inc/RooStreamParser.h, roofitcore/inc/RooStringVar.h,
	  roofitcore/inc/RooSuperCategory.h, roofitcore/inc/RooTObjWrap.h,
	  roofitcore/inc/RooTable.h, roofitcore/inc/RooThreshEntry.h,
	  roofitcore/inc/RooThresholdCategory.h, roofitcore/inc/RooTrace.h,
	  roofitcore/inc/RooTreeData.h, roofitcore/inc/RooTruthModel.h,
	  roofitcore/inc/RooUniformBinning.h,
	  roofitcore/inc/RooWorkspace.h, roofitcore/src/Roo1DTable.cxx,
	  roofitcore/src/RooAICRegistry.cxx,
	  roofitcore/src/RooAbsAnaConvPdf.cxx,
	  roofitcore/src/RooAbsArg.cxx, roofitcore/src/RooAbsBinning.cxx,
	  roofitcore/src/RooAbsCache.cxx,
	  roofitcore/src/RooAbsCacheElement.cxx,
	  roofitcore/src/RooAbsCachedPdf.cxx,
	  roofitcore/src/RooAbsCategory.cxx,
	  roofitcore/src/RooAbsCategoryLValue.cxx,
	  roofitcore/src/RooAbsCollection.cxx,
	  roofitcore/src/RooAbsData.cxx, roofitcore/src/RooAbsFunc.cxx,
	  roofitcore/src/RooAbsGenContext.cxx,
	  roofitcore/src/RooAbsGoodnessOfFit.cxx,
	  roofitcore/src/RooAbsHiddenReal.cxx,
	  roofitcore/src/RooAbsIntegrator.cxx,
	  roofitcore/src/RooAbsLValue.cxx,
	  roofitcore/src/RooAbsMCStudyModule.cxx,
	  roofitcore/src/RooAbsOptGoodnessOfFit.cxx,
	  roofitcore/src/RooAbsPdf.cxx, roofitcore/src/RooAbsProxy.cxx,
	  roofitcore/src/RooAbsReal.cxx,
	  roofitcore/src/RooAbsRealLValue.cxx,
	  roofitcore/src/RooAbsRootFinder.cxx,
	  roofitcore/src/RooAbsSelfCachedPdf.cxx,
	  roofitcore/src/RooAbsString.cxx,
	  roofitcore/src/RooAcceptReject.cxx,
	  roofitcore/src/RooAdaptiveGaussKronrodIntegrator1D.cxx,
	  roofitcore/src/RooAddGenContext.cxx,
	  roofitcore/src/RooAddModel.cxx, roofitcore/src/RooAddPdf.cxx,
	  roofitcore/src/RooAddition.cxx, roofitcore/src/RooArgList.cxx,
	  roofitcore/src/RooArgProxy.cxx, roofitcore/src/RooArgSet.cxx,
	  roofitcore/src/RooBanner.cxx, roofitcore/src/RooBinning.cxx,
	  roofitcore/src/RooBrentRootFinder.cxx,
	  roofitcore/src/RooCacheManager.cxx,
	  roofitcore/src/RooCachedPdf.cxx, roofitcore/src/RooCatType.cxx,
	  roofitcore/src/RooCategory.cxx,
	  roofitcore/src/RooCategoryProxy.cxx,
	  roofitcore/src/RooCategorySharedProperties.cxx,
	  roofitcore/src/RooChi2Var.cxx,
	  roofitcore/src/RooClassFactory.cxx, roofitcore/src/RooCmdArg.cxx,
	  roofitcore/src/RooCmdConfig.cxx, roofitcore/src/RooComplex.cxx,
	  roofitcore/src/RooConstVar.cxx,
	  roofitcore/src/RooConvCoefVar.cxx,
	  roofitcore/src/RooConvGenContext.cxx,
	  roofitcore/src/RooConvIntegrandBinding.cxx,
	  roofitcore/src/RooCurve.cxx, roofitcore/src/RooCustomizer.cxx,
	  roofitcore/src/RooDLLSignificanceMCSModule.cxx,
	  roofitcore/src/RooDataHist.cxx,
	  roofitcore/src/RooDataHistSliceIter.cxx,
	  roofitcore/src/RooDataProjBinding.cxx,
	  roofitcore/src/RooDataSet.cxx, roofitcore/src/RooDirItem.cxx,
	  roofitcore/src/RooDouble.cxx,
	  roofitcore/src/RooEffGenContext.cxx,
	  roofitcore/src/RooEffProd.cxx, roofitcore/src/RooEfficiency.cxx,
	  roofitcore/src/RooEllipse.cxx, roofitcore/src/RooErrorVar.cxx,
	  roofitcore/src/RooExtendPdf.cxx,
	  roofitcore/src/RooFFTConvPdf.cxx,
	  roofitcore/src/RooFitResult.cxx, roofitcore/src/RooFormula.cxx,
	  roofitcore/src/RooFormulaVar.cxx,
	  roofitcore/src/RooGaussKronrodIntegrator1D.cxx,
	  roofitcore/src/RooGenCategory.cxx,
	  roofitcore/src/RooGenContext.cxx,
	  roofitcore/src/RooGenProdProj.cxx,
	  roofitcore/src/RooGenericPdf.cxx,
	  roofitcore/src/RooGlobalFunc.cxx,
	  roofitcore/src/RooGraphEdge.cxx, roofitcore/src/RooGraphNode.cxx,
	  roofitcore/src/RooGraphSpring.cxx, roofitcore/src/RooGrid.cxx,
	  roofitcore/src/RooHashTable.cxx, roofitcore/src/RooHist.cxx,
	  roofitcore/src/RooHistError.cxx, roofitcore/src/RooHistPdf.cxx,
	  roofitcore/src/RooHtml.cxx,
	  roofitcore/src/RooImproperIntegrator1D.cxx,
	  roofitcore/src/RooInt.cxx, roofitcore/src/RooIntegrator1D.cxx,
	  roofitcore/src/RooIntegrator2D.cxx,
	  roofitcore/src/RooIntegratorBinding.cxx,
	  roofitcore/src/RooInvTransform.cxx,
	  roofitcore/src/RooLinTransBinning.cxx,
	  roofitcore/src/RooLinearVar.cxx,
	  roofitcore/src/RooLinkedList.cxx,
	  roofitcore/src/RooLinkedListElem.cxx,
	  roofitcore/src/RooLinkedListIter.cxx, roofitcore/src/RooList.cxx,
	  roofitcore/src/RooListProxy.cxx,
	  roofitcore/src/RooMCIntegrator.cxx,
	  roofitcore/src/RooMCStudy.cxx, roofitcore/src/RooMPSentinel.cxx,
	  roofitcore/src/RooMapCatEntry.cxx,
	  roofitcore/src/RooMappedCategory.cxx, roofitcore/src/RooMath.cxx,
	  roofitcore/src/RooMinuit.cxx, roofitcore/src/RooMsgService.cxx,
	  roofitcore/src/RooMultiCatIter.cxx,
	  roofitcore/src/RooMultiCategory.cxx,
	  roofitcore/src/RooNLLVar.cxx, roofitcore/src/RooNameReg.cxx,
	  roofitcore/src/RooNameSet.cxx,
	  roofitcore/src/RooNormListManager.cxx,
	  roofitcore/src/RooNormManager.cxx,
	  roofitcore/src/RooNormSetCache.cxx,
	  roofitcore/src/RooNumConvPdf.cxx,
	  roofitcore/src/RooNumConvolution.cxx,
	  roofitcore/src/RooNumIntConfig.cxx,
	  roofitcore/src/RooNumIntFactory.cxx,
	  roofitcore/src/RooNumber.cxx,
	  roofitcore/src/RooObjCacheManager.cxx,
	  roofitcore/src/RooPlot.cxx, roofitcore/src/RooPlotable.cxx,
	  roofitcore/src/RooPolyVar.cxx, roofitcore/src/RooPrintable.cxx,
	  roofitcore/src/RooProdGenContext.cxx,
	  roofitcore/src/RooProdPdf.cxx, roofitcore/src/RooProduct.cxx,
	  roofitcore/src/RooProjectedPdf.cxx,
	  roofitcore/src/RooPullVar.cxx,
	  roofitcore/src/RooQuasiRandomGenerator.cxx,
	  roofitcore/src/RooRandom.cxx,
	  roofitcore/src/RooRandomizeParamMCSModule.cxx,
	  roofitcore/src/RooRangeBinning.cxx,
	  roofitcore/src/RooRealAnalytic.cxx,
	  roofitcore/src/RooRealBinding.cxx,
	  roofitcore/src/RooRealConstant.cxx,
	  roofitcore/src/RooRealIntegral.cxx,
	  roofitcore/src/RooRealMPFE.cxx, roofitcore/src/RooRealProxy.cxx,
	  roofitcore/src/RooRealSumPdf.cxx, roofitcore/src/RooRealVar.cxx,
	  roofitcore/src/RooRealVarSharedProperties.cxx,
	  roofitcore/src/RooRefCountList.cxx,
	  roofitcore/src/RooResolutionModel.cxx,
	  roofitcore/src/RooScaledFunc.cxx,
	  roofitcore/src/RooSegmentedIntegrator1D.cxx,
	  roofitcore/src/RooSegmentedIntegrator2D.cxx,
	  roofitcore/src/RooSetPair.cxx, roofitcore/src/RooSetProxy.cxx,
	  roofitcore/src/RooSharedProperties.cxx,
	  roofitcore/src/RooSharedPropertiesList.cxx,
	  roofitcore/src/RooSimGenContext.cxx,
	  roofitcore/src/RooSimPdfBuilder.cxx,
	  roofitcore/src/RooSimultaneous.cxx,
	  roofitcore/src/RooStreamParser.cxx,
	  roofitcore/src/RooStringVar.cxx,
	  roofitcore/src/RooSuperCategory.cxx,
	  roofitcore/src/RooTObjWrap.cxx, roofitcore/src/RooTable.cxx,
	  roofitcore/src/RooThreshEntry.cxx,
	  roofitcore/src/RooThresholdCategory.cxx,
	  roofitcore/src/RooTrace.cxx, roofitcore/src/RooTreeData.cxx,
	  roofitcore/src/RooTruthModel.cxx,
	  roofitcore/src/RooUniformBinning.cxx,
	  roofitcore/src/RooWorkspace.cxx: o RooAbsCache
	  
	  - New abstract base class for cache objects associated with
	  RooAbsArgs.
	  Caches register themselves with the owning RooAbsArg and
	  propagate
	  all necessary state changes and meta information to objects in
	  the cache
	  
	  
	  o RooCacheManager
	  
	  - Concrete template implementation of RooAbsCache with an
	  interface
	  and functionality styled after RooNormListManager. The template
	  class
	  provide no special handling for cache contents that includes
	  RooAbsArg
	  objects and does not forward hook calls. It is thus mostly
	  intended
	  to cache basic types indexed on a normalization/integration
	  configuration
	  
	  
	  o RooObjCacheManager
	  
	  - Class derived from RooCacheManager<RooAbsCacheElement> that
	  implements
	  all proper call forwarding and handling of state and other meta
	  information
	  to RooAbsArg objects embedded in the cache elements. To
	  facilitate this
	  functionality the RooAbsCacheElement defines a pure virtual
	  method
	  containedArgs() that must be implemented to expose its contents
	  to
	  the cache manager. The default behavior on a serverRedirect hook
	  is
	  to sterilize the cache. OperMode changes are not forwarded by
	  default
	  to the cache contents as cached objects do not necessarily have
	  the
	  same operation mode (e.g. if the cache contains an integral of
	  its owner).
	  Any calls to optimizeCacheMode(), printCompactTreeHook(), and
	  findConstantNodes()
	  are forwarded. Moreover, optimizeCacheMode() calls are remembered
	  and
	  any objects inserted in the cache after such a call was received
	  will be
	  optimized upon insertion in the cache
	  
	  o RooAbsCacheElement
	  
	  - Abstract base class for objects to be managed by
	  RooObjCacheManager. Each
	  object must in addition to its payload implement the
	  containedArgs()
	  member function that exposes the RooAbsArg object content to the
	  manager
	  for processing. The argument passed to containedArgs() indicates
	  the use
	  case for the returned list of objects, allowing the cache payload
	  to
	  return different lists depending upon use. This is for most
	  applications
	  not required.
	  
	  
	  o RooAbsCachedPdf
	  
	  - Abstract base class derived from RooAbsPdf for p.d.f.s that
	  implement
	  value caching in a grid over the entire domain of the
	  observables.
	  The base class implements the overall caching logistics and
	  manages
	  the RooDataHists and RooHistPdfs that respresent the cached
	  contents.
	  Derived classes must inputBaseName() defined a unique name prefix
	  for
	  all cache objects, actualObservales() and actualParameters() to
	  determined the actual observables and parameters given a set of
	  available observables and fillCacheObject() which should fill the
	  RooDataHist cache for a given obs/params configuration with the
	  p.d.fs values.
	  
	  
	  o RooAbsSelfCachedPdf
	  
	  - Abstract base class derived from RooAbsCachedPdf that
	  implements
	  all of the required logistics in RooCachedPdf and only require
	  derived classes from RooAbsSelfCachedPdf to implement evaluate().
	  Any class derived from RooAbsPdf can thus be trivially switched
	  to derived from RooAbsSelfCachedPdf and gain the caching
	  functionality.
	  
	  
	  o RooCachedPdf
	  
	  - Concrete class derived from RooAbsCachedPdf that implements
	  the caching of an externally provided p.d.f in the constructor.
	  
	  
	  o RooFFTConvPdf
	  
	  - Concrete class derived from RooAbsCachedPdf that implement
	  generic
	  numeric convolution of two input p.d.f.s using FFT technique
	  and convolution theorem. Actual FFTs are calculated by FFTW
	  through TVirtualFFT interface in ROOT. Present implementation
	  only supports
	  convolution in one dimension, but this will be extended later
	  as there are no fundamental limitations in RooAbsCachedPdf nor
	  FFTW.
	  
	  
	  o RooHistPdf
	  
	  - Moved from RooFit to RooFitCore because it is used by caching
	  classes
	  
	  
	  o RooProdPdf
	  
	  - Use new RooObjCacheManager to store partial objects
	  
	  - Fix memory leak (already patched in 15.0.14h)
	  
	  
	  o RooDataHist
	  
	  - Use new RooCacheManager template to cache partial bin volumes
	  
	  - Add new set(),setAllWeights() method to update current weight
	  and all weights
	  respectively, for use in cached p.d.f.s
	  
	  - Add sliceIterator() that iterates over all bins in a lower
	  dimensional
	  slice of the dataset
	  
	  
	  o RooDataHistSliceIter
	  
	  - Class derived from TIterator that implements the iteration
	  over a slice in a reduced number of dimensions in a RooDataHist
	  
	  
	  o RooMsgService
	  
	  - Speed up processing of debug streams in cases where no debug
	  streams are active
	  
	  - add macros series oocoutX and oocxcoutX that allow to associate
	  message with
	  a different object than *this
	  
	  o RooRealBinding
	  
	  - Interface new setValue method that allows value to be set
	  outside default
	  domain, but inside given alternate named range. For use in
	  numeric integrator
	  bindings
	  
	  
	  o RooAbsRealLValue
	  
	  - Add new inRange() method with range name specifier to check
	  against chosen
	  range instead of default range
	  
	  
	  o RooCmdConfig
	  
	  - Fix dangling return pointer problem in decodeStringOnTheFly()
	  method
	  
	  
	  o RooNameSet
	  
	  - Fix bug in refoll()
	  
	  
	  o RooChi2Var, RooNLLVar
	  
	  - Add processing of AddCoefRange() named argument
	  
	  
	  o RooConvCoefVar
	  
	  - Hold p.d.f in proxy without value/shape state propagation to
	  obtain
	  correct dependency of RooConvCoefVar through separate set proxy
	  with parameters that do have state propagation
	  
	  - In getAnalyticalIntegral() ask for integration coefficient
	  specific
	  to coefficient (following interface change in RooAbsAnaConv)
	  
	  
	  o RooEfficiency
	  
	  - Follow interface change in RooCategoryProxy
	  
	  
	  o RooAbsAnaConvPdf
	  
	  - Use new RooObjCacheManager to hold normalization and
	  coefficient representations
	  
	  - Extend getCoefAnalyticalIntegral() interface so that each
	  coefficient
	  can have a separate integration configuration
	  
	  - Modify makeCoefVars() such that it constructs the
	  RooConvCoefVars with
	  actual dependents for each coefficients, rather than inserting
	  dependencies
	  of any of the coefficients in each coefficient. This logic
	  requires support
	  from the implementation class that is interface through a new
	  member function
	  coefVars()
	  
	  
	  o RooAbsReal
	  
	  - Add Boolean data member treeVar that indicates is value buffer
	  is also
	  branch buffer of a tree. This information is already present in
	  the RooAbsReal
	  but is relatively expensive to retrieve and is always needed in
	  the inner
	  loop of data set operations. This extra member significantly
	  speeds up operations
	  
	  - Remove superfluous _norm[] token in name returned by
	  integralNameSuffix() if
	  no normalization set is supplied.
	  
	  - Add a fillDataHist() method that fills a given RooDataHist with
	  a sampling
	  of the given function. Added for support of caching p.d.f.s
	  
	  
	  - Downgrading warning on non-dependent projection variables in
	  plotOn() to
	  a debug level message
	  
	  - Remove function
	  optimizeDirty(),doConstOpt(),undoConstOpt(),findCacheableBranches()
	  findUnusedDatasetVariables() and findRedundantCacheServers() as
	  part of reorganization
	  of optimization functionality.
	  
	  
	  o RooAbsCollection
	  
	  - Use iterator semantics instead of vector semantics to process
	  RooLinkedList
	  contents in assignment operator
	  
	  - Add utility function contentsString() returning stl string with
	  names
	  of contents
	  
	  
	  o RooAddPdf
	  
	  - Rewrite cache management using new RooObjCacheManager that
	  holds projection
	  integrals, range integrals and supplemental normalization lists
	  
	  
	  o RooAbsOptGoodnessOfFit
	  
	  - Improve handling of normalization ranges and reference ranges
	  for test statistics
	  containing RooAddPdfs. New named argument in fitTo() and
	  RooNllVar::ctor() pass
	  reference range for fractions in RooAddPdf components that do not
	  have an explicit
	  fixed definition already. Name all normalization ranges
	  explicitly after the
	  subrange to which the're applied to avoid name clashes and
	  conflicts if multiple
	  normalization ranges are involved.
	  
	  - Rewrite informational messages through RooMsgService
	  
	  - Implement new constOptimizeTestStatistic() function that
	  signals all test statistic
	  components of a RooAbsArg expression tree to perform their
	  constant term optimization
	  
	  - Implement new optimizeCaching() driver function that changes
	  default lazy-evaluation-with-caching
	  scheme to test statistic scheme where only parameters objects
	  propagate state changes and
	  where all components that depend directly or indirectly on
	  observables have lazy evaluation
	  disabled. Changes to p.d.f objects are delegated to
	  RooAbsPdf::optimizeCacheMode(). Changes
	  to dataset are delegated to
	  RooAbsData::optimizeReadingWithCaching()
	  
	  - Implement new optimizeConstantTerms() function that is back end
	  for constOptimizeTestStatistic
	  implementation.
	  
	  
	  o RooAICRegistry, RooNormSetCache
	  
	  - Remove tracking of allocation cycles of RooArgSets as this
	  scheme is superseded by
	  memory pool mechanism for RooArgSet allocation
	  
	  
	  o RooMappedCategory
	  
	  - Follow interface change in RooCategoryProxy.
	  
	  
	  o RooRealMPFE
	  
	  - Follow reorganization of optimization functionality: implement
	  new constOptimizeTestStatistic
	  function for forwarding to slave processes.
	  
	  
	  o RooRealVar
	  
	  - Add new setVal() function with range name to facilite setting
	  of values that are outside
	  default range, but inside specified alternate range. Needed for
	  numeric integration and
	  certain RooAddPdf coefficient projection.
	  
	  
	  o RooAbsArg
	  
	  - Make state management functions public
	  [is/set][Value/ShapeDirty](), setOperMode90
	  
	  - Add static _flipAClean boolean to support setACleanAdirty()
	  static method.
	  
	  - Implement mechanism for registration of cache objects with base
	  class RooAbsCache.
	  Forward all calls to operModeHook(), redirectServersHook(),
	  optimizeCacheMode()
	  and printCompactTreeHook() to all caches for further processing
	  
	  - Define constOptimize() function and provide default
	  implementation that forwards
	  to all servers
	  
	  - Implement optimizeCacheMode() function that puts expression
	  tree in optimized
	  caching for test-statistics operations (only cache/lazy evaluate
	  nodes that
	  do not (indirectly) depend on observables
	  
	  - Implement findConstantNodes() function that identifies all
	  nodes that depend
	  exclusively on constant observables and >0 observables that are
	  eligible
	  for precalculation and caching in test statistics operations by
	  RooAbsOptTestStatistic::optimizeConstantTerms()
	  
	  - Define constOptimizeTestStatistics that signal an expression
	  tree that any
	  embedded test statistic objects should perform their constant
	  term optimization.
	  Default implementation in RooAbsArg forwards call to all servers.
	  
	  
	  o RooAbsPdf
	  
	  - Use new RooObjCacheManager to manage normalization integrals
	  cache.
	  
	  - Process new SumCoefRange() option in fitTo() that sets the
	  coeffient
	  interpretation range for all embedded RooAddPdf objects of which
	  the interpretation range was not explicitly set
	  
	  - Extend interface of fixAddCoefNormalizationSet(): add extra
	  argument
	  that controls if AddCoef normalization set are forcibly overruled
	  for objects that already have an explicit range setting.
	  
	  
	  o RooRealIntegral
	  
	  - Add some informational messaging through RooMsgService, rewrite
	  existing ones
	  
	  - Speed up numeric summations by precreating the involved
	  RooSuperCategory
	  in the ctor rather than in evaluate().
	  
	  - Fix bug in dependency insertion: explicitly require servers to
	  be value
	  server to avoid pulling in fake dependents.
	  
	  - Remove obsolete data members
	  
	  - Implement new setACleanADirty() function that atomically flips
	  state of
	  all AClean objects to ADirty for the duration of the integration
	  step.
	  Replaces the much more expensive prepareACleanFunc() that did
	  this
	  only for the objects involved.
	  
	  - Process factorizing terms in integral only if the list is not
	  empty
	  
	  - Process Jacobian terms in integral only if the list is not
	  empty
	  
	  
	  o RooAddGenContext
	  
	  - Adapt to cache management chanches in RooAddPdf
	  
	  
	  o RooNumIntFactory
	  
	  - Use STL classes for internal memory management
	  
	  
	  o RooSetProxyy
	  
	  - Implement operator new() and operator() delete as required
	  because
	  RooArgSet implements them
	  
	  
	  o RooAbsGoodnessOfFit
	  
	  - Store and forward AddCoefRange information for embedded
	  RooAddPdf objects
	  
	  - Implement constOptimizeTestStatistic() and forward to
	  components
	  
	  
	  o RooErrorVar
	  
	  - Follow inRange() interface change in RooAbsRealLValue
	  
	  
	  o RooConvGenContext
	  
	  - Adapt code to make it work with both RooAbsAnaConv objects and
	  the newly introduced RooFFTConvPdf
	  
	  
	  o RooMinuit
	  
	  - Follow reorganization of optimization functionality
	  
	  
	  o RooProjectedPdf
	  
	  - Store projection using new RooObjCacheManager
	  
	  
	  o RooGlobalFunc
	  
	  - Add RooFit::SumCoefRange() named argument for
	  RooAbsPdf::fitTo()
	  and RooNLLVar::ctor() and RooChi2Var::ctor()
	  
	  
	  o RooClassFactory
	  
	  - Extend existing makePdf(),makeFunction and makeClass()
	  functions
	  to also accept RooAbsCategory arguments, to accept an optional
	  string
	  inserted as the return value expression inserted in the
	  evaluate() method of the class created, as well as as option
	  string
	  specifying one or more analytical integrations of the given
	  function
	  expression that will be advertised in the generated
	  getAnalyticalIntegral()
	  code and implemented in the generated analyticalIntegral() code
	  
	  - Add makeAndCompileFunction() and makeAndCompilePdf methods that
	  generate the code and immediate compile it through ROOTs ACliC
	  interface.
	  These functions have a simpler interface because the list of
	  arguments
	  of the function to be created can be specified as a const
	  RooArgSet&
	  rather than a string with a list of names, thus making it easier
	  for on-the-fly definition of compiled objects.
	  
	  - Add defineFunction() and definePdf() methods define and compile
	  a function/pdf using the above functions and immediately
	  instantiate
	  an object of the given type passing the specified RooArgSet
	  arguments
	  to the constructor of the object. These functions make a compiled
	  equivalent of RooFormulaVar based on the TFormula interpreter,
	  i.e.
	  
	  RooAbsReal* f = new RooFormulaVar("f","D(1-2w)",RooArgSet(D,w)) ;
	  
	  becomes
	  
	  RooAbsReal* f =
	  RooClassFactory::defineFunction("f","D(1-2w)",RooArgSet(D,w)) ;
	  
	  
	  o RooAbsCategory
	  
	  - Add Boolean data member treeVar that indicates is value buffer
	  is also
	  branch buffer of a tree. This information is already present in
	  the RooAbsReal
	  but is relatively expensive to retrieve and is always needed in
	  the inner
	  loop of data set operations. This extra member significantly
	  speeds up operations
	  
	  - Construct explit clean name for TBranch name if node is cached,
	  equivalent
	  to what is done in RooAbsReal. Needed because new constOptimizer
	  can also
	  cache RooAbsCategory objects
	  
	  
	  o RooArgSet
	  
	  - Implement operator new() and operator delete() to implement
	  memory pool scheme
	  for RooArgSets. The goal of this implementation is to insure that
	  two RooArgSet
	  pointers are _never_ the same. This allows to RooNormSet cache
	  manager to safely
	  and quickly index integration and normalization configurations by
	  evaluating
	  the contents of a RooArgSet only the first time it sees it.
	  
	  
	  o RooSimultaneous
	  
	  - Implement caching of partial integrals using new
	  RooObjCacheManager
	  
	  - Following interface change in RooCategoryProxy ;
	  
	  
	  o RooAbsData
	  
	  - Defined pure virtual methods optimizeReadingWithCache() and
	  allClientsCached()
	  
	  
	  o RooTreeData
	  
	  - Implement optimizeReadingWithCache() which determines given a
	  p.d.f to be
	  evaluated and a list of the nodes that are cached for it, which
	  observables
	  in the dataset are no longer required because they are either not
	  an observable
	  of the p.d.f, or they exclusively feed nodes that are cached.
	  Reading of these
	  observables is disabled through SetBranchStatus().
	  
	  - Move allClientsCached() utility function here from RooAbsReal.
	  
	  
	  o RooCategoryProxy
	  
	  - Remove const char*() conversion operator in favor of a const
	  char* label() method
	  to remove possibly ambiguities in C++ math expressions involving
	  category proxies.
	  
	  
	  o LinkDef3.h
	  
	  - Add newly defined classes

2007-10-01 16:12  rdm

	* [r20160] rint/src/TRint.cxx: don't print any version string when
	  -l is specified.

2007-10-01 15:54  brun

	* [r20159] tutorials/io/double32.C: Update comments in scipt to
	  reflect the extended functionality of Double32_t

2007-10-01 15:53  brun

	* [r20158] io/src/TBufferFile.cxx: Add a few more comments in the
	  doc of TBufferFile::WriteDouble32

2007-10-01 15:41  brun

	* [r20157] test/Event.h: Use the new option [0,0,6] in the
	  Double32_t specification for
	  the member fClosestDistance.

2007-10-01 15:28  brun

	* [r20156] io/src/TBufferFile.cxx: Add support for the new feature
	  [0,0,nbits] also in the functions processing arrays
	  like TBufferFile::WriteFastArrayDouble32 and
	  TBufferFile::ReadFastArrayDouble32.

2007-10-01 15:27  brun

	* [r20155] meta/src/TStreamerElement.cxx: Set the bit kHasRange
	  also when the range is [0,0,nbits]

2007-10-01 14:20  brun

	* [r20154] auth/inc/AFSAuth.h, auth/inc/AFSAuthTypes.h,
	  auth/inc/TAFS.h, auth/inc/TRootSecContext.h,
	  auth/src/AFSAuth.cxx, base/inc/Rstrstream.h,
	  base/inc/RtypesCint.h, base/inc/config.h,
	  base/src/TVirtualMonitoring.cxx, config/precompile.h.in,
	  fftw/inc/LinkDef.h, fftw/inc/TFFTComplex.h,
	  gui/inc/TGApplication.h, gui/inc/TGIdleHandler.h,
	  gui/src/TGIdleHandler.cxx, io/src/TBufferFile.cxx,
	  meta/src/TStreamerElement.cxx, monalisa/inc/TMonaLisaReader.h,
	  monalisa/src/TMonaLisaReader.cxx, pgsql/src/TPgSQLResult.cxx,
	  proofd/inc/XrdProofWorker.h, proofd/inc/XrdROOT.h,
	  proofd/src/XrdProofWorker.cxx, qt/inc/TQtUtil.h,
	  reflex/inc/Reflex/DictionaryGenerator.h,
	  reflex/src/DictionaryGenerator.cxx,
	  thread/inc/TAtomicCountPthread.h, thread/inc/TAtomicCountWin32.h,
	  tree/inc/TSelectorList.h, win32gdk/inc/xatom.h,
	  win32gdk/src/gifdecode.c, win32gdk/src/gifencode.c,
	  win32gdk/src/gifquantize.c: Extend the functionality of
	  Double32_t as explained below:
	  // The range specifier has the general format: [xmin,xmax] or
	  [xmin,xmax,nbits]
	  // [0,1]
	  // [-10,100];
	  // [-pi,pi], [-pi/2,pi/4],[-2pi,2*pi]
	  // [-10,100,16]
	  // [0,0,8]
	  // if nbits is not specified, or nbits <2 or nbits>32 it is set
	  to 32
	  // if (xmin==0 and xmax==0 and nbits <=16) the double word will
	  be converted
	  // to a float and its mantissa truncated to nbits significative
	  bits.
	  //
	  // IMPORTANT NOTE
	  // --------------
	  // Lets assume an original variable double x:
	  // When using the format [0,0,8] (ie range not specified) you get
	  the best
	  // relative precision when storing and reading back the truncated
	  x, say xt.
	  // The variance of (x-xt)/x will be better than when specifying a
	  range
	  // for the same number of bits. However the precision relative to
	  the
	  // range (x-xt)/(xmax-xmin) will be worst, and vice-versa.
	  // The format [0,0,8] is also interesting when the range of x is
	  infinite
	  // or unknown.

2007-10-01 13:47  rdm

	* [r20153] build/unix/svninfo.sh: add protection in case .svn
	  directory does not exist.

2007-10-01 13:38  rdm

	* [r20152] etc: add the etc/svninfo.txt file to the ignore list.
	  This file is generated
	  by the build/unix/svninfo.sh script each time make is called.

2007-10-01 13:34  rdm

	* [r20151] Makefile, base/inc/TROOT.h, base/src/TROOT.cxx,
	  build/unix/svninfo.sh, build/version.cxx, rint/inc/TRint.h,
	  rint/src/TRint.cxx: add new methods:
	  TROOT::GetSvnRevision() -- returns svn current revision number
	  TROOT::GetSvnBranch() -- returns svn current branch name
	  TROOT::GetSvnDate() -- returns date time of built
	  the methods are used in TRint to print in the ROOT welcome
	  message.

2007-10-01 13:31  rdm

	* [r20150] cint/lib/dll_stl: add rootcint_valarray.cxx to ignore
	  property.

2007-09-30 09:12  brun

	* [r20144] tree/src/TTree.cxx: remove an unnecessary protection in
	  TTree::GetBranch and Ttree::GetLeaf
	  preventing the use of branches starting with the character "0"

2007-09-29 18:18  axel

	* [r20143] cintex/src/CINTClassBuilder.cxx,
	  cintex/src/CINTScopeBuilder.cxx, cintex/src/CINTUtils.cxx,
	  cintex/test/dict/CintexTest.h, cintex/test/dict/selection.xml,
	  cintex/test/test_PyCintex_basics.py: remove limitation on length
	  of type names. From Pere: register unknown scopes as a, not n.
	  Fixes https://savannah.cern.ch/bugs/?24227

2007-09-29 05:50  brun

	* [r20138] hist/src/THStack.cxx: Fix a problem in THStack::Paint
	  when using option "pads" and reported
	  by Jan Musinsky at URL: <http://savannah.cern.ch/bugs/?29970>

2007-09-28 13:03  rdm

	* [r20134] cint/main, utils/src: include cint_tmp.exe and
	  rotcint_tmp.exe in the ignore list for Win32.

2007-09-28 10:34  rdm

	* [r20133] configure: no need anymore for DOS line-ending
	  conversion of tutorials and test files
	  on DOS, users should just use a proper editor.

2007-09-28 08:18  antcheva

	* [r20119] gui/src/TRootBrowser.cxx: Fix in ProcessMessage to avoid
	  SegV when the browsed objects
	  are not TObject (fixes bug 29937)

2007-09-27 16:34  rdm

	* [r20118] tutorials/demos.C: remove blank line (and testing svn on
	  win32).

2007-09-27 15:16  ganis

	* [r20115] xrootd/src/xrootd-20070716-0300.src.tgz: From Bertrand:
	  fix a problem in the implementation of posix_memalign

2007-09-27 13:16  rdm

	* [r20114] xrootd/src/xrootd-20070716-0300.src.tgz: added missing
	  GNUmake.rules.sunCCi86pc needed to compile on Solaris 10 x86.

2007-09-27 13:14  rdm

	* [r20113] gl/Module.mk: white space.

2007-09-27 13:14  rdm

	* [r20112] ftgl/Module.mk: -I of the OpenGL inc directory was
	  missing, was fatal on Solaris x86.

2007-09-27 11:13  rdm

	* [r20110] io/src/TFile.cxx: From Gerri:
	  to test if the remote host is the same as the local host we
	  cannot
	  rely on network hostname being the same as hostname
	  (host.domain.com != host).
	  Add an or on the IP address which generally are the same (in case
	  the
	  machines have more than one NIC we should check all IP's though).

2007-09-26 16:44  antcheva

	* [r20105] fitpanel/src/TFitEditor.cxx: Added protection in Hide
	  method in case fParentPad was deleted (thanks to Peter Somogyi)

2007-09-26 14:45  brun

	* [r20104] geom/src/TGeoManager.cxx,
	  geompainter/src/TGeoPainter.cxx: From Andrei:
	  Fix a problem reported by Alberto Colla:
	  I am working on the implementation of caching the Grid OCDB data
	  set, using TFile functionality ("CACHEREAD" option). I have found
	  a problem in TGeoManager::Import(). Here the local cache folder
	  is overwritten:
	  
	  // in case a web file is specified, use the cacheread option to
	  cache
	  // this file in the local directory
	  --> TFile::SetCacheFileDir(".");
	  TFile *f = 0;
	  if (strstr(filename,"http://")) f =
	  TFile::Open(filename,"CACHEREAD");
	  else f = TFile::Open(filename);

2007-09-26 10:55  ganis

	* [r20102] proof/src/TProofMgr.cxx: Fix a problem while filling the
	  list of existing managers.

2007-09-26 10:51  ganis

	* [r20101] proofd/Module.mk, proofx/Module.mk: Form Bertrand:
	  Fix a problem on Windows introduced with patches r20094 and
	  r20096.

2007-09-25 15:58  ganis

	* [r20098] proof/src/TDSet.cxx, proofplayer/src/TEventIter.cxx:
	  TEventIter.cxx, TDSet.cxx
	  - Take into account a possible hidden prefix when testing file
	  locality
	  TEventIter.cxx
	  - Fix a problem affecting loading a tree from file subdirectories

2007-09-25 15:57  rdm

	* [r20097] configure: From Gerri:
	  My patch to configure assumed that the new xrootd was already in,
	  so the default value for extraxrdflags was wrongly set.

2007-09-25 15:20  ganis

	* [r20096] proofd/inc/XrdSysToOuc.h: Forgot a file in the previous
	  patch (r20094).

2007-09-25 15:03  antcheva

	* [r20095] gui/src/TGListTree.cxx: From Bertrand:
	  Added a protection to avoid wheel mouse double-click events in
	  TGListTree

2007-09-25 13:42  ganis

	* [r20094] netx/Module.mk, netx/inc/TXNetFile.h,
	  netx/src/TXNetFile.cxx, proofd/inc/XrdProofConn.h,
	  proofd/inc/XrdProofGroup.h, proofd/inc/XrdProofSched.h,
	  proofd/inc/XrdProofServProxy.h, proofd/inc/XrdProofdClient.h,
	  proofd/inc/XrdProofdManager.h, proofd/inc/XrdProofdProtocol.h,
	  proofd/inc/XrdProofdResponse.h, proofd/src/XrdProofConn.cxx,
	  proofd/src/XrdProofGroup.cxx, proofd/src/XrdProofPhyConn.cxx,
	  proofd/src/XrdProofSched.cxx, proofd/src/XrdProofServProxy.cxx,
	  proofd/src/XrdProofdClient.cxx, proofd/src/XrdProofdManager.cxx,
	  proofd/src/XrdProofdProtocol.cxx,
	  proofd/src/XrdProofdResponse.cxx, proofx/Module.mk,
	  proofx/src/TXSocket.cxx: Add support for XROOTD versions >
	  20070723 where some classes where renamed.

2007-09-25 13:09  rdm

	* [r20093] configure: From Gerri:
	  handle latest xrootd version, which is not backward compatible.

2007-09-25 09:14  couet

	* [r20089] treeviewer/src/TParallelCoord.cxx: - Fix the problem
	  mentionned here:
	  http://root.cern.ch/phpBB2/viewtopic.php?t=5448
	  Axis deletion from the editor did not work.

2007-09-24 21:56  rdm

	* [r20087] io/inc/TFile.h, io/src/TFile.cxx: From Gerri:
	  add option argument "prefix" to GetType() which is used for
	  testing locality
	  of a file, on return prefix will contain the local path of a
	  file.

2007-09-24 18:19  ganis

	* [r20086] proof/inc/TProof.h, proofplayer/inc/LinkDef.h,
	  proofplayer/inc/TAdaptivePacketizer.h,
	  proofplayer/inc/TPacketizerAdaptive.h,
	  proofplayer/inc/TVirtualPacketizer.h,
	  proofplayer/src/TAdaptivePacketizer.cxx,
	  proofplayer/src/TPacketizerAdaptive.cxx,
	  proofplayer/src/TProofPlayer.cxx,
	  proofplayer/src/TVirtualPacketizer.cxx: From Jan:
	  - Add a heuristic mechanism to avoid undervaluing the processing
	  rate and to short packets.
	  - Add parameters: PROOF_MinPacketTime and PROOF_PacketAsAFraction
	  to allow tuning performance.
	  - Change name TAdaptivePacketizer to TPacketizerAdaptive in order
	  to follow the naming
	  convention for packetizers
	  - Slightly tuning a few parameters.

2007-09-22 08:03  ganis

	* [r20061] netx/src/TXNetFile.cxx: From Andreas:
	  fix a bug affecting the check for staged files.

2007-09-21 22:48  rdm

	* [r20000] build/unix/makechangelog.sh: limit ChangeLog using -r
	  HEAD:15807 (which is v5-12-00).

2007-09-21 12:05  brun

	* [r19991] hist/src/TProfile2D.cxx: Fix problem reported at URL:
	  <http://savannah.cern.ch/bugs/?29767>
	  in function TProfile2D::SetBins

2007-09-21 07:13  rdm

	* [r19990] build/unix/svn2cl.sh: remove debug statement.

2007-09-20 16:52  rdm

	* [r19989] build/unix/cvs2cl.pl, build/unix/makechangelog.sh,
	  build/unix/svn2cl.sh, build/unix/svn2cl.xsl: change from cvs2cl
	  to svn2cl to generate the README/ChangeLog file.

2007-09-20 16:51  rdm

	* [r19988] README: add ChangeLog to svn:ignore.

2007-09-20 15:43  brun

	* [r19987] tree/src/TChain.cxx: From Mihaela:
	  A TChain created with the default constructor and having an entry
	  list cannot be processed with a TSelector. This was due to some
	  missing settings in the default constructor.

2007-09-19 22:38  rdm

	* [r19984] cont/src/TList.cxx: From Axel:
	  cache TObject::GetName() - it might be an expensive call.

2007-09-19 21:29  rdm

	* [r19983] base/inc/Rtypes.h: Fix in comment.

2007-09-19 19:56  rdm

	* [r19826] alien/inc/TAlien.h, alien/inc/TAlienCollection.h,
	  alien/inc/TAlienDirectory.h, alien/inc/TAlienFile.h,
	  alien/inc/TAlienJDL.h, alien/inc/TAlienJob.h,
	  alien/inc/TAlienJobStatus.h, alien/inc/TAlienJobStatusList.h,
	  alien/inc/TAlienMasterJob.h, alien/inc/TAlienMasterJobStatus.h,
	  alien/inc/TAlienResult.h, alien/inc/TAlienSystem.h,
	  alien/src/TAlien.cxx, alien/src/TAlienCollection.cxx,
	  alien/src/TAlienDirectory.cxx, alien/src/TAlienFile.cxx,
	  alien/src/TAlienJDL.cxx, alien/src/TAlienJob.cxx,
	  alien/src/TAlienJobStatus.cxx, alien/src/TAlienJobStatusList.cxx,
	  alien/src/TAlienMasterJob.cxx,
	  alien/src/TAlienMasterJobStatus.cxx, alien/src/TAlienResult.cxx,
	  alien/src/TAlienSystem.cxx, asimage/inc/LinkDef.h,
	  asimage/inc/LinkDefGS.h, asimage/inc/LinkDefGui.h,
	  asimage/inc/TASImage.h, asimage/inc/TASImagePlugin.h,
	  asimage/inc/TASPaletteEditor.h, asimage/inc/TASPluginGS.h,
	  asimage/src/TASImage.cxx, asimage/src/TASPaletteEditor.cxx,
	  asimage/src/TASPluginGS.cxx, asimage/src/TASPolyUtils.c,
	  auth/inc/AFSAuth.h, auth/inc/AFSAuthTypes.h,
	  auth/inc/AuthConst.h, auth/inc/DaemonUtils.h, auth/inc/TAFS.h,
	  auth/inc/TAuthenticate.h, auth/inc/THostAuth.h,
	  auth/inc/TRootAuth.h, auth/inc/TRootSecContext.h,
	  auth/inc/rsaaux.h, auth/inc/rsadef.h, auth/inc/rsafun.h,
	  auth/inc/rsalib.h, auth/src/AFSAuth.cxx,
	  auth/src/DaemonUtils.cxx, auth/src/TAFS.cxx,
	  auth/src/TAuthenticate.cxx, auth/src/THostAuth.cxx,
	  auth/src/TRootAuth.cxx, auth/src/TRootSecContext.cxx,
	  auth/src/rsaaux.cxx, auth/src/rsafun.cxx, auth/src/rsalib.cxx,
	  base/inc/Bswapcpy.h, base/inc/Buttons.h, base/inc/Bytes.h,
	  base/inc/Byteswap.h, base/inc/DllImport.h,
	  base/inc/GLConstants.h, base/inc/Gtypes.h, base/inc/GuiTypes.h,
	  base/inc/Htypes.h, base/inc/KeySymbols.h, base/inc/LinkDef1.h,
	  base/inc/LinkDef2.h, base/inc/LinkDef3.h, base/inc/LinkDef4.h,
	  base/inc/MessageTypes.h, base/inc/RConfig.h,
	  base/inc/RQ_OBJECT.h, base/inc/RStipples.h, base/inc/Riosfwd.h,
	  base/inc/Riostream.h, base/inc/Rpair.h, base/inc/Rstrstream.h,
	  base/inc/Rtypeinfo.h, base/inc/Rtypes.h, base/inc/RtypesCint.h,
	  base/inc/RtypesImp.h, base/inc/TApplication.h,
	  base/inc/TApplicationImp.h, base/inc/TAttAxis.h,
	  base/inc/TAttBBox.h, base/inc/TAttFill.h, base/inc/TAttLine.h,
	  base/inc/TAttMarker.h, base/inc/TAttPad.h, base/inc/TAttText.h,
	  base/inc/TBenchmark.h, base/inc/TBrowser.h,
	  base/inc/TBrowserImp.h, base/inc/TBuffer.h, base/inc/TBuffer3D.h,
	  base/inc/TBuffer3DTypes.h, base/inc/TCanvasImp.h,
	  base/inc/TColor.h, base/inc/TContextMenu.h,
	  base/inc/TContextMenuImp.h, base/inc/TControlBarImp.h,
	  base/inc/TDatime.h, base/inc/TDirectory.h, base/inc/TEnv.h,
	  base/inc/TError.h, base/inc/TException.h, base/inc/TExec.h,
	  base/inc/TFileCollection.h, base/inc/TFileInfo.h,
	  base/inc/TFolder.h, base/inc/TGuiFactory.h,
	  base/inc/TInetAddress.h, base/inc/TMD5.h, base/inc/TMacro.h,
	  base/inc/TMathBase.h, base/inc/TMemberInspector.h,
	  base/inc/TMessageHandler.h, base/inc/TNamed.h,
	  base/inc/TObjString.h, base/inc/TObject.h, base/inc/TObjectSpy.h,
	  base/inc/TPRegexp.h, base/inc/TParameter.h,
	  base/inc/TPluginManager.h, base/inc/TPoint.h,
	  base/inc/TProcessID.h, base/inc/TProcessUUID.h,
	  base/inc/TQClass.h, base/inc/TQCommand.h,
	  base/inc/TQConnection.h, base/inc/TQObject.h, base/inc/TROOT.h,
	  base/inc/TRedirectOutputGuard.h, base/inc/TRef.h,
	  base/inc/TRefCnt.h, base/inc/TRemoteObject.h,
	  base/inc/TRootIOCtor.h, base/inc/TStopwatch.h,
	  base/inc/TStorage.h, base/inc/TString.h, base/inc/TStyle.h,
	  base/inc/TSysEvtHandler.h, base/inc/TSystem.h,
	  base/inc/TSystemDirectory.h, base/inc/TSystemFile.h,
	  base/inc/TTask.h, base/inc/TTime.h, base/inc/TTimeStamp.h,
	  base/inc/TTimer.h, base/inc/TUUID.h, base/inc/TUrl.h,
	  base/inc/TVersionCheck.h, base/inc/TVirtualFFT.h,
	  base/inc/TVirtualFitter.h, base/inc/TVirtualGL.h,
	  base/inc/TVirtualMonitoring.h, base/inc/TVirtualMutex.h,
	  base/inc/TVirtualPS.h, base/inc/TVirtualPad.h,
	  base/inc/TVirtualPadEditor.h, base/inc/TVirtualPerfStats.h,
	  base/inc/TVirtualViewer3D.h, base/inc/TVirtualX.h,
	  base/inc/Varargs.h, base/inc/Windows4Root.h, base/inc/config.h,
	  base/src/Match.cxx, base/src/String.cxx, base/src/Stringio.cxx,
	  base/src/TApplication.cxx, base/src/TAtt3D.cxx,
	  base/src/TAttAxis.cxx, base/src/TAttBBox.cxx,
	  base/src/TAttFill.cxx, base/src/TAttLine.cxx,
	  base/src/TAttMarker.cxx, base/src/TAttPad.cxx,
	  base/src/TAttText.cxx, base/src/TBrowser.cxx,
	  base/src/TBrowserImp.cxx, base/src/TBuffer.cxx,
	  base/src/TBuffer3D.cxx, base/src/TColor.cxx,
	  base/src/TContextMenu.cxx, base/src/TDatime.cxx,
	  base/src/TDirectory.cxx, base/src/TEnv.cxx, base/src/TError.cxx,
	  base/src/TException.cxx, base/src/TExec.cxx,
	  base/src/TFileCollection.cxx, base/src/TFileInfo.cxx,
	  base/src/TFolder.cxx, base/src/TGuiFactory.cxx,
	  base/src/TInetAddress.cxx, base/src/TMD5.cxx,
	  base/src/TMacro.cxx, base/src/TMathBase.cxx,
	  base/src/TMessageHandler.cxx, base/src/TNamed.cxx,
	  base/src/TObjString.cxx, base/src/TObject.cxx,
	  base/src/TObjectSpy.cxx, base/src/TPRegexp.cxx,
	  base/src/TParameter.cxx, base/src/TPluginManager.cxx,
	  base/src/TProcessID.cxx, base/src/TProcessUUID.cxx,
	  base/src/TQCommand.cxx, base/src/TQConnection.cxx,
	  base/src/TQObject.cxx, base/src/TROOT.cxx, base/src/TRef.cxx,
	  base/src/TRefCnt.cxx, base/src/TRegexp.cxx,
	  base/src/TRemoteObject.cxx, base/src/TStopwatch.cxx,
	  base/src/TStorage.cxx, base/src/TString.cxx,
	  base/src/TStringLong.cxx, base/src/TStyle.cxx,
	  base/src/TSysEvtHandler.cxx, base/src/TSystem.cxx,
	  base/src/TSystemDirectory.cxx, base/src/TSystemFile.cxx,
	  base/src/TTask.cxx, base/src/TTime.cxx, base/src/TTimeStamp.cxx,
	  base/src/TTimer.cxx, base/src/TUUID.cxx, base/src/TUrl.cxx,
	  base/src/TVirtualFFT.cxx, base/src/TVirtualFitter.cxx,
	  base/src/TVirtualGL.cxx, base/src/TVirtualMonitoring.cxx,
	  base/src/TVirtualMutex.cxx, base/src/TVirtualPS.cxx,
	  base/src/TVirtualPad.cxx, base/src/TVirtualPadEditor.cxx,
	  base/src/TVirtualPerfStats.cxx, base/src/TVirtualViewer3D.cxx,
	  base/src/TVirtualX.cxx, build/package/msi/makemsi.cxx,
	  build/rmkdepend/mainroot.cxx, build/win/w32pragma.h,
	  castor/inc/LinkDef.h, castor/inc/TCastorFile.h,
	  castor/src/TCastorFile.cxx, chirp/inc/TChirpFile.h,
	  chirp/src/TChirpFile.cxx, cint7/tool/rmkdepend/mainroot.cxx,
	  cintex/inc/Cintex/Cintex.h, cintex/src/CINTClassBuilder.cxx,
	  cintex/src/CINTClassBuilder.h, cintex/src/CINTEnumBuilder.cxx,
	  cintex/src/CINTEnumBuilder.h, cintex/src/CINTFunctionBuilder.cxx,
	  cintex/src/CINTFunctionBuilder.h, cintex/src/CINTFunctional.cxx,
	  cintex/src/CINTFunctional.h, cintex/src/CINTScopeBuilder.cxx,
	  cintex/src/CINTScopeBuilder.h, cintex/src/CINTTypedefBuilder.cxx,
	  cintex/src/CINTTypedefBuilder.h, cintex/src/CINTUtils.cxx,
	  cintex/src/CINTVariableBuilder.cxx,
	  cintex/src/CINTVariableBuilder.h, cintex/src/CINTdefs.h,
	  cintex/src/Cintex.cxx, cintex/src/ROOTClassEnhancer.cxx,
	  cintex/src/ROOTClassEnhancer.h, clarens/inc/LinkDef.h,
	  clarens/inc/TClProxy.h, clarens/inc/TClSession.h,
	  clarens/inc/TClarens.h, clarens/inc/TEcho.h, clarens/inc/TGM.h,
	  clarens/inc/TLM.h, clarens/inc/TSAM.h, clarens/inc/TXmlRpc.h,
	  clarens/src/TClProxy.cxx, clarens/src/TClSession.cxx,
	  clarens/src/TClarens.cxx, clarens/src/TEcho.cxx,
	  clarens/src/TGM.cxx, clarens/src/TLM.cxx, clarens/src/TSAM.cxx,
	  clarens/src/TXmlRpc.cxx, clib/inc/Getline.h, clib/inc/LinkDef.h,
	  clib/inc/mmalloc.h, clib/inc/mmconfig.h, clib/inc/mmprivate.h,
	  clib/inc/snprintf.h, clib/src/Demangle.c, clib/src/Getline.c,
	  clib/src/attach.c, clib/src/getpagesize.c, clib/src/keys.c,
	  clib/src/mmapsup.c, clib/src/mmcheck.c, clib/src/mmtrace.c,
	  clib/src/mvalloc.c, clib/src/snprintf.c, config/precompile.h.in,
	  config/rootrc.in, cont/inc/LinkDef.h, cont/inc/TArray.h,
	  cont/inc/TArrayC.h, cont/inc/TArrayD.h, cont/inc/TArrayF.h,
	  cont/inc/TArrayI.h, cont/inc/TArrayL.h, cont/inc/TArrayL64.h,
	  cont/inc/TArrayS.h, cont/inc/TBits.h, cont/inc/TBtree.h,
	  cont/inc/TClassTable.h, cont/inc/TClonesArray.h,
	  cont/inc/TCollection.h, cont/inc/TCollectionProxyInfo.h,
	  cont/inc/TExMap.h, cont/inc/THashList.h, cont/inc/THashTable.h,
	  cont/inc/TList.h, cont/inc/TMap.h, cont/inc/TObjArray.h,
	  cont/inc/TObjectTable.h, cont/inc/TOrdCollection.h,
	  cont/inc/TRefArray.h, cont/inc/TRefTable.h,
	  cont/inc/TSeqCollection.h, cont/inc/TSortedList.h,
	  cont/inc/TVirtualCollectionProxy.h, cont/src/TArray.cxx,
	  cont/src/TArrayC.cxx, cont/src/TArrayD.cxx, cont/src/TArrayF.cxx,
	  cont/src/TArrayI.cxx, cont/src/TArrayL.cxx,
	  cont/src/TArrayL64.cxx, cont/src/TArrayS.cxx, cont/src/TBits.cxx,
	  cont/src/TBtree.cxx, cont/src/TClassTable.cxx,
	  cont/src/TClonesArray.cxx, cont/src/TCollection.cxx,
	  cont/src/TExMap.cxx, cont/src/THashList.cxx,
	  cont/src/THashTable.cxx, cont/src/TList.cxx, cont/src/TMap.cxx,
	  cont/src/TObjArray.cxx, cont/src/TObjectTable.cxx,
	  cont/src/TOrdCollection.cxx, cont/src/TRefArray.cxx,
	  cont/src/TRefTable.cxx, cont/src/TSeqCollection.cxx,
	  dcache/inc/TDCacheFile.h, dcache/src/TDCacheFile.cxx,
	  eg/inc/Hepevt.h, eg/inc/LinkDef.h, eg/inc/TAttParticle.h,
	  eg/inc/TDatabasePDG.h, eg/inc/TDecayChannel.h,
	  eg/inc/TGenerator.h, eg/inc/TParticle.h,
	  eg/inc/TParticleClassPDG.h, eg/inc/TParticlePDG.h,
	  eg/inc/TPrimary.h, eg/inc/TVirtualMCDecayer.h, eg/inc/cfortran.h,
	  eg/src/TAttParticle.cxx, eg/src/TDatabasePDG.cxx,
	  eg/src/TDecayChannel.cxx, eg/src/TGenerator.cxx,
	  eg/src/TParticle.cxx, eg/src/TParticleClassPDG.cxx,
	  eg/src/TParticlePDG.cxx, eg/src/TPrimary.cxx,
	  eg/src/TVirtualMCDecayer.cxx, fftw/inc/LinkDef.h,
	  fftw/inc/TFFTComplex.h, fftw/inc/TFFTComplexReal.h,
	  fftw/inc/TFFTReal.h, fftw/inc/TFFTRealComplex.h,
	  fftw/src/TFFTComplex.cxx, fftw/src/TFFTComplexReal.cxx,
	  fftw/src/TFFTReal.cxx, fftw/src/TFFTRealComplex.cxx,
	  fitpanel/inc/LinkDef.h, fitpanel/inc/TFitEditor.h,
	  fitpanel/inc/TFitParametersDialog.h, fitpanel/src/TFitEditor.cxx,
	  fitpanel/src/TFitParametersDialog.cxx, foam/inc/TFoam.h,
	  foam/inc/TFoamCell.h, foam/inc/TFoamIntegrand.h,
	  foam/inc/TFoamMaxwt.h, foam/inc/TFoamVect.h, foam/src/TFoam.cxx,
	  foam/src/TFoamCell.cxx, foam/src/TFoamIntegrand.cxx,
	  foam/src/TFoamMaxwt.cxx, foam/src/TFoamVect.cxx,
	  fumili/inc/LinkDef.h, fumili/inc/TFumili.h,
	  fumili/src/TFumili.cxx, g3d/inc/LinkDef.h, g3d/inc/TAxis3D.h,
	  g3d/inc/TBRIK.h, g3d/inc/TCONE.h, g3d/inc/TCONS.h,
	  g3d/inc/TCTUB.h, g3d/inc/TELTU.h, g3d/inc/TGTRA.h,
	  g3d/inc/TGeometry.h, g3d/inc/THYPE.h, g3d/inc/THelix.h,
	  g3d/inc/TMarker3DBox.h, g3d/inc/TMaterial.h, g3d/inc/TMixture.h,
	  g3d/inc/TNode.h, g3d/inc/TNodeDiv.h, g3d/inc/TPARA.h,
	  g3d/inc/TPCON.h, g3d/inc/TPGON.h, g3d/inc/TPointSet3D.h,
	  g3d/inc/TPoints3DABC.h, g3d/inc/TPolyLine3D.h,
	  g3d/inc/TPolyMarker3D.h, g3d/inc/TRotMatrix.h, g3d/inc/TSPHE.h,
	  g3d/inc/TShape.h, g3d/inc/TTRAP.h, g3d/inc/TTRD1.h,
	  g3d/inc/TTRD2.h, g3d/inc/TTUBE.h, g3d/inc/TTUBS.h,
	  g3d/inc/TView3D.h, g3d/inc/TXTRU.h, g3d/inc/X3DBuffer.h,
	  g3d/inc/X3DDefs.h, g3d/src/TAxis3D.cxx, g3d/src/TBRIK.cxx,
	  g3d/src/TCONE.cxx, g3d/src/TCONS.cxx, g3d/src/TCTUB.cxx,
	  g3d/src/TELTU.cxx, g3d/src/TGTRA.cxx, g3d/src/TGeometry.cxx,
	  g3d/src/THYPE.cxx, g3d/src/THelix.cxx, g3d/src/TMarker3DBox.cxx,
	  g3d/src/TMaterial.cxx, g3d/src/TMixture.cxx, g3d/src/TNode.cxx,
	  g3d/src/TNodeDiv.cxx, g3d/src/TPARA.cxx, g3d/src/TPCON.cxx,
	  g3d/src/TPGON.cxx, g3d/src/TPointSet3D.cxx,
	  g3d/src/TPoints3DABC.cxx, g3d/src/TPolyLine3D.cxx,
	  g3d/src/TPolyMarker3D.cxx, g3d/src/TRotMatrix.cxx,
	  g3d/src/TSPHE.cxx, g3d/src/TShape.cxx, g3d/src/TTRAP.cxx,
	  g3d/src/TTRD1.cxx, g3d/src/TTRD2.cxx, g3d/src/TTUBE.cxx,
	  g3d/src/TTUBS.cxx, g3d/src/TView3D.cxx, g3d/src/TXTRU.cxx,
	  g4root/inc/LinkDef.h, g4root/inc/TG4RootDetectorConstruction.h,
	  g4root/inc/TG4RootNavMgr.h, g4root/inc/TG4RootNavigator.h,
	  g4root/inc/TG4RootSolid.h,
	  g4root/src/TG4RootDetectorConstruction.cxx,
	  g4root/src/TG4RootNavMgr.cxx, g4root/src/TG4RootNavigator.cxx,
	  g4root/src/TG4RootSolid.cxx, gdml/ROOTwriter.py,
	  gdml/inc/LinkDef.h, gdml/inc/TGDMLParse.h,
	  gdml/src/TGDMLParse.cxx, gdml/writer.py, ged/inc/HelpSMText.h,
	  ged/inc/LinkDef.h, ged/inc/TArrowEditor.h,
	  ged/inc/TAttFillEditor.h, ged/inc/TAttLineEditor.h,
	  ged/inc/TAttMarkerEditor.h, ged/inc/TAttTextEditor.h,
	  ged/inc/TAxisEditor.h, ged/inc/TCurlyArcEditor.h,
	  ged/inc/TCurlyLineEditor.h, ged/inc/TF1Editor.h,
	  ged/inc/TFunctionParametersDialog.h, ged/inc/TGedEditor.h,
	  ged/inc/TGedFrame.h, ged/inc/TGedMarkerSelect.h,
	  ged/inc/TGedPatternSelect.h, ged/inc/TGraphEditor.h,
	  ged/inc/TH1Editor.h, ged/inc/TH2Editor.h, ged/inc/TLineEditor.h,
	  ged/inc/TStyleDialog.h, ged/inc/TStyleManager.h,
	  ged/inc/TStylePreview.h, ged/src/HelpSMText.cxx,
	  ged/src/TArrowEditor.cxx, ged/src/TAttFillEditor.cxx,
	  ged/src/TAttLineEditor.cxx, ged/src/TAttMarkerEditor.cxx,
	  ged/src/TAttTextEditor.cxx, ged/src/TAxisEditor.cxx,
	  ged/src/TCurlyArcEditor.cxx, ged/src/TCurlyLineEditor.cxx,
	  ged/src/TF1Editor.cxx, ged/src/TFunctionParametersDialog.cxx,
	  ged/src/TGedEditor.cxx, ged/src/TGedFrame.cxx,
	  ged/src/TGedMarkerSelect.cxx, ged/src/TGedPatternSelect.cxx,
	  ged/src/TGraphEditor.cxx, ged/src/TLineEditor.cxx,
	  ged/src/TStyleDialog.cxx, ged/src/TStyleManager.cxx,
	  ged/src/TStylePreview.cxx, geom/inc/LinkDef1.h,
	  geom/inc/LinkDef2.h, geom/inc/TGeoArb8.h, geom/inc/TGeoAtt.h,
	  geom/inc/TGeoBBox.h, geom/inc/TGeoBoolNode.h,
	  geom/inc/TGeoBuilder.h, geom/inc/TGeoCache.h,
	  geom/inc/TGeoCompositeShape.h, geom/inc/TGeoCone.h,
	  geom/inc/TGeoElement.h, geom/inc/TGeoEltu.h,
	  geom/inc/TGeoHalfSpace.h, geom/inc/TGeoHelix.h,
	  geom/inc/TGeoHype.h, geom/inc/TGeoManager.h,
	  geom/inc/TGeoMaterial.h, geom/inc/TGeoMatrix.h,
	  geom/inc/TGeoMedium.h, geom/inc/TGeoNavigator.h,
	  geom/inc/TGeoNode.h, geom/inc/TGeoPara.h,
	  geom/inc/TGeoParaboloid.h, geom/inc/TGeoPatternFinder.h,
	  geom/inc/TGeoPcon.h, geom/inc/TGeoPgon.h,
	  geom/inc/TGeoPhysicalNode.h, geom/inc/TGeoPolygon.h,
	  geom/inc/TGeoScaledShape.h, geom/inc/TGeoShape.h,
	  geom/inc/TGeoShapeAssembly.h, geom/inc/TGeoSphere.h,
	  geom/inc/TGeoTorus.h, geom/inc/TGeoTrd1.h, geom/inc/TGeoTrd2.h,
	  geom/inc/TGeoTube.h, geom/inc/TGeoVolume.h,
	  geom/inc/TGeoVoxelFinder.h, geom/inc/TGeoXtru.h,
	  geom/inc/TVirtualGeoPainter.h, geom/inc/TVirtualGeoTrack.h,
	  geom/src/TGeoArb8.cxx, geom/src/TGeoAtt.cxx,
	  geom/src/TGeoBBox.cxx, geom/src/TGeoBoolNode.cxx,
	  geom/src/TGeoBuilder.cxx, geom/src/TGeoCache.cxx,
	  geom/src/TGeoCompositeShape.cxx, geom/src/TGeoCone.cxx,
	  geom/src/TGeoElement.cxx, geom/src/TGeoEltu.cxx,
	  geom/src/TGeoHalfSpace.cxx, geom/src/TGeoHelix.cxx,
	  geom/src/TGeoHype.cxx, geom/src/TGeoManager.cxx,
	  geom/src/TGeoMaterial.cxx, geom/src/TGeoMatrix.cxx,
	  geom/src/TGeoMedium.cxx, geom/src/TGeoNavigator.cxx,
	  geom/src/TGeoNode.cxx, geom/src/TGeoPara.cxx,
	  geom/src/TGeoParaboloid.cxx, geom/src/TGeoPatternFinder.cxx,
	  geom/src/TGeoPcon.cxx, geom/src/TGeoPgon.cxx,
	  geom/src/TGeoPhysicalNode.cxx, geom/src/TGeoPolygon.cxx,
	  geom/src/TGeoScaledShape.cxx, geom/src/TGeoShape.cxx,
	  geom/src/TGeoShapeAssembly.cxx, geom/src/TGeoSphere.cxx,
	  geom/src/TGeoTorus.cxx, geom/src/TGeoTrd1.cxx,
	  geom/src/TGeoTrd2.cxx, geom/src/TGeoTube.cxx,
	  geom/src/TGeoVolume.cxx, geom/src/TGeoVoxelFinder.cxx,
	  geom/src/TGeoXtru.cxx, geom/src/TVirtualGeoPainter.cxx,
	  geom/src/TVirtualGeoTrack.cxx, geombuilder/inc/LinkDef.h,
	  geombuilder/inc/TGeoBBoxEditor.h,
	  geombuilder/inc/TGeoConeEditor.h,
	  geombuilder/inc/TGeoEltuEditor.h, geombuilder/inc/TGeoGedFrame.h,
	  geombuilder/inc/TGeoHypeEditor.h,
	  geombuilder/inc/TGeoManagerEditor.h,
	  geombuilder/inc/TGeoMaterialEditor.h,
	  geombuilder/inc/TGeoMatrixEditor.h,
	  geombuilder/inc/TGeoMediumEditor.h,
	  geombuilder/inc/TGeoNodeEditor.h,
	  geombuilder/inc/TGeoParaEditor.h,
	  geombuilder/inc/TGeoPconEditor.h,
	  geombuilder/inc/TGeoPgonEditor.h,
	  geombuilder/inc/TGeoSphereEditor.h,
	  geombuilder/inc/TGeoTabManager.h,
	  geombuilder/inc/TGeoTorusEditor.h,
	  geombuilder/inc/TGeoTrapEditor.h,
	  geombuilder/inc/TGeoTrd1Editor.h,
	  geombuilder/inc/TGeoTrd2Editor.h,
	  geombuilder/inc/TGeoTubeEditor.h,
	  geombuilder/inc/TGeoVolumeEditor.h,
	  geombuilder/src/TGeoBBoxEditor.cxx,
	  geombuilder/src/TGeoConeEditor.cxx,
	  geombuilder/src/TGeoEltuEditor.cxx,
	  geombuilder/src/TGeoGedFrame.cxx,
	  geombuilder/src/TGeoHypeEditor.cxx,
	  geombuilder/src/TGeoManagerEditor.cxx,
	  geombuilder/src/TGeoMaterialEditor.cxx,
	  geombuilder/src/TGeoMatrixEditor.cxx,
	  geombuilder/src/TGeoMediumEditor.cxx,
	  geombuilder/src/TGeoNodeEditor.cxx,
	  geombuilder/src/TGeoParaEditor.cxx,
	  geombuilder/src/TGeoPconEditor.cxx,
	  geombuilder/src/TGeoPgonEditor.cxx,
	  geombuilder/src/TGeoSphereEditor.cxx,
	  geombuilder/src/TGeoTabManager.cxx,
	  geombuilder/src/TGeoTorusEditor.cxx,
	  geombuilder/src/TGeoTrapEditor.cxx,
	  geombuilder/src/TGeoTrd1Editor.cxx,
	  geombuilder/src/TGeoTrd2Editor.cxx,
	  geombuilder/src/TGeoTubeEditor.cxx,
	  geombuilder/src/TGeoVolumeEditor.cxx,
	  geompainter/inc/TGeoChecker.h, geompainter/inc/TGeoOverlap.h,
	  geompainter/inc/TGeoTrack.h, geompainter/src/TGeoChecker.cxx,
	  geompainter/src/TGeoOverlap.cxx, geompainter/src/TGeoPainter.cxx,
	  geompainter/src/TGeoTrack.cxx, gfal/inc/LinkDef.h,
	  gfal/inc/TGFALFile.h, gfal/src/TGFALFile.cxx, gl/inc/CsgOps.h,
	  gl/inc/LinkDef.h, gl/inc/TArcBall.h, gl/inc/TGLAxis.h,
	  gl/inc/TGLBoundingBox.h, gl/inc/TGLCamera.h, gl/inc/TGLClip.h,
	  gl/inc/TGLContext.h, gl/inc/TGLContextPrivate.h,
	  gl/inc/TGLCylinder.h, gl/inc/TGLFaceSet.h, gl/inc/TGLFormat.h,
	  gl/inc/TGLIncludes.h, gl/inc/TGLLegoPainter.h,
	  gl/inc/TGLLogicalShape.h, gl/inc/TGLManip.h,
	  gl/inc/TGLManipSet.h, gl/inc/TGLObject.h,
	  gl/inc/TGLOrthoCamera.h, gl/inc/TGLOutput.h, gl/inc/TGLOverlay.h,
	  gl/inc/TGLPShapeObj.h, gl/inc/TGLPShapeObjEditor.h,
	  gl/inc/TGLParametric.h, gl/inc/TGLParametricEquationGL.h,
	  gl/inc/TGLPerspectiveCamera.h, gl/inc/TGLPhysicalShape.h,
	  gl/inc/TGLPlotPainter.h, gl/inc/TGLPolyLine.h,
	  gl/inc/TGLPolyMarker.h, gl/inc/TGLQuadric.h, gl/inc/TGLRnrCtx.h,
	  gl/inc/TGLRotateManip.h, gl/inc/TGLSAFrame.h,
	  gl/inc/TGLSAViewer.h, gl/inc/TGLScaleManip.h, gl/inc/TGLScene.h,
	  gl/inc/TGLSceneBase.h, gl/inc/TGLSceneInfo.h,
	  gl/inc/TGLScenePad.h, gl/inc/TGLSelectBuffer.h,
	  gl/inc/TGLSphere.h, gl/inc/TGLStopwatch.h, gl/inc/TGLText.h,
	  gl/inc/TGLTransManip.h, gl/inc/TGLUtil.h, gl/inc/TGLViewer.h,
	  gl/inc/TGLViewerBase.h, gl/inc/TGLWidget.h,
	  gl/inc/TPointSet3DGL.h, gl/inc/TX11GL.h, gl/src/CsgOps.cxx,
	  gl/src/TArcBall.cxx, gl/src/TF2GL.cxx, gl/src/TGLAxis.cxx,
	  gl/src/TGLBoundingBox.cxx, gl/src/TGLCamera.cxx,
	  gl/src/TGLClip.cxx, gl/src/TGLClipSetEditor.cxx,
	  gl/src/TGLContext.cxx, gl/src/TGLContextPrivate.cxx,
	  gl/src/TGLCylinder.cxx, gl/src/TGLFaceSet.cxx,
	  gl/src/TGLFormat.cxx, gl/src/TGLLegoPainter.cxx,
	  gl/src/TGLLogicalShape.cxx, gl/src/TGLManip.cxx,
	  gl/src/TGLManipSet.cxx, gl/src/TGLObject.cxx,
	  gl/src/TGLOrthoCamera.cxx, gl/src/TGLOutput.cxx,
	  gl/src/TGLOverlay.cxx, gl/src/TGLPShapeObjEditor.cxx,
	  gl/src/TGLParametric.cxx, gl/src/TGLParametricEquationGL.cxx,
	  gl/src/TGLPerspectiveCamera.cxx, gl/src/TGLPhysicalShape.cxx,
	  gl/src/TGLPlotPainter.cxx, gl/src/TGLPolyLine.cxx,
	  gl/src/TGLPolyMarker.cxx, gl/src/TGLQuadric.cxx,
	  gl/src/TGLRnrCtx.cxx, gl/src/TGLRotateManip.cxx,
	  gl/src/TGLSAFrame.cxx, gl/src/TGLSAViewer.cxx,
	  gl/src/TGLScaleManip.cxx, gl/src/TGLScene.cxx,
	  gl/src/TGLSceneBase.cxx, gl/src/TGLSceneInfo.cxx,
	  gl/src/TGLScenePad.cxx, gl/src/TGLSelectBuffer.cxx,
	  gl/src/TGLSelectRecord.cxx, gl/src/TGLSphere.cxx,
	  gl/src/TGLStopwatch.cxx, gl/src/TGLText.cxx,
	  gl/src/TGLTransManip.cxx, gl/src/TGLUtil.cxx,
	  gl/src/TGLViewer.cxx, gl/src/TGLViewerBase.cxx,
	  gl/src/TGLWidget.cxx, gl/src/TH2GL.cxx, gl/src/TPointSet3DGL.cxx,
	  gl/src/TX11GL.cxx, globusauth/src/GlobusAuth.cxx,
	  gpad/inc/LinkDef.h, gpad/inc/TAttCanvas.h, gpad/inc/TButton.h,
	  gpad/inc/TCanvas.h, gpad/inc/TClassTree.h,
	  gpad/inc/TColorWheel.h, gpad/inc/TControlBar.h,
	  gpad/inc/TCreatePrimitives.h, gpad/inc/TDialogCanvas.h,
	  gpad/inc/TGroupButton.h, gpad/inc/TInspectCanvas.h,
	  gpad/inc/TPad.h, gpad/inc/TPaveClass.h, gpad/inc/TSlider.h,
	  gpad/inc/TSliderBox.h, gpad/inc/TView.h, gpad/inc/TViewer3DPad.h,
	  gpad/src/TAttCanvas.cxx, gpad/src/TButton.cxx,
	  gpad/src/TCanvas.cxx, gpad/src/TClassTree.cxx,
	  gpad/src/TColorWheel.cxx, gpad/src/TControlBar.cxx,
	  gpad/src/TCreatePrimitives.cxx, gpad/src/TDialogCanvas.cxx,
	  gpad/src/TGroupButton.cxx, gpad/src/TInspectCanvas.cxx,
	  gpad/src/TPad.cxx, gpad/src/TPaveClass.cxx, gpad/src/TSlider.cxx,
	  gpad/src/TSliderBox.cxx, gpad/src/TView.cxx,
	  gpad/src/TViewer3DPad.cxx, graf/inc/LinkDef1.h,
	  graf/inc/LinkDef2.h, graf/inc/TArc.h, graf/inc/TArrow.h,
	  graf/inc/TAttImage.h, graf/inc/TBox.h, graf/inc/TCrown.h,
	  graf/inc/TCurlyArc.h, graf/inc/TCurlyLine.h, graf/inc/TCutG.h,
	  graf/inc/TDiamond.h, graf/inc/TEllipse.h, graf/inc/TFrame.h,
	  graf/inc/TGaxis.h, graf/inc/TGraph.h,
	  graf/inc/TGraphAsymmErrors.h, graf/inc/TGraphBentErrors.h,
	  graf/inc/TGraphErrors.h, graf/inc/TGraphPolar.h,
	  graf/inc/TGraphQQ.h, graf/inc/TGraphSmooth.h, graf/inc/TImage.h,
	  graf/inc/TImagePlugin.h, graf/inc/TLatex.h, graf/inc/TLegend.h,
	  graf/inc/TLegendEntry.h, graf/inc/TLine.h, graf/inc/TLink.h,
	  graf/inc/TMarker.h, graf/inc/TMultiGraph.h, graf/inc/TPave.h,
	  graf/inc/TPaveLabel.h, graf/inc/TPaveStats.h,
	  graf/inc/TPaveText.h, graf/inc/TPavesText.h, graf/inc/TPie.h,
	  graf/inc/TPoints.h, graf/inc/TPolyLine.h, graf/inc/TSpline.h,
	  graf/inc/TTF.h, graf/inc/TText.h, graf/inc/TWbox.h,
	  graf/src/TArc.cxx, graf/src/TArrow.cxx, graf/src/TAttImage.cxx,
	  graf/src/TBox.cxx, graf/src/TCrown.cxx, graf/src/TCurlyArc.cxx,
	  graf/src/TCurlyLine.cxx, graf/src/TCutG.cxx,
	  graf/src/TDiamond.cxx, graf/src/TEllipse.cxx,
	  graf/src/TFrame.cxx, graf/src/TGaxis.cxx, graf/src/TGraph.cxx,
	  graf/src/TGraphAsymmErrors.cxx, graf/src/TGraphBentErrors.cxx,
	  graf/src/TGraphErrors.cxx, graf/src/TGraphPolar.cxx,
	  graf/src/TGraphQQ.cxx, graf/src/TGraphSmooth.cxx,
	  graf/src/TImage.cxx, graf/src/TLatex.cxx, graf/src/TLegend.cxx,
	  graf/src/TLegendEntry.cxx, graf/src/TLine.cxx,
	  graf/src/TLink.cxx, graf/src/TMarker.cxx,
	  graf/src/TMultiGraph.cxx, graf/src/TPave.cxx,
	  graf/src/TPaveLabel.cxx, graf/src/TPaveStats.cxx,
	  graf/src/TPaveText.cxx, graf/src/TPavesText.cxx,
	  graf/src/TPie.cxx, graf/src/TPolyLine.cxx, graf/src/TSpline.cxx,
	  graf/src/TTF.cxx, graf/src/TText.cxx, graf/src/TWbox.cxx,
	  gui/inc/HelpText.h, gui/inc/LinkDef1.h, gui/inc/LinkDef2.h,
	  gui/inc/LinkDef3.h, gui/inc/TG3DLine.h, gui/inc/TGApplication.h,
	  gui/inc/TGButton.h, gui/inc/TGButtonGroup.h, gui/inc/TGCanvas.h,
	  gui/inc/TGClient.h, gui/inc/TGColorDialog.h,
	  gui/inc/TGColorSelect.h, gui/inc/TGComboBox.h,
	  gui/inc/TGDNDManager.h, gui/inc/TGDimension.h,
	  gui/inc/TGDockableFrame.h, gui/inc/TGDoubleSlider.h,
	  gui/inc/TGFSComboBox.h, gui/inc/TGFSContainer.h,
	  gui/inc/TGFileDialog.h, gui/inc/TGFont.h, gui/inc/TGFontDialog.h,
	  gui/inc/TGFrame.h, gui/inc/TGGC.h, gui/inc/TGIcon.h,
	  gui/inc/TGIdleHandler.h, gui/inc/TGImageMap.h,
	  gui/inc/TGInputDialog.h, gui/inc/TGLabel.h, gui/inc/TGLayout.h,
	  gui/inc/TGListBox.h, gui/inc/TGListTree.h, gui/inc/TGListView.h,
	  gui/inc/TGMdi.h, gui/inc/TGMdiDecorFrame.h, gui/inc/TGMdiFrame.h,
	  gui/inc/TGMdiMainFrame.h, gui/inc/TGMdiMenu.h, gui/inc/TGMenu.h,
	  gui/inc/TGMimeTypes.h, gui/inc/TGMsgBox.h,
	  gui/inc/TGNumberEntry.h, gui/inc/TGObject.h,
	  gui/inc/TGPasswdDialog.h, gui/inc/TGPicture.h,
	  gui/inc/TGProgressBar.h, gui/inc/TGRedirectOutputGuard.h,
	  gui/inc/TGResourcePool.h, gui/inc/TGScrollBar.h,
	  gui/inc/TGShutter.h, gui/inc/TGSlider.h, gui/inc/TGSpeedo.h,
	  gui/inc/TGSplitter.h, gui/inc/TGStatusBar.h, gui/inc/TGString.h,
	  gui/inc/TGTab.h, gui/inc/TGTableLayout.h, gui/inc/TGText.h,
	  gui/inc/TGTextBuffer.h, gui/inc/TGTextEdit.h,
	  gui/inc/TGTextEditDialogs.h, gui/inc/TGTextEditor.h,
	  gui/inc/TGTextEntry.h, gui/inc/TGTextView.h, gui/inc/TGToolBar.h,
	  gui/inc/TGToolTip.h, gui/inc/TGTripleSlider.h, gui/inc/TGView.h,
	  gui/inc/TGWidget.h, gui/inc/TGWindow.h, gui/inc/TGXYLayout.h,
	  gui/inc/TGuiBuilder.h, gui/inc/TRootApplication.h,
	  gui/inc/TRootBrowser.h, gui/inc/TRootCanvas.h,
	  gui/inc/TRootContextMenu.h, gui/inc/TRootControlBar.h,
	  gui/inc/TRootDialog.h, gui/inc/TRootEmbeddedCanvas.h,
	  gui/inc/TRootGuiFactory.h, gui/inc/TRootHelpDialog.h,
	  gui/inc/WidgetMessageTypes.h, gui/src/HelpText.cxx,
	  gui/src/TG3DLine.cxx, gui/src/TGApplication.cxx,
	  gui/src/TGButton.cxx, gui/src/TGButtonGroup.cxx,
	  gui/src/TGCanvas.cxx, gui/src/TGClient.cxx,
	  gui/src/TGColorDialog.cxx, gui/src/TGColorSelect.cxx,
	  gui/src/TGComboBox.cxx, gui/src/TGDNDManager.cxx,
	  gui/src/TGDimension.cxx, gui/src/TGDockableFrame.cxx,
	  gui/src/TGDoubleSlider.cxx, gui/src/TGFSComboBox.cxx,
	  gui/src/TGFSContainer.cxx, gui/src/TGFileDialog.cxx,
	  gui/src/TGFont.cxx, gui/src/TGFontDialog.cxx,
	  gui/src/TGFrame.cxx, gui/src/TGGC.cxx, gui/src/TGIcon.cxx,
	  gui/src/TGIdleHandler.cxx, gui/src/TGImageMap.cxx,
	  gui/src/TGInputDialog.cxx, gui/src/TGLabel.cxx,
	  gui/src/TGLayout.cxx, gui/src/TGListBox.cxx,
	  gui/src/TGListTree.cxx, gui/src/TGListView.cxx,
	  gui/src/TGMdiDecorFrame.cxx, gui/src/TGMdiFrame.cxx,
	  gui/src/TGMdiMainFrame.cxx, gui/src/TGMdiMenu.cxx,
	  gui/src/TGMenu.cxx, gui/src/TGMimeTypes.cxx,
	  gui/src/TGMsgBox.cxx, gui/src/TGNumberEntry.cxx,
	  gui/src/TGObject.cxx, gui/src/TGPasswdDialog.cxx,
	  gui/src/TGPicture.cxx, gui/src/TGProgressBar.cxx,
	  gui/src/TGRedirectOutputGuard.cxx, gui/src/TGResourcePool.cxx,
	  gui/src/TGScrollBar.cxx, gui/src/TGShutter.cxx,
	  gui/src/TGSlider.cxx, gui/src/TGSpeedo.cxx,
	  gui/src/TGSplitter.cxx, gui/src/TGStatusBar.cxx,
	  gui/src/TGString.cxx, gui/src/TGTab.cxx,
	  gui/src/TGTableLayout.cxx, gui/src/TGText.cxx,
	  gui/src/TGTextBuffer.cxx, gui/src/TGTextEdit.cxx,
	  gui/src/TGTextEditDialogs.cxx, gui/src/TGTextEditor.cxx,
	  gui/src/TGTextEntry.cxx, gui/src/TGTextView.cxx,
	  gui/src/TGToolBar.cxx, gui/src/TGToolTip.cxx,
	  gui/src/TGTripleSlider.cxx, gui/src/TGView.cxx,
	  gui/src/TGWindow.cxx, gui/src/TGXYLayout.cxx,
	  gui/src/TGuiBuilder.cxx, gui/src/TRootApplication.cxx,
	  gui/src/TRootBrowser.cxx, gui/src/TRootCanvas.cxx,
	  gui/src/TRootContextMenu.cxx, gui/src/TRootControlBar.cxx,
	  gui/src/TRootDialog.cxx, gui/src/TRootEmbeddedCanvas.cxx,
	  gui/src/TRootGuiFactory.cxx, gui/src/TRootHelpDialog.cxx,
	  guibuilder/inc/LinkDef.h, guibuilder/inc/TGuiBldDragManager.h,
	  guibuilder/inc/TGuiBldEditor.h,
	  guibuilder/inc/TGuiBldHintsButton.h,
	  guibuilder/inc/TGuiBldHintsEditor.h,
	  guibuilder/inc/TGuiBldNameFrame.h,
	  guibuilder/inc/TRootGuiBuilder.h,
	  guibuilder/src/TGuiBldDragManager.cxx,
	  guibuilder/src/TGuiBldEditor.cxx,
	  guibuilder/src/TGuiBldHintsButton.cxx,
	  guibuilder/src/TGuiBldHintsEditor.cxx,
	  guibuilder/src/TGuiBldNameFrame.cxx,
	  guibuilder/src/TRootGuiBuilder.cxx, hbook/inc/THbookBranch.h,
	  hbook/inc/THbookFile.h, hbook/inc/THbookKey.h,
	  hbook/inc/THbookTree.h, hbook/src/THbookBranch.cxx,
	  hbook/src/THbookFile.cxx, hbook/src/THbookKey.cxx,
	  hbook/src/THbookTree.cxx, hist/inc/Foption.h, hist/inc/LinkDef.h,
	  hist/inc/TAxis.h, hist/inc/TBinomialEfficiencyFitter.h,
	  hist/inc/TConfidenceLevel.h, hist/inc/TF1.h, hist/inc/TF12.h,
	  hist/inc/TF2.h, hist/inc/TF3.h, hist/inc/TFormula.h,
	  hist/inc/TFormulaPrimitive.h, hist/inc/TFractionFitter.h,
	  hist/inc/TGraph2D.h, hist/inc/TGraph2DErrors.h,
	  hist/inc/TGraphDelaunay.h, hist/inc/TH1.h, hist/inc/TH1C.h,
	  hist/inc/TH1D.h, hist/inc/TH1F.h, hist/inc/TH1I.h,
	  hist/inc/TH1K.h, hist/inc/TH1S.h, hist/inc/TH2.h,
	  hist/inc/TH2C.h, hist/inc/TH2D.h, hist/inc/TH2F.h,
	  hist/inc/TH2I.h, hist/inc/TH2S.h, hist/inc/TH3.h,
	  hist/inc/TH3C.h, hist/inc/TH3D.h, hist/inc/TH3F.h,
	  hist/inc/TH3I.h, hist/inc/TH3S.h, hist/inc/THLimitsFinder.h,
	  hist/inc/THStack.h, hist/inc/THnSparse.h, hist/inc/TLimit.h,
	  hist/inc/TLimitDataSource.h, hist/inc/TMultiDimFit.h,
	  hist/inc/TPolyMarker.h, hist/inc/TPrincipal.h,
	  hist/inc/TProfile.h, hist/inc/TProfile2D.h,
	  hist/inc/TProfile3D.h, hist/inc/TVirtualHistPainter.h,
	  hist/src/Haxis.cxx, hist/src/TAxis.cxx,
	  hist/src/TBinomialEfficiencyFitter.cxx,
	  hist/src/TConfidenceLevel.cxx, hist/src/TF1.cxx,
	  hist/src/TF12.cxx, hist/src/TF1Helper.cxx, hist/src/TF1Helper.h,
	  hist/src/TF2.cxx, hist/src/TF3.cxx, hist/src/TFormula.cxx,
	  hist/src/TFormulaPrimitive.cxx, hist/src/TFractionFitter.cxx,
	  hist/src/TGraph2D.cxx, hist/src/TGraph2DErrors.cxx,
	  hist/src/TGraphDelaunay.cxx, hist/src/TH1.cxx, hist/src/TH1K.cxx,
	  hist/src/TH2.cxx, hist/src/TH3.cxx, hist/src/THLimitsFinder.cxx,
	  hist/src/THStack.cxx, hist/src/THnSparse.cxx,
	  hist/src/TLimit.cxx, hist/src/TLimitDataSource.cxx,
	  hist/src/TMultiDimFit.cxx, hist/src/TPolyMarker.cxx,
	  hist/src/TPrincipal.cxx, hist/src/TProfile.cxx,
	  hist/src/TProfile2D.cxx, hist/src/TProfile3D.cxx,
	  hist/src/TVirtualHistPainter.cxx, histpainter/inc/Hoption.h,
	  histpainter/inc/Hparam.h, histpainter/inc/LinkDef.h,
	  histpainter/inc/TGraphPainter.h, histpainter/inc/THistPainter.h,
	  histpainter/inc/TLego.h, histpainter/inc/TPainter3dAlgorithms.h,
	  histpainter/inc/TPaletteAxis.h,
	  histpainter/src/TGraphPainter.cxx,
	  histpainter/src/THistPainter.cxx,
	  histpainter/src/TPainter3dAlgorithms.cxx,
	  histpainter/src/TPaletteAxis.cxx, html/inc/LinkDef.h,
	  html/inc/TClassDocOutput.h, html/inc/TDocDirective.h,
	  html/inc/TDocInfo.h, html/inc/TDocOutput.h,
	  html/inc/TDocParser.h, html/inc/THtml.h,
	  html/src/TClassDocOutput.cxx, html/src/TDocInfo.cxx,
	  html/src/TDocOutput.cxx, html/src/TDocParser.cxx,
	  html/src/THtml.cxx, io/inc/LinkDef.h, io/inc/TArchiveFile.h,
	  io/inc/TBufferFile.h, io/inc/TCollectionProxyFactory.h,
	  io/inc/TContainerConverters.h, io/inc/TDirectoryFile.h,
	  io/inc/TEmulatedCollectionProxy.h, io/inc/TEmulatedMapProxy.h,
	  io/inc/TFile.h, io/inc/TFileCacheRead.h,
	  io/inc/TFileCacheWrite.h, io/inc/TFree.h,
	  io/inc/TGenCollectionProxy.h, io/inc/TGenCollectionStreamer.h,
	  io/inc/TKey.h, io/inc/TKeyMapFile.h, io/inc/TMapFile.h,
	  io/inc/TStreamerInfo.h, io/inc/TZIPFile.h,
	  io/src/TArchiveFile.cxx, io/src/TBufferFile.cxx,
	  io/src/TCollectionProxyFactory.cxx,
	  io/src/TContainerConverters.cxx, io/src/TDirectoryFile.cxx,
	  io/src/TEmulatedCollectionProxy.cxx,
	  io/src/TEmulatedMapProxy.cxx, io/src/TFile.cxx,
	  io/src/TFileCacheRead.cxx, io/src/TFileCacheWrite.cxx,
	  io/src/TFree.cxx, io/src/TGenCollectionProxy.cxx,
	  io/src/TGenCollectionStreamer.cxx, io/src/TKey.cxx,
	  io/src/TKeyMapFile.cxx, io/src/TMapFile.cxx,
	  io/src/TStreamerInfo.cxx, io/src/TStreamerInfoReadBuffer.cxx,
	  io/src/TStreamerInfoWriteBuffer.cxx, io/src/TZIPFile.cxx,
	  krb5auth/inc/Krb5Auth.h, krb5auth/inc/TKSocket.h,
	  krb5auth/src/Krb5Auth.cxx, krb5auth/src/TKSocket.cxx,
	  ldap/inc/CintLDAP.h, ldap/inc/TLDAPAttribute.h,
	  ldap/inc/TLDAPEntry.h, ldap/inc/TLDAPResult.h,
	  ldap/inc/TLDAPServer.h, ldap/src/TLDAPAttribute.cxx,
	  ldap/src/TLDAPEntry.cxx, ldap/src/TLDAPResult.cxx,
	  ldap/src/TLDAPServer.cxx, main/src/cppmain.cxx,
	  main/src/h2root.cxx, main/src/pmain.cxx, main/src/rmain.cxx,
	  main/src/roots.cxx, main/src/ssh2rpd.cxx, math/inc/LinkDef.h,
	  math/inc/Math/ParamFunctor.h, math/inc/TComplex.h,
	  math/inc/TMath.h, math/inc/TRandom.h, math/inc/TRandom1.h,
	  math/inc/TRandom2.h, math/inc/TRandom3.h, math/src/TComplex.cxx,
	  math/src/TMath.cxx, math/src/TRandom.cxx, math/src/TRandom1.cxx,
	  math/src/TRandom2.cxx, math/src/TRandom3.cxx,
	  mathcore/build/Makefile.am, mathcore/build/doc_Makefile.am,
	  mathcore/build/inc_Makefile.am,
	  mathcore/build/inc_Math_GenVector_Makefile.am,
	  mathcore/build/inc_Math_Makefile.am,
	  mathcore/build/src_Makefile.am, mathcore/build/test_Makefile.am,
	  mathcore/inc/Math/AxisAngle.h, mathcore/inc/Math/Boost.h,
	  mathcore/inc/Math/BoostX.h, mathcore/inc/Math/BoostY.h,
	  mathcore/inc/Math/BoostZ.h, mathcore/inc/Math/Cartesian2D.h,
	  mathcore/inc/Math/Cartesian3D.h,
	  mathcore/inc/Math/Cylindrical3D.h,
	  mathcore/inc/Math/CylindricalEta3D.h,
	  mathcore/inc/Math/DisplacementVector2D.h,
	  mathcore/inc/Math/DisplacementVector3D.h,
	  mathcore/inc/Math/DistFunc.h,
	  mathcore/inc/Math/DistFuncMathCore.h,
	  mathcore/inc/Math/EulerAngles.h, mathcore/inc/Math/Functor.h,
	  mathcore/inc/Math/GenVector/3DConversions.h,
	  mathcore/inc/Math/GenVector/3DDistances.h,
	  mathcore/inc/Math/GenVector/AxisAngle.h,
	  mathcore/inc/Math/GenVector/AxisAnglefwd.h,
	  mathcore/inc/Math/GenVector/BitReproducible.h,
	  mathcore/inc/Math/GenVector/Boost.h,
	  mathcore/inc/Math/GenVector/BoostX.h,
	  mathcore/inc/Math/GenVector/BoostXfwd.h,
	  mathcore/inc/Math/GenVector/BoostY.h,
	  mathcore/inc/Math/GenVector/BoostYfwd.h,
	  mathcore/inc/Math/GenVector/BoostZ.h,
	  mathcore/inc/Math/GenVector/BoostZfwd.h,
	  mathcore/inc/Math/GenVector/Boostfwd.h,
	  mathcore/inc/Math/GenVector/Cartesian2D.h,
	  mathcore/inc/Math/GenVector/Cartesian2Dfwd.h,
	  mathcore/inc/Math/GenVector/Cartesian3D.h,
	  mathcore/inc/Math/GenVector/Cartesian3Dfwd.h,
	  mathcore/inc/Math/GenVector/CoordinateSystemTags.h,
	  mathcore/inc/Math/GenVector/Cylindrical3D.h,
	  mathcore/inc/Math/GenVector/Cylindrical3Dfwd.h,
	  mathcore/inc/Math/GenVector/CylindricalEta3D.h,
	  mathcore/inc/Math/GenVector/CylindricalEta3Dfwd.h,
	  mathcore/inc/Math/GenVector/DisplacementVector2D.h,
	  mathcore/inc/Math/GenVector/DisplacementVector2Dfwd.h,
	  mathcore/inc/Math/GenVector/DisplacementVector3D.h,
	  mathcore/inc/Math/GenVector/DisplacementVector3Dfwd.h,
	  mathcore/inc/Math/GenVector/EulerAngles.h,
	  mathcore/inc/Math/GenVector/EulerAnglesfwd.h,
	  mathcore/inc/Math/GenVector/GenVectorIO.h,
	  mathcore/inc/Math/GenVector/GenVector_exception.h,
	  mathcore/inc/Math/GenVector/LorentzRotation.h,
	  mathcore/inc/Math/GenVector/LorentzRotationfwd.h,
	  mathcore/inc/Math/GenVector/LorentzVector.h,
	  mathcore/inc/Math/GenVector/LorentzVectorfwd.h,
	  mathcore/inc/Math/GenVector/Plane3D.h,
	  mathcore/inc/Math/GenVector/Polar2D.h,
	  mathcore/inc/Math/GenVector/Polar2Dfwd.h,
	  mathcore/inc/Math/GenVector/Polar3D.h,
	  mathcore/inc/Math/GenVector/Polar3Dfwd.h,
	  mathcore/inc/Math/GenVector/PositionVector2D.h,
	  mathcore/inc/Math/GenVector/PositionVector2Dfwd.h,
	  mathcore/inc/Math/GenVector/PositionVector3D.h,
	  mathcore/inc/Math/GenVector/PositionVector3Dfwd.h,
	  mathcore/inc/Math/GenVector/PtEtaPhiE4D.h,
	  mathcore/inc/Math/GenVector/PtEtaPhiE4Dfwd.h,
	  mathcore/inc/Math/GenVector/PtEtaPhiM4D.h,
	  mathcore/inc/Math/GenVector/PtEtaPhiM4Dfwd.h,
	  mathcore/inc/Math/GenVector/PxPyPzE4D.h,
	  mathcore/inc/Math/GenVector/PxPyPzE4Dfwd.h,
	  mathcore/inc/Math/GenVector/PxPyPzM4D.h,
	  mathcore/inc/Math/GenVector/PxPyPzM4Dfwd.h,
	  mathcore/inc/Math/GenVector/Quaternion.h,
	  mathcore/inc/Math/GenVector/Quaternionfwd.h,
	  mathcore/inc/Math/GenVector/Rotation3D.h,
	  mathcore/inc/Math/GenVector/Rotation3Dfwd.h,
	  mathcore/inc/Math/GenVector/RotationX.h,
	  mathcore/inc/Math/GenVector/RotationXfwd.h,
	  mathcore/inc/Math/GenVector/RotationY.h,
	  mathcore/inc/Math/GenVector/RotationYfwd.h,
	  mathcore/inc/Math/GenVector/RotationZ.h,
	  mathcore/inc/Math/GenVector/RotationZYX.h,
	  mathcore/inc/Math/GenVector/RotationZYXfwd.h,
	  mathcore/inc/Math/GenVector/RotationZfwd.h,
	  mathcore/inc/Math/GenVector/Transform3D.h,
	  mathcore/inc/Math/GenVector/Translation3D.h,
	  mathcore/inc/Math/GenVector/VectorUtil.h,
	  mathcore/inc/Math/GenVector/eta.h,
	  mathcore/inc/Math/GenVector/etaMax.h,
	  mathcore/inc/Math/IFunction.h, mathcore/inc/Math/IFunctionfwd.h,
	  mathcore/inc/Math/IParamFunction.h,
	  mathcore/inc/Math/IParamFunctionfwd.h,
	  mathcore/inc/Math/LinkDef.h, mathcore/inc/Math/LinkDef_Func.h,
	  mathcore/inc/Math/LinkDef_GenVector.h,
	  mathcore/inc/Math/LinkDef_GenVector32.h,
	  mathcore/inc/Math/LinkDef_Point3D.h,
	  mathcore/inc/Math/LinkDef_Rotation.h,
	  mathcore/inc/Math/LinkDef_Vector3D.h,
	  mathcore/inc/Math/LinkDef_Vector4D.h,
	  mathcore/inc/Math/LorentzRotation.h,
	  mathcore/inc/Math/LorentzVector.h, mathcore/inc/Math/Math.h,
	  mathcore/inc/Math/PdfFunc.h, mathcore/inc/Math/PdfFuncMathCore.h,
	  mathcore/inc/Math/Plane3D.h, mathcore/inc/Math/Point2D.h,
	  mathcore/inc/Math/Point2Dfwd.h, mathcore/inc/Math/Point3D.h,
	  mathcore/inc/Math/Point3Dfwd.h, mathcore/inc/Math/Polar2D.h,
	  mathcore/inc/Math/Polar3D.h,
	  mathcore/inc/Math/PositionVector2D.h,
	  mathcore/inc/Math/PositionVector3D.h,
	  mathcore/inc/Math/ProbFunc.h,
	  mathcore/inc/Math/ProbFuncMathCore.h,
	  mathcore/inc/Math/PtEtaPhiE4D.h, mathcore/inc/Math/PtEtaPhiM4D.h,
	  mathcore/inc/Math/PxPyPzE4D.h, mathcore/inc/Math/PxPyPzM4D.h,
	  mathcore/inc/Math/Quaternion.h, mathcore/inc/Math/Rotation3D.h,
	  mathcore/inc/Math/RotationX.h, mathcore/inc/Math/RotationY.h,
	  mathcore/inc/Math/RotationZ.h, mathcore/inc/Math/RotationZYX.h,
	  mathcore/inc/Math/SpecFunc.h,
	  mathcore/inc/Math/SpecFuncMathCore.h,
	  mathcore/inc/Math/Transform3D.h,
	  mathcore/inc/Math/Translation3D.h, mathcore/inc/Math/Util.h,
	  mathcore/inc/Math/Vector2D.h, mathcore/inc/Math/Vector2Dfwd.h,
	  mathcore/inc/Math/Vector3D.h, mathcore/inc/Math/Vector3Dfwd.h,
	  mathcore/inc/Math/Vector4D.h, mathcore/inc/Math/Vector4Dfwd.h,
	  mathcore/inc/Math/VectorUtil.h,
	  mathcore/inc/Math/VectorUtil_Cint.h,
	  mathcore/inc/Math/WrappedFunction.h,
	  mathcore/inc/Math/WrappedParamFunction.h,
	  mathcore/src/3DConversions.cxx, mathcore/src/3DDistances.cxx,
	  mathcore/src/AxisAngle.cxx, mathcore/src/AxisAngleXother.cxx,
	  mathcore/src/BitReproducible.cxx, mathcore/src/Boost.cxx,
	  mathcore/src/BoostX.cxx, mathcore/src/BoostY.cxx,
	  mathcore/src/BoostZ.cxx, mathcore/src/EulerAngles.cxx,
	  mathcore/src/GenVector_exception.cxx,
	  mathcore/src/LorentzRotation.cxx,
	  mathcore/src/PdfFuncMathCore.cxx, mathcore/src/Plane3D.cxx,
	  mathcore/src/ProbFuncMathCore.cxx, mathcore/src/Quaternion.cxx,
	  mathcore/src/QuaternionXaxial.cxx, mathcore/src/Rotation3D.cxx,
	  mathcore/src/Rotation3DxAxial.cxx, mathcore/src/RotationZYX.cxx,
	  mathcore/src/SpecFuncMathCore.cxx, mathcore/src/Transform3D.cxx,
	  mathcore/src/Translation3D.cxx, mathcore/src/VectorUtil.cxx,
	  mathcore/test/stress2D.cxx, mathmore/build/Makefile.am,
	  mathmore/build/doc_Makefile.am, mathmore/build/inc_Makefile.am,
	  mathmore/build/inc_Math_GenVector_Makefile.am,
	  mathmore/build/inc_Math_Makefile.am,
	  mathmore/build/src_Makefile.am, mathmore/build/test_Makefile.am,
	  mathmore/inc/Math/Chebyshev.h, mathmore/inc/Math/Derivator.h,
	  mathmore/inc/Math/DistFuncMathMore.h,
	  mathmore/inc/Math/GSLFunctionAdapter.h,
	  mathmore/inc/Math/GSLRndmEngines.h,
	  mathmore/inc/Math/GSLRootFinder.h,
	  mathmore/inc/Math/GSLRootFinderDeriv.h,
	  mathmore/inc/Math/GSLRootHelper.h,
	  mathmore/inc/Math/IntegrationTypes.h,
	  mathmore/inc/Math/Integrator.h,
	  mathmore/inc/Math/InterpolationTypes.h,
	  mathmore/inc/Math/Interpolator.h, mathmore/inc/Math/LinkDef.h,
	  mathmore/inc/Math/LinkDef_Func.h,
	  mathmore/inc/Math/LinkDef_RootFinding.h,
	  mathmore/inc/Math/LinkDef_SpecFunc.h,
	  mathmore/inc/Math/LinkDef_StatFunc.h,
	  mathmore/inc/Math/Minimizer1D.h,
	  mathmore/inc/Math/ParamFunction.h,
	  mathmore/inc/Math/PdfFuncMathMore.h,
	  mathmore/inc/Math/Polynomial.h, mathmore/inc/Math/ProbFuncInv.h,
	  mathmore/inc/Math/ProbFuncMathMore.h, mathmore/inc/Math/Random.h,
	  mathmore/inc/Math/RootFinder.h,
	  mathmore/inc/Math/RootFinderAlgorithms.h,
	  mathmore/inc/Math/SpecFuncMathMore.h,
	  mathmore/inc/Math/WrappedMultiTF1.h,
	  mathmore/inc/Math/WrappedTF1.h, mathmore/src/Chebyshev.cxx,
	  mathmore/src/Derivator.cxx, mathmore/src/GSL1DMinimizer.h,
	  mathmore/src/GSLChebSeries.h, mathmore/src/GSLDerivator.cxx,
	  mathmore/src/GSLDerivator.h, mathmore/src/GSLError.h,
	  mathmore/src/GSLFunctionWrapper.h,
	  mathmore/src/GSLIntegrationWorkspace.h,
	  mathmore/src/GSLIntegrator.cxx, mathmore/src/GSLIntegrator.h,
	  mathmore/src/GSLInterpolator.cxx, mathmore/src/GSLInterpolator.h,
	  mathmore/src/GSLRndmEngines.cxx, mathmore/src/GSLRootFSolver.h,
	  mathmore/src/GSLRootFdFSolver.h, mathmore/src/GSLRootFinder.cxx,
	  mathmore/src/GSLRootFinderDeriv.cxx,
	  mathmore/src/GSLRootHelper.cxx, mathmore/src/Integrator.cxx,
	  mathmore/src/Interpolator.cxx, mathmore/src/Minimizer1D.cxx,
	  mathmore/src/OneDimFunctionAdapter.h,
	  mathmore/src/ParamFunction.cxx, mathmore/src/PdfFuncMathMore.cxx,
	  mathmore/src/Polynomial.cxx, mathmore/src/ProbFuncInv.cxx,
	  mathmore/src/ProbFuncMathMore.cxx,
	  mathmore/src/RootFinderAlgorithms.cxx,
	  mathmore/src/SpecFuncMathMore.cxx,
	  mathmore/src/complex_quartic.h, matrix/inc/LinkDef.h,
	  matrix/inc/TDecompBK.h, matrix/inc/TDecompBase.h,
	  matrix/inc/TDecompChol.h, matrix/inc/TDecompLU.h,
	  matrix/inc/TDecompQRH.h, matrix/inc/TDecompSVD.h,
	  matrix/inc/TDecompSparse.h, matrix/inc/TMatrix.h,
	  matrix/inc/TMatrixDBase.h, matrix/inc/TMatrixDBasefwd.h,
	  matrix/inc/TMatrixDEigen.h, matrix/inc/TMatrixDLazy.h,
	  matrix/inc/TMatrixDSparse.h, matrix/inc/TMatrixDSym.h,
	  matrix/inc/TMatrixDSymEigen.h, matrix/inc/TMatrixDUtils.h,
	  matrix/inc/TMatrixDUtilsfwd.h, matrix/inc/TMatrixFBase.h,
	  matrix/inc/TMatrixFBasefwd.h, matrix/inc/TMatrixFLazy.h,
	  matrix/inc/TMatrixFSparse.h, matrix/inc/TMatrixFSym.h,
	  matrix/inc/TMatrixFUtils.h, matrix/inc/TMatrixFUtilsfwd.h,
	  matrix/inc/TMatrixT.h, matrix/inc/TMatrixTBase.h,
	  matrix/inc/TMatrixTCramerInv.h, matrix/inc/TMatrixTLazy.h,
	  matrix/inc/TMatrixTSparse.h, matrix/inc/TMatrixTSym.h,
	  matrix/inc/TMatrixTSymCramerInv.h, matrix/inc/TMatrixTUtils.h,
	  matrix/inc/TVector.h, matrix/inc/TVectorT.h,
	  matrix/src/TDecompBK.cxx, matrix/src/TDecompBase.cxx,
	  matrix/src/TDecompChol.cxx, matrix/src/TDecompLU.cxx,
	  matrix/src/TDecompQRH.cxx, matrix/src/TDecompSVD.cxx,
	  matrix/src/TDecompSparse.cxx, matrix/src/TMatrixDEigen.cxx,
	  matrix/src/TMatrixDSymEigen.cxx, matrix/src/TMatrixT.cxx,
	  matrix/src/TMatrixTBase.cxx, matrix/src/TMatrixTCramerInv.cxx,
	  matrix/src/TMatrixTLazy.cxx, matrix/src/TMatrixTSparse.cxx,
	  matrix/src/TMatrixTSym.cxx, matrix/src/TMatrixTSymCramerInv.cxx,
	  matrix/src/TMatrixTUtils.cxx, matrix/src/TVectorT.cxx,
	  meta/inc/LinkDef.h, meta/inc/TBaseClass.h, meta/inc/TCint.h,
	  meta/inc/TClass.h, meta/inc/TClassGenerator.h,
	  meta/inc/TClassMenuItem.h, meta/inc/TClassRef.h,
	  meta/inc/TClassStreamer.h, meta/inc/TDataMember.h,
	  meta/inc/TDataType.h, meta/inc/TDictionary.h,
	  meta/inc/TFunction.h, meta/inc/TGenericClassInfo.h,
	  meta/inc/TGlobal.h, meta/inc/TInterpreter.h,
	  meta/inc/TIsAProxy.h, meta/inc/TMemberStreamer.h,
	  meta/inc/TMethod.h, meta/inc/TMethodArg.h,
	  meta/inc/TMethodCall.h, meta/inc/TRealData.h,
	  meta/inc/TStreamer.h, meta/inc/TStreamerElement.h,
	  meta/inc/TVirtualIsAProxy.h, meta/inc/TVirtualRefProxy.h,
	  meta/inc/TVirtualStreamerInfo.h, meta/src/TBaseClass.cxx,
	  meta/src/TCint.cxx, meta/src/TClass.cxx,
	  meta/src/TClassGenerator.cxx, meta/src/TClassMenuItem.cxx,
	  meta/src/TClassRef.cxx, meta/src/TDataMember.cxx,
	  meta/src/TDataType.cxx, meta/src/TFunction.cxx,
	  meta/src/TGenericClassInfo.cxx, meta/src/TGlobal.cxx,
	  meta/src/TInterpreter.cxx, meta/src/TIsAProxy.cxx,
	  meta/src/TMethod.cxx, meta/src/TMethodArg.cxx,
	  meta/src/TMethodCall.cxx, meta/src/TRealData.cxx,
	  meta/src/TStreamerElement.cxx, meta/src/TToggle.cxx,
	  meta/src/TToggleGroup.cxx, meta/src/TVirtualStreamerInfo.cxx,
	  metautils/inc/TClassEdit.h, metautils/src/TClassEdit.cxx,
	  minuit/inc/LinkDef.h, minuit/inc/TFitter.h,
	  minuit/inc/TLinearFitter.h, minuit/inc/TMinuit.h,
	  minuit/src/TFitter.cxx, minuit/src/TLinearFitter.cxx,
	  minuit/src/TMinuit.cxx, minuit2/build/inc_Makefile.am,
	  minuit2/inc/LinkDef.h, minuit2/inc/Minuit2/ABObj.h,
	  minuit2/inc/Minuit2/ABProd.h, minuit2/inc/Minuit2/ABSum.h,
	  minuit2/inc/Minuit2/ABTypes.h,
	  minuit2/inc/Minuit2/AnalyticalGradientCalculator.h,
	  minuit2/inc/Minuit2/BasicFunctionGradient.h,
	  minuit2/inc/Minuit2/BasicFunctionMinimum.h,
	  minuit2/inc/Minuit2/BasicMinimumError.h,
	  minuit2/inc/Minuit2/BasicMinimumParameters.h,
	  minuit2/inc/Minuit2/BasicMinimumSeed.h,
	  minuit2/inc/Minuit2/BasicMinimumState.h,
	  minuit2/inc/Minuit2/CombinedMinimizer.h,
	  minuit2/inc/Minuit2/CombinedMinimumBuilder.h,
	  minuit2/inc/Minuit2/ContoursError.h,
	  minuit2/inc/Minuit2/DavidonErrorUpdator.h,
	  minuit2/inc/Minuit2/FCNBase.h,
	  minuit2/inc/Minuit2/FCNGradientBase.h,
	  minuit2/inc/Minuit2/FumiliBuilder.h,
	  minuit2/inc/Minuit2/FumiliChi2FCN.h,
	  minuit2/inc/Minuit2/FumiliErrorUpdator.h,
	  minuit2/inc/Minuit2/FumiliFCNBase.h,
	  minuit2/inc/Minuit2/FumiliGradientCalculator.h,
	  minuit2/inc/Minuit2/FumiliMaximumLikelihoodFCN.h,
	  minuit2/inc/Minuit2/FumiliMinimizer.h,
	  minuit2/inc/Minuit2/FumiliStandardChi2FCN.h,
	  minuit2/inc/Minuit2/FumiliStandardMaximumLikelihoodFCN.h,
	  minuit2/inc/Minuit2/FunctionGradient.h,
	  minuit2/inc/Minuit2/FunctionMinimizer.h,
	  minuit2/inc/Minuit2/FunctionMinimum.h,
	  minuit2/inc/Minuit2/GenericFunction.h,
	  minuit2/inc/Minuit2/GradientCalculator.h,
	  minuit2/inc/Minuit2/HessianGradientCalculator.h,
	  minuit2/inc/Minuit2/InitialGradientCalculator.h,
	  minuit2/inc/Minuit2/LASymMatrix.h,
	  minuit2/inc/Minuit2/LAVector.h, minuit2/inc/Minuit2/LaInverse.h,
	  minuit2/inc/Minuit2/LaOuterProduct.h,
	  minuit2/inc/Minuit2/LaProd.h, minuit2/inc/Minuit2/LaSum.h,
	  minuit2/inc/Minuit2/MatrixInverse.h,
	  minuit2/inc/Minuit2/MinimumBuilder.h,
	  minuit2/inc/Minuit2/MinimumError.h,
	  minuit2/inc/Minuit2/MinimumErrorUpdator.h,
	  minuit2/inc/Minuit2/MinimumParameters.h,
	  minuit2/inc/Minuit2/MinimumSeed.h,
	  minuit2/inc/Minuit2/MinimumSeedGenerator.h,
	  minuit2/inc/Minuit2/MinimumState.h,
	  minuit2/inc/Minuit2/MinosError.h,
	  minuit2/inc/Minuit2/MinuitParameter.h,
	  minuit2/inc/Minuit2/MnApplication.h,
	  minuit2/inc/Minuit2/MnConfig.h, minuit2/inc/Minuit2/MnContours.h,
	  minuit2/inc/Minuit2/MnCovarianceSqueeze.h,
	  minuit2/inc/Minuit2/MnCross.h, minuit2/inc/Minuit2/MnEigen.h,
	  minuit2/inc/Minuit2/MnFcn.h,
	  minuit2/inc/Minuit2/MnFumiliMinimize.h,
	  minuit2/inc/Minuit2/MnFunctionCross.h,
	  minuit2/inc/Minuit2/MnGlobalCorrelationCoeff.h,
	  minuit2/inc/Minuit2/MnHesse.h,
	  minuit2/inc/Minuit2/MnLineSearch.h,
	  minuit2/inc/Minuit2/MnMachinePrecision.h,
	  minuit2/inc/Minuit2/MnMatrix.h, minuit2/inc/Minuit2/MnMigrad.h,
	  minuit2/inc/Minuit2/MnMinimize.h, minuit2/inc/Minuit2/MnMinos.h,
	  minuit2/inc/Minuit2/MnParabola.h,
	  minuit2/inc/Minuit2/MnParabolaFactory.h,
	  minuit2/inc/Minuit2/MnParabolaPoint.h,
	  minuit2/inc/Minuit2/MnParameterScan.h,
	  minuit2/inc/Minuit2/MnPlot.h, minuit2/inc/Minuit2/MnPosDef.h,
	  minuit2/inc/Minuit2/MnPrint.h,
	  minuit2/inc/Minuit2/MnRefCountedPointer.h,
	  minuit2/inc/Minuit2/MnReferenceCounter.h,
	  minuit2/inc/Minuit2/MnScan.h,
	  minuit2/inc/Minuit2/MnSeedGenerator.h,
	  minuit2/inc/Minuit2/MnSimplex.h,
	  minuit2/inc/Minuit2/MnStrategy.h, minuit2/inc/Minuit2/MnTiny.h,
	  minuit2/inc/Minuit2/MnUserCovariance.h,
	  minuit2/inc/Minuit2/MnUserFcn.h,
	  minuit2/inc/Minuit2/MnUserParameterState.h,
	  minuit2/inc/Minuit2/MnUserParameters.h,
	  minuit2/inc/Minuit2/MnUserTransformation.h,
	  minuit2/inc/Minuit2/MnVectorTransform.h,
	  minuit2/inc/Minuit2/ModularFunctionMinimizer.h,
	  minuit2/inc/Minuit2/NegativeG2LineSearch.h,
	  minuit2/inc/Minuit2/Numerical2PGradientCalculator.h,
	  minuit2/inc/Minuit2/ParametricFunction.h,
	  minuit2/inc/Minuit2/ScanBuilder.h,
	  minuit2/inc/Minuit2/ScanMinimizer.h,
	  minuit2/inc/Minuit2/SimplexBuilder.h,
	  minuit2/inc/Minuit2/SimplexMinimizer.h,
	  minuit2/inc/Minuit2/SimplexParameters.h,
	  minuit2/inc/Minuit2/SimplexSeedGenerator.h,
	  minuit2/inc/Minuit2/SinParameterTransformation.h,
	  minuit2/inc/Minuit2/SqrtLowParameterTransformation.h,
	  minuit2/inc/Minuit2/SqrtUpParameterTransformation.h,
	  minuit2/inc/Minuit2/StackAllocator.h,
	  minuit2/inc/Minuit2/VariableMetricBuilder.h,
	  minuit2/inc/Minuit2/VariableMetricEDMEstimator.h,
	  minuit2/inc/Minuit2/VariableMetricMinimizer.h,
	  minuit2/inc/Minuit2/VectorOuterProduct.h,
	  minuit2/inc/TBinLikelihoodFCN.h, minuit2/inc/TChi2ExtendedFCN.h,
	  minuit2/inc/TChi2ExtendedFitData.h, minuit2/inc/TChi2FCN.h,
	  minuit2/inc/TChi2FitData.h, minuit2/inc/TFcnAdapter.h,
	  minuit2/inc/TFitterFumili.h, minuit2/inc/TFitterMinuit.h,
	  minuit2/inc/TFumiliFCN.h,
	  minuit2/src/AnalyticalGradientCalculator.cxx,
	  minuit2/src/BasicMinimumError.cxx,
	  minuit2/src/CombinedMinimumBuilder.cxx,
	  minuit2/src/DavidonErrorUpdator.cxx, minuit2/src/FitterUtil.cxx,
	  minuit2/src/FitterUtil.h, minuit2/src/FumiliBuilder.cxx,
	  minuit2/src/FumiliErrorUpdator.cxx,
	  minuit2/src/FumiliGradientCalculator.cxx,
	  minuit2/src/FumiliMinimizer.cxx,
	  minuit2/src/FumiliStandardChi2FCN.cxx,
	  minuit2/src/FumiliStandardMaximumLikelihoodFCN.cxx,
	  minuit2/src/HessianGradientCalculator.cxx,
	  minuit2/src/InitialGradientCalculator.cxx,
	  minuit2/src/LaEigenValues.cxx, minuit2/src/LaInnerProduct.cxx,
	  minuit2/src/LaInverse.cxx, minuit2/src/LaOuterProduct.cxx,
	  minuit2/src/LaSumOfElements.cxx,
	  minuit2/src/LaVtMVSimilarity.cxx, minuit2/src/MnApplication.cxx,
	  minuit2/src/MnContours.cxx, minuit2/src/MnCovarianceSqueeze.cxx,
	  minuit2/src/MnEigen.cxx, minuit2/src/MnFcn.cxx,
	  minuit2/src/MnFumiliMinimize.cxx,
	  minuit2/src/MnFunctionCross.cxx,
	  minuit2/src/MnGlobalCorrelationCoeff.cxx,
	  minuit2/src/MnHesse.cxx, minuit2/src/MnLineSearch.cxx,
	  minuit2/src/MnMachinePrecision.cxx, minuit2/src/MnMinos.cxx,
	  minuit2/src/MnParabolaFactory.cxx,
	  minuit2/src/MnParameterScan.cxx, minuit2/src/MnPlot.cxx,
	  minuit2/src/MnPosDef.cxx, minuit2/src/MnPrint.cxx,
	  minuit2/src/MnScan.cxx, minuit2/src/MnSeedGenerator.cxx,
	  minuit2/src/MnStrategy.cxx, minuit2/src/MnTiny.cxx,
	  minuit2/src/MnUserFcn.cxx, minuit2/src/MnUserParameterState.cxx,
	  minuit2/src/MnUserParameters.cxx,
	  minuit2/src/MnUserTransformation.cxx,
	  minuit2/src/ModularFunctionMinimizer.cxx,
	  minuit2/src/NegativeG2LineSearch.cxx,
	  minuit2/src/Numerical2PGradientCalculator.cxx,
	  minuit2/src/ParametricFunction.cxx, minuit2/src/ScanBuilder.cxx,
	  minuit2/src/SimplexBuilder.cxx,
	  minuit2/src/SimplexParameters.cxx,
	  minuit2/src/SimplexSeedGenerator.cxx,
	  minuit2/src/SinParameterTransformation.cxx,
	  minuit2/src/SqrtLowParameterTransformation.cxx,
	  minuit2/src/SqrtUpParameterTransformation.cxx,
	  minuit2/src/TBinLikelihoodFCN.cxx,
	  minuit2/src/TChi2ExtendedFCN.cxx,
	  minuit2/src/TChi2ExtendedFitData.cxx, minuit2/src/TChi2FCN.cxx,
	  minuit2/src/TChi2FitData.cxx, minuit2/src/TFcnAdapter.cxx,
	  minuit2/src/TFitterFumili.cxx, minuit2/src/TFumiliFCN.cxx,
	  minuit2/src/VariableMetricBuilder.cxx,
	  minuit2/src/VariableMetricEDMEstimator.cxx,
	  minuit2/src/mnbins.cxx, minuit2/src/mndasum.cxx,
	  minuit2/src/mndaxpy.cxx, minuit2/src/mnddot.cxx,
	  minuit2/src/mndscal.cxx, minuit2/src/mndspmv.cxx,
	  minuit2/src/mndspr.cxx, minuit2/src/mnlsame.cxx,
	  minuit2/src/mnteigen.cxx, minuit2/src/mntplot.cxx,
	  minuit2/src/mnvert.cxx, minuit2/src/mnxerbla.cxx,
	  minuit2/test/MnSim/DemoFumili.cxx,
	  minuit2/test/MnSim/DemoGaussSim.cxx,
	  minuit2/test/MnSim/FlatRandomGen.h,
	  minuit2/test/MnSim/GaussDataGen.cxx,
	  minuit2/test/MnSim/GaussDataGen.h,
	  minuit2/test/MnSim/GaussFcn.cxx, minuit2/test/MnSim/GaussFcn.h,
	  minuit2/test/MnSim/GaussFcn2.cxx, minuit2/test/MnSim/GaussFcn2.h,
	  minuit2/test/MnSim/GaussFunction.h,
	  minuit2/test/MnSim/GaussRandomGen.h,
	  minuit2/test/MnSim/GaussianModelFunction.h,
	  minuit2/test/MnSim/PaulTest.cxx,
	  minuit2/test/MnSim/PaulTest2.cxx,
	  minuit2/test/MnSim/PaulTest3.cxx,
	  minuit2/test/MnSim/PaulTest4.cxx,
	  minuit2/test/MnSim/ReneTest.cxx,
	  minuit2/test/MnTutorial/Quad12F.h,
	  minuit2/test/MnTutorial/Quad12FMain.cxx,
	  minuit2/test/MnTutorial/Quad1F.h,
	  minuit2/test/MnTutorial/Quad1FMain.cxx,
	  minuit2/test/MnTutorial/Quad4F.h,
	  minuit2/test/MnTutorial/Quad4FMain.cxx,
	  minuit2/test/MnTutorial/Quad8F.h,
	  minuit2/test/MnTutorial/Quad8FMain.cxx,
	  minuit2/test/testGraph.cxx, minuit2/test/testMinimize.cxx,
	  minuit2/test/testUserFunc.cxx, mlp/inc/TMLPAnalyzer.h,
	  mlp/inc/TMultiLayerPerceptron.h, mlp/inc/TNeuron.h,
	  mlp/inc/TSynapse.h, mlp/src/TMLPAnalyzer.cxx,
	  mlp/src/TMultiLayerPerceptron.cxx, mlp/src/TNeuron.cxx,
	  mlp/src/TSynapse.cxx, monalisa/inc/TMonaLisaReader.h,
	  monalisa/inc/TMonaLisaWriter.h, monalisa/src/TMonaLisaReader.cxx,
	  monalisa/src/TMonaLisaWriter.cxx, mysql/inc/TMySQLResult.h,
	  mysql/inc/TMySQLRow.h, mysql/inc/TMySQLServer.h,
	  mysql/inc/TMySQLStatement.h, mysql/src/TMySQLServer.cxx,
	  mysql/src/TMySQLStatement.cxx, net/inc/LinkDef.h,
	  net/inc/NetErrors.h, net/inc/RRemoteProtocol.h,
	  net/inc/TApplicationRemote.h, net/inc/TApplicationServer.h,
	  net/inc/TFTP.h, net/inc/TFileStager.h, net/inc/TGrid.h,
	  net/inc/TGridCollection.h, net/inc/TGridJDL.h,
	  net/inc/TGridJob.h, net/inc/TGridJobStatus.h,
	  net/inc/TGridJobStatusList.h, net/inc/TGridResult.h,
	  net/inc/TMessage.h, net/inc/TMonitor.h, net/inc/TNetFile.h,
	  net/inc/TPServerSocket.h, net/inc/TPSocket.h,
	  net/inc/TSQLColumnInfo.h, net/inc/TSQLMonitoring.h,
	  net/inc/TSQLResult.h, net/inc/TSQLServer.h,
	  net/inc/TSQLStatement.h, net/inc/TSQLTableInfo.h,
	  net/inc/TSecContext.h, net/inc/TServerSocket.h,
	  net/inc/TSocket.h, net/inc/TWebFile.h, net/src/NetErrors.cxx,
	  net/src/TApplicationRemote.cxx, net/src/TApplicationServer.cxx,
	  net/src/TFTP.cxx, net/src/TFileStager.cxx, net/src/TGrid.cxx,
	  net/src/TGridJDL.cxx, net/src/TGridJob.cxx,
	  net/src/TGridJobStatus.cxx, net/src/TGridJobStatusList.cxx,
	  net/src/TGridResult.cxx, net/src/TMessage.cxx,
	  net/src/TMonitor.cxx, net/src/TNetFile.cxx,
	  net/src/TPServerSocket.cxx, net/src/TPSocket.cxx,
	  net/src/TSQLColumnInfo.cxx, net/src/TSQLMonitoring.cxx,
	  net/src/TSQLServer.cxx, net/src/TSQLStatement.cxx,
	  net/src/TSQLTableInfo.cxx, net/src/TSecContext.cxx,
	  net/src/TServerSocket.cxx, net/src/TSocket.cxx,
	  net/src/TWebFile.cxx, netx/inc/LinkDef.h, netx/inc/TXNetFile.h,
	  netx/inc/TXNetFileStager.h, netx/inc/TXNetSystem.h,
	  netx/src/TXNetFile.cxx, netx/src/TXNetFileStager.cxx,
	  netx/src/TXNetSystem.cxx, newdelete/inc/MemCheck.h,
	  newdelete/src/MemCheck.cxx, newdelete/src/NewDelete.cxx,
	  odbc/inc/TODBCResult.h, odbc/inc/TODBCRow.h,
	  odbc/inc/TODBCServer.h, odbc/inc/TODBCStatement.h,
	  odbc/src/TODBCResult.cxx, odbc/src/TODBCRow.cxx,
	  odbc/src/TODBCServer.cxx, odbc/src/TODBCStatement.cxx,
	  oracle/inc/LinkDef.h, oracle/inc/TOracleResult.h,
	  oracle/inc/TOracleRow.h, oracle/inc/TOracleServer.h,
	  oracle/inc/TOracleStatement.h, oracle/src/TOracleResult.cxx,
	  oracle/src/TOracleRow.cxx, oracle/src/TOracleServer.cxx,
	  oracle/src/TOracleStatement.cxx, peac/inc/LinkDef.h,
	  peac/inc/LinkDefGui.h, peac/inc/TPEAC.h, peac/inc/TProofPEAC.h,
	  peac/inc/TProofStartupDialog.h, peac/src/TPEAC.cxx,
	  peac/src/TProofPEAC.cxx, peac/src/TProofStartupDialog.cxx,
	  pgsql/inc/TPgSQLResult.h, pgsql/inc/TPgSQLRow.h,
	  pgsql/inc/TPgSQLServer.h, pgsql/inc/TPgSQLStatement.h,
	  pgsql/src/TPgSQLResult.cxx, pgsql/src/TPgSQLRow.cxx,
	  pgsql/src/TPgSQLServer.cxx, pgsql/src/TPgSQLStatement.cxx,
	  physics/inc/LinkDef.h, physics/inc/TFeldmanCousins.h,
	  physics/inc/TGenPhaseSpace.h, physics/inc/TLorentzRotation.h,
	  physics/inc/TLorentzVector.h, physics/inc/TQuaternion.h,
	  physics/inc/TRobustEstimator.h, physics/inc/TRolke.h,
	  physics/inc/TRotation.h, physics/inc/TVector2.h,
	  physics/inc/TVector3.h, physics/src/TFeldmanCousins.cxx,
	  physics/src/TGenPhaseSpace.cxx, physics/src/TLorentzRotation.cxx,
	  physics/src/TLorentzVector.cxx, physics/src/TQuaternion.cxx,
	  physics/src/TRobustEstimator.cxx, physics/src/TRolke.cxx,
	  physics/src/TRotation.cxx, physics/src/TVector2.cxx,
	  physics/src/TVector3.cxx, postscript/inc/LinkDef.h,
	  postscript/inc/TImageDump.h, postscript/inc/TPDF.h,
	  postscript/inc/TPostScript.h, postscript/inc/TSVG.h,
	  postscript/src/TImageDump.cxx, postscript/src/TPDF.cxx,
	  postscript/src/TPostScript.cxx, postscript/src/TSVG.cxx,
	  proof/inc/LinkDef.h, proof/inc/TCondor.h, proof/inc/TDSet.h,
	  proof/inc/TDSetProxy.h, proof/inc/TProof.h,
	  proof/inc/TProofChain.h, proof/inc/TProofCondor.h,
	  proof/inc/TProofDebug.h, proof/inc/TProofLog.h,
	  proof/inc/TProofMgr.h, proof/inc/TProofNodeInfo.h,
	  proof/inc/TProofQueryResult.h, proof/inc/TProofResources.h,
	  proof/inc/TProofResourcesStatic.h, proof/inc/TProofServ.h,
	  proof/inc/TProofSuperMaster.h, proof/inc/TSlave.h,
	  proof/inc/TVirtualProofPlayer.h, proof/src/TCondor.cxx,
	  proof/src/TDSet.cxx, proof/src/TDSetProxy.cxx,
	  proof/src/TProof.cxx, proof/src/TProofChain.cxx,
	  proof/src/TProofCondor.cxx, proof/src/TProofDebug.cxx,
	  proof/src/TProofLog.cxx, proof/src/TProofMgr.cxx,
	  proof/src/TProofNodeInfo.cxx, proof/src/TProofQueryResult.cxx,
	  proof/src/TProofResourcesStatic.cxx, proof/src/TProofServ.cxx,
	  proof/src/TProofSuperMaster.cxx, proof/src/TSlave.cxx,
	  proof/src/TVirtualProofPlayer.cxx, proofd/inc/XProofProtUtils.h,
	  proofd/inc/XProofProtocol.h, proofd/inc/XrdProofConn.h,
	  proofd/inc/XrdProofGroup.h, proofd/inc/XrdProofPhyConn.h,
	  proofd/inc/XrdProofSched.h, proofd/inc/XrdProofServProxy.h,
	  proofd/inc/XrdProofWorker.h, proofd/inc/XrdProofdAux.h,
	  proofd/inc/XrdProofdClient.h, proofd/inc/XrdProofdManager.h,
	  proofd/inc/XrdProofdPlatform.h, proofd/inc/XrdProofdProtocol.h,
	  proofd/inc/XrdProofdResponse.h, proofd/inc/XrdProofdTrace.h,
	  proofd/inc/XrdROOT.h, proofd/inc/proofdp.h,
	  proofd/src/XProofProtUtils.cxx, proofd/src/XrdProofConn.cxx,
	  proofd/src/XrdProofGroup.cxx, proofd/src/XrdProofPhyConn.cxx,
	  proofd/src/XrdProofSched.cxx, proofd/src/XrdProofServProxy.cxx,
	  proofd/src/XrdProofWorker.cxx, proofd/src/XrdProofdAux.cxx,
	  proofd/src/XrdProofdClient.cxx, proofd/src/XrdProofdManager.cxx,
	  proofd/src/XrdProofdProtocol.cxx,
	  proofd/src/XrdProofdResponse.cxx, proofd/src/XrdROOT.cxx,
	  proofd/src/proofd.cxx, proofplayer/inc/LinkDef.h,
	  proofplayer/inc/LinkDefDraw.h,
	  proofplayer/inc/TAdaptivePacketizer.h,
	  proofplayer/inc/TDrawFeedback.h, proofplayer/inc/TEventIter.h,
	  proofplayer/inc/TFileMerger.h, proofplayer/inc/TPacketizer.h,
	  proofplayer/inc/TPacketizerProgressive.h,
	  proofplayer/inc/TPerfStats.h, proofplayer/inc/TProofDraw.h,
	  proofplayer/inc/TProofLimitsFinder.h,
	  proofplayer/inc/TProofPlayer.h, proofplayer/inc/TStatus.h,
	  proofplayer/inc/TVirtualPacketizer.h,
	  proofplayer/src/TAdaptivePacketizer.cxx,
	  proofplayer/src/TDrawFeedback.cxx,
	  proofplayer/src/TEventIter.cxx, proofplayer/src/TFileMerger.cxx,
	  proofplayer/src/TPacketizer.cxx,
	  proofplayer/src/TPacketizerProgressive.cxx,
	  proofplayer/src/TPerfStats.cxx, proofplayer/src/TProofDraw.cxx,
	  proofplayer/src/TProofLimitsFinder.cxx,
	  proofplayer/src/TProofPlayer.cxx, proofplayer/src/TStatus.cxx,
	  proofplayer/src/TVirtualPacketizer.cxx, proofx/inc/LinkDef.h,
	  proofx/inc/TXHandler.h, proofx/inc/TXProofMgr.h,
	  proofx/inc/TXProofServ.h, proofx/inc/TXSlave.h,
	  proofx/inc/TXSocket.h, proofx/inc/TXSocketHandler.h,
	  proofx/inc/TXUnixSocket.h, proofx/src/TXHandler.cxx,
	  proofx/src/TXProofMgr.cxx, proofx/src/TXProofServ.cxx,
	  proofx/src/TXSlave.cxx, proofx/src/TXSocket.cxx,
	  proofx/src/TXSocketHandler.cxx, proofx/src/TXUnixSocket.cxx,
	  pyroot/ROOT.py, pyroot/inc/TPyException.h,
	  pyroot/inc/TPyReturn.h, pyroot/inc/TPython.h,
	  pyroot/src/ClassMethodHolder.cxx, pyroot/src/ClassMethodHolder.h,
	  pyroot/src/ConstructorHolder.cxx, pyroot/src/ConstructorHolder.h,
	  pyroot/src/Converters.cxx, pyroot/src/Converters.h,
	  pyroot/src/Executors.cxx, pyroot/src/Executors.h,
	  pyroot/src/MemoryRegulator.cxx, pyroot/src/MemoryRegulator.h,
	  pyroot/src/MethodHolder.cxx, pyroot/src/MethodHolder.h,
	  pyroot/src/MethodProxy.cxx, pyroot/src/MethodProxy.h,
	  pyroot/src/ObjectProxy.cxx, pyroot/src/ObjectProxy.h,
	  pyroot/src/PropertyProxy.cxx, pyroot/src/PropertyProxy.h,
	  pyroot/src/PyBufferFactory.cxx, pyroot/src/PyBufferFactory.h,
	  pyroot/src/PyCallable.h, pyroot/src/PyROOT.h,
	  pyroot/src/PyRootType.cxx, pyroot/src/PyRootType.h,
	  pyroot/src/Pythonize.cxx, pyroot/src/Pythonize.h,
	  pyroot/src/RootModule.cxx, pyroot/src/RootWrapper.cxx,
	  pyroot/src/RootWrapper.h, pyroot/src/TPyClassGenerator.cxx,
	  pyroot/src/TPyClassGenerator.h, pyroot/src/TPyException.cxx,
	  pyroot/src/TPyReturn.cxx, pyroot/src/TPython.cxx,
	  pyroot/src/Utility.cxx, pyroot/src/Utility.h,
	  pythia6/inc/LinkDef.h, pythia6/inc/TMCParticle.h,
	  pythia6/inc/TPythia6.h, pythia6/inc/TPythia6Calls.h,
	  pythia6/inc/TPythia6Decayer.h, pythia6/src/TMCParticle.cxx,
	  pythia6/src/TPythia6.cxx, pythia6/src/TPythia6Decayer.cxx,
	  qt/inc/LinkDef.h, qt/inc/TGQt.h, qt/inc/TObjectExecute.h,
	  qt/inc/TQMimeTypes.h, qt/inc/TQUserEvent.h,
	  qt/inc/TQtApplication.h, qt/inc/TQtBrush.h,
	  qt/inc/TQtClientFilter.h, qt/inc/TQtClientGuard.h,
	  qt/inc/TQtClientWidget.h, qt/inc/TQtEmitter.h, qt/inc/TQtEvent.h,
	  qt/inc/TQtEventQueue.h, qt/inc/TQtLock.h, qt/inc/TQtMarker.h,
	  qt/inc/TQtRootApplication.h, qt/inc/TQtRootSlot.h,
	  qt/inc/TQtTimer.h, qt/inc/TQtUtil.h, qt/inc/TQtWidget.h,
	  qt/inc/TVirtualX.interface.h, qt/inc/TWaitCondition.h,
	  qt/src/GQtGUI.cxx, qt/src/TGQt.cxx, qt/src/TGQtDummy.cxx,
	  qt/src/TQMimeTypes.cxx, qt/src/TQtApplication.cxx,
	  qt/src/TQtBrush.cxx, qt/src/TQtClientFilter.cxx,
	  qt/src/TQtClientGuard.cxx, qt/src/TQtClientWidget.cxx,
	  qt/src/TQtEvent.cxx, qt/src/TQtEventQueue.cxx,
	  qt/src/TQtMarker.cxx, qt/src/TQtRootApplication.cxx,
	  qt/src/TQtRootSlot.cxx, qt/src/TQtTimer.cxx,
	  qt/src/TQtWidget.cxx, qtgsi/inc/TQApplication.h,
	  qtgsi/inc/TQCanvasImp.h, qtgsi/inc/TQCanvasMenu.h,
	  qtgsi/inc/TQRootApplication.h, qtgsi/inc/TQRootCanvas.h,
	  qtgsi/inc/TQRootDialog.h, qtgsi/inc/TQRootGuiFactory.h,
	  qtgsi/src/TQApplication.cxx, qtgsi/src/TQCanvasImp.cxx,
	  qtgsi/src/TQCanvasMenu.cxx, qtgsi/src/TQRootApplication.cxx,
	  qtgsi/src/TQRootCanvas.cxx, qtgsi/src/TQRootDialog.cxx,
	  qtgsi/src/TQRootGuiFactory.cxx, qtroot/inc/LinkDef.h,
	  quadp/inc/LinkDef.h, quadp/inc/TGondzioSolver.h,
	  quadp/inc/TMehrotraSolver.h, quadp/inc/TQpDataBase.h,
	  quadp/inc/TQpDataDens.h, quadp/inc/TQpDataSparse.h,
	  quadp/inc/TQpLinSolverBase.h, quadp/inc/TQpLinSolverDens.h,
	  quadp/inc/TQpLinSolverSparse.h, quadp/inc/TQpProbBase.h,
	  quadp/inc/TQpProbDens.h, quadp/inc/TQpProbSparse.h,
	  quadp/inc/TQpResidual.h, quadp/inc/TQpSolverBase.h,
	  quadp/inc/TQpVar.h, quadp/src/TGondzioSolver.cxx,
	  quadp/src/TMehrotraSolver.cxx, quadp/src/TQpDataBase.cxx,
	  quadp/src/TQpDataDens.cxx, quadp/src/TQpDataSparse.cxx,
	  quadp/src/TQpLinSolverBase.cxx, quadp/src/TQpLinSolverDens.cxx,
	  quadp/src/TQpLinSolverSparse.cxx, quadp/src/TQpProbBase.cxx,
	  quadp/src/TQpProbDens.cxx, quadp/src/TQpProbSparse.cxx,
	  quadp/src/TQpResidual.cxx, quadp/src/TQpSolverBase.cxx,
	  quadp/src/TQpVar.cxx, reflex/inc/LinkDef.h,
	  reflex/inc/Reflex/Any.h, reflex/inc/Reflex/Base.h,
	  reflex/inc/Reflex/Builder/ClassBuilder.h,
	  reflex/inc/Reflex/Builder/CollectionProxy.h,
	  reflex/inc/Reflex/Builder/DictSelection.h,
	  reflex/inc/Reflex/Builder/EnumBuilder.h,
	  reflex/inc/Reflex/Builder/FunctionBuilder.h,
	  reflex/inc/Reflex/Builder/NamespaceBuilder.h,
	  reflex/inc/Reflex/Builder/ReflexBuilder.h,
	  reflex/inc/Reflex/Builder/TypeBuilder.h,
	  reflex/inc/Reflex/Builder/TypedefBuilder.h,
	  reflex/inc/Reflex/Builder/UnionBuilder.h,
	  reflex/inc/Reflex/Builder/VariableBuilder.h,
	  reflex/inc/Reflex/Callback.h,
	  reflex/inc/Reflex/DictionaryGenerator.h,
	  reflex/inc/Reflex/Kernel.h, reflex/inc/Reflex/Member.h,
	  reflex/inc/Reflex/MemberTemplate.h, reflex/inc/Reflex/Object.h,
	  reflex/inc/Reflex/PluginService.h,
	  reflex/inc/Reflex/PropertyList.h, reflex/inc/Reflex/Reflex.h,
	  reflex/inc/Reflex/Scope.h, reflex/inc/Reflex/SharedLibrary.h,
	  reflex/inc/Reflex/Tools.h, reflex/inc/Reflex/Type.h,
	  reflex/inc/Reflex/TypeTemplate.h,
	  reflex/inc/Reflex/ValueObject.h,
	  reflex/inc/Reflex/internal/InternalTools.h,
	  reflex/inc/Reflex/internal/MemberBase.h,
	  reflex/inc/Reflex/internal/MemberTemplateImpl.h,
	  reflex/inc/Reflex/internal/MemberTemplateName.h,
	  reflex/inc/Reflex/internal/OwnedMember.h,
	  reflex/inc/Reflex/internal/OwnedMemberTemplate.h,
	  reflex/inc/Reflex/internal/OwnedPropertyList.h,
	  reflex/inc/Reflex/internal/PropertyListImpl.h,
	  reflex/inc/Reflex/internal/ScopeBase.h,
	  reflex/inc/Reflex/internal/ScopeName.h,
	  reflex/inc/Reflex/internal/TypeBase.h,
	  reflex/inc/Reflex/internal/TypeName.h,
	  reflex/inc/Reflex/internal/TypeTemplateImpl.h,
	  reflex/inc/Reflex/internal/TypeTemplateName.h,
	  reflex/src/Any.cxx, reflex/src/Array.cxx, reflex/src/Array.h,
	  reflex/src/Base.cxx, reflex/src/Callback.cxx,
	  reflex/src/Class.cxx, reflex/src/Class.h,
	  reflex/src/ClassBuilder.cxx,
	  reflex/src/ClassTemplateInstance.cxx,
	  reflex/src/ClassTemplateInstance.h, reflex/src/DataMember.cxx,
	  reflex/src/DataMember.h, reflex/src/DictionaryGenerator.cxx,
	  reflex/src/Enum.cxx, reflex/src/Enum.h,
	  reflex/src/EnumBuilder.cxx, reflex/src/FuncHandler.cxx,
	  reflex/src/FuncHandler.h, reflex/src/Function.cxx,
	  reflex/src/Function.h, reflex/src/FunctionBuilder.cxx,
	  reflex/src/FunctionMember.cxx, reflex/src/FunctionMember.h,
	  reflex/src/FunctionMemberTemplateInstance.cxx,
	  reflex/src/FunctionMemberTemplateInstance.h,
	  reflex/src/Fundamental.cxx, reflex/src/Fundamental.h,
	  reflex/src/Kernel.cxx, reflex/src/Member.cxx,
	  reflex/src/MemberBase.cxx, reflex/src/MemberTemplate.cxx,
	  reflex/src/MemberTemplateImpl.cxx,
	  reflex/src/MemberTemplateName.cxx, reflex/src/NameLookup.cxx,
	  reflex/src/NameLookup.h, reflex/src/Namespace.cxx,
	  reflex/src/Namespace.h, reflex/src/NamespaceBuilder.cxx,
	  reflex/src/Object.cxx, reflex/src/PluginFactoryMap.cxx,
	  reflex/src/PluginFactoryMap.h, reflex/src/PluginService.cxx,
	  reflex/src/Pointer.cxx, reflex/src/Pointer.h,
	  reflex/src/PointerToMember.cxx, reflex/src/PointerToMember.h,
	  reflex/src/PropertyList.cxx, reflex/src/PropertyListImpl.cxx,
	  reflex/src/Scope.cxx, reflex/src/ScopeBase.cxx,
	  reflex/src/ScopeName.cxx, reflex/src/TemplateInstance.cxx,
	  reflex/src/TemplateInstance.h, reflex/src/Tools.cxx,
	  reflex/src/Type.cxx, reflex/src/TypeBase.cxx,
	  reflex/src/TypeBuilder.cxx, reflex/src/TypeName.cxx,
	  reflex/src/TypeTemplate.cxx, reflex/src/TypeTemplateImpl.cxx,
	  reflex/src/TypeTemplateName.cxx, reflex/src/Typedef.cxx,
	  reflex/src/Typedef.h, reflex/src/TypedefBuilder.cxx,
	  reflex/src/Union.cxx, reflex/src/Union.h,
	  reflex/src/UnionBuilder.cxx, reflex/src/VariableBuilder.cxx,
	  reflex/src/dir_manip.h, reflex/src/stl_hash.h,
	  reflex/test/dictionary_generator.cpp,
	  reflex/test/test_ReflexBuilder_unit.cxx,
	  reflex/test/test_Reflex_generate.cxx,
	  reflex/test/test_Reflex_lookup.cxx,
	  reflex/test/test_Reflex_plugins.cxx,
	  reflex/test/test_Reflex_simple1.cxx,
	  reflex/test/test_Reflex_simple2.cxx,
	  reflex/test/test_Reflex_unit.cxx, rfio/inc/LinkDef.h,
	  rfio/inc/TRFIOFile.h, rfio/src/TRFIOFile.cxx, rint/inc/TRint.h,
	  rint/inc/TTabCom.h, rint/src/TRint.cxx, rint/src/TTabCom.cxx,
	  roofit/src/Roo2DKeysPdf.cxx, roofit/src/RooArgusBG.cxx,
	  roofit/src/RooBCPEffDecay.cxx, roofit/src/RooBCPGenDecay.cxx,
	  roofit/src/RooBDecay.cxx, roofit/src/RooBMixDecay.cxx,
	  roofit/src/RooBifurGauss.cxx, roofit/src/RooBlindTools.cxx,
	  roofit/src/RooBreitWigner.cxx, roofit/src/RooBukinPdf.cxx,
	  roofit/src/RooCBShape.cxx, roofit/src/RooChebychev.cxx,
	  roofit/src/RooDecay.cxx, roofit/src/RooDstD0BG.cxx,
	  roofit/src/RooExponential.cxx, roofit/src/RooGExpModel.cxx,
	  roofit/src/RooGaussModel.cxx, roofit/src/RooGaussian.cxx,
	  roofit/src/RooHistPdf.cxx, roofit/src/RooKeysPdf.cxx,
	  roofit/src/RooLandau.cxx, roofit/src/RooNonCPEigenDecay.cxx,
	  roofit/src/RooNovosibirsk.cxx,
	  roofit/src/RooParametricStepFunction.cxx,
	  roofit/src/RooPolynomial.cxx, roofit/src/RooUnblindCPAsymVar.cxx,
	  roofit/src/RooUnblindOffset.cxx,
	  roofit/src/RooUnblindPrecision.cxx,
	  roofit/src/RooUnblindUniform.cxx, roofit/src/RooVoigtian.cxx,
	  roofitcore/src/Roo1DTable.cxx, roofitcore/src/RooAICRegistry.cxx,
	  roofitcore/src/RooAbsAnaConvPdf.cxx,
	  roofitcore/src/RooAbsArg.cxx, roofitcore/src/RooAbsBinning.cxx,
	  roofitcore/src/RooAbsCategory.cxx,
	  roofitcore/src/RooAbsCategoryLValue.cxx,
	  roofitcore/src/RooAbsCollection.cxx,
	  roofitcore/src/RooAbsData.cxx, roofitcore/src/RooAbsFunc.cxx,
	  roofitcore/src/RooAbsGenContext.cxx,
	  roofitcore/src/RooAbsGoodnessOfFit.cxx,
	  roofitcore/src/RooAbsHiddenReal.cxx,
	  roofitcore/src/RooAbsIntegrator.cxx,
	  roofitcore/src/RooAbsLValue.cxx,
	  roofitcore/src/RooAbsMCStudyModule.cxx,
	  roofitcore/src/RooAbsOptGoodnessOfFit.cxx,
	  roofitcore/src/RooAbsPdf.cxx, roofitcore/src/RooAbsProxy.cxx,
	  roofitcore/src/RooAbsReal.cxx,
	  roofitcore/src/RooAbsRealLValue.cxx,
	  roofitcore/src/RooAbsRootFinder.cxx,
	  roofitcore/src/RooAbsString.cxx,
	  roofitcore/src/RooAcceptReject.cxx,
	  roofitcore/src/RooAdaptiveGaussKronrodIntegrator1D.cxx,
	  roofitcore/src/RooAddGenContext.cxx,
	  roofitcore/src/RooAddModel.cxx, roofitcore/src/RooAddPdf.cxx,
	  roofitcore/src/RooAddition.cxx, roofitcore/src/RooArgList.cxx,
	  roofitcore/src/RooArgProxy.cxx, roofitcore/src/RooArgSet.cxx,
	  roofitcore/src/RooBinning.cxx,
	  roofitcore/src/RooBrentRootFinder.cxx,
	  roofitcore/src/RooCatType.cxx, roofitcore/src/RooCategory.cxx,
	  roofitcore/src/RooCategoryProxy.cxx,
	  roofitcore/src/RooCategorySharedProperties.cxx,
	  roofitcore/src/RooChi2Var.cxx,
	  roofitcore/src/RooClassFactory.cxx, roofitcore/src/RooCmdArg.cxx,
	  roofitcore/src/RooCmdConfig.cxx, roofitcore/src/RooComplex.cxx,
	  roofitcore/src/RooConstVar.cxx,
	  roofitcore/src/RooConvCoefVar.cxx,
	  roofitcore/src/RooConvGenContext.cxx,
	  roofitcore/src/RooConvIntegrandBinding.cxx,
	  roofitcore/src/RooCurve.cxx, roofitcore/src/RooCustomizer.cxx,
	  roofitcore/src/RooDLLSignificanceMCSModule.cxx,
	  roofitcore/src/RooDataHist.cxx,
	  roofitcore/src/RooDataProjBinding.cxx,
	  roofitcore/src/RooDataSet.cxx, roofitcore/src/RooDirItem.cxx,
	  roofitcore/src/RooDouble.cxx,
	  roofitcore/src/RooEffGenContext.cxx,
	  roofitcore/src/RooEffProd.cxx, roofitcore/src/RooEfficiency.cxx,
	  roofitcore/src/RooEllipse.cxx, roofitcore/src/RooErrorVar.cxx,
	  roofitcore/src/RooExtendPdf.cxx, roofitcore/src/RooFitResult.cxx,
	  roofitcore/src/RooFormula.cxx, roofitcore/src/RooFormulaVar.cxx,
	  roofitcore/src/RooGaussKronrodIntegrator1D.cxx,
	  roofitcore/src/RooGenCategory.cxx,
	  roofitcore/src/RooGenContext.cxx,
	  roofitcore/src/RooGenProdProj.cxx,
	  roofitcore/src/RooGenericPdf.cxx,
	  roofitcore/src/RooGlobalFunc.cxx,
	  roofitcore/src/RooGraphEdge.cxx, roofitcore/src/RooGraphNode.cxx,
	  roofitcore/src/RooGraphSpring.cxx, roofitcore/src/RooGrid.cxx,
	  roofitcore/src/RooHashTable.cxx, roofitcore/src/RooHist.cxx,
	  roofitcore/src/RooHistError.cxx, roofitcore/src/RooHtml.cxx,
	  roofitcore/src/RooImproperIntegrator1D.cxx,
	  roofitcore/src/RooInt.cxx, roofitcore/src/RooIntegrator1D.cxx,
	  roofitcore/src/RooIntegrator2D.cxx,
	  roofitcore/src/RooIntegratorBinding.cxx,
	  roofitcore/src/RooInvTransform.cxx,
	  roofitcore/src/RooLinTransBinning.cxx,
	  roofitcore/src/RooLinearVar.cxx,
	  roofitcore/src/RooLinkedList.cxx,
	  roofitcore/src/RooLinkedListElem.cxx,
	  roofitcore/src/RooLinkedListIter.cxx, roofitcore/src/RooList.cxx,
	  roofitcore/src/RooListProxy.cxx,
	  roofitcore/src/RooMCIntegrator.cxx,
	  roofitcore/src/RooMCStudy.cxx, roofitcore/src/RooMPSentinel.cxx,
	  roofitcore/src/RooMapCatEntry.cxx,
	  roofitcore/src/RooMappedCategory.cxx, roofitcore/src/RooMath.cxx,
	  roofitcore/src/RooMinuit.cxx, roofitcore/src/RooMsgService.cxx,
	  roofitcore/src/RooMultiCatIter.cxx,
	  roofitcore/src/RooMultiCategory.cxx,
	  roofitcore/src/RooNLLVar.cxx, roofitcore/src/RooNameReg.cxx,
	  roofitcore/src/RooNameSet.cxx,
	  roofitcore/src/RooNormListManager.cxx,
	  roofitcore/src/RooNormManager.cxx,
	  roofitcore/src/RooNormSetCache.cxx,
	  roofitcore/src/RooNumConvPdf.cxx,
	  roofitcore/src/RooNumConvolution.cxx,
	  roofitcore/src/RooNumIntConfig.cxx,
	  roofitcore/src/RooNumIntFactory.cxx,
	  roofitcore/src/RooNumber.cxx, roofitcore/src/RooPlot.cxx,
	  roofitcore/src/RooPlotable.cxx, roofitcore/src/RooPolyVar.cxx,
	  roofitcore/src/RooPrintable.cxx,
	  roofitcore/src/RooProdGenContext.cxx,
	  roofitcore/src/RooProdPdf.cxx, roofitcore/src/RooProduct.cxx,
	  roofitcore/src/RooPullVar.cxx,
	  roofitcore/src/RooQuasiRandomGenerator.cxx,
	  roofitcore/src/RooRandom.cxx,
	  roofitcore/src/RooRandomizeParamMCSModule.cxx,
	  roofitcore/src/RooRangeBinning.cxx,
	  roofitcore/src/RooRealAnalytic.cxx,
	  roofitcore/src/RooRealBinding.cxx,
	  roofitcore/src/RooRealConstant.cxx,
	  roofitcore/src/RooRealIntegral.cxx,
	  roofitcore/src/RooRealMPFE.cxx, roofitcore/src/RooRealProxy.cxx,
	  roofitcore/src/RooRealSumPdf.cxx, roofitcore/src/RooRealVar.cxx,
	  roofitcore/src/RooRealVarSharedProperties.cxx,
	  roofitcore/src/RooRefCountList.cxx,
	  roofitcore/src/RooResolutionModel.cxx,
	  roofitcore/src/RooScaledFunc.cxx,
	  roofitcore/src/RooSegmentedIntegrator1D.cxx,
	  roofitcore/src/RooSegmentedIntegrator2D.cxx,
	  roofitcore/src/RooSetPair.cxx, roofitcore/src/RooSetProxy.cxx,
	  roofitcore/src/RooSharedProperties.cxx,
	  roofitcore/src/RooSharedPropertiesList.cxx,
	  roofitcore/src/RooSimGenContext.cxx,
	  roofitcore/src/RooSimPdfBuilder.cxx,
	  roofitcore/src/RooSimultaneous.cxx,
	  roofitcore/src/RooStreamParser.cxx,
	  roofitcore/src/RooStringVar.cxx,
	  roofitcore/src/RooSuperCategory.cxx,
	  roofitcore/src/RooTObjWrap.cxx, roofitcore/src/RooTable.cxx,
	  roofitcore/src/RooThreshEntry.cxx,
	  roofitcore/src/RooThresholdCategory.cxx,
	  roofitcore/src/RooTrace.cxx, roofitcore/src/RooTreeData.cxx,
	  roofitcore/src/RooTruthModel.cxx,
	  roofitcore/src/RooUniformBinning.cxx,
	  roofitcore/src/RooWorkspace.cxx, rootd/inc/rootdp.h,
	  rootd/src/rootd.cxx, roots/src/roots.cxx, rootx/src/rootx.cxx,
	  rootx/src/rootxx.cxx, rpdutils/inc/rpddefs.h,
	  rpdutils/inc/rpderr.h, rpdutils/inc/rpdp.h,
	  rpdutils/src/daemon.cxx, rpdutils/src/error.cxx,
	  rpdutils/src/globus.cxx, rpdutils/src/net.cxx,
	  rpdutils/src/netpar.cxx, rpdutils/src/rpdutils.cxx,
	  rpdutils/src/ssh.cxx, ruby/inc/TRuby.h, ruby/src/TRuby.cxx,
	  ruby/src/drr.cxx, ruby/src/rrcommon.h, ruby/src/rrenums.h,
	  sapdb/inc/TSapDBResult.h, sapdb/inc/TSapDBRow.h,
	  sapdb/inc/TSapDBServer.h, sapdb/src/TSapDBResult.cxx,
	  sapdb/src/TSapDBRow.cxx, sapdb/src/TSapDBServer.cxx,
	  sessionviewer/inc/LinkDef.h,
	  sessionviewer/inc/TProofProgressDialog.h,
	  sessionviewer/inc/TProofProgressLog.h,
	  sessionviewer/inc/TSessionDialogs.h,
	  sessionviewer/inc/TSessionLogView.h,
	  sessionviewer/inc/TSessionViewer.h,
	  sessionviewer/src/TProofProgressDialog.cxx,
	  sessionviewer/src/TProofProgressLog.cxx,
	  sessionviewer/src/TSessionDialogs.cxx,
	  sessionviewer/src/TSessionLogView.cxx,
	  sessionviewer/src/TSessionViewer.cxx, smatrix/build/Makefile.am,
	  smatrix/build/doc_Makefile.am, smatrix/build/inc_Makefile.am,
	  smatrix/build/inc_Math_Makefile.am,
	  smatrix/build/test_Makefile.am, smatrix/inc/LinkDef.h,
	  smatrix/inc/LinkDefD32.h, smatrix/inc/Math/BinaryOpPolicy.h,
	  smatrix/inc/Math/BinaryOperators.h,
	  smatrix/inc/Math/CramerInversion.icc,
	  smatrix/inc/Math/CramerInversionSym.icc,
	  smatrix/inc/Math/Dfact.h, smatrix/inc/Math/Dfactir.h,
	  smatrix/inc/Math/Dfinv.h, smatrix/inc/Math/Dinv.h,
	  smatrix/inc/Math/Dsfact.h, smatrix/inc/Math/Dsinv.h,
	  smatrix/inc/Math/Expression.h, smatrix/inc/Math/Functions.h,
	  smatrix/inc/Math/HelperOps.h, smatrix/inc/Math/MConfig.h,
	  smatrix/inc/Math/MatrixFunctions.h,
	  smatrix/inc/Math/MatrixInversion.icc,
	  smatrix/inc/Math/MatrixRepresentationsStatic.h,
	  smatrix/inc/Math/SMatrix.h, smatrix/inc/Math/SMatrix.icc,
	  smatrix/inc/Math/SMatrixDfwd.h, smatrix/inc/Math/SMatrixFfwd.h,
	  smatrix/inc/Math/SVector.h, smatrix/inc/Math/SVector.icc,
	  smatrix/inc/Math/StaticCheck.h,
	  smatrix/inc/Math/UnaryOperators.h, spectrum/inc/LinkDef.h,
	  spectrum/inc/TSpectrum.h, spectrum/inc/TSpectrum2.h,
	  spectrum/inc/TSpectrum2Fit.h, spectrum/inc/TSpectrum2Transform.h,
	  spectrum/inc/TSpectrum3.h, spectrum/inc/TSpectrumFit.h,
	  spectrum/inc/TSpectrumTransform.h, spectrum/src/TSpectrum.cxx,
	  spectrum/src/TSpectrum2.cxx, spectrum/src/TSpectrum2Fit.cxx,
	  spectrum/src/TSpectrum2Transform.cxx,
	  spectrum/src/TSpectrum3.cxx, spectrum/src/TSpectrumFit.cxx,
	  spectrum/src/TSpectrumTransform.cxx,
	  spectrumpainter/inc/LinkDef.h,
	  spectrumpainter/inc/TSpectrum2Painter.h,
	  spectrumpainter/src/TSpectrum2Painter.cxx, splot/inc/TSPlot.h,
	  splot/src/TSPlot.cxx, sql/inc/LinkDef.h, sql/inc/TBufferSQL2.h,
	  sql/inc/TKeySQL.h, sql/inc/TSQLClassInfo.h, sql/inc/TSQLFile.h,
	  sql/inc/TSQLObjectData.h, sql/inc/TSQLStructure.h,
	  sql/src/TBufferSQL2.cxx, sql/src/TKeySQL.cxx,
	  sql/src/TSQLClassInfo.cxx, sql/src/TSQLFile.cxx,
	  sql/src/TSQLObjectData.cxx, sql/src/TSQLStructure.cxx,
	  srputils/src/SRPAuth.cxx, srputils/src/rpasswd.c,
	  srputils/src/rtconf.c, table/inc/LinkDef.h, table/inc/TCernLib.h,
	  table/inc/TChair.h, table/inc/TColumnView.h,
	  table/inc/TDataSet.h, table/inc/TDataSetIter.h,
	  table/inc/TDsKey.h, table/inc/TFileIter.h, table/inc/TFileSet.h,
	  table/inc/TGenericTable.h, table/inc/TIndexTable.h,
	  table/inc/TObjectSet.h, table/inc/TPoints3D.h,
	  table/inc/TPointsArray3D.h, table/inc/TPolyLineShape.h,
	  table/inc/TResponseTable.h, table/inc/TTable.h,
	  table/inc/TTable3Points.h, table/inc/TTableDescriptor.h,
	  table/inc/TTableIter.h, table/inc/TTableMap.h,
	  table/inc/TTablePadView3D.h, table/inc/TTablePoints.h,
	  table/inc/TTableSorter.h, table/inc/TVolume.h,
	  table/inc/TVolumePosition.h, table/inc/TVolumeView.h,
	  table/inc/TVolumeViewIter.h, table/inc/Ttypes.h,
	  table/inc/tableDescriptor.h, table/src/TCernLib.cxx,
	  table/src/TChair.cxx, table/src/TColumnView.cxx,
	  table/src/TDataSet.cxx, table/src/TDataSetIter.cxx,
	  table/src/TDsKey.cxx, table/src/TFileIter.cxx,
	  table/src/TFileSet.cxx, table/src/TGenericTable.cxx,
	  table/src/TIndexTable.cxx, table/src/TObjectSet.cxx,
	  table/src/TPoints3D.cxx, table/src/TPointsArray3D.cxx,
	  table/src/TPolyLineShape.cxx, table/src/TResponseTable.cxx,
	  table/src/TTable.cxx, table/src/TTable3Points.cxx,
	  table/src/TTableDescriptor.cxx, table/src/TTableIter.cxx,
	  table/src/TTableMap.cxx, table/src/TTablePadView3D.cxx,
	  table/src/TTablePoints.cxx, table/src/TTableSorter.cxx,
	  table/src/TVolume.cxx, table/src/TVolumePosition.cxx,
	  table/src/TVolumeView.cxx, table/src/TVolumeViewIter.cxx,
	  test/Aclock.cxx, test/Event.cxx, test/Hello.cxx,
	  test/MainEvent.cxx, test/RootIDE/TGRootIDE.cxx,
	  test/RootIDE/TGRootIDE.h, test/RootIDE/main.cxx,
	  test/TestVectors.cxx, test/Tetris.cxx, test/ctorture.cxx,
	  test/eventa.cxx, test/guitest.cxx, test/guiviewer.cxx,
	  test/guiviewer.h, test/hsimple.cxx, test/hworld.cxx,
	  test/hworld2.cxx, test/minexam.cxx, test/rhtml/rhtml.cxx,
	  test/stress.cxx, test/stressHepix.cxx, test/stressVector.cxx,
	  test/tcollbm.cxx, test/tcollex.cxx, test/tstring.cxx,
	  test/vlazy.cxx, test/vmatrix.cxx, test/vvector.cxx,
	  thread/inc/LinkDef.h, thread/inc/PosixThreadInc.h,
	  thread/inc/TAtomicCount.h, thread/inc/TAtomicCountGcc.h,
	  thread/inc/TAtomicCountPthread.h, thread/inc/TAtomicCountWin32.h,
	  thread/inc/TCondition.h, thread/inc/TConditionImp.h,
	  thread/inc/TLockFile.h, thread/inc/TMutex.h,
	  thread/inc/TMutexImp.h, thread/inc/TPosixThread.h,
	  thread/inc/TRWLock.h, thread/inc/TSemaphore.h,
	  thread/inc/TThread.h, thread/inc/TThreadFactory.h,
	  thread/inc/TThreadImp.h, thread/inc/TWin32Condition.h,
	  thread/inc/TWin32Mutex.h, thread/inc/TWin32Thread.h,
	  thread/inc/TWin32ThreadFactory.h, thread/src/TCondition.cxx,
	  thread/src/TConditionImp.cxx, thread/src/TLockFile.cxx,
	  thread/src/TMutex.cxx, thread/src/TMutexImp.cxx,
	  thread/src/TPosixCondition.cxx, thread/src/TPosixThread.cxx,
	  thread/src/TSemaphore.cxx, thread/src/TThread.cxx,
	  thread/src/TThreadFactory.cxx, thread/src/TThreadImp.cxx,
	  thread/src/TWin32Condition.cxx, thread/src/TWin32Mutex.cxx,
	  thread/src/TWin32Thread.cxx, thread/src/TWin32ThreadFactory.cxx,
	  tmva/inc/BinarySearchTree.h, tmva/inc/BinarySearchTreeNode.h,
	  tmva/inc/BinaryTree.h, tmva/inc/Config.h,
	  tmva/inc/Configurable.h, tmva/inc/CrossEntropy.h,
	  tmva/inc/DataSet.h, tmva/inc/DecisionTree.h,
	  tmva/inc/DecisionTreeNode.h, tmva/inc/Event.h,
	  tmva/inc/Factory.h, tmva/inc/FitterBase.h,
	  tmva/inc/GeneticAlgorithm.h, tmva/inc/GeneticFitter.h,
	  tmva/inc/GeneticGenes.h, tmva/inc/GeneticPopulation.h,
	  tmva/inc/GeneticRange.h, tmva/inc/GiniIndex.h,
	  tmva/inc/IFitterTarget.h, tmva/inc/IMethod.h, tmva/inc/IMetric.h,
	  tmva/inc/Interval.h, tmva/inc/KDEKernel.h, tmva/inc/MCFitter.h,
	  tmva/inc/MethodANNBase.h, tmva/inc/MethodBDT.h,
	  tmva/inc/MethodBase.h, tmva/inc/MethodBayesClassifier.h,
	  tmva/inc/MethodCFMlpANN.h, tmva/inc/MethodCFMlpANN_Utils.h,
	  tmva/inc/MethodCFMlpANN_def.h, tmva/inc/MethodCommittee.h,
	  tmva/inc/MethodCuts.h, tmva/inc/MethodFDA.h,
	  tmva/inc/MethodFisher.h, tmva/inc/MethodHMatrix.h,
	  tmva/inc/MethodKNN.h, tmva/inc/MethodLikelihood.h,
	  tmva/inc/MethodMLP.h, tmva/inc/MethodPDERS.h,
	  tmva/inc/MethodRuleFit.h, tmva/inc/MethodSVM.h,
	  tmva/inc/MethodSeedDistance.h, tmva/inc/MethodTMlpANN.h,
	  tmva/inc/MethodVariable.h, tmva/inc/Methods.h,
	  tmva/inc/MetricEuler.h, tmva/inc/MetricManhattan.h,
	  tmva/inc/MinuitFitter.h, tmva/inc/MinuitWrapper.h,
	  tmva/inc/MisClassificationError.h, tmva/inc/ModulekNN.h,
	  tmva/inc/MsgLogger.h, tmva/inc/Node.h, tmva/inc/NodekNN.h,
	  tmva/inc/Option.h, tmva/inc/PDF.h, tmva/inc/Ranking.h,
	  tmva/inc/Reader.h, tmva/inc/RootFinder.h, tmva/inc/Rule.h,
	  tmva/inc/RuleCut.h, tmva/inc/RuleEnsemble.h, tmva/inc/RuleFit.h,
	  tmva/inc/RuleFitAPI.h, tmva/inc/RuleFitParams.h,
	  tmva/inc/SdivSqrtSplusB.h, tmva/inc/SeedDistance.h,
	  tmva/inc/SeparationBase.h, tmva/inc/SimulatedAnnealing.h,
	  tmva/inc/SimulatedAnnealingFitter.h, tmva/inc/TActivation.h,
	  tmva/inc/TActivationChooser.h, tmva/inc/TActivationIdentity.h,
	  tmva/inc/TActivationRadial.h, tmva/inc/TActivationSigmoid.h,
	  tmva/inc/TActivationTanh.h, tmva/inc/TNeuron.h,
	  tmva/inc/TNeuronInput.h, tmva/inc/TNeuronInputAbs.h,
	  tmva/inc/TNeuronInputChooser.h, tmva/inc/TNeuronInputSqSum.h,
	  tmva/inc/TNeuronInputSum.h, tmva/inc/TSpline1.h,
	  tmva/inc/TSpline2.h, tmva/inc/TSynapse.h, tmva/inc/Timer.h,
	  tmva/inc/Tools.h, tmva/inc/Types.h,
	  tmva/inc/VariableDecorrTransform.h,
	  tmva/inc/VariableIdentityTransform.h, tmva/inc/VariableInfo.h,
	  tmva/inc/VariablePCATransform.h,
	  tmva/inc/VariableTransformBase.h, tmva/inc/Version.h,
	  tmva/inc/Volume.h, tmva/src/BinarySearchTree.cxx,
	  tmva/src/BinarySearchTreeNode.cxx, tmva/src/BinaryTree.cxx,
	  tmva/src/Config.cxx, tmva/src/Configurable.cxx,
	  tmva/src/CrossEntropy.cxx, tmva/src/DataSet.cxx,
	  tmva/src/DecisionTree.cxx, tmva/src/DecisionTreeNode.cxx,
	  tmva/src/Event.cxx, tmva/src/Factory.cxx,
	  tmva/src/FitterBase.cxx, tmva/src/GeneticAlgorithm.cxx,
	  tmva/src/GeneticFitter.cxx, tmva/src/GeneticGenes.cxx,
	  tmva/src/GeneticPopulation.cxx, tmva/src/GeneticRange.cxx,
	  tmva/src/GiniIndex.cxx, tmva/src/IFitterTarget.cxx,
	  tmva/src/IMetric.cxx, tmva/src/Interval.cxx,
	  tmva/src/KDEKernel.cxx, tmva/src/MCFitter.cxx,
	  tmva/src/MethodANNBase.cxx, tmva/src/MethodBDT.cxx,
	  tmva/src/MethodBase.cxx, tmva/src/MethodBayesClassifier.cxx,
	  tmva/src/MethodCFMlpANN.cxx, tmva/src/MethodCFMlpANN_Utils.cxx,
	  tmva/src/MethodCommittee.cxx, tmva/src/MethodCuts.cxx,
	  tmva/src/MethodFDA.cxx, tmva/src/MethodFisher.cxx,
	  tmva/src/MethodHMatrix.cxx, tmva/src/MethodKNN.cxx,
	  tmva/src/MethodLikelihood.cxx, tmva/src/MethodMLP.cxx,
	  tmva/src/MethodPDERS.cxx, tmva/src/MethodRuleFit.cxx,
	  tmva/src/MethodSVM.cxx, tmva/src/MethodSeedDistance.cxx,
	  tmva/src/MethodTMlpANN.cxx, tmva/src/MethodVariable.cxx,
	  tmva/src/MetricEuler.cxx, tmva/src/MetricManhattan.cxx,
	  tmva/src/MinuitFitter.cxx, tmva/src/MinuitWrapper.cxx,
	  tmva/src/MisClassificationError.cxx, tmva/src/ModulekNN.cxx,
	  tmva/src/MsgLogger.cxx, tmva/src/Node.cxx, tmva/src/Option.cxx,
	  tmva/src/PDF.cxx, tmva/src/Ranking.cxx, tmva/src/Reader.cxx,
	  tmva/src/RootFinder.cxx, tmva/src/Rule.cxx, tmva/src/RuleCut.cxx,
	  tmva/src/RuleEnsemble.cxx, tmva/src/RuleFit.cxx,
	  tmva/src/RuleFitAPI.cxx, tmva/src/RuleFitParams.cxx,
	  tmva/src/SdivSqrtSplusB.cxx, tmva/src/SeedDistance.cxx,
	  tmva/src/SeparationBase.cxx, tmva/src/SimulatedAnnealing.cxx,
	  tmva/src/SimulatedAnnealingFitter.cxx,
	  tmva/src/TActivationIdentity.cxx, tmva/src/TActivationRadial.cxx,
	  tmva/src/TActivationSigmoid.cxx, tmva/src/TActivationTanh.cxx,
	  tmva/src/TNeuron.cxx, tmva/src/TSpline1.cxx,
	  tmva/src/TSpline2.cxx, tmva/src/TSynapse.cxx, tmva/src/Timer.cxx,
	  tmva/src/Tools.cxx, tmva/src/Types.cxx,
	  tmva/src/VariableDecorrTransform.cxx,
	  tmva/src/VariableIdentityTransform.cxx,
	  tmva/src/VariableInfo.cxx, tmva/src/VariablePCATransform.cxx,
	  tmva/src/VariableTransformBase.cxx, tmva/src/Volume.cxx,
	  tmva/test/TMVAnalysis.C, tmva/test/TMVAnalysis.py,
	  tree/inc/LinkDef.h, tree/inc/LinkDef2.h, tree/inc/TBasket.h,
	  tree/inc/TBasketSQL.h, tree/inc/TBranch.h,
	  tree/inc/TBranchBrowsable.h, tree/inc/TBranchClones.h,
	  tree/inc/TBranchElement.h, tree/inc/TBranchObject.h,
	  tree/inc/TBranchRef.h, tree/inc/TBufferSQL.h, tree/inc/TChain.h,
	  tree/inc/TChainElement.h, tree/inc/TEntryList.h,
	  tree/inc/TEntryListBlock.h, tree/inc/TEntryListFromFile.h,
	  tree/inc/TEventList.h, tree/inc/TFriendElement.h,
	  tree/inc/TLeaf.h, tree/inc/TLeafB.h, tree/inc/TLeafC.h,
	  tree/inc/TLeafD.h, tree/inc/TLeafElement.h, tree/inc/TLeafF.h,
	  tree/inc/TLeafI.h, tree/inc/TLeafL.h, tree/inc/TLeafO.h,
	  tree/inc/TLeafObject.h, tree/inc/TLeafS.h, tree/inc/TNtuple.h,
	  tree/inc/TNtupleD.h, tree/inc/TQueryResult.h,
	  tree/inc/TSelector.h, tree/inc/TSelectorCint.h,
	  tree/inc/TSelectorList.h, tree/inc/TSelectorScalar.h,
	  tree/inc/TTree.h, tree/inc/TTreeCache.h, tree/inc/TTreeCloner.h,
	  tree/inc/TTreeResult.h, tree/inc/TTreeRow.h, tree/inc/TTreeSQL.h,
	  tree/inc/TVirtualIndex.h, tree/inc/TVirtualTreePlayer.h,
	  tree/src/TBasket.cxx, tree/src/TBasketSQL.cxx,
	  tree/src/TBranch.cxx, tree/src/TBranchBrowsable.cxx,
	  tree/src/TBranchClones.cxx, tree/src/TBranchElement.cxx,
	  tree/src/TBranchObject.cxx, tree/src/TBranchRef.cxx,
	  tree/src/TBufferSQL.cxx, tree/src/TChain.cxx,
	  tree/src/TChainElement.cxx, tree/src/TCut.cxx,
	  tree/src/TEntryList.cxx, tree/src/TEntryListBlock.cxx,
	  tree/src/TEntryListFromFile.cxx, tree/src/TEventList.cxx,
	  tree/src/TFriendElement.cxx, tree/src/TLeaf.cxx,
	  tree/src/TLeafB.cxx, tree/src/TLeafC.cxx, tree/src/TLeafD.cxx,
	  tree/src/TLeafElement.cxx, tree/src/TLeafF.cxx,
	  tree/src/TLeafI.cxx, tree/src/TLeafL.cxx, tree/src/TLeafO.cxx,
	  tree/src/TLeafObject.cxx, tree/src/TLeafS.cxx,
	  tree/src/TNtuple.cxx, tree/src/TNtupleD.cxx,
	  tree/src/TQueryResult.cxx, tree/src/TSelector.cxx,
	  tree/src/TSelectorCint.cxx, tree/src/TSelectorList.cxx,
	  tree/src/TTree.cxx, tree/src/TTreeCache.cxx,
	  tree/src/TTreeCloner.cxx, tree/src/TTreeResult.cxx,
	  tree/src/TTreeRow.cxx, tree/src/TTreeSQL.cxx,
	  tree/src/TVirtualIndex.cxx, tree/src/TVirtualTreePlayer.cxx,
	  treeplayer/inc/LinkDef.h, treeplayer/inc/TBranchProxy.h,
	  treeplayer/inc/TBranchProxyClassDescriptor.h,
	  treeplayer/inc/TBranchProxyDescriptor.h,
	  treeplayer/inc/TBranchProxyDirector.h,
	  treeplayer/inc/TBranchProxyTemplate.h,
	  treeplayer/inc/TChainIndex.h, treeplayer/inc/TFileDrawMap.h,
	  treeplayer/inc/TFormLeafInfo.h,
	  treeplayer/inc/TFormLeafInfoReference.h,
	  treeplayer/inc/TFriendProxy.h,
	  treeplayer/inc/TFriendProxyDescriptor.h,
	  treeplayer/inc/TRefArrayProxy.h, treeplayer/inc/TRefProxy.h,
	  treeplayer/inc/TSelectorDraw.h,
	  treeplayer/inc/TSelectorEntries.h,
	  treeplayer/inc/TTreeDrawArgsParser.h,
	  treeplayer/inc/TTreeFormula.h,
	  treeplayer/inc/TTreeFormulaManager.h,
	  treeplayer/inc/TTreeIndex.h, treeplayer/inc/TTreePlayer.h,
	  treeplayer/inc/TTreeProxyGenerator.h,
	  treeplayer/src/TBranchProxy.cxx,
	  treeplayer/src/TBranchProxyClassDescriptor.cxx,
	  treeplayer/src/TBranchProxyDescriptor.cxx,
	  treeplayer/src/TBranchProxyDirector.cxx,
	  treeplayer/src/TChainIndex.cxx, treeplayer/src/TFileDrawMap.cxx,
	  treeplayer/src/TFormLeafInfo.cxx,
	  treeplayer/src/TFormLeafInfoReference.cxx,
	  treeplayer/src/TFriendProxy.cxx,
	  treeplayer/src/TFriendProxyDescriptor.cxx,
	  treeplayer/src/TRefArrayProxy.cxx, treeplayer/src/TRefProxy.cxx,
	  treeplayer/src/TSelectorDraw.cxx,
	  treeplayer/src/TSelectorEntries.cxx,
	  treeplayer/src/TTreeDrawArgsParser.cxx,
	  treeplayer/src/TTreeFormula.cxx,
	  treeplayer/src/TTreeFormulaManager.cxx,
	  treeplayer/src/TTreeIndex.cxx, treeplayer/src/TTreePlayer.cxx,
	  treeplayer/src/TTreeProxyGenerator.cxx,
	  treeviewer/inc/HelpTextTV.h, treeviewer/inc/LinkDef.h,
	  treeviewer/inc/LinkDefWin32.h, treeviewer/inc/TParallelCoord.h,
	  treeviewer/inc/TParallelCoordEditor.h,
	  treeviewer/inc/TParallelCoordRange.h,
	  treeviewer/inc/TParallelCoordVar.h, treeviewer/inc/TSpider.h,
	  treeviewer/inc/TSpiderEditor.h, treeviewer/inc/TTVLVContainer.h,
	  treeviewer/inc/TTVSession.h, treeviewer/inc/TTreeViewer.h,
	  treeviewer/src/HelpTextTV.cxx, treeviewer/src/TParallelCoord.cxx,
	  treeviewer/src/TParallelCoordEditor.cxx,
	  treeviewer/src/TParallelCoordRange.cxx,
	  treeviewer/src/TParallelCoordVar.cxx, treeviewer/src/TSpider.cxx,
	  treeviewer/src/TSpiderEditor.cxx,
	  treeviewer/src/TTVLVContainer.cxx, treeviewer/src/TTVSession.cxx,
	  treeviewer/src/TTreeViewer.cxx, tutorials/fit/minuit2FitBench.C,
	  tutorials/fit/minuit2FitBench2D.C,
	  tutorials/fit/minuit2GausFit.C, tutorials/geant3tasks.C,
	  unix/inc/TUnixSystem.h, unix/src/TUnixSystem.cxx,
	  unuran/inc/LinkDef.h, unuran/inc/TUnuran.h,
	  unuran/inc/TUnuranBaseDist.h, unuran/inc/TUnuranContDist.h,
	  unuran/inc/TUnuranDiscrDist.h, unuran/inc/TUnuranEmpDist.h,
	  unuran/inc/TUnuranMultiContDist.h, unuran/src/TUnuran.cxx,
	  unuran/src/TUnuranContDist.cxx, unuran/src/TUnuranDiscrDist.cxx,
	  unuran/src/TUnuranEmpDist.cxx,
	  unuran/src/TUnuranMultiContDist.cxx, unuran/src/UnuranDistr.h,
	  unuran/src/UnuranDistrAdapter.h, unuran/src/UnuranRng.h,
	  utils/src/RStl.cxx, utils/src/RStl.h, utils/src/rlibmap.cxx,
	  utils/src/rootcint.cxx, vmc/inc/LinkDef.h,
	  vmc/inc/TGeoMCGeometry.h, vmc/inc/TMCOptical.h,
	  vmc/inc/TMCParticleType.h, vmc/inc/TMCProcess.h,
	  vmc/inc/TMCVerbose.h, vmc/inc/TPDGCode.h, vmc/inc/TVirtualMC.h,
	  vmc/inc/TVirtualMCApplication.h, vmc/inc/TVirtualMCGeometry.h,
	  vmc/inc/TVirtualMCStack.h, vmc/src/TGeoMCGeometry.cxx,
	  vmc/src/TMCVerbose.cxx, vmc/src/TVirtualMC.cxx,
	  vmc/src/TVirtualMCApplication.cxx,
	  vmc/src/TVirtualMCGeometry.cxx, vmc/src/TVirtualMCStack.cxx,
	  win32gdk/inc/LinkDef.h, win32gdk/inc/TGWin32.h,
	  win32gdk/inc/TGWin32GL.h, win32gdk/inc/TGWin32ProxyBase.h,
	  win32gdk/inc/TGWin32ProxyDefs.h,
	  win32gdk/inc/TGWin32VirtualGLProxy.h, win32gdk/inc/xatom.h,
	  win32gdk/src/TGWin32.cxx, win32gdk/src/TGWin32GL.cxx,
	  win32gdk/src/TGWin32ProxyBase.cxx,
	  win32gdk/src/TGWin32VirtualGLProxy.cxx,
	  win32gdk/src/TGWin32VirtualXProxy.cxx, win32gdk/src/gifdecode.c,
	  win32gdk/src/gifencode.c, win32gdk/src/gifquantize.c,
	  winnt/inc/LinkDef.h, winnt/inc/TWin32SplashThread.h,
	  winnt/inc/TWinNTSystem.h, winnt/inc/Win32Constants.h,
	  winnt/src/TWinNTSystem.cxx, winnt/src/Win32Splash.cxx,
	  x11/inc/LinkDef.h, x11/inc/TGX11.h, x11/src/GX11Gui.cxx,
	  x11/src/Rotated.cxx, x11/src/TGX11.cxx, x11ttf/inc/TGX11TTF.h,
	  x11ttf/src/TGX11TTF.cxx, x3d/inc/TViewerX3D.h, x3d/inc/x3d.h,
	  x3d/src/TViewerX3D.cxx, x3d/src/x3d.c, xml/inc/LinkDef.h,
	  xml/inc/TBufferXML.h, xml/inc/TKeyXML.h, xml/inc/TXMLEngine.h,
	  xml/inc/TXMLFile.h, xml/inc/TXMLPlayer.h, xml/inc/TXMLSetup.h,
	  xml/src/TBufferXML.cxx, xml/src/TKeyXML.cxx,
	  xml/src/TXMLEngine.cxx, xml/src/TXMLFile.cxx,
	  xml/src/TXMLPlayer.cxx, xml/src/TXMLSetup.cxx,
	  xmlparser/inc/TDOMParser.h, xmlparser/inc/TSAXParser.h,
	  xmlparser/inc/TXMLAttr.h, xmlparser/inc/TXMLDocument.h,
	  xmlparser/inc/TXMLNode.h, xmlparser/inc/TXMLParser.h,
	  xmlparser/src/TDOMParser.cxx, xmlparser/src/TSAXParser.cxx,
	  xmlparser/src/TXMLAttr.cxx, xmlparser/src/TXMLDocument.cxx,
	  xmlparser/src/TXMLNode.cxx, xmlparser/src/TXMLParser.cxx,
	  zip/inc/Bits.h, zip/inc/Tailor.h, zip/inc/ZDeflate.h,
	  zip/inc/ZIP.h, zip/inc/ZTrees.h, zip/inc/zutil.h,
	  zip/src/ZInflate.c, zip/src/deflate.c, zip/src/zutil.c: imported
	  svn:keywords Id property

2007-09-19 19:49  rdm

	* [r19825] alien/inc/TAlien.h, alien/inc/TAlienCollection.h,
	  alien/inc/TAlienDirectory.h, alien/inc/TAlienFile.h,
	  alien/inc/TAlienJDL.h, alien/inc/TAlienJob.h,
	  alien/inc/TAlienJobStatus.h, alien/inc/TAlienJobStatusList.h,
	  alien/inc/TAlienMasterJob.h, alien/inc/TAlienMasterJobStatus.h,
	  alien/inc/TAlienResult.h, alien/inc/TAlienSystem.h,
	  alien/src/TAlien.cxx, alien/src/TAlienCollection.cxx,
	  alien/src/TAlienDirectory.cxx, alien/src/TAlienFile.cxx,
	  alien/src/TAlienJDL.cxx, alien/src/TAlienJob.cxx,
	  alien/src/TAlienJobStatus.cxx, alien/src/TAlienJobStatusList.cxx,
	  alien/src/TAlienMasterJob.cxx,
	  alien/src/TAlienMasterJobStatus.cxx, alien/src/TAlienResult.cxx,
	  alien/src/TAlienSystem.cxx, asimage/inc/LinkDef.h,
	  asimage/inc/LinkDefGS.h, asimage/inc/LinkDefGui.h,
	  asimage/inc/TASImage.h, asimage/inc/TASImagePlugin.h,
	  asimage/inc/TASPaletteEditor.h, asimage/inc/TASPluginGS.h,
	  asimage/src/TASImage.cxx, asimage/src/TASPaletteEditor.cxx,
	  asimage/src/TASPluginGS.cxx, asimage/src/TASPolyUtils.c,
	  auth/inc/AFSAuth.h, auth/inc/AFSAuthTypes.h,
	  auth/inc/AuthConst.h, auth/inc/DaemonUtils.h, auth/inc/TAFS.h,
	  auth/inc/TAuthenticate.h, auth/inc/THostAuth.h,
	  auth/inc/TRootAuth.h, auth/inc/TRootSecContext.h,
	  auth/inc/rsaaux.h, auth/inc/rsadef.h, auth/inc/rsafun.h,
	  auth/inc/rsalib.h, auth/src/AFSAuth.cxx,
	  auth/src/DaemonUtils.cxx, auth/src/TAFS.cxx,
	  auth/src/TAuthenticate.cxx, auth/src/THostAuth.cxx,
	  auth/src/TRootAuth.cxx, auth/src/TRootSecContext.cxx,
	  auth/src/rsaaux.cxx, auth/src/rsafun.cxx, auth/src/rsalib.cxx,
	  base/inc/Bswapcpy.h, base/inc/Buttons.h, base/inc/Bytes.h,
	  base/inc/Byteswap.h, base/inc/DllImport.h,
	  base/inc/GLConstants.h, base/inc/Gtypes.h, base/inc/GuiTypes.h,
	  base/inc/Htypes.h, base/inc/KeySymbols.h, base/inc/LinkDef1.h,
	  base/inc/LinkDef2.h, base/inc/LinkDef3.h, base/inc/LinkDef4.h,
	  base/inc/MessageTypes.h, base/inc/RConfig.h,
	  base/inc/RQ_OBJECT.h, base/inc/RStipples.h, base/inc/Riosfwd.h,
	  base/inc/Riostream.h, base/inc/Rpair.h, base/inc/Rstrstream.h,
	  base/inc/Rtypeinfo.h, base/inc/Rtypes.h, base/inc/RtypesCint.h,
	  base/inc/RtypesImp.h, base/inc/TApplication.h,
	  base/inc/TApplicationImp.h, base/inc/TAttAxis.h,
	  base/inc/TAttBBox.h, base/inc/TAttFill.h, base/inc/TAttLine.h,
	  base/inc/TAttMarker.h, base/inc/TAttPad.h, base/inc/TAttText.h,
	  base/inc/TBenchmark.h, base/inc/TBrowser.h,
	  base/inc/TBrowserImp.h, base/inc/TBuffer.h, base/inc/TBuffer3D.h,
	  base/inc/TBuffer3DTypes.h, base/inc/TCanvasImp.h,
	  base/inc/TColor.h, base/inc/TContextMenu.h,
	  base/inc/TContextMenuImp.h, base/inc/TControlBarImp.h,
	  base/inc/TDatime.h, base/inc/TDirectory.h, base/inc/TEnv.h,
	  base/inc/TError.h, base/inc/TException.h, base/inc/TExec.h,
	  base/inc/TFileCollection.h, base/inc/TFileInfo.h,
	  base/inc/TFolder.h, base/inc/TGuiFactory.h,
	  base/inc/TInetAddress.h, base/inc/TMD5.h, base/inc/TMacro.h,
	  base/inc/TMathBase.h, base/inc/TMemberInspector.h,
	  base/inc/TMessageHandler.h, base/inc/TNamed.h,
	  base/inc/TObjString.h, base/inc/TObject.h, base/inc/TObjectSpy.h,
	  base/inc/TPRegexp.h, base/inc/TParameter.h,
	  base/inc/TPluginManager.h, base/inc/TPoint.h,
	  base/inc/TProcessID.h, base/inc/TProcessUUID.h,
	  base/inc/TQClass.h, base/inc/TQCommand.h,
	  base/inc/TQConnection.h, base/inc/TQObject.h, base/inc/TROOT.h,
	  base/inc/TRedirectOutputGuard.h, base/inc/TRef.h,
	  base/inc/TRefCnt.h, base/inc/TRemoteObject.h,
	  base/inc/TRootIOCtor.h, base/inc/TStopwatch.h,
	  base/inc/TStorage.h, base/inc/TString.h, base/inc/TStyle.h,
	  base/inc/TSysEvtHandler.h, base/inc/TSystem.h,
	  base/inc/TSystemDirectory.h, base/inc/TSystemFile.h,
	  base/inc/TTask.h, base/inc/TTime.h, base/inc/TTimeStamp.h,
	  base/inc/TTimer.h, base/inc/TUUID.h, base/inc/TUrl.h,
	  base/inc/TVersionCheck.h, base/inc/TVirtualFFT.h,
	  base/inc/TVirtualFitter.h, base/inc/TVirtualGL.h,
	  base/inc/TVirtualMonitoring.h, base/inc/TVirtualMutex.h,
	  base/inc/TVirtualPS.h, base/inc/TVirtualPad.h,
	  base/inc/TVirtualPadEditor.h, base/inc/TVirtualPerfStats.h,
	  base/inc/TVirtualViewer3D.h, base/inc/TVirtualX.h,
	  base/inc/Varargs.h, base/inc/Windows4Root.h, base/inc/config.h,
	  base/src/Match.cxx, base/src/String.cxx, base/src/Stringio.cxx,
	  base/src/TApplication.cxx, base/src/TAtt3D.cxx,
	  base/src/TAttAxis.cxx, base/src/TAttBBox.cxx,
	  base/src/TAttFill.cxx, base/src/TAttLine.cxx,
	  base/src/TAttMarker.cxx, base/src/TAttPad.cxx,
	  base/src/TAttText.cxx, base/src/TBrowser.cxx,
	  base/src/TBrowserImp.cxx, base/src/TBuffer.cxx,
	  base/src/TBuffer3D.cxx, base/src/TColor.cxx,
	  base/src/TContextMenu.cxx, base/src/TDatime.cxx,
	  base/src/TDirectory.cxx, base/src/TEnv.cxx, base/src/TError.cxx,
	  base/src/TException.cxx, base/src/TExec.cxx,
	  base/src/TFileCollection.cxx, base/src/TFileInfo.cxx,
	  base/src/TFolder.cxx, base/src/TGuiFactory.cxx,
	  base/src/TInetAddress.cxx, base/src/TMD5.cxx,
	  base/src/TMacro.cxx, base/src/TMathBase.cxx,
	  base/src/TMessageHandler.cxx, base/src/TNamed.cxx,
	  base/src/TObjString.cxx, base/src/TObject.cxx,
	  base/src/TObjectSpy.cxx, base/src/TPRegexp.cxx,
	  base/src/TParameter.cxx, base/src/TPluginManager.cxx,
	  base/src/TProcessID.cxx, base/src/TProcessUUID.cxx,
	  base/src/TQCommand.cxx, base/src/TQConnection.cxx,
	  base/src/TQObject.cxx, base/src/TROOT.cxx, base/src/TRef.cxx,
	  base/src/TRefCnt.cxx, base/src/TRegexp.cxx,
	  base/src/TRemoteObject.cxx, base/src/TStopwatch.cxx,
	  base/src/TStorage.cxx, base/src/TString.cxx,
	  base/src/TStringLong.cxx, base/src/TStyle.cxx,
	  base/src/TSysEvtHandler.cxx, base/src/TSystem.cxx,
	  base/src/TSystemDirectory.cxx, base/src/TSystemFile.cxx,
	  base/src/TTask.cxx, base/src/TTime.cxx, base/src/TTimeStamp.cxx,
	  base/src/TTimer.cxx, base/src/TUUID.cxx, base/src/TUrl.cxx,
	  base/src/TVirtualFFT.cxx, base/src/TVirtualFitter.cxx,
	  base/src/TVirtualGL.cxx, base/src/TVirtualMonitoring.cxx,
	  base/src/TVirtualMutex.cxx, base/src/TVirtualPS.cxx,
	  base/src/TVirtualPad.cxx, base/src/TVirtualPadEditor.cxx,
	  base/src/TVirtualPerfStats.cxx, base/src/TVirtualViewer3D.cxx,
	  base/src/TVirtualX.cxx, build/package/msi/makemsi.cxx,
	  build/rmkdepend/mainroot.cxx, build/win/w32pragma.h,
	  castor/inc/LinkDef.h, castor/inc/TCastorFile.h,
	  castor/src/TCastorFile.cxx, chirp/inc/TChirpFile.h,
	  chirp/src/TChirpFile.cxx, cint7/tool/rmkdepend/mainroot.cxx,
	  cintex/inc/Cintex/Cintex.h, cintex/src/CINTClassBuilder.cxx,
	  cintex/src/CINTClassBuilder.h, cintex/src/CINTEnumBuilder.cxx,
	  cintex/src/CINTEnumBuilder.h, cintex/src/CINTFunctionBuilder.cxx,
	  cintex/src/CINTFunctionBuilder.h, cintex/src/CINTFunctional.cxx,
	  cintex/src/CINTFunctional.h, cintex/src/CINTScopeBuilder.cxx,
	  cintex/src/CINTScopeBuilder.h, cintex/src/CINTTypedefBuilder.cxx,
	  cintex/src/CINTTypedefBuilder.h, cintex/src/CINTUtils.cxx,
	  cintex/src/CINTVariableBuilder.cxx,
	  cintex/src/CINTVariableBuilder.h, cintex/src/CINTdefs.h,
	  cintex/src/Cintex.cxx, cintex/src/ROOTClassEnhancer.cxx,
	  cintex/src/ROOTClassEnhancer.h, clarens/inc/LinkDef.h,
	  clarens/inc/TClProxy.h, clarens/inc/TClSession.h,
	  clarens/inc/TClarens.h, clarens/inc/TEcho.h, clarens/inc/TGM.h,
	  clarens/inc/TLM.h, clarens/inc/TSAM.h, clarens/inc/TXmlRpc.h,
	  clarens/src/TClProxy.cxx, clarens/src/TClSession.cxx,
	  clarens/src/TClarens.cxx, clarens/src/TEcho.cxx,
	  clarens/src/TGM.cxx, clarens/src/TLM.cxx, clarens/src/TSAM.cxx,
	  clarens/src/TXmlRpc.cxx, clib/inc/Getline.h, clib/inc/LinkDef.h,
	  clib/inc/mmalloc.h, clib/inc/mmconfig.h, clib/inc/mmprivate.h,
	  clib/inc/snprintf.h, clib/src/Demangle.c, clib/src/Getline.c,
	  clib/src/attach.c, clib/src/getpagesize.c, clib/src/keys.c,
	  clib/src/mmapsup.c, clib/src/mmcheck.c, clib/src/mmtrace.c,
	  clib/src/mvalloc.c, clib/src/snprintf.c, config/precompile.h.in,
	  config/rootrc.in, cont/inc/LinkDef.h, cont/inc/TArray.h,
	  cont/inc/TArrayC.h, cont/inc/TArrayD.h, cont/inc/TArrayF.h,
	  cont/inc/TArrayI.h, cont/inc/TArrayL.h, cont/inc/TArrayL64.h,
	  cont/inc/TArrayS.h, cont/inc/TBits.h, cont/inc/TBtree.h,
	  cont/inc/TClassTable.h, cont/inc/TClonesArray.h,
	  cont/inc/TCollection.h, cont/inc/TCollectionProxyInfo.h,
	  cont/inc/TExMap.h, cont/inc/THashList.h, cont/inc/THashTable.h,
	  cont/inc/TList.h, cont/inc/TMap.h, cont/inc/TObjArray.h,
	  cont/inc/TObjectTable.h, cont/inc/TOrdCollection.h,
	  cont/inc/TRefArray.h, cont/inc/TRefTable.h,
	  cont/inc/TSeqCollection.h, cont/inc/TSortedList.h,
	  cont/inc/TVirtualCollectionProxy.h, cont/src/TArray.cxx,
	  cont/src/TArrayC.cxx, cont/src/TArrayD.cxx, cont/src/TArrayF.cxx,
	  cont/src/TArrayI.cxx, cont/src/TArrayL.cxx,
	  cont/src/TArrayL64.cxx, cont/src/TArrayS.cxx, cont/src/TBits.cxx,
	  cont/src/TBtree.cxx, cont/src/TClassTable.cxx,
	  cont/src/TClonesArray.cxx, cont/src/TCollection.cxx,
	  cont/src/TExMap.cxx, cont/src/THashList.cxx,
	  cont/src/THashTable.cxx, cont/src/TList.cxx, cont/src/TMap.cxx,
	  cont/src/TObjArray.cxx, cont/src/TObjectTable.cxx,
	  cont/src/TOrdCollection.cxx, cont/src/TRefArray.cxx,
	  cont/src/TRefTable.cxx, cont/src/TSeqCollection.cxx,
	  dcache/inc/TDCacheFile.h, dcache/src/TDCacheFile.cxx,
	  eg/inc/Hepevt.h, eg/inc/LinkDef.h, eg/inc/TAttParticle.h,
	  eg/inc/TDatabasePDG.h, eg/inc/TDecayChannel.h,
	  eg/inc/TGenerator.h, eg/inc/TParticle.h,
	  eg/inc/TParticleClassPDG.h, eg/inc/TParticlePDG.h,
	  eg/inc/TPrimary.h, eg/inc/TVirtualMCDecayer.h, eg/inc/cfortran.h,
	  eg/src/TAttParticle.cxx, eg/src/TDatabasePDG.cxx,
	  eg/src/TDecayChannel.cxx, eg/src/TGenerator.cxx,
	  eg/src/TParticle.cxx, eg/src/TParticleClassPDG.cxx,
	  eg/src/TParticlePDG.cxx, eg/src/TPrimary.cxx,
	  eg/src/TVirtualMCDecayer.cxx, fftw/inc/LinkDef.h,
	  fftw/inc/TFFTComplex.h, fftw/inc/TFFTComplexReal.h,
	  fftw/inc/TFFTReal.h, fftw/inc/TFFTRealComplex.h,
	  fftw/src/TFFTComplex.cxx, fftw/src/TFFTComplexReal.cxx,
	  fftw/src/TFFTReal.cxx, fftw/src/TFFTRealComplex.cxx,
	  fitpanel/inc/LinkDef.h, fitpanel/inc/TFitEditor.h,
	  fitpanel/inc/TFitParametersDialog.h, fitpanel/src/TFitEditor.cxx,
	  fitpanel/src/TFitParametersDialog.cxx, foam/inc/TFoam.h,
	  foam/inc/TFoamCell.h, foam/inc/TFoamIntegrand.h,
	  foam/inc/TFoamMaxwt.h, foam/inc/TFoamVect.h, foam/src/TFoam.cxx,
	  foam/src/TFoamCell.cxx, foam/src/TFoamIntegrand.cxx,
	  foam/src/TFoamMaxwt.cxx, foam/src/TFoamVect.cxx,
	  fumili/inc/LinkDef.h, fumili/inc/TFumili.h,
	  fumili/src/TFumili.cxx, g3d/inc/LinkDef.h, g3d/inc/TAxis3D.h,
	  g3d/inc/TBRIK.h, g3d/inc/TCONE.h, g3d/inc/TCONS.h,
	  g3d/inc/TCTUB.h, g3d/inc/TELTU.h, g3d/inc/TGTRA.h,
	  g3d/inc/TGeometry.h, g3d/inc/THYPE.h, g3d/inc/THelix.h,
	  g3d/inc/TMarker3DBox.h, g3d/inc/TMaterial.h, g3d/inc/TMixture.h,
	  g3d/inc/TNode.h, g3d/inc/TNodeDiv.h, g3d/inc/TPARA.h,
	  g3d/inc/TPCON.h, g3d/inc/TPGON.h, g3d/inc/TPointSet3D.h,
	  g3d/inc/TPoints3DABC.h, g3d/inc/TPolyLine3D.h,
	  g3d/inc/TPolyMarker3D.h, g3d/inc/TRotMatrix.h, g3d/inc/TSPHE.h,
	  g3d/inc/TShape.h, g3d/inc/TTRAP.h, g3d/inc/TTRD1.h,
	  g3d/inc/TTRD2.h, g3d/inc/TTUBE.h, g3d/inc/TTUBS.h,
	  g3d/inc/TView3D.h, g3d/inc/TXTRU.h, g3d/inc/X3DBuffer.h,
	  g3d/inc/X3DDefs.h, g3d/src/TAxis3D.cxx, g3d/src/TBRIK.cxx,
	  g3d/src/TCONE.cxx, g3d/src/TCONS.cxx, g3d/src/TCTUB.cxx,
	  g3d/src/TELTU.cxx, g3d/src/TGTRA.cxx, g3d/src/TGeometry.cxx,
	  g3d/src/THYPE.cxx, g3d/src/THelix.cxx, g3d/src/TMarker3DBox.cxx,
	  g3d/src/TMaterial.cxx, g3d/src/TMixture.cxx, g3d/src/TNode.cxx,
	  g3d/src/TNodeDiv.cxx, g3d/src/TPARA.cxx, g3d/src/TPCON.cxx,
	  g3d/src/TPGON.cxx, g3d/src/TPointSet3D.cxx,
	  g3d/src/TPoints3DABC.cxx, g3d/src/TPolyLine3D.cxx,
	  g3d/src/TPolyMarker3D.cxx, g3d/src/TRotMatrix.cxx,
	  g3d/src/TSPHE.cxx, g3d/src/TShape.cxx, g3d/src/TTRAP.cxx,
	  g3d/src/TTRD1.cxx, g3d/src/TTRD2.cxx, g3d/src/TTUBE.cxx,
	  g3d/src/TTUBS.cxx, g3d/src/TView3D.cxx, g3d/src/TXTRU.cxx,
	  g4root/inc/LinkDef.h, g4root/inc/TG4RootDetectorConstruction.h,
	  g4root/inc/TG4RootNavMgr.h, g4root/inc/TG4RootNavigator.h,
	  g4root/inc/TG4RootSolid.h,
	  g4root/src/TG4RootDetectorConstruction.cxx,
	  g4root/src/TG4RootNavMgr.cxx, g4root/src/TG4RootNavigator.cxx,
	  g4root/src/TG4RootSolid.cxx, gdml/ROOTwriter.py,
	  gdml/inc/LinkDef.h, gdml/inc/TGDMLParse.h,
	  gdml/src/TGDMLParse.cxx, gdml/writer.py, ged/inc/HelpSMText.h,
	  ged/inc/LinkDef.h, ged/inc/TArrowEditor.h,
	  ged/inc/TAttFillEditor.h, ged/inc/TAttLineEditor.h,
	  ged/inc/TAttMarkerEditor.h, ged/inc/TAttTextEditor.h,
	  ged/inc/TAxisEditor.h, ged/inc/TCurlyArcEditor.h,
	  ged/inc/TCurlyLineEditor.h, ged/inc/TF1Editor.h,
	  ged/inc/TFunctionParametersDialog.h, ged/inc/TGedEditor.h,
	  ged/inc/TGedFrame.h, ged/inc/TGedMarkerSelect.h,
	  ged/inc/TGedPatternSelect.h, ged/inc/TGraphEditor.h,
	  ged/inc/TH1Editor.h, ged/inc/TH2Editor.h, ged/inc/TLineEditor.h,
	  ged/inc/TStyleDialog.h, ged/inc/TStyleManager.h,
	  ged/inc/TStylePreview.h, ged/src/HelpSMText.cxx,
	  ged/src/TArrowEditor.cxx, ged/src/TAttFillEditor.cxx,
	  ged/src/TAttLineEditor.cxx, ged/src/TAttMarkerEditor.cxx,
	  ged/src/TAttTextEditor.cxx, ged/src/TAxisEditor.cxx,
	  ged/src/TCurlyArcEditor.cxx, ged/src/TCurlyLineEditor.cxx,
	  ged/src/TF1Editor.cxx, ged/src/TFunctionParametersDialog.cxx,
	  ged/src/TGedEditor.cxx, ged/src/TGedFrame.cxx,
	  ged/src/TGedMarkerSelect.cxx, ged/src/TGedPatternSelect.cxx,
	  ged/src/TGraphEditor.cxx, ged/src/TLineEditor.cxx,
	  ged/src/TStyleDialog.cxx, ged/src/TStyleManager.cxx,
	  ged/src/TStylePreview.cxx, geom/inc/LinkDef1.h,
	  geom/inc/LinkDef2.h, geom/inc/TGeoArb8.h, geom/inc/TGeoAtt.h,
	  geom/inc/TGeoBBox.h, geom/inc/TGeoBoolNode.h,
	  geom/inc/TGeoBuilder.h, geom/inc/TGeoCache.h,
	  geom/inc/TGeoCompositeShape.h, geom/inc/TGeoCone.h,
	  geom/inc/TGeoElement.h, geom/inc/TGeoEltu.h,
	  geom/inc/TGeoHalfSpace.h, geom/inc/TGeoHelix.h,
	  geom/inc/TGeoHype.h, geom/inc/TGeoManager.h,
	  geom/inc/TGeoMaterial.h, geom/inc/TGeoMatrix.h,
	  geom/inc/TGeoMedium.h, geom/inc/TGeoNavigator.h,
	  geom/inc/TGeoNode.h, geom/inc/TGeoPara.h,
	  geom/inc/TGeoParaboloid.h, geom/inc/TGeoPatternFinder.h,
	  geom/inc/TGeoPcon.h, geom/inc/TGeoPgon.h,
	  geom/inc/TGeoPhysicalNode.h, geom/inc/TGeoPolygon.h,
	  geom/inc/TGeoScaledShape.h, geom/inc/TGeoShape.h,
	  geom/inc/TGeoShapeAssembly.h, geom/inc/TGeoSphere.h,
	  geom/inc/TGeoTorus.h, geom/inc/TGeoTrd1.h, geom/inc/TGeoTrd2.h,
	  geom/inc/TGeoTube.h, geom/inc/TGeoVolume.h,
	  geom/inc/TGeoVoxelFinder.h, geom/inc/TGeoXtru.h,
	  geom/inc/TVirtualGeoPainter.h, geom/inc/TVirtualGeoTrack.h,
	  geom/src/TGeoArb8.cxx, geom/src/TGeoAtt.cxx,
	  geom/src/TGeoBBox.cxx, geom/src/TGeoBoolNode.cxx,
	  geom/src/TGeoBuilder.cxx, geom/src/TGeoCache.cxx,
	  geom/src/TGeoCompositeShape.cxx, geom/src/TGeoCone.cxx,
	  geom/src/TGeoElement.cxx, geom/src/TGeoEltu.cxx,
	  geom/src/TGeoHalfSpace.cxx, geom/src/TGeoHelix.cxx,
	  geom/src/TGeoHype.cxx, geom/src/TGeoManager.cxx,
	  geom/src/TGeoMaterial.cxx, geom/src/TGeoMatrix.cxx,
	  geom/src/TGeoMedium.cxx, geom/src/TGeoNavigator.cxx,
	  geom/src/TGeoNode.cxx, geom/src/TGeoPara.cxx,
	  geom/src/TGeoParaboloid.cxx, geom/src/TGeoPatternFinder.cxx,
	  geom/src/TGeoPcon.cxx, geom/src/TGeoPgon.cxx,
	  geom/src/TGeoPhysicalNode.cxx, geom/src/TGeoPolygon.cxx,
	  geom/src/TGeoScaledShape.cxx, geom/src/TGeoShape.cxx,
	  geom/src/TGeoShapeAssembly.cxx, geom/src/TGeoSphere.cxx,
	  geom/src/TGeoTorus.cxx, geom/src/TGeoTrd1.cxx,
	  geom/src/TGeoTrd2.cxx, geom/src/TGeoTube.cxx,
	  geom/src/TGeoVolume.cxx, geom/src/TGeoVoxelFinder.cxx,
	  geom/src/TGeoXtru.cxx, geom/src/TVirtualGeoPainter.cxx,
	  geom/src/TVirtualGeoTrack.cxx, geombuilder/inc/LinkDef.h,
	  geombuilder/inc/TGeoBBoxEditor.h,
	  geombuilder/inc/TGeoConeEditor.h,
	  geombuilder/inc/TGeoEltuEditor.h, geombuilder/inc/TGeoGedFrame.h,
	  geombuilder/inc/TGeoHypeEditor.h,
	  geombuilder/inc/TGeoManagerEditor.h,
	  geombuilder/inc/TGeoMaterialEditor.h,
	  geombuilder/inc/TGeoMatrixEditor.h,
	  geombuilder/inc/TGeoMediumEditor.h,
	  geombuilder/inc/TGeoNodeEditor.h,
	  geombuilder/inc/TGeoParaEditor.h,
	  geombuilder/inc/TGeoPconEditor.h,
	  geombuilder/inc/TGeoPgonEditor.h,
	  geombuilder/inc/TGeoSphereEditor.h,
	  geombuilder/inc/TGeoTabManager.h,
	  geombuilder/inc/TGeoTorusEditor.h,
	  geombuilder/inc/TGeoTrapEditor.h,
	  geombuilder/inc/TGeoTrd1Editor.h,
	  geombuilder/inc/TGeoTrd2Editor.h,
	  geombuilder/inc/TGeoTubeEditor.h,
	  geombuilder/inc/TGeoVolumeEditor.h,
	  geombuilder/src/TGeoBBoxEditor.cxx,
	  geombuilder/src/TGeoConeEditor.cxx,
	  geombuilder/src/TGeoEltuEditor.cxx,
	  geombuilder/src/TGeoGedFrame.cxx,
	  geombuilder/src/TGeoHypeEditor.cxx,
	  geombuilder/src/TGeoManagerEditor.cxx,
	  geombuilder/src/TGeoMaterialEditor.cxx,
	  geombuilder/src/TGeoMatrixEditor.cxx,
	  geombuilder/src/TGeoMediumEditor.cxx,
	  geombuilder/src/TGeoNodeEditor.cxx,
	  geombuilder/src/TGeoParaEditor.cxx,
	  geombuilder/src/TGeoPconEditor.cxx,
	  geombuilder/src/TGeoPgonEditor.cxx,
	  geombuilder/src/TGeoSphereEditor.cxx,
	  geombuilder/src/TGeoTabManager.cxx,
	  geombuilder/src/TGeoTorusEditor.cxx,
	  geombuilder/src/TGeoTrapEditor.cxx,
	  geombuilder/src/TGeoTrd1Editor.cxx,
	  geombuilder/src/TGeoTrd2Editor.cxx,
	  geombuilder/src/TGeoTubeEditor.cxx,
	  geombuilder/src/TGeoVolumeEditor.cxx,
	  geompainter/inc/TGeoChecker.h, geompainter/inc/TGeoOverlap.h,
	  geompainter/inc/TGeoTrack.h, geompainter/src/TGeoChecker.cxx,
	  geompainter/src/TGeoOverlap.cxx, geompainter/src/TGeoPainter.cxx,
	  geompainter/src/TGeoTrack.cxx, gfal/inc/LinkDef.h,
	  gfal/inc/TGFALFile.h, gfal/src/TGFALFile.cxx, gl/inc/CsgOps.h,
	  gl/inc/LinkDef.h, gl/inc/TArcBall.h, gl/inc/TGLAxis.h,
	  gl/inc/TGLBoundingBox.h, gl/inc/TGLCamera.h, gl/inc/TGLClip.h,
	  gl/inc/TGLContext.h, gl/inc/TGLContextPrivate.h,
	  gl/inc/TGLCylinder.h, gl/inc/TGLFaceSet.h, gl/inc/TGLFormat.h,
	  gl/inc/TGLIncludes.h, gl/inc/TGLLegoPainter.h,
	  gl/inc/TGLLogicalShape.h, gl/inc/TGLManip.h,
	  gl/inc/TGLManipSet.h, gl/inc/TGLObject.h,
	  gl/inc/TGLOrthoCamera.h, gl/inc/TGLOutput.h, gl/inc/TGLOverlay.h,
	  gl/inc/TGLPShapeObj.h, gl/inc/TGLPShapeObjEditor.h,
	  gl/inc/TGLParametric.h, gl/inc/TGLParametricEquationGL.h,
	  gl/inc/TGLPerspectiveCamera.h, gl/inc/TGLPhysicalShape.h,
	  gl/inc/TGLPlotPainter.h, gl/inc/TGLPolyLine.h,
	  gl/inc/TGLPolyMarker.h, gl/inc/TGLQuadric.h, gl/inc/TGLRnrCtx.h,
	  gl/inc/TGLRotateManip.h, gl/inc/TGLSAFrame.h,
	  gl/inc/TGLSAViewer.h, gl/inc/TGLScaleManip.h, gl/inc/TGLScene.h,
	  gl/inc/TGLSceneBase.h, gl/inc/TGLSceneInfo.h,
	  gl/inc/TGLScenePad.h, gl/inc/TGLSelectBuffer.h,
	  gl/inc/TGLSphere.h, gl/inc/TGLStopwatch.h, gl/inc/TGLText.h,
	  gl/inc/TGLTransManip.h, gl/inc/TGLUtil.h, gl/inc/TGLViewer.h,
	  gl/inc/TGLViewerBase.h, gl/inc/TGLWidget.h,
	  gl/inc/TPointSet3DGL.h, gl/inc/TX11GL.h, gl/src/CsgOps.cxx,
	  gl/src/TArcBall.cxx, gl/src/TF2GL.cxx, gl/src/TGLAxis.cxx,
	  gl/src/TGLBoundingBox.cxx, gl/src/TGLCamera.cxx,
	  gl/src/TGLClip.cxx, gl/src/TGLClipSetEditor.cxx,
	  gl/src/TGLContext.cxx, gl/src/TGLContextPrivate.cxx,
	  gl/src/TGLCylinder.cxx, gl/src/TGLFaceSet.cxx,
	  gl/src/TGLFormat.cxx, gl/src/TGLLegoPainter.cxx,
	  gl/src/TGLLogicalShape.cxx, gl/src/TGLManip.cxx,
	  gl/src/TGLManipSet.cxx, gl/src/TGLObject.cxx,
	  gl/src/TGLOrthoCamera.cxx, gl/src/TGLOutput.cxx,
	  gl/src/TGLOverlay.cxx, gl/src/TGLPShapeObjEditor.cxx,
	  gl/src/TGLParametric.cxx, gl/src/TGLParametricEquationGL.cxx,
	  gl/src/TGLPerspectiveCamera.cxx, gl/src/TGLPhysicalShape.cxx,
	  gl/src/TGLPlotPainter.cxx, gl/src/TGLPolyLine.cxx,
	  gl/src/TGLPolyMarker.cxx, gl/src/TGLQuadric.cxx,
	  gl/src/TGLRnrCtx.cxx, gl/src/TGLRotateManip.cxx,
	  gl/src/TGLSAFrame.cxx, gl/src/TGLSAViewer.cxx,
	  gl/src/TGLScaleManip.cxx, gl/src/TGLScene.cxx,
	  gl/src/TGLSceneBase.cxx, gl/src/TGLSceneInfo.cxx,
	  gl/src/TGLScenePad.cxx, gl/src/TGLSelectBuffer.cxx,
	  gl/src/TGLSelectRecord.cxx, gl/src/TGLSphere.cxx,
	  gl/src/TGLStopwatch.cxx, gl/src/TGLText.cxx,
	  gl/src/TGLTransManip.cxx, gl/src/TGLUtil.cxx,
	  gl/src/TGLViewer.cxx, gl/src/TGLViewerBase.cxx,
	  gl/src/TGLWidget.cxx, gl/src/TH2GL.cxx, gl/src/TPointSet3DGL.cxx,
	  gl/src/TX11GL.cxx, globusauth/src/GlobusAuth.cxx,
	  gpad/inc/LinkDef.h, gpad/inc/TAttCanvas.h, gpad/inc/TButton.h,
	  gpad/inc/TCanvas.h, gpad/inc/TClassTree.h,
	  gpad/inc/TColorWheel.h, gpad/inc/TControlBar.h,
	  gpad/inc/TCreatePrimitives.h, gpad/inc/TDialogCanvas.h,
	  gpad/inc/TGroupButton.h, gpad/inc/TInspectCanvas.h,
	  gpad/inc/TPad.h, gpad/inc/TPaveClass.h, gpad/inc/TSlider.h,
	  gpad/inc/TSliderBox.h, gpad/inc/TView.h, gpad/inc/TViewer3DPad.h,
	  gpad/src/TAttCanvas.cxx, gpad/src/TButton.cxx,
	  gpad/src/TCanvas.cxx, gpad/src/TClassTree.cxx,
	  gpad/src/TColorWheel.cxx, gpad/src/TControlBar.cxx,
	  gpad/src/TCreatePrimitives.cxx, gpad/src/TDialogCanvas.cxx,
	  gpad/src/TGroupButton.cxx, gpad/src/TInspectCanvas.cxx,
	  gpad/src/TPad.cxx, gpad/src/TPaveClass.cxx, gpad/src/TSlider.cxx,
	  gpad/src/TSliderBox.cxx, gpad/src/TView.cxx,
	  gpad/src/TViewer3DPad.cxx, graf/inc/LinkDef1.h,
	  graf/inc/LinkDef2.h, graf/inc/TArc.h, graf/inc/TArrow.h,
	  graf/inc/TAttImage.h, graf/inc/TBox.h, graf/inc/TCrown.h,
	  graf/inc/TCurlyArc.h, graf/inc/TCurlyLine.h, graf/inc/TCutG.h,
	  graf/inc/TDiamond.h, graf/inc/TEllipse.h, graf/inc/TFrame.h,
	  graf/inc/TGaxis.h, graf/inc/TGraph.h,
	  graf/inc/TGraphAsymmErrors.h, graf/inc/TGraphBentErrors.h,
	  graf/inc/TGraphErrors.h, graf/inc/TGraphPolar.h,
	  graf/inc/TGraphQQ.h, graf/inc/TGraphSmooth.h, graf/inc/TImage.h,
	  graf/inc/TImagePlugin.h, graf/inc/TLatex.h, graf/inc/TLegend.h,
	  graf/inc/TLegendEntry.h, graf/inc/TLine.h, graf/inc/TLink.h,
	  graf/inc/TMarker.h, graf/inc/TMultiGraph.h, graf/inc/TPave.h,
	  graf/inc/TPaveLabel.h, graf/inc/TPaveStats.h,
	  graf/inc/TPaveText.h, graf/inc/TPavesText.h, graf/inc/TPie.h,
	  graf/inc/TPoints.h, graf/inc/TPolyLine.h, graf/inc/TSpline.h,
	  graf/inc/TTF.h, graf/inc/TText.h, graf/inc/TWbox.h,
	  graf/src/TArc.cxx, graf/src/TArrow.cxx, graf/src/TAttImage.cxx,
	  graf/src/TBox.cxx, graf/src/TCrown.cxx, graf/src/TCurlyArc.cxx,
	  graf/src/TCurlyLine.cxx, graf/src/TCutG.cxx,
	  graf/src/TDiamond.cxx, graf/src/TEllipse.cxx,
	  graf/src/TFrame.cxx, graf/src/TGaxis.cxx, graf/src/TGraph.cxx,
	  graf/src/TGraphAsymmErrors.cxx, graf/src/TGraphBentErrors.cxx,
	  graf/src/TGraphErrors.cxx, graf/src/TGraphPolar.cxx,
	  graf/src/TGraphQQ.cxx, graf/src/TGraphSmooth.cxx,
	  graf/src/TImage.cxx, graf/src/TLatex.cxx, graf/src/TLegend.cxx,
	  graf/src/TLegendEntry.cxx, graf/src/TLine.cxx,
	  graf/src/TLink.cxx, graf/src/TMarker.cxx,
	  graf/src/TMultiGraph.cxx, graf/src/TPave.cxx,
	  graf/src/TPaveLabel.cxx, graf/src/TPaveStats.cxx,
	  graf/src/TPaveText.cxx, graf/src/TPavesText.cxx,
	  graf/src/TPie.cxx, graf/src/TPolyLine.cxx, graf/src/TSpline.cxx,
	  graf/src/TTF.cxx, graf/src/TText.cxx, graf/src/TWbox.cxx,
	  gui/inc/HelpText.h, gui/inc/LinkDef1.h, gui/inc/LinkDef2.h,
	  gui/inc/LinkDef3.h, gui/inc/TG3DLine.h, gui/inc/TGApplication.h,
	  gui/inc/TGButton.h, gui/inc/TGButtonGroup.h, gui/inc/TGCanvas.h,
	  gui/inc/TGClient.h, gui/inc/TGColorDialog.h,
	  gui/inc/TGColorSelect.h, gui/inc/TGComboBox.h,
	  gui/inc/TGDNDManager.h, gui/inc/TGDimension.h,
	  gui/inc/TGDockableFrame.h, gui/inc/TGDoubleSlider.h,
	  gui/inc/TGFSComboBox.h, gui/inc/TGFSContainer.h,
	  gui/inc/TGFileDialog.h, gui/inc/TGFont.h, gui/inc/TGFontDialog.h,
	  gui/inc/TGFrame.h, gui/inc/TGGC.h, gui/inc/TGIcon.h,
	  gui/inc/TGIdleHandler.h, gui/inc/TGImageMap.h,
	  gui/inc/TGInputDialog.h, gui/inc/TGLabel.h, gui/inc/TGLayout.h,
	  gui/inc/TGListBox.h, gui/inc/TGListTree.h, gui/inc/TGListView.h,
	  gui/inc/TGMdi.h, gui/inc/TGMdiDecorFrame.h, gui/inc/TGMdiFrame.h,
	  gui/inc/TGMdiMainFrame.h, gui/inc/TGMdiMenu.h, gui/inc/TGMenu.h,
	  gui/inc/TGMimeTypes.h, gui/inc/TGMsgBox.h,
	  gui/inc/TGNumberEntry.h, gui/inc/TGObject.h,
	  gui/inc/TGPasswdDialog.h, gui/inc/TGPicture.h,
	  gui/inc/TGProgressBar.h, gui/inc/TGRedirectOutputGuard.h,
	  gui/inc/TGResourcePool.h, gui/inc/TGScrollBar.h,
	  gui/inc/TGShutter.h, gui/inc/TGSlider.h, gui/inc/TGSpeedo.h,
	  gui/inc/TGSplitter.h, gui/inc/TGStatusBar.h, gui/inc/TGString.h,
	  gui/inc/TGTab.h, gui/inc/TGTableLayout.h, gui/inc/TGText.h,
	  gui/inc/TGTextBuffer.h, gui/inc/TGTextEdit.h,
	  gui/inc/TGTextEditDialogs.h, gui/inc/TGTextEditor.h,
	  gui/inc/TGTextEntry.h, gui/inc/TGTextView.h, gui/inc/TGToolBar.h,
	  gui/inc/TGToolTip.h, gui/inc/TGTripleSlider.h, gui/inc/TGView.h,
	  gui/inc/TGWidget.h, gui/inc/TGWindow.h, gui/inc/TGXYLayout.h,
	  gui/inc/TGuiBuilder.h, gui/inc/TRootApplication.h,
	  gui/inc/TRootBrowser.h, gui/inc/TRootCanvas.h,
	  gui/inc/TRootContextMenu.h, gui/inc/TRootControlBar.h,
	  gui/inc/TRootDialog.h, gui/inc/TRootEmbeddedCanvas.h,
	  gui/inc/TRootGuiFactory.h, gui/inc/TRootHelpDialog.h,
	  gui/inc/WidgetMessageTypes.h, gui/src/HelpText.cxx,
	  gui/src/TG3DLine.cxx, gui/src/TGApplication.cxx,
	  gui/src/TGButton.cxx, gui/src/TGButtonGroup.cxx,
	  gui/src/TGCanvas.cxx, gui/src/TGClient.cxx,
	  gui/src/TGColorDialog.cxx, gui/src/TGColorSelect.cxx,
	  gui/src/TGComboBox.cxx, gui/src/TGDNDManager.cxx,
	  gui/src/TGDimension.cxx, gui/src/TGDockableFrame.cxx,
	  gui/src/TGDoubleSlider.cxx, gui/src/TGFSComboBox.cxx,
	  gui/src/TGFSContainer.cxx, gui/src/TGFileDialog.cxx,
	  gui/src/TGFont.cxx, gui/src/TGFontDialog.cxx,
	  gui/src/TGFrame.cxx, gui/src/TGGC.cxx, gui/src/TGIcon.cxx,
	  gui/src/TGIdleHandler.cxx, gui/src/TGImageMap.cxx,
	  gui/src/TGInputDialog.cxx, gui/src/TGLabel.cxx,
	  gui/src/TGLayout.cxx, gui/src/TGListBox.cxx,
	  gui/src/TGListTree.cxx, gui/src/TGListView.cxx,
	  gui/src/TGMdiDecorFrame.cxx, gui/src/TGMdiFrame.cxx,
	  gui/src/TGMdiMainFrame.cxx, gui/src/TGMdiMenu.cxx,
	  gui/src/TGMenu.cxx, gui/src/TGMimeTypes.cxx,
	  gui/src/TGMsgBox.cxx, gui/src/TGNumberEntry.cxx,
	  gui/src/TGObject.cxx, gui/src/TGPasswdDialog.cxx,
	  gui/src/TGPicture.cxx, gui/src/TGProgressBar.cxx,
	  gui/src/TGRedirectOutputGuard.cxx, gui/src/TGResourcePool.cxx,
	  gui/src/TGScrollBar.cxx, gui/src/TGShutter.cxx,
	  gui/src/TGSlider.cxx, gui/src/TGSpeedo.cxx,
	  gui/src/TGSplitter.cxx, gui/src/TGStatusBar.cxx,
	  gui/src/TGString.cxx, gui/src/TGTab.cxx,
	  gui/src/TGTableLayout.cxx, gui/src/TGText.cxx,
	  gui/src/TGTextBuffer.cxx, gui/src/TGTextEdit.cxx,
	  gui/src/TGTextEditDialogs.cxx, gui/src/TGTextEditor.cxx,
	  gui/src/TGTextEntry.cxx, gui/src/TGTextView.cxx,
	  gui/src/TGToolBar.cxx, gui/src/TGToolTip.cxx,
	  gui/src/TGTripleSlider.cxx, gui/src/TGView.cxx,
	  gui/src/TGWindow.cxx, gui/src/TGXYLayout.cxx,
	  gui/src/TGuiBuilder.cxx, gui/src/TRootApplication.cxx,
	  gui/src/TRootBrowser.cxx, gui/src/TRootCanvas.cxx,
	  gui/src/TRootContextMenu.cxx, gui/src/TRootControlBar.cxx,
	  gui/src/TRootDialog.cxx, gui/src/TRootEmbeddedCanvas.cxx,
	  gui/src/TRootGuiFactory.cxx, gui/src/TRootHelpDialog.cxx,
	  guibuilder/inc/LinkDef.h, guibuilder/inc/TGuiBldDragManager.h,
	  guibuilder/inc/TGuiBldEditor.h,
	  guibuilder/inc/TGuiBldHintsButton.h,
	  guibuilder/inc/TGuiBldHintsEditor.h,
	  guibuilder/inc/TGuiBldNameFrame.h,
	  guibuilder/inc/TRootGuiBuilder.h,
	  guibuilder/src/TGuiBldDragManager.cxx,
	  guibuilder/src/TGuiBldEditor.cxx,
	  guibuilder/src/TGuiBldHintsButton.cxx,
	  guibuilder/src/TGuiBldHintsEditor.cxx,
	  guibuilder/src/TGuiBldNameFrame.cxx,
	  guibuilder/src/TRootGuiBuilder.cxx, hbook/inc/THbookBranch.h,
	  hbook/inc/THbookFile.h, hbook/inc/THbookKey.h,
	  hbook/inc/THbookTree.h, hbook/src/THbookBranch.cxx,
	  hbook/src/THbookFile.cxx, hbook/src/THbookKey.cxx,
	  hbook/src/THbookTree.cxx, hist/inc/Foption.h, hist/inc/LinkDef.h,
	  hist/inc/TAxis.h, hist/inc/TBinomialEfficiencyFitter.h,
	  hist/inc/TConfidenceLevel.h, hist/inc/TF1.h, hist/inc/TF12.h,
	  hist/inc/TF2.h, hist/inc/TF3.h, hist/inc/TFormula.h,
	  hist/inc/TFormulaPrimitive.h, hist/inc/TFractionFitter.h,
	  hist/inc/TGraph2D.h, hist/inc/TGraph2DErrors.h,
	  hist/inc/TGraphDelaunay.h, hist/inc/TH1.h, hist/inc/TH1C.h,
	  hist/inc/TH1D.h, hist/inc/TH1F.h, hist/inc/TH1I.h,
	  hist/inc/TH1K.h, hist/inc/TH1S.h, hist/inc/TH2.h,
	  hist/inc/TH2C.h, hist/inc/TH2D.h, hist/inc/TH2F.h,
	  hist/inc/TH2I.h, hist/inc/TH2S.h, hist/inc/TH3.h,
	  hist/inc/TH3C.h, hist/inc/TH3D.h, hist/inc/TH3F.h,
	  hist/inc/TH3I.h, hist/inc/TH3S.h, hist/inc/THLimitsFinder.h,
	  hist/inc/THStack.h, hist/inc/THnSparse.h, hist/inc/TLimit.h,
	  hist/inc/TLimitDataSource.h, hist/inc/TMultiDimFit.h,
	  hist/inc/TPolyMarker.h, hist/inc/TPrincipal.h,
	  hist/inc/TProfile.h, hist/inc/TProfile2D.h,
	  hist/inc/TProfile3D.h, hist/inc/TVirtualHistPainter.h,
	  hist/src/Haxis.cxx, hist/src/TAxis.cxx,
	  hist/src/TBinomialEfficiencyFitter.cxx,
	  hist/src/TConfidenceLevel.cxx, hist/src/TF1.cxx,
	  hist/src/TF12.cxx, hist/src/TF1Helper.cxx, hist/src/TF1Helper.h,
	  hist/src/TF2.cxx, hist/src/TF3.cxx, hist/src/TFormula.cxx,
	  hist/src/TFormulaPrimitive.cxx, hist/src/TFractionFitter.cxx,
	  hist/src/TGraph2D.cxx, hist/src/TGraph2DErrors.cxx,
	  hist/src/TGraphDelaunay.cxx, hist/src/TH1.cxx, hist/src/TH1K.cxx,
	  hist/src/TH2.cxx, hist/src/TH3.cxx, hist/src/THLimitsFinder.cxx,
	  hist/src/THStack.cxx, hist/src/THnSparse.cxx,
	  hist/src/TLimit.cxx, hist/src/TLimitDataSource.cxx,
	  hist/src/TMultiDimFit.cxx, hist/src/TPolyMarker.cxx,
	  hist/src/TPrincipal.cxx, hist/src/TProfile.cxx,
	  hist/src/TProfile2D.cxx, hist/src/TProfile3D.cxx,
	  hist/src/TVirtualHistPainter.cxx, histpainter/inc/Hoption.h,
	  histpainter/inc/Hparam.h, histpainter/inc/LinkDef.h,
	  histpainter/inc/TGraphPainter.h, histpainter/inc/THistPainter.h,
	  histpainter/inc/TLego.h, histpainter/inc/TPainter3dAlgorithms.h,
	  histpainter/inc/TPaletteAxis.h,
	  histpainter/src/TGraphPainter.cxx,
	  histpainter/src/THistPainter.cxx,
	  histpainter/src/TPainter3dAlgorithms.cxx,
	  histpainter/src/TPaletteAxis.cxx, html/inc/LinkDef.h,
	  html/inc/TClassDocOutput.h, html/inc/TDocDirective.h,
	  html/inc/TDocInfo.h, html/inc/TDocOutput.h,
	  html/inc/TDocParser.h, html/inc/THtml.h,
	  html/src/TClassDocOutput.cxx, html/src/TDocInfo.cxx,
	  html/src/TDocOutput.cxx, html/src/TDocParser.cxx,
	  html/src/THtml.cxx, io/inc/LinkDef.h, io/inc/TArchiveFile.h,
	  io/inc/TBufferFile.h, io/inc/TCollectionProxyFactory.h,
	  io/inc/TContainerConverters.h, io/inc/TDirectoryFile.h,
	  io/inc/TEmulatedCollectionProxy.h, io/inc/TEmulatedMapProxy.h,
	  io/inc/TFile.h, io/inc/TFileCacheRead.h,
	  io/inc/TFileCacheWrite.h, io/inc/TFree.h,
	  io/inc/TGenCollectionProxy.h, io/inc/TGenCollectionStreamer.h,
	  io/inc/TKey.h, io/inc/TKeyMapFile.h, io/inc/TMapFile.h,
	  io/inc/TStreamerInfo.h, io/inc/TZIPFile.h,
	  io/src/TArchiveFile.cxx, io/src/TBufferFile.cxx,
	  io/src/TCollectionProxyFactory.cxx,
	  io/src/TContainerConverters.cxx, io/src/TDirectoryFile.cxx,
	  io/src/TEmulatedCollectionProxy.cxx,
	  io/src/TEmulatedMapProxy.cxx, io/src/TFile.cxx,
	  io/src/TFileCacheRead.cxx, io/src/TFileCacheWrite.cxx,
	  io/src/TFree.cxx, io/src/TGenCollectionProxy.cxx,
	  io/src/TGenCollectionStreamer.cxx, io/src/TKey.cxx,
	  io/src/TKeyMapFile.cxx, io/src/TMapFile.cxx,
	  io/src/TStreamerInfo.cxx, io/src/TStreamerInfoReadBuffer.cxx,
	  io/src/TStreamerInfoWriteBuffer.cxx, io/src/TZIPFile.cxx,
	  krb5auth/inc/Krb5Auth.h, krb5auth/inc/TKSocket.h,
	  krb5auth/src/Krb5Auth.cxx, krb5auth/src/TKSocket.cxx,
	  ldap/inc/CintLDAP.h, ldap/inc/TLDAPAttribute.h,
	  ldap/inc/TLDAPEntry.h, ldap/inc/TLDAPResult.h,
	  ldap/inc/TLDAPServer.h, ldap/src/TLDAPAttribute.cxx,
	  ldap/src/TLDAPEntry.cxx, ldap/src/TLDAPResult.cxx,
	  ldap/src/TLDAPServer.cxx, main/src/cppmain.cxx,
	  main/src/h2root.cxx, main/src/pmain.cxx, main/src/rmain.cxx,
	  main/src/roots.cxx, main/src/ssh2rpd.cxx, math/inc/LinkDef.h,
	  math/inc/Math/ParamFunctor.h, math/inc/TComplex.h,
	  math/inc/TMath.h, math/inc/TRandom.h, math/inc/TRandom1.h,
	  math/inc/TRandom2.h, math/inc/TRandom3.h, math/src/TComplex.cxx,
	  math/src/TMath.cxx, math/src/TRandom.cxx, math/src/TRandom1.cxx,
	  math/src/TRandom2.cxx, math/src/TRandom3.cxx,
	  mathcore/build/Makefile.am, mathcore/build/doc_Makefile.am,
	  mathcore/build/inc_Makefile.am,
	  mathcore/build/inc_Math_GenVector_Makefile.am,
	  mathcore/build/inc_Math_Makefile.am,
	  mathcore/build/src_Makefile.am, mathcore/build/test_Makefile.am,
	  mathcore/inc/Math/AxisAngle.h, mathcore/inc/Math/Boost.h,
	  mathcore/inc/Math/BoostX.h, mathcore/inc/Math/BoostY.h,
	  mathcore/inc/Math/BoostZ.h, mathcore/inc/Math/Cartesian2D.h,
	  mathcore/inc/Math/Cartesian3D.h,
	  mathcore/inc/Math/Cylindrical3D.h,
	  mathcore/inc/Math/CylindricalEta3D.h,
	  mathcore/inc/Math/DisplacementVector2D.h,
	  mathcore/inc/Math/DisplacementVector3D.h,
	  mathcore/inc/Math/DistFunc.h,
	  mathcore/inc/Math/DistFuncMathCore.h,
	  mathcore/inc/Math/EulerAngles.h, mathcore/inc/Math/Functor.h,
	  mathcore/inc/Math/GenVector/3DConversions.h,
	  mathcore/inc/Math/GenVector/3DDistances.h,
	  mathcore/inc/Math/GenVector/AxisAngle.h,
	  mathcore/inc/Math/GenVector/AxisAnglefwd.h,
	  mathcore/inc/Math/GenVector/BitReproducible.h,
	  mathcore/inc/Math/GenVector/Boost.h,
	  mathcore/inc/Math/GenVector/BoostX.h,
	  mathcore/inc/Math/GenVector/BoostXfwd.h,
	  mathcore/inc/Math/GenVector/BoostY.h,
	  mathcore/inc/Math/GenVector/BoostYfwd.h,
	  mathcore/inc/Math/GenVector/BoostZ.h,
	  mathcore/inc/Math/GenVector/BoostZfwd.h,
	  mathcore/inc/Math/GenVector/Boostfwd.h,
	  mathcore/inc/Math/GenVector/Cartesian2D.h,
	  mathcore/inc/Math/GenVector/Cartesian2Dfwd.h,
	  mathcore/inc/Math/GenVector/Cartesian3D.h,
	  mathcore/inc/Math/GenVector/Cartesian3Dfwd.h,
	  mathcore/inc/Math/GenVector/CoordinateSystemTags.h,
	  mathcore/inc/Math/GenVector/Cylindrical3D.h,
	  mathcore/inc/Math/GenVector/Cylindrical3Dfwd.h,
	  mathcore/inc/Math/GenVector/CylindricalEta3D.h,
	  mathcore/inc/Math/GenVector/CylindricalEta3Dfwd.h,
	  mathcore/inc/Math/GenVector/DisplacementVector2D.h,
	  mathcore/inc/Math/GenVector/DisplacementVector2Dfwd.h,
	  mathcore/inc/Math/GenVector/DisplacementVector3D.h,
	  mathcore/inc/Math/GenVector/DisplacementVector3Dfwd.h,
	  mathcore/inc/Math/GenVector/EulerAngles.h,
	  mathcore/inc/Math/GenVector/EulerAnglesfwd.h,
	  mathcore/inc/Math/GenVector/GenVectorIO.h,
	  mathcore/inc/Math/GenVector/GenVector_exception.h,
	  mathcore/inc/Math/GenVector/LorentzRotation.h,
	  mathcore/inc/Math/GenVector/LorentzRotationfwd.h,
	  mathcore/inc/Math/GenVector/LorentzVector.h,
	  mathcore/inc/Math/GenVector/LorentzVectorfwd.h,
	  mathcore/inc/Math/GenVector/Plane3D.h,
	  mathcore/inc/Math/GenVector/Polar2D.h,
	  mathcore/inc/Math/GenVector/Polar2Dfwd.h,
	  mathcore/inc/Math/GenVector/Polar3D.h,
	  mathcore/inc/Math/GenVector/Polar3Dfwd.h,
	  mathcore/inc/Math/GenVector/PositionVector2D.h,
	  mathcore/inc/Math/GenVector/PositionVector2Dfwd.h,
	  mathcore/inc/Math/GenVector/PositionVector3D.h,
	  mathcore/inc/Math/GenVector/PositionVector3Dfwd.h,
	  mathcore/inc/Math/GenVector/PtEtaPhiE4D.h,
	  mathcore/inc/Math/GenVector/PtEtaPhiE4Dfwd.h,
	  mathcore/inc/Math/GenVector/PtEtaPhiM4D.h,
	  mathcore/inc/Math/GenVector/PtEtaPhiM4Dfwd.h,
	  mathcore/inc/Math/GenVector/PxPyPzE4D.h,
	  mathcore/inc/Math/GenVector/PxPyPzE4Dfwd.h,
	  mathcore/inc/Math/GenVector/PxPyPzM4D.h,
	  mathcore/inc/Math/GenVector/PxPyPzM4Dfwd.h,
	  mathcore/inc/Math/GenVector/Quaternion.h,
	  mathcore/inc/Math/GenVector/Quaternionfwd.h,
	  mathcore/inc/Math/GenVector/Rotation3D.h,
	  mathcore/inc/Math/GenVector/Rotation3Dfwd.h,
	  mathcore/inc/Math/GenVector/RotationX.h,
	  mathcore/inc/Math/GenVector/RotationXfwd.h,
	  mathcore/inc/Math/GenVector/RotationY.h,
	  mathcore/inc/Math/GenVector/RotationYfwd.h,
	  mathcore/inc/Math/GenVector/RotationZ.h,
	  mathcore/inc/Math/GenVector/RotationZYX.h,
	  mathcore/inc/Math/GenVector/RotationZYXfwd.h,
	  mathcore/inc/Math/GenVector/RotationZfwd.h,
	  mathcore/inc/Math/GenVector/Transform3D.h,
	  mathcore/inc/Math/GenVector/Translation3D.h,
	  mathcore/inc/Math/GenVector/VectorUtil.h,
	  mathcore/inc/Math/GenVector/eta.h,
	  mathcore/inc/Math/GenVector/etaMax.h,
	  mathcore/inc/Math/IFunction.h, mathcore/inc/Math/IFunctionfwd.h,
	  mathcore/inc/Math/IParamFunction.h,
	  mathcore/inc/Math/IParamFunctionfwd.h,
	  mathcore/inc/Math/LinkDef.h, mathcore/inc/Math/LinkDef_Func.h,
	  mathcore/inc/Math/LinkDef_GenVector.h,
	  mathcore/inc/Math/LinkDef_GenVector32.h,
	  mathcore/inc/Math/LinkDef_Point3D.h,
	  mathcore/inc/Math/LinkDef_Rotation.h,
	  mathcore/inc/Math/LinkDef_Vector3D.h,
	  mathcore/inc/Math/LinkDef_Vector4D.h,
	  mathcore/inc/Math/LorentzRotation.h,
	  mathcore/inc/Math/LorentzVector.h, mathcore/inc/Math/Math.h,
	  mathcore/inc/Math/PdfFunc.h, mathcore/inc/Math/PdfFuncMathCore.h,
	  mathcore/inc/Math/Plane3D.h, mathcore/inc/Math/Point2D.h,
	  mathcore/inc/Math/Point2Dfwd.h, mathcore/inc/Math/Point3D.h,
	  mathcore/inc/Math/Point3Dfwd.h, mathcore/inc/Math/Polar2D.h,
	  mathcore/inc/Math/Polar3D.h,
	  mathcore/inc/Math/PositionVector2D.h,
	  mathcore/inc/Math/PositionVector3D.h,
	  mathcore/inc/Math/ProbFunc.h,
	  mathcore/inc/Math/ProbFuncMathCore.h,
	  mathcore/inc/Math/PtEtaPhiE4D.h, mathcore/inc/Math/PtEtaPhiM4D.h,
	  mathcore/inc/Math/PxPyPzE4D.h, mathcore/inc/Math/PxPyPzM4D.h,
	  mathcore/inc/Math/Quaternion.h, mathcore/inc/Math/Rotation3D.h,
	  mathcore/inc/Math/RotationX.h, mathcore/inc/Math/RotationY.h,
	  mathcore/inc/Math/RotationZ.h, mathcore/inc/Math/RotationZYX.h,
	  mathcore/inc/Math/SpecFunc.h,
	  mathcore/inc/Math/SpecFuncMathCore.h,
	  mathcore/inc/Math/Transform3D.h,
	  mathcore/inc/Math/Translation3D.h, mathcore/inc/Math/Util.h,
	  mathcore/inc/Math/Vector2D.h, mathcore/inc/Math/Vector2Dfwd.h,
	  mathcore/inc/Math/Vector3D.h, mathcore/inc/Math/Vector3Dfwd.h,
	  mathcore/inc/Math/Vector4D.h, mathcore/inc/Math/Vector4Dfwd.h,
	  mathcore/inc/Math/VectorUtil.h,
	  mathcore/inc/Math/VectorUtil_Cint.h,
	  mathcore/inc/Math/WrappedFunction.h,
	  mathcore/inc/Math/WrappedParamFunction.h,
	  mathcore/src/3DConversions.cxx, mathcore/src/3DDistances.cxx,
	  mathcore/src/AxisAngle.cxx, mathcore/src/AxisAngleXother.cxx,
	  mathcore/src/BitReproducible.cxx, mathcore/src/Boost.cxx,
	  mathcore/src/BoostX.cxx, mathcore/src/BoostY.cxx,
	  mathcore/src/BoostZ.cxx, mathcore/src/EulerAngles.cxx,
	  mathcore/src/GenVector_exception.cxx,
	  mathcore/src/LorentzRotation.cxx,
	  mathcore/src/PdfFuncMathCore.cxx, mathcore/src/Plane3D.cxx,
	  mathcore/src/ProbFuncMathCore.cxx, mathcore/src/Quaternion.cxx,
	  mathcore/src/QuaternionXaxial.cxx, mathcore/src/Rotation3D.cxx,
	  mathcore/src/Rotation3DxAxial.cxx, mathcore/src/RotationZYX.cxx,
	  mathcore/src/SpecFuncMathCore.cxx, mathcore/src/Transform3D.cxx,
	  mathcore/src/Translation3D.cxx, mathcore/src/VectorUtil.cxx,
	  mathcore/test/stress2D.cxx, mathmore/build/Makefile.am,
	  mathmore/build/doc_Makefile.am, mathmore/build/inc_Makefile.am,
	  mathmore/build/inc_Math_GenVector_Makefile.am,
	  mathmore/build/inc_Math_Makefile.am,
	  mathmore/build/src_Makefile.am, mathmore/build/test_Makefile.am,
	  mathmore/inc/Math/Chebyshev.h, mathmore/inc/Math/Derivator.h,
	  mathmore/inc/Math/DistFuncMathMore.h,
	  mathmore/inc/Math/GSLFunctionAdapter.h,
	  mathmore/inc/Math/GSLRndmEngines.h,
	  mathmore/inc/Math/GSLRootFinder.h,
	  mathmore/inc/Math/GSLRootFinderDeriv.h,
	  mathmore/inc/Math/GSLRootHelper.h,
	  mathmore/inc/Math/IntegrationTypes.h,
	  mathmore/inc/Math/Integrator.h,
	  mathmore/inc/Math/InterpolationTypes.h,
	  mathmore/inc/Math/Interpolator.h, mathmore/inc/Math/LinkDef.h,
	  mathmore/inc/Math/LinkDef_Func.h,
	  mathmore/inc/Math/LinkDef_RootFinding.h,
	  mathmore/inc/Math/LinkDef_SpecFunc.h,
	  mathmore/inc/Math/LinkDef_StatFunc.h,
	  mathmore/inc/Math/Minimizer1D.h,
	  mathmore/inc/Math/ParamFunction.h,
	  mathmore/inc/Math/PdfFuncMathMore.h,
	  mathmore/inc/Math/Polynomial.h, mathmore/inc/Math/ProbFuncInv.h,
	  mathmore/inc/Math/ProbFuncMathMore.h, mathmore/inc/Math/Random.h,
	  mathmore/inc/Math/RootFinder.h,
	  mathmore/inc/Math/RootFinderAlgorithms.h,
	  mathmore/inc/Math/SpecFuncMathMore.h,
	  mathmore/inc/Math/WrappedMultiTF1.h,
	  mathmore/inc/Math/WrappedTF1.h, mathmore/src/Chebyshev.cxx,
	  mathmore/src/Derivator.cxx, mathmore/src/GSL1DMinimizer.h,
	  mathmore/src/GSLChebSeries.h, mathmore/src/GSLDerivator.cxx,
	  mathmore/src/GSLDerivator.h, mathmore/src/GSLError.h,
	  mathmore/src/GSLFunctionWrapper.h,
	  mathmore/src/GSLIntegrationWorkspace.h,
	  mathmore/src/GSLIntegrator.cxx, mathmore/src/GSLIntegrator.h,
	  mathmore/src/GSLInterpolator.cxx, mathmore/src/GSLInterpolator.h,
	  mathmore/src/GSLRndmEngines.cxx, mathmore/src/GSLRootFSolver.h,
	  mathmore/src/GSLRootFdFSolver.h, mathmore/src/GSLRootFinder.cxx,
	  mathmore/src/GSLRootFinderDeriv.cxx,
	  mathmore/src/GSLRootHelper.cxx, mathmore/src/Integrator.cxx,
	  mathmore/src/Interpolator.cxx, mathmore/src/Minimizer1D.cxx,
	  mathmore/src/OneDimFunctionAdapter.h,
	  mathmore/src/ParamFunction.cxx, mathmore/src/PdfFuncMathMore.cxx,
	  mathmore/src/Polynomial.cxx, mathmore/src/ProbFuncInv.cxx,
	  mathmore/src/ProbFuncMathMore.cxx,
	  mathmore/src/RootFinderAlgorithms.cxx,
	  mathmore/src/SpecFuncMathMore.cxx,
	  mathmore/src/complex_quartic.h, matrix/inc/LinkDef.h,
	  matrix/inc/TDecompBK.h, matrix/inc/TDecompBase.h,
	  matrix/inc/TDecompChol.h, matrix/inc/TDecompLU.h,
	  matrix/inc/TDecompQRH.h, matrix/inc/TDecompSVD.h,
	  matrix/inc/TDecompSparse.h, matrix/inc/TMatrix.h,
	  matrix/inc/TMatrixDBase.h, matrix/inc/TMatrixDBasefwd.h,
	  matrix/inc/TMatrixDEigen.h, matrix/inc/TMatrixDLazy.h,
	  matrix/inc/TMatrixDSparse.h, matrix/inc/TMatrixDSym.h,
	  matrix/inc/TMatrixDSymEigen.h, matrix/inc/TMatrixDUtils.h,
	  matrix/inc/TMatrixDUtilsfwd.h, matrix/inc/TMatrixFBase.h,
	  matrix/inc/TMatrixFBasefwd.h, matrix/inc/TMatrixFLazy.h,
	  matrix/inc/TMatrixFSparse.h, matrix/inc/TMatrixFSym.h,
	  matrix/inc/TMatrixFUtils.h, matrix/inc/TMatrixFUtilsfwd.h,
	  matrix/inc/TMatrixT.h, matrix/inc/TMatrixTBase.h,
	  matrix/inc/TMatrixTCramerInv.h, matrix/inc/TMatrixTLazy.h,
	  matrix/inc/TMatrixTSparse.h, matrix/inc/TMatrixTSym.h,
	  matrix/inc/TMatrixTSymCramerInv.h, matrix/inc/TMatrixTUtils.h,
	  matrix/inc/TVector.h, matrix/inc/TVectorT.h,
	  matrix/src/TDecompBK.cxx, matrix/src/TDecompBase.cxx,
	  matrix/src/TDecompChol.cxx, matrix/src/TDecompLU.cxx,
	  matrix/src/TDecompQRH.cxx, matrix/src/TDecompSVD.cxx,
	  matrix/src/TDecompSparse.cxx, matrix/src/TMatrixDEigen.cxx,
	  matrix/src/TMatrixDSymEigen.cxx, matrix/src/TMatrixT.cxx,
	  matrix/src/TMatrixTBase.cxx, matrix/src/TMatrixTCramerInv.cxx,
	  matrix/src/TMatrixTLazy.cxx, matrix/src/TMatrixTSparse.cxx,
	  matrix/src/TMatrixTSym.cxx, matrix/src/TMatrixTSymCramerInv.cxx,
	  matrix/src/TMatrixTUtils.cxx, matrix/src/TVectorT.cxx,
	  meta/inc/LinkDef.h, meta/inc/TBaseClass.h, meta/inc/TCint.h,
	  meta/inc/TClass.h, meta/inc/TClassGenerator.h,
	  meta/inc/TClassMenuItem.h, meta/inc/TClassRef.h,
	  meta/inc/TClassStreamer.h, meta/inc/TDataMember.h,
	  meta/inc/TDataType.h, meta/inc/TDictionary.h,
	  meta/inc/TFunction.h, meta/inc/TGenericClassInfo.h,
	  meta/inc/TGlobal.h, meta/inc/TInterpreter.h,
	  meta/inc/TIsAProxy.h, meta/inc/TMemberStreamer.h,
	  meta/inc/TMethod.h, meta/inc/TMethodArg.h,
	  meta/inc/TMethodCall.h, meta/inc/TRealData.h,
	  meta/inc/TStreamer.h, meta/inc/TStreamerElement.h,
	  meta/inc/TVirtualIsAProxy.h, meta/inc/TVirtualRefProxy.h,
	  meta/inc/TVirtualStreamerInfo.h, meta/src/TBaseClass.cxx,
	  meta/src/TCint.cxx, meta/src/TClass.cxx,
	  meta/src/TClassGenerator.cxx, meta/src/TClassMenuItem.cxx,
	  meta/src/TClassRef.cxx, meta/src/TDataMember.cxx,
	  meta/src/TDataType.cxx, meta/src/TFunction.cxx,
	  meta/src/TGenericClassInfo.cxx, meta/src/TGlobal.cxx,
	  meta/src/TInterpreter.cxx, meta/src/TIsAProxy.cxx,
	  meta/src/TMethod.cxx, meta/src/TMethodArg.cxx,
	  meta/src/TMethodCall.cxx, meta/src/TRealData.cxx,
	  meta/src/TStreamerElement.cxx, meta/src/TToggle.cxx,
	  meta/src/TToggleGroup.cxx, meta/src/TVirtualStreamerInfo.cxx,
	  metautils/inc/TClassEdit.h, metautils/src/TClassEdit.cxx,
	  minuit/inc/LinkDef.h, minuit/inc/TFitter.h,
	  minuit/inc/TLinearFitter.h, minuit/inc/TMinuit.h,
	  minuit/src/TFitter.cxx, minuit/src/TLinearFitter.cxx,
	  minuit/src/TMinuit.cxx, minuit2/build/inc_Makefile.am,
	  minuit2/inc/LinkDef.h, minuit2/inc/Minuit2/ABObj.h,
	  minuit2/inc/Minuit2/ABProd.h, minuit2/inc/Minuit2/ABSum.h,
	  minuit2/inc/Minuit2/ABTypes.h,
	  minuit2/inc/Minuit2/AnalyticalGradientCalculator.h,
	  minuit2/inc/Minuit2/BasicFunctionGradient.h,
	  minuit2/inc/Minuit2/BasicFunctionMinimum.h,
	  minuit2/inc/Minuit2/BasicMinimumError.h,
	  minuit2/inc/Minuit2/BasicMinimumParameters.h,
	  minuit2/inc/Minuit2/BasicMinimumSeed.h,
	  minuit2/inc/Minuit2/BasicMinimumState.h,
	  minuit2/inc/Minuit2/CombinedMinimizer.h,
	  minuit2/inc/Minuit2/CombinedMinimumBuilder.h,
	  minuit2/inc/Minuit2/ContoursError.h,
	  minuit2/inc/Minuit2/DavidonErrorUpdator.h,
	  minuit2/inc/Minuit2/FCNBase.h,
	  minuit2/inc/Minuit2/FCNGradientBase.h,
	  minuit2/inc/Minuit2/FumiliBuilder.h,
	  minuit2/inc/Minuit2/FumiliChi2FCN.h,
	  minuit2/inc/Minuit2/FumiliErrorUpdator.h,
	  minuit2/inc/Minuit2/FumiliFCNBase.h,
	  minuit2/inc/Minuit2/FumiliGradientCalculator.h,
	  minuit2/inc/Minuit2/FumiliMaximumLikelihoodFCN.h,
	  minuit2/inc/Minuit2/FumiliMinimizer.h,
	  minuit2/inc/Minuit2/FumiliStandardChi2FCN.h,
	  minuit2/inc/Minuit2/FumiliStandardMaximumLikelihoodFCN.h,
	  minuit2/inc/Minuit2/FunctionGradient.h,
	  minuit2/inc/Minuit2/FunctionMinimizer.h,
	  minuit2/inc/Minuit2/FunctionMinimum.h,
	  minuit2/inc/Minuit2/GenericFunction.h,
	  minuit2/inc/Minuit2/GradientCalculator.h,
	  minuit2/inc/Minuit2/HessianGradientCalculator.h,
	  minuit2/inc/Minuit2/InitialGradientCalculator.h,
	  minuit2/inc/Minuit2/LASymMatrix.h,
	  minuit2/inc/Minuit2/LAVector.h, minuit2/inc/Minuit2/LaInverse.h,
	  minuit2/inc/Minuit2/LaOuterProduct.h,
	  minuit2/inc/Minuit2/LaProd.h, minuit2/inc/Minuit2/LaSum.h,
	  minuit2/inc/Minuit2/MatrixInverse.h,
	  minuit2/inc/Minuit2/MinimumBuilder.h,
	  minuit2/inc/Minuit2/MinimumError.h,
	  minuit2/inc/Minuit2/MinimumErrorUpdator.h,
	  minuit2/inc/Minuit2/MinimumParameters.h,
	  minuit2/inc/Minuit2/MinimumSeed.h,
	  minuit2/inc/Minuit2/MinimumSeedGenerator.h,
	  minuit2/inc/Minuit2/MinimumState.h,
	  minuit2/inc/Minuit2/MinosError.h,
	  minuit2/inc/Minuit2/MinuitParameter.h,
	  minuit2/inc/Minuit2/MnApplication.h,
	  minuit2/inc/Minuit2/MnConfig.h, minuit2/inc/Minuit2/MnContours.h,
	  minuit2/inc/Minuit2/MnCovarianceSqueeze.h,
	  minuit2/inc/Minuit2/MnCross.h, minuit2/inc/Minuit2/MnEigen.h,
	  minuit2/inc/Minuit2/MnFcn.h,
	  minuit2/inc/Minuit2/MnFumiliMinimize.h,
	  minuit2/inc/Minuit2/MnFunctionCross.h,
	  minuit2/inc/Minuit2/MnGlobalCorrelationCoeff.h,
	  minuit2/inc/Minuit2/MnHesse.h,
	  minuit2/inc/Minuit2/MnLineSearch.h,
	  minuit2/inc/Minuit2/MnMachinePrecision.h,
	  minuit2/inc/Minuit2/MnMatrix.h, minuit2/inc/Minuit2/MnMigrad.h,
	  minuit2/inc/Minuit2/MnMinimize.h, minuit2/inc/Minuit2/MnMinos.h,
	  minuit2/inc/Minuit2/MnParabola.h,
	  minuit2/inc/Minuit2/MnParabolaFactory.h,
	  minuit2/inc/Minuit2/MnParabolaPoint.h,
	  minuit2/inc/Minuit2/MnParameterScan.h,
	  minuit2/inc/Minuit2/MnPlot.h, minuit2/inc/Minuit2/MnPosDef.h,
	  minuit2/inc/Minuit2/MnPrint.h,
	  minuit2/inc/Minuit2/MnRefCountedPointer.h,
	  minuit2/inc/Minuit2/MnReferenceCounter.h,
	  minuit2/inc/Minuit2/MnScan.h,
	  minuit2/inc/Minuit2/MnSeedGenerator.h,
	  minuit2/inc/Minuit2/MnSimplex.h,
	  minuit2/inc/Minuit2/MnStrategy.h, minuit2/inc/Minuit2/MnTiny.h,
	  minuit2/inc/Minuit2/MnUserCovariance.h,
	  minuit2/inc/Minuit2/MnUserFcn.h,
	  minuit2/inc/Minuit2/MnUserParameterState.h,
	  minuit2/inc/Minuit2/MnUserParameters.h,
	  minuit2/inc/Minuit2/MnUserTransformation.h,
	  minuit2/inc/Minuit2/MnVectorTransform.h,
	  minuit2/inc/Minuit2/ModularFunctionMinimizer.h,
	  minuit2/inc/Minuit2/NegativeG2LineSearch.h,
	  minuit2/inc/Minuit2/Numerical2PGradientCalculator.h,
	  minuit2/inc/Minuit2/ParametricFunction.h,
	  minuit2/inc/Minuit2/ScanBuilder.h,
	  minuit2/inc/Minuit2/ScanMinimizer.h,
	  minuit2/inc/Minuit2/SimplexBuilder.h,
	  minuit2/inc/Minuit2/SimplexMinimizer.h,
	  minuit2/inc/Minuit2/SimplexParameters.h,
	  minuit2/inc/Minuit2/SimplexSeedGenerator.h,
	  minuit2/inc/Minuit2/SinParameterTransformation.h,
	  minuit2/inc/Minuit2/SqrtLowParameterTransformation.h,
	  minuit2/inc/Minuit2/SqrtUpParameterTransformation.h,
	  minuit2/inc/Minuit2/StackAllocator.h,
	  minuit2/inc/Minuit2/VariableMetricBuilder.h,
	  minuit2/inc/Minuit2/VariableMetricEDMEstimator.h,
	  minuit2/inc/Minuit2/VariableMetricMinimizer.h,
	  minuit2/inc/Minuit2/VectorOuterProduct.h,
	  minuit2/inc/TBinLikelihoodFCN.h, minuit2/inc/TChi2ExtendedFCN.h,
	  minuit2/inc/TChi2ExtendedFitData.h, minuit2/inc/TChi2FCN.h,
	  minuit2/inc/TChi2FitData.h, minuit2/inc/TFcnAdapter.h,
	  minuit2/inc/TFitterFumili.h, minuit2/inc/TFitterMinuit.h,
	  minuit2/inc/TFumiliFCN.h,
	  minuit2/src/AnalyticalGradientCalculator.cxx,
	  minuit2/src/BasicMinimumError.cxx,
	  minuit2/src/CombinedMinimumBuilder.cxx,
	  minuit2/src/DavidonErrorUpdator.cxx, minuit2/src/FitterUtil.cxx,
	  minuit2/src/FitterUtil.h, minuit2/src/FumiliBuilder.cxx,
	  minuit2/src/FumiliErrorUpdator.cxx,
	  minuit2/src/FumiliGradientCalculator.cxx,
	  minuit2/src/FumiliMinimizer.cxx,
	  minuit2/src/FumiliStandardChi2FCN.cxx,
	  minuit2/src/FumiliStandardMaximumLikelihoodFCN.cxx,
	  minuit2/src/HessianGradientCalculator.cxx,
	  minuit2/src/InitialGradientCalculator.cxx,
	  minuit2/src/LaEigenValues.cxx, minuit2/src/LaInnerProduct.cxx,
	  minuit2/src/LaInverse.cxx, minuit2/src/LaOuterProduct.cxx,
	  minuit2/src/LaSumOfElements.cxx,
	  minuit2/src/LaVtMVSimilarity.cxx, minuit2/src/MnApplication.cxx,
	  minuit2/src/MnContours.cxx, minuit2/src/MnCovarianceSqueeze.cxx,
	  minuit2/src/MnEigen.cxx, minuit2/src/MnFcn.cxx,
	  minuit2/src/MnFumiliMinimize.cxx,
	  minuit2/src/MnFunctionCross.cxx,
	  minuit2/src/MnGlobalCorrelationCoeff.cxx,
	  minuit2/src/MnHesse.cxx, minuit2/src/MnLineSearch.cxx,
	  minuit2/src/MnMachinePrecision.cxx, minuit2/src/MnMinos.cxx,
	  minuit2/src/MnParabolaFactory.cxx,
	  minuit2/src/MnParameterScan.cxx, minuit2/src/MnPlot.cxx,
	  minuit2/src/MnPosDef.cxx, minuit2/src/MnPrint.cxx,
	  minuit2/src/MnScan.cxx, minuit2/src/MnSeedGenerator.cxx,
	  minuit2/src/MnStrategy.cxx, minuit2/src/MnTiny.cxx,
	  minuit2/src/MnUserFcn.cxx, minuit2/src/MnUserParameterState.cxx,
	  minuit2/src/MnUserParameters.cxx,
	  minuit2/src/MnUserTransformation.cxx,
	  minuit2/src/ModularFunctionMinimizer.cxx,
	  minuit2/src/NegativeG2LineSearch.cxx,
	  minuit2/src/Numerical2PGradientCalculator.cxx,
	  minuit2/src/ParametricFunction.cxx, minuit2/src/ScanBuilder.cxx,
	  minuit2/src/SimplexBuilder.cxx,
	  minuit2/src/SimplexParameters.cxx,
	  minuit2/src/SimplexSeedGenerator.cxx,
	  minuit2/src/SinParameterTransformation.cxx,
	  minuit2/src/SqrtLowParameterTransformation.cxx,
	  minuit2/src/SqrtUpParameterTransformation.cxx,
	  minuit2/src/TBinLikelihoodFCN.cxx,
	  minuit2/src/TChi2ExtendedFCN.cxx,
	  minuit2/src/TChi2ExtendedFitData.cxx, minuit2/src/TChi2FCN.cxx,
	  minuit2/src/TChi2FitData.cxx, minuit2/src/TFcnAdapter.cxx,
	  minuit2/src/TFitterFumili.cxx, minuit2/src/TFumiliFCN.cxx,
	  minuit2/src/VariableMetricBuilder.cxx,
	  minuit2/src/VariableMetricEDMEstimator.cxx,
	  minuit2/src/mnbins.cxx, minuit2/src/mndasum.cxx,
	  minuit2/src/mndaxpy.cxx, minuit2/src/mnddot.cxx,
	  minuit2/src/mndscal.cxx, minuit2/src/mndspmv.cxx,
	  minuit2/src/mndspr.cxx, minuit2/src/mnlsame.cxx,
	  minuit2/src/mnteigen.cxx, minuit2/src/mntplot.cxx,
	  minuit2/src/mnvert.cxx, minuit2/src/mnxerbla.cxx,
	  minuit2/test/MnSim/DemoFumili.cxx,
	  minuit2/test/MnSim/DemoGaussSim.cxx,
	  minuit2/test/MnSim/FlatRandomGen.h,
	  minuit2/test/MnSim/GaussDataGen.cxx,
	  minuit2/test/MnSim/GaussDataGen.h,
	  minuit2/test/MnSim/GaussFcn.cxx, minuit2/test/MnSim/GaussFcn.h,
	  minuit2/test/MnSim/GaussFcn2.cxx, minuit2/test/MnSim/GaussFcn2.h,
	  minuit2/test/MnSim/GaussFunction.h,
	  minuit2/test/MnSim/GaussRandomGen.h,
	  minuit2/test/MnSim/GaussianModelFunction.h,
	  minuit2/test/MnSim/PaulTest.cxx,
	  minuit2/test/MnSim/PaulTest2.cxx,
	  minuit2/test/MnSim/PaulTest3.cxx,
	  minuit2/test/MnSim/PaulTest4.cxx,
	  minuit2/test/MnSim/ReneTest.cxx,
	  minuit2/test/MnTutorial/Quad12F.h,
	  minuit2/test/MnTutorial/Quad12FMain.cxx,
	  minuit2/test/MnTutorial/Quad1F.h,
	  minuit2/test/MnTutorial/Quad1FMain.cxx,
	  minuit2/test/MnTutorial/Quad4F.h,
	  minuit2/test/MnTutorial/Quad4FMain.cxx,
	  minuit2/test/MnTutorial/Quad8F.h,
	  minuit2/test/MnTutorial/Quad8FMain.cxx,
	  minuit2/test/testGraph.cxx, minuit2/test/testMinimize.cxx,
	  minuit2/test/testUserFunc.cxx, mlp/inc/TMLPAnalyzer.h,
	  mlp/inc/TMultiLayerPerceptron.h, mlp/inc/TNeuron.h,
	  mlp/inc/TSynapse.h, mlp/src/TMLPAnalyzer.cxx,
	  mlp/src/TMultiLayerPerceptron.cxx, mlp/src/TNeuron.cxx,
	  mlp/src/TSynapse.cxx, monalisa/inc/TMonaLisaReader.h,
	  monalisa/inc/TMonaLisaWriter.h, monalisa/src/TMonaLisaReader.cxx,
	  monalisa/src/TMonaLisaWriter.cxx, mysql/inc/TMySQLResult.h,
	  mysql/inc/TMySQLRow.h, mysql/inc/TMySQLServer.h,
	  mysql/inc/TMySQLStatement.h, mysql/src/TMySQLServer.cxx,
	  mysql/src/TMySQLStatement.cxx, net/inc/LinkDef.h,
	  net/inc/NetErrors.h, net/inc/RRemoteProtocol.h,
	  net/inc/TApplicationRemote.h, net/inc/TApplicationServer.h,
	  net/inc/TFTP.h, net/inc/TFileStager.h, net/inc/TGrid.h,
	  net/inc/TGridCollection.h, net/inc/TGridJDL.h,
	  net/inc/TGridJob.h, net/inc/TGridJobStatus.h,
	  net/inc/TGridJobStatusList.h, net/inc/TGridResult.h,
	  net/inc/TMessage.h, net/inc/TMonitor.h, net/inc/TNetFile.h,
	  net/inc/TPServerSocket.h, net/inc/TPSocket.h,
	  net/inc/TSQLColumnInfo.h, net/inc/TSQLMonitoring.h,
	  net/inc/TSQLResult.h, net/inc/TSQLServer.h,
	  net/inc/TSQLStatement.h, net/inc/TSQLTableInfo.h,
	  net/inc/TSecContext.h, net/inc/TServerSocket.h,
	  net/inc/TSocket.h, net/inc/TWebFile.h, net/src/NetErrors.cxx,
	  net/src/TApplicationRemote.cxx, net/src/TApplicationServer.cxx,
	  net/src/TFTP.cxx, net/src/TFileStager.cxx, net/src/TGrid.cxx,
	  net/src/TGridJDL.cxx, net/src/TGridJob.cxx,
	  net/src/TGridJobStatus.cxx, net/src/TGridJobStatusList.cxx,
	  net/src/TGridResult.cxx, net/src/TMessage.cxx,
	  net/src/TMonitor.cxx, net/src/TNetFile.cxx,
	  net/src/TPServerSocket.cxx, net/src/TPSocket.cxx,
	  net/src/TSQLColumnInfo.cxx, net/src/TSQLMonitoring.cxx,
	  net/src/TSQLServer.cxx, net/src/TSQLStatement.cxx,
	  net/src/TSQLTableInfo.cxx, net/src/TSecContext.cxx,
	  net/src/TServerSocket.cxx, net/src/TSocket.cxx,
	  net/src/TWebFile.cxx, netx/inc/LinkDef.h, netx/inc/TXNetFile.h,
	  netx/inc/TXNetFileStager.h, netx/inc/TXNetSystem.h,
	  netx/src/TXNetFile.cxx, netx/src/TXNetFileStager.cxx,
	  netx/src/TXNetSystem.cxx, newdelete/inc/MemCheck.h,
	  newdelete/src/MemCheck.cxx, newdelete/src/NewDelete.cxx,
	  odbc/inc/TODBCResult.h, odbc/inc/TODBCRow.h,
	  odbc/inc/TODBCServer.h, odbc/inc/TODBCStatement.h,
	  odbc/src/TODBCResult.cxx, odbc/src/TODBCRow.cxx,
	  odbc/src/TODBCServer.cxx, odbc/src/TODBCStatement.cxx,
	  oracle/inc/LinkDef.h, oracle/inc/TOracleResult.h,
	  oracle/inc/TOracleRow.h, oracle/inc/TOracleServer.h,
	  oracle/inc/TOracleStatement.h, oracle/src/TOracleResult.cxx,
	  oracle/src/TOracleRow.cxx, oracle/src/TOracleServer.cxx,
	  oracle/src/TOracleStatement.cxx, peac/inc/LinkDef.h,
	  peac/inc/LinkDefGui.h, peac/inc/TPEAC.h, peac/inc/TProofPEAC.h,
	  peac/inc/TProofStartupDialog.h, peac/src/TPEAC.cxx,
	  peac/src/TProofPEAC.cxx, peac/src/TProofStartupDialog.cxx,
	  pgsql/inc/TPgSQLResult.h, pgsql/inc/TPgSQLRow.h,
	  pgsql/inc/TPgSQLServer.h, pgsql/inc/TPgSQLStatement.h,
	  pgsql/src/TPgSQLResult.cxx, pgsql/src/TPgSQLRow.cxx,
	  pgsql/src/TPgSQLServer.cxx, pgsql/src/TPgSQLStatement.cxx,
	  physics/inc/LinkDef.h, physics/inc/TFeldmanCousins.h,
	  physics/inc/TGenPhaseSpace.h, physics/inc/TLorentzRotation.h,
	  physics/inc/TLorentzVector.h, physics/inc/TQuaternion.h,
	  physics/inc/TRobustEstimator.h, physics/inc/TRolke.h,
	  physics/inc/TRotation.h, physics/inc/TVector2.h,
	  physics/inc/TVector3.h, physics/src/TFeldmanCousins.cxx,
	  physics/src/TGenPhaseSpace.cxx, physics/src/TLorentzRotation.cxx,
	  physics/src/TLorentzVector.cxx, physics/src/TQuaternion.cxx,
	  physics/src/TRobustEstimator.cxx, physics/src/TRolke.cxx,
	  physics/src/TRotation.cxx, physics/src/TVector2.cxx,
	  physics/src/TVector3.cxx, postscript/inc/LinkDef.h,
	  postscript/inc/TImageDump.h, postscript/inc/TPDF.h,
	  postscript/inc/TPostScript.h, postscript/inc/TSVG.h,
	  postscript/src/TImageDump.cxx, postscript/src/TPDF.cxx,
	  postscript/src/TPostScript.cxx, postscript/src/TSVG.cxx,
	  proof/inc/LinkDef.h, proof/inc/TCondor.h, proof/inc/TDSet.h,
	  proof/inc/TDSetProxy.h, proof/inc/TProof.h,
	  proof/inc/TProofChain.h, proof/inc/TProofCondor.h,
	  proof/inc/TProofDebug.h, proof/inc/TProofLog.h,
	  proof/inc/TProofMgr.h, proof/inc/TProofNodeInfo.h,
	  proof/inc/TProofQueryResult.h, proof/inc/TProofResources.h,
	  proof/inc/TProofResourcesStatic.h, proof/inc/TProofServ.h,
	  proof/inc/TProofSuperMaster.h, proof/inc/TSlave.h,
	  proof/inc/TVirtualProofPlayer.h, proof/src/TCondor.cxx,
	  proof/src/TDSet.cxx, proof/src/TDSetProxy.cxx,
	  proof/src/TProof.cxx, proof/src/TProofChain.cxx,
	  proof/src/TProofCondor.cxx, proof/src/TProofDebug.cxx,
	  proof/src/TProofLog.cxx, proof/src/TProofMgr.cxx,
	  proof/src/TProofNodeInfo.cxx, proof/src/TProofQueryResult.cxx,
	  proof/src/TProofResourcesStatic.cxx, proof/src/TProofServ.cxx,
	  proof/src/TProofSuperMaster.cxx, proof/src/TSlave.cxx,
	  proof/src/TVirtualProofPlayer.cxx, proofd/inc/XProofProtUtils.h,
	  proofd/inc/XProofProtocol.h, proofd/inc/XrdProofConn.h,
	  proofd/inc/XrdProofGroup.h, proofd/inc/XrdProofPhyConn.h,
	  proofd/inc/XrdProofSched.h, proofd/inc/XrdProofServProxy.h,
	  proofd/inc/XrdProofWorker.h, proofd/inc/XrdProofdAux.h,
	  proofd/inc/XrdProofdClient.h, proofd/inc/XrdProofdManager.h,
	  proofd/inc/XrdProofdPlatform.h, proofd/inc/XrdProofdProtocol.h,
	  proofd/inc/XrdProofdResponse.h, proofd/inc/XrdProofdTrace.h,
	  proofd/inc/XrdROOT.h, proofd/inc/proofdp.h,
	  proofd/src/XProofProtUtils.cxx, proofd/src/XrdProofConn.cxx,
	  proofd/src/XrdProofGroup.cxx, proofd/src/XrdProofPhyConn.cxx,
	  proofd/src/XrdProofSched.cxx, proofd/src/XrdProofServProxy.cxx,
	  proofd/src/XrdProofWorker.cxx, proofd/src/XrdProofdAux.cxx,
	  proofd/src/XrdProofdClient.cxx, proofd/src/XrdProofdManager.cxx,
	  proofd/src/XrdProofdProtocol.cxx,
	  proofd/src/XrdProofdResponse.cxx, proofd/src/XrdROOT.cxx,
	  proofd/src/proofd.cxx, proofplayer/inc/LinkDef.h,
	  proofplayer/inc/LinkDefDraw.h,
	  proofplayer/inc/TAdaptivePacketizer.h,
	  proofplayer/inc/TDrawFeedback.h, proofplayer/inc/TEventIter.h,
	  proofplayer/inc/TFileMerger.h, proofplayer/inc/TPacketizer.h,
	  proofplayer/inc/TPacketizerProgressive.h,
	  proofplayer/inc/TPerfStats.h, proofplayer/inc/TProofDraw.h,
	  proofplayer/inc/TProofLimitsFinder.h,
	  proofplayer/inc/TProofPlayer.h, proofplayer/inc/TStatus.h,
	  proofplayer/inc/TVirtualPacketizer.h,
	  proofplayer/src/TAdaptivePacketizer.cxx,
	  proofplayer/src/TDrawFeedback.cxx,
	  proofplayer/src/TEventIter.cxx, proofplayer/src/TFileMerger.cxx,
	  proofplayer/src/TPacketizer.cxx,
	  proofplayer/src/TPacketizerProgressive.cxx,
	  proofplayer/src/TPerfStats.cxx, proofplayer/src/TProofDraw.cxx,
	  proofplayer/src/TProofLimitsFinder.cxx,
	  proofplayer/src/TProofPlayer.cxx, proofplayer/src/TStatus.cxx,
	  proofplayer/src/TVirtualPacketizer.cxx, proofx/inc/LinkDef.h,
	  proofx/inc/TXHandler.h, proofx/inc/TXProofMgr.h,
	  proofx/inc/TXProofServ.h, proofx/inc/TXSlave.h,
	  proofx/inc/TXSocket.h, proofx/inc/TXSocketHandler.h,
	  proofx/inc/TXUnixSocket.h, proofx/src/TXHandler.cxx,
	  proofx/src/TXProofMgr.cxx, proofx/src/TXProofServ.cxx,
	  proofx/src/TXSlave.cxx, proofx/src/TXSocket.cxx,
	  proofx/src/TXSocketHandler.cxx, proofx/src/TXUnixSocket.cxx,
	  pyroot/ROOT.py, pyroot/inc/TPyException.h,
	  pyroot/inc/TPyReturn.h, pyroot/inc/TPython.h,
	  pyroot/src/ClassMethodHolder.cxx, pyroot/src/ClassMethodHolder.h,
	  pyroot/src/ConstructorHolder.cxx, pyroot/src/ConstructorHolder.h,
	  pyroot/src/Converters.cxx, pyroot/src/Converters.h,
	  pyroot/src/Executors.cxx, pyroot/src/Executors.h,
	  pyroot/src/MemoryRegulator.cxx, pyroot/src/MemoryRegulator.h,
	  pyroot/src/MethodHolder.cxx, pyroot/src/MethodHolder.h,
	  pyroot/src/MethodProxy.cxx, pyroot/src/MethodProxy.h,
	  pyroot/src/ObjectProxy.cxx, pyroot/src/ObjectProxy.h,
	  pyroot/src/PropertyProxy.cxx, pyroot/src/PropertyProxy.h,
	  pyroot/src/PyBufferFactory.cxx, pyroot/src/PyBufferFactory.h,
	  pyroot/src/PyCallable.h, pyroot/src/PyROOT.h,
	  pyroot/src/PyRootType.cxx, pyroot/src/PyRootType.h,
	  pyroot/src/Pythonize.cxx, pyroot/src/Pythonize.h,
	  pyroot/src/RootModule.cxx, pyroot/src/RootWrapper.cxx,
	  pyroot/src/RootWrapper.h, pyroot/src/TPyClassGenerator.cxx,
	  pyroot/src/TPyClassGenerator.h, pyroot/src/TPyException.cxx,
	  pyroot/src/TPyReturn.cxx, pyroot/src/TPython.cxx,
	  pyroot/src/Utility.cxx, pyroot/src/Utility.h,
	  pythia6/inc/LinkDef.h, pythia6/inc/TMCParticle.h,
	  pythia6/inc/TPythia6.h, pythia6/inc/TPythia6Calls.h,
	  pythia6/inc/TPythia6Decayer.h, pythia6/src/TMCParticle.cxx,
	  pythia6/src/TPythia6.cxx, pythia6/src/TPythia6Decayer.cxx,
	  qt/inc/LinkDef.h, qt/inc/TGQt.h, qt/inc/TObjectExecute.h,
	  qt/inc/TQMimeTypes.h, qt/inc/TQUserEvent.h,
	  qt/inc/TQtApplication.h, qt/inc/TQtBrush.h,
	  qt/inc/TQtClientFilter.h, qt/inc/TQtClientGuard.h,
	  qt/inc/TQtClientWidget.h, qt/inc/TQtEmitter.h, qt/inc/TQtEvent.h,
	  qt/inc/TQtEventQueue.h, qt/inc/TQtLock.h, qt/inc/TQtMarker.h,
	  qt/inc/TQtRootApplication.h, qt/inc/TQtRootSlot.h,
	  qt/inc/TQtTimer.h, qt/inc/TQtUtil.h, qt/inc/TQtWidget.h,
	  qt/inc/TVirtualX.interface.h, qt/inc/TWaitCondition.h,
	  qt/src/GQtGUI.cxx, qt/src/TGQt.cxx, qt/src/TGQtDummy.cxx,
	  qt/src/TQMimeTypes.cxx, qt/src/TQtApplication.cxx,
	  qt/src/TQtBrush.cxx, qt/src/TQtClientFilter.cxx,
	  qt/src/TQtClientGuard.cxx, qt/src/TQtClientWidget.cxx,
	  qt/src/TQtEvent.cxx, qt/src/TQtEventQueue.cxx,
	  qt/src/TQtMarker.cxx, qt/src/TQtRootApplication.cxx,
	  qt/src/TQtRootSlot.cxx, qt/src/TQtTimer.cxx,
	  qt/src/TQtWidget.cxx, qtgsi/inc/TQApplication.h,
	  qtgsi/inc/TQCanvasImp.h, qtgsi/inc/TQCanvasMenu.h,
	  qtgsi/inc/TQRootApplication.h, qtgsi/inc/TQRootCanvas.h,
	  qtgsi/inc/TQRootDialog.h, qtgsi/inc/TQRootGuiFactory.h,
	  qtgsi/src/TQApplication.cxx, qtgsi/src/TQCanvasImp.cxx,
	  qtgsi/src/TQCanvasMenu.cxx, qtgsi/src/TQRootApplication.cxx,
	  qtgsi/src/TQRootCanvas.cxx, qtgsi/src/TQRootDialog.cxx,
	  qtgsi/src/TQRootGuiFactory.cxx, qtroot/inc/LinkDef.h,
	  quadp/inc/LinkDef.h, quadp/inc/TGondzioSolver.h,
	  quadp/inc/TMehrotraSolver.h, quadp/inc/TQpDataBase.h,
	  quadp/inc/TQpDataDens.h, quadp/inc/TQpDataSparse.h,
	  quadp/inc/TQpLinSolverBase.h, quadp/inc/TQpLinSolverDens.h,
	  quadp/inc/TQpLinSolverSparse.h, quadp/inc/TQpProbBase.h,
	  quadp/inc/TQpProbDens.h, quadp/inc/TQpProbSparse.h,
	  quadp/inc/TQpResidual.h, quadp/inc/TQpSolverBase.h,
	  quadp/inc/TQpVar.h, quadp/src/TGondzioSolver.cxx,
	  quadp/src/TMehrotraSolver.cxx, quadp/src/TQpDataBase.cxx,
	  quadp/src/TQpDataDens.cxx, quadp/src/TQpDataSparse.cxx,
	  quadp/src/TQpLinSolverBase.cxx, quadp/src/TQpLinSolverDens.cxx,
	  quadp/src/TQpLinSolverSparse.cxx, quadp/src/TQpProbBase.cxx,
	  quadp/src/TQpProbDens.cxx, quadp/src/TQpProbSparse.cxx,
	  quadp/src/TQpResidual.cxx, quadp/src/TQpSolverBase.cxx,
	  quadp/src/TQpVar.cxx, reflex/inc/LinkDef.h,
	  reflex/inc/Reflex/Any.h, reflex/inc/Reflex/Base.h,
	  reflex/inc/Reflex/Builder/ClassBuilder.h,
	  reflex/inc/Reflex/Builder/CollectionProxy.h,
	  reflex/inc/Reflex/Builder/DictSelection.h,
	  reflex/inc/Reflex/Builder/EnumBuilder.h,
	  reflex/inc/Reflex/Builder/FunctionBuilder.h,
	  reflex/inc/Reflex/Builder/NamespaceBuilder.h,
	  reflex/inc/Reflex/Builder/ReflexBuilder.h,
	  reflex/inc/Reflex/Builder/TypeBuilder.h,
	  reflex/inc/Reflex/Builder/TypedefBuilder.h,
	  reflex/inc/Reflex/Builder/UnionBuilder.h,
	  reflex/inc/Reflex/Builder/VariableBuilder.h,
	  reflex/inc/Reflex/Callback.h,
	  reflex/inc/Reflex/DictionaryGenerator.h,
	  reflex/inc/Reflex/Kernel.h, reflex/inc/Reflex/Member.h,
	  reflex/inc/Reflex/MemberTemplate.h, reflex/inc/Reflex/Object.h,
	  reflex/inc/Reflex/PluginService.h,
	  reflex/inc/Reflex/PropertyList.h, reflex/inc/Reflex/Reflex.h,
	  reflex/inc/Reflex/Scope.h, reflex/inc/Reflex/SharedLibrary.h,
	  reflex/inc/Reflex/Tools.h, reflex/inc/Reflex/Type.h,
	  reflex/inc/Reflex/TypeTemplate.h,
	  reflex/inc/Reflex/ValueObject.h,
	  reflex/inc/Reflex/internal/InternalTools.h,
	  reflex/inc/Reflex/internal/MemberBase.h,
	  reflex/inc/Reflex/internal/MemberTemplateImpl.h,
	  reflex/inc/Reflex/internal/MemberTemplateName.h,
	  reflex/inc/Reflex/internal/OwnedMember.h,
	  reflex/inc/Reflex/internal/OwnedMemberTemplate.h,
	  reflex/inc/Reflex/internal/OwnedPropertyList.h,
	  reflex/inc/Reflex/internal/PropertyListImpl.h,
	  reflex/inc/Reflex/internal/ScopeBase.h,
	  reflex/inc/Reflex/internal/ScopeName.h,
	  reflex/inc/Reflex/internal/TypeBase.h,
	  reflex/inc/Reflex/internal/TypeName.h,
	  reflex/inc/Reflex/internal/TypeTemplateImpl.h,
	  reflex/inc/Reflex/internal/TypeTemplateName.h,
	  reflex/src/Any.cxx, reflex/src/Array.cxx, reflex/src/Array.h,
	  reflex/src/Base.cxx, reflex/src/Callback.cxx,
	  reflex/src/Class.cxx, reflex/src/Class.h,
	  reflex/src/ClassBuilder.cxx,
	  reflex/src/ClassTemplateInstance.cxx,
	  reflex/src/ClassTemplateInstance.h, reflex/src/DataMember.cxx,
	  reflex/src/DataMember.h, reflex/src/DictionaryGenerator.cxx,
	  reflex/src/Enum.cxx, reflex/src/Enum.h,
	  reflex/src/EnumBuilder.cxx, reflex/src/FuncHandler.cxx,
	  reflex/src/FuncHandler.h, reflex/src/Function.cxx,
	  reflex/src/Function.h, reflex/src/FunctionBuilder.cxx,
	  reflex/src/FunctionMember.cxx, reflex/src/FunctionMember.h,
	  reflex/src/FunctionMemberTemplateInstance.cxx,
	  reflex/src/FunctionMemberTemplateInstance.h,
	  reflex/src/Fundamental.cxx, reflex/src/Fundamental.h,
	  reflex/src/Kernel.cxx, reflex/src/Member.cxx,
	  reflex/src/MemberBase.cxx, reflex/src/MemberTemplate.cxx,
	  reflex/src/MemberTemplateImpl.cxx,
	  reflex/src/MemberTemplateName.cxx, reflex/src/NameLookup.cxx,
	  reflex/src/NameLookup.h, reflex/src/Namespace.cxx,
	  reflex/src/Namespace.h, reflex/src/NamespaceBuilder.cxx,
	  reflex/src/Object.cxx, reflex/src/PluginFactoryMap.cxx,
	  reflex/src/PluginFactoryMap.h, reflex/src/PluginService.cxx,
	  reflex/src/Pointer.cxx, reflex/src/Pointer.h,
	  reflex/src/PointerToMember.cxx, reflex/src/PointerToMember.h,
	  reflex/src/PropertyList.cxx, reflex/src/PropertyListImpl.cxx,
	  reflex/src/Scope.cxx, reflex/src/ScopeBase.cxx,
	  reflex/src/ScopeName.cxx, reflex/src/TemplateInstance.cxx,
	  reflex/src/TemplateInstance.h, reflex/src/Tools.cxx,
	  reflex/src/Type.cxx, reflex/src/TypeBase.cxx,
	  reflex/src/TypeBuilder.cxx, reflex/src/TypeName.cxx,
	  reflex/src/TypeTemplate.cxx, reflex/src/TypeTemplateImpl.cxx,
	  reflex/src/TypeTemplateName.cxx, reflex/src/Typedef.cxx,
	  reflex/src/Typedef.h, reflex/src/TypedefBuilder.cxx,
	  reflex/src/Union.cxx, reflex/src/Union.h,
	  reflex/src/UnionBuilder.cxx, reflex/src/VariableBuilder.cxx,
	  reflex/src/dir_manip.h, reflex/src/stl_hash.h,
	  reflex/test/dictionary_generator.cpp,
	  reflex/test/test_ReflexBuilder_unit.cxx,
	  reflex/test/test_Reflex_generate.cxx,
	  reflex/test/test_Reflex_lookup.cxx,
	  reflex/test/test_Reflex_plugins.cxx,
	  reflex/test/test_Reflex_simple1.cxx,
	  reflex/test/test_Reflex_simple2.cxx,
	  reflex/test/test_Reflex_unit.cxx, rfio/inc/LinkDef.h,
	  rfio/inc/TRFIOFile.h, rfio/src/TRFIOFile.cxx, rint/inc/TRint.h,
	  rint/inc/TTabCom.h, rint/src/TRint.cxx, rint/src/TTabCom.cxx,
	  roofit/src/Roo2DKeysPdf.cxx, roofit/src/RooArgusBG.cxx,
	  roofit/src/RooBCPEffDecay.cxx, roofit/src/RooBCPGenDecay.cxx,
	  roofit/src/RooBDecay.cxx, roofit/src/RooBMixDecay.cxx,
	  roofit/src/RooBifurGauss.cxx, roofit/src/RooBlindTools.cxx,
	  roofit/src/RooBreitWigner.cxx, roofit/src/RooBukinPdf.cxx,
	  roofit/src/RooCBShape.cxx, roofit/src/RooChebychev.cxx,
	  roofit/src/RooDecay.cxx, roofit/src/RooDstD0BG.cxx,
	  roofit/src/RooExponential.cxx, roofit/src/RooGExpModel.cxx,
	  roofit/src/RooGaussModel.cxx, roofit/src/RooGaussian.cxx,
	  roofit/src/RooHistPdf.cxx, roofit/src/RooKeysPdf.cxx,
	  roofit/src/RooLandau.cxx, roofit/src/RooNonCPEigenDecay.cxx,
	  roofit/src/RooNovosibirsk.cxx,
	  roofit/src/RooParametricStepFunction.cxx,
	  roofit/src/RooPolynomial.cxx, roofit/src/RooUnblindCPAsymVar.cxx,
	  roofit/src/RooUnblindOffset.cxx,
	  roofit/src/RooUnblindPrecision.cxx,
	  roofit/src/RooUnblindUniform.cxx, roofit/src/RooVoigtian.cxx,
	  roofitcore/src/Roo1DTable.cxx, roofitcore/src/RooAICRegistry.cxx,
	  roofitcore/src/RooAbsAnaConvPdf.cxx,
	  roofitcore/src/RooAbsArg.cxx, roofitcore/src/RooAbsBinning.cxx,
	  roofitcore/src/RooAbsCategory.cxx,
	  roofitcore/src/RooAbsCategoryLValue.cxx,
	  roofitcore/src/RooAbsCollection.cxx,
	  roofitcore/src/RooAbsData.cxx, roofitcore/src/RooAbsFunc.cxx,
	  roofitcore/src/RooAbsGenContext.cxx,
	  roofitcore/src/RooAbsGoodnessOfFit.cxx,
	  roofitcore/src/RooAbsHiddenReal.cxx,
	  roofitcore/src/RooAbsIntegrator.cxx,
	  roofitcore/src/RooAbsLValue.cxx,
	  roofitcore/src/RooAbsMCStudyModule.cxx,
	  roofitcore/src/RooAbsOptGoodnessOfFit.cxx,
	  roofitcore/src/RooAbsPdf.cxx, roofitcore/src/RooAbsProxy.cxx,
	  roofitcore/src/RooAbsReal.cxx,
	  roofitcore/src/RooAbsRealLValue.cxx,
	  roofitcore/src/RooAbsRootFinder.cxx,
	  roofitcore/src/RooAbsString.cxx,
	  roofitcore/src/RooAcceptReject.cxx,
	  roofitcore/src/RooAdaptiveGaussKronrodIntegrator1D.cxx,
	  roofitcore/src/RooAddGenContext.cxx,
	  roofitcore/src/RooAddModel.cxx, roofitcore/src/RooAddPdf.cxx,
	  roofitcore/src/RooAddition.cxx, roofitcore/src/RooArgList.cxx,
	  roofitcore/src/RooArgProxy.cxx, roofitcore/src/RooArgSet.cxx,
	  roofitcore/src/RooBinning.cxx,
	  roofitcore/src/RooBrentRootFinder.cxx,
	  roofitcore/src/RooCatType.cxx, roofitcore/src/RooCategory.cxx,
	  roofitcore/src/RooCategoryProxy.cxx,
	  roofitcore/src/RooCategorySharedProperties.cxx,
	  roofitcore/src/RooChi2Var.cxx,
	  roofitcore/src/RooClassFactory.cxx, roofitcore/src/RooCmdArg.cxx,
	  roofitcore/src/RooCmdConfig.cxx, roofitcore/src/RooComplex.cxx,
	  roofitcore/src/RooConstVar.cxx,
	  roofitcore/src/RooConvCoefVar.cxx,
	  roofitcore/src/RooConvGenContext.cxx,
	  roofitcore/src/RooConvIntegrandBinding.cxx,
	  roofitcore/src/RooCurve.cxx, roofitcore/src/RooCustomizer.cxx,
	  roofitcore/src/RooDLLSignificanceMCSModule.cxx,
	  roofitcore/src/RooDataHist.cxx,
	  roofitcore/src/RooDataProjBinding.cxx,
	  roofitcore/src/RooDataSet.cxx, roofitcore/src/RooDirItem.cxx,
	  roofitcore/src/RooDouble.cxx,
	  roofitcore/src/RooEffGenContext.cxx,
	  roofitcore/src/RooEffProd.cxx, roofitcore/src/RooEfficiency.cxx,
	  roofitcore/src/RooEllipse.cxx, roofitcore/src/RooErrorVar.cxx,
	  roofitcore/src/RooExtendPdf.cxx, roofitcore/src/RooFitResult.cxx,
	  roofitcore/src/RooFormula.cxx, roofitcore/src/RooFormulaVar.cxx,
	  roofitcore/src/RooGaussKronrodIntegrator1D.cxx,
	  roofitcore/src/RooGenCategory.cxx,
	  roofitcore/src/RooGenContext.cxx,
	  roofitcore/src/RooGenProdProj.cxx,
	  roofitcore/src/RooGenericPdf.cxx,
	  roofitcore/src/RooGlobalFunc.cxx,
	  roofitcore/src/RooGraphEdge.cxx, roofitcore/src/RooGraphNode.cxx,
	  roofitcore/src/RooGraphSpring.cxx, roofitcore/src/RooGrid.cxx,
	  roofitcore/src/RooHashTable.cxx, roofitcore/src/RooHist.cxx,
	  roofitcore/src/RooHistError.cxx, roofitcore/src/RooHtml.cxx,
	  roofitcore/src/RooImproperIntegrator1D.cxx,
	  roofitcore/src/RooInt.cxx, roofitcore/src/RooIntegrator1D.cxx,
	  roofitcore/src/RooIntegrator2D.cxx,
	  roofitcore/src/RooIntegratorBinding.cxx,
	  roofitcore/src/RooInvTransform.cxx,
	  roofitcore/src/RooLinTransBinning.cxx,
	  roofitcore/src/RooLinearVar.cxx,
	  roofitcore/src/RooLinkedList.cxx,
	  roofitcore/src/RooLinkedListElem.cxx,
	  roofitcore/src/RooLinkedListIter.cxx, roofitcore/src/RooList.cxx,
	  roofitcore/src/RooListProxy.cxx,
	  roofitcore/src/RooMCIntegrator.cxx,
	  roofitcore/src/RooMCStudy.cxx, roofitcore/src/RooMPSentinel.cxx,
	  roofitcore/src/RooMapCatEntry.cxx,
	  roofitcore/src/RooMappedCategory.cxx, roofitcore/src/RooMath.cxx,
	  roofitcore/src/RooMinuit.cxx, roofitcore/src/RooMsgService.cxx,
	  roofitcore/src/RooMultiCatIter.cxx,
	  roofitcore/src/RooMultiCategory.cxx,
	  roofitcore/src/RooNLLVar.cxx, roofitcore/src/RooNameReg.cxx,
	  roofitcore/src/RooNameSet.cxx,
	  roofitcore/src/RooNormListManager.cxx,
	  roofitcore/src/RooNormManager.cxx,
	  roofitcore/src/RooNormSetCache.cxx,
	  roofitcore/src/RooNumConvPdf.cxx,
	  roofitcore/src/RooNumConvolution.cxx,
	  roofitcore/src/RooNumIntConfig.cxx,
	  roofitcore/src/RooNumIntFactory.cxx,
	  roofitcore/src/RooNumber.cxx, roofitcore/src/RooPlot.cxx,
	  roofitcore/src/RooPlotable.cxx, roofitcore/src/RooPolyVar.cxx,
	  roofitcore/src/RooPrintable.cxx,
	  roofitcore/src/RooProdGenContext.cxx,
	  roofitcore/src/RooProdPdf.cxx, roofitcore/src/RooProduct.cxx,
	  roofitcore/src/RooPullVar.cxx,
	  roofitcore/src/RooQuasiRandomGenerator.cxx,
	  roofitcore/src/RooRandom.cxx,
	  roofitcore/src/RooRandomizeParamMCSModule.cxx,
	  roofitcore/src/RooRangeBinning.cxx,
	  roofitcore/src/RooRealAnalytic.cxx,
	  roofitcore/src/RooRealBinding.cxx,
	  roofitcore/src/RooRealConstant.cxx,
	  roofitcore/src/RooRealIntegral.cxx,
	  roofitcore/src/RooRealMPFE.cxx, roofitcore/src/RooRealProxy.cxx,
	  roofitcore/src/RooRealSumPdf.cxx, roofitcore/src/RooRealVar.cxx,
	  roofitcore/src/RooRealVarSharedProperties.cxx,
	  roofitcore/src/RooRefCountList.cxx,
	  roofitcore/src/RooResolutionModel.cxx,
	  roofitcore/src/RooScaledFunc.cxx,
	  roofitcore/src/RooSegmentedIntegrator1D.cxx,
	  roofitcore/src/RooSegmentedIntegrator2D.cxx,
	  roofitcore/src/RooSetPair.cxx, roofitcore/src/RooSetProxy.cxx,
	  roofitcore/src/RooSharedProperties.cxx,
	  roofitcore/src/RooSharedPropertiesList.cxx,
	  roofitcore/src/RooSimGenContext.cxx,
	  roofitcore/src/RooSimPdfBuilder.cxx,
	  roofitcore/src/RooSimultaneous.cxx,
	  roofitcore/src/RooStreamParser.cxx,
	  roofitcore/src/RooStringVar.cxx,
	  roofitcore/src/RooSuperCategory.cxx,
	  roofitcore/src/RooTObjWrap.cxx, roofitcore/src/RooTable.cxx,
	  roofitcore/src/RooThreshEntry.cxx,
	  roofitcore/src/RooThresholdCategory.cxx,
	  roofitcore/src/RooTrace.cxx, roofitcore/src/RooTreeData.cxx,
	  roofitcore/src/RooTruthModel.cxx,
	  roofitcore/src/RooUniformBinning.cxx,
	  roofitcore/src/RooWorkspace.cxx, rootd/inc/rootdp.h,
	  rootd/src/rootd.cxx, roots/src/roots.cxx, rootx/src/rootx.cxx,
	  rootx/src/rootxx.cxx, rpdutils/inc/rpddefs.h,
	  rpdutils/inc/rpderr.h, rpdutils/inc/rpdp.h,
	  rpdutils/src/daemon.cxx, rpdutils/src/error.cxx,
	  rpdutils/src/globus.cxx, rpdutils/src/net.cxx,
	  rpdutils/src/netpar.cxx, rpdutils/src/rpdutils.cxx,
	  rpdutils/src/ssh.cxx, ruby/inc/TRuby.h, ruby/src/TRuby.cxx,
	  ruby/src/drr.cxx, ruby/src/rrcommon.h, ruby/src/rrenums.h,
	  sapdb/inc/TSapDBResult.h, sapdb/inc/TSapDBRow.h,
	  sapdb/inc/TSapDBServer.h, sapdb/src/TSapDBResult.cxx,
	  sapdb/src/TSapDBRow.cxx, sapdb/src/TSapDBServer.cxx,
	  sessionviewer/inc/LinkDef.h,
	  sessionviewer/inc/TProofProgressDialog.h,
	  sessionviewer/inc/TProofProgressLog.h,
	  sessionviewer/inc/TSessionDialogs.h,
	  sessionviewer/inc/TSessionLogView.h,
	  sessionviewer/inc/TSessionViewer.h,
	  sessionviewer/src/TProofProgressDialog.cxx,
	  sessionviewer/src/TProofProgressLog.cxx,
	  sessionviewer/src/TSessionDialogs.cxx,
	  sessionviewer/src/TSessionLogView.cxx,
	  sessionviewer/src/TSessionViewer.cxx, smatrix/build/Makefile.am,
	  smatrix/build/doc_Makefile.am, smatrix/build/inc_Makefile.am,
	  smatrix/build/inc_Math_Makefile.am,
	  smatrix/build/test_Makefile.am, smatrix/inc/LinkDef.h,
	  smatrix/inc/LinkDefD32.h, smatrix/inc/Math/BinaryOpPolicy.h,
	  smatrix/inc/Math/BinaryOperators.h,
	  smatrix/inc/Math/CramerInversion.icc,
	  smatrix/inc/Math/CramerInversionSym.icc,
	  smatrix/inc/Math/Dfact.h, smatrix/inc/Math/Dfactir.h,
	  smatrix/inc/Math/Dfinv.h, smatrix/inc/Math/Dinv.h,
	  smatrix/inc/Math/Dsfact.h, smatrix/inc/Math/Dsinv.h,
	  smatrix/inc/Math/Expression.h, smatrix/inc/Math/Functions.h,
	  smatrix/inc/Math/HelperOps.h, smatrix/inc/Math/MConfig.h,
	  smatrix/inc/Math/MatrixFunctions.h,
	  smatrix/inc/Math/MatrixInversion.icc,
	  smatrix/inc/Math/MatrixRepresentationsStatic.h,
	  smatrix/inc/Math/SMatrix.h, smatrix/inc/Math/SMatrix.icc,
	  smatrix/inc/Math/SMatrixDfwd.h, smatrix/inc/Math/SMatrixFfwd.h,
	  smatrix/inc/Math/SVector.h, smatrix/inc/Math/SVector.icc,
	  smatrix/inc/Math/StaticCheck.h,
	  smatrix/inc/Math/UnaryOperators.h, spectrum/inc/LinkDef.h,
	  spectrum/inc/TSpectrum.h, spectrum/inc/TSpectrum2.h,
	  spectrum/inc/TSpectrum2Fit.h, spectrum/inc/TSpectrum2Transform.h,
	  spectrum/inc/TSpectrum3.h, spectrum/inc/TSpectrumFit.h,
	  spectrum/inc/TSpectrumTransform.h, spectrum/src/TSpectrum.cxx,
	  spectrum/src/TSpectrum2.cxx, spectrum/src/TSpectrum2Fit.cxx,
	  spectrum/src/TSpectrum2Transform.cxx,
	  spectrum/src/TSpectrum3.cxx, spectrum/src/TSpectrumFit.cxx,
	  spectrum/src/TSpectrumTransform.cxx,
	  spectrumpainter/inc/LinkDef.h,
	  spectrumpainter/inc/TSpectrum2Painter.h,
	  spectrumpainter/src/TSpectrum2Painter.cxx, splot/inc/TSPlot.h,
	  splot/src/TSPlot.cxx, sql/inc/LinkDef.h, sql/inc/TBufferSQL2.h,
	  sql/inc/TKeySQL.h, sql/inc/TSQLClassInfo.h, sql/inc/TSQLFile.h,
	  sql/inc/TSQLObjectData.h, sql/inc/TSQLStructure.h,
	  sql/src/TBufferSQL2.cxx, sql/src/TKeySQL.cxx,
	  sql/src/TSQLClassInfo.cxx, sql/src/TSQLFile.cxx,
	  sql/src/TSQLObjectData.cxx, sql/src/TSQLStructure.cxx,
	  srputils/src/SRPAuth.cxx, srputils/src/rpasswd.c,
	  srputils/src/rtconf.c, table/inc/LinkDef.h, table/inc/TCernLib.h,
	  table/inc/TChair.h, table/inc/TColumnView.h,
	  table/inc/TDataSet.h, table/inc/TDataSetIter.h,
	  table/inc/TDsKey.h, table/inc/TFileIter.h, table/inc/TFileSet.h,
	  table/inc/TIndexTable.h, table/inc/TObjectSet.h,
	  table/inc/TPoints3D.h, table/inc/TPointsArray3D.h,
	  table/inc/TPolyLineShape.h, table/inc/TTable.h,
	  table/inc/TTable3Points.h, table/inc/TTableDescriptor.h,
	  table/inc/TTableIter.h, table/inc/TTableMap.h,
	  table/inc/TTablePadView3D.h, table/inc/TTablePoints.h,
	  table/inc/TTableSorter.h, table/inc/TVolume.h,
	  table/inc/TVolumePosition.h, table/inc/TVolumeView.h,
	  table/inc/TVolumeViewIter.h, table/inc/Ttypes.h,
	  table/inc/tableDescriptor.h, table/src/TCernLib.cxx,
	  table/src/TChair.cxx, table/src/TColumnView.cxx,
	  table/src/TDataSet.cxx, table/src/TDataSetIter.cxx,
	  table/src/TDsKey.cxx, table/src/TFileIter.cxx,
	  table/src/TFileSet.cxx, table/src/TIndexTable.cxx,
	  table/src/TObjectSet.cxx, table/src/TPoints3D.cxx,
	  table/src/TPointsArray3D.cxx, table/src/TPolyLineShape.cxx,
	  table/src/TTable.cxx, table/src/TTable3Points.cxx,
	  table/src/TTableDescriptor.cxx, table/src/TTableIter.cxx,
	  table/src/TTableMap.cxx, table/src/TTablePadView3D.cxx,
	  table/src/TTablePoints.cxx, table/src/TTableSorter.cxx,
	  table/src/TVolume.cxx, table/src/TVolumePosition.cxx,
	  table/src/TVolumeView.cxx, table/src/TVolumeViewIter.cxx,
	  test/Aclock.cxx, test/Event.cxx, test/Hello.cxx,
	  test/MainEvent.cxx, test/RootIDE/TGRootIDE.cxx,
	  test/RootIDE/TGRootIDE.h, test/RootIDE/main.cxx,
	  test/TestVectors.cxx, test/Tetris.cxx, test/ctorture.cxx,
	  test/eventa.cxx, test/guitest.cxx, test/guiviewer.cxx,
	  test/guiviewer.h, test/hsimple.cxx, test/hworld.cxx,
	  test/hworld2.cxx, test/minexam.cxx, test/rhtml/rhtml.cxx,
	  test/stress.cxx, test/stressHepix.cxx, test/stressVector.cxx,
	  test/tcollbm.cxx, test/tcollex.cxx, test/tstring.cxx,
	  test/vlazy.cxx, test/vmatrix.cxx, test/vvector.cxx,
	  thread/inc/LinkDef.h, thread/inc/PosixThreadInc.h,
	  thread/inc/TAtomicCount.h, thread/inc/TAtomicCountGcc.h,
	  thread/inc/TAtomicCountPthread.h, thread/inc/TAtomicCountWin32.h,
	  thread/inc/TCondition.h, thread/inc/TConditionImp.h,
	  thread/inc/TLockFile.h, thread/inc/TMutex.h,
	  thread/inc/TMutexImp.h, thread/inc/TPosixThread.h,
	  thread/inc/TRWLock.h, thread/inc/TSemaphore.h,
	  thread/inc/TThread.h, thread/inc/TThreadFactory.h,
	  thread/inc/TThreadImp.h, thread/inc/TWin32Condition.h,
	  thread/inc/TWin32Mutex.h, thread/inc/TWin32Thread.h,
	  thread/inc/TWin32ThreadFactory.h, thread/src/TCondition.cxx,
	  thread/src/TConditionImp.cxx, thread/src/TLockFile.cxx,
	  thread/src/TMutex.cxx, thread/src/TMutexImp.cxx,
	  thread/src/TPosixCondition.cxx, thread/src/TPosixThread.cxx,
	  thread/src/TSemaphore.cxx, thread/src/TThread.cxx,
	  thread/src/TThreadFactory.cxx, thread/src/TThreadImp.cxx,
	  thread/src/TWin32Condition.cxx, thread/src/TWin32Mutex.cxx,
	  thread/src/TWin32Thread.cxx, thread/src/TWin32ThreadFactory.cxx,
	  tree/inc/LinkDef.h, tree/inc/LinkDef2.h, tree/inc/TBasket.h,
	  tree/inc/TBasketSQL.h, tree/inc/TBranch.h,
	  tree/inc/TBranchBrowsable.h, tree/inc/TBranchClones.h,
	  tree/inc/TBranchElement.h, tree/inc/TBranchObject.h,
	  tree/inc/TBranchRef.h, tree/inc/TBufferSQL.h, tree/inc/TChain.h,
	  tree/inc/TChainElement.h, tree/inc/TEntryList.h,
	  tree/inc/TEntryListBlock.h, tree/inc/TEntryListFromFile.h,
	  tree/inc/TEventList.h, tree/inc/TFriendElement.h,
	  tree/inc/TLeaf.h, tree/inc/TLeafB.h, tree/inc/TLeafC.h,
	  tree/inc/TLeafD.h, tree/inc/TLeafElement.h, tree/inc/TLeafF.h,
	  tree/inc/TLeafI.h, tree/inc/TLeafL.h, tree/inc/TLeafO.h,
	  tree/inc/TLeafObject.h, tree/inc/TLeafS.h, tree/inc/TNtuple.h,
	  tree/inc/TNtupleD.h, tree/inc/TQueryResult.h,
	  tree/inc/TSelector.h, tree/inc/TSelectorCint.h,
	  tree/inc/TSelectorList.h, tree/inc/TSelectorScalar.h,
	  tree/inc/TTree.h, tree/inc/TTreeCache.h, tree/inc/TTreeCloner.h,
	  tree/inc/TTreeResult.h, tree/inc/TTreeRow.h, tree/inc/TTreeSQL.h,
	  tree/inc/TVirtualIndex.h, tree/inc/TVirtualTreePlayer.h,
	  tree/src/TBasket.cxx, tree/src/TBasketSQL.cxx,
	  tree/src/TBranch.cxx, tree/src/TBranchBrowsable.cxx,
	  tree/src/TBranchClones.cxx, tree/src/TBranchElement.cxx,
	  tree/src/TBranchObject.cxx, tree/src/TBranchRef.cxx,
	  tree/src/TBufferSQL.cxx, tree/src/TChain.cxx,
	  tree/src/TChainElement.cxx, tree/src/TCut.cxx,
	  tree/src/TEntryList.cxx, tree/src/TEntryListBlock.cxx,
	  tree/src/TEntryListFromFile.cxx, tree/src/TEventList.cxx,
	  tree/src/TFriendElement.cxx, tree/src/TLeaf.cxx,
	  tree/src/TLeafB.cxx, tree/src/TLeafC.cxx, tree/src/TLeafD.cxx,
	  tree/src/TLeafElement.cxx, tree/src/TLeafF.cxx,
	  tree/src/TLeafI.cxx, tree/src/TLeafL.cxx, tree/src/TLeafO.cxx,
	  tree/src/TLeafObject.cxx, tree/src/TLeafS.cxx,
	  tree/src/TNtuple.cxx, tree/src/TNtupleD.cxx,
	  tree/src/TQueryResult.cxx, tree/src/TSelector.cxx,
	  tree/src/TSelectorCint.cxx, tree/src/TSelectorList.cxx,
	  tree/src/TSelectorScalar.cxx, tree/src/TTree.cxx,
	  tree/src/TTreeCache.cxx, tree/src/TTreeCloner.cxx,
	  tree/src/TTreeResult.cxx, tree/src/TTreeRow.cxx,
	  tree/src/TTreeSQL.cxx, tree/src/TVirtualIndex.cxx,
	  tree/src/TVirtualTreePlayer.cxx, treeplayer/inc/LinkDef.h,
	  treeplayer/inc/TBranchProxy.h,
	  treeplayer/inc/TBranchProxyClassDescriptor.h,
	  treeplayer/inc/TBranchProxyDescriptor.h,
	  treeplayer/inc/TBranchProxyDirector.h,
	  treeplayer/inc/TBranchProxyTemplate.h,
	  treeplayer/inc/TChainIndex.h, treeplayer/inc/TFileDrawMap.h,
	  treeplayer/inc/TFormLeafInfo.h,
	  treeplayer/inc/TFormLeafInfoReference.h,
	  treeplayer/inc/TFriendProxy.h,
	  treeplayer/inc/TFriendProxyDescriptor.h,
	  treeplayer/inc/TRefArrayProxy.h, treeplayer/inc/TRefProxy.h,
	  treeplayer/inc/TSelectorDraw.h,
	  treeplayer/inc/TSelectorEntries.h,
	  treeplayer/inc/TTreeDrawArgsParser.h,
	  treeplayer/inc/TTreeFormula.h,
	  treeplayer/inc/TTreeFormulaManager.h,
	  treeplayer/inc/TTreeIndex.h, treeplayer/inc/TTreePlayer.h,
	  treeplayer/inc/TTreeProxyGenerator.h,
	  treeplayer/src/TBranchProxy.cxx,
	  treeplayer/src/TBranchProxyClassDescriptor.cxx,
	  treeplayer/src/TBranchProxyDescriptor.cxx,
	  treeplayer/src/TBranchProxyDirector.cxx,
	  treeplayer/src/TChainIndex.cxx, treeplayer/src/TFileDrawMap.cxx,
	  treeplayer/src/TFormLeafInfo.cxx,
	  treeplayer/src/TFormLeafInfoReference.cxx,
	  treeplayer/src/TFriendProxy.cxx,
	  treeplayer/src/TFriendProxyDescriptor.cxx,
	  treeplayer/src/TRefArrayProxy.cxx, treeplayer/src/TRefProxy.cxx,
	  treeplayer/src/TSelectorDraw.cxx,
	  treeplayer/src/TSelectorEntries.cxx,
	  treeplayer/src/TTreeDrawArgsParser.cxx,
	  treeplayer/src/TTreeFormula.cxx,
	  treeplayer/src/TTreeFormulaManager.cxx,
	  treeplayer/src/TTreeIndex.cxx, treeplayer/src/TTreePlayer.cxx,
	  treeplayer/src/TTreeProxyGenerator.cxx,
	  treeviewer/inc/HelpTextTV.h, treeviewer/inc/LinkDef.h,
	  treeviewer/inc/LinkDefWin32.h, treeviewer/inc/TParallelCoord.h,
	  treeviewer/inc/TParallelCoordEditor.h,
	  treeviewer/inc/TParallelCoordRange.h,
	  treeviewer/inc/TParallelCoordVar.h, treeviewer/inc/TSpider.h,
	  treeviewer/inc/TSpiderEditor.h, treeviewer/inc/TTVLVContainer.h,
	  treeviewer/inc/TTVSession.h, treeviewer/inc/TTreeViewer.h,
	  treeviewer/src/HelpTextTV.cxx, treeviewer/src/TParallelCoord.cxx,
	  treeviewer/src/TParallelCoordEditor.cxx,
	  treeviewer/src/TParallelCoordRange.cxx,
	  treeviewer/src/TParallelCoordVar.cxx, treeviewer/src/TSpider.cxx,
	  treeviewer/src/TSpiderEditor.cxx,
	  treeviewer/src/TTVLVContainer.cxx, treeviewer/src/TTVSession.cxx,
	  treeviewer/src/TTreeViewer.cxx, tutorials/fit/minuit2FitBench.C,
	  tutorials/fit/minuit2FitBench2D.C,
	  tutorials/fit/minuit2GausFit.C, tutorials/geant3tasks.C,
	  unix/inc/TUnixSystem.h, unix/src/TUnixSystem.cxx,
	  unuran/inc/LinkDef.h, unuran/inc/TUnuran.h,
	  unuran/inc/TUnuranBaseDist.h, unuran/inc/TUnuranContDist.h,
	  unuran/inc/TUnuranDiscrDist.h, unuran/inc/TUnuranEmpDist.h,
	  unuran/inc/TUnuranMultiContDist.h, unuran/src/TUnuran.cxx,
	  unuran/src/TUnuranContDist.cxx, unuran/src/TUnuranDiscrDist.cxx,
	  unuran/src/TUnuranEmpDist.cxx,
	  unuran/src/TUnuranMultiContDist.cxx, unuran/src/UnuranDistr.h,
	  unuran/src/UnuranDistrAdapter.h, unuran/src/UnuranRng.h,
	  utils/src/RStl.cxx, utils/src/RStl.h, utils/src/rlibmap.cxx,
	  utils/src/rootcint.cxx, vmc/inc/LinkDef.h,
	  vmc/inc/TGeoMCGeometry.h, vmc/inc/TMCOptical.h,
	  vmc/inc/TMCParticleType.h, vmc/inc/TMCProcess.h,
	  vmc/inc/TMCVerbose.h, vmc/inc/TPDGCode.h, vmc/inc/TVirtualMC.h,
	  vmc/inc/TVirtualMCApplication.h, vmc/inc/TVirtualMCGeometry.h,
	  vmc/inc/TVirtualMCStack.h, vmc/src/TGeoMCGeometry.cxx,
	  vmc/src/TMCVerbose.cxx, vmc/src/TVirtualMC.cxx,
	  vmc/src/TVirtualMCApplication.cxx,
	  vmc/src/TVirtualMCGeometry.cxx, vmc/src/TVirtualMCStack.cxx,
	  win32gdk/inc/LinkDef.h, win32gdk/inc/TGWin32.h,
	  win32gdk/inc/TGWin32GL.h, win32gdk/inc/TGWin32ProxyBase.h,
	  win32gdk/inc/TGWin32ProxyDefs.h,
	  win32gdk/inc/TGWin32VirtualGLProxy.h, win32gdk/inc/xatom.h,
	  win32gdk/src/TGWin32.cxx, win32gdk/src/TGWin32GL.cxx,
	  win32gdk/src/TGWin32ProxyBase.cxx,
	  win32gdk/src/TGWin32VirtualGLProxy.cxx,
	  win32gdk/src/TGWin32VirtualXProxy.cxx, win32gdk/src/gifdecode.c,
	  win32gdk/src/gifencode.c, win32gdk/src/gifquantize.c,
	  winnt/inc/LinkDef.h, winnt/inc/TWin32SplashThread.h,
	  winnt/inc/TWinNTSystem.h, winnt/inc/Win32Constants.h,
	  winnt/src/TWinNTSystem.cxx, winnt/src/Win32Splash.cxx,
	  x11/inc/LinkDef.h, x11/inc/TGX11.h, x11/src/GX11Gui.cxx,
	  x11/src/Rotated.cxx, x11/src/TGX11.cxx, x11ttf/inc/TGX11TTF.h,
	  x11ttf/src/TGX11TTF.cxx, x3d/inc/TViewerX3D.h, x3d/inc/x3d.h,
	  x3d/src/TViewerX3D.cxx, x3d/src/x3d.c, xml/inc/LinkDef.h,
	  xml/inc/TBufferXML.h, xml/inc/TKeyXML.h, xml/inc/TXMLEngine.h,
	  xml/inc/TXMLFile.h, xml/inc/TXMLPlayer.h, xml/inc/TXMLSetup.h,
	  xml/src/TBufferXML.cxx, xml/src/TKeyXML.cxx,
	  xml/src/TXMLEngine.cxx, xml/src/TXMLFile.cxx,
	  xml/src/TXMLPlayer.cxx, xml/src/TXMLSetup.cxx,
	  xmlparser/inc/TDOMParser.h, xmlparser/inc/TSAXParser.h,
	  xmlparser/inc/TXMLAttr.h, xmlparser/inc/TXMLDocument.h,
	  xmlparser/inc/TXMLNode.h, xmlparser/inc/TXMLParser.h,
	  xmlparser/src/TDOMParser.cxx, xmlparser/src/TSAXParser.cxx,
	  xmlparser/src/TXMLAttr.cxx, xmlparser/src/TXMLDocument.cxx,
	  xmlparser/src/TXMLNode.cxx, xmlparser/src/TXMLParser.cxx,
	  zip/inc/Bits.h, zip/inc/Tailor.h, zip/inc/ZDeflate.h,
	  zip/inc/ZIP.h, zip/inc/ZTrees.h, zip/src/ZInflate.c: remove :$
	  from tag line

2007-09-19 19:46  rdm

	* [r19824] .cvsignore, asimage/src/.cvsignore,
	  build/misc/.cvsignore, cint/.cvsignore, cint/inc/.cvsignore,
	  cint/include/.cvsignore, cint/include/sys/.cvsignore,
	  cint/lib/dll_stl/.cvsignore, cint/lib/longlong/.cvsignore,
	  cint/lib/posix/.cvsignore, cint/lib/stdstrct/.cvsignore,
	  cint/lib/win32api/.cvsignore, cint/main/.cvsignore,
	  cint/src/.cvsignore, cint/stl/.cvsignore, cint7/.cvsignore,
	  cint7/inc/.cvsignore, cint7/include/.cvsignore,
	  cint7/lib/dll_stl/.cvsignore, cint7/lib/longlong/.cvsignore,
	  cint7/lib/stdstrct/.cvsignore, cint7/lib/win32api/.cvsignore,
	  cint7/main/.cvsignore, cint7/src/.cvsignore,
	  cint7/test/.cvsignore, cint7/tool/rmkdepend/.cvsignore,
	  cintex/test/dict/.cvsignore, config/.cvsignore, etc/.cvsignore,
	  etc/daemons/.cvsignore, etc/proof/.cvsignore,
	  freetype/src/.cvsignore, globusauth/src/.cvsignore,
	  macros/.cvsignore, mathmore/src/.cvsignore,
	  minuit2/src/.cvsignore, pcre/src/.cvsignore, qt/src/.cvsignore,
	  qtgsi/src/.cvsignore, reflex/.cvsignore, reflex/build/.cvsignore,
	  reflex/doc/.cvsignore, reflex/inc/Reflex/.cvsignore,
	  reflex/inc/Reflex/Builder/.cvsignore,
	  reflex/inc/Reflex/internal/.cvsignore, reflex/python/.cvsignore,
	  reflex/python/genreflex/.cvsignore, reflex/src/.cvsignore,
	  reflex/test/.cvsignore, reflex/test/testDict1/.cvsignore,
	  reflex/test/testDict2/.cvsignore, smatrix/test/.cvsignore,
	  test/.cvsignore, test/ProofBench/.cvsignore,
	  test/RootIDE/.cvsignore, test/RootShower/.cvsignore,
	  unuran/src/.cvsignore, utils/src/.cvsignore,
	  win32gdk/gdk/src/gdk/.cvsignore,
	  win32gdk/gdk/src/gdk/win32/.cvsignore, xrootd/src/.cvsignore:
	  remove .cvsignore files.

2007-09-19 15:11  brun

	* [r19823] minuit/inc/TLinearFitter.h,
	  minuit/src/TLinearFitter.cxx: From Anna:
	  Following a user request, functions Add() and Merge() for
	  TLinearFitter were implemented. Also, its streamer now works
	  correctly and pre-fixed parameters are only checked for in case
	  of a TF1 (or TF2, TF3) function, not TFormula.

2007-09-19 15:01  brun

	* [r19822] hist/src/THnSparse.cxx: From Kaspi
	  (http://root.cern.ch/phpBB2/viewtopic.php?t=5327)
	  I've realized that my GetRandom method works in a way which is
	  not desired - it also generates vectors corresponding to
	  under/overflow bins. To remove this issue, I choose a simple
	  approach. When ComputeIntegral method is called, it checks for
	  each bin whether the bin exceeds limits in any dimension and if
	  so, its weight is counted as zero. Modified method is in the
	  attachment.

2007-09-19 08:43  brun

	* [r19821] geompainter/inc/TGeoChecker.h,
	  geompainter/src/TGeoPainter.cxx: From Andrei:
	  adds a progress bar to raytracing that can be sometimes lengthy.

2007-09-19 08:05  rdm

	* [r19820] base/src/TRemoteObject.cxx: From Bertrand:
	  Remove one unused variable and one static function,
	  not needed anymore (after last changes). Thanks to
	  Ilka for reporting this.

2007-09-19 06:42  brun

	* [r19819] tutorials/tree/circular.C: Add a new tutorial
	  illustrating circular Trees.
	  Circular Trees are interesting in online real time environments
	  to store the results of the last maxEntries events.
	  for more info, see TTree::SetCircular

2007-09-18 16:17  axel

	* [r19818] html/src/TDocInfo.cxx: Cache TClassRef to TClass*
	  conversion.

2007-09-18 13:59  brun

	* [r19817] geompainter/src/TGeoPainter.cxx: From andrei:
	  The patch fixes raytracing in the presence of a clipping shape.

2007-09-18 12:05  antcheva

	* [r19816] gui/src/TGTextEditor.cxx: rom Bertrand:
	  
	  Fixed the crash caused by the previous patch when doing:
	  TGTextEditor *te = new TGTextEditor();
	  delete te;

2007-09-18 11:12  rdm

	* [r19815] gpad/src/TPad.cxx: From Axel:
	  RecursiveRemove() simplify + speedup.

2007-09-18 11:11  rdm

	* [r19814] cont/inc/TList.h, cont/inc/TObjArray.h,
	  cont/src/TList.cxx, cont/src/TObjArray.cxx: From Axel and me:
	  implement custom RecursiveRemove() methods which speed up
	  TCollection::RecursiveRemove() (N instead of N**2).

2007-09-18 10:14  rdm

	* [r19813] base/src/TRemoteObject.cxx: From Bertrand:
	  properly sort remote browsing (first directories and then files)

2007-09-18 09:51  antcheva

	* [r19812] gui/inc/TGTextEditor.h, gui/src/TGTextEditor.cxx: From
	  Bertrand:
	  Move cleanup from destructor to DeleteWindow(), to
	  avoid crashes when closing embedded TGTextEditor

2007-09-18 09:40  axel

	* [r19811] cintex/src/CINTSourceFile.h, cintex/src/Cintex.cxx: Let
	  Cintex::Enable() set an artificial source file; take libCintex
	  for now.
	  Without it, dicionary elements declared by Cintex::Enable() had
	  an invalid source file.

2007-09-18 07:42  brun

	* [r19810] math/src/TRandom.cxx: TRandom::ReadRandom and
	  TRandom::WriteRandom were broken since the I/O reorganisation.

2007-09-17 18:38  brun

	* [r19809] hist/inc/THnSparse.h, hist/src/THnSparse.cxx,
	  tutorials/tree/drawsparse.C: From Axel:
	  * fill total sum of weights, squared, and weights times x,
	  weights times
	  x squared per dimension, add getters.
	  * set entries in projections, add THnSparse::SetEntries().
	  * re-sort data members by type.
	  * fix self-reference in tutorial/tree/drawsparse.C, add warning
	  that it
	  should be compiled.

2007-09-17 16:19  brun

	* [r19808] geom/src/TGeoManager.cxx: From Axel:
	  This patch reduces roottest/root/io/geom/runreadGeo.C from 50sec
	  to
	  21sec, by building the list using AddLast() instead of AddAt(i).
	  
	  Now it spends 1/3 of its time in TObjArray::IndexOf() which is
	  called by
	  
	  ~TGeoBBox -> ~TGeoShape -> TObjArray::Remove, at
	  TGeoShape.cxx:194:
	  
	  if (gGeoManager) gGeoManager->GetListOfShapes()->Remove(this);

2007-09-17 14:27  brun

	* [r19807] tutorials/tree/drawsparse.C: From Axel:
	  Add a tutorial that shows how to draw a THnSparse using a TTree
	  and
	  TParallelCoord.
	  * Example of how to convert a THnSparse to a TTree using
	  efficient
	  * iteration through the THnSparse, and how to draw a THnSparse
	  using
	  * TParallelCoord. The plot will contain one line for each filled
	  bin,
	  * with the bin's coordinates on each axis, and the bin's content
	  on
	  * the rightmost axis.
	  *
	  * Run as
	  * .L $ROOTSYS/tutorials/hist/drawsparse.C+

2007-09-17 11:05  brun

	* [r19806] hist/inc/THnSparse.h, hist/src/THnSparse.cxx,
	  tutorials/hist/sparsehist.C: From Axel:
	  Change interfaces in THnSparse: from "UInt_t*" to "const Int_t*".
	  Don't
	  go via interpreter for projecting a THnSparse to a THnSparse.
	  Initialize
	  the fIntegral member, too. Set axis names and titles. Fix bit
	  counting
	  when retrieving the coordinates from a compact coord buffer.
	  
	  Mention tutorials/tree/drawsparse.C in
	  tutorials/hist/sparsehist.C

2007-09-17 10:13  brun

	* [r19805] tutorials/hist/sparsehist.C: From Axel:
	  New tutorial illustrating the benefits of the new class
	  THnSparse:
	  
	  * Evaluate the performance of THnSparse vs THnF (or Float_t
	  arrays)
	  * for different numbers of dimensions and bins per dimension.
	  *
	  * The script calculates the bandwidth for filling and retrieving
	  * bin contents (in million entries per second) for these two
	  * histogramming techniques, where "seconds" is CPU and real time.
	  *
	  * The first line of the plots contains the bandwidth based on the
	  * CPU time (THnSpase, THnF/Float_t*, ratio), the second line
	  shows
	  * the plots for real time, and the third line shows the fraction
	  of
	  * filled bins and memory used by THnSparse vs. THnF/Float_t.
	  *
	  * The timing depends on the distribution and the amount of
	  entries
	  * in the histograms; here, a Gaussian distribution (center is
	  * contained in the histograms) is used to fill each histogram
	  with
	  * 1000 entries. The filling and reading is repeated until enough
	  * statistics have been collected.
	  *
	  * This macro should be run in compiled mode due to the many
	  nested
	  * loops that force CINT to disable its optimization. If run
	  * interpreted one would not benchmark THnSparse but CINT.
	  *
	  * Run as
	  * .L $ROOTSYS/tutorials/hist/sparsehist.C+

2007-09-17 10:11  brun

	* [r19804] treeviewer/src/TParallelCoord.cxx: From Axel:
	  Fix a problem with a blind casting of gPad to a TCanvas.

2007-09-17 07:35  brun

	* [r19803] tree/src/TSelector.cxx: Remove reference to non-existent
	  TTree::Loop function

2007-09-15 00:59  rdm

	* [r19802] io/src/TFile.cxx: in SetCacheFileDir() don't reset when
	  directory exists and is writable
	  the access permissions to 700. This fixes issue 28819.

2007-09-15 00:05  rdm

	* [r19801] thread/inc/TAtomicCountGcc.h: location of atomicity.h
	  has moved from bits/ to ext/ in gcc 4.2.

2007-09-14 11:28  brun

	* [r19800] hist/inc/THnSparse.h, hist/src/THnSparse.cxx: From Axel,
	  Extend API of several functions with an optional argument
	  Option_t*

2007-09-13 18:45  brun

	* [r19799] hist/src/THnSparse.cxx: Fix a fatal compilation error on
	  non-gcc systems in THnSparse::GetRandom.

2007-09-13 18:24  brun

	* [r19798] hist/inc/THnSparse.h, hist/src/THnSparse.cxx: Include
	  THnSparse extension including the new function
	  THnSparse::GetRandom
	  provided by Kaspi at
	  http://root.cern.ch/phpBB2/viewtopic.php?t=5327

2007-09-13 18:20  pcanal

	* [r19797] tree/src/TTree.cxx: Avoid matching inadvertently a leaf
	  with a zero length name

2007-09-13 18:16  pcanal

	* [r19796] mysql/src/TMySQLStatement.cxx: update to follow coding
	  convention

2007-09-13 14:16  brun

	* [r19794] tutorials/fit/Ifit.C: Delete previous change introduced
	  by mistake when check-in Axel's changes.

2007-09-13 11:08  brun

	* [r19793] cont/inc/TArray.h, cont/inc/TArrayC.h,
	  cont/inc/TArrayD.h, cont/inc/TArrayF.h, cont/inc/TArrayI.h,
	  cont/inc/TArrayL.h, cont/inc/TArrayL64.h, cont/inc/TArrayS.h,
	  hist/inc/LinkDef.h, hist/inc/THnSparse.h, hist/src/THnSparse.cxx,
	  tutorials/fit/Ifit.C: From Axel:
	  patch for TArray*.h to add virtual members GetAt()
	  and SetAt() and for hist/inc/Linkdef.h as needed by THnSparse.
	  
	  New class THnSparse for sparse n-dimensional histograms.
	  For more deatils, see comments in class implementation.

2007-09-13 08:34  antcheva

	* [r19792] gui/inc/TGFrame.h, gui/src/TGFrame.cxx: From Valeriy
	  Onuchin:
	  New method TGMainFrame::SetIconPixmap(char **xpm_array) for
	  setting window
	  icon by XPM array built in the source.
	  
	  Example:
	  #include "/home/root/icons/bld_rgb.xpm"
	  // bld_rgb.xpm contains char *bld_rgb[] array
	  main_frame->SetIconPixmap(bld_rgb);

2007-09-13 06:14  brun

	* [r19791] asimage/src/libAfterImage.tar.gz: From Valeriy:
	  - more compilation fixes for Solaris

2007-09-12 19:14  brun

	* [r19790] meta/src/TClass.cxx: Fix coding conventions.

2007-09-12 19:05  brun

	* [r19789] meta/src/TCint.cxx: Fix coding conventions.

2007-09-12 16:59  brun

	* [r19788] geom/src/TGeoManager.cxx: From Andrei:
	  a patch in TGeoManager::InsertPNEId that produced a crash after
	  doubling the size of the id array.

2007-09-12 13:55  brun

	* [r19787] minuit/inc/TFitter.h: Add a new method
	  TMinuit *GetMinuit() const {return fMinuit;}

2007-09-11 09:45  brun

	* [r19785] tree/inc/TEntryList.h, tree/inc/TEntryListFromFile.h,
	  tree/src/TChain.cxx, tree/src/TEntryList.cxx: From Anna:
	  Remember the bug #28505 about dcache and entry lists? After lots
	  of communication with dcache guys, it looks like I've fixed it.
	  The attached patch has the following changes:
	  
	  1. TEntryList::GetEntryList() now performs all the necessary
	  changes to the file names, such as extending to full path for
	  local files, and using TUrl::GetUrl() for not local. This,
	  hopefully, solves the problem of dcache:/// being added to dcache
	  files and the same possible problem for other protocols.
	  2. TEntryList::SetTree(TTree *tree) does the same changes to the
	  file name. TEntryList::SetEntryList(const char *treename, const
	  char *filename), however, takes the names "as is".
	  3. in TChain::SetEntryList() function, most of the code has been
	  replaced with calls to TEntryList::GetEntryList(). Because of
	  this, option parameter, previously in TChain::SetEntryList() had
	  to be added to TEntryList::GetEntryList().
	  4. TChain::SetEventList() function now doesn't call
	  TChain::LoadTree() if all the tree offsets are already known.
	  5. TChain::GetEntryNumber() function now doesn't load the current
	  tree, if all the tree offsets are already known.
	  6. TEntryList::Print() function is fixed for the case of empty
	  sub-lists (didn't print anything for them before)
	  Special thanks to Dmitry Ozerov for his help.

2007-09-11 07:07  brun

	* [r19784] cont/doc/index.txt, geom/doc/index.txt,
	  graf/doc/index.txt, gui/doc/index.txt, guibuilder/doc/index.txt,
	  guihtml/doc/index.txt, hbook/doc/index.txt, hist/doc/index.txt,
	  io/doc/index.txt, math/doc/index.txt, mathcore/doc/index.txt,
	  mathmore/doc/index.txt, matrix/doc/index.txt,
	  minuit/doc/index.txt, net/doc/index.txt, physics/doc/index.txt,
	  proof/doc/index.txt, pyroot/doc/index.txt, smatrix/doc/index.txt,
	  thread/doc/index.txt, tree/doc/index.txt: From Ilka:
	  fixes in all index.txt files according to the recent changes of
	  User's Guide PDF names.

2007-09-11 06:37  brun

	* [r19783] asimage/src/libAfterImage.tar.gz: from Valeriy;
	  New version fixing compilation problems on Solaris with gcc.

2007-09-10 18:55  axel

	* [r19782] cint/src/gcc4strm.cxx, cint/src/gcc4strm.h: Non-empty
	  gcc4strm.

2007-09-10 16:31  axel

	* [r19781] cint/Module.mk, cint/inc/G__ci.h,
	  cint/lib/gcc3strm/Makefile, cint/src/DataMbr.cxx,
	  cint/src/HISTORY, cint/src/Method.cxx, cint/src/bc_exec.cxx,
	  cint/src/bc_exec_asm.h, cint/src/bc_item.cxx,
	  cint/src/bc_parse.cxx, cint/src/common.h, cint/src/fproto.h,
	  cint/src/global.h, cint/src/rflx_gendict.cxx,
	  cint/src/v6_auxu.cxx, cint/src/v6_cast.cxx,
	  cint/src/v6_debug.cxx, cint/src/v6_decl.cxx, cint/src/v6_end.cxx,
	  cint/src/v6_error.cxx, cint/src/v6_expr.cxx,
	  cint/src/v6_fread.cxx, cint/src/v6_func.cxx,
	  cint/src/v6_global2.cxx, cint/src/v6_ifunc.cxx,
	  cint/src/v6_init.cxx, cint/src/v6_intrpt.cxx,
	  cint/src/v6_loadfile.cxx, cint/src/v6_macro.cxx,
	  cint/src/v6_malloc.cxx, cint/src/v6_new.cxx,
	  cint/src/v6_newlink.cxx, cint/src/v6_opr.cxx,
	  cint/src/v6_parse.cxx, cint/src/v6_pause.cxx,
	  cint/src/v6_pcode.cxx, cint/src/v6_quote.cxx,
	  cint/src/v6_scrupto.cxx, cint/src/v6_sizeof.cxx,
	  cint/src/v6_struct.cxx, cint/src/v6_stub.cxx,
	  cint/src/v6_tmplt.cxx, cint/src/v6_typedef.cxx,
	  cint/src/v6_val2a.cxx, cint/src/v6_value.cxx,
	  cint/src/v6_var.cxx, cint/tool/makecint.cxx: From Paul, Philippe,
	  and me: import of cint5-16-25.
	  * - add gcc4 iostream dictionary.
	  * - fix support for multi line command line entries
	  * - fix handling of storage duration for unspecified length
	  arrays
	  * - fix bytecode generation for switch
	  * - fix parsing/execution of a break or continue nested inside
	  * multiple levels of braces
	  * - disable bytecode generation for any function or loop
	  * which uses G__va_arg
	  * - conversion "operator A*()": keep the '*' (and references etc)
	  * - tighten up the semantics of statictype (namespace
	  * members were getting declared static, even when they were not)
	  * - scratch_upto now returns a counter that gets bumped
	  * every time the dictionary is rewound, allows detection of
	  changed dict.

2007-09-10 15:57  axel

	* [r19779] cint/lib/gcc4strm, cint/lib/gcc4strm/Makefile,
	  cint/lib/gcc4strm/README.txt, cint/lib/gcc4strm/fstrm.h,
	  cint/lib/gcc4strm/iostrm.h, cint/lib/gcc4strm/linkdef.h,
	  cint/lib/gcc4strm/sstrm.h, cint/src/gcc4strm.cxx,
	  cint/src/gcc4strm.h: This commit was generated by cvs2svn to
	  compensate for changes in r19778,
	  which included commits to RCS files with non-trunk default
	  branches.

2007-09-10 14:28  brun

	* [r19777] geom/inc/LinkDef1.h, geom/inc/TGeoVoxelFinder.h,
	  geom/src/TGeoCompositeShape.cxx, geom/src/TGeoManager.cxx,
	  geom/src/TGeoNavigator.cxx, geom/src/TGeoVolume.cxx,
	  geom/src/TGeoVoxelFinder.cxx, geompainter/src/TGeoChecker.cxx:
	  From Andrei:
	  a diff with a new class TGeoUniformVoxels that is supposed to
	  increase navigation speed. For the moment it does not - there is
	  still some work to be done - so it is not yet used. The patch
	  contains also a fix for the problem of visualization of daughters
	  of composites.

2007-09-10 10:07  axel

	* [r19776] cint7/src/v6_rflxutil.cxx, cint7/src/v6_scrupto.cxx: Fix
	  cint7's G__scratch_upto-with-count,
	  suppress warning about unhandled switch cases.

2007-09-10 09:31  antcheva

	* [r19775] gui/src/TGMenu.cxx: From Bertrand:
	  - Replaced gClient->GetRoot() by gClient->GetDefaultRoot()

2007-09-10 08:41  ganis

	* [r19774] proofplayer/src/TAdaptivePacketizer.cxx: From Jan:
	  fine-tune previous patch, changing the condition on min si.fCpus
	  from 0 to 2
	  (we don't want to have maxSlaveCnt set to 1 even in case of
	  single CPU machines)

2007-09-09 16:10  ganis

	* [r19773] proofplayer/src/TAdaptivePacketizer.cxx,
	  proofplayer/src/TPacketizer.cxx,
	  proofplayer/src/TPacketizerProgressive.cxx,
	  proofplayer/src/TVirtualPacketizer.cxx: Remove additional
	  duplications by moving common initializations to
	  TVirtualPacketizer.
	  In TAdaptivePacketizer, set the default max worker to the number
	  of processors per machine.
	  Int TPacketizerProgressive, adapt HandleTimer to the new progress
	  message.

2007-09-09 15:02  brun

	* [r19772] proofplayer/inc/LinkDef.h: Generate dictionary for new
	  class TEventIterUnit, otherwise link fails on several systems.

2007-09-09 14:55  brun

	* [r19771] asimage/src/TASImage.cxx: From valeriy:
	  - TASImage. GetWidth, GetHeight, GetArgbArray, GetRgbaArray
	  
	  Correction for the case when image is scaled.

2007-09-09 10:48  ganis

	* [r19770] proof/inc/TDSet.h, proofplayer/inc/TEventIter.h,
	  proofplayer/src/TEventIter.cxx: From Long Tran-Thanh:
	  - New special iterator class, TEventIterUnit, to iterate over
	  packets of generic units
	  - Use bit 17 of TDSet and TDSetElement to flag empty data sets

2007-09-07 21:12  ganis

	* [r19766] proofplayer/inc/TVirtualPacketizer.h,
	  proofplayer/src/TAdaptivePacketizer.cxx,
	  proofplayer/src/TPacketizer.cxx,
	  proofplayer/src/TPacketizerProgressive.cxx,
	  proofplayer/src/TVirtualPacketizer.cxx: - Move common
	  initializations (progress info ntple, progress timer) into
	  TVirtualPacketizer
	  - Properly destroy the progress info ntple and progress timer

2007-09-06 18:49  rdm

	* [r19765] cont/src/TCollection.cxx: whitespace.

2007-09-06 18:48  rdm

	* [r19764] cont/src/THashList.cxx: properly implement "slow" mode
	  in Delete().

2007-09-06 18:47  rdm

	* [r19763] base/src/TFolder.cxx: put punctuation in method
	  comments.

2007-09-06 00:28  rdm

	* [r19762] histpainter/src/THistPainter.cxx: From Olivier:
	  Fix the bug described here: https://savannah.cern.ch/bugs/?29056
	  When the option "PCOL" was used to draw a TGraph2D having already
	  its underlaying histrogram created, the histogram was plotted
	  with
	  option "COL" before the TGraph2D was plotted with option "PCOL".

2007-09-05 22:48  rdm

	* [r19761] cont/src/THashList.cxx: in Delete() honour the "slow"
	  option, which requires that the collection must
	  remain searchable during the delete operation, hence in this case
	  the
	  hash table cannot be cleared before the delete of the list.

2007-09-05 22:17  brun

	* [r19760] mlp/src/TMultiLayerPerceptron.cxx: From Christophe
	  Delaere:
	  Fix for problem reported at:
	  http://root.cern.ch/phpBB2/viewtopic.php?t=5396

2007-09-05 14:57  antcheva

	* [r19759] gui/src/TGTextEntry.cxx: Better handling of
	  ShiftTabPressed signal

2007-09-05 14:24  antcheva

	* [r19758] gui/src/TGTextEntry.cxx: Coding conventions.

2007-09-04 16:30  rdm

	* [r19755] sessionviewer/src/TSessionViewer.cxx: From Bertrand:
	  Replaced fClient->GetRoot() by fClient->GetDefaultRoot()
	  in TGPopupMenu constructors to be able to properly embed
	  (reparent) TSessionViewer.

2007-09-04 10:43  antcheva

	* [r19754] gui/src/TGTextEditor.cxx: From Bertrand:
	  Replaced fClient->GetRoot() by fClient->GetDefaultRoot()
	  in TGPopupMenu constructors to be able to properly embed
	  (reparent) TGTextEditor.

2007-09-04 07:23  antcheva

	* [r19753] gui/inc/TGTextEntry.h, gui/src/TGTextEntry.cxx: Added
	  new signal method ShiftTabPressed().
	  It is emitted when <SHIFT> and <TAB> keys are pressed.

2007-09-03 14:54  antcheva

	* [r19752] gui/src/TGButtonGroup.cxx: Added call to DestroyWindow
	  of the removed button in Remove(TGButton *button) method.

2007-09-03 11:54  antcheva

	* [r19751] gui/src/TGListTree.cxx: From Bertrand:
	  There is a problem of Focus being kept by TGListTree once one
	  clicked on
	  a TGListTreeItem, as reported by Matevz in Alice Event Viewer
	  (EVE).
	  This patch fixes the problem.
	  FYI, key navigation is still possible with mouse over the
	  TGListTree
	  (the focus will not be kept after clicking in the list tree)

2007-09-01 17:23  rdm

	* [r19750] win32gdk/src/TGWin32.cxx: From Valeri O.:
	  fix problem of fill styles.

2007-09-01 17:23  rdm

	* [r19749] gpad/src/TCanvas.cxx: From Valeri O.:
	  fix deadlock when resizing a canvas while calling
	  TCanvas::Update()

2007-08-31 12:02  couet

	* [r19748] test/stressGraphics.ref: - After the bug fix in
	  THistPainter::DrawText() the reference value for
	  test #23 needed to be changed.

2007-08-31 11:06  brun

	* [r19747] net/src/TFTP.cxx, net/src/TNetFile.cxx,
	  net/src/TWebFile.cxx: From Bertrand:
	  - Added several #ifdef R__WIN32 to use the Win32 syntax
	  %I64d instead of %lld to read Long64_t via sscanf.
	  - Replaced #ifdef WIN32 by #ifdef R__WIN32

2007-08-31 09:37  couet

	* [r19746] graf/src/TGaxis.cxx: - PaintAxis: In some cases the axis
	  label "-0" appeared. That's now fixed.
	  This problem was visible with the following commands:
	  
	  TH2D *s = new TH2D("s","",10,0,100,10,-9e-4,5e-4);
	  s->Draw();

2007-08-31 07:00  brun

	* [r19745] gl/src/TGLPShapeObjEditor.cxx: Remove extra "," in enum
	  definition

2007-08-31 05:13  pcanal

	* [r19744] gui/src/TRootBrowser.cxx: do not assume the content of
	  TKey inherits from TObject

2007-08-31 05:12  pcanal

	* [r19743] io/src/TKey.cxx: Update TKey::Browse to work with class
	  not inhering from TObject

2007-08-31 05:11  pcanal

	* [r19742] meta/src/TClass.cxx: Implement TClass::Browse when the
	  class inherits from TObject

2007-08-30 20:46  rdm

	* [r19741] gui/src/TRootGuiFactory.cxx: From Bertrand:
	  In CreateBrowserImp() try using plugin manager with key
	  'TBrowserImp' before reverting to standard 'new TRootBrowser'.

2007-08-30 20:46  rdm

	* [r19740] gui/src/TRootCanvas.cxx: From Bertrand:
	  In ctor replace calls to 'gClient->GetDefaultRoot()' with
	  'gClient->GetRoot()'.

2007-08-30 20:46  rdm

	* [r19739] gui/inc/TGSplitter.h: From Matevz:
	  Added abstract method 'SetFrame(TGFrame *frame, Bool_t prev)'
	  that
	  allows usage of base-class pointer for configuration of
	  TGHSplitter and TGVSplitter.

2007-08-30 20:42  rdm

	* [r19738] gl/inc/TGLSAViewer.h, gl/src/TGLSAViewer.cxx: From
	  Matevz:
	  Add new menubar check-entry kGLEditObject that toggles between
	  editing of PhysicalShapes or original objects in response to
	  selection being changed. Add function ToggleEditObject() for
	  external control of this behaviour.
	  
	  Use standard main-frame ctor argument 'const TGWindow*' instead
	  of 'TGFrame*'.

2007-08-30 20:31  rdm

	* [r19737] gl/inc/TGLSAFrame.h, gl/src/TGLSAFrame.cxx: From Matevz:
	  Use standard main-frame ctor argument 'const TGWindow*' instead
	  of
	  'TGFrame*'.

2007-08-30 20:30  rdm

	* [r19736] gl/inc/TGLSAViewer.h, gl/src/TGLSAViewer.cxx: From
	  Matevz:
	  Override OverlayDragFinished().

2007-08-30 20:29  rdm

	* [r19735] gl/inc/TGLViewer.h, gl/src/TGLViewer.cxx: From Matevz:
	  Added new signal-emitting method OverlayDragFinished() that is
	  called when overlay mouse interaction has completed and some GUI
	  elements need to be update. Before SelectionChanged() has
	  been misused for this purpose.

2007-08-30 20:29  rdm

	* [r19734] gl/src/TGLOrthoCamera.cxx: From Matevz:
	  In Apply() fix sign of near and far clipping plane distance.

2007-08-30 20:28  rdm

	* [r19733] base/inc/TBrowserImp.h: From Matevz:
	  Added Get/SetBrowser() methods.

2007-08-30 20:28  rdm

	* [r19732] base/inc/TBrowser.h, base/src/TBrowser.cxx: From Matevz:
	  Add optinal argument TBrowserImp* to basic constructors.
	  Added function SetBrowserImp().
	  This allows independent creation of a browser implementation.

2007-08-30 16:02  brun

	* [r19731] asimage/src/TASImage.cxx: From valeriy:
	  - TASImage::InitVisual() fix memory leak in batch mode.
	  Thanks to Krzysztof Ciba for reporting this.

2007-08-30 15:59  pcanal

	* [r19730] meta/inc/TCint.h, meta/inc/TClass.h, meta/src/TCint.cxx,
	  meta/src/TClass.cxx, meta/src/TDataMember.cxx: From Scott Snyder:
	  
	  This is addressing some instances where root was showing O(N^2)
	  behavior with the number of defined classes/typedefs that were
	  taking
	  a lot of time in the Atlas offline software.
	  
	  Two instances of this were in TClass::Init and
	  TCint::UpdateClassInfo.
	  Here, when a new class was created/updated, we would scan through
	  all existing classes looking for any where the names match after
	  full typedef expansion. This was particularly expensive since
	  the typedef expansion requires scanning through the entire
	  typedef table, potentially several times per class.
	  
	  I addressed this by introducing a hash table, mapping from
	  the typedef-expanded name to the original class name.
	  An entry is made in the table only if those names
	  are different. So, to test for a duplicate, one can then
	  just look up the typedef-expanded name in the hash table,
	  rather than scanning all classes. For each hit,
	  one then looks up the class using the original name.
	  (We also need to do another lookup in the class list
	  using the typedef-expanded name if it's different.)
	  This eliminates the N^2 behavior here, and drastically
	  reduces the number of expensive typedef expansions.
	  
	  One irregularity is that the two places that this happens
	  do the typedef expansion somewhat differently: one just expands
	  the name directly, but the other runs the name through
	  TClassEdit::ShortType with kDropStlDefault first. It's not
	  clear to me why this is done differently in the two places,
	  so i've retained this behavior, maintaining two separate
	  hash tables. It would be cheaper, though, if the same expansion
	  could be used in both places.
	  
	  The other place that i made changes was in
	  TCint::UpdateListOfTypes.
	  This was scanning through all the cint typedefs each time
	  GetListOfTypes
	  was called to possibly add new ones to the root list. I changed
	  this
	  so that it only scans the typedefs that are new since the last
	  call,
	  going by the cint typedef index. But if the number of cint
	  typedefs
	  has decreased since the last call, then we rescan the complete
	  table.
	  This may not catch all possible cases where items have been
	  deleted
	  from the cint table and then something else added --- to really
	  do that right, one would probably want a hook it the cint scrupto
	  routines.
	  
	  This should now properly handle unload/reload in
	  TCint::UpdateListOfTypes.
	  To do this, i added a counter in cint that gets bumped every time
	  the dictionary is rewound. We can thus test to see if that
	  changed
	  to tell if a rewind has happened since the last call.
	  
	  I also updated TClass so that the typedef mappings get removed
	  from the hash table when the TClass is deleted. To make that
	  faster,
	  i used an additional status bit to flag if the TClass had created
	  any typedef map nodes.

2007-08-30 15:52  pcanal

	* [r19729] cint/inc/G__ci.h, cint/src/global.h,
	  cint/src/v6_end.cxx, cint/src/v6_global2.cxx,
	  cint/src/v6_scrupto.cxx, cint7/inc/G__ci_fproto.h,
	  cint7/src/global.h, cint7/src/v6_end.cxx,
	  cint7/src/v6_global2.cxx, cint7/src/v6_scrupto.cxx: scratch_upto
	  now return a counter in cint that gets bumped every time
	  the dictionary is rewound

2007-08-30 13:16  brun

	* [r19727] gpad/src/TPad.cxx: From Valeriy:
	  Fix a memory leak when saving as .png or .jpg files.

2007-08-30 13:15  brun

	* [r19726] base/inc/RVersion.h, build/version_number: Start new
	  development cycle 5.17/03

2007-08-30 10:08  rdm

	* [r19725] build/unix/distfilelist.sh: fix erroneous deletion of
	  cint/include/G__ci.h.

2007-08-30 07:26  brun

	* [r19723] graf/src/TGraph.cxx: Fix coding conventions.

2007-08-29 16:28  couet

	* [r19722] histpainter/src/THistPainter.cxx: - PainText: Revision
	  1.261 (ROOT 5.11) made sure that 2D histograms with
	  constant values were plotted correctly with option TEXT. Doing
	  that the
	  empty bins were plotted also. That is now fixed: empty bin are
	  not plotted
	  as before this change.

2007-08-29 15:10  brun

	* [r19721] config/Makefile.depend: Fix a dependency problem with
	  libGeomPainter (requires libRIO) and showing up
	  on cygwingcc.

2007-08-29 08:54  couet

	* [r19720] gpad/src/TPad.cxx: - PaintBox: The option 'l',
	  implemented in Revision 1.237, is now available
	  for PostScript also.

2007-08-29 08:38  brun

	* [r19719] README/CREDITS: Add Roel Aaij for his contribution to
	  the GUI classes

2007-08-29 07:38  brun

	* [r19718] base/inc/RVersion.h, build/version_number: Stamping
	  development version 5.17/02

2007-08-29 07:16  antcheva

	* [r19717] gui/src/TGCanvas.cxx, gui/src/TGFrame.cxx,
	  gui/src/TGListTree.cxx: From Valeriy O. and Bertrand:
	  this patches intend to fix creation of pixmap
	  with very large sizes. It happens when list tree or
	  list view resized to width = 0. In this case in
	  TGViewPort::HandleConfigureNotify(Event_t *event)
	  event->fWidth has very large value. i.e. > 65000
	  Protections added against such cases.

2007-08-28 17:58  pcanal

	* [r19716] meta/src/TVirtualStreamerInfo.cxx: From Axel:
	  Issue a warning message if we can not find the TStreamerInfo
	  plugin.
	  Hence avoiding the case where a foreign class didn't get its
	  TClass
	  object without any error message! [The reason was a missing etc
	  dir]

2007-08-28 16:28  antcheva

	* [r19715] qt/src/TGQt.cxx: From Valeri Fine:
	  kTRUE replaced with kFALSE to test the Qt font facility properly

2007-08-28 14:25  antcheva

	* [r19714] ged/src/TGedFrame.cxx: From Matevz:
	  Break tooltip with name, title and class of the object into
	  multiple lines.

2007-08-28 14:25  antcheva

	* [r19713] ged/src/TGedEditor.cxx: From Matevz:
	  Prevent multiple addition of extra-tabs in ActivateEditor().

2007-08-28 13:54  axel

	* [r19712] html/inc/TDocOutput.h, html/src/TClassDocOutput.cxx,
	  html/src/TDocOutput.cxx: Also check that AClass.html exists when
	  checking whether a doc update is needed for AClass.

2007-08-28 13:24  moneta

	* [r19711] tutorials/math/mathmoreIntegration.C: add a legend to
	  histograms

2007-08-28 12:47  moneta

	* [r19710] tutorials/math/Rolke.C: revert to version 1.1 - changed
	  by mistake

2007-08-28 12:45  moneta

	* [r19709] tutorials/math/Rolke.C, tutorials/math/exampleFunctor.C,
	  tutorials/math/mathmoreIntegration.C: add a new tutorial for
	  integration using mathmore

2007-08-28 08:39  brun

	* [r19708] graf/inc/TGraph.h, graf/src/TGraph.cxx: Add code
	  suggested by Thomas Schietinger at
	  https://savannah.cern.ch/bugs/?29117
	  "May I suggest to include a CompareArg() in TGraph, similar to
	  CompareRadius(), i.e. to provide (just for convenience) the
	  possibility to sort the TGraph according to angle. This is useful
	  when points lie on an ellipse or so, but are not in order."

2007-08-28 08:22  brun

	* [r19707] gdml/src/TGDMLParse.cxx: Fix coding conventions.

2007-08-27 17:11  brun

	* [r19706] configure: From Valeri Fine:
	  recognize Qt 4.x on Win32

2007-08-27 17:04  antcheva

	* [r19705] gui/src/TGListTree.cxx: Coding conventions.

2007-08-27 16:05  antcheva

	* [r19704] qt/inc/TQUserEvent.h, qt/inc/TQtWidget.h,
	  qt/inc/TVirtualX.interface.h, qt/inc/rootlibs.pri,
	  qt/src/GQtGUI.cxx, qt/src/TGQt.cxx, qt/src/TQtWidget.cxx: From
	  Valeri Fine:
	  
	  TVirtualX.interface.h GQtGUI.cxx:
	  - add the new methods from TVirtualX.h
	  
	  rootlibs.pri:
	  Add the new mandatory ROOT libraries to the Qt project files
	  
	  TQtWidget.h TQUserEvent.h:
	  Compile against of Qt4 with no Qt3Support
	  
	  TGQt.cxx, GQtGUI.cxx , TQtWidget.cxx
	  Fix some compilation issues for VC++ v.8.0

2007-08-27 15:42  moneta

	* [r19703] tutorials/fit/ConfidenceIntervals.C,
	  tutorials/math/ConfidenceIntervals.C: move ConfidenceInterval.C
	  tutorial from math to fit

2007-08-27 14:59  rdm

	* [r19702] gui/inc/TGTextEditDialogs.h,
	  gui/src/TGTextEditDialogs.cxx: don't access class static
	  fgSearchDialog inline.

2007-08-27 14:50  antcheva

	* [r19701] tutorials/gui/textEntries.C: From Valeriy Onuchin:
	  Taken advantage of TGComboBox::Layout() changes
	  ++ removed many <TAB> from me

2007-08-27 14:48  antcheva

	* [r19700] gui/inc/TGComboBox.h, gui/src/TGComboBox.cxx: From
	  Valeriy Onuchin:
	  TGComboBox::Layout() - resize list box for a few number of
	  entries.

2007-08-27 14:47  antcheva

	* [r19699] gui/inc/TGFont.h, gui/src/TGFont.cxx: From Valeriy
	  Onuchin:
	  Added comment. Cosmetics.

2007-08-27 14:46  antcheva

	* [r19698] gui/inc/LinkDef2.h: From Valeriy Onuchin:
	  Added TGFont enums

2007-08-27 14:45  antcheva

	* [r19697] gui/inc/TGListBox.h, gui/src/TGListBox.cxx: From Valeriy
	  Onuchin:
	  Fix for Qt layer.

2007-08-27 14:11  brun

	* [r19696] hist/src/TH1.cxx, tutorials/math/chi2test.C: In the
	  Chi2Test functions fix the path for the example chi2test.C

2007-08-27 13:44  brun

	* [r19695] hist/src/TH1.cxx: Add additional comments in
	  TH1::DrawNormalized when drawing with error bars.

2007-08-27 12:42  rdm

	* [r19694] net/inc/TSocket.h, net/src/TSocket.cxx: don't have
	  GetSocketBytesSent() and GetSocketBytesRecv() inline as static
	  inline variable access does not work on Windows.

2007-08-27 12:23  antcheva

	* [r19693] gui/src/TRootBrowser.cxx: Changed
	  fListView->AdjustHeaders() with fListView->LayoutHeader(0) in
	  TRootBrowser::ProcessMessage to fix the following case:
	  1) open a new TBrowser;
	  2) select Detailed list view mode from the toolbar or file menu.
	  3) click on a list tree enty (always the same)
	  Result: the columns grow-up in the right list view on every click

2007-08-27 12:20  rdm

	* [r19692] xml/inc/TXMLSetup.h: fix compiler warning due to
	  trailing ; at end of namespace definition.

2007-08-27 09:13  rdm

	* [r19690] base/src/TRegexp.cxx: fix in handling of ? wildcard.

2007-08-27 07:42  brun

	* [r19689] geompainter/src/TGeoPainter.cxx: From Andrei:
	  Fix for bug :https://savannah.cern.ch/bugs/?29021

2007-08-26 23:35  rdm

	* [r19688] base/inc/TDatime.h, base/src/TDatime.cxx: From Valeri
	  O.:
	  add GetDayOfWeek() with Monday being day 1 (idem like in
	  TTimeStamp).

2007-08-26 17:52  rdm

	* [r19687] base/src/TRegexp.cxx: consider '?' to also be a wildcard
	  character in MakeWildcard().

2007-08-26 17:33  rdm

	* [r19686] pgsql/inc/TPgSQLStatement.h, pgsql/src/TPgSQLServer.cxx,
	  pgsql/src/TPgSQLStatement.cxx: From Dennis Box:
	  1) Coding convention violations as reported at
	  http://root.cern.ch/root/nightly/codecheck/codecheck.html
	  2) Long64_t truncation when writing to the database.

2007-08-26 16:51  rdm

	* [r19685] ged/src/TGedEditor.cxx, gui/inc/TGToolBar.h,
	  gui/src/TGToolBar.cxx: From Axel:
	  fix several warnings about pointer size on 64bit platforms.

2007-08-25 10:30  brun

	* [r19684] tutorials/gui/textEntries.C: From Valeriy:
	  - textEntries.C - new gui tutorial.
	  This macro gives an example of how to set/change
	  text entry attributes.

2007-08-25 08:36  moneta

	* [r19683] mathcore/inc/Math/GenVector/PositionVector3D.h: add
	  include of Cartesian3D to fix bug 29053

2007-08-24 15:37  brun

	* [r19682] asimage/src/TASImage.cxx: From Valeriy:
	  TASimage::SavePrimitive - scale large images before
	  saving it to avoid problems of the CINT limitaions on
	  the line length.

2007-08-24 15:37  brun

	* [r19681] tutorials/image/fore.xpm: From Valeriy:
	  Change char array's name (which was "17") to "fore"

2007-08-24 08:40  brun

	* [r19680] gdml/src/TGDMLParse.cxx, gdml/writer.py: From Zoltan
	  Torzsok:
	  -Fix coding conventions
	  -TGDMLParse.cxx :: Extruded solid process:
	  - scalingFactor must be processed without length unit!
	  - zOrder need not to be processed with length unit!
	  -writer.py :: AddEltu
	  The parameter names are changed from (x,y,z) to (dx,dy,dz)
	  according to the GDML schema.

2007-08-24 08:35  antcheva

	* [r19679] tutorials/gui/calendar.C: From Valeriy Onuchin:
	  A nice gui tutorial macro, which shows how to use html
	  widget to display tabular data

2007-08-24 08:27  antcheva

	* [r19678] guihtml/inc/TGHtml.h: From Valeriy Onuchin:
	  Fix for ACLiC compilation

2007-08-24 07:43  brun

	* [r19677] hist/inc/TFormula.h, hist/src/TFormula.cxx: Add a new
	  static function in TFormula to set the maximum value of some
	  parameters.
	  This function is required by applications using TFormula/TF1, etc
	  objects in
	  complex algebraic calculations:
	  
	  void TFormula::SetMaxima(Int_t maxop, Int_t maxpar, Int_t
	  maxconst)
	  // static function to set the maximum value of 3 parameters
	  // -maxop : maximum number of operations
	  // -maxpar : maximum number of parameters
	  // -maxconst : maximum number of constants
	  // None of these parameters cannot be less than 10 (default is
	  1000)
	  // call this function to increase one or all maxima when
	  processing
	  // very complex formula, eg
	  TFormula::SetMaxima(100000,1000,1000000);
	  // If you process many functions with a small number of
	  operations/parameters
	  // you may gain some memory and performance by decreasing these
	  values.

2007-08-24 07:32  antcheva

	* [r19676] gui/src/TGCanvas.cxx, gui/src/TGListTree.cxx,
	  gui/src/TGListView.cxx, gui/src/TGScrollBar.cxx: Fixed coding
	  conventions.

2007-08-23 16:03  antcheva

	* [r19675] gui/src/TGFileDialog.cxx: Set fFileInfo->fFileNamesList
	  to 0 in case Cancel button was clicked or
	  dialog was closed via WM.

2007-08-23 15:16  brun

	* [r19674] treeviewer/src/TParallelCoord.cxx: Fix a problem with
	  the documentation.

2007-08-23 14:34  brun

	* [r19673] tree/inc/TBranch.h, tree/src/TBranch.cxx: Add an
	  optional argument and extend functionality of the following
	  functions in TBranch
	  Long64_t TBranch::GetTotBytes(Option_t *option) const
	  // Return total number of bytes in the branch (excluding current
	  buffer)
	  // if option ="*" includes all sub-branches of this branch too
	  
	  Long64_t TBranch::GetZipBytes(Option_t *option) const
	  // Return total number of zip bytes in the branch
	  // if option ="*" includes all sub-branches of this branch too

2007-08-23 14:21  rdm

	* [r19672] build/unix/makelib.sh: replace $() construct by `` to
	  fix issues on Solaris.

2007-08-23 13:56  antcheva

	* [r19671] gui/src/TGListTree.cxx: From Valeriy Onuchin:
	  Fixed side effect of previous patch seen after the following
	  steps
	  (thanks to Matevz for his report):
	  
	  1) run $ROOTSYS/tutorials/geom/geomAlice_itsv.C
	  2) in ROOT Browser window open Geometry then ALIC_1 items
	  3) click on item check-box (check-box status has been changed,
	  but list tree is not redrawn)
	  4) resize browser window (list tree shows correctly the check-box
	  status)

2007-08-23 13:43  brun

	* [r19670] hist/src/TGraph2D.cxx: Fix a fatal bug in
	  TGraph2D::RemovePoinr: fSize was not reset !

2007-08-23 12:02  brun

	* [r19669] gpad/src/TCanvas.cxx: From Ilka:
	  Fix in SaveSource method for saving the canvas in a macro if
	  TStyle:: SetCanvasPreferGL is set to kTRUE. Currently generated
	  macro
	  creates an empty canvas and many Error messages shows up as the
	  following one:
	  Error in <TGLHistPainter::DistancetoPrimitive>: Attempt to use
	  TGLHistPainter, while the current pad (gPad) does not support gl

2007-08-22 19:48  brun

	* [r19668] base/inc/TDirectory.h, base/src/TDirectory.cxx,
	  base/src/TObject.cxx, io/src/TDirectoryFile.cxx: From Philippe:
	  Add Warning messages in case object.Write is called and there is
	  no directory/file to write. The warnings are illustrated by the
	  following example session:
	  root [0] n = new TNamed("myname","my title")
	  (class TNamed*)0x956340
	  root [1] n->Write()
	  Error in <TROOT::WriteTObject>: The current directory (Rint) is
	  not
	  associated with a file. The object (myname) has not been written.
	  (Int_t)(0)
	  root [2] gDirectory = 0;
	  root [3] n->Write()
	  Error in <TNamed::Write>: The current directory (gDirectory) is
	  null. The
	  object (myname) has not been written.
	  (Int_t)(0)
	  root [4] .q

2007-08-22 19:39  pcanal

	* [r19667] tree/src/TSelector.cxx: Enforce that the selector class
	  must be in the global namespace (in addition to have the same
	  name as the file)

2007-08-22 17:36  pcanal

	* [r19666] tree/inc/TVirtualIndex.h, tree/src/TChain.cxx,
	  treeplayer/inc/TChainIndex.h, treeplayer/inc/TTreeIndex.h,
	  treeplayer/src/TChainIndex.cxx, treeplayer/src/TTreeIndex.cxx: If
	  two chains are made friends and the files they contain do not
	  have
	  the same number of entries, we need to informed the TTreeIndex of
	  the friend chain's tree when the main chain's tree is changed.
	  This correct the problem seen at
	  http://root.cern.ch/phpBB2/viewtopic.php?p=21435

2007-08-22 08:50  antcheva

	* [r19665] gui/inc/TGCanvas.h, gui/inc/TGLayout.h,
	  gui/inc/TGListBox.h, gui/inc/TGListTree.h, gui/inc/TGListView.h,
	  gui/src/TGCanvas.cxx, gui/src/TGLayout.cxx,
	  gui/src/TGListBox.cxx, gui/src/TGListTree.cxx,
	  gui/src/TGListView.cxx, gui/src/TGScrollBar.cxx: From Valeriy
	  Onuchin (tested by Bertrand):
	  
	  o TGLayoutManager::IsModified method was overloaded.
	  This method is used to indicate that sub frames
	  changed/unchanged their positions/sizes after layout.
	  
	  For example, in some cases positions&sizes of sub frames
	  can be unchanged after calling Layout method
	  (e.g. for TGTileLayout manager).
	  TGLayoutManager::IsModified will return kFALSE.
	  
	  o TGListBox.h,cxx, TGCanvas.h,cxx, TGListTree.h,cxx,
	  TGListView.h,cxx
	  
	  - new painting technique was implemented:
	  1. repaint only exposed/dirty regions.
	  Previously the whole view port (or even container frame)
	  was repainted.
	  2. use double-buffering (using back plane pixmap) during
	  repainting.
	  That allows to eliminate flickering during resizing,
	  scrolling, exposing/overlapping.
	  - several bugs were fixed:
	  o keyboard navigation in list view, list box, list tree
	  o resizing columns (details view) in list view
	  when horizontal scroll bar not in zero position.
	  o in list view (details view) buttons were moved when
	  it was resized.
	  o extra unnecessary repainting in list view, list tree
	  were removed.
	  o probably I missed something to mention .
	  
	  o TGScrollBar
	  - bug fix: increment value was reset to 1 after button release.
	  - do not redraw scroll button if it's width/height was unchanged.
	  That reduces flickering

2007-08-22 07:57  wouter

	* [r19664] roofitcore/src/RooPlot.cxx: o RooPlot
	  
	  - Fix bug in reading part of streamer Streamer()
	  
	  - Fix print statement in getNEvtRange()

2007-08-21 17:27  pcanal

	* [r19663] pyroot/src/PropertyProxy.cxx,
	  pyroot/src/PropertyProxy.h: From Paul:
	  Cint used to mark all namespace members static, whether they were
	  or not.
	  This has been fixed, so the pyroot PropertyProxy class must now
	  explicitly
	  check for the namespace member case so that is may return the
	  proper
	  address for the member value storage (instead of assuming the
	  static case
	  is the same as the namespace member case).

2007-08-21 16:01  brun

	* [r19662] geom/inc/TGeoManager.h, geom/src/TGeoManager.cxx,
	  geompainter/inc/TGeoChecker.h, geompainter/src/TGeoChecker.cxx:
	  From Andrei:
	  This patch adds a text progress bar to the CheckGeometryFull()
	  method.

2007-08-21 13:12  brun

	* [r19661] base/src/TRegexp.cxx: Add a protection in
	  TRegexp::MakeWildcard when called with a null argument.

2007-08-21 12:36  brun

	* [r19660] xml/inc/TXMLEngine.h: From Sergey:
	  There was mismatch with declaration and implementation of one
	  method.

2007-08-21 12:17  antcheva

	* [r19659] tutorials/gui/guitest.C: From Valeriy Onuchin:
	  Fixed a small inconsistency in guitest.C vs test/guitest.cxx. A
	  small box
	  with '+' was not appeared on clicking on a list_tree_item in
	  guitest.C.

2007-08-21 10:19  brun

	* [r19658] gpad/src/TPad.cxx: In TPad::SavePrimitive replace calls
	  to
	  new TView(1);
	  by
	  TView::CreateView(1);

2007-08-21 10:18  brun

	* [r19657] g3d/src/THelix.cxx, g3d/src/TPolyLine3D.cxx: Replace
	  comments creating a TView like
	  TView *view = new TView(1);
	  by
	  TView *view = TView::CreateView(1);

2007-08-21 09:54  rdm

	* [r19656] gui/src/TGListTree.cxx: From Matevz:
	  in KeyPressed() correct signature of signal (from TGFrame to
	  TGListTreeItem).

2007-08-21 06:45  brun

	* [r19655] asimage/src/TASImage.cxx: From Valeriy:
	  - fix errors for 16bit-color displays under windows

2007-08-20 14:48  brun

	* [r19654] geom/src/TGeoPgon.cxx: From Andrei:
	  a small patch for 2 uninitialized variables in
	  TGeoPgon::IsCrossingSlice(). Affected rare tracks with with
	  almost 0 pz component crossing pgons. Thanks to Peter.

2007-08-20 14:13  brun

	* [r19653] config/Makefile.depend: geompainter now depends on
	  libRIO

2007-08-20 14:00  brun

	* [r19652] geom/inc/TGeoManager.h, geom/inc/TVirtualGeoPainter.h,
	  geom/src/TGeoManager.cxx, geompainter/inc/TGeoChecker.h,
	  geompainter/inc/TGeoPainter.h, geompainter/src/TGeoChecker.cxx,
	  geompainter/src/TGeoPainter.cxx: From Andrei:
	  Extend functionality of overlap checker and performance analyzer
	  by introducing a new function:
	  void CheckGeometryFull(Int_t ntracks=10000, Double_t vx=0.,
	  Double_t vy=0., Double_t vz=0., Option_t *option="ob")
	  
	  The method is doing a 4 stage check:
	  - if option contains 'o': Optional overlap checkings (by sampling
	  and by mesh).
	  - if option contains 'b': Optional boundary crossing check +
	  timing per volume.
	  
	  STAGE 1: extensive overlap checking by sampling per volume.
	  Stdout need to be checked by user to get report, then
	  TGeoVolume::CheckOverlaps(0.01, "s") can be called for the
	  suspicious volumes.
	  
	  STAGE2 : normal overlap checking using the shapes mesh - fills
	  the list of overlaps.
	  
	  STAGE3 : shooting NRAYS rays from VERTEX and counting the total
	  number of crossings per volume (rays propagated from boundary to
	  boundary until
	  geometry exit). Timing computed and results stored in a histo.
	  
	  STAGE4 : shooting 1 mil. random rays inside EACH volume and
	  calling FindNextBoundary() + Safety() for each call. The timing
	  is normalized by the number of crossings computed at stage 2 and
	  presented as percentage.
	  One can get a picture on which are the most "burned" volumes
	  during
	  transportation from geometry point of view. Another plot of the
	  timing per volume vs. number of daughters is produced.
	  
	  All histos are saved in the file statistics.root

2007-08-20 12:57  brun

	* [r19651] test/RootIDE/Makefile, test/RootShower/Makefile: From
	  Bertrand:
	  Fix dependeciy problems when linking the application.CVS:
	  ----------------------------------------------------------------------

2007-08-20 08:49  brun

	* [r19650] geom/inc/TGeoManager.h, geom/inc/TGeoPhysicalNode.h,
	  geom/src/TGeoManager.cxx, geom/src/TGeoPhysicalNode.cxx,
	  geom/src/TGeoShapeAssembly.cxx, geom/src/TGeoVolume.cxx,
	  geompainter/inc/TGeoOverlap.h, geompainter/src/TGeoChecker.cxx,
	  geompainter/src/TGeoOverlap.cxx: From Andrei:
	  - TGeoPNEntry class has now an additional pointer to the original
	  matrix, which is set in the class ctor and works provided that
	  all PNEntry objects are created BEFORE applying any alignment.
	  The getter for this original (LOCAL) matrix of the last TGeoNode
	  in the branch is:
	  TGeoMatrix *TGeoPNEntry::GetMatrixOrig()
	  
	  - Modified method:
	  TGeoPNEntry * TGeoManager::SetAlignableEntry(const char
	  *unique_name, const char *path, Int_t uid=-1);
	  If UID is provided, one can do a (fast) retrieval by UID (based
	  on binary search):
	  TGeoPNEntry *TGeoManager::GetAlignableEntryByUID(Int_t uid)
	  const;
	  
	  The UID mapping becomes persistent with the geometry. To retrieve
	  the number of entries having (or not) uid's defined, I modified:
	  Int_t TGeoManager::GetNAlignable(Bool_t with_uid=kFALSE) const
	  
	  - Added method TGeoOverlap::SampleOverlap(Int_t npoints) for
	  overlaps/extrusions in the context menu of overlaps. This
	  normally produces a picture of the overlap having random red
	  points in the overlapping region. Helps a lot to check how big
	  the overlap is (prints the volume of the overlapping region) and
	  to validate if the overlap is valid or not.
	  
	  - TGeoVolume::CheckOverlaps(Double_t ovlp, Option_t *option)
	  produces now overlap objects in the list of overlaps of
	  TGeoManager in case option="s" (sampling). Very useful for doing
	  an extensive check on ovelaps as an alternative to the fast
	  method.
	  Note: when checking assembly vs. assembly (or volume) only one
	  overlap is reported (the check does not show which node in the
	  assembly produced the overlap). A graphical output giving hints
	  is still provided in this case.

2007-08-20 07:57  brun

	* [r19649] asimage/src/libAfterImage.tar.gz: From Valeriy:
	  New version of libAfterImage fixing a compilation problem under
	  Windows.

2007-08-19 10:27  rdm

	* [r19648] proof/src/TDSet.cxx: From Jan:
	  - Adding '\n' to the message about % of looked up files in order
	  to avoid the method being partly erased by info on % of validated
	  files.
	  - Fixing a typo in comment

2007-08-19 10:26  rdm

	* [r19647] proofd/src/XrdProofdProtocol.cxx: From Jan:
	  - Fixing a problem in XrdProofdProtocol::Reconfig().
	  The manager was not properly initiated.
	  And messages similar to the following one appeared:
	  070815 09:58:53 32335 xpd : Config: error handler undefined!
	  - cosmetic changes

2007-08-19 10:08  rdm

	* [r19646] gl/inc/TGLSAViewer.h, gl/src/TGLSAViewer.cxx: From
	  Matevz:
	  Allow user to pass external geditor to be used by the GL-viewer.

2007-08-19 10:07  rdm

	* [r19645] gl/inc/TGLViewer.h, gl/src/TGLViewer.cxx: From Matevz:
	  Removed unused member fPadEditor.
	  External TVirtualPad reference is no longer needed, viewer works
	  fine with fPad = 0.

2007-08-19 10:07  rdm

	* [r19644] gl/inc/TGLViewerBase.h, gl/src/TGLViewerBase.cxx: From
	  Matevz:
	  Add Bool_t fChanged that reflects if the viewer needs to be
	  redrawn due to internal state changes of scenes.
	  AddScene() now returns TGLSceneInfo* holding viewer-specific
	  information of the newly created scene.

2007-08-19 10:06  rdm

	* [r19643] gl/src/TGLScenePad.cxx: From Matevz:
	  Use Begin/EndUpdate() instead of repeating the code in
	  Begin/EndScene().

2007-08-19 10:06  rdm

	* [r19642] gl/inc/TGLScene.h, gl/src/TGLScene.cxx: From Matevz:
	  BeginUpdate() now returns Bool_t reflecting the success of
	  scene-locking.
	  Call TagViewersChanged() in EndUpdate().

2007-08-19 10:05  rdm

	* [r19641] gl/inc/TGLSceneBase.h, gl/src/TGLSceneBase.cxx: From
	  Matevz:
	  Added method TagViewersChanged() that allows all connected
	  viewers
	  to be tagged as in-need-of-a-redraw.
	  Added Get/SetAutoDestruct().

2007-08-19 10:05  rdm

	* [r19640] gl/inc/TGLSceneInfo.h, gl/src/TGLSceneInfo.cxx: From
	  Matevz:
	  Added member Bool_t fActive that allows a viewer to bypass
	  rendering
	  of the referenced scene without losing the internal data.

2007-08-18 16:13  brun

	* [r19639] graf/src/TLatex.cxx: Some improvements when drawing
	  acute.

2007-08-18 15:28  brun

	* [r19638] asimage/src/libAfterImage.tar.gz: From Valeriy:
	  New version of the tar file that should fix several problems:
	  -compilation on Solaris
	  -correct execution of rose_image.C

2007-08-17 19:08  pcanal

	* [r19637] meta/inc/TIsAProxy.h, meta/inc/TVirtualIsAProxy.h,
	  tree/inc/TSelectorCint.h: allows the header files to be #included
	  without
	  requiring extra (dependent) #includes.

2007-08-17 09:12  brun

	* [r19636] hist/inc/TH1.h, hist/inc/TProfile.h,
	  hist/inc/TProfile2D.h, hist/inc/TProfile3D.h, hist/src/TAxis.cxx,
	  hist/src/TH1.cxx, hist/src/TH2.cxx, hist/src/TH3.cxx,
	  hist/src/TProfile.cxx, hist/src/TProfile2D.cxx,
	  hist/src/TProfile3D.cxx: Change the API for TH1::RebinAxis from
	  void RebinAxis(Double_t x, const char *ax);
	  to
	  void RebinAxis(Double_t x, TAxis *axis);

2007-08-17 09:10  brun

	* [r19635] treeplayer/src/TSelectorDraw.cxx: Take into account the
	  title offsets in x,y when generating a TH3.
	  Fixes the problem reported at http://savannah.cern.ch/bugs/?28815

2007-08-17 08:23  brun

	* [r19634] treeviewer/src/TParallelCoord.cxx: Fix typo

2007-08-17 05:17  pcanal

	* [r19632] tree/src/TTree.cxx, tree/src/TTreeCloner.cxx: From Paul:
	  In Fast Merging, allow the input and output tree to have a
	  different number
	  of branches. This allow dropping branches when doing a fast
	  cloning.

2007-08-16 21:27  pcanal

	* [r19631] treeplayer/inc/TBranchProxy.h: From Axel:
	  when you ask a TBranchProxy of a split TClonesArray how many
	  entries the
	  TCA has, it will only ready the entries member - and still think
	  that it
	  has read the complete TCA. So all following accesses to the
	  elements
	  contained in the TCA will return invalid objects. Attached patch
	  fixes
	  that by not setting fRead when only the number of entries has
	  been read.
	  It introduces a slight performance penalty for multiple
	  ClonesProxy/GetEntries() calls.

2007-08-16 16:05  brun

	* [r19630] tutorials/tree/parallelcoord.C: From Bastien:
	  script illustrating the use of the TParalleCoord class

2007-08-16 15:59  brun

	* [r19629] tutorials/tree/spider.C: From Bastien:
	  script illustrating the use of the TSpider class

2007-08-16 15:54  brun

	* [r19628] treeviewer/inc/TSpider.h,
	  treeviewer/src/TParallelCoord.cxx, treeviewer/src/TSpider.cxx:
	  From Bastien:
	  Fixed: TSpider.cxx: Some parameters for the TSpider constructor
	  are now default.
	  Fixed: TSpider.h, TSpider.cxx: Made the Get functions const when
	  required.
	  Added: TSpider.cxx: Added a example macro.
	  Added: TParallelCoord.cxx: Added some references.

2007-08-16 15:53  brun

	* [r19627] README/CREDITS: Add Bastien for his contribution to
	  TPider and TParallelCoord.

2007-08-16 12:12  brun

	* [r19626] treeviewer/inc/TParallelCoord.h,
	  treeviewer/inc/TParallelCoordRange.h,
	  treeviewer/src/TParallelCoord.cxx,
	  treeviewer/src/TParallelCoordEditor.cxx,
	  treeviewer/src/TParallelCoordRange.cxx,
	  treeviewer/src/TParallelCoordVar.cxx: From Bastien:
	  Fixed: TParallelCoord.cxx: Added protection against missing tree
	  file.
	  Fixed: TParallelCoord.cxx: Added TParallelCoord::SaveTree()
	  called when
	  calling SavePrimitive without the tree being saved in a root
	  file.
	  Fixed: TParallelCoord.cxx: missing comments.
	  Added: All: Some FIXME indications.
	  Added: All: Html documentation and a macro example for
	  TParallelCoord.
	  Fixed: TParallelCoordVar.cxx: Fixed missing TParallelCoordRange
	  when rebuilding
	  the pad from a macro coming from SavePrimitive().

2007-08-16 09:55  brun

	* [r19625] asimage/src/TASImage.cxx: Fix uninitialized variables
	  fMinValue and fMaxvalue in SetDefaults.
	  In TASImage::Bevel on must set bevel.type to 0.

2007-08-15 10:50  brun

	* [r19624] Makefile: From Bertrand:
	  Moved "thread" before "html" in the MODULES list to solve
	  missing dependency of libHtml on libThread at link time

2007-08-15 07:38  brun

	* [r19623] graf/src/TGraph.cxx: Implement the following changes in
	  TGraph::Draw
	  -when option "same" is specified it is ignored
	  -when option "a" is specified the pad is cleared

2007-08-14 09:49  moneta

	* [r19622] smatrix/test/testSMatrix.cxx: add test for Trace()

2007-08-14 09:48  moneta

	* [r19621] smatrix/inc/Math/SMatrix.h,
	  smatrix/inc/Math/SMatrix.icc: add Trace() function (requested by
	  LHCb and CMS)

2007-08-13 17:29  brun

	* [r19620] hist/inc/TMultiDimFit.h, hist/src/TMultiDimFit.cxx,
	  vmc/inc/TVirtualMC.h, vmc/inc/TVirtualMCApplication.h,
	  vmc/src/TVirtualMC.cxx, vmc/src/TVirtualMCApplication.cxx: From
	  Axel and Gordon Watts:
	  Move inline functions referencing class static global variables
	  from inline
	  to the implementation files (Windows DLLs).

2007-08-13 17:27  brun

	* [r19619] base/inc/TProcessID.h, base/src/TProcessID.cxx: From
	  Axel and Gordon Watts:
	  Move the code in TProcessID::CheckInit from inline to the
	  implementation file.

2007-08-13 16:03  brun

	* [r19618] g4root/Module.mk, g4root/inc/TG4RootNavigator.h,
	  g4root/src/TG4RootNavigator.cxx: From Andrei:
	  patch for g4root, including a flag G4ROOT_DEBUG for debugging
	  purposes and a fine tuning for safety that improves a bit speed
	  with Ivana's VGM tests.

2007-08-13 16:00  brun

	* [r19617] geom/inc/TGeoBBox.h, geom/src/TGeoArb8.cxx,
	  geom/src/TGeoBBox.cxx, geom/src/TGeoCompositeShape.cxx,
	  geom/src/TGeoCone.cxx, geom/src/TGeoEltu.cxx,
	  geom/src/TGeoHype.cxx, geom/src/TGeoNode.cxx,
	  geom/src/TGeoPcon.cxx, geom/src/TGeoPgon.cxx,
	  geom/src/TGeoSphere.cxx, geom/src/TGeoTorus.cxx,
	  geom/src/TGeoTube.cxx, geom/src/TGeoXtru.cxx: From Andrei:
	  Patch for several complex shapes where it is faster to check
	  first if the bounding box is crossed when coming from outside.

2007-08-13 15:49  moneta

	* [r19616] mathmore/inc/Math/GSLRootFinder.h,
	  mathmore/inc/Math/GSLRootFinderDeriv.h,
	  mathmore/inc/Math/RootFinder.h, mathmore/src/GSLRootFinder.cxx,
	  mathmore/src/GSLRootFinderDeriv.cxx: - check when setting the
	  interval or starting points in RootFinder and
	  return an error when the interval is not valid.

2007-08-13 15:22  brun

	* [r19615] treeviewer/inc/TParallelCoord.h,
	  treeviewer/inc/TParallelCoordRange.h,
	  treeviewer/inc/TParallelCoordVar.h,
	  treeviewer/src/TParallelCoord.cxx,
	  treeviewer/src/TParallelCoordEditor.cxx,
	  treeviewer/src/TParallelCoordRange.cxx,
	  treeviewer/src/TParallelCoordVar.cxx: From Bastien:
	  Added TParallelCoord::SavePrimitive to generate macro reproducing
	  the TParallelCoord.

2007-08-13 15:11  rdm

	* [r19614] config/Makefile.depend: also add -lRIO to TreeViewer for
	  Unix.

2007-08-13 15:10  rdm

	* [r19613] auth/inc/TRootAuth.h, base/inc/TVirtualAuth.h,
	  proofplayer/inc/TPacketizerProgressive.h: From Axel:
	  he attached patch allows the header files to be #included without
	  requiring extra (dependent) #includes.

2007-08-13 14:59  moneta

	* [r19612] minuit2/src/TFitterMinuit.cxx: fix a bug in retrieving
	  errors when some parameters are fixed. Fixed problem reported in
	  Forum, see http://root.cern.ch/phpBB2/viewtopic.php?t=5277

2007-08-13 14:23  antcheva

	* [r19611] ged/inc/TGraphEditor.h, gui/inc/TGTextEditor.h: From
	  Axel:
	  allows the header files to be #included without
	  requiring extra (dependent) #includes.

2007-08-13 14:05  brun

	* [r19610] geom/inc/TGeoBoolNode.h, geom/inc/TGeoScaledShape.h,
	  geom/inc/TGeoVoxelFinder.h, geombuilder/inc/TGeoTabManager.h:
	  From Axel:
	  allows the header files to be #included without
	  requiring extra (dependent) #includes.

2007-08-13 13:41  brun

	* [r19609] base/inc/TQClass.h: From Axel:
	  llows the header file to be #included without
	  requiring extra (dependent) #includes.

2007-08-13 13:21  axel

	* [r19607] reflex/python/genreflex/gendict.py: From Lukasz Janyst:
	  check that class has a name before accessing it.

2007-08-13 11:01  brun

	* [r19606] tutorials/graphics/latex.C: Rename function latex
	  instead of latex5

2007-08-13 10:58  brun

	* [r19605] config/Makefile.depend: treeviewer depends now on libRIO

2007-08-13 10:50  brun

	* [r19604] treeviewer/inc/TParallelCoord.h,
	  treeviewer/inc/TParallelCoordRange.h,
	  treeviewer/inc/TParallelCoordVar.h,
	  treeviewer/src/TParallelCoord.cxx,
	  treeviewer/src/TParallelCoordEditor.cxx,
	  treeviewer/src/TParallelCoordRange.cxx,
	  treeviewer/src/TParallelCoordVar.cxx: From Bastien:
	  Fixed: TParallelCoord.cxx: Fixed a bug when redimensionning the
	  frame. Redimensionning a TParallelCoord is now frozen.
	  Fixed: TParallelCoordVar.cxx: Fixed testing if there is a current
	  selection before adding a range (was causing seg fault).
	  Added: TParallelCoordVar.cxx, TParallelCoord.cxx: Added I/O.
	  Modified: TParallelCoordVar.h: The title of a TParallelCoordVar
	  is now constant (the corresponding expression given to
	  TTree::Draw). The user can change the variable label using
	  TNamed::SetName but TNamed::SetTitle has been hidden.
	  Fixed: TParallelCoordEditor.cxx : Added protection when trying to
	  select a non existing selection.

2007-08-12 16:38  brun

	* [r19603] treeviewer/src/TParallelCoordVar.cxx: Fix coding
	  conventions

2007-08-12 16:27  rdm

	* [r19602] base/src/TPluginManager.cxx: call TROOT::Macro() with
	  updatePad=kFALSE to avoid updating of canvases
	  when plugin macros are executed.

2007-08-12 16:23  rdm

	* [r19601] base/inc/TROOT.h, base/src/TROOT.cxx: add to Macro()
	  optional argument Bool_t updatePad=kTRUE. When kFALSE
	  gPad->Update() is not called. Avoid having to set gPad to 0
	  before calling
	  Macro() which can be defeated when the macro causes gPad to be
	  reset.

2007-08-12 15:25  axel

	* [r19600] html/src/THtml.cxx: Fix to pass W3C validation

2007-08-12 14:14  axel

	* [r19599] html/src/THtml.cxx: Add documentation for
	  MakeClassThreaded(), call ProcessEvent() in main thread during
	  multi-threaded MakeAll() - TCanvas creation in thread still not
	  working, though

2007-08-11 11:02  brun

	* [r19598] gui/inc/TGButton.h: Fix coding conventions

2007-08-11 10:57  brun

	* [r19597] hist/src/TF1Helper.cxx, hist/src/TF1Helper.h,
	  mathmore/src/SpecFuncMathMore.cxx: Fix coding conventions.

2007-08-10 15:31  pcanal

	* [r19596] meta/inc/TClass.h, meta/src/TClass.cxx: From Axel:
	  * speed up I/O by invoking ShowMembers() directly for
	  TObject-derived
	  objects, instead of going via the interpreter.
	  * factor out the TObject base offset calculation into
	  CalculateStreamerOffset() (keep name for historical reasons, as
	  it sets
	  TClass::fOffsetStreamer)
	  * clean up duplicate + unneeded #includes in TClass.cxx.

2007-08-10 15:13  axel

	* [r19595] etc/html/ROOT.css, html/src/TDocOutput.cxx: Stylesheet:
	  return types / member types should not wrap.
	  erasing invalidates set::iter; work-around (for MSVC8)

2007-08-10 14:27  brun

	* [r19594] html/src/THtml.cxx: Fix a compiler warning.

2007-08-10 13:01  axel

	* [r19593] etc/html/ROOT.css, etc/html/ROOT.js, html/inc/THtml.h,
	  html/src/TClassDocOutput.cxx, html/src/TDocDirective.cxx,
	  html/src/TDocOutput.cxx, html/src/TDocParser.cxx,
	  html/src/THtml.cxx: * The info box in the class doc page is now
	  only shown if javascript is created; this makes the reference
	  guide more suitable for e.g. TGHtml but also links/lynx etc.
	  Achieved by writing the info box with javascript.
	  * With !=1 as the third argument to THtml::MakeAll(), THtml will
	  use a thread pool when generating the documentation. Added the
	  necessary locks. Threads cannot create TCanvases which is a
	  problem for TDocDirective; this remains to be fixed. As in:
	  WARNING: don't pass numthreads != 1 if you have a
	  TDocMacroDirective or TDocLatexDirective!
	  * Fix constness of a few functions.
	  * Don't put $ROOTSYS in front of module's source path
	  * Fix a string index ==-1 problem in
	  TDocParser::LocateMethodInCurrentLine() discovered with TMath
	  * TDocDirective: don't delete returned objects if gPad has
	  changed - it might be part of the TCanvas and thus deleted when
	  deleting gPad.
	  * Add a few gVirtualX->Update()s to reduce the amount of X11
	  errros.
	  * Use ':' as the macro path delimiter, even on Windows.
	  * Only initialize the graphics libs if needed.
	  * Hack to change the new DeclFileName()s for ROOT from
	  include/Whatever.h to module/inc/Whatever.h, so ViewCVS can
	  display it.
	  * Hack of hack to fix the DeclFileName() for TMVA.
	  * Increase the font size of pre blocks; they were too small with
	  TTF on linux.

2007-08-10 12:27  wouter

	* [r19592] roofitcore/inc/LinkDef2.h: o LinkDef2
	  
	  - Restore accidentally dropped namespace RooFitShortHand

2007-08-10 10:55  brun

	* [r19591] config/Makefile.depend: From Axel:
	  libHtml needs libThread for multi-threading support.

2007-08-10 10:49  rdm

	* [r19590] base/src/TPluginManager.cxx: From Axel:
	  PluginManager calls gROOT->Macro() which calls gPad->Update()
	  which
	  fails if the plugin mechanism was initialized while setting up
	  e.g. a
	  TCanvas that gPad points to. Simply setting gPad=0 temporarily
	  during
	  the plugin manager's gROOT->Macro() call fixes that.

2007-08-10 10:09  brun

	* [r19589] tree/src/TTree.cxx, treeplayer/src/TSelectorDraw.cxx,
	  treeplayer/src/TTreePlayer.cxx, treeviewer/inc/TParallelCoord.h,
	  treeviewer/inc/TParallelCoordEditor.h,
	  treeviewer/inc/TParallelCoordRange.h,
	  treeviewer/inc/TParallelCoordVar.h,
	  treeviewer/src/TParallelCoord.cxx,
	  treeviewer/src/TParallelCoordEditor.cxx,
	  treeviewer/src/TParallelCoordRange.cxx,
	  treeviewer/src/TParallelCoordVar.cxx: From Bastien:
	  Fixed: TParallelCoordVar.cxx: The extreme bins of the axes
	  histograms are now properly diplayed.
	  Fixed: TParallelCoordVar.cxx, TParallelCoordVar.h: The
	  histograms, minimums, maximums, averages and quantiles are now
	  updated when changing the entries to display.
	  Fixed: TParallelCoord.cxx, TParallelCoordVar.cxx,
	  TParallelCoordRange.cxx, TParallelCoordEditor.cxx: Several not
	  portable C++ expressions has been changed.
	  Added: TParallelCoordEditor.cxx, TParallelCoordEditor.h: Better
	  interface to display or not bar histograms.
	  Added: TTreePlayer.cxx: Added documentation to
	  TTreePlayer::DrawSelect.
	  Added: TTree.cxx: Added documentation to TTree::Draw.
	  Added: TSelectorDraw.cxx: Protection in TSelectorDraw::Begin if
	  there is more than 4 dimensions and neither the option "para",
	  "candle" or "goff" are activated.
	  Added: TParallelCoord.cxx: The "Apply to tree" button now also
	  update the selected entries drawn on the TParallelCoord.
	  Added: TParallelCoord.cxx, TParallelCoord.h: An initial entry
	  list is defined. Calling TParallelCoord::ResetTree will produce
	  the same output as when first initialized.
	  Fixed: TParallelCoordEditor.cxx, TParallelCoordEditor.h: Fixed
	  seg faults from bad management of the TGComboBox.
	  Fixed: TParallelCoordVar.cxx: Fixed seg fault when computing the
	  quantiles.

2007-08-10 10:01  brun

	* [r19588] meta/src/TClass.cxx: Fix an oddity in TClass::GetClass
	  VS:
	  ----------------------------------------------------------------------

2007-08-10 10:00  brun

	* [r19587] treeviewer/src/TSpider.cxx: Add several protections in
	  case one paint a TSpider read from a file.
	  I/O of TSpider still requires work

2007-08-10 10:00  brun

	* [r19586] graf/inc/TGraphPolar.h, treeviewer/inc/TSpider.h: Fix
	  many problems in the header such that the class can be made
	  persistent

2007-08-10 09:59  brun

	* [r19585] graf/src/TGraphPolar.cxx: Fix uninitialized pointers in
	  the default constructor

2007-08-10 09:59  brun

	* [r19584] graf/inc/LinkDef2.h: Use option "+" to get correct I/O
	  for TGraphPolar and TGraphPolargram

2007-08-09 19:55  wouter

	* [r19583] roofitcore/inc/RooAbsCollection.h,
	  roofitcore/inc/RooArgSet.h, roofitcore/inc/RooFormulaVar.h,
	  roofitcore/inc/RooNormSetCache.h, roofitcore/inc/RooSetPair.h,
	  roofitcore/src/RooAbsCollection.cxx,
	  roofitcore/src/RooArgSet.cxx, roofitcore/src/RooBanner.cxx,
	  roofitcore/src/RooCategory.cxx, roofitcore/src/RooFormulaVar.cxx,
	  roofitcore/src/RooMsgService.cxx,
	  roofitcore/src/RooNormSetCache.cxx,
	  roofitcore/src/RooProfileLL.cxx,
	  roofitcore/src/RooProjectedPdf.cxx,
	  roofitcore/src/RooRealVar.cxx, roofitcore/src/RooTreeData.cxx,
	  roofitcore/src/RooWorkspace.cxx: o RooAbsCollection
	  
	  - Add snapshot() function that fills output in existing
	  collection to
	  aid copy ctors of classes that own deep-copies of trees such as
	  RooWorkspace
	  
	  
	  o RooArgSet
	  
	  - Add utilities that keep track of pointer recycling to aid
	  proper functioning
	  of RooNormSetCache
	  
	  
	  o RooNormSetCache
	  
	  - Explicitly handle cases in cache management where RooArgSet
	  pointers are
	  reallocated on a previously used address.
	  
	  
	  o RooSetPair
	  
	  - Add data members that store the allocation cycle
	  
	  
	  o RooMsgService
	  
	  - Expand inline comments and documentation
	  
	  
	  o RooProfileLL
	  
	  - Expland inline comments and documentation
	  
	  
	  o RooProjectedPdf
	  
	  - Expland inline comments and documentation
	  
	  - Adjust code so that normalization set of projection contains
	  only
	  actual observables of integrand
	  
	  
	  o RooWorkspace
	  
	  - Expland inline comments and documentation
	  
	  - Implement copy ctor in terms of new snapshot function
	  
	  - Fix dtor (forgot to delete owned datasets)
	  
	  - When importing a dataset, also import its observables as
	  variables
	  
	  
	  o RooFormulaVar
	  
	  - Fix default ctor for persistence
	  
	  - Fix passing of normalization set to RooFormula
	  
	  
	  o RooCategory
	  
	  - Fix default ctor for persistence
	  
	  
	  o RooRealVar
	  
	  - Fix default ctor for persistence
	  
	  
	  o RooBanner
	  
	  - Increment version tag to v2.20

2007-08-09 14:06  ganis

	* [r19582] proofx/src/TXProofServ.cxx, proofx/src/TXSocket.cxx: Fix
	  a problem with the transmission of the inflate factor.

2007-08-09 09:20  brun

	* [r19581] meta/inc/TVirtualIsAProxy.h: Add the necessary includes
	  and forward declarations such that the class can be compiled
	  independently.

2007-08-09 09:10  brun

	* [r19580] treeplayer/src/TSelectorDraw.cxx,
	  treeplayer/src/TTreePlayer.cxx, treeviewer/inc/TParallelCoord.h,
	  treeviewer/inc/TParallelCoordEditor.h,
	  treeviewer/inc/TParallelCoordRange.h,
	  treeviewer/inc/TParallelCoordVar.h,
	  treeviewer/src/TParallelCoord.cxx,
	  treeviewer/src/TParallelCoordEditor.cxx,
	  treeviewer/src/TParallelCoordRange.cxx,
	  treeviewer/src/TParallelCoordVar.cxx: From Bastien:
	  -add several protections
	  -Move class descriptions from headers to implementation files
	  -Simplify the user interface for
	  TParallelCoord::BuildParallelCoord

2007-08-09 08:53  brun

	* [r19579] tree/inc/TTreeCloner.h: Add the necessary includes and
	  forward declarations such that the class can be compiled
	  independently.

2007-08-09 08:33  brun

	* [r19578] tree/inc/TBranch.h, tree/src/TBranch.cxx: Move the
	  inline implementation of TBranch::ResetCount to the
	  implementation file such
	  that the function can be called from another DLL on Windows.

2007-08-09 08:13  brun

	* [r19577] treeplayer/inc/TSelectorDraw.h: -Fix an unbelievable
	  oddity (thanks Bastien): fObject member was redefining
	  TSelector::fObject.
	  -Add new function TSelectorDraw::GetTree

2007-08-09 06:56  brun

	* [r19576] alien/src/TAlienJDL.cxx: Fix coding conventions

2007-08-09 06:47  brun

	* [r19575] mathmore/src/GSLIntegrator.cxx,
	  mathmore/src/Integrator.cxx: Fix coding conventions

2007-08-09 06:42  brun

	* [r19574] hist/src/TBinomialEfficiencyFitter.cxx,
	  proofplayer/src/TProofDraw.cxx, proofplayer/src/TProofPlayer.cxx,
	  thread/inc/TLockFile.h, treeplayer/src/TChainIndex.cxx,
	  treeplayer/src/TTreeProxyGenerator.cxx: Fix coding conventions

2007-08-09 06:26  brun

	* [r19573] base/inc/TFileCollection.h: Fix coding conventions

2007-08-08 22:17  rdm

	* [r19572] treeviewer/inc/TParallelCoord.h,
	  treeviewer/inc/TParallelCoordRange.h,
	  treeviewer/src/TParallelCoordEditor.cxx,
	  treeviewer/src/TParallelCoordVar.cxx: fix names of cpp include
	  guard and replaced <> by "" in some includes.

2007-08-08 14:58  brun

	* [r19571] tree/src/TChain.cxx, tree/src/TEntryList.cxx: From Anna:
	  fix the issue of TEntryList and TEventList for remote files in
	  the bug #28505 in Savannah.

2007-08-08 13:48  brun

	* [r19570] cont/src/TList.cxx: In the comments of the examples show
	  valid C++ that does not generate a compiler warning.

2007-08-08 12:58  brun

	* [r19569] treeplayer/src/TSelectorDraw.cxx,
	  treeplayer/src/TTreePlayer.cxx: From Bastien DallaPiazza:
	  treeplayer/src/TTreePlayer.cxx:
	  Add the options "para" and "candle" to TTreePlayer::DrawSelect.
	  The option "para" brings a parallel coordinates plot.
	  The option "candle" brings a candle stick chart.
	  
	  treeplayer/src/TSelectorDraw.cxx:
	  Add some code in TSelectorDraw::Begin, TSelectorDraw::TakeAction
	  and
	  TSelectorDraw::TakeEstimate to draw parallel coordinates plots
	  and candle
	  stick charts.

2007-08-08 12:57  brun

	* [r19568] treeviewer/Module.mk, treeviewer/inc/LinkDef.h,
	  treeviewer/inc/TParallelCoord.h,
	  treeviewer/inc/TParallelCoordEditor.h,
	  treeviewer/inc/TParallelCoordRange.h,
	  treeviewer/inc/TParallelCoordVar.h,
	  treeviewer/src/TParallelCoord.cxx,
	  treeviewer/src/TParallelCoordEditor.cxx,
	  treeviewer/src/TParallelCoordRange.cxx,
	  treeviewer/src/TParallelCoordVar.cxx: From Bastien DallaPiazza:
	  
	  Add new classes to implement Parallel Coordinates graphs and
	  Candle stick charts.
	  Classes:
	  
	  - TParallelCoord
	  
	  The multidimensional system of Parallel coordinates is a common
	  way of studying
	  high-dimensional geometry and visualizing multivariate problems.
	  To show a set of points in an n-dimensional space, a backdrop is
	  drawn
	  consisting of n parallel lines. A point in n-dimensional space is
	  represented
	  as a polyline with vertices on the parallel axes; the position of
	  the vertex
	  on the i-th axis corresponds to the i-th coordinate of the point.
	  This tool comes with a rather large gui in the editor. It is
	  necessary to use
	  this editor in order to explore a data set, as explained below.
	  
	  Reduce cluttering:
	  
	  The main issue for parallel coordinates is the very high
	  cluttering of the
	  output when dealing with large data set. Two techniques have been
	  implemented
	  to bypass that so far:
	  - Draw doted lines instead of plain lines with an adjustable dots
	  spacing.
	  A slider to adjust the dots spacing is available in the editor.
	  - Sort the entries to display with a "weight cut". On each axis
	  is drawn a
	  histogram describing the distribution of the data on the
	  corresponding
	  variable. The "weight" of an entry is the sum of the bin content
	  of each
	  bin the entry is going through. An entry going through the
	  histograms peaks
	  will have a big weight wether an entry going randomly through the
	  histograms
	  will have a rather small weight. Setting a cut on this weight
	  allows to draw
	  only the most representative entries. A slider set the cut is
	  also available
	  in the gui.
	  
	  Candle chart:
	  
	  TParallelCoord can also be used to display a candle chart. In
	  that mode, every
	  variable is drawn in the same scale. The candle chart can be
	  combined with the
	  parallel coordinates mode, drawing the candle sticks over the
	  axes.
	  
	  - TParallelCoordVar:
	  
	  Class containing a variable for the TParallelCoord. Appears as an
	  axis on the
	  pad.
	  
	  Options can be defined each axis separatly using the right mouse
	  click.
	  These options can be applied to every axes using the editor.
	  - Axis width: If set to 0, the axis is simply a line. If higher,
	  a color
	  histogram is drawn on the axis.
	  - Axis histogram height: If not 0, a usual bar histogram is drawn
	  on the plot.
	  The order in which the variables are drawn is essential to see
	  the clusters.
	  The axes can be dragged to change their position. A zoom is also
	  available.
	  The logarithm scale is also available by right clicking on the
	  axis.
	  
	  - TParallelCoordRange:
	  
	  A TParallelCoordRange is a range used for parallel coordinates
	  plots. It defines
	  a range owned by a selection on an axis.
	  
	  - TParallelCoorSelect:
	  
	  A TParallelCoordSelect is a specialised TList to hold
	  TParallelCoordRanges used
	  by TParallelCoord.
	  
	  Selections of specific entries can be defined over the data set
	  using parallel
	  coordinates. With that representation, a selection is an ensemble
	  of ranges
	  defined on the axes. Ranges defined on the same axis are
	  conjugated with OR
	  (an entry must be in one or the other ranges to be selected).
	  Ranges on different axes are are conjugated with AND (an entry
	  must be in all
	  the ranges to be selected). Several selections can be defined
	  with different
	  colors. It is possible to generate an entry list from a given
	  selection and
	  apply it to the tree using the editor ("Apply to tree" button).
	  
	  - TParallelCoordEditor:
	  
	  This is the TParallelCoord editor. It brings tools to explore
	  datas using
	  parallel coordinates. The main tools are:
	  - Dots spacing : Set the dots spacing with whichone the lines
	  must be drawn.
	  This tool is useful to reduce the image cluttering.
	  - The Selections section : Set the current edited selection and
	  allows to
	  apply it to the tree through a generated entry list.
	  - The Entries section : Set how many events must be drawn. A
	  weight cut can
	  be defined here (see TParallelCoord for a a description of the
	  weight cut).
	  
	  - The Variables tab : To define the global settings to display
	  the axes.
	  It is also possible to add a variable from its expression or
	  delete a
	  selected one (also possible using right click on the pad.

2007-08-08 08:51  rdm

	* [r19567] base/inc/TFileCollection.h, base/inc/TFileInfo.h,
	  base/src/TFileCollection.cxx: From Jan-Fiete and me:
	  addition of kCorrupted bit assigned to TFileInfo's that are
	  staged but are
	  corrupted in one way or another (partial file transfer, etc.).
	  Split out AddFromFile() from the TFileCollection ctor.

2007-08-08 07:01  axel

	* [r19566] reflex/inc/Reflex/internal/Makefile.am: From Andr�
	  Rodrigues: add missing Makefile.am for subdir internal

2007-08-08 01:08  rdm

	* [r19565] proof/src/TProof.cxx: in Init() avoid calling
	  TSystem::GetHostByName() on non-existing hostnames,
	  like __master__, as some nameservers are configured to redirect
	  all unknown
	  (or misspelled) hosts to one central machine (like ISP web
	  server).

2007-08-08 00:56  rdm

	* [r19564] config/Makefile.depend, netx/inc/TXNetFile.h,
	  netx/src/TXNetFile.cxx: From Gerri:
	  Andy has decided to rename and move some utilities classes inside
	  XROOTD.
	  Some of them are used in ROOT too. In preparation for this I have
	  tried to
	  remove as much as possible our dependence on that.
	  In TXNetFile there is an instance of XrdOucRecMutex which should
	  become a
	  recursive TMutex. The patch attached does this.

2007-08-07 20:25  brun

	* [r19563] minuit/src/TMinuit.cxx: Protect TMinuit::mnscan to store
	  less than fMaxcpt points

2007-08-07 07:53  brun

	* [r19562] gdml/inc/TGDMLParse.h, gdml/src/TGDMLParse.cxx: From
	  Zoltan.Torzsok@cern.ch:
	  *** Using constants in GDML with ROOT ***
	  
	  [ORIGINAL APPROACH]
	  
	  Originally constants could not be used within mathematical
	  expressions in ROOT.
	  The following example is to illustrate the problem:
	  
	  <define>
	  <constant name="size" value="100.0"/>
	  </define>
	  
	  <solids>
	  <box name="MyCube" x="size" y="size" z="size"/>
	  <box name="MyBox" x="1.0*size" y="2.0*size" z="3.0*size"/>
	  </solids>
	  
	  The "MyCube" solid can be parsed since it contains a constant
	  only.
	  The "MyBox" solid will indicate an error message like "size" is
	  not
	  recognised as an expression. This happens because in the original
	  method
	  the whole expression string is searched in the constant map.
	  If it can be found, it is replaced with its value.
	  In "MyBox" the expression string for the "x" attribute is
	  "1.0*size"
	  and there isnt any constant defined with the name of "1.0*size".
	  We can trick the parser and eliminate the mentioned error message
	  by
	  adding the following constants:
	  
	  <constant name="1.0*size" value="100"/>
	  <constant name="2.0*size" value="200"/>
	  <constant name="3.0*size" value="300"/>
	  
	  [MY APPROACH]
	  
	  I am using a find-and-replace method on the expression string.
	  If the name of a constant is found within the expression string,
	  it is replaced with the value of the constant.
	  
	  This approach fails in special cases, when a constants name
	  contains
	  an other constants name, like in the following:
	  
	  <constant name="wi" value="100"/>
	  <constant name="width" value="200"/>
	  
	  In this case, every occurence of "width" will look like "100dth"
	  so that "width" will be no longer recognised. This must be fixed.
	  
	  [TEST RESULTS]
	  
	  Applying my method has not got any impact on speed, even with
	  highly sophisticated models like "cms.gdml".
	  
	  
	  [FEATURES]
	  
	  - Works with multiple constants in a single expression (tested)
	  - Should work with multiple *.gdml files (not tested)
	  - Works with constants with expressions (tested)
	  
	  Example:
	  
	  <constant name="size" value="100.0"/>
	  <constant name="width" value="2.0*size"/>
	  <constant name="height" value="4.0*size"/>
	  <constant name="depth" value="8.0*size"/>
	  
	  *** Problem with rotation in boolean solids is fixed now ***
	  
	  Originally, in GDML/Geant4, in a boolean composition of two
	  solids only the second solid could be rotated.
	  This rotation has opposite winding compared to the rotation of
	  the volume, so that the inverse of the rotation matrix is used.
	  
	  Later the boolean solid was extended, using the "firstrotation"
	  token, so that the first solid can be rotated too.
	  But in the code the matrix inversion was omitted for this
	  rotation. By adding matrix inversion to this rotation
	  the problem is solved.

2007-08-07 07:48  brun

	* [r19561] mlp/src/TMultiLayerPerceptron.cxx: From Christophe
	  Delaere:
	  When I moved BFGS matrices into the BFGS specific code, I
	  overlooked the fact
	  that matrices are not to be reinitialized at each step of the
	  loop.
	  The consequence is that BFGS training is far from optimal from
	  release
	  v5-15-08, but other methods are not affected. Using MLP with ROOT
	  v5-15-08 -> v5-16-00 I recommend to use the
	  TMultiLayerPerceptron::kFletcherReeves learning method.

2007-08-07 00:45  rdm

	* [r19560] Makefile: avoid rm -rf in root/etc altogether to avoid
	  any more accidents during install
	  related to users not following the installation guide.

2007-08-07 00:39  rdm

	* [r19559] base/inc/TFileInfo.h, base/src/TFileInfo.cxx: Move
	  static methods CreateListFromFile() and CreateListMatching()
	  to TFileCollection where they make more sense.

2007-08-07 00:29  rdm

	* [r19558] base/Module.mk, base/inc/LinkDef3.h,
	  base/inc/TFileCollection.h, base/src/TFileCollection.cxx: From
	  Jan-Fiete and Erich Bruckner:
	  Class TFileCollection that contains a hashlist of TFileInfo's and
	  a list of accumulated meta data information about its entries.
	  This class
	  is used to describe file sets as stored by Grid file catalogs,
	  by PROOF or any other collection of TFile names.

2007-08-06 15:26  ganis

	* [r19556] proofd/src/XrdProofdManager.cxx: Do not initialize twice
	  the default number of local workers

2007-08-06 15:25  ganis

	* [r19555] proofd/src/XrdProofdProtocol.cxx: - Improve the
	  detection of the "xpd.sched" directive
	  - Fix a problem transmitting the version run by the client to
	  proofserv

2007-08-04 17:31  brun

	* [r19554] hist/src/TBinomialEfficiencyFitter.cxx: From Bertrand:
	  Fix compilation error on Windows + a few coding conventions
	  violations.

2007-08-04 09:31  brun

	* [r19553] tutorials/fit/TestBinomial.C: From Frank Filthaut.
	  New version of the tutorial illustrating the new functionality of
	  TBinomialEfficiencyFitter.

2007-08-04 09:28  brun

	* [r19552] hist/inc/TBinomialEfficiencyFitter.h,
	  hist/src/TBinomialEfficiencyFitter.cxx: From Frank Filhaut:
	  - extension to 2D and 3D problems (I didn't test the 3D case,
	  I'm assuming that it is a straightforward extension compared
	  to the 2D case);
	  
	  - a method to allow the use to change the integration precision
	  (I thought this might be necessary for the 2D and 3D cases,
	  depending on the complexity of the problem etc.);
	  
	  - computation of a goodness-of-fit parameter (the quantity
	  proposed by Baker and Cousins). Together with the number of
	  degrees of freedom, this allows to compute easily the fit
	  probability using TF1::Prob(). Such computation is contained
	  in the 1D example, and it doesn't return a completely flat
	  probability distribution -- but it has to be kept in mind
	  that this is only asymptotically a proper chisquared variable;
	  
	  - documentation.

2007-08-03 19:19  pcanal

	* [r19551] tree/inc/TTree.h, tree/src/TChain.cxx,
	  tree/src/TTree.cxx: In fast merging and cloning, we now check
	  after each input file whether
	  the output file is over TTree::GetMaxTreeSize() and apply the
	  automatic file overflow if needed.

2007-08-03 18:50  pcanal

	* [r19550] mysql/src/TMySQLStatement.cxx: Add a missing if
	  MYSQL_VERSION_ID >= 50022

2007-08-03 18:18  pcanal

	* [r19549] mysql/src/TMySQLStatement.cxx: temporary work-around
	  macos compilation error

2007-08-03 17:23  pcanal

	* [r19548] cint/src/v6_pause.cxx: Fix support for multi line
	  command line entries when the first line is only '{'

2007-08-03 17:19  pcanal

	* [r19547] meta/src/TCint.cxx: fix comment spelling

2007-08-03 17:15  pcanal

	* [r19546] mysql/src/TMySQLStatement.cxx: Support
	  MYSQL_TYPE_NEWDECIMAL only with mysql 5.0.22 and above

2007-08-03 17:00  pcanal

	* [r19545] treeplayer/src/TBranchProxyClassDescriptor.cxx: add
	  missing 'else'

2007-08-03 16:55  pcanal

	* [r19544] mysql/src/TMySQLStatement.cxx: Add support for
	  MYSQL_TYPE_NEWDECIMAL (new MYSQL_TYPE fixed precision decimal)

2007-08-03 16:55  pcanal

	* [r19543] mysql/inc/TMySQLStatement.h: Make datamember protected

2007-08-03 16:53  brun

	* [r19542] treeplayer/inc/TBranchProxy.h: Fix a compiler warning
	  about a variable possibly not initialized.

2007-08-03 15:41  pcanal

	* [r19541] treeplayer/inc/TBranchProxy.h,
	  treeplayer/inc/TBranchProxyClassDescriptor.h,
	  treeplayer/inc/TBranchProxyTemplate.h: Fix compilation on mac

2007-08-03 13:33  pcanal

	* [r19540] treeplayer/inc/TBranchProxy.h,
	  treeplayer/inc/TBranchProxyClassDescriptor.h,
	  treeplayer/inc/TBranchProxyTemplate.h,
	  treeplayer/inc/TTreeProxyGenerator.h,
	  treeplayer/src/TBranchProxy.cxx,
	  treeplayer/src/TBranchProxyClassDescriptor.cxx,
	  treeplayer/src/TTreeProxyGenerator.cxx: Add support for STL
	  containers in MakeProxy

2007-08-03 13:33  pcanal

	* [r19539] tree/inc/TBranchElement.h: Make GetCollectionProxy
	  public

2007-08-02 18:50  pcanal

	* [r19538] mysql/inc/TMySQLServer.h: Allow (usefull) derivation by
	  making the members protected

2007-08-02 16:15  rdm

	* [r19537] eg/src/TDatabasePDG.cxx: From Constantin Loizides:
	  implement WritePDGTable(), note that it does not 100% reproduce
	  the existing pdg_table.txt due to inconsistencies in
	  the names of the daughter particles in the decay chains
	  (that are not used anyways) and due to the fact
	  that some (spin) information is set to hard coded values.

2007-08-02 16:10  rdm

	* [r19536] sessionviewer/src/TSessionViewer.cxx: From Bertrand:
	  Change default parent parameter in TSessionViewer ctor,
	  to be able to embed it.

2007-08-02 16:06  rdm

	* [r19535] test/ProofBench/make_event_trees.C,
	  test/ProofBench/make_tdset.C: From Tran Long:
	  1. In case of running on local machines, the master's name could
	  be
	  "localhost.localdomain", not just "localhost"
	  (make_event_trees.C)
	  2. In the make_tdset.C file, line 75, the file name is created
	  inappropriately.

2007-08-02 16:00  rdm

	* [r19534] proof/src/TDSet.cxx: fix in TDSet for the modified
	  TFileInfoMeta ctor.

2007-08-02 15:59  rdm

	* [r19533] base/inc/TFileInfo.h, base/src/TFileInfo.cxx: implement
	  some suggestions from Jan-Fiete concerning combining the path
	  and object name in the fName so they become unique and the search
	  for them
	  will be unambiguoes.

2007-08-02 14:48  rdm

	* [r19532] gl/src/TGLScene.cxx: From Matevz:
	  Use IsA() instead of typeid during smart-refresh sanity check.

2007-08-02 14:47  rdm

	* [r19531] gl/inc/TGLScenePad.h, gl/src/TGLScenePad.cxx: From
	  Matevz:
	  Propagate smart-refresh state from viewer to scene-pad, fix usage
	  of an
	  uninitialized variable.

2007-08-02 14:37  rdm

	* [r19530] config/rootrc.in: turn Xft off by default till
	  performance and size and layout change issues
	  are better understood.

2007-08-02 14:24  ganis

	* [r19529] proof/inc/TProof.h, proof/src/TProofServ.cxx: In
	  TProofServ::HandleCache, remove the full package directory when
	  a package re-build is needed; this avoids problems when the
	  'clean'
	  target is not (or not correctly) implemented in the package
	  makefile.

2007-08-02 12:54  ganis

	* [r19528] proofd/inc/XrdProofSched.h,
	  proofd/src/XrdProofSched.cxx: - Use the correct option name while
	  decoding option 'optnwrks'
	  - Do not require the name specification if defining the
	  parameters for the default
	  scheduler

2007-08-02 12:45  rdm

	* [r19527] tutorials/gui/games.C: correct make file targets, "make
	  Tetris.so" -> "make Tetris", etc.

2007-08-02 12:44  rdm

	* [r19526] test/Aclock.rootmap, test/Hello.rootmap,
	  test/Tetris.rootmap: correctly specify depencendy Gui as libGui.

2007-08-02 12:43  rdm

	* [r19525] meta/src/TCint.cxx: in GetSharedLibDeps() if the libs in
	  the rootmap file don't contain
	  shared library extensions, e.g. Tetris in stead of Tetris.so,
	  still
	  make sure they get matched. Allows for machine independent
	  rootmap files.

2007-08-02 12:38  rdm

	* [r19524] base/src/TSystem.cxx: in Load() make sure that e.g.
	  libGui is found as libGui.so in the list of
	  already loaded libs. It used to be missed and then caused a
	  warning in
	  G__loadfile() where CINT detected it was already loaded.

2007-08-02 10:59  ganis

	* [r19523] proofd/src/XrdProofdProtocol.cxx: - Notify the client
	  when she/he using a ROOT version other than the default one
	  - Make sure that the client protocol version is always correctly
	  filled.

2007-08-02 10:27  rdm

	* [r19522] net/src/TApplicationRemote.cxx: add support for dash
	  shell.

2007-08-02 10:21  axel

	* [r19521] reflex/inc/Reflex/Kernel.h, reflex/inc/Reflex/Member.h,
	  reflex/python/genreflex/gendict.py: As suggested by Hady Zalek:
	  Set ABSTRACT flag for pure_virtual funcs; update Kernel.h's table
	  of flags accordingly.
	  New Member::IsPureVirtual() tests for
	  IsFunctionMember()&&IsAbstract()

2007-08-02 10:20  rdm

	* [r19520] configure: From Bertrand:
	  Change the format of moc.exe path on Win32 to be able to build
	  qtgsi tests.

2007-08-02 09:55  ganis

	* [r19519] proof/src/TSlave.cxx, proofx/src/TXSlave.cxx: Make sure
	  that the FQDN is used as name of the host.

2007-08-02 09:45  axel

	* [r19518] reflex/python/genreflex/gendict.py: remove debug
	  statement

2007-08-02 09:41  rdm

	* [r19517] asimage/src/TASImage.cxx: From Valeri O.:
	  - TASImage::DrawZDashLine:
	  use TMath::Nint() for rounding to nearest integer.

2007-08-02 09:20  rdm

	* [r19516] configure: From Axel:
	  daily patch to get genreflex06 test right:
	  fix replacement of genreflex->genreflex06.

2007-08-02 07:21  brun

	* [r19515] hist/src/TF1.cxx: Simplify the logic in TF1::SetTitle.
	  When calling SetTitle,
	  the histogram title is also changed if the function is in the
	  pad.

2007-08-01 21:42  rdm

	* [r19514] base/src/TROOT.cxx: in IgnoreInclude() now only ignore
	  shared libraries, as other .C files
	  may contain class definitions.

2007-08-01 21:11  pcanal

	* [r19513] meta/src/TCint.cxx: For now, do not create a TClass if a
	  namespace is known to CINT but has
	  not been loaded (aka we have a dictionary for some inner class
	  but not
	  for the namespace itself). [Aka return to the behavior of a few
	  days
	  ago].

2007-08-01 21:10  pcanal

	* [r19512] meta/src/TStreamerElement.cxx: Enable specifying the
	  range of the element of an array of Double32_t:
	  Int_t fN;
	  Double32_t *fArr; //[fN][-10,10,16]
	  which was documented but disabled (In this case the double were
	  always
	  stored as floats)

2007-08-01 17:39  rdm

	* [r19511] test/Aclock.rootmap, test/Hello.rootmap,
	  test/Tetris.rootmap: using these rootmap files one can now just
	  do:
	  Tetris t
	  Hello h
	  Aclock c
	  to run these demos. The system will autload the proper libraries
	  and
	  their dependencies.

2007-08-01 17:32  rdm

	* [r19510] base/src/TROOT.cxx: in IgnoreIncludes() reject files
	  with extensions not containing .h*.
	  Solves a problem with an endless loop incase an .so had the same
	  name
	  as the class name, e.g. Tetris.so.

2007-08-01 15:34  axel

	* [r19509] reflex/python/genreflex/gendict.py,
	  reflex/python/genreflex/genreflex.py: From Stefan and me:
	  Move to gccxml version 0.7.0 (checkout date 20070615).
	  
	  The installation of the LCG external package was done with the
	  checkout opt -D20070615. In addition the configuration file for
	  gccxml was patched so that "gccxml --version" will return
	  "0.7.0_20070615" instead of "0.7.0". This version is also checked
	  in genreflex and a warning is printed if only "0.7.0" is received
	  as version info. This will allow a checkout and build of the
	  gccxml package from CVS.
	  
	  Changes in gendict.py
	  - "access" is not defaulted to "public" anymore but has to be
	  checked explicitly
	  - new attribute "demangled" for each type in the xml output
	  - unnamed types have no name anymore (the internal name is
	  derived from the "demangled" attribute
	  - the name of the anonymous namespace is now
	  "@anonymous@namespace@" (was the internal name before)
	  
	  Changes in genreflex.py
	  - Change gccxml version from "0.6.0_patch3" to "0.7.0_20070615"
	  
	  !!! these changes are BACKWARDS INCOMPATIBLE with gccxml the
	  0.6.0 series !!!
	  (But we provide the old, deprecated 06.py files for now)

2007-08-01 14:24  rdm

	* [r19508] proof/inc/TDSet.h, proof/src/TDSet.cxx: accommodate the
	  modified TFileInfo class.

2007-08-01 14:23  rdm

	* [r19507] base/inc/LinkDef3.h, base/inc/TFileInfo.h,
	  base/src/TFileInfo.cxx: cleanup of TFileInfo and introduction of
	  a new small TFileInfoMeta class.
	  TFileInfo contains now pure file only info. Optionly
	  TFileInfoMeta objects
	  (or any user objects) can be added to the fMetaDataList of the
	  TFileInfo.
	  TFileInfoMeta describes the typical analysis objects meta data,
	  like tree
	  name, number of entries, etc.

2007-07-31 21:10  brun

	* [r19506] hist/src/TH1.cxx, hist/src/TProfile.cxx: From Constantin
	  Loizides:
	  Apply same logic in TProfile::rebin as in TH1::Rebin in case
	  xbins!=0.
	  Also return an error when newname=0 and xbins!=0.

2007-07-31 19:58  pcanal

	* [r19505] meta/src/TCint.cxx: Fix SetClassInfo for namespaces

2007-07-31 16:20  rdm

	* [r19504] test/ProofBench/make_event_trees.C: From Gerri:
	  The macro make_event_trees.C creates uncompressed files, because
	  the
	  event branch is created before the tree is connected to the file
	  and the default compression for branches is 0 (while for files is
	  1).

2007-07-31 13:27  pcanal

	* [r19503] utils/src/rootcint.cxx: Adapt the call to
	  GenerateLinkdef to the (previous) changes to argvv handling

2007-07-31 10:43  ganis

	* [r19502] xrootd/src/xrootd-20070716-0300.src.tgz: From Axel: fix
	  a bug in a conditional statement (potentially serious).

2007-07-31 09:05  couet

	* [r19500] gl/src/TGLClipSetEditor.cxx,
	  treeviewer/src/TSpiderEditor.cxx: - Coding conventions.

2007-07-31 08:55  couet

	* [r19499] gl/src/TGLText.cxx: From Axel:
	  - Fix a typo in BBox.

2007-07-30 20:32  pcanal

	* [r19498] treeplayer/src/TTreeProxyGenerator.cxx: Now properly
	  record the [#include compatible] location of the ROOT header
	  files

2007-07-30 20:08  pcanal

	* [r19497] utils/src/rootcint.cxx: Record the location of the
	  header file as they are in the distribution (as opposed to where
	  they are in the cvs repository). This allows MakeProxy (and ACLiC
	  and THtml) to better predict where to find the files at run-time

2007-07-30 20:06  pcanal

	* [r19496] thread/Module.mk: Some header should be copied to
	  ./include but not passed to rootcint

2007-07-30 20:06  pcanal

	* [r19495] tmva/Module.mk: Since the tmva headers are organized
	  slightly differently in tmva/inc and ./include, let's use a
	  different variable to pass them to rootcint

2007-07-30 19:32  axel

	* [r19494] html/inc/THtml.h, html/src/TClassDocOutput.cxx,
	  html/src/THtml.cxx: * Add THtml::IncludePath(): remove parts of
	  DeclFileName() for the class info box (e.g. "include/" for ROOT),
	  instead of using BaseName(). Fixes problem with e.g. MathCore's
	  Whatever.h instead of the proper Math/GenVector/Whatever.h.
	  * Add static THtml::LoadAllLibs(): load all libraries for all
	  classes known via rootmaps, without re-loading dependent
	  libraries. Handy for generating doc for all classes.
	  * Clean THtml.cxx include files.

2007-07-30 17:54  rdm

	* [r19493] configure: From Axel:
	  When redirecting to gccxml 0.6 scripts only rename genreflex
	  filenames,
	  not directories.

2007-07-30 17:41  ganis

	* [r19492] proof/src/TProof.cxx: In TProof::CreateDataSet, fix
	  de-synchronization problem due to incorrect
	  number of calls to Collect.

2007-07-30 17:35  rdm

	* [r19491] netx/Module.mk, proofd/Module.mk, proofx/Module.mk: fix
	  in libXrdClient location.

2007-07-30 17:34  rdm

	* [r19490] xrootd/Module.mk: on Mac OS X use "install_name_tool" to
	  modifiy the dylib install name
	  of libXrdClient to point to $LIBDIR. This fixes build with
	  --enable-explicitlink.

2007-07-30 17:31  rdm

	* [r19489] Makefile: fix break in parallel build when using
	  --enable-explicitlink, ged must be
	  the exact location it is now in between treeplayer and
	  treeviewer.

2007-07-30 16:26  ganis

	* [r19488] proofd/src/XrdProofdProtocol.cxx: In
	  XrdProofdProtocol::Admin, user the manager to get the server type
	  and fill
	  the group info in the temporary client instance created to set
	  the version;
	  this solves a problem with version steting on the worker nodes.

2007-07-30 15:31  pcanal

	* [r19487] meta/inc/TCint.h, meta/inc/TInterpreter.h: From Axel:
	  Add access to the interpreter's MapFile

2007-07-30 00:52  rdm

	* [r19486] net/inc/TWebFile.h, net/src/TWebFile.cxx: add support
	  for the HTTP/1.1 protocol which allows sockets to stay open.
	  This saves a lot of time in not having to open and setup sockets
	  for
	  each request. They gain can be up to 100% or more.

2007-07-29 09:01  rdm

	* [r19485] configure: From Axel:
	  determine whether gccxml0.6 is requested via --with-gccxml; if
	  so, use
	  the "06" version of genreflex/gendict.py and print a
	  recommendation to
	  upgrade. Otherwise use the current ones without digits.

2007-07-28 19:14  pcanal

	* [r19484] tree/inc/TTreeCache.h, tree/src/TTree.cxx,
	  tree/src/TTreeCache.cxx: Trigger the deletion of the TTreeCache
	  on fOwner rather than the (possibly not set) current TTree

2007-07-28 13:42  rdm

	* [r19483] castor/src/TCastorFile.cxx: white space and indentation.

2007-07-27 18:03  brun

	* [r19482] minuit/src/TLinearFitter.cxx: From Lorenzo:
	  fix bug
	  
	  https://savannah.cern.ch/bugs/?27999
	  
	  by setting the parameters to zero when the fit fails

2007-07-27 16:23  axel

	* [r19481] cintex/src/CINTEnumBuilder.cxx: Fix for testing on
	  "forward declared" enums:
	  G__searchvariable is not exported on Windows, leading to an
	  unresolved symbol.
	  Instead use CINT's C++ API: go via G__ClassInfo. Makes it a lot
	  simpler, too.

2007-07-27 16:07  axel

	* [r19480] reflex/python/genreflex/gendict06.py,
	  reflex/python/genreflex/genreflex06.py: Split off development for
	  GCCXML0.7: put current snapshot of genreflex.py and gendict.py
	  into gendict06.py and genreflex06.py. configure will dial those
	  if gccxml 0.6 is found.

2007-07-27 15:09  rdm

	* [r19479] io/src/TFile.cxx: in case .zip file is opened in
	  filetype=raw mode don't try first to
	  open it as an archive file.

2007-07-27 15:08  rdm

	* [r19478] castor/src/TCastorFile.cxx: put Info() messages behind
	  gDebug.

2007-07-27 13:47  axel

	* [r19477] reflex/Module.mk: check-reflex should use bin/genreflex
	  wrapper. Will allow to test both gccxml06 and 07.

2007-07-27 13:45  axel

	* [r19476] reflex/test/test_Reflex_simple1.cxx: Update the number
	  of func members of PropertyList: now has __getNewDelFunctions

2007-07-27 13:33  rdm

	* [r19475] net/src/TWebFile.cxx: add support for "filetype=raw",
	  i.e. by-pass check for ROOT file type.

2007-07-27 09:27  couet

	* [r19474] gpad/src/TPad.cxx: - From Timur:
	  Fix to enable switching between non-gl and gl viewer in a pad.

2007-07-27 09:14  axel

	* [r19473] cintex/src/CINTEnumBuilder.cxx: Fix problem where an
	  enum "forward" declared by EnumTypeBuilder wasn't updated by the
	  EnumBuilder later, so its "members" were never set up.

2007-07-26 22:59  rdm

	* [r19472] io/src/TFile.cxx: allow to write to a .zip file when in
	  filetype=raw mode.

2007-07-26 22:57  rdm

	* [r19471] castor/Module.mk: typo preventing libRCastor.rootmap
	  from being generated.

2007-07-26 17:52  ganis

	* [r19470] proofx/Module.mk: - Search libraries in the XROOTD build
	  lib path instead of the ROOT lib path

2007-07-26 17:10  axel

	* [r19469] reflex/python/genreflex/gendict.py: Create artificial
	  NewDelFunctions() even for c'tors that have all default params.

2007-07-26 15:40  axel

	* [r19468] cint/inc/G__ci.h, cint/include/bool.h, cint/src/HISTORY,
	  cint/src/fproto.h, cint/src/v6_cast.cxx, cint/src/v6_error.cxx,
	  cint/src/v6_fread.cxx, cint/src/v6_macro.cxx,
	  cint/src/v6_parse.cxx, cint/src/v6_scrupto.cxx,
	  cint/src/v6_struct.cxx, cint/src/v6_tmplt.cxx: Import of
	  cint5-16-24

2007-07-26 15:37  ganis

	* [r19465] netx/Module.mk, proofd/Module.mk, proofx/Module.mk: - On
	  unix, using dynamic linkage syntax also for static libs.

2007-07-26 15:35  ganis

	* [r19464] proof/inc/TProof.h, proof/src/TProof.cxx: - In the
	  relevant dataset handling methods, add a check on the
	  compatibility
	  of the TFileInfo version run by the server.

2007-07-26 14:29  rdm

	* [r19463] tmva/src/MethodBase.cxx: From Olivier:
	  fix compiler warnings.

2007-07-26 13:42  ganis

	* [r19462] xrootd/src/xrootd-20070716-0300.src.tgz: - Fix a bug on
	  the client side affecting processing of unsolicited messages
	  after the client is asked to go back to the redirector
	  - Improve handling of open requests while files are being staged.

2007-07-26 13:28  rdm

	* [r19461] base/inc/TDatime.h, base/src/TDatime.cxx: add some
	  cautions in the class description and Convert() method on
	  concerning
	  time zones.

2007-07-26 12:37  rdm

	* [r19460] Makefile: make install target empty when not configured
	  with prefix.

2007-07-26 10:31  rdm

	* [r19459] alien/src/TAlienJDL.cxx: From Andreas:
	  several small bug fixes.

2007-07-26 08:51  couet

	* [r19458] graf/src/TLegend.cxx, graf/src/TPaveStats.cxx,
	  graf/src/TPaveText.cxx: - Make sure the right font is used when
	  the text size is conputed in the
	  Paint() method. This fixes the problem reported and fixed here:
	  https://savannah.cern.ch/bugs/?28302
	  by Oleksandr Grebenyuk.
	  
	  The folowing macro demonstrated the problem:
	  
	  {
	  TCanvas *c1 = new TCanvas("c1", "c1",521,150,700,590);
	  c1->Range(0,0,1,1);
	  
	  TPaveText *pt;
	  TText *text;
	  
	  pt = new TPaveText(0.1106322,0.6004274,0.8448276,0.9764957,"br");
	  text = pt->AddText("Calculate from helvetica bold");
	  text = pt->AddText("Display with helvetica bold");
	  pt->Draw();
	  
	  pt = new TPaveText(0.112069,0.1325301,0.8477011,0.5562249,"br");
	  pt->SetTextFont(22);
	  text = pt->AddText("Calculate from helvetica bold");
	  text = pt->AddText("Display with times bold");
	  pt->Draw();
	  
	  TLine *line = new TLine(0.8132184,0.9558233,0.8132184,0.2309237);
	  line->SetLineColor(2); line->Draw();
	  line = new TLine(0.783046,0.5140562,0.783046,0.2309237);
	  line->SetLineColor(2); line->Draw();
	  TArrow *arrow = new
	  TArrow(0.783046,0.2610442,0.8146552,0.2610442,0.02,"<|>");
	  arrow->SetFillColor(2); arrow->SetFillStyle(1001);
	  arrow->SetLineColor(2); arrow->Draw();
	  }

2007-07-26 00:55  rdm

	* [r19457] configure: remove obsolete items from bin and lib
	  directories.

2007-07-26 00:36  rdm

	* [r19456] configure: update name of possible package the user has
	  to install to get libX11.so.

2007-07-26 00:17  rdm

	* [r19455] Makefile: add reminder about usage of DESTDIR in install
	  target.

2007-07-25 14:39  pcanal

	* [r19454] main/src/hadd.cxx: Reduce the requirement from 3 to 2
	  arguments (allows to call hadd newfile.root @list)

2007-07-25 14:14  pcanal

	* [r19453] io/src/TStreamerInfo.cxx: remove spurrious leading white
	  space in warning

2007-07-25 11:55  rdm

	* [r19452] rpdutils/src/rpdutils.cxx: From Gerri:
	  Fix a problem with anonymous rootd usage.

2007-07-25 11:52  rdm

	* [r19451] base/inc/TFileInfo.h: forgot to update the version
	  number after change of class layout.

2007-07-25 11:32  rdm

	* [r19450] config/Makefile.depend: change libGed and libTreeviewer
	  dependencies also for Unix.

2007-07-25 10:22  moneta

	* [r19449] mathmore/inc/Math/Integrator.h,
	  mathmore/src/GSLIntegrator.cxx, mathmore/src/GSLIntegrator.h,
	  mathmore/src/Integrator.cxx: - add new methods for Cauchy
	  principal values integration (patch from M. Slawinska)

2007-07-25 00:50  pcanal

	* [r19448] config/Makefile.depend: Due to TSpiderEditor, TreeViewer
	  now depends on Ged (fix windows build)

2007-07-24 20:00  brun

	* [r19446] ged/inc/LinkDef.h, ged/inc/TSpiderEditor.h,
	  ged/src/TSpiderEditor.cxx, treeviewer/Module.mk,
	  treeviewer/inc/LinkDef.h, treeviewer/inc/TSpiderEditor.h,
	  treeviewer/src/TSpiderEditor.cxx: Move class TSpiderEditor from
	  ged to treeviewer.

2007-07-24 15:05  rdm

	* [r19445] asimage/src/libAfterImage.tar.gz: From Valeri O. and
	  Sasha V.:
	  new version, with mods by Valeri and Sasha and removal of many
	  valgrind
	  messages.

2007-07-24 14:17  pcanal

	* [r19444] io/src/TStreamerInfo.cxx: Fix wording of warning message

2007-07-24 12:52  axel

	* [r19443] html/src/TDocOutput.cxx: Footer: write "last changed"
	  even if empty (just take today) - and empty also means "".

2007-07-24 06:04  brun

	* [r19442] treeplayer/src/TTreeProxyGenerator.cxx: Remove compiler
	  warnings about unused variables.

2007-07-23 21:49  pcanal

	* [r19441] treeplayer/src/TTreeProxyGenerator.cxx: Correct
	  initialization by moving within loop

2007-07-23 21:35  pcanal

	* [r19440] tree/src/TTreeCache.cxx: When testing the incoming
	  branch, test on fOwner->GetTree() rather than fTree

2007-07-23 19:59  brun

	* [r19439] tree/src/TEntryList.cxx: From Anna:
	  There was indeed a bug in computing the total number of entries,
	  when
	  TEntryList::Enter() function was used with a TChain argument.

2007-07-23 17:07  pcanal

	* [r19438] treeplayer/inc/TBranchProxy.h,
	  treeplayer/inc/TBranchProxyClassDescriptor.h,
	  treeplayer/inc/TBranchProxyDescriptor.h,
	  treeplayer/inc/TBranchProxyTemplate.h,
	  treeplayer/inc/TTreeProxyGenerator.h,
	  treeplayer/src/TBranchProxy.cxx,
	  treeplayer/src/TBranchProxyClassDescriptor.cxx,
	  treeplayer/src/TBranchProxyDescriptor.cxx,
	  treeplayer/src/TTreeProxyGenerator.cxx: Rewrite the parsing of
	  the TBranchElement by looping over the TStreamerElement
	  instead of the TBranchElement (hence emulating somewhat unroll
	  instead of
	  guessing the connection between branch and element)
	  Fix support for base class (in particular when inside a
	  TClonesArray)
	  Fix support for sub-objects without their own branch ('missing
	  node').

2007-07-23 15:11  rdm

	* [r19437] gpad/src/TPad.cxx: From Matevz:
	  Add an explicit call to Modified() in creation of
	  gl-in-pad-viewer. With the latest changes this flag was either
	  not
	  marked or cleared before taking effect.

2007-07-23 15:10  rdm

	* [r19436] gl/inc/TGLText.h, gl/src/TGLText.cxx: From Matevz:
	  Add functions FTFont* GetFont() and void BBox(const char*
	  string).

2007-07-23 15:09  rdm

	* [r19435] gl/inc/TGLViewerEditor.h, gl/src/TGLViewerEditor.cxx:
	  From Matevz:
	  Move clip-set-editor to a special class. Fix bug with clipping
	  control buttons getting disabled after some manipulation.

2007-07-23 15:09  rdm

	* [r19434] gl/src/TGLRnrCtx.cxx: From Matevz:
	  Allow creation with unspecified TGLViewerBase (needed for
	  external rendering of ROOT geometry).

2007-07-23 15:08  rdm

	* [r19433] gl/inc/TGLViewerBase.h, gl/src/TGLViewerBase.cxx: From
	  Matevz:
	  Provide Add/RemoveOveralElement() functions.
	  Improve viewer-scene inter-awareness in view of automatic scene
	  destruction.
	  New method MergeSceneBBoxes(TGLBoundingBox& bbox) needed for
	  camera-interest bootstrapping.

2007-07-23 15:07  rdm

	* [r19432] gl/inc/TGLViewer.h, gl/src/TGLViewer.cxx: From Matevz:
	  Move all active TVirtualViewer3D interface to TGLScenePad, only a
	  facade is kept. Reimplement camera-interest update to be in line
	  with scenes shared among viewers.

2007-07-23 15:06  rdm

	* [r19431] gl/inc/TGLScene.h, gl/inc/TGLSceneBase.h,
	  gl/inc/TGLSceneInfo.h, gl/src/TGLScene.cxx,
	  gl/src/TGLSceneBase.cxx, gl/src/TGLSceneInfo.cxx: From Matevz:
	  Move interest draw-list into scene-info as it is
	  view-dependent. Provide additional checks and hooks during
	  scene-prerender for automatic reinitialization of these
	  structures.

2007-07-23 15:04  rdm

	* [r19430] gl/inc/TGLObject.h, gl/src/TGLObject.cxx: From Matevz:
	  Store class to gl-renderer-class in an internal static TMap,
	  expose it via static GetGLRenderer(TClass* isa) method. Adapted
	  from code in TGLViewer that used non-static stl-map.

2007-07-23 15:04  rdm

	* [r19429] gl/inc/TGLLogicalShape.h, gl/src/TGLLogicalShape.cxx:
	  From Matevz:
	  Support internal creation of ID-object when external ID is not
	  set
	  during creation via TBuffer3D.

2007-07-23 15:03  rdm

	* [r19428] gl/inc/LinkDef.h: From Matevz:
	  Register new classes TGLScenePad and TGLClipSetEditor.

2007-07-23 15:02  rdm

	* [r19427] gl/inc/TGLScenePad.h, gl/src/TGLScenePad.cxx: From
	  Matevz:
	  New class - implements TVirtualViewer3D interface for filling of
	  GL-scenes from TPad. Code mostly moved from TGLViewer.

2007-07-23 15:01  rdm

	* [r19426] gl/inc/TGLClipSetEditor.h, gl/src/TGLClipSetEditor.cxx:
	  Frm Matevz:
	  New class - separate ClipSetEditor from TGLViewerEditor.

2007-07-23 14:57  ganis

	* [r19425] xrootd/src/xrootd-20070716-0300.src.tgz: - Re-commit
	  using the binary flag; also, fix a warning on MacOS.

2007-07-22 23:54  rdm

	* [r19424] build/unix/distfilelist.sh: add missing tmva/test files.

2007-07-21 21:32  wouter

	* [r19423] roofitcore/inc/RooAbsPdf.h, roofitcore/inc/RooNLLVar.h,
	  roofitcore/inc/RooProfileLL.h,
	  roofitcore/src/RooNumIntConfig.cxx,
	  roofitcore/src/RooWorkspace.cxx: o RooAbsPdf
	  
	  - Fix in private copy ctor
	  
	  
	  o RooNLLVar
	  
	  - Add default ctor
	  
	  
	  o RooProfileLL
	  
	  - Remove stray inline keyword in dtor
	  
	  
	  o RooNumIntConfig
	  
	  - Fix const_cast problem in getConfigSection
	  
	  
	  o RooWorkspace
	  
	  - Fix bug in printing of function section in Print()

2007-07-20 15:44  rdm

	* [r19422] base/inc/TFileInfo.h, base/src/TFileInfo.cxx: fix
	  several bugs reported in savannah issue 28074.

2007-07-20 14:45  rdm

	* [r19421] config/Makefile.linux, config/Makefile.linuxx8664gcc:
	  fix in comparing run-time libs for gfortran and gcc. Fixes issue
	  28052.

2007-07-20 14:37  rdm

	* [r19420] ged/inc/TSpiderEditor.h, ged/src/TSpiderEditor.cxx,
	  treeviewer/inc/TSpider.h, treeviewer/src/TSpider.cxx: add missing
	  cvs ident lines.

2007-07-20 14:28  rdm

	* [r19419] gui/src/TRootCanvas.cxx,
	  gui/src/TRootEmbeddedCanvas.cxx: From Bertrand:
	  work-around for gVirtualX->GetName() returning "" on Windows.

2007-07-20 13:31  moneta

	* [r19418] mathmore/inc/Math/LinkDef_SpecFunc.h,
	  mathmore/inc/Math/SpecFuncMathMore.h,
	  mathmore/src/SpecFuncMathMore.cxx,
	  mathmore/test/testSpecFunc.cxx: - use double values for m for the
	  assoc_laguerre function (see bug 27632 ).
	  thanks to patches from C. Crawford:
	  - fix phase (-1)^m in assoc_legendre to be consistent with C++0x
	  - add missing laguerre and sph_legendre functions
	  - update comments
	  
	  - update also tests for the new functions

2007-07-20 12:14  brun

	* [r19417] ged/inc/TSpiderEditor.h, ged/src/TSpiderEditor.cxx: From
	  Bastien
	  New class to edit TSpider objects.

2007-07-20 12:12  brun

	* [r19416] config/Makefile.depend, ged/inc/LinkDef.h: - New class
	  TSpiderEditor to modify and manipulate the TSpider output.

2007-07-20 12:10  brun

	* [r19415] treeviewer/Module.mk, treeviewer/inc/LinkDef.h,
	  treeviewer/inc/TSpider.h, treeviewer/inc/TTreeViewer.h,
	  treeviewer/src/TSpider.cxx, treeviewer/src/TTreeViewer.cxx: From
	  Bastien and Olivier:
	  
	  - New class TSpider:
	  A spider view is a handsome way to visualize a set of data stored
	  in a
	  TTree. It draws as many polar axes as selected data members. For
	  each of
	  them, it draws on the axis the position of the present event
	  between the
	  min and max of the data member.
	  
	  -TTreeViewer allows to scan a TTree using a spider view.CVS:
	  ----------------------------------------------------------------------

2007-07-20 05:51  brun

	* [r19414] pyroot/src/PyROOT.h, pyroot/src/Pythonize.cxx,
	  pyroot/src/TPyClassGenerator.cxx, pyroot/src/Utility.cxx,
	  pyroot/src/Utility.h: From Wim:
	  fix for http://savannah.cern.ch/bugs/?28179.

2007-07-19 17:00  pcanal

	* [r19413] cont/src/THashList.cxx: Clear the THashTable before
	  deleting the contained object (by walking the list) to
	  effectively disable any look up while we are doing the deletes
	  (because some of the items on table will already have been
	  deleted at the time.

2007-07-19 14:57  rdm

	* [r19412] build/unix/makestatic.sh: From Axel:
	  ignore cint7 for static builds and echo what we're doing.

2007-07-19 14:53  axel

	* [r19409] reflex/python/genreflex/gendict.py: In shadows: convert
	  pointer and reference members to void* and int&, resp. Reduces
	  dependencies of non-public types that need shadows. Fixes problem
	  generating Geant4 dict.
	  checkAccessibility: also "ToType()" ArrayTypes, not just
	  PointerTypes and Typedefs. Would also fix the same problem seen
	  with Geant4 :-)

2007-07-19 14:40  rdm

	* [r19408] build/rmkdepend/parse.c: From Axel:
	  fix for strcpy with overlap.

2007-07-19 14:22  rdm

	* [r19407] base/src/TPluginManager.cxx: explicit initialize idx to
	  avoid compiler warning.

2007-07-19 14:20  rdm

	* [r19406] gui/src/TRootCanvas.cxx: make sure to load the right
	  TGLManager plugin (x11 or win32).

2007-07-19 14:19  rdm

	* [r19405] etc/plugins/TGLManager/P010_TX11GLManager.C,
	  etc/plugins/TVirtualGLImp/P010_TX11GL.C: trigger these handlers
	  for x11 only.

2007-07-19 14:19  rdm

	* [r19404] etc/plugins/TGLManager/P020_TGWin32GLManager.C,
	  etc/plugins/TVirtualGLImp/P020_TGWin32GL.C: plugin handlers that
	  were missed.

2007-07-19 12:43  antcheva

	* [r19403] tutorials/gui/guilabels.C: Added an example of a label
	  with fixed size in pixels.

2007-07-19 12:37  antcheva

	* [r19402] gui/inc/TGLabel.h, gui/src/TGLabel.cxx: From Valeriy
	  Onuchin:
	  TGLabel::GetDefaultSize() modified to allow fixed size labels.
	  For example,
	  label->ChangeOptions(label->GetOptions() | kFixedSize);
	  label->Resize(100, 100);
	  after that the label size can not changed by layout manager.

2007-07-19 11:53  ganis

	* [r19401] xrootd/src/xrootd-20070716-0300.src.tgz: - Fix a problem
	  with spurious wakeups of semaphores on the client-side
	  - Further portability fixes for Mac OS x 10.5
	  - Include some fixes for re-direction in case a file is being
	  staged.

2007-07-19 08:14  antcheva

	* [r19400] tutorials/gui/splitbuttonTest.C: - minor changes

2007-07-19 07:49  antcheva

	* [r19399] tutorials/gui/splitbuttonTest.C: From Roel Aaij:
	  A simple example that shows the usage of a TGSplitButton -
	  the check button is used to change the split state of the button.

2007-07-19 07:46  antcheva

	* [r19398] gui/inc/TGMenu.h, gui/src/TGMenu.cxx: From Roel Aaij:
	  TGSplitButton is now a friend class of TGPopupMenu to make sure
	  that key
	  navigation works correctly in a menu that belongs to a
	  TGSplitButton.
	  Added a datamember that is a pointer to the TGSplitButton to
	  which a menu
	  might belong to. This datamember is 0 unless the menu belongs to
	  a
	  TGSplitButton.
	  
	  TGMenu.cxx
	  Added 2 lines to implement the functionality needed for correct
	  operation
	  of key navigation in TGSplitButton

2007-07-19 07:45  antcheva

	* [r19397] gui/inc/LinkDef1.h, gui/inc/TGButton.h,
	  gui/src/TGButton.cxx: From Roel Aaij:
	  New class TGSplitButton - a split button control has a button and
	  a menu.
	  The menu includes predefined commands for secondary
	  functionality.
	  
	  Consider the following when you include split buttons in an
	  application:
	  There are 2 modes available that may be changed by "on the fly"
	  by
	  calling the SetSplit(Bool_t) method.
	  
	  If the button is split (i.e. SetSplit(kTRUE) was called), a menu
	  will
	  popup when the menu area of the button is clicked (the right part
	  containing a small triangle). Activating a menu item changes the
	  functionality of the button by having it emit a additional signal
	  when it is clicked. The signal emitted when the button is
	  clicked,
	  is the ItemClicked(Int_t) signal with a different fixed value for
	  the Int_t that corresponds to the id of the activated menu entry.
	  The button label should update to reflect the last item selected
	  from the menu.
	  
	  If the button is not split, clicking it will popup the menu and
	  the
	  ItemClicked(Int_t) signal will be emitted when a menu entry is
	  acitvated. The value of the Int_t is again equal to the value of
	  the id of the activated menu entry.
	  
	  o Added protection for deletion of tooltip TGButton dtor

2007-07-19 05:50  brun

	* [r19396] asimage/src/TASImage.cxx: Fix a compilation warning.

2007-07-18 22:02  rdm

	* [r19395] asimage/inc/TASImage.h, asimage/src/TASImage.cxx: From
	  Valeri O:
	  TASImage::DrawDashLine - thick dash line drawing implemented.

2007-07-18 15:10  rdm

	* [r19394] gui/src/TGFrame.cxx: From Bertrand:
	  - don't set WM hints (i.e. decorations) if the parent is not
	  default root
	  - change static TGLayoutHints to new TGLayoutHints when adding
	  frame to parent

2007-07-18 13:46  axel

	* [r19393] reflex/Module.mk: genreflex wrappers now installed
	  through bin/*; no need to add to ALLEXECS.
	  Fixed parallel build prob.

2007-07-18 12:59  couet

	* [r19392] graf/inc/TGraphPolar.h, graf/src/TGraphPolar.cxx: - From
	  Bastien:
	  Added the option to not draw the polar labels.

2007-07-18 12:50  rdm

	* [r19391] metautils/inc/TClassEdit.h: add missing copyright
	  notice.

2007-07-18 12:50  rdm

	* [r19390] gpad/src/TPad.cxx: correctly use plugin manager to find
	  plugin handler instead of relying on
	  a rootrc "Plugin.TVirtualViewer3D" entry.

2007-07-18 12:47  rdm

	* [r19389] base/src/TVirtualViewer3D.cxx: remove now unused TROOT.h
	  include.

2007-07-18 09:58  couet

	* [r19388] base/inc/TVirtualGL.h: - Fix coding conventions.

2007-07-18 09:28  axel

	* [r19387] reflex/python/genreflex/gendict.py: --interpreteronly:
	  skip non-public types, too. Doesn't work for typedefs - they
	  don't have access attr set.

2007-07-18 09:11  moneta

	* [r19386] mathcore/inc/Math/GenVector/VectorUtil.h: add DeltaR2
	  function (requested by CMS)

2007-07-18 08:51  antcheva

	* [r19385] tutorials/gui/buttonTest.C: From Valeriy Onuchin:
	  A new tutorials example of how to set/change attributes
	  related to the label of a text button.

2007-07-18 06:05  brun

	* [r19384] pyroot/src/Pythonize.cxx: From Wim:
	  o) fix memory leak when using smart pointers

2007-07-17 19:04  axel

	* [r19383] cint/inc/G__ci.h, cint/src/Api.cxx, cint/src/HISTORY,
	  cint/src/v6_ifunc.cxx, cint/src/v6_loadfile.cxx,
	  cint/src/v6_newlink.cxx, cint/src/v6_pause.cxx,
	  cint/src/v6_val2a.cxx: From Philippe, Paul, and me: import of
	  cint5-16-22

2007-07-17 16:34  rdm

	* [r19380] base/src/TPluginManager.cxx: in Print() print the number
	  of missing plugins.

2007-07-17 16:30  rdm

	* [r19379] base/src/TROOT.cxx: in LoadClass() add check to make
	  sure that the found library does
	  not happen to be a directory.

2007-07-17 16:03  rdm

	* [r19377] reflex/Module.mk: use POSTBIN.

2007-07-17 16:03  rdm

	* [r19376] Makefile: cleanup of "install:" target. Added "postbin:"
	  target.

2007-07-17 15:15  rdm

	* [r19375] config/Makefile.in, configure, proofd/Module.mk,
	  proofd/src/XrdProofPhyConn.cxx: From Gerri:
	  handle older external xrootd installations.

2007-07-17 15:08  rdm

	* [r19374] config/genreflex-rootcint.bat.in,
	  config/genreflex-rootcint.in, config/genreflex.bat.in,
	  config/genreflex.in, configure: From Axel:
	  create bin/genreflex python wrappers during configure.

2007-07-17 14:43  rdm

	* [r19373] base/inc/LinkDef1.h, base/inc/TPluginManager.h,
	  base/src/TPluginManager.cxx, base/src/TROOT.cxx,
	  config/rootrc.in, configure: Updated TPluginManager. Plugin
	  handlers can now be specified wia macros
	  in a list of plugin directories. These new features are
	  implemented via
	  two new methods described below. These changes are fully backward
	  compatible
	  and plugin descriptions in rootrc files still work. However,
	  using the new
	  macros we only load in program memory the handlers for the needed
	  plugins,
	  instead of the almost 100 handlers of all plugins. For example
	  after starting
	  root.exe, only these handlers are loaded:
	  
	  root [0] gPluginMgr->Print()
	  =====================================================================
	  Base Regexp Class Plugin
	  =====================================================================
	  TSystem ^rfio: TRFIOSystem RFIO
	  TSystem ^castor: TRFIOSystem RFIO
	  TSystem ^dcache: TDCacheSystem DCache
	  TSystem ^dcap: TDCacheSystem DCache
	  TSystem ^alien: TAlienSystem RAliEn
	  TSystem ^root: TXNetSystem Netx
	  =====================================================================
	  6 plugin handlers registered
	  [*] plugin not available
	  =====================================================================
	  
	  For more see below:
	  
	  
	  void TPluginManager::LoadHandlersFromPluginDirs(const char *base)
	  
	  Load plugin handlers specified via macros in a list of plugin
	  directories. The $ROOTSYS/etc/plugins is the default top plugin
	  directory
	  specified in $ROOTSYS/etc/system.rootrc. The macros must have
	  names
	  like <BaseClass>/PX0_<PluginClass>.C, e.g.:
	  TFile/P10_TRFIOFile.C, TSQLServer/P20_TMySQLServer.C, etc.
	  to allow easy sorting and grouping. Macros not beginning with 'P'
	  and
	  ending with ".C" are ignored. If base is specified only plugin
	  macros for
	  that base class are loaded. The macros typically should look
	  like:
	  
	  void P10_TDCacheFile()
	  {
	  gPluginMgr->AddHandler("TFile", "^dcache", "TDCacheFile",
	  "DCache", "TDCacheFile(const char*,Option_t*,const
	  char*,Int_t)");
	  }
	  
	  In general these macros should not cause side effects, by
	  changing global
	  ROOT state via, e.g. gSystem calls, etc. However, in specific
	  cases
	  this might be useful, e.g. adding a library search path, adding a
	  specific
	  dependency, check on some OS or ROOT capability or downloading
	  of the plugin.
	  
	  
	  Int_t TPluginManager::WritePluginMacros(const char *dir, const
	  char *plugin)
	  
	  Write in the specified directory the plugin macros. If plugin is
	  specified
	  and if it is a base class all macros for that base will be
	  written. If it
	  is a plugin class name, only that one macro will be written. If
	  plugin
	  is 0 all macros are written. Returns -1 if dir does not exist, 0
	  otherwise.
	  This method allows the regeneration of the entire tree of plugin
	  macros
	  in case we ever decide to change something in the macros.

2007-07-17 14:29  ganis

	* [r19372] proof/src/TProofChain.cxx: In ~TProofChain, remove the
	  original chain from the all internal TProof lists
	  where it was registered to avoid later attempts to delete an
	  invalid object.

2007-07-17 14:24  rdm

	* [r19371] etc/plugins, etc/plugins/TAFS,
	  etc/plugins/TAFS/P010_TAFS.C, etc/plugins/TApplication,
	  etc/plugins/TApplication/P010_TApplicationRemote.C,
	  etc/plugins/TApplication/P020_TApplicationServer.C,
	  etc/plugins/TArchiveFile,
	  etc/plugins/TArchiveFile/P010_TZIPFile.C, etc/plugins/TChain,
	  etc/plugins/TChain/P010_TProofChain.C,
	  etc/plugins/TDataProgressDialog,
	  etc/plugins/TDataProgressDialog/P010_TDataProgressDialog.C,
	  etc/plugins/TFile, etc/plugins/TFile/P010_TWebFile.C,
	  etc/plugins/TFile/P020_TRFIOFile.C,
	  etc/plugins/TFile/P030_TCastorFile.C,
	  etc/plugins/TFile/P040_TDCacheFile.C,
	  etc/plugins/TFile/P050_TGFALFile.C,
	  etc/plugins/TFile/P060_TChirpFile.C,
	  etc/plugins/TFile/P070_TAlienFile.C,
	  etc/plugins/TFile/P080_TXMLFile.C,
	  etc/plugins/TFile/P090_TSQLFile.C,
	  etc/plugins/TFile/P100_TXNetFile.C, etc/plugins/TFileDrawMap,
	  etc/plugins/TFileDrawMap/P010_TFileDrawMap.C,
	  etc/plugins/TFileStager,
	  etc/plugins/TFileStager/P010_TXNetFileStager.C,
	  etc/plugins/TFitEditor, etc/plugins/TFitEditor/P010_TFitEditor.C,
	  etc/plugins/TGLHistPainter,
	  etc/plugins/TGLHistPainter/P010_TGLHistPainter.C,
	  etc/plugins/TGLManager,
	  etc/plugins/TGLManager/P010_TX11GLManager.C,
	  etc/plugins/TGPasswdDialog,
	  etc/plugins/TGPasswdDialog/P010_TGPasswdDialog.C,
	  etc/plugins/TGeoManagerEditor,
	  etc/plugins/TGeoManagerEditor/P010_TGeoManagerEditor.C,
	  etc/plugins/TGrid, etc/plugins/TGrid/P010_TAlien.C,
	  etc/plugins/TGuiBuilder,
	  etc/plugins/TGuiBuilder/P010_TRootGuiBuilder.C,
	  etc/plugins/TGuiFactory,
	  etc/plugins/TGuiFactory/P010_TRootGuiFactory.C,
	  etc/plugins/TGuiFactory/P020_TQtRootGuiFactory.C,
	  etc/plugins/TImage, etc/plugins/TImage/P010_TASImage.C,
	  etc/plugins/TImagePlugin,
	  etc/plugins/TImagePlugin/P010_TASPluginGS.C,
	  etc/plugins/TMinuitGraph, etc/plugins/TMinuitGraph/P010_TGraph.C,
	  etc/plugins/TPaletteEditor,
	  etc/plugins/TPaletteEditor/P010_TASPaletteEditor.C,
	  etc/plugins/TProof, etc/plugins/TProof/P010_TProofCondor.C,
	  etc/plugins/TProof/P020_TProofSuperMaster.C,
	  etc/plugins/TProof/P030_TProofPEAC.C,
	  etc/plugins/TProof/P040_TProof.C, etc/plugins/TProofMgr,
	  etc/plugins/TProofMgr/P010_TXProofMgr.C,
	  etc/plugins/TProofProgressDialog,
	  etc/plugins/TProofProgressDialog/P010_TProofProgressDialog.C,
	  etc/plugins/TProofServ,
	  etc/plugins/TProofServ/P010_TXProofServ.C,
	  etc/plugins/TSQLServer,
	  etc/plugins/TSQLServer/P010_TMySQLServer.C,
	  etc/plugins/TSQLServer/P020_TPgSQLServer.C,
	  etc/plugins/TSQLServer/P030_TSapDBServer.C,
	  etc/plugins/TSQLServer/P040_TOracleServer.C,
	  etc/plugins/TSQLServer/P050_TODBCServer.C,
	  etc/plugins/TSessionViewer,
	  etc/plugins/TSessionViewer/P010_TSessionViewer.C,
	  etc/plugins/TSlave, etc/plugins/TSlave/P010_TXSlave.C,
	  etc/plugins/TSystem, etc/plugins/TSystem/P010_TRFIOSystem.C,
	  etc/plugins/TSystem/P020_TDCacheSystem.C,
	  etc/plugins/TSystem/P030_TAlienSystem.C,
	  etc/plugins/TSystem/P040_TXNetSystem.C, etc/plugins/TView,
	  etc/plugins/TView/P010_TView3D.C, etc/plugins/TViewerX3D,
	  etc/plugins/TViewerX3D/P010_TViewerX3D.C,
	  etc/plugins/TViewerX3D/P020_TQtViewerX3D.C,
	  etc/plugins/TVirtualAuth,
	  etc/plugins/TVirtualAuth/P010_TRootAuth.C,
	  etc/plugins/TVirtualDragManager,
	  etc/plugins/TVirtualDragManager/P010_TGuiBldDragManager.C,
	  etc/plugins/TVirtualFFT,
	  etc/plugins/TVirtualFFT/P010_TFFTComplex.C,
	  etc/plugins/TVirtualFFT/P020_TFFTComplexReal.C,
	  etc/plugins/TVirtualFFT/P030_TFFTRealComplex.C,
	  etc/plugins/TVirtualFFT/P040_TFFTReal.C,
	  etc/plugins/TVirtualFitter,
	  etc/plugins/TVirtualFitter/P010_TFitter.C,
	  etc/plugins/TVirtualFitter/P020_TFumili.C,
	  etc/plugins/TVirtualFitter/P030_TFitterMinuit.C,
	  etc/plugins/TVirtualFitter/P040_TFitterFumili.C,
	  etc/plugins/TVirtualGLImp,
	  etc/plugins/TVirtualGLImp/P010_TX11GL.C,
	  etc/plugins/TVirtualGeoPainter,
	  etc/plugins/TVirtualGeoPainter/P010_TGeoPainter.C,
	  etc/plugins/TVirtualHistPainter,
	  etc/plugins/TVirtualHistPainter/P010_THistPainter.C,
	  etc/plugins/TVirtualMonitoringWriter,
	  etc/plugins/TVirtualMonitoringWriter/P010_TMonaLisaWriter.C,
	  etc/plugins/TVirtualMonitoringWriter/P020_TSQLMonitoringWriter.C,
	  etc/plugins/TVirtualPS,
	  etc/plugins/TVirtualPS/P010_TPostScript.C,
	  etc/plugins/TVirtualPS/P020_TSVG.C,
	  etc/plugins/TVirtualPS/P030_TPDF.C,
	  etc/plugins/TVirtualPS/P040_TImageDump.C,
	  etc/plugins/TVirtualPad, etc/plugins/TVirtualPad/P010_TPad.C,
	  etc/plugins/TVirtualPadEditor,
	  etc/plugins/TVirtualPadEditor/P010_TGedEditor.C,
	  etc/plugins/TVirtualProofPlayer,
	  etc/plugins/TVirtualProofPlayer/P010_TProofPlayer.C,
	  etc/plugins/TVirtualProofPlayer/P020_TProofPlayerRemote.C,
	  etc/plugins/TVirtualProofPlayer/P030_TProofPlayerLocal.C,
	  etc/plugins/TVirtualProofPlayer/P040_TProofPlayerSlave.C,
	  etc/plugins/TVirtualProofPlayer/P050_TProofPlayerSuperMaster.C,
	  etc/plugins/TVirtualStreamerInfo,
	  etc/plugins/TVirtualStreamerInfo/P010_TStreamerInfo.C,
	  etc/plugins/TVirtualTreePlayer,
	  etc/plugins/TVirtualTreePlayer/P010_TTreePlayer.C,
	  etc/plugins/TVirtualTreeViewer,
	  etc/plugins/TVirtualTreeViewer/P010_TTreeViewer.C,
	  etc/plugins/TVirtualViewer3D,
	  etc/plugins/TVirtualViewer3D/P010_TViewerX3D.C,
	  etc/plugins/TVirtualViewer3D/P020_TGLSAViewer.C,
	  etc/plugins/TVirtualViewer3D/P030_TGLViewer.C,
	  etc/plugins/TVirtualX, etc/plugins/TVirtualX/P010_TGX11.C,
	  etc/plugins/TVirtualX/P020_TGX11TTF.C,
	  etc/plugins/TVirtualX/P030_TGWin32.C,
	  etc/plugins/TVirtualX/P040_TGQt.C: new plugin handler setup
	  macros. These macros are executed, when needed, by
	  the updated plugin manager.

2007-07-17 14:20  axel

	* [r19370] reflex/Module.mk: Move generation of
	  genreflex(-rootcint) wrapper scripts to configure.
	  Hook the python scripts to (very near future) postbin target in
	  Makefile
	  Allow --iocomments in testDict2 (for future use)

2007-07-17 14:17  ganis

	* [r19369] proofd/src/XrdProofdProtocol.cxx: Add protection against
	  sending process ID 0 to kill().

2007-07-17 14:03  rdm

	* [r19368] base/src/TSystem.cxx: typo in Warning message.

2007-07-17 14:02  rdm

	* [r19367] winnt/src/TWinNTSystem.cxx: make sure PrependPathName(0
	  returns a pathname with Win32 \ convention,
	  currently we could get illegal mixed \ / path names.

2007-07-17 13:35  antcheva

	* [r19366] gui/src/TRootBrowser.cxx: Fix in DisplayDirectory
	  related to bug #28119 at
	  <http://savannah.cern.ch/bugs/?28119>

2007-07-17 13:10  axel

	* [r19365] html/src/THtml.cxx: Add "." to the search path for the
	  macro directive.
	  Ensure gProgName is !0 before strstr'ing it

2007-07-17 12:55  antcheva

	* [r19364] gui/src/TGLabel.cxx: From Valeriy Onuchin:
	  o TGLabel::SavePrimitive - saving multi line labels.

2007-07-17 12:55  antcheva

	* [r19363] gui/inc/TGButton.h, gui/src/TGButton.cxx: From Valeriy
	  Onuchin:
	  o TGTextButton, TGCheckButton, TGRadioButton
	  
	  - possibility to have multi line text buttons was implemented.
	  To add new line '\n' symbol must be added to the text.
	  
	  - new data members with corresponding setters/getters:
	  Int_t fMLeft; // margin left
	  Int_t fMRight; // margin right
	  Int_t fMTop; // margin top
	  Int_t fMBottom; // margin bottom
	  Int_t fWrapLength; // wrap length
	  
	  TGTextLayout *fTLayout; // text layout
	  
	  - new method SetMargins allows to set left, right, top, bottom
	  margins to text inside button.
	  
	  - bug fix. Font size of disabled button didn't
	  correspond to enabled button font size.
	  - modified GetDefaultSize() methods;

2007-07-17 12:05  brun

	* [r19362] base/src/TROOT.cxx: In TROOT::GetColor always call
	  TColor::InitializeColors

2007-07-17 10:35  axel

	* [r19361] cint7/Module.mk: Fix PATH/LD_LIB_PATH/DYLD_LIB_PATH for
	  cint7's iosenum.h generation.

2007-07-17 10:18  axel

	* [r19360] reflex/python/genreflex/gendict.py,
	  reflex/python/genreflex/genreflex.py: * Implement --dataonly
	  option as alias to --pool.
	  * Implement --interpreteronly option to generate a minimal
	  dictionary that can be used by an interpreter (but is useless for
	  I/O). It skips non-public data members.
	  * Optimize variable selection algo: use elif instead of second if

2007-07-17 10:12  axel

	* [r19359] reflex/python/genreflex/selclass.py: Implement (fix)
	  exclusion of variables, enums.

2007-07-17 09:17  rdm

	* [r19358] roofitcore/src/RooAbsArg.cxx: From Bertrand:
	  fix for compilation error on win32.

2007-07-17 07:29  ganis

	* [r19357] xrootd/src/xrootd-20070716-0300.src.tgz: Add protection
	  in XrdClientAdminConn preventing a fatal seg viol.
	  Additional portability fixes for 64 bit machines and MacOS.
	  Add missing file needed by the autotools build.

2007-07-16 21:04  wouter

	* [r19356] roofitcore/inc/RooAbsAnaConvPdf.h,
	  roofitcore/inc/RooAbsArg.h, roofitcore/inc/RooAbsData.h,
	  roofitcore/inc/RooExtendPdf.h, roofitcore/inc/RooGlobalFunc.h,
	  roofitcore/inc/RooProdPdf.h, roofitcore/inc/RooTreeData.h,
	  roofitcore/inc/RooWorkspace.h,
	  roofitcore/src/RooAbsAnaConvPdf.cxx,
	  roofitcore/src/RooAbsArg.cxx, roofitcore/src/RooAbsPdf.cxx,
	  roofitcore/src/RooAddPdf.cxx, roofitcore/src/RooExtendPdf.cxx,
	  roofitcore/src/RooGlobalFunc.cxx, roofitcore/src/RooProdPdf.cxx,
	  roofitcore/src/RooTreeData.cxx, roofitcore/src/RooWorkspace.cxx:
	  o RooAbsAnaConvPdf
	  
	  - Fixes for persistency
	  
	  
	  o RooAbsArg
	  
	  - Change implementation of boolean attribute list to set<string>
	  - Add string attribute list via map<string,string>
	  - Add support for attachement to tree branch that has different
	  name
	  then object itself through string attribute BranchName (needed
	  to make RooAbsData::changeObservableName work)
	  
	  
	  o RooAbsData
	  
	  - Add interface for changeObservableName()
	  
	  
	  o RooAbsPdf
	  
	  - Add support for Name() argument in generate()
	  
	  
	  o RooAddPdf
	  
	  - Fixes for persistency (solution to Savannah #28014)
	  
	  
	  o RooExtendPdf
	  
	  - Fixes for persistency
	  
	  
	  o RooGlobalFunc
	  
	  - Add named argument to support RooWorkspace::import
	  
	  
	  o RooProdPdf
	  
	  - Fix in default ctor
	  
	  
	  o RooTreeData
	  
	  - Implement changeObservableName()
	  
	  
	  o RooWorkspace
	  
	  - Add support for RenameConflictNodes, RenameAllNodes and
	  RenameVariable
	  named arguments in import(RooAbsPdf&). Implement underlying
	  support for
	  renaming (conflicting) branches and variables upon insertion
	  
	  - Add support for RenameDataset and RenameVariable named
	  arguments
	  in import(RooAbsData&)

2007-07-16 19:15  pcanal

	* [r19355] meta/src/TMethodCall.cxx: Also copy fOffset when copy
	  TMethodCall object

2007-07-16 16:31  pcanal

	* [r19354] tree/src/TTreeCache.cxx: Reject request from TTree
	  object other than the one that created the TTreeCache object

2007-07-16 16:31  pcanal

	* [r19353] tree/src/TTree.cxx: Document the fact that only one
	  TTree can be cached per TFile object

2007-07-16 15:43  pcanal

	* [r19352] tree/src/TTree.cxx: In ReadFile, allow spaces before the
	  comment character '#'

2007-07-16 11:23  ganis

	* [r19351] proofd/src/XrdProofdProtocol.cxx: Fix a problem
	  affecting the setting of the dataset dir when the directive
	  xpd.datasetdir was not specified.

2007-07-16 10:27  ganis

	* [r19350] proofd/src/XrdProofPhyConn.cxx, xrootd/Module.mk,
	  xrootd/src/xrootd-20060928-1600.src.tgz,
	  xrootd/src/xrootd-20070716-0300.src.tgz: Import of a new XROOTD
	  tarball based on the current XROOTD CVS head.
	  This version contains several bug-fixes and implements several
	  new
	  features, among which support for multi-streaming.

2007-07-16 10:14  ganis

	* [r19349] proofd/inc/XrdProofSched.h,
	  proofd/src/XrdProofSched.cxx, proofd/src/XrdProofdManager.cxx:
	  From Jan:
	  - Add possibility to change the parameters for load-base
	  scheduling

2007-07-16 10:11  rdm

	* [r19348] meta/src/TCint.cxx: ExecuteMacro() now calls the static
	  TApplication::ExecuteFile() to be
	  independent of gApplication.

2007-07-16 10:09  rdm

	* [r19347] base/inc/TApplication.h, base/src/TApplication.cxx: Add
	  new static method ExecuteFile() which allows macros to be
	  executed
	  before gApplication is set. The existing ProcessFile() now calls
	  this
	  method.

2007-07-16 09:58  rdm

	* [r19346] build/unix/distfilelist.sh: test/RootIDE was missing in
	  binary distribution.

2007-07-16 09:57  rdm

	* [r19345] test/ProofBench/Run_Simple_Test.C,
	  test/ProofBench/make_event_trees.C, test/ProofBench/make_tdset.C:
	  From Jan:
	  - Getting Run_Simple_Test.C to work again.
	  - Changing TProof::GetSlaveInfo() to
	  TProof::GetListOfSlaveInfos()
	  following the rename in ROOT 5.15.

2007-07-16 07:56  rdm

	* [r19344] base/src/TEnv.cxx: comment.

2007-07-16 07:54  rdm

	* [r19343] base/inc/TApplication.h, base/src/TApplication.cxx:
	  protect IsCmdThread() from fAppImp being 0.

2007-07-15 14:03  rdm

	* [r19342] config/Makefile.depend: remove unneeded depenedency of
	  libEG on libFTGL.

2007-07-13 21:50  wouter

	* [r19341] roofitcore/Module.mk, roofitcore/inc/LinkDef3.h,
	  roofitcore/inc/RooAbsPdf.h, roofitcore/inc/RooAbsReal.h,
	  roofitcore/inc/RooAbsRealLValue.h,
	  roofitcore/inc/RooMsgService.h, roofitcore/inc/RooProfileLL.h,
	  roofitcore/inc/RooProjectedPdf.h, roofitcore/src/RooAbsArg.cxx,
	  roofitcore/src/RooAbsPdf.cxx, roofitcore/src/RooAbsReal.cxx,
	  roofitcore/src/RooAddGenContext.cxx,
	  roofitcore/src/RooMsgService.cxx,
	  roofitcore/src/RooProfileLL.cxx,
	  roofitcore/src/RooProjectedPdf.cxx: o Module.mk, Linkdef3.h
	  
	  - Add new classes
	  
	  
	  o RooAbsPdf
	  
	  - Add new createProjection() method that returns projections of
	  p.d.f.s
	  that are p.d.f.s (implemented by class RooProjectedPdf)
	  
	  - Rename old createProjection() method(s) createPlotProjection as
	  they
	  provide slightly different functionality for support of plotOn()
	  
	  
	  o RooAbsRealLValue
	  
	  - Propagate a Shape and Value dirty flag if isConstant() is
	  called to
	  change the float/fix status of a parameter (needed for
	  RooProfileLL
	  whose value might change under such modifications)
	  
	  
	  o RooMsgService
	  
	  - Fix trivial bug in doLogX macros
	  - Add new default info streams for selected topics
	  
	  
	  o RooProjectedPdf
	  
	  - Add explicit handling of iterative projection by overloading
	  createProjection method
	  - Add explicit tracking of value/shape dependence on variables
	  as implied dependence through base p.d.f. erroneously introduced
	  a value dependence on the observables that are integrated out
	  - Rework informational messages through RooMsgService
	  
	  
	  o RooAbsArg
	  
	  - Fix bug in dependsOn() in value tracking mode
	  
	  
	  o RooAddGenContext
	  
	  - Add new informational messages through RooMsgService
	  
	  
	  o RooProfileLL
	  
	  - New class that represents profile likelihood given a likelihood
	  and a set observables

2007-07-13 21:32  wouter

	* [r19340] roofitcore/src/RooAddPdf.cxx: o RooAddPdf
	  
	  - Initialize snormList data member to zero in all ctors

2007-07-13 21:24  wouter

	* [r19339] roofitcore/inc/RooListProxy.h,
	  roofitcore/inc/RooSetProxy.h, roofitcore/src/RooListProxy.cxx,
	  roofitcore/src/RooSetProxy.cxx: o RooSetProxy
	  
	  - Changes to default ctor and dtor suggested by Philippe
	  - Add group remove() method
	  
	  o RooListProxy
	  
	  - Changes to default ctor and dtor suggested by Philippe

2007-07-13 19:16  pcanal

	* [r19338] meta/src/TGenericClassInfo.cxx: add missing deletes

2007-07-13 19:12  pcanal

	* [r19337] rint/inc/TTabCom.h, rint/src/TTabCom.cxx: Hide operator=
	  and implement destructor

2007-07-13 13:30  pcanal

	* [r19336] roofitcore/inc/RooWorkspace.h: Fix compilation problem
	  on gcc 4.1.2 (missing forward declaration)

2007-07-13 13:22  ganis

	* [r19335] proof/inc/TDSet.h, proof/inc/TProof.h,
	  proof/inc/TProofChain.h, proof/inc/TProofQueryResult.h,
	  proof/inc/TProofServ.h, proof/inc/TProofSuperMaster.h,
	  proof/inc/TVirtualProofPlayer.h, proof/src/TDSet.cxx,
	  proof/src/TProof.cxx, proof/src/TProofChain.cxx,
	  proof/src/TProofQueryResult.cxx, proof/src/TProofServ.cxx,
	  proof/src/TProofSuperMaster.cxx, proofplayer/inc/LinkDefDraw.h,
	  proofplayer/inc/TEventIter.h, proofplayer/inc/TProofDraw.h,
	  proofplayer/inc/TProofPlayer.h,
	  proofplayer/inc/TVirtualPacketizer.h,
	  proofplayer/src/TAdaptivePacketizer.cxx,
	  proofplayer/src/TEventIter.cxx, proofplayer/src/TPacketizer.cxx,
	  proofplayer/src/TProofDraw.cxx, proofplayer/src/TProofPlayer.cxx,
	  proofplayer/src/TVirtualPacketizer.cxx: From Anna:
	  - Add support for entry-lists to PROOF.
	  From me:
	  - Cleanup usage of TEntryList/TEventList arguments in the
	  TProof/TProofPlayer API.

2007-07-13 10:17  rdm

	* [r19334] config/thisroot.bat: From Axel:
	  by default, cd on windows doesn't change drives.

2007-07-13 08:56  rdm

	* [r19333] tree/src/TEntryList.cxx: From Anna:
	  in GetEntryList() strip off "file:", if any, for local files
	  before
	  the comparison.

2007-07-13 07:45  antcheva

	* [r19332] qt/qt.pro: From Valeri Fine:
	  New vesion of qt.pro attached that fixes the case at
	  <http://savannah.cern.ch/bugs/?27642>
	  and adds some extra protection for the Qt 4.x-based builds as
	  well

2007-07-12 20:54  wouter

	* [r19331] roofitcore/src/RooAbsReal.cxx: o RooAbsReal
	  
	  - Add null pointer sanity check to debug print statement in
	  plotOn()

2007-07-12 20:30  wouter

	* [r19330] roofit/inc/RooArgusBG.h, roofit/inc/RooBifurGauss.h,
	  roofit/inc/RooBreitWigner.h, roofit/inc/RooBukinPdf.h,
	  roofit/inc/RooCBShape.h, roofit/inc/RooDstD0BG.h,
	  roofit/inc/RooExponential.h, roofit/inc/RooGaussian.h,
	  roofit/inc/RooHistPdf.h, roofit/inc/RooLandau.h,
	  roofit/inc/RooNovosibirsk.h, roofit/inc/RooVoigtian.h,
	  roofit/src/RooChebychev.cxx, roofit/src/RooGaussian.cxx: o
	  RooArgusBG, RooBifurGauss, RooBreitWigner, RooBukinPdf,
	  RooCBShape, RooDstD0Bg,
	  RooExponential, RooGaussian, RooHistPdf, RooLandau,
	  RooNovosibirsk, RooVoigtian
	  
	  - Add default constructor and increment version number to 1

2007-07-12 20:30  wouter

	* [r19329] roofitcore/Module.mk, roofitcore/inc/LinkDef3.h,
	  roofitcore/inc/RooAbsArg.h, roofitcore/inc/RooAbsPdf.h,
	  roofitcore/inc/RooAbsProxy.h, roofitcore/inc/RooAddPdf.h,
	  roofitcore/inc/RooArgProxy.h, roofitcore/inc/RooGlobalFunc.h,
	  roofitcore/inc/RooListProxy.h, roofitcore/inc/RooMinuit.h,
	  roofitcore/inc/RooMsgService.h, roofitcore/inc/RooProdPdf.h,
	  roofitcore/inc/RooProjectedPdf.h, roofitcore/inc/RooRealProxy.h,
	  roofitcore/inc/RooSetProxy.h, roofitcore/inc/RooWorkspace.h,
	  roofitcore/src/RooAbsArg.cxx, roofitcore/src/RooAbsPdf.cxx,
	  roofitcore/src/RooAbsReal.cxx, roofitcore/src/RooAddPdf.cxx,
	  roofitcore/src/RooGenContext.cxx,
	  roofitcore/src/RooGlobalFunc.cxx,
	  roofitcore/src/RooLinkedList.cxx, roofitcore/src/RooMinuit.cxx,
	  roofitcore/src/RooMsgService.cxx,
	  roofitcore/src/RooProdGenContext.cxx,
	  roofitcore/src/RooProdPdf.cxx,
	  roofitcore/src/RooProjectedPdf.cxx,
	  roofitcore/src/RooTreeData.cxx, roofitcore/src/RooWorkspace.cxx:
	  o Module.mk, Linkdef3.h
	  
	  - Add new classes
	  
	  
	  o RooAbsArg
	  
	  - Mark proxy, client and server lists as persistable
	  - Introduce dependsOnValue() function
	  - Implement univeral printing method based on named proxies
	  - Move debug tracing of function evaluation to new RooMsgService
	  interface
	  
	  
	  o RooAbsPdf
	  
	  - Make persistable: add dummy ctor, set class version to 1
	  - Prevent persistence of normalization cache data members
	  
	  
	  o RooAbsProxy
	  
	  - Add virtual print() method to support universal p.d.f. printing
	  - Set class version number to 1
	  - Prevent persistence of normalization set pointer
	  
	  
	  o RooAbsReal
	  
	  - Move plotOn() print messages to new RooMsgService interface
	  
	  
	  o RooAddPdf
	  
	  - Add default constructor
	  - Prevent persistence of cache and cache management data members
	  - Fix bug in evaluate()
	  - Move debug tracing of function evaluation to RooMsgService
	  interface
	  
	  
	  o RooArgProxy
	  
	  - Implement print() method
	  - Increment version number to 1
	  
	  
	  o RooGenContext
	  
	  - Add extensive informational and debug message in ctor through
	  RooMsgService interface
	  
	  
	  o RooGlobalFunc
	  
	  - Add new helper functions for RooMsgService class
	  
	  
	  o RooListProxy
	  
	  - Implement print() method
	  
	  
	  o RooMinuit
	  
	  - Improve verbosity control
	  
	  
	  o RooMsgService
	  
	  - New singleton class that handles RooFit output in flexible way.
	  All messages are
	  classified with a level (debug,info,warning,error,fatal), a topic
	  (can be any string,
	  for now have defined "generation" and "plotting") and by object
	  properties (name,
	  class name, base class name, or presence of specific attribute
	  tag). Output is
	  filtered and processed by one or more reporting stream that can
	  each apply different
	  filtering criteria and or send output to an alternate ostream or
	  output file.
	  
	  
	  o RooProdPdf
	  
	  - Add new ctor with only named argument to allow definition of
	  product with exclusively conditional p.d.f.s
	  - Add default ctor
	  - Increment class version number to 1
	  - Prevent persistence of cache and cache management data members
	  
	  
	  o RooProdGenContext
	  
	  - Add extensive informational and debug message in ctor through
	  RooMsgService interface
	  - Fix bug in parsing stage that did not properly handle cases
	  like f(x|y)g(y|x)
	  
	  
	  o RooProjectedPdf
	  
	  - New class of p.d.f. that represents projection (integral) of
	  another p.d.f.
	  Integrals and normalizations of constructed on the fly from the
	  original and
	  multiple sequential projections steps are automatically
	  consolidated into a single
	  step (i.e. creating a projection of a RooProjectedPdf will result
	  in the same
	  integrator configuration as creating the same projection
	  immediately from
	  the original p.d.f.). Intelligent handling/forwarding of internal
	  generator
	  techniques is not implemented yet.
	  
	  
	  o RooRealProxy
	  
	  - Increment class version number to 1
	  
	  
	  o RooSetProxy
	  
	  - Implement print() method
	  
	  
	  o RooTreeData
	  
	  - Fix in createTree() routine to avoid ROOT error messages on
	  buffer writing
	  
	  
	  o RooWorkSpace
	  
	  - Initial version of new concept class that is essential starting
	  point for the RooStats project.
	  A workspace is a container class that owns all components of an
	  analysis,
	  i.e. p.d.f.s. functions variables and datasets. Objects imported
	  in the
	  workspace are automatically cloned and internally connected to
	  provide a
	  consistent working environment. Workspace also serve to persist
	  complete
	  analysis projects

2007-07-12 18:57  pcanal

	* [r19328] meta/src/TClass.cxx: remove stray/useless #include

2007-07-12 17:12  ganis

	* [r19327] proofd/src/XrdProofdProtocol.cxx: Fix problem affecting
	  the creation of the dataset dirs when the type
	  of the server is 'any'.

2007-07-12 10:26  rdm

	* [r19326] etc/proof/xpd.cf.sample: From Gerri:
	  give example of new xpd.multiuser directive.

2007-07-12 10:17  rdm

	* [r19325] unix/src/TUnixSystem.cxx: in StackTrace() also flush the
	  stdout/cout before generating the trace.

2007-07-12 09:59  rdm

	* [r19324] tree/src/TSelector.cxx: From Gerri:
	  implement a better way of autoloading in GetSelector(). Macro's
	  don't
	  have a dict in the gClassTable so don't fail in that case.

2007-07-12 09:27  rdm

	* [r19322] config/thisroot.bat, config/thisroot.csh,
	  config/thisroot.sh, configure: from Axel:
	  allow thisroot to also be run like this:
	  
	  . /path/to/root/bin/thisroot.sh
	  
	  instead of:
	  
	  cd /path/to/root
	  . bin/thisroot.sh
	  
	  Also new thisroot.bat for Windows DOS box.

2007-07-12 09:08  rdm

	* [r19321] config/rootrc.in: small syntax error in Recover example.

2007-07-12 08:12  brun

	* [r19320] base/inc/GuiTypes.h: From Ilka:
	  fix for the name of EGEventType
	  (was pointed as EGEventTypes)

2007-07-12 07:34  antcheva

	* [r19319] gui/src/TGColorDialog.cxx: From Bertrand:
	  - Added protection for the case when TGColorDialog is
	  used without TGColorPopup (i.e. from a popup menu)

2007-07-12 07:13  brun

	* [r19318] config/Makefile.depend: From Bertrand:
	  libProofPlayer and libProofDraw were failing at link time on
	  Windows,
	  due to unresolved externals (missing dependencies).

2007-07-12 07:01  brun

	* [r19317] config/rootrc.in, io/src/TFile.cxx: From Gerri:
	  Add an environment variable to rootrc.in (system.rootrc)
	  # Control the action to be taken when opening an existing ROOT
	  file which
	  # looks corrupted; by default an attempt to recover the file is
	  made; if
	  # this variable is set to 0 the file is just flagged as zombie.
	  #TFile.Recover 0

2007-07-12 06:31  brun

	* [r19316] pyroot/ROOT.py, pyroot/src/Adapters.cxx,
	  pyroot/src/Executors.cxx, pyroot/src/MethodHolder.cxx,
	  pyroot/src/RootModule.cxx, pyroot/src/RootWrapper.cxx: From Wim:
	  o) Add \" around char* function argument defaults in help()
	  o) Changed VoidArrayExecutor to return buffer instead of python
	  long
	  -> compat: index with [0] to get normal long value of address
	  o) Added ROOT.AsCObject custom "ctor" to make CObjects from ROOT
	  objects
	  o) Added ROOT.BindObject to create ROOT objects from address or
	  CObjects
	  o) a few more changes int -> Py_ssize_t
	  o) Simplications and enhanced cleanup in ROOT.py
	  o) fix (occassional (?)) loading problems for STL types

2007-07-11 22:13  ganis

	* [r19315] proofd/inc/XrdProofdAux.h,
	  proofd/inc/XrdProofdProtocol.h, proofd/src/XrdProofPhyConn.cxx,
	  proofd/src/XrdProofdAux.cxx, proofd/src/XrdProofdManager.cxx,
	  proofd/src/XrdProofdProtocol.cxx: Add support for multi-user mode
	  for non-privileged daemons. By default, daemons
	  started from an unprivileged account can serve only the owner of
	  the account.
	  If multi-user mode is on (xpd.multiuser 1) the daemon will serve
	  any user; the
	  sandboxes are create under the root working dir in the form
	  <work_dir>/<user>
	  and they will be always owned by the effective user of the
	  daemon.

2007-07-11 15:35  rdm

	* [r19314] config/Makefile.depend, proofplayer/Module.mk,
	  proofplayer/inc/LinkDef.h, proofplayer/inc/LinkDefDraw.h,
	  proofplayer/inc/TProofDraw.h, proofplayer/inc/TProofPlayer.h,
	  proofplayer/src/TProofDraw.cxx, proofplayer/src/TProofPlayer.cxx:
	  From Gerri:
	  put the PROOF Draw() related methods in the TProofDraw classes in
	  an
	  own library libProofDraw outside libProofPlayer. This reduces
	  considerably
	  the memory footprint in case Selectors don't use canvas related
	  methods.

2007-07-11 15:28  rdm

	* [r19313] dcache/src/TDCacheFile.cxx: From Tigran:
	  ReadBuffers() with vector read is implemented.
	  Today we have released new dcache version 1.7.0-39 with this
	  functionality.
	  I have tried with root version 5.14, 5.15 and 5.16. It's amazing!
	  On some
	  applications I got up ti 12 times performance increase!

2007-07-11 15:13  antcheva

	* [r19312] fitpanel/src/TFitEditor.cxx: Dropped "New" from Fit
	  Panel window title.

2007-07-11 14:23  ganis

	* [r19311] proofplayer/inc/TEventIter.h,
	  proofplayer/src/TEventIter.cxx: Remove
	  TEventIterTree::fAcquiredTrees and related methods: it is unused
	  and not
	  properly cleaned, causing (rare) segmentation violations.

2007-07-11 12:55  rdm

	* [r19310] config/Makefile.macosx, config/Makefile.macosx64: if g95
	  and gfortran are not found fall through to use g77.

2007-07-11 12:39  rdm

	* [r19309] unuran/src, unuran/src/.cvsignore: ignore unuran
	  directory.

2007-07-11 12:14  brun

	* [r19308] tree/src/TBranch.cxx: Change an internal dimension in
	  the TBranch constructor from 64 to 640.
	  This part of the code should be rewritten to be dynamic.

2007-07-10 14:24  ganis

	* [r19307] proof/src/TProof.cxx: Fix a synchronization problem
	  after a worker fatal error.

2007-07-10 14:14  rdm

	* [r19306] net/src/TApplicationRemote.cxx: add support for zsh.

2007-07-10 11:33  rdm

	* [r19305] configure: add extra test on mysql.h even if
	  mysql_config is found. FC installs the
	  mysql_config while not installing the headers.

2007-07-10 09:08  couet

	* [r19304] graf/src/TGaxis.cxx: - Remove a stupid construct in
	  PaintAxis. In the "fFunction" case there was
	  an if statement like:
	  
	  if (optionNoopt && !optionInt) {
	  dxtick=(binHigh-binLow)/Double_t(nticks-1);
	  } else {
	  dxtick=(binHigh-binLow)/Double_t(nticks-1);
	  }
	  
	  Now replaced by the simple line:
	  
	  dxtick=(binHigh-binLow)/Double_t(nticks-1);
	  
	  This code was like that since at least May 2000.

2007-07-10 08:40  rdm

	* [r19303] tree/inc/TSelector.h, tree/src/TSelector.cxx: From
	  Gerri:
	  handle autoloading of selectors, fixes:
	  
	  root [] TSelector::GetSelector("TProofDrawHist")
	  Error in <TSelector::GetSelector>: class TProofDrawHist does not
	  exist or does not derive from TSelector
	  (Long64_t)(-1)

2007-07-10 08:37  rdm

	* [r19302] proof/inc/TProof.h, proof/src/TProof.cxx: add
	  GetInputList() method.

2007-07-10 08:34  rdm

	* [r19301] proofplayer/src/TProofPlayer.cxx,
	  unix/src/TUnixSystem.cxx: white space.

2007-07-10 08:21  rdm

	* [r19300] utils/src/rlibmap.cxx: classes with pragma:
	  
	  #pragma link C++ class+protected
	  #pragma link C++ class+private
	  
	  were not included in the rootmap files (e.g. TSelector).

2007-07-10 08:02  ganis

	* [r19299] proofd/src/XrdProofdProtocol.cxx: Export the ROOT
	  version tag to proofserv as ROOTVERSIONTAG.
	  Needed by package builder scripts.

2007-07-10 07:55  rdm

	* [r19298] winnt/src/TWinNTSystem.cxx: return process memory
	  numbers in units specified in ProcInfo_t.

2007-07-10 07:40  couet

	* [r19297] postscript/src/TPostScript.cxx: - Apply the suggestion
	  made here: https://savannah.cern.ch/bugs/?27876
	  ie: the page numbers are now written between ().

2007-07-09 21:10  rdm

	* [r19296] config/rootrc.in: change name and location of TSQLWriter
	  to TSQLMonitoringWriter.

2007-07-09 20:59  rdm

	* [r19295] net/inc/LinkDef.h, net/inc/TSQLMonitoring.h,
	  net/src/TSQLMonitoring.cxx, proofplayer/inc/LinkDef.h,
	  proofplayer/inc/TSQLWriter.h, proofplayer/src/TSQLWriter.cxx:
	  rename TSQLWriter to TSQLMonitoringWriter and move it from
	  libProofPlayer
	  to libNet (like all other abstract SQL interfaces).

2007-07-09 20:38  rdm

	* [r19294] base/src/TSystem.cxx: avoid calling
	  TApplication::InitializeGraphics() when Load() is being
	  called recursively. This fixes issue 27868.

2007-07-09 18:53  brun

	* [r19293] net/inc/TSQLStatement.h, oracle/inc/TOracleStatement.h,
	  oracle/src/TOracleStatement.cxx: From Sergey Linev:
	  1. New virtual method TSQLStatement::SetMaxFieldSize(). It
	  implemented for now only for Oracle and
	  specifies maximum size in bytes, which should be used for field
	  in read/write operation.
	  
	  2. Improved implementation of TOracleStatement::GetBinary method.
	  Now not only BLOB, but also
	  CLOB, LONG, BFILE, CFILE Oracle datatypes are supported for
	  reading. Fow now BFILE and CFILE
	  not supported for writing.

2007-07-09 18:32  ganis

	* [r19292] proofplayer/inc/LinkDef.h: Add entry for the new
	  TSQLWriter class.

2007-07-09 17:00  brun

	* [r19291] proof/inc/TSlave.h: Fix a fatal compilation error.

2007-07-09 16:02  rdm

	* [r19290] base/inc/TFileInfo.h, base/src/TFileInfo.cxx: sanitize
	  the usage of //-> for the different data members.

2007-07-09 15:56  rdm

	* [r19289] proof/inc/TProofServ.h: add GetSessionTag() method
	  needed by TPerfStats.

2007-07-09 15:43  rdm

	* [r19288] proofplayer/inc/TAdaptivePacketizer.h,
	  proofplayer/inc/TVirtualPacketizer.h,
	  proofplayer/src/TAdaptivePacketizer.cxx,
	  proofplayer/src/TVirtualPacketizer.cxx: From Jan:
	  - Adding info on how to use alternative packetizers in
	  TVirtualPacketizer.
	  - Other comments improvements.

2007-07-09 15:26  rdm

	* [r19287] base/inc/TFileInfo.h, base/src/TFileInfo.cxx: From
	  Jan-Fiete:
	  add a constant for the staged bit to TFileInfo and a setter for
	  the size.

2007-07-09 15:24  rdm

	* [r19286] base/inc/TVirtualMonitoring.h, config/rootrc.in,
	  monalisa/inc/TMonaLisaWriter.h, monalisa/src/TMonaLisaWriter.cxx,
	  proofplayer/inc/TPerfStats.h, proofplayer/inc/TSQLWriter.h,
	  proofplayer/src/TPerfStats.cxx, proofplayer/src/TSQLWriter.cxx:
	  From Jan-Fiete:
	  this patch changes TPerfStats so that monitoring data can also be
	  written
	  in MonaLisa via the TVirtualMonitoringWriter interface. Using the
	  new
	  TSQLWriter class SQL can also be used as backend for
	  TVirtualMonitoringWriter.

2007-07-09 14:59  antcheva

	* [r19285] gui/src/TGButton.cxx: Coding conventions

2007-07-09 14:01  couet

	* [r19284] gl/src/TGLHistPainter.cxx: - Add documentation (text
	  only for the time being).

2007-07-09 13:56  antcheva

	* [r19283] tutorials/gui/buttongroupState.C,
	  tutorials/gui/guiWithCINT.C: New tutorial examples from Roel Aaij
	  and me:
	  
	  buttongroupState.C - A simple example that shows the enabled and
	  disabled state of a button group with radio and check buttons.
	  
	  guiWithCINT.C - A simple example of entering CINT commands and
	  having the CINT output in a ROOT GUI application window.

2007-07-09 13:17  wouter

	* [r19282] roofitcore/src/RooDataSet.cxx: o RooDataSet
	  
	  - Fix bug in emptyClone(). Weight variable was not propagated if
	  not
	  specified in subset (Savannah #26238)

2007-07-09 12:21  wouter

	* [r19281] roofit/src/RooHistPdf.cxx: o RooHistPdf
	  
	  - Delete iterator in ctor (fixes Savannah #27833)

2007-07-09 12:13  antcheva

	* [r19280] gui/src/TGButtonGroup.cxx: From Roel Aaij:
	  Fix in TGButtonGroup::ReleaseButtons related to the following
	  case:
	  if a button group contains check and radio exclusive buttons, any
	  click
	  on a check button made the selected radio button unselected.

2007-07-09 09:30  couet

	* [r19276] graf/src/TLatex.cxx: - New operator #scale[s]{my text}
	  to apply a scale factor "s" to the
	  text string "my text". (from jasondet@gmail.com).

2007-07-09 09:22  brun

	* [r19275] gpad/src/TPad.cxx: Add several missing protections in
	  case the TPad default constructor is called (fPrimitives is null)
	  and TPad functions are called.

2007-07-09 08:16  rdm

	* [r19274] tree/src/TChain.cxx,
	  treeplayer/inc/TTreeDrawArgsParser.h,
	  treeplayer/src/TTreeDrawArgsParser.cxx: From Anna Kreshuk:
	  Preparation for entry-list support in PROOF.

2007-07-08 22:21  ganis

	* [r19273] proof/src/TProofServ.cxx: When cleaning a package
	  because of a version change, promptly notify the
	  client with details about the new and old versions.

2007-07-08 22:06  ganis

	* [r19272] proof/inc/TProof.h, proof/src/TProof.cxx: Extend support
	  for processing data sets 'by name' also to drawing operations
	  (TProof::DrawSelect).

2007-07-06 15:38  antcheva

	* [r19271] gui/inc/TGButton.h, gui/src/TGButton.cxx: Added method
	  IsDisabledAndSelected() for getting info about the
	  disabled state of radio and check buttons.
	  Follow-up changes in SavePrimitive methods of TGCheckButton and
	  TGRadioButton classes related to the disabled state.

2007-07-06 10:39  pcanal

	* [r19269] dcache/inc/TDCacheFile.h, dcache/src/TDCacheFile.cxx:
	  Work around the missing 'vector read' in the DCache protocol by
	  requesting
	  all the needed data in a single sequential read request (aka
	  reading too
	  much data but reducing the number of messages). This improves
	  performances
	  by a factor 20 to 50 depending on network topology.

2007-07-06 09:44  rdm

	* [r19268] Makefile: build ftgl only when ./configure has found the
	  OpenGL libs.

2007-07-06 07:49  brun

	* [r19267] gui/inc/TGImageMap.h: From Ferderico:
	  Changes to compile with gcc option -weffc++

2007-07-05 16:13  rdm

	* [r19266] config/rootrc.in: add support for gsidcap protocol.

2007-07-05 15:59  ganis

	* [r19265] proofplayer/src/TProofPlayer.cxx: In
	  TProofPlayerRemote::SendSelector, add a call to
	  TSystem::ExpandPathName so that
	  the use of '~' or envs in the selector path is supported.

2007-07-05 15:53  rdm

	* [r19264] rfio/src/TRFIOFile.cxx: remove filetpye=raw option from
	  the url as the old libshift is doing that
	  not correctly.

2007-07-05 13:29  rdm

	* [r19263] gui/inc/TGFont.h, gui/src/TGFont.cxx: From Ilka:
	  Fixed warnings reported at URL:
	  <http://savannah.cern.ch/bugs/?27651>.

2007-07-05 10:30  brun

	* [r19260] hist/src/TF1.cxx: From Olivier:
	  - Fix this bug: https://savannah.cern.ch/bugs/index.php?27676
	  After zooming and unzooming on a plot containning several TF1
	  drawn with
	  the option SAME, the functions might be truncated. This problem
	  was
	  visible with the following macro:
	  
	  TF1* f[6];
	  double fg(double *x, double *p) {return sin((*p)*(*x));}
	  void test_zoom() {
	  for (int i=0;i<6;++i) {
	  f[i]=new TF1(Form("f%d",i),fg, 0,2, 1);
	  f[i]->SetParameter(0,i+1);
	  f[i]->SetLineColor(i+1);
	  f[i]->Draw(i?"same":"");
	  }
	  f[0]->GetXaxis()->SetRangeUser(.1,.3);
	  gPad->Update();
	  f[0]->GetXaxis()->UnZoom();
	  gPad->Modified();
	  }
	  
	  - Fix coding conventions and remove training blanks.

2007-07-04 15:10  antcheva

	* [r19256] gui/inc/TGButtonGroup.h, gui/src/TGButtonGroup.cxx: From
	  Roel Aaij:
	  Implemented interface to set the state of a button group as
	  enabled or disabled.
	  
	  In TGGroupButton new data member:
	  Bool_t fState; //to save the state of the group
	  (disabled/enabled)
	  
	  Added methods:
	  virtual void DoRedraw() - to handle drawing of a disabled group
	  correctly.
	  virtual void SetState(const Bool_t state = kTRUE) - to set the
	  state
	  of the group as disabled (state = kFALSE) or enabled (default).
	  Bool_t IsEnabled() const - to check the state.
	  
	  Modified methods:
	  TGButtonGroup::Init() - to initialise new data member fState.
	  TGButtonGroup::DrawBorder() - to handle the drawing of the entire
	  group frame according to its state
	  SavePrimitive methods - to save the disabled case

2007-07-04 12:29  brun

	* [r19255] geom/src/TGeoManager.cxx, geompainter/src/TGeoTrack.cxx:
	  From Andrei:
	  fixes TGeoManager::FindVolumeFast() method in case misalignment
	  is applied on a geometry retrieved from file.

2007-07-04 12:22  couet

	* [r19254] gpad/src/TPad.cxx: From Matevz:
	  - Implement PS output for geometries displayed in TPad using GL.

2007-07-04 09:05  brun

	* [r19253] gui/inc/TGButton.h, gui/inc/TGColorDialog.h,
	  gui/inc/TGFont.h, gui/inc/TGImageMap.h,
	  hist/inc/TGraphDelaunay.h, spectrum/inc/TSpectrum.h: From
	  Federico:
	  Changes required to compile with the gcc option -weffc++

2007-07-04 08:48  rdm

	* [r19252] meta/src/TCint.cxx: extra error checking in Load().

2007-07-03 16:42  rdm

	* [r19251] hist/src/TH2.cxx, hist/src/TH3.cxx: avoid a kInvalid
	  floating point exception in the Int_t(entries+0.5)
	  case where entries does not fit in an int.

2007-07-03 16:40  rdm

	* [r19250] unix/src/TUnixSystem.cxx: implement floating point
	  exception support for Mac OS X i386 and x86_64.

2007-07-03 16:26  ganis

	* [r19249] proof/inc/TVirtualProofPlayer.h, proof/src/TProof.cxx,
	  proofplayer/inc/TProofPlayer.h,
	  proofplayer/inc/TVirtualPacketizer.h,
	  proofplayer/src/TAdaptivePacketizer.cxx,
	  proofplayer/src/TPacketizer.cxx,
	  proofplayer/src/TPacketizerProgressive.cxx,
	  proofplayer/src/TProofPlayer.cxx,
	  proofplayer/src/TVirtualPacketizer.cxx: Improve determination of
	  the query initialization time.

2007-07-03 16:01  ganis

	* [r19248] proof/inc/TProof.h, proof/inc/TSlave.h,
	  proof/src/TProof.cxx, proofd/src/XrdProofdProtocol.cxx,
	  proofx/inc/TXSlave.h, proofx/src/TXProofServ.cxx,
	  proofx/src/TXSlave.cxx, proofx/src/TXSocket.cxx: Add
	  functionality to broadcast group priorities.

2007-07-03 15:12  rdm

	* [r19247] base/inc/MessageTypes.h: From Gerri:
	  Add message type to signal end of initialization on workers.

2007-07-03 14:50  brun

	* [r19246] treeplayer/src/TSelectorDraw.cxx: From Bastien:
	  Fix a portability problem on Solaris.

2007-07-03 13:52  ganis

	* [r19245] proofd/src/XrdProofGroup.cxx: Fix problem with assigning
	  users to the default group.

2007-07-03 13:02  rdm

	* [r19244] pgsql/src/TPgSQLServer.cxx: fix typo in PGSQL_STMT data
	  member names (past local tests since local
	  PgSQL does not support compiled statements).

2007-07-03 12:43  rdm

	* [r19243] base/src/TSystem.cxx: remove Axel's hack to check if a
	  lib is statically linked in the main
	  application. It was interfering in a complicated way with the
	  autoload
	  mechanism and preventing some libs from being autoloaded that
	  needed to
	  be loaded (this fixes issue 27631). Checking for the static libs
	  can
	  be simply done via fLinkedLibs coming in a next patch.

2007-07-03 11:09  rdm

	* [r19241] rfio/src/TRFIOFile.cxx: add back support for older RFIO
	  client libraries.

2007-07-03 10:05  antcheva

	* [r19240] gui/src/TGButton.cxx: Minor changes + cvs log related to
	  previous patch.
	  
	  From Roel Aaij:
	  modified methods
	  
	  TGTextButton::Init()
	  to initialise new datamembers
	  
	  TGCheckButton::Init()
	  to initialise the pictures needed to draw the
	  button correctly.
	  
	  TGCheckButton::~TGCheckbutton()
	  to delete all allocated pictures.
	  
	  TGCheckButton::SetState()
	  method no longer sets fPrevState, method
	  PSetState handles this now.
	  
	  TGCheckButton::EmitSignals()
	  to emit Toggled() according to state of the
	  new data member fStateOn.
	  
	  TGCheckButton::PSetState()
	  to implement saving of on/off state across
	  disable.
	  
	  TGCheckbutton::HandleButton()
	  to use pictures to draw the button instead of
	  lines drawn using gVirtualX.
	  
	  TGRadioButton::Init()
	  to initialise all needed pictures
	  
	  TGRadioButton~TGRadioButton()
	  to delete all pictures
	  
	  TGRadioButton::SetState()
	  method no longer sets fPrevState, method
	  PSetState handles this now.
	  
	  TGRadioButton::PSetState()
	  to implement saving of on/off state across
	  disable.
	  
	  TGRadioButton::EmitSignals()
	  to emit Toggled() according to state of the
	  new data member fStateOn.
	  
	  TGRadioButton::HandleButton()
	  to make the order of if statements resemble
	  that in TGCheckButton::HandleButton() and
	  to make sure that the right signals are emitted
	  at the right times.
	  
	  TGRadioButton::DoRedraw()
	  to draw the correct pictures when a button is
	  disabled.
	  
	  Implemented method
	  
	  TGCheckButton::SetDisabledAndSelected()
	  to set a button disabled and (on or off).
	  
	  TGRadioButton::SetDisabledAndSelected()
	  to set a button disabled and (on or off).

2007-07-03 10:03  antcheva

	* [r19239] gui/inc/TGButton.h: Minor changes + cvs log related to
	  previous patch.
	  
	  From Roel Aaij:
	  In class TGTextButton:
	  Added data members:
	  Bool_t fStateOn
	  Bool_t fPrevStateOn
	  to save the on or off state of a button across disable/enable.
	  
	  In class TGCheckButton
	  Added datamembers
	  const TGPicture *fOn;
	  const TGPicture *fOff;
	  const TGPicture *fDisOn;
	  const TGPicture *fDisOff;
	  to contain pictures for TGCheckbuttons.
	  
	  Added method
	  virtual void SetDisabledAndSelected(Bool_t);
	  to set a button to either on or off and disabled.
	  
	  In class TGRadioButton
	  Added datamembers:
	  const TGPicture *fDisOn;
	  const TGPicture *fDisOff;
	  to contain pictures for the disabled buttons.
	  
	  Added methods
	  virtual void SetDisabledAndSelected(Bool_t);
	  to set a button to disabled and (on or off).
	  
	  modified
	  virtual Bool_t IsOn()
	  virtual Bool_t IsDown()
	  to use the new data member fStateOn. They will return
	  true also if the button is disabled, but was enabled.

2007-07-03 10:00  brun

	* [r19238] treeplayer/inc/TSelectorDraw.h,
	  treeplayer/src/TSelectorDraw.cxx: From Bastien Dallapiazza:
	  -Expand the dimensionality capability of TSelectorDraw to
	  arbitrary
	  dimensionality.
	  
	  However, since there is no way yet to draw data with a
	  dimensionality greater
	  than 4, I kept the capability not available by keeping the
	  dimensionality test
	  in TSelectorDraw::Compile (l.908) aborting the drawing if
	  dimension > 4.

2007-07-03 08:10  antcheva

	* [r19237] fitpanel/src/TFitEditor.cxx: Use the method
	  SetDisabledAndSelected for radio buttons

2007-07-03 07:20  antcheva

	* [r19236] icons/rbutton_dis_off.xpm, icons/rbutton_dis_on.xpm:
	  Submitted changes by mistake with Qt-layer patch in TGButton.h
	  and TGButton.cxx and several icon files are related to the
	  following
	  improvements made by Roel in TGButton classes.
	  My apologize for the caused problem.
	  
	  From Roel Aaij:
	  TGButton.h
	  In class TGTextButton:
	  Added data members:
	  Bool_t fStateOn
	  Bool_t fPrevStateOn
	  to save the on or off state of a button across
	  disable/enable.
	  
	  In class TGCheckButton
	  Added datamembers
	  const TGPicture *fOn;
	  const TGPicture *fOff;
	  const TGPicture *fDisOn;
	  const TGPicture *fDisOff;
	  to contain pictures for TGCheckbuttons.
	  
	  Added method
	  virtual void SetDisabledAndSelected(Bool_t);
	  to set a button to either on or off and disabled.
	  
	  In class TGRadioButton
	  Added datamembers:
	  const TGPicture *fDisOn;
	  const TGPicture *fDisOff;
	  to contain pictures for the disabled buttons.
	  
	  Added methods
	  virtual void SetDisabledAndSelected(Bool_t);
	  to set a button to disabled and (on or off).
	  
	  modified
	  virtual Bool_t IsOn()
	  virtual Bool_t IsDown()
	  to use the new data member fStateOn. They will
	  return true also if the button is disabled, but
	  was enabled.
	  
	  TGButton.cxx
	  
	  modified methods
	  
	  TGTextButton::Init()
	  to initialise new datamembers
	  
	  TGCheckButton::Init()
	  to initialise the pictures needed to draw the
	  button correctly.
	  
	  TGCheckButton::~TGCheckbutton()
	  to free all allocated pictures.
	  
	  TGCheckButton::SetState()
	  method no longer sets fPrevState, method
	  PSetState handles this now.
	  
	  TGCheckButton::EmitSignals()
	  to emit Toggled() according to state of the
	  new data member fStateOn.
	  
	  TGCheckButton::PSetState()
	  to implement saving of on/off state across
	  disable.
	  
	  TGCheckbutton::HandleButton()
	  to use pictures to draw the button instead of
	  lines drawn using gVirtualX.
	  
	  TGRadioButton::Init()
	  to initialise all needed pictures
	  
	  TGRadioButton~TGRadioButton()
	  to delete all pictures
	  
	  TGRadioButton::SetState()
	  method no longer sets fPrevState, method
	  PSetState handles this now.
	  
	  TGRadioButton::PSetState()
	  to implement saving of on/off state across
	  disable.
	  
	  TGRadioButton::EmitSignals()
	  to emit Toggled() according to state of the
	  new data member fStateOn.
	  
	  TGRadioButton::HandleButton()
	  to make the order of if statements resemble
	  that in TGCheckButton::HandleButton() and
	  to make sure that the right signals are emitted
	  at the right times.
	  
	  TGRadioButton::DoRedraw()
	  to draw the correct pictures when a button is
	  disabled.
	  
	  Implemented methods:
	  TGCheckButton::SetDisabledAndSelected()
	  to set a button disabled and (on or off).
	  TGRadioButton::SetDisabledAndSelected()
	  to set a button disabled and (on or off).

2007-07-03 07:01  antcheva

	* [r19235] gui/src/TGFSContainer.cxx, gui/src/TGListView.cxx:
	  Remove previous changes uploaded by mistake with Qt changes

2007-07-03 06:56  antcheva

	* [r19234] gui/inc/TGButton.h, gui/src/TGButton.cxx,
	  gui/src/TGFSContainer.cxx, gui/src/TGListView.cxx,
	  icons/checked_dis_t.xpm, icons/checked_t.xpm,
	  icons/rbutton_off.xpm, icons/rbutton_on.xpm,
	  icons/unchecked_dis_t.xpm, icons/unchecked_t.xpm,
	  qt/src/TGQt.cxx: From Valeri Fine:
	  (unsigned int)(-1) cast to 64-bit pointer is wrong on 64-bit
	  platform because (unsigned int) is 32-bit value. It may or
	  may not cause the assert.

2007-07-02 20:59  ganis

	* [r19233] proofd/inc/XrdProofdManager.h: - Move the ActiveSessions
	  counter from XrdProofdProtocol

2007-07-02 18:03  rdm

	* [r19231] gfal/src/TGFALFile.cxx, rfio/src/TRFIOFile.cxx: since
	  file urls can have the form: rfio:///castor?path=FILEPATH we need
	  to use TUrl::GetFileAndOptions() to get the file name to be
	  passed to
	  the rfio and gfal api's.

2007-07-02 17:40  rdm

	* [r19230] io/src/TFile.cxx: fix typo in TFile::Cp when appending
	  filetype=raw to a url.

2007-07-02 17:39  rdm

	* [r19229] castor/inc/TCastorFile.h, castor/src/TCastorFile.cxx,
	  rfio/inc/TRFIOFile.h, rfio/src/TRFIOFile.cxx: update description
	  of supported URL syntax by the RFIO library.

2007-07-02 17:22  rdm

	* [r19228] ftgl/src/FTVectoriser.cxx: port to Mac OS X 10.5
	  preview.

2007-07-02 17:13  pcanal

	* [r19227] treeplayer/src/TTreeProxyGenerator.cxx: Delete the
	  TSelectorDraw helper object in Terminate

2007-07-02 17:04  ganis

	* [r19226] proofd/inc/XrdProofdProtocol.h,
	  proofd/src/XrdProofdProtocol.cxx: - Add protection on fPClient in
	  KillProofServ
	  - Better registration of users of the default group
	  - Move the ActiveSessions counter to XrdProofdManager
	  - Remove static variables now available via XrdProofSched
	  - Fix an error return code from MapClient.

2007-07-02 16:22  ganis

	* [r19225] proofplayer/src/TEventIter.cxx: Delete current tree
	  before loading the new one.

2007-07-02 15:43  brun

	* [r19224] g4root/src/TG4RootNavigator.cxx: From Andrei:
	  This is just resetting some flags that made that safety was not
	  computed in some particular cases.

2007-07-02 15:37  axel

	* [r19223] reflex/python/genreflex/gendict.py: Add handling of ROOT
	  ioflag "//||" (no splitting)

2007-07-02 14:47  couet

	* [r19222] graf/inc/TPave.h, graf/src/TPave.cxx: - From Axel:
	  Possibility to change the color of the shadow.

2007-07-02 14:31  axel

	* [r19221] html/inc/LinkDef.h, html/inc/TDocInfo.h,
	  html/inc/TDocOutput.h, html/inc/THtml.h, html/src/TDocOutput.cxx:
	  Simplify the tracking of library dependencies - move them into
	  new TLibraryDocInfo
	  Allow invocation of all graphjviz tools, e.g. fdp.
	  library dependencies: use fdp, cleaner layout by skipping A->C if
	  A->B->C exists, too.

2007-07-02 14:28  brun

	* [r19220] tree/src/TChain.cxx, tree/src/TTree.cxx: From Anna:
	  In TTree::SetEventList() and TChain::SetEventList() functions:
	  - The name of the automatically created TEntryList is now not the
	  same as the name of the TEventList argument
	  - Set the ReapplyCut flag of the automatically created TEntryList
	  to the same value as that of the TEventList argument
	  In TTree::SetEventList():
	  - Properly delete the old automatically created TEntryList when a
	  new one is set

2007-07-02 12:59  brun

	* [r19219] base/inc/TControlBarImp.h, gpad/inc/TControlBar.h,
	  gpad/src/TControlBar.cxx, gui/inc/TRootControlBar.h,
	  gui/src/TRootControlBar.cxx, tutorials/demos.C: From Ilka:
	  Added a new method SetButtonWidth(UInt_t buttonWidth) for setting
	  the button width in pixels.
	  
	  Invoke this method before calling the TControlbar::Show() if you
	  want to specify the button width for all control bar buttons:
	  bar->SetButtonWidth(90);
	  bar->Show();

2007-07-02 11:58  brun

	* [r19218] hist/src/TH1.cxx: From Olivier:
	  SetTitle now allows to have ";" (semicolon) in the histogram
	  title and in
	  the axis title. "#;" is a control character allowing to define
	  the title
	  and the axis title at the same time. To put a ";" in the titles,
	  it is now
	  enough to write ";" or "#semicolon".

2007-07-02 11:32  couet

	* [r19217] tutorials/graphs/timeonaxis.C: - Define a the time
	  offset for the last plot to avoid to get a result
	  depending on the date the macro is executed.

2007-07-02 09:34  axel

	* [r19216] html/src/TDocOutput.cxx, html/src/THtml.cxx: Allow
	  "Search" field to use referer to determine the search site.
	  Fixes problems with the search engine finding pages that don't
	  match the ROOT version currently looked at.

2007-07-02 09:14  axel

	* [r19215] cintex/python/PyCintex.py: As suggested by Ivan Belyaev:
	  loadDictionary: prepend "lib" to library name on all platforms
	  but windows, if libname does not start with "lib"

2007-07-02 08:59  axel

	* [r19214] reflex/python/genreflex/gendict.py,
	  reflex/python/genreflex/genreflex.py: New option "--iocomments":
	  add member comment as property only for comments that have a
	  meaning for ROOT I/O, i.e. //[..., //!, //->
	  This allows ROOT to do its usual I/O optimizations

2007-07-02 07:52  ganis

	* [r19213] proofplayer/src/TEventIter.cxx: Delete current element
	  before asking for a new one.

2007-07-02 07:10  axel

	* [r19212] reflex/inc/Reflex/Kernel.h: Move longlong typedef into
	  ROOT::Reflex namespace
	  Don't explicitly state the list of compilers supporting long long

2007-07-01 16:28  rdm

	* [r19211] config/Makefile.depend: add missing dependency of
	  libQtRoot on libGui (was already correct for
	  win32 case).

2007-07-01 16:02  rdm

	* [r19210] base/src/TApplication.cxx, base/src/TRemoteObject.cxx:
	  fix compiler warnings reported by George Irwin.

 V5.17.txt:1
 V5.17.txt:2
 V5.17.txt:3
 V5.17.txt:4
 V5.17.txt:5
 V5.17.txt:6
 V5.17.txt:7
 V5.17.txt:8
 V5.17.txt:9
 V5.17.txt:10
 V5.17.txt:11
 V5.17.txt:12
 V5.17.txt:13
 V5.17.txt:14
 V5.17.txt:15
 V5.17.txt:16
 V5.17.txt:17
 V5.17.txt:18
 V5.17.txt:19
 V5.17.txt:20
 V5.17.txt:21
 V5.17.txt:22
 V5.17.txt:23
 V5.17.txt:24
 V5.17.txt:25
 V5.17.txt:26
 V5.17.txt:27
 V5.17.txt:28
 V5.17.txt:29
 V5.17.txt:30
 V5.17.txt:31
 V5.17.txt:32
 V5.17.txt:33
 V5.17.txt:34
 V5.17.txt:35
 V5.17.txt:36
 V5.17.txt:37
 V5.17.txt:38
 V5.17.txt:39
 V5.17.txt:40
 V5.17.txt:41
 V5.17.txt:42
 V5.17.txt:43
 V5.17.txt:44
 V5.17.txt:45
 V5.17.txt:46
 V5.17.txt:47
 V5.17.txt:48
 V5.17.txt:49
 V5.17.txt:50
 V5.17.txt:51
 V5.17.txt:52
 V5.17.txt:53
 V5.17.txt:54
 V5.17.txt:55
 V5.17.txt:56
 V5.17.txt:57
 V5.17.txt:58
 V5.17.txt:59
 V5.17.txt:60
 V5.17.txt:61
 V5.17.txt:62
 V5.17.txt:63
 V5.17.txt:64
 V5.17.txt:65
 V5.17.txt:66
 V5.17.txt:67
 V5.17.txt:68
 V5.17.txt:69
 V5.17.txt:70
 V5.17.txt:71
 V5.17.txt:72
 V5.17.txt:73
 V5.17.txt:74
 V5.17.txt:75
 V5.17.txt:76
 V5.17.txt:77
 V5.17.txt:78
 V5.17.txt:79
 V5.17.txt:80
 V5.17.txt:81
 V5.17.txt:82
 V5.17.txt:83
 V5.17.txt:84
 V5.17.txt:85
 V5.17.txt:86
 V5.17.txt:87
 V5.17.txt:88
 V5.17.txt:89
 V5.17.txt:90
 V5.17.txt:91
 V5.17.txt:92
 V5.17.txt:93
 V5.17.txt:94
 V5.17.txt:95
 V5.17.txt:96
 V5.17.txt:97
 V5.17.txt:98
 V5.17.txt:99
 V5.17.txt:100
 V5.17.txt:101
 V5.17.txt:102
 V5.17.txt:103
 V5.17.txt:104
 V5.17.txt:105
 V5.17.txt:106
 V5.17.txt:107
 V5.17.txt:108
 V5.17.txt:109
 V5.17.txt:110
 V5.17.txt:111
 V5.17.txt:112
 V5.17.txt:113
 V5.17.txt:114
 V5.17.txt:115
 V5.17.txt:116
 V5.17.txt:117
 V5.17.txt:118
 V5.17.txt:119
 V5.17.txt:120
 V5.17.txt:121
 V5.17.txt:122
 V5.17.txt:123
 V5.17.txt:124
 V5.17.txt:125
 V5.17.txt:126
 V5.17.txt:127
 V5.17.txt:128
 V5.17.txt:129
 V5.17.txt:130
 V5.17.txt:131
 V5.17.txt:132
 V5.17.txt:133
 V5.17.txt:134
 V5.17.txt:135
 V5.17.txt:136
 V5.17.txt:137
 V5.17.txt:138
 V5.17.txt:139
 V5.17.txt:140
 V5.17.txt:141
 V5.17.txt:142
 V5.17.txt:143
 V5.17.txt:144
 V5.17.txt:145
 V5.17.txt:146
 V5.17.txt:147
 V5.17.txt:148
 V5.17.txt:149
 V5.17.txt:150
 V5.17.txt:151
 V5.17.txt:152
 V5.17.txt:153
 V5.17.txt:154
 V5.17.txt:155
 V5.17.txt:156
 V5.17.txt:157
 V5.17.txt:158
 V5.17.txt:159
 V5.17.txt:160
 V5.17.txt:161
 V5.17.txt:162
 V5.17.txt:163
 V5.17.txt:164
 V5.17.txt:165
 V5.17.txt:166
 V5.17.txt:167
 V5.17.txt:168
 V5.17.txt:169
 V5.17.txt:170
 V5.17.txt:171
 V5.17.txt:172
 V5.17.txt:173
 V5.17.txt:174
 V5.17.txt:175
 V5.17.txt:176
 V5.17.txt:177
 V5.17.txt:178
 V5.17.txt:179
 V5.17.txt:180
 V5.17.txt:181
 V5.17.txt:182
 V5.17.txt:183
 V5.17.txt:184
 V5.17.txt:185
 V5.17.txt:186
 V5.17.txt:187
 V5.17.txt:188
 V5.17.txt:189
 V5.17.txt:190
 V5.17.txt:191
 V5.17.txt:192
 V5.17.txt:193
 V5.17.txt:194
 V5.17.txt:195
 V5.17.txt:196
 V5.17.txt:197
 V5.17.txt:198
 V5.17.txt:199
 V5.17.txt:200
 V5.17.txt:201
 V5.17.txt:202
 V5.17.txt:203
 V5.17.txt:204
 V5.17.txt:205
 V5.17.txt:206
 V5.17.txt:207
 V5.17.txt:208
 V5.17.txt:209
 V5.17.txt:210
 V5.17.txt:211
 V5.17.txt:212
 V5.17.txt:213
 V5.17.txt:214
 V5.17.txt:215
 V5.17.txt:216
 V5.17.txt:217
 V5.17.txt:218
 V5.17.txt:219
 V5.17.txt:220
 V5.17.txt:221
 V5.17.txt:222
 V5.17.txt:223
 V5.17.txt:224
 V5.17.txt:225
 V5.17.txt:226
 V5.17.txt:227
 V5.17.txt:228
 V5.17.txt:229
 V5.17.txt:230
 V5.17.txt:231
 V5.17.txt:232
 V5.17.txt:233
 V5.17.txt:234
 V5.17.txt:235
 V5.17.txt:236
 V5.17.txt:237
 V5.17.txt:238
 V5.17.txt:239
 V5.17.txt:240
 V5.17.txt:241
 V5.17.txt:242
 V5.17.txt:243
 V5.17.txt:244
 V5.17.txt:245
 V5.17.txt:246
 V5.17.txt:247
 V5.17.txt:248
 V5.17.txt:249
 V5.17.txt:250
 V5.17.txt:251
 V5.17.txt:252
 V5.17.txt:253
 V5.17.txt:254
 V5.17.txt:255
 V5.17.txt:256
 V5.17.txt:257
 V5.17.txt:258
 V5.17.txt:259
 V5.17.txt:260
 V5.17.txt:261
 V5.17.txt:262
 V5.17.txt:263
 V5.17.txt:264
 V5.17.txt:265
 V5.17.txt:266
 V5.17.txt:267
 V5.17.txt:268
 V5.17.txt:269
 V5.17.txt:270
 V5.17.txt:271
 V5.17.txt:272
 V5.17.txt:273
 V5.17.txt:274
 V5.17.txt:275
 V5.17.txt:276
 V5.17.txt:277
 V5.17.txt:278
 V5.17.txt:279
 V5.17.txt:280
 V5.17.txt:281
 V5.17.txt:282
 V5.17.txt:283
 V5.17.txt:284
 V5.17.txt:285
 V5.17.txt:286
 V5.17.txt:287
 V5.17.txt:288
 V5.17.txt:289
 V5.17.txt:290
 V5.17.txt:291
 V5.17.txt:292
 V5.17.txt:293
 V5.17.txt:294
 V5.17.txt:295
 V5.17.txt:296
 V5.17.txt:297
 V5.17.txt:298
 V5.17.txt:299
 V5.17.txt:300
 V5.17.txt:301
 V5.17.txt:302
 V5.17.txt:303
 V5.17.txt:304
 V5.17.txt:305
 V5.17.txt:306
 V5.17.txt:307
 V5.17.txt:308
 V5.17.txt:309
 V5.17.txt:310
 V5.17.txt:311
 V5.17.txt:312
 V5.17.txt:313
 V5.17.txt:314
 V5.17.txt:315
 V5.17.txt:316
 V5.17.txt:317
 V5.17.txt:318
 V5.17.txt:319
 V5.17.txt:320
 V5.17.txt:321
 V5.17.txt:322
 V5.17.txt:323
 V5.17.txt:324
 V5.17.txt:325
 V5.17.txt:326
 V5.17.txt:327
 V5.17.txt:328
 V5.17.txt:329
 V5.17.txt:330
 V5.17.txt:331
 V5.17.txt:332
 V5.17.txt:333
 V5.17.txt:334
 V5.17.txt:335
 V5.17.txt:336
 V5.17.txt:337
 V5.17.txt:338
 V5.17.txt:339
 V5.17.txt:340
 V5.17.txt:341
 V5.17.txt:342
 V5.17.txt:343
 V5.17.txt:344
 V5.17.txt:345
 V5.17.txt:346
 V5.17.txt:347
 V5.17.txt:348
 V5.17.txt:349
 V5.17.txt:350
 V5.17.txt:351
 V5.17.txt:352
 V5.17.txt:353
 V5.17.txt:354
 V5.17.txt:355
 V5.17.txt:356
 V5.17.txt:357
 V5.17.txt:358
 V5.17.txt:359
 V5.17.txt:360
 V5.17.txt:361
 V5.17.txt:362
 V5.17.txt:363
 V5.17.txt:364
 V5.17.txt:365
 V5.17.txt:366
 V5.17.txt:367
 V5.17.txt:368
 V5.17.txt:369
 V5.17.txt:370
 V5.17.txt:371
 V5.17.txt:372
 V5.17.txt:373
 V5.17.txt:374
 V5.17.txt:375
 V5.17.txt:376
 V5.17.txt:377
 V5.17.txt:378
 V5.17.txt:379
 V5.17.txt:380
 V5.17.txt:381
 V5.17.txt:382
 V5.17.txt:383
 V5.17.txt:384
 V5.17.txt:385
 V5.17.txt:386
 V5.17.txt:387
 V5.17.txt:388
 V5.17.txt:389
 V5.17.txt:390
 V5.17.txt:391
 V5.17.txt:392
 V5.17.txt:393
 V5.17.txt:394
 V5.17.txt:395
 V5.17.txt:396
 V5.17.txt:397
 V5.17.txt:398
 V5.17.txt:399
 V5.17.txt:400
 V5.17.txt:401
 V5.17.txt:402
 V5.17.txt:403
 V5.17.txt:404
 V5.17.txt:405
 V5.17.txt:406
 V5.17.txt:407
 V5.17.txt:408
 V5.17.txt:409
 V5.17.txt:410
 V5.17.txt:411
 V5.17.txt:412
 V5.17.txt:413
 V5.17.txt:414
 V5.17.txt:415
 V5.17.txt:416
 V5.17.txt:417
 V5.17.txt:418
 V5.17.txt:419
 V5.17.txt:420
 V5.17.txt:421
 V5.17.txt:422
 V5.17.txt:423
 V5.17.txt:424
 V5.17.txt:425
 V5.17.txt:426
 V5.17.txt:427
 V5.17.txt:428
 V5.17.txt:429
 V5.17.txt:430
 V5.17.txt:431
 V5.17.txt:432
 V5.17.txt:433
 V5.17.txt:434
 V5.17.txt:435
 V5.17.txt:436
 V5.17.txt:437
 V5.17.txt:438
 V5.17.txt:439
 V5.17.txt:440
 V5.17.txt:441
 V5.17.txt:442
 V5.17.txt:443
 V5.17.txt:444
 V5.17.txt:445
 V5.17.txt:446
 V5.17.txt:447
 V5.17.txt:448
 V5.17.txt:449
 V5.17.txt:450
 V5.17.txt:451
 V5.17.txt:452
 V5.17.txt:453
 V5.17.txt:454
 V5.17.txt:455
 V5.17.txt:456
 V5.17.txt:457
 V5.17.txt:458
 V5.17.txt:459
 V5.17.txt:460
 V5.17.txt:461
 V5.17.txt:462
 V5.17.txt:463
 V5.17.txt:464
 V5.17.txt:465
 V5.17.txt:466
 V5.17.txt:467
 V5.17.txt:468
 V5.17.txt:469
 V5.17.txt:470
 V5.17.txt:471
 V5.17.txt:472
 V5.17.txt:473
 V5.17.txt:474
 V5.17.txt:475
 V5.17.txt:476
 V5.17.txt:477
 V5.17.txt:478
 V5.17.txt:479
 V5.17.txt:480
 V5.17.txt:481
 V5.17.txt:482
 V5.17.txt:483
 V5.17.txt:484
 V5.17.txt:485
 V5.17.txt:486
 V5.17.txt:487
 V5.17.txt:488
 V5.17.txt:489
 V5.17.txt:490
 V5.17.txt:491
 V5.17.txt:492
 V5.17.txt:493
 V5.17.txt:494
 V5.17.txt:495
 V5.17.txt:496
 V5.17.txt:497
 V5.17.txt:498
 V5.17.txt:499
 V5.17.txt:500
 V5.17.txt:501
 V5.17.txt:502
 V5.17.txt:503
 V5.17.txt:504
 V5.17.txt:505
 V5.17.txt:506
 V5.17.txt:507
 V5.17.txt:508
 V5.17.txt:509
 V5.17.txt:510
 V5.17.txt:511
 V5.17.txt:512
 V5.17.txt:513
 V5.17.txt:514
 V5.17.txt:515
 V5.17.txt:516
 V5.17.txt:517
 V5.17.txt:518
 V5.17.txt:519
 V5.17.txt:520
 V5.17.txt:521
 V5.17.txt:522
 V5.17.txt:523
 V5.17.txt:524
 V5.17.txt:525
 V5.17.txt:526
 V5.17.txt:527
 V5.17.txt:528
 V5.17.txt:529
 V5.17.txt:530
 V5.17.txt:531
 V5.17.txt:532
 V5.17.txt:533
 V5.17.txt:534
 V5.17.txt:535
 V5.17.txt:536
 V5.17.txt:537
 V5.17.txt:538
 V5.17.txt:539
 V5.17.txt:540
 V5.17.txt:541
 V5.17.txt:542
 V5.17.txt:543
 V5.17.txt:544
 V5.17.txt:545
 V5.17.txt:546
 V5.17.txt:547
 V5.17.txt:548
 V5.17.txt:549
 V5.17.txt:550
 V5.17.txt:551
 V5.17.txt:552
 V5.17.txt:553
 V5.17.txt:554
 V5.17.txt:555
 V5.17.txt:556
 V5.17.txt:557
 V5.17.txt:558
 V5.17.txt:559
 V5.17.txt:560
 V5.17.txt:561
 V5.17.txt:562
 V5.17.txt:563
 V5.17.txt:564
 V5.17.txt:565
 V5.17.txt:566
 V5.17.txt:567
 V5.17.txt:568
 V5.17.txt:569
 V5.17.txt:570
 V5.17.txt:571
 V5.17.txt:572
 V5.17.txt:573
 V5.17.txt:574
 V5.17.txt:575
 V5.17.txt:576
 V5.17.txt:577
 V5.17.txt:578
 V5.17.txt:579
 V5.17.txt:580
 V5.17.txt:581
 V5.17.txt:582
 V5.17.txt:583
 V5.17.txt:584
 V5.17.txt:585
 V5.17.txt:586
 V5.17.txt:587
 V5.17.txt:588
 V5.17.txt:589
 V5.17.txt:590
 V5.17.txt:591
 V5.17.txt:592
 V5.17.txt:593
 V5.17.txt:594
 V5.17.txt:595
 V5.17.txt:596
 V5.17.txt:597
 V5.17.txt:598
 V5.17.txt:599
 V5.17.txt:600
 V5.17.txt:601
 V5.17.txt:602
 V5.17.txt:603
 V5.17.txt:604
 V5.17.txt:605
 V5.17.txt:606
 V5.17.txt:607
 V5.17.txt:608
 V5.17.txt:609
 V5.17.txt:610
 V5.17.txt:611
 V5.17.txt:612
 V5.17.txt:613
 V5.17.txt:614
 V5.17.txt:615
 V5.17.txt:616
 V5.17.txt:617
 V5.17.txt:618
 V5.17.txt:619
 V5.17.txt:620
 V5.17.txt:621
 V5.17.txt:622
 V5.17.txt:623
 V5.17.txt:624
 V5.17.txt:625
 V5.17.txt:626
 V5.17.txt:627
 V5.17.txt:628
 V5.17.txt:629
 V5.17.txt:630
 V5.17.txt:631
 V5.17.txt:632
 V5.17.txt:633
 V5.17.txt:634
 V5.17.txt:635
 V5.17.txt:636
 V5.17.txt:637
 V5.17.txt:638
 V5.17.txt:639
 V5.17.txt:640
 V5.17.txt:641
 V5.17.txt:642
 V5.17.txt:643
 V5.17.txt:644
 V5.17.txt:645
 V5.17.txt:646
 V5.17.txt:647
 V5.17.txt:648
 V5.17.txt:649
 V5.17.txt:650
 V5.17.txt:651
 V5.17.txt:652
 V5.17.txt:653
 V5.17.txt:654
 V5.17.txt:655
 V5.17.txt:656
 V5.17.txt:657
 V5.17.txt:658
 V5.17.txt:659
 V5.17.txt:660
 V5.17.txt:661
 V5.17.txt:662
 V5.17.txt:663
 V5.17.txt:664
 V5.17.txt:665
 V5.17.txt:666
 V5.17.txt:667
 V5.17.txt:668
 V5.17.txt:669
 V5.17.txt:670
 V5.17.txt:671
 V5.17.txt:672
 V5.17.txt:673
 V5.17.txt:674
 V5.17.txt:675
 V5.17.txt:676
 V5.17.txt:677
 V5.17.txt:678
 V5.17.txt:679
 V5.17.txt:680
 V5.17.txt:681
 V5.17.txt:682
 V5.17.txt:683
 V5.17.txt:684
 V5.17.txt:685
 V5.17.txt:686
 V5.17.txt:687
 V5.17.txt:688
 V5.17.txt:689
 V5.17.txt:690
 V5.17.txt:691
 V5.17.txt:692
 V5.17.txt:693
 V5.17.txt:694
 V5.17.txt:695
 V5.17.txt:696
 V5.17.txt:697
 V5.17.txt:698
 V5.17.txt:699
 V5.17.txt:700
 V5.17.txt:701
 V5.17.txt:702
 V5.17.txt:703
 V5.17.txt:704
 V5.17.txt:705
 V5.17.txt:706
 V5.17.txt:707
 V5.17.txt:708
 V5.17.txt:709
 V5.17.txt:710
 V5.17.txt:711
 V5.17.txt:712
 V5.17.txt:713
 V5.17.txt:714
 V5.17.txt:715
 V5.17.txt:716
 V5.17.txt:717
 V5.17.txt:718
 V5.17.txt:719
 V5.17.txt:720
 V5.17.txt:721
 V5.17.txt:722
 V5.17.txt:723
 V5.17.txt:724
 V5.17.txt:725
 V5.17.txt:726
 V5.17.txt:727
 V5.17.txt:728
 V5.17.txt:729
 V5.17.txt:730
 V5.17.txt:731
 V5.17.txt:732
 V5.17.txt:733
 V5.17.txt:734
 V5.17.txt:735
 V5.17.txt:736
 V5.17.txt:737
 V5.17.txt:738
 V5.17.txt:739
 V5.17.txt:740
 V5.17.txt:741
 V5.17.txt:742
 V5.17.txt:743
 V5.17.txt:744
 V5.17.txt:745
 V5.17.txt:746
 V5.17.txt:747
 V5.17.txt:748
 V5.17.txt:749
 V5.17.txt:750
 V5.17.txt:751
 V5.17.txt:752
 V5.17.txt:753
 V5.17.txt:754
 V5.17.txt:755
 V5.17.txt:756
 V5.17.txt:757
 V5.17.txt:758
 V5.17.txt:759
 V5.17.txt:760
 V5.17.txt:761
 V5.17.txt:762
 V5.17.txt:763
 V5.17.txt:764
 V5.17.txt:765
 V5.17.txt:766
 V5.17.txt:767
 V5.17.txt:768
 V5.17.txt:769
 V5.17.txt:770
 V5.17.txt:771
 V5.17.txt:772
 V5.17.txt:773
 V5.17.txt:774
 V5.17.txt:775
 V5.17.txt:776
 V5.17.txt:777
 V5.17.txt:778
 V5.17.txt:779
 V5.17.txt:780
 V5.17.txt:781
 V5.17.txt:782
 V5.17.txt:783
 V5.17.txt:784
 V5.17.txt:785
 V5.17.txt:786
 V5.17.txt:787
 V5.17.txt:788
 V5.17.txt:789
 V5.17.txt:790
 V5.17.txt:791
 V5.17.txt:792
 V5.17.txt:793
 V5.17.txt:794
 V5.17.txt:795
 V5.17.txt:796
 V5.17.txt:797
 V5.17.txt:798
 V5.17.txt:799
 V5.17.txt:800
 V5.17.txt:801
 V5.17.txt:802
 V5.17.txt:803
 V5.17.txt:804
 V5.17.txt:805
 V5.17.txt:806
 V5.17.txt:807
 V5.17.txt:808
 V5.17.txt:809
 V5.17.txt:810
 V5.17.txt:811
 V5.17.txt:812
 V5.17.txt:813
 V5.17.txt:814
 V5.17.txt:815
 V5.17.txt:816
 V5.17.txt:817
 V5.17.txt:818
 V5.17.txt:819
 V5.17.txt:820
 V5.17.txt:821
 V5.17.txt:822
 V5.17.txt:823
 V5.17.txt:824
 V5.17.txt:825
 V5.17.txt:826
 V5.17.txt:827
 V5.17.txt:828
 V5.17.txt:829
 V5.17.txt:830
 V5.17.txt:831
 V5.17.txt:832
 V5.17.txt:833
 V5.17.txt:834
 V5.17.txt:835
 V5.17.txt:836
 V5.17.txt:837
 V5.17.txt:838
 V5.17.txt:839
 V5.17.txt:840
 V5.17.txt:841
 V5.17.txt:842
 V5.17.txt:843
 V5.17.txt:844
 V5.17.txt:845
 V5.17.txt:846
 V5.17.txt:847
 V5.17.txt:848
 V5.17.txt:849
 V5.17.txt:850
 V5.17.txt:851
 V5.17.txt:852
 V5.17.txt:853
 V5.17.txt:854
 V5.17.txt:855
 V5.17.txt:856
 V5.17.txt:857
 V5.17.txt:858
 V5.17.txt:859
 V5.17.txt:860
 V5.17.txt:861
 V5.17.txt:862
 V5.17.txt:863
 V5.17.txt:864
 V5.17.txt:865
 V5.17.txt:866
 V5.17.txt:867
 V5.17.txt:868
 V5.17.txt:869
 V5.17.txt:870
 V5.17.txt:871
 V5.17.txt:872
 V5.17.txt:873
 V5.17.txt:874
 V5.17.txt:875
 V5.17.txt:876
 V5.17.txt:877
 V5.17.txt:878
 V5.17.txt:879
 V5.17.txt:880
 V5.17.txt:881
 V5.17.txt:882
 V5.17.txt:883
 V5.17.txt:884
 V5.17.txt:885
 V5.17.txt:886
 V5.17.txt:887
 V5.17.txt:888
 V5.17.txt:889
 V5.17.txt:890
 V5.17.txt:891
 V5.17.txt:892
 V5.17.txt:893
 V5.17.txt:894
 V5.17.txt:895
 V5.17.txt:896
 V5.17.txt:897
 V5.17.txt:898
 V5.17.txt:899
 V5.17.txt:900
 V5.17.txt:901
 V5.17.txt:902
 V5.17.txt:903
 V5.17.txt:904
 V5.17.txt:905
 V5.17.txt:906
 V5.17.txt:907
 V5.17.txt:908
 V5.17.txt:909
 V5.17.txt:910
 V5.17.txt:911
 V5.17.txt:912
 V5.17.txt:913
 V5.17.txt:914
 V5.17.txt:915
 V5.17.txt:916
 V5.17.txt:917
 V5.17.txt:918
 V5.17.txt:919
 V5.17.txt:920
 V5.17.txt:921
 V5.17.txt:922
 V5.17.txt:923
 V5.17.txt:924
 V5.17.txt:925
 V5.17.txt:926
 V5.17.txt:927
 V5.17.txt:928
 V5.17.txt:929
 V5.17.txt:930
 V5.17.txt:931
 V5.17.txt:932
 V5.17.txt:933
 V5.17.txt:934
 V5.17.txt:935
 V5.17.txt:936
 V5.17.txt:937
 V5.17.txt:938
 V5.17.txt:939
 V5.17.txt:940
 V5.17.txt:941
 V5.17.txt:942
 V5.17.txt:943
 V5.17.txt:944
 V5.17.txt:945
 V5.17.txt:946
 V5.17.txt:947
 V5.17.txt:948
 V5.17.txt:949
 V5.17.txt:950
 V5.17.txt:951
 V5.17.txt:952
 V5.17.txt:953
 V5.17.txt:954
 V5.17.txt:955
 V5.17.txt:956
 V5.17.txt:957
 V5.17.txt:958
 V5.17.txt:959
 V5.17.txt:960
 V5.17.txt:961
 V5.17.txt:962
 V5.17.txt:963
 V5.17.txt:964
 V5.17.txt:965
 V5.17.txt:966
 V5.17.txt:967
 V5.17.txt:968
 V5.17.txt:969
 V5.17.txt:970
 V5.17.txt:971
 V5.17.txt:972
 V5.17.txt:973
 V5.17.txt:974
 V5.17.txt:975
 V5.17.txt:976
 V5.17.txt:977
 V5.17.txt:978
 V5.17.txt:979
 V5.17.txt:980
 V5.17.txt:981
 V5.17.txt:982
 V5.17.txt:983
 V5.17.txt:984
 V5.17.txt:985
 V5.17.txt:986
 V5.17.txt:987
 V5.17.txt:988
 V5.17.txt:989
 V5.17.txt:990
 V5.17.txt:991
 V5.17.txt:992
 V5.17.txt:993
 V5.17.txt:994
 V5.17.txt:995
 V5.17.txt:996
 V5.17.txt:997
 V5.17.txt:998
 V5.17.txt:999
 V5.17.txt:1000
 V5.17.txt:1001
 V5.17.txt:1002
 V5.17.txt:1003
 V5.17.txt:1004
 V5.17.txt:1005
 V5.17.txt:1006
 V5.17.txt:1007
 V5.17.txt:1008
 V5.17.txt:1009
 V5.17.txt:1010
 V5.17.txt:1011
 V5.17.txt:1012
 V5.17.txt:1013
 V5.17.txt:1014
 V5.17.txt:1015
 V5.17.txt:1016
 V5.17.txt:1017
 V5.17.txt:1018
 V5.17.txt:1019
 V5.17.txt:1020
 V5.17.txt:1021
 V5.17.txt:1022
 V5.17.txt:1023
 V5.17.txt:1024
 V5.17.txt:1025
 V5.17.txt:1026
 V5.17.txt:1027
 V5.17.txt:1028
 V5.17.txt:1029
 V5.17.txt:1030
 V5.17.txt:1031
 V5.17.txt:1032
 V5.17.txt:1033
 V5.17.txt:1034
 V5.17.txt:1035
 V5.17.txt:1036
 V5.17.txt:1037
 V5.17.txt:1038
 V5.17.txt:1039
 V5.17.txt:1040
 V5.17.txt:1041
 V5.17.txt:1042
 V5.17.txt:1043
 V5.17.txt:1044
 V5.17.txt:1045
 V5.17.txt:1046
 V5.17.txt:1047
 V5.17.txt:1048
 V5.17.txt:1049
 V5.17.txt:1050
 V5.17.txt:1051
 V5.17.txt:1052
 V5.17.txt:1053
 V5.17.txt:1054
 V5.17.txt:1055
 V5.17.txt:1056
 V5.17.txt:1057
 V5.17.txt:1058
 V5.17.txt:1059
 V5.17.txt:1060
 V5.17.txt:1061
 V5.17.txt:1062
 V5.17.txt:1063
 V5.17.txt:1064
 V5.17.txt:1065
 V5.17.txt:1066
 V5.17.txt:1067
 V5.17.txt:1068
 V5.17.txt:1069
 V5.17.txt:1070
 V5.17.txt:1071
 V5.17.txt:1072
 V5.17.txt:1073
 V5.17.txt:1074
 V5.17.txt:1075
 V5.17.txt:1076
 V5.17.txt:1077
 V5.17.txt:1078
 V5.17.txt:1079
 V5.17.txt:1080
 V5.17.txt:1081
 V5.17.txt:1082
 V5.17.txt:1083
 V5.17.txt:1084
 V5.17.txt:1085
 V5.17.txt:1086
 V5.17.txt:1087
 V5.17.txt:1088
 V5.17.txt:1089
 V5.17.txt:1090
 V5.17.txt:1091
 V5.17.txt:1092
 V5.17.txt:1093
 V5.17.txt:1094
 V5.17.txt:1095
 V5.17.txt:1096
 V5.17.txt:1097
 V5.17.txt:1098
 V5.17.txt:1099
 V5.17.txt:1100
 V5.17.txt:1101
 V5.17.txt:1102
 V5.17.txt:1103
 V5.17.txt:1104
 V5.17.txt:1105
 V5.17.txt:1106
 V5.17.txt:1107
 V5.17.txt:1108
 V5.17.txt:1109
 V5.17.txt:1110
 V5.17.txt:1111
 V5.17.txt:1112
 V5.17.txt:1113
 V5.17.txt:1114
 V5.17.txt:1115
 V5.17.txt:1116
 V5.17.txt:1117
 V5.17.txt:1118
 V5.17.txt:1119
 V5.17.txt:1120
 V5.17.txt:1121
 V5.17.txt:1122
 V5.17.txt:1123
 V5.17.txt:1124
 V5.17.txt:1125
 V5.17.txt:1126
 V5.17.txt:1127
 V5.17.txt:1128
 V5.17.txt:1129
 V5.17.txt:1130
 V5.17.txt:1131
 V5.17.txt:1132
 V5.17.txt:1133
 V5.17.txt:1134
 V5.17.txt:1135
 V5.17.txt:1136
 V5.17.txt:1137
 V5.17.txt:1138
 V5.17.txt:1139
 V5.17.txt:1140
 V5.17.txt:1141
 V5.17.txt:1142
 V5.17.txt:1143
 V5.17.txt:1144
 V5.17.txt:1145
 V5.17.txt:1146
 V5.17.txt:1147
 V5.17.txt:1148
 V5.17.txt:1149
 V5.17.txt:1150
 V5.17.txt:1151
 V5.17.txt:1152
 V5.17.txt:1153
 V5.17.txt:1154
 V5.17.txt:1155
 V5.17.txt:1156
 V5.17.txt:1157
 V5.17.txt:1158
 V5.17.txt:1159
 V5.17.txt:1160
 V5.17.txt:1161
 V5.17.txt:1162
 V5.17.txt:1163
 V5.17.txt:1164
 V5.17.txt:1165
 V5.17.txt:1166
 V5.17.txt:1167
 V5.17.txt:1168
 V5.17.txt:1169
 V5.17.txt:1170
 V5.17.txt:1171
 V5.17.txt:1172
 V5.17.txt:1173
 V5.17.txt:1174
 V5.17.txt:1175
 V5.17.txt:1176
 V5.17.txt:1177
 V5.17.txt:1178
 V5.17.txt:1179
 V5.17.txt:1180
 V5.17.txt:1181
 V5.17.txt:1182
 V5.17.txt:1183
 V5.17.txt:1184
 V5.17.txt:1185
 V5.17.txt:1186
 V5.17.txt:1187
 V5.17.txt:1188
 V5.17.txt:1189
 V5.17.txt:1190
 V5.17.txt:1191
 V5.17.txt:1192
 V5.17.txt:1193
 V5.17.txt:1194
 V5.17.txt:1195
 V5.17.txt:1196
 V5.17.txt:1197
 V5.17.txt:1198
 V5.17.txt:1199
 V5.17.txt:1200
 V5.17.txt:1201
 V5.17.txt:1202
 V5.17.txt:1203
 V5.17.txt:1204
 V5.17.txt:1205
 V5.17.txt:1206
 V5.17.txt:1207
 V5.17.txt:1208
 V5.17.txt:1209
 V5.17.txt:1210
 V5.17.txt:1211
 V5.17.txt:1212
 V5.17.txt:1213
 V5.17.txt:1214
 V5.17.txt:1215
 V5.17.txt:1216
 V5.17.txt:1217
 V5.17.txt:1218
 V5.17.txt:1219
 V5.17.txt:1220
 V5.17.txt:1221
 V5.17.txt:1222
 V5.17.txt:1223
 V5.17.txt:1224
 V5.17.txt:1225
 V5.17.txt:1226
 V5.17.txt:1227
 V5.17.txt:1228
 V5.17.txt:1229
 V5.17.txt:1230
 V5.17.txt:1231
 V5.17.txt:1232
 V5.17.txt:1233
 V5.17.txt:1234
 V5.17.txt:1235
 V5.17.txt:1236
 V5.17.txt:1237
 V5.17.txt:1238
 V5.17.txt:1239
 V5.17.txt:1240
 V5.17.txt:1241
 V5.17.txt:1242
 V5.17.txt:1243
 V5.17.txt:1244
 V5.17.txt:1245
 V5.17.txt:1246
 V5.17.txt:1247
 V5.17.txt:1248
 V5.17.txt:1249
 V5.17.txt:1250
 V5.17.txt:1251
 V5.17.txt:1252
 V5.17.txt:1253
 V5.17.txt:1254
 V5.17.txt:1255
 V5.17.txt:1256
 V5.17.txt:1257
 V5.17.txt:1258
 V5.17.txt:1259
 V5.17.txt:1260
 V5.17.txt:1261
 V5.17.txt:1262
 V5.17.txt:1263
 V5.17.txt:1264
 V5.17.txt:1265
 V5.17.txt:1266
 V5.17.txt:1267
 V5.17.txt:1268
 V5.17.txt:1269
 V5.17.txt:1270
 V5.17.txt:1271
 V5.17.txt:1272
 V5.17.txt:1273
 V5.17.txt:1274
 V5.17.txt:1275
 V5.17.txt:1276
 V5.17.txt:1277
 V5.17.txt:1278
 V5.17.txt:1279
 V5.17.txt:1280
 V5.17.txt:1281
 V5.17.txt:1282
 V5.17.txt:1283
 V5.17.txt:1284
 V5.17.txt:1285
 V5.17.txt:1286
 V5.17.txt:1287
 V5.17.txt:1288
 V5.17.txt:1289
 V5.17.txt:1290
 V5.17.txt:1291
 V5.17.txt:1292
 V5.17.txt:1293
 V5.17.txt:1294
 V5.17.txt:1295
 V5.17.txt:1296
 V5.17.txt:1297
 V5.17.txt:1298
 V5.17.txt:1299
 V5.17.txt:1300
 V5.17.txt:1301
 V5.17.txt:1302
 V5.17.txt:1303
 V5.17.txt:1304
 V5.17.txt:1305
 V5.17.txt:1306
 V5.17.txt:1307
 V5.17.txt:1308
 V5.17.txt:1309
 V5.17.txt:1310
 V5.17.txt:1311
 V5.17.txt:1312
 V5.17.txt:1313
 V5.17.txt:1314
 V5.17.txt:1315
 V5.17.txt:1316
 V5.17.txt:1317
 V5.17.txt:1318
 V5.17.txt:1319
 V5.17.txt:1320
 V5.17.txt:1321
 V5.17.txt:1322
 V5.17.txt:1323
 V5.17.txt:1324
 V5.17.txt:1325
 V5.17.txt:1326
 V5.17.txt:1327
 V5.17.txt:1328
 V5.17.txt:1329
 V5.17.txt:1330
 V5.17.txt:1331
 V5.17.txt:1332
 V5.17.txt:1333
 V5.17.txt:1334
 V5.17.txt:1335
 V5.17.txt:1336
 V5.17.txt:1337
 V5.17.txt:1338
 V5.17.txt:1339
 V5.17.txt:1340
 V5.17.txt:1341
 V5.17.txt:1342
 V5.17.txt:1343
 V5.17.txt:1344
 V5.17.txt:1345
 V5.17.txt:1346
 V5.17.txt:1347
 V5.17.txt:1348
 V5.17.txt:1349
 V5.17.txt:1350
 V5.17.txt:1351
 V5.17.txt:1352
 V5.17.txt:1353
 V5.17.txt:1354
 V5.17.txt:1355
 V5.17.txt:1356
 V5.17.txt:1357
 V5.17.txt:1358
 V5.17.txt:1359
 V5.17.txt:1360
 V5.17.txt:1361
 V5.17.txt:1362
 V5.17.txt:1363
 V5.17.txt:1364
 V5.17.txt:1365
 V5.17.txt:1366
 V5.17.txt:1367
 V5.17.txt:1368
 V5.17.txt:1369
 V5.17.txt:1370
 V5.17.txt:1371
 V5.17.txt:1372
 V5.17.txt:1373
 V5.17.txt:1374
 V5.17.txt:1375
 V5.17.txt:1376
 V5.17.txt:1377
 V5.17.txt:1378
 V5.17.txt:1379
 V5.17.txt:1380
 V5.17.txt:1381
 V5.17.txt:1382
 V5.17.txt:1383
 V5.17.txt:1384
 V5.17.txt:1385
 V5.17.txt:1386
 V5.17.txt:1387
 V5.17.txt:1388
 V5.17.txt:1389
 V5.17.txt:1390
 V5.17.txt:1391
 V5.17.txt:1392
 V5.17.txt:1393
 V5.17.txt:1394
 V5.17.txt:1395
 V5.17.txt:1396
 V5.17.txt:1397
 V5.17.txt:1398
 V5.17.txt:1399
 V5.17.txt:1400
 V5.17.txt:1401
 V5.17.txt:1402
 V5.17.txt:1403
 V5.17.txt:1404
 V5.17.txt:1405
 V5.17.txt:1406
 V5.17.txt:1407
 V5.17.txt:1408
 V5.17.txt:1409
 V5.17.txt:1410
 V5.17.txt:1411
 V5.17.txt:1412
 V5.17.txt:1413
 V5.17.txt:1414
 V5.17.txt:1415
 V5.17.txt:1416
 V5.17.txt:1417
 V5.17.txt:1418
 V5.17.txt:1419
 V5.17.txt:1420
 V5.17.txt:1421
 V5.17.txt:1422
 V5.17.txt:1423
 V5.17.txt:1424
 V5.17.txt:1425
 V5.17.txt:1426
 V5.17.txt:1427
 V5.17.txt:1428
 V5.17.txt:1429
 V5.17.txt:1430
 V5.17.txt:1431
 V5.17.txt:1432
 V5.17.txt:1433
 V5.17.txt:1434
 V5.17.txt:1435
 V5.17.txt:1436
 V5.17.txt:1437
 V5.17.txt:1438
 V5.17.txt:1439
 V5.17.txt:1440
 V5.17.txt:1441
 V5.17.txt:1442
 V5.17.txt:1443
 V5.17.txt:1444
 V5.17.txt:1445
 V5.17.txt:1446
 V5.17.txt:1447
 V5.17.txt:1448
 V5.17.txt:1449
 V5.17.txt:1450
 V5.17.txt:1451
 V5.17.txt:1452
 V5.17.txt:1453
 V5.17.txt:1454
 V5.17.txt:1455
 V5.17.txt:1456
 V5.17.txt:1457
 V5.17.txt:1458
 V5.17.txt:1459
 V5.17.txt:1460
 V5.17.txt:1461
 V5.17.txt:1462
 V5.17.txt:1463
 V5.17.txt:1464
 V5.17.txt:1465
 V5.17.txt:1466
 V5.17.txt:1467
 V5.17.txt:1468
 V5.17.txt:1469
 V5.17.txt:1470
 V5.17.txt:1471
 V5.17.txt:1472
 V5.17.txt:1473
 V5.17.txt:1474
 V5.17.txt:1475
 V5.17.txt:1476
 V5.17.txt:1477
 V5.17.txt:1478
 V5.17.txt:1479
 V5.17.txt:1480
 V5.17.txt:1481
 V5.17.txt:1482
 V5.17.txt:1483
 V5.17.txt:1484
 V5.17.txt:1485
 V5.17.txt:1486
 V5.17.txt:1487
 V5.17.txt:1488
 V5.17.txt:1489
 V5.17.txt:1490
 V5.17.txt:1491
 V5.17.txt:1492
 V5.17.txt:1493
 V5.17.txt:1494
 V5.17.txt:1495
 V5.17.txt:1496
 V5.17.txt:1497
 V5.17.txt:1498
 V5.17.txt:1499
 V5.17.txt:1500
 V5.17.txt:1501
 V5.17.txt:1502
 V5.17.txt:1503
 V5.17.txt:1504
 V5.17.txt:1505
 V5.17.txt:1506
 V5.17.txt:1507
 V5.17.txt:1508
 V5.17.txt:1509
 V5.17.txt:1510
 V5.17.txt:1511
 V5.17.txt:1512
 V5.17.txt:1513
 V5.17.txt:1514
 V5.17.txt:1515
 V5.17.txt:1516
 V5.17.txt:1517
 V5.17.txt:1518
 V5.17.txt:1519
 V5.17.txt:1520
 V5.17.txt:1521
 V5.17.txt:1522
 V5.17.txt:1523
 V5.17.txt:1524
 V5.17.txt:1525
 V5.17.txt:1526
 V5.17.txt:1527
 V5.17.txt:1528
 V5.17.txt:1529
 V5.17.txt:1530
 V5.17.txt:1531
 V5.17.txt:1532
 V5.17.txt:1533
 V5.17.txt:1534
 V5.17.txt:1535
 V5.17.txt:1536
 V5.17.txt:1537
 V5.17.txt:1538
 V5.17.txt:1539
 V5.17.txt:1540
 V5.17.txt:1541
 V5.17.txt:1542
 V5.17.txt:1543
 V5.17.txt:1544
 V5.17.txt:1545
 V5.17.txt:1546
 V5.17.txt:1547
 V5.17.txt:1548
 V5.17.txt:1549
 V5.17.txt:1550
 V5.17.txt:1551
 V5.17.txt:1552
 V5.17.txt:1553
 V5.17.txt:1554
 V5.17.txt:1555
 V5.17.txt:1556
 V5.17.txt:1557
 V5.17.txt:1558
 V5.17.txt:1559
 V5.17.txt:1560
 V5.17.txt:1561
 V5.17.txt:1562
 V5.17.txt:1563
 V5.17.txt:1564
 V5.17.txt:1565
 V5.17.txt:1566
 V5.17.txt:1567
 V5.17.txt:1568
 V5.17.txt:1569
 V5.17.txt:1570
 V5.17.txt:1571
 V5.17.txt:1572
 V5.17.txt:1573
 V5.17.txt:1574
 V5.17.txt:1575
 V5.17.txt:1576
 V5.17.txt:1577
 V5.17.txt:1578
 V5.17.txt:1579
 V5.17.txt:1580
 V5.17.txt:1581
 V5.17.txt:1582
 V5.17.txt:1583
 V5.17.txt:1584
 V5.17.txt:1585
 V5.17.txt:1586
 V5.17.txt:1587
 V5.17.txt:1588
 V5.17.txt:1589
 V5.17.txt:1590
 V5.17.txt:1591
 V5.17.txt:1592
 V5.17.txt:1593
 V5.17.txt:1594
 V5.17.txt:1595
 V5.17.txt:1596
 V5.17.txt:1597
 V5.17.txt:1598
 V5.17.txt:1599
 V5.17.txt:1600
 V5.17.txt:1601
 V5.17.txt:1602
 V5.17.txt:1603
 V5.17.txt:1604
 V5.17.txt:1605
 V5.17.txt:1606
 V5.17.txt:1607
 V5.17.txt:1608
 V5.17.txt:1609
 V5.17.txt:1610
 V5.17.txt:1611
 V5.17.txt:1612
 V5.17.txt:1613
 V5.17.txt:1614
 V5.17.txt:1615
 V5.17.txt:1616
 V5.17.txt:1617
 V5.17.txt:1618
 V5.17.txt:1619
 V5.17.txt:1620
 V5.17.txt:1621
 V5.17.txt:1622
 V5.17.txt:1623
 V5.17.txt:1624
 V5.17.txt:1625
 V5.17.txt:1626
 V5.17.txt:1627
 V5.17.txt:1628
 V5.17.txt:1629
 V5.17.txt:1630
 V5.17.txt:1631
 V5.17.txt:1632
 V5.17.txt:1633
 V5.17.txt:1634
 V5.17.txt:1635
 V5.17.txt:1636
 V5.17.txt:1637
 V5.17.txt:1638
 V5.17.txt:1639
 V5.17.txt:1640
 V5.17.txt:1641
 V5.17.txt:1642
 V5.17.txt:1643
 V5.17.txt:1644
 V5.17.txt:1645
 V5.17.txt:1646
 V5.17.txt:1647
 V5.17.txt:1648
 V5.17.txt:1649
 V5.17.txt:1650
 V5.17.txt:1651
 V5.17.txt:1652
 V5.17.txt:1653
 V5.17.txt:1654
 V5.17.txt:1655
 V5.17.txt:1656
 V5.17.txt:1657
 V5.17.txt:1658
 V5.17.txt:1659
 V5.17.txt:1660
 V5.17.txt:1661
 V5.17.txt:1662
 V5.17.txt:1663
 V5.17.txt:1664
 V5.17.txt:1665
 V5.17.txt:1666
 V5.17.txt:1667
 V5.17.txt:1668
 V5.17.txt:1669
 V5.17.txt:1670
 V5.17.txt:1671
 V5.17.txt:1672
 V5.17.txt:1673
 V5.17.txt:1674
 V5.17.txt:1675
 V5.17.txt:1676
 V5.17.txt:1677
 V5.17.txt:1678
 V5.17.txt:1679
 V5.17.txt:1680
 V5.17.txt:1681
 V5.17.txt:1682
 V5.17.txt:1683
 V5.17.txt:1684
 V5.17.txt:1685
 V5.17.txt:1686
 V5.17.txt:1687
 V5.17.txt:1688
 V5.17.txt:1689
 V5.17.txt:1690
 V5.17.txt:1691
 V5.17.txt:1692
 V5.17.txt:1693
 V5.17.txt:1694
 V5.17.txt:1695
 V5.17.txt:1696
 V5.17.txt:1697
 V5.17.txt:1698
 V5.17.txt:1699
 V5.17.txt:1700
 V5.17.txt:1701
 V5.17.txt:1702
 V5.17.txt:1703
 V5.17.txt:1704
 V5.17.txt:1705
 V5.17.txt:1706
 V5.17.txt:1707
 V5.17.txt:1708
 V5.17.txt:1709
 V5.17.txt:1710
 V5.17.txt:1711
 V5.17.txt:1712
 V5.17.txt:1713
 V5.17.txt:1714
 V5.17.txt:1715
 V5.17.txt:1716
 V5.17.txt:1717
 V5.17.txt:1718
 V5.17.txt:1719
 V5.17.txt:1720
 V5.17.txt:1721
 V5.17.txt:1722
 V5.17.txt:1723
 V5.17.txt:1724
 V5.17.txt:1725
 V5.17.txt:1726
 V5.17.txt:1727
 V5.17.txt:1728
 V5.17.txt:1729
 V5.17.txt:1730
 V5.17.txt:1731
 V5.17.txt:1732
 V5.17.txt:1733
 V5.17.txt:1734
 V5.17.txt:1735
 V5.17.txt:1736
 V5.17.txt:1737
 V5.17.txt:1738
 V5.17.txt:1739
 V5.17.txt:1740
 V5.17.txt:1741
 V5.17.txt:1742
 V5.17.txt:1743
 V5.17.txt:1744
 V5.17.txt:1745
 V5.17.txt:1746
 V5.17.txt:1747
 V5.17.txt:1748
 V5.17.txt:1749
 V5.17.txt:1750
 V5.17.txt:1751
 V5.17.txt:1752
 V5.17.txt:1753
 V5.17.txt:1754
 V5.17.txt:1755
 V5.17.txt:1756
 V5.17.txt:1757
 V5.17.txt:1758
 V5.17.txt:1759
 V5.17.txt:1760
 V5.17.txt:1761
 V5.17.txt:1762
 V5.17.txt:1763
 V5.17.txt:1764
 V5.17.txt:1765
 V5.17.txt:1766
 V5.17.txt:1767
 V5.17.txt:1768
 V5.17.txt:1769
 V5.17.txt:1770
 V5.17.txt:1771
 V5.17.txt:1772
 V5.17.txt:1773
 V5.17.txt:1774
 V5.17.txt:1775
 V5.17.txt:1776
 V5.17.txt:1777
 V5.17.txt:1778
 V5.17.txt:1779
 V5.17.txt:1780
 V5.17.txt:1781
 V5.17.txt:1782
 V5.17.txt:1783
 V5.17.txt:1784
 V5.17.txt:1785
 V5.17.txt:1786
 V5.17.txt:1787
 V5.17.txt:1788
 V5.17.txt:1789
 V5.17.txt:1790
 V5.17.txt:1791
 V5.17.txt:1792
 V5.17.txt:1793
 V5.17.txt:1794
 V5.17.txt:1795
 V5.17.txt:1796
 V5.17.txt:1797
 V5.17.txt:1798
 V5.17.txt:1799
 V5.17.txt:1800
 V5.17.txt:1801
 V5.17.txt:1802
 V5.17.txt:1803
 V5.17.txt:1804
 V5.17.txt:1805
 V5.17.txt:1806
 V5.17.txt:1807
 V5.17.txt:1808
 V5.17.txt:1809
 V5.17.txt:1810
 V5.17.txt:1811
 V5.17.txt:1812
 V5.17.txt:1813
 V5.17.txt:1814
 V5.17.txt:1815
 V5.17.txt:1816
 V5.17.txt:1817
 V5.17.txt:1818
 V5.17.txt:1819
 V5.17.txt:1820
 V5.17.txt:1821
 V5.17.txt:1822
 V5.17.txt:1823
 V5.17.txt:1824
 V5.17.txt:1825
 V5.17.txt:1826
 V5.17.txt:1827
 V5.17.txt:1828
 V5.17.txt:1829
 V5.17.txt:1830
 V5.17.txt:1831
 V5.17.txt:1832
 V5.17.txt:1833
 V5.17.txt:1834
 V5.17.txt:1835
 V5.17.txt:1836
 V5.17.txt:1837
 V5.17.txt:1838
 V5.17.txt:1839
 V5.17.txt:1840
 V5.17.txt:1841
 V5.17.txt:1842
 V5.17.txt:1843
 V5.17.txt:1844
 V5.17.txt:1845
 V5.17.txt:1846
 V5.17.txt:1847
 V5.17.txt:1848
 V5.17.txt:1849
 V5.17.txt:1850
 V5.17.txt:1851
 V5.17.txt:1852
 V5.17.txt:1853
 V5.17.txt:1854
 V5.17.txt:1855
 V5.17.txt:1856
 V5.17.txt:1857
 V5.17.txt:1858
 V5.17.txt:1859
 V5.17.txt:1860
 V5.17.txt:1861
 V5.17.txt:1862
 V5.17.txt:1863
 V5.17.txt:1864
 V5.17.txt:1865
 V5.17.txt:1866
 V5.17.txt:1867
 V5.17.txt:1868
 V5.17.txt:1869
 V5.17.txt:1870
 V5.17.txt:1871
 V5.17.txt:1872
 V5.17.txt:1873
 V5.17.txt:1874
 V5.17.txt:1875
 V5.17.txt:1876
 V5.17.txt:1877
 V5.17.txt:1878
 V5.17.txt:1879
 V5.17.txt:1880
 V5.17.txt:1881
 V5.17.txt:1882
 V5.17.txt:1883
 V5.17.txt:1884
 V5.17.txt:1885
 V5.17.txt:1886
 V5.17.txt:1887
 V5.17.txt:1888
 V5.17.txt:1889
 V5.17.txt:1890
 V5.17.txt:1891
 V5.17.txt:1892
 V5.17.txt:1893
 V5.17.txt:1894
 V5.17.txt:1895
 V5.17.txt:1896
 V5.17.txt:1897
 V5.17.txt:1898
 V5.17.txt:1899
 V5.17.txt:1900
 V5.17.txt:1901
 V5.17.txt:1902
 V5.17.txt:1903
 V5.17.txt:1904
 V5.17.txt:1905
 V5.17.txt:1906
 V5.17.txt:1907
 V5.17.txt:1908
 V5.17.txt:1909
 V5.17.txt:1910
 V5.17.txt:1911
 V5.17.txt:1912
 V5.17.txt:1913
 V5.17.txt:1914
 V5.17.txt:1915
 V5.17.txt:1916
 V5.17.txt:1917
 V5.17.txt:1918
 V5.17.txt:1919
 V5.17.txt:1920
 V5.17.txt:1921
 V5.17.txt:1922
 V5.17.txt:1923
 V5.17.txt:1924
 V5.17.txt:1925
 V5.17.txt:1926
 V5.17.txt:1927
 V5.17.txt:1928
 V5.17.txt:1929
 V5.17.txt:1930
 V5.17.txt:1931
 V5.17.txt:1932
 V5.17.txt:1933
 V5.17.txt:1934
 V5.17.txt:1935
 V5.17.txt:1936
 V5.17.txt:1937
 V5.17.txt:1938
 V5.17.txt:1939
 V5.17.txt:1940
 V5.17.txt:1941
 V5.17.txt:1942
 V5.17.txt:1943
 V5.17.txt:1944
 V5.17.txt:1945
 V5.17.txt:1946
 V5.17.txt:1947
 V5.17.txt:1948
 V5.17.txt:1949
 V5.17.txt:1950
 V5.17.txt:1951
 V5.17.txt:1952
 V5.17.txt:1953
 V5.17.txt:1954
 V5.17.txt:1955
 V5.17.txt:1956
 V5.17.txt:1957
 V5.17.txt:1958
 V5.17.txt:1959
 V5.17.txt:1960
 V5.17.txt:1961
 V5.17.txt:1962
 V5.17.txt:1963
 V5.17.txt:1964
 V5.17.txt:1965
 V5.17.txt:1966
 V5.17.txt:1967
 V5.17.txt:1968
 V5.17.txt:1969
 V5.17.txt:1970
 V5.17.txt:1971
 V5.17.txt:1972
 V5.17.txt:1973
 V5.17.txt:1974
 V5.17.txt:1975
 V5.17.txt:1976
 V5.17.txt:1977
 V5.17.txt:1978
 V5.17.txt:1979
 V5.17.txt:1980
 V5.17.txt:1981
 V5.17.txt:1982
 V5.17.txt:1983
 V5.17.txt:1984
 V5.17.txt:1985
 V5.17.txt:1986
 V5.17.txt:1987
 V5.17.txt:1988
 V5.17.txt:1989
 V5.17.txt:1990
 V5.17.txt:1991
 V5.17.txt:1992
 V5.17.txt:1993
 V5.17.txt:1994
 V5.17.txt:1995
 V5.17.txt:1996
 V5.17.txt:1997
 V5.17.txt:1998
 V5.17.txt:1999
 V5.17.txt:2000
 V5.17.txt:2001
 V5.17.txt:2002
 V5.17.txt:2003
 V5.17.txt:2004
 V5.17.txt:2005
 V5.17.txt:2006
 V5.17.txt:2007
 V5.17.txt:2008
 V5.17.txt:2009
 V5.17.txt:2010
 V5.17.txt:2011
 V5.17.txt:2012
 V5.17.txt:2013
 V5.17.txt:2014
 V5.17.txt:2015
 V5.17.txt:2016
 V5.17.txt:2017
 V5.17.txt:2018
 V5.17.txt:2019
 V5.17.txt:2020
 V5.17.txt:2021
 V5.17.txt:2022
 V5.17.txt:2023
 V5.17.txt:2024
 V5.17.txt:2025
 V5.17.txt:2026
 V5.17.txt:2027
 V5.17.txt:2028
 V5.17.txt:2029
 V5.17.txt:2030
 V5.17.txt:2031
 V5.17.txt:2032
 V5.17.txt:2033
 V5.17.txt:2034
 V5.17.txt:2035
 V5.17.txt:2036
 V5.17.txt:2037
 V5.17.txt:2038
 V5.17.txt:2039
 V5.17.txt:2040
 V5.17.txt:2041
 V5.17.txt:2042
 V5.17.txt:2043
 V5.17.txt:2044
 V5.17.txt:2045
 V5.17.txt:2046
 V5.17.txt:2047
 V5.17.txt:2048
 V5.17.txt:2049
 V5.17.txt:2050
 V5.17.txt:2051
 V5.17.txt:2052
 V5.17.txt:2053
 V5.17.txt:2054
 V5.17.txt:2055
 V5.17.txt:2056
 V5.17.txt:2057
 V5.17.txt:2058
 V5.17.txt:2059
 V5.17.txt:2060
 V5.17.txt:2061
 V5.17.txt:2062
 V5.17.txt:2063
 V5.17.txt:2064
 V5.17.txt:2065
 V5.17.txt:2066
 V5.17.txt:2067
 V5.17.txt:2068
 V5.17.txt:2069
 V5.17.txt:2070
 V5.17.txt:2071
 V5.17.txt:2072
 V5.17.txt:2073
 V5.17.txt:2074
 V5.17.txt:2075
 V5.17.txt:2076
 V5.17.txt:2077
 V5.17.txt:2078
 V5.17.txt:2079
 V5.17.txt:2080
 V5.17.txt:2081
 V5.17.txt:2082
 V5.17.txt:2083
 V5.17.txt:2084
 V5.17.txt:2085
 V5.17.txt:2086
 V5.17.txt:2087
 V5.17.txt:2088
 V5.17.txt:2089
 V5.17.txt:2090
 V5.17.txt:2091
 V5.17.txt:2092
 V5.17.txt:2093
 V5.17.txt:2094
 V5.17.txt:2095
 V5.17.txt:2096
 V5.17.txt:2097
 V5.17.txt:2098
 V5.17.txt:2099
 V5.17.txt:2100
 V5.17.txt:2101
 V5.17.txt:2102
 V5.17.txt:2103
 V5.17.txt:2104
 V5.17.txt:2105
 V5.17.txt:2106
 V5.17.txt:2107
 V5.17.txt:2108
 V5.17.txt:2109
 V5.17.txt:2110
 V5.17.txt:2111
 V5.17.txt:2112
 V5.17.txt:2113
 V5.17.txt:2114
 V5.17.txt:2115
 V5.17.txt:2116
 V5.17.txt:2117
 V5.17.txt:2118
 V5.17.txt:2119
 V5.17.txt:2120
 V5.17.txt:2121
 V5.17.txt:2122
 V5.17.txt:2123
 V5.17.txt:2124
 V5.17.txt:2125
 V5.17.txt:2126
 V5.17.txt:2127
 V5.17.txt:2128
 V5.17.txt:2129
 V5.17.txt:2130
 V5.17.txt:2131
 V5.17.txt:2132
 V5.17.txt:2133
 V5.17.txt:2134
 V5.17.txt:2135
 V5.17.txt:2136
 V5.17.txt:2137
 V5.17.txt:2138
 V5.17.txt:2139
 V5.17.txt:2140
 V5.17.txt:2141
 V5.17.txt:2142
 V5.17.txt:2143
 V5.17.txt:2144
 V5.17.txt:2145
 V5.17.txt:2146
 V5.17.txt:2147
 V5.17.txt:2148
 V5.17.txt:2149
 V5.17.txt:2150
 V5.17.txt:2151
 V5.17.txt:2152
 V5.17.txt:2153
 V5.17.txt:2154
 V5.17.txt:2155
 V5.17.txt:2156
 V5.17.txt:2157
 V5.17.txt:2158
 V5.17.txt:2159
 V5.17.txt:2160
 V5.17.txt:2161
 V5.17.txt:2162
 V5.17.txt:2163
 V5.17.txt:2164
 V5.17.txt:2165
 V5.17.txt:2166
 V5.17.txt:2167
 V5.17.txt:2168
 V5.17.txt:2169
 V5.17.txt:2170
 V5.17.txt:2171
 V5.17.txt:2172
 V5.17.txt:2173
 V5.17.txt:2174
 V5.17.txt:2175
 V5.17.txt:2176
 V5.17.txt:2177
 V5.17.txt:2178
 V5.17.txt:2179
 V5.17.txt:2180
 V5.17.txt:2181
 V5.17.txt:2182
 V5.17.txt:2183
 V5.17.txt:2184
 V5.17.txt:2185
 V5.17.txt:2186
 V5.17.txt:2187
 V5.17.txt:2188
 V5.17.txt:2189
 V5.17.txt:2190
 V5.17.txt:2191
 V5.17.txt:2192
 V5.17.txt:2193
 V5.17.txt:2194
 V5.17.txt:2195
 V5.17.txt:2196
 V5.17.txt:2197
 V5.17.txt:2198
 V5.17.txt:2199
 V5.17.txt:2200
 V5.17.txt:2201
 V5.17.txt:2202
 V5.17.txt:2203
 V5.17.txt:2204
 V5.17.txt:2205
 V5.17.txt:2206
 V5.17.txt:2207
 V5.17.txt:2208
 V5.17.txt:2209
 V5.17.txt:2210
 V5.17.txt:2211
 V5.17.txt:2212
 V5.17.txt:2213
 V5.17.txt:2214
 V5.17.txt:2215
 V5.17.txt:2216
 V5.17.txt:2217
 V5.17.txt:2218
 V5.17.txt:2219
 V5.17.txt:2220
 V5.17.txt:2221
 V5.17.txt:2222
 V5.17.txt:2223
 V5.17.txt:2224
 V5.17.txt:2225
 V5.17.txt:2226
 V5.17.txt:2227
 V5.17.txt:2228
 V5.17.txt:2229
 V5.17.txt:2230
 V5.17.txt:2231
 V5.17.txt:2232
 V5.17.txt:2233
 V5.17.txt:2234
 V5.17.txt:2235
 V5.17.txt:2236
 V5.17.txt:2237
 V5.17.txt:2238
 V5.17.txt:2239
 V5.17.txt:2240
 V5.17.txt:2241
 V5.17.txt:2242
 V5.17.txt:2243
 V5.17.txt:2244
 V5.17.txt:2245
 V5.17.txt:2246
 V5.17.txt:2247
 V5.17.txt:2248
 V5.17.txt:2249
 V5.17.txt:2250
 V5.17.txt:2251
 V5.17.txt:2252
 V5.17.txt:2253
 V5.17.txt:2254
 V5.17.txt:2255
 V5.17.txt:2256
 V5.17.txt:2257
 V5.17.txt:2258
 V5.17.txt:2259
 V5.17.txt:2260
 V5.17.txt:2261
 V5.17.txt:2262
 V5.17.txt:2263
 V5.17.txt:2264
 V5.17.txt:2265
 V5.17.txt:2266
 V5.17.txt:2267
 V5.17.txt:2268
 V5.17.txt:2269
 V5.17.txt:2270
 V5.17.txt:2271
 V5.17.txt:2272
 V5.17.txt:2273
 V5.17.txt:2274
 V5.17.txt:2275
 V5.17.txt:2276
 V5.17.txt:2277
 V5.17.txt:2278
 V5.17.txt:2279
 V5.17.txt:2280
 V5.17.txt:2281
 V5.17.txt:2282
 V5.17.txt:2283
 V5.17.txt:2284
 V5.17.txt:2285
 V5.17.txt:2286
 V5.17.txt:2287
 V5.17.txt:2288
 V5.17.txt:2289
 V5.17.txt:2290
 V5.17.txt:2291
 V5.17.txt:2292
 V5.17.txt:2293
 V5.17.txt:2294
 V5.17.txt:2295
 V5.17.txt:2296
 V5.17.txt:2297
 V5.17.txt:2298
 V5.17.txt:2299
 V5.17.txt:2300
 V5.17.txt:2301
 V5.17.txt:2302
 V5.17.txt:2303
 V5.17.txt:2304
 V5.17.txt:2305
 V5.17.txt:2306
 V5.17.txt:2307
 V5.17.txt:2308
 V5.17.txt:2309
 V5.17.txt:2310
 V5.17.txt:2311
 V5.17.txt:2312
 V5.17.txt:2313
 V5.17.txt:2314
 V5.17.txt:2315
 V5.17.txt:2316
 V5.17.txt:2317
 V5.17.txt:2318
 V5.17.txt:2319
 V5.17.txt:2320
 V5.17.txt:2321
 V5.17.txt:2322
 V5.17.txt:2323
 V5.17.txt:2324
 V5.17.txt:2325
 V5.17.txt:2326
 V5.17.txt:2327
 V5.17.txt:2328
 V5.17.txt:2329
 V5.17.txt:2330
 V5.17.txt:2331
 V5.17.txt:2332
 V5.17.txt:2333
 V5.17.txt:2334
 V5.17.txt:2335
 V5.17.txt:2336
 V5.17.txt:2337
 V5.17.txt:2338
 V5.17.txt:2339
 V5.17.txt:2340
 V5.17.txt:2341
 V5.17.txt:2342
 V5.17.txt:2343
 V5.17.txt:2344
 V5.17.txt:2345
 V5.17.txt:2346
 V5.17.txt:2347
 V5.17.txt:2348
 V5.17.txt:2349
 V5.17.txt:2350
 V5.17.txt:2351
 V5.17.txt:2352
 V5.17.txt:2353
 V5.17.txt:2354
 V5.17.txt:2355
 V5.17.txt:2356
 V5.17.txt:2357
 V5.17.txt:2358
 V5.17.txt:2359
 V5.17.txt:2360
 V5.17.txt:2361
 V5.17.txt:2362
 V5.17.txt:2363
 V5.17.txt:2364
 V5.17.txt:2365
 V5.17.txt:2366
 V5.17.txt:2367
 V5.17.txt:2368
 V5.17.txt:2369
 V5.17.txt:2370
 V5.17.txt:2371
 V5.17.txt:2372
 V5.17.txt:2373
 V5.17.txt:2374
 V5.17.txt:2375
 V5.17.txt:2376
 V5.17.txt:2377
 V5.17.txt:2378
 V5.17.txt:2379
 V5.17.txt:2380
 V5.17.txt:2381
 V5.17.txt:2382
 V5.17.txt:2383
 V5.17.txt:2384
 V5.17.txt:2385
 V5.17.txt:2386
 V5.17.txt:2387
 V5.17.txt:2388
 V5.17.txt:2389
 V5.17.txt:2390
 V5.17.txt:2391
 V5.17.txt:2392
 V5.17.txt:2393
 V5.17.txt:2394
 V5.17.txt:2395
 V5.17.txt:2396
 V5.17.txt:2397
 V5.17.txt:2398
 V5.17.txt:2399
 V5.17.txt:2400
 V5.17.txt:2401
 V5.17.txt:2402
 V5.17.txt:2403
 V5.17.txt:2404
 V5.17.txt:2405
 V5.17.txt:2406
 V5.17.txt:2407
 V5.17.txt:2408
 V5.17.txt:2409
 V5.17.txt:2410
 V5.17.txt:2411
 V5.17.txt:2412
 V5.17.txt:2413
 V5.17.txt:2414
 V5.17.txt:2415
 V5.17.txt:2416
 V5.17.txt:2417
 V5.17.txt:2418
 V5.17.txt:2419
 V5.17.txt:2420
 V5.17.txt:2421
 V5.17.txt:2422
 V5.17.txt:2423
 V5.17.txt:2424
 V5.17.txt:2425
 V5.17.txt:2426
 V5.17.txt:2427
 V5.17.txt:2428
 V5.17.txt:2429
 V5.17.txt:2430
 V5.17.txt:2431
 V5.17.txt:2432
 V5.17.txt:2433
 V5.17.txt:2434
 V5.17.txt:2435
 V5.17.txt:2436
 V5.17.txt:2437
 V5.17.txt:2438
 V5.17.txt:2439
 V5.17.txt:2440
 V5.17.txt:2441
 V5.17.txt:2442
 V5.17.txt:2443
 V5.17.txt:2444
 V5.17.txt:2445
 V5.17.txt:2446
 V5.17.txt:2447
 V5.17.txt:2448
 V5.17.txt:2449
 V5.17.txt:2450
 V5.17.txt:2451
 V5.17.txt:2452
 V5.17.txt:2453
 V5.17.txt:2454
 V5.17.txt:2455
 V5.17.txt:2456
 V5.17.txt:2457
 V5.17.txt:2458
 V5.17.txt:2459
 V5.17.txt:2460
 V5.17.txt:2461
 V5.17.txt:2462
 V5.17.txt:2463
 V5.17.txt:2464
 V5.17.txt:2465
 V5.17.txt:2466
 V5.17.txt:2467
 V5.17.txt:2468
 V5.17.txt:2469
 V5.17.txt:2470
 V5.17.txt:2471
 V5.17.txt:2472
 V5.17.txt:2473
 V5.17.txt:2474
 V5.17.txt:2475
 V5.17.txt:2476
 V5.17.txt:2477
 V5.17.txt:2478
 V5.17.txt:2479
 V5.17.txt:2480
 V5.17.txt:2481
 V5.17.txt:2482
 V5.17.txt:2483
 V5.17.txt:2484
 V5.17.txt:2485
 V5.17.txt:2486
 V5.17.txt:2487
 V5.17.txt:2488
 V5.17.txt:2489
 V5.17.txt:2490
 V5.17.txt:2491
 V5.17.txt:2492
 V5.17.txt:2493
 V5.17.txt:2494
 V5.17.txt:2495
 V5.17.txt:2496
 V5.17.txt:2497
 V5.17.txt:2498
 V5.17.txt:2499
 V5.17.txt:2500
 V5.17.txt:2501
 V5.17.txt:2502
 V5.17.txt:2503
 V5.17.txt:2504
 V5.17.txt:2505
 V5.17.txt:2506
 V5.17.txt:2507
 V5.17.txt:2508
 V5.17.txt:2509
 V5.17.txt:2510
 V5.17.txt:2511
 V5.17.txt:2512
 V5.17.txt:2513
 V5.17.txt:2514
 V5.17.txt:2515
 V5.17.txt:2516
 V5.17.txt:2517
 V5.17.txt:2518
 V5.17.txt:2519
 V5.17.txt:2520
 V5.17.txt:2521
 V5.17.txt:2522
 V5.17.txt:2523
 V5.17.txt:2524
 V5.17.txt:2525
 V5.17.txt:2526
 V5.17.txt:2527
 V5.17.txt:2528
 V5.17.txt:2529
 V5.17.txt:2530
 V5.17.txt:2531
 V5.17.txt:2532
 V5.17.txt:2533
 V5.17.txt:2534
 V5.17.txt:2535
 V5.17.txt:2536
 V5.17.txt:2537
 V5.17.txt:2538
 V5.17.txt:2539
 V5.17.txt:2540
 V5.17.txt:2541
 V5.17.txt:2542
 V5.17.txt:2543
 V5.17.txt:2544
 V5.17.txt:2545
 V5.17.txt:2546
 V5.17.txt:2547
 V5.17.txt:2548
 V5.17.txt:2549
 V5.17.txt:2550
 V5.17.txt:2551
 V5.17.txt:2552
 V5.17.txt:2553
 V5.17.txt:2554
 V5.17.txt:2555
 V5.17.txt:2556
 V5.17.txt:2557
 V5.17.txt:2558
 V5.17.txt:2559
 V5.17.txt:2560
 V5.17.txt:2561
 V5.17.txt:2562
 V5.17.txt:2563
 V5.17.txt:2564
 V5.17.txt:2565
 V5.17.txt:2566
 V5.17.txt:2567
 V5.17.txt:2568
 V5.17.txt:2569
 V5.17.txt:2570
 V5.17.txt:2571
 V5.17.txt:2572
 V5.17.txt:2573
 V5.17.txt:2574
 V5.17.txt:2575
 V5.17.txt:2576
 V5.17.txt:2577
 V5.17.txt:2578
 V5.17.txt:2579
 V5.17.txt:2580
 V5.17.txt:2581
 V5.17.txt:2582
 V5.17.txt:2583
 V5.17.txt:2584
 V5.17.txt:2585
 V5.17.txt:2586
 V5.17.txt:2587
 V5.17.txt:2588
 V5.17.txt:2589
 V5.17.txt:2590
 V5.17.txt:2591
 V5.17.txt:2592
 V5.17.txt:2593
 V5.17.txt:2594
 V5.17.txt:2595
 V5.17.txt:2596
 V5.17.txt:2597
 V5.17.txt:2598
 V5.17.txt:2599
 V5.17.txt:2600
 V5.17.txt:2601
 V5.17.txt:2602
 V5.17.txt:2603
 V5.17.txt:2604
 V5.17.txt:2605
 V5.17.txt:2606
 V5.17.txt:2607
 V5.17.txt:2608
 V5.17.txt:2609
 V5.17.txt:2610
 V5.17.txt:2611
 V5.17.txt:2612
 V5.17.txt:2613
 V5.17.txt:2614
 V5.17.txt:2615
 V5.17.txt:2616
 V5.17.txt:2617
 V5.17.txt:2618
 V5.17.txt:2619
 V5.17.txt:2620
 V5.17.txt:2621
 V5.17.txt:2622
 V5.17.txt:2623
 V5.17.txt:2624
 V5.17.txt:2625
 V5.17.txt:2626
 V5.17.txt:2627
 V5.17.txt:2628
 V5.17.txt:2629
 V5.17.txt:2630
 V5.17.txt:2631
 V5.17.txt:2632
 V5.17.txt:2633
 V5.17.txt:2634
 V5.17.txt:2635
 V5.17.txt:2636
 V5.17.txt:2637
 V5.17.txt:2638
 V5.17.txt:2639
 V5.17.txt:2640
 V5.17.txt:2641
 V5.17.txt:2642
 V5.17.txt:2643
 V5.17.txt:2644
 V5.17.txt:2645
 V5.17.txt:2646
 V5.17.txt:2647
 V5.17.txt:2648
 V5.17.txt:2649
 V5.17.txt:2650
 V5.17.txt:2651
 V5.17.txt:2652
 V5.17.txt:2653
 V5.17.txt:2654
 V5.17.txt:2655
 V5.17.txt:2656
 V5.17.txt:2657
 V5.17.txt:2658
 V5.17.txt:2659
 V5.17.txt:2660
 V5.17.txt:2661
 V5.17.txt:2662
 V5.17.txt:2663
 V5.17.txt:2664
 V5.17.txt:2665
 V5.17.txt:2666
 V5.17.txt:2667
 V5.17.txt:2668
 V5.17.txt:2669
 V5.17.txt:2670
 V5.17.txt:2671
 V5.17.txt:2672
 V5.17.txt:2673
 V5.17.txt:2674
 V5.17.txt:2675
 V5.17.txt:2676
 V5.17.txt:2677
 V5.17.txt:2678
 V5.17.txt:2679
 V5.17.txt:2680
 V5.17.txt:2681
 V5.17.txt:2682
 V5.17.txt:2683
 V5.17.txt:2684
 V5.17.txt:2685
 V5.17.txt:2686
 V5.17.txt:2687
 V5.17.txt:2688
 V5.17.txt:2689
 V5.17.txt:2690
 V5.17.txt:2691
 V5.17.txt:2692
 V5.17.txt:2693
 V5.17.txt:2694
 V5.17.txt:2695
 V5.17.txt:2696
 V5.17.txt:2697
 V5.17.txt:2698
 V5.17.txt:2699
 V5.17.txt:2700
 V5.17.txt:2701
 V5.17.txt:2702
 V5.17.txt:2703
 V5.17.txt:2704
 V5.17.txt:2705
 V5.17.txt:2706
 V5.17.txt:2707
 V5.17.txt:2708
 V5.17.txt:2709
 V5.17.txt:2710
 V5.17.txt:2711
 V5.17.txt:2712
 V5.17.txt:2713
 V5.17.txt:2714
 V5.17.txt:2715
 V5.17.txt:2716
 V5.17.txt:2717
 V5.17.txt:2718
 V5.17.txt:2719
 V5.17.txt:2720
 V5.17.txt:2721
 V5.17.txt:2722
 V5.17.txt:2723
 V5.17.txt:2724
 V5.17.txt:2725
 V5.17.txt:2726
 V5.17.txt:2727
 V5.17.txt:2728
 V5.17.txt:2729
 V5.17.txt:2730
 V5.17.txt:2731
 V5.17.txt:2732
 V5.17.txt:2733
 V5.17.txt:2734
 V5.17.txt:2735
 V5.17.txt:2736
 V5.17.txt:2737
 V5.17.txt:2738
 V5.17.txt:2739
 V5.17.txt:2740
 V5.17.txt:2741
 V5.17.txt:2742
 V5.17.txt:2743
 V5.17.txt:2744
 V5.17.txt:2745
 V5.17.txt:2746
 V5.17.txt:2747
 V5.17.txt:2748
 V5.17.txt:2749
 V5.17.txt:2750
 V5.17.txt:2751
 V5.17.txt:2752
 V5.17.txt:2753
 V5.17.txt:2754
 V5.17.txt:2755
 V5.17.txt:2756
 V5.17.txt:2757
 V5.17.txt:2758
 V5.17.txt:2759
 V5.17.txt:2760
 V5.17.txt:2761
 V5.17.txt:2762
 V5.17.txt:2763
 V5.17.txt:2764
 V5.17.txt:2765
 V5.17.txt:2766
 V5.17.txt:2767
 V5.17.txt:2768
 V5.17.txt:2769
 V5.17.txt:2770
 V5.17.txt:2771
 V5.17.txt:2772
 V5.17.txt:2773
 V5.17.txt:2774
 V5.17.txt:2775
 V5.17.txt:2776
 V5.17.txt:2777
 V5.17.txt:2778
 V5.17.txt:2779
 V5.17.txt:2780
 V5.17.txt:2781
 V5.17.txt:2782
 V5.17.txt:2783
 V5.17.txt:2784
 V5.17.txt:2785
 V5.17.txt:2786
 V5.17.txt:2787
 V5.17.txt:2788
 V5.17.txt:2789
 V5.17.txt:2790
 V5.17.txt:2791
 V5.17.txt:2792
 V5.17.txt:2793
 V5.17.txt:2794
 V5.17.txt:2795
 V5.17.txt:2796
 V5.17.txt:2797
 V5.17.txt:2798
 V5.17.txt:2799
 V5.17.txt:2800
 V5.17.txt:2801
 V5.17.txt:2802
 V5.17.txt:2803
 V5.17.txt:2804
 V5.17.txt:2805
 V5.17.txt:2806
 V5.17.txt:2807
 V5.17.txt:2808
 V5.17.txt:2809
 V5.17.txt:2810
 V5.17.txt:2811
 V5.17.txt:2812
 V5.17.txt:2813
 V5.17.txt:2814
 V5.17.txt:2815
 V5.17.txt:2816
 V5.17.txt:2817
 V5.17.txt:2818
 V5.17.txt:2819
 V5.17.txt:2820
 V5.17.txt:2821
 V5.17.txt:2822
 V5.17.txt:2823
 V5.17.txt:2824
 V5.17.txt:2825
 V5.17.txt:2826
 V5.17.txt:2827
 V5.17.txt:2828
 V5.17.txt:2829
 V5.17.txt:2830
 V5.17.txt:2831
 V5.17.txt:2832
 V5.17.txt:2833
 V5.17.txt:2834
 V5.17.txt:2835
 V5.17.txt:2836
 V5.17.txt:2837
 V5.17.txt:2838
 V5.17.txt:2839
 V5.17.txt:2840
 V5.17.txt:2841
 V5.17.txt:2842
 V5.17.txt:2843
 V5.17.txt:2844
 V5.17.txt:2845
 V5.17.txt:2846
 V5.17.txt:2847
 V5.17.txt:2848
 V5.17.txt:2849
 V5.17.txt:2850
 V5.17.txt:2851
 V5.17.txt:2852
 V5.17.txt:2853
 V5.17.txt:2854
 V5.17.txt:2855
 V5.17.txt:2856
 V5.17.txt:2857
 V5.17.txt:2858
 V5.17.txt:2859
 V5.17.txt:2860
 V5.17.txt:2861
 V5.17.txt:2862
 V5.17.txt:2863
 V5.17.txt:2864
 V5.17.txt:2865
 V5.17.txt:2866
 V5.17.txt:2867
 V5.17.txt:2868
 V5.17.txt:2869
 V5.17.txt:2870
 V5.17.txt:2871
 V5.17.txt:2872
 V5.17.txt:2873
 V5.17.txt:2874
 V5.17.txt:2875
 V5.17.txt:2876
 V5.17.txt:2877
 V5.17.txt:2878
 V5.17.txt:2879
 V5.17.txt:2880
 V5.17.txt:2881
 V5.17.txt:2882
 V5.17.txt:2883
 V5.17.txt:2884
 V5.17.txt:2885
 V5.17.txt:2886
 V5.17.txt:2887
 V5.17.txt:2888
 V5.17.txt:2889
 V5.17.txt:2890
 V5.17.txt:2891
 V5.17.txt:2892
 V5.17.txt:2893
 V5.17.txt:2894
 V5.17.txt:2895
 V5.17.txt:2896
 V5.17.txt:2897
 V5.17.txt:2898
 V5.17.txt:2899
 V5.17.txt:2900
 V5.17.txt:2901
 V5.17.txt:2902
 V5.17.txt:2903
 V5.17.txt:2904
 V5.17.txt:2905
 V5.17.txt:2906
 V5.17.txt:2907
 V5.17.txt:2908
 V5.17.txt:2909
 V5.17.txt:2910
 V5.17.txt:2911
 V5.17.txt:2912
 V5.17.txt:2913
 V5.17.txt:2914
 V5.17.txt:2915
 V5.17.txt:2916
 V5.17.txt:2917
 V5.17.txt:2918
 V5.17.txt:2919
 V5.17.txt:2920
 V5.17.txt:2921
 V5.17.txt:2922
 V5.17.txt:2923
 V5.17.txt:2924
 V5.17.txt:2925
 V5.17.txt:2926
 V5.17.txt:2927
 V5.17.txt:2928
 V5.17.txt:2929
 V5.17.txt:2930
 V5.17.txt:2931
 V5.17.txt:2932
 V5.17.txt:2933
 V5.17.txt:2934
 V5.17.txt:2935
 V5.17.txt:2936
 V5.17.txt:2937
 V5.17.txt:2938
 V5.17.txt:2939
 V5.17.txt:2940
 V5.17.txt:2941
 V5.17.txt:2942
 V5.17.txt:2943
 V5.17.txt:2944
 V5.17.txt:2945
 V5.17.txt:2946
 V5.17.txt:2947
 V5.17.txt:2948
 V5.17.txt:2949
 V5.17.txt:2950
 V5.17.txt:2951
 V5.17.txt:2952
 V5.17.txt:2953
 V5.17.txt:2954
 V5.17.txt:2955
 V5.17.txt:2956
 V5.17.txt:2957
 V5.17.txt:2958
 V5.17.txt:2959
 V5.17.txt:2960
 V5.17.txt:2961
 V5.17.txt:2962
 V5.17.txt:2963
 V5.17.txt:2964
 V5.17.txt:2965
 V5.17.txt:2966
 V5.17.txt:2967
 V5.17.txt:2968
 V5.17.txt:2969
 V5.17.txt:2970
 V5.17.txt:2971
 V5.17.txt:2972
 V5.17.txt:2973
 V5.17.txt:2974
 V5.17.txt:2975
 V5.17.txt:2976
 V5.17.txt:2977
 V5.17.txt:2978
 V5.17.txt:2979
 V5.17.txt:2980
 V5.17.txt:2981
 V5.17.txt:2982
 V5.17.txt:2983
 V5.17.txt:2984
 V5.17.txt:2985
 V5.17.txt:2986
 V5.17.txt:2987
 V5.17.txt:2988
 V5.17.txt:2989
 V5.17.txt:2990
 V5.17.txt:2991
 V5.17.txt:2992
 V5.17.txt:2993
 V5.17.txt:2994
 V5.17.txt:2995
 V5.17.txt:2996
 V5.17.txt:2997
 V5.17.txt:2998
 V5.17.txt:2999
 V5.17.txt:3000
 V5.17.txt:3001
 V5.17.txt:3002
 V5.17.txt:3003
 V5.17.txt:3004
 V5.17.txt:3005
 V5.17.txt:3006
 V5.17.txt:3007
 V5.17.txt:3008
 V5.17.txt:3009
 V5.17.txt:3010
 V5.17.txt:3011
 V5.17.txt:3012
 V5.17.txt:3013
 V5.17.txt:3014
 V5.17.txt:3015
 V5.17.txt:3016
 V5.17.txt:3017
 V5.17.txt:3018
 V5.17.txt:3019
 V5.17.txt:3020
 V5.17.txt:3021
 V5.17.txt:3022
 V5.17.txt:3023
 V5.17.txt:3024
 V5.17.txt:3025
 V5.17.txt:3026
 V5.17.txt:3027
 V5.17.txt:3028
 V5.17.txt:3029
 V5.17.txt:3030
 V5.17.txt:3031
 V5.17.txt:3032
 V5.17.txt:3033
 V5.17.txt:3034
 V5.17.txt:3035
 V5.17.txt:3036
 V5.17.txt:3037
 V5.17.txt:3038
 V5.17.txt:3039
 V5.17.txt:3040
 V5.17.txt:3041
 V5.17.txt:3042
 V5.17.txt:3043
 V5.17.txt:3044
 V5.17.txt:3045
 V5.17.txt:3046
 V5.17.txt:3047
 V5.17.txt:3048
 V5.17.txt:3049
 V5.17.txt:3050
 V5.17.txt:3051
 V5.17.txt:3052
 V5.17.txt:3053
 V5.17.txt:3054
 V5.17.txt:3055
 V5.17.txt:3056
 V5.17.txt:3057
 V5.17.txt:3058
 V5.17.txt:3059
 V5.17.txt:3060
 V5.17.txt:3061
 V5.17.txt:3062
 V5.17.txt:3063
 V5.17.txt:3064
 V5.17.txt:3065
 V5.17.txt:3066
 V5.17.txt:3067
 V5.17.txt:3068
 V5.17.txt:3069
 V5.17.txt:3070
 V5.17.txt:3071
 V5.17.txt:3072
 V5.17.txt:3073
 V5.17.txt:3074
 V5.17.txt:3075
 V5.17.txt:3076
 V5.17.txt:3077
 V5.17.txt:3078
 V5.17.txt:3079
 V5.17.txt:3080
 V5.17.txt:3081
 V5.17.txt:3082
 V5.17.txt:3083
 V5.17.txt:3084
 V5.17.txt:3085
 V5.17.txt:3086
 V5.17.txt:3087
 V5.17.txt:3088
 V5.17.txt:3089
 V5.17.txt:3090
 V5.17.txt:3091
 V5.17.txt:3092
 V5.17.txt:3093
 V5.17.txt:3094
 V5.17.txt:3095
 V5.17.txt:3096
 V5.17.txt:3097
 V5.17.txt:3098
 V5.17.txt:3099
 V5.17.txt:3100
 V5.17.txt:3101
 V5.17.txt:3102
 V5.17.txt:3103
 V5.17.txt:3104
 V5.17.txt:3105
 V5.17.txt:3106
 V5.17.txt:3107
 V5.17.txt:3108
 V5.17.txt:3109
 V5.17.txt:3110
 V5.17.txt:3111
 V5.17.txt:3112
 V5.17.txt:3113
 V5.17.txt:3114
 V5.17.txt:3115
 V5.17.txt:3116
 V5.17.txt:3117
 V5.17.txt:3118
 V5.17.txt:3119
 V5.17.txt:3120
 V5.17.txt:3121
 V5.17.txt:3122
 V5.17.txt:3123
 V5.17.txt:3124
 V5.17.txt:3125
 V5.17.txt:3126
 V5.17.txt:3127
 V5.17.txt:3128
 V5.17.txt:3129
 V5.17.txt:3130
 V5.17.txt:3131
 V5.17.txt:3132
 V5.17.txt:3133
 V5.17.txt:3134
 V5.17.txt:3135
 V5.17.txt:3136
 V5.17.txt:3137
 V5.17.txt:3138
 V5.17.txt:3139
 V5.17.txt:3140
 V5.17.txt:3141
 V5.17.txt:3142
 V5.17.txt:3143
 V5.17.txt:3144
 V5.17.txt:3145
 V5.17.txt:3146
 V5.17.txt:3147
 V5.17.txt:3148
 V5.17.txt:3149
 V5.17.txt:3150
 V5.17.txt:3151
 V5.17.txt:3152
 V5.17.txt:3153
 V5.17.txt:3154
 V5.17.txt:3155
 V5.17.txt:3156
 V5.17.txt:3157
 V5.17.txt:3158
 V5.17.txt:3159
 V5.17.txt:3160
 V5.17.txt:3161
 V5.17.txt:3162
 V5.17.txt:3163
 V5.17.txt:3164
 V5.17.txt:3165
 V5.17.txt:3166
 V5.17.txt:3167
 V5.17.txt:3168
 V5.17.txt:3169
 V5.17.txt:3170
 V5.17.txt:3171
 V5.17.txt:3172
 V5.17.txt:3173
 V5.17.txt:3174
 V5.17.txt:3175
 V5.17.txt:3176
 V5.17.txt:3177
 V5.17.txt:3178
 V5.17.txt:3179
 V5.17.txt:3180
 V5.17.txt:3181
 V5.17.txt:3182
 V5.17.txt:3183
 V5.17.txt:3184
 V5.17.txt:3185
 V5.17.txt:3186
 V5.17.txt:3187
 V5.17.txt:3188
 V5.17.txt:3189
 V5.17.txt:3190
 V5.17.txt:3191
 V5.17.txt:3192
 V5.17.txt:3193
 V5.17.txt:3194
 V5.17.txt:3195
 V5.17.txt:3196
 V5.17.txt:3197
 V5.17.txt:3198
 V5.17.txt:3199
 V5.17.txt:3200
 V5.17.txt:3201
 V5.17.txt:3202
 V5.17.txt:3203
 V5.17.txt:3204
 V5.17.txt:3205
 V5.17.txt:3206
 V5.17.txt:3207
 V5.17.txt:3208
 V5.17.txt:3209
 V5.17.txt:3210
 V5.17.txt:3211
 V5.17.txt:3212
 V5.17.txt:3213
 V5.17.txt:3214
 V5.17.txt:3215
 V5.17.txt:3216
 V5.17.txt:3217
 V5.17.txt:3218
 V5.17.txt:3219
 V5.17.txt:3220
 V5.17.txt:3221
 V5.17.txt:3222
 V5.17.txt:3223
 V5.17.txt:3224
 V5.17.txt:3225
 V5.17.txt:3226
 V5.17.txt:3227
 V5.17.txt:3228
 V5.17.txt:3229
 V5.17.txt:3230
 V5.17.txt:3231
 V5.17.txt:3232
 V5.17.txt:3233
 V5.17.txt:3234
 V5.17.txt:3235
 V5.17.txt:3236
 V5.17.txt:3237
 V5.17.txt:3238
 V5.17.txt:3239
 V5.17.txt:3240
 V5.17.txt:3241
 V5.17.txt:3242
 V5.17.txt:3243
 V5.17.txt:3244
 V5.17.txt:3245
 V5.17.txt:3246
 V5.17.txt:3247
 V5.17.txt:3248
 V5.17.txt:3249
 V5.17.txt:3250
 V5.17.txt:3251
 V5.17.txt:3252
 V5.17.txt:3253
 V5.17.txt:3254
 V5.17.txt:3255
 V5.17.txt:3256
 V5.17.txt:3257
 V5.17.txt:3258
 V5.17.txt:3259
 V5.17.txt:3260
 V5.17.txt:3261
 V5.17.txt:3262
 V5.17.txt:3263
 V5.17.txt:3264
 V5.17.txt:3265
 V5.17.txt:3266
 V5.17.txt:3267
 V5.17.txt:3268
 V5.17.txt:3269
 V5.17.txt:3270
 V5.17.txt:3271
 V5.17.txt:3272
 V5.17.txt:3273
 V5.17.txt:3274
 V5.17.txt:3275
 V5.17.txt:3276
 V5.17.txt:3277
 V5.17.txt:3278
 V5.17.txt:3279
 V5.17.txt:3280
 V5.17.txt:3281
 V5.17.txt:3282
 V5.17.txt:3283
 V5.17.txt:3284
 V5.17.txt:3285
 V5.17.txt:3286
 V5.17.txt:3287
 V5.17.txt:3288
 V5.17.txt:3289
 V5.17.txt:3290
 V5.17.txt:3291
 V5.17.txt:3292
 V5.17.txt:3293
 V5.17.txt:3294
 V5.17.txt:3295
 V5.17.txt:3296
 V5.17.txt:3297
 V5.17.txt:3298
 V5.17.txt:3299
 V5.17.txt:3300
 V5.17.txt:3301
 V5.17.txt:3302
 V5.17.txt:3303
 V5.17.txt:3304
 V5.17.txt:3305
 V5.17.txt:3306
 V5.17.txt:3307
 V5.17.txt:3308
 V5.17.txt:3309
 V5.17.txt:3310
 V5.17.txt:3311
 V5.17.txt:3312
 V5.17.txt:3313
 V5.17.txt:3314
 V5.17.txt:3315
 V5.17.txt:3316
 V5.17.txt:3317
 V5.17.txt:3318
 V5.17.txt:3319
 V5.17.txt:3320
 V5.17.txt:3321
 V5.17.txt:3322
 V5.17.txt:3323
 V5.17.txt:3324
 V5.17.txt:3325
 V5.17.txt:3326
 V5.17.txt:3327
 V5.17.txt:3328
 V5.17.txt:3329
 V5.17.txt:3330
 V5.17.txt:3331
 V5.17.txt:3332
 V5.17.txt:3333
 V5.17.txt:3334
 V5.17.txt:3335
 V5.17.txt:3336
 V5.17.txt:3337
 V5.17.txt:3338
 V5.17.txt:3339
 V5.17.txt:3340
 V5.17.txt:3341
 V5.17.txt:3342
 V5.17.txt:3343
 V5.17.txt:3344
 V5.17.txt:3345
 V5.17.txt:3346
 V5.17.txt:3347
 V5.17.txt:3348
 V5.17.txt:3349
 V5.17.txt:3350
 V5.17.txt:3351
 V5.17.txt:3352
 V5.17.txt:3353
 V5.17.txt:3354
 V5.17.txt:3355
 V5.17.txt:3356
 V5.17.txt:3357
 V5.17.txt:3358
 V5.17.txt:3359
 V5.17.txt:3360
 V5.17.txt:3361
 V5.17.txt:3362
 V5.17.txt:3363
 V5.17.txt:3364
 V5.17.txt:3365
 V5.17.txt:3366
 V5.17.txt:3367
 V5.17.txt:3368
 V5.17.txt:3369
 V5.17.txt:3370
 V5.17.txt:3371
 V5.17.txt:3372
 V5.17.txt:3373
 V5.17.txt:3374
 V5.17.txt:3375
 V5.17.txt:3376
 V5.17.txt:3377
 V5.17.txt:3378
 V5.17.txt:3379
 V5.17.txt:3380
 V5.17.txt:3381
 V5.17.txt:3382
 V5.17.txt:3383
 V5.17.txt:3384
 V5.17.txt:3385
 V5.17.txt:3386
 V5.17.txt:3387
 V5.17.txt:3388
 V5.17.txt:3389
 V5.17.txt:3390
 V5.17.txt:3391
 V5.17.txt:3392
 V5.17.txt:3393
 V5.17.txt:3394
 V5.17.txt:3395
 V5.17.txt:3396
 V5.17.txt:3397
 V5.17.txt:3398
 V5.17.txt:3399
 V5.17.txt:3400
 V5.17.txt:3401
 V5.17.txt:3402
 V5.17.txt:3403
 V5.17.txt:3404
 V5.17.txt:3405
 V5.17.txt:3406
 V5.17.txt:3407
 V5.17.txt:3408
 V5.17.txt:3409
 V5.17.txt:3410
 V5.17.txt:3411
 V5.17.txt:3412
 V5.17.txt:3413
 V5.17.txt:3414
 V5.17.txt:3415
 V5.17.txt:3416
 V5.17.txt:3417
 V5.17.txt:3418
 V5.17.txt:3419
 V5.17.txt:3420
 V5.17.txt:3421
 V5.17.txt:3422
 V5.17.txt:3423
 V5.17.txt:3424
 V5.17.txt:3425
 V5.17.txt:3426
 V5.17.txt:3427
 V5.17.txt:3428
 V5.17.txt:3429
 V5.17.txt:3430
 V5.17.txt:3431
 V5.17.txt:3432
 V5.17.txt:3433
 V5.17.txt:3434
 V5.17.txt:3435
 V5.17.txt:3436
 V5.17.txt:3437
 V5.17.txt:3438
 V5.17.txt:3439
 V5.17.txt:3440
 V5.17.txt:3441
 V5.17.txt:3442
 V5.17.txt:3443
 V5.17.txt:3444
 V5.17.txt:3445
 V5.17.txt:3446
 V5.17.txt:3447
 V5.17.txt:3448
 V5.17.txt:3449
 V5.17.txt:3450
 V5.17.txt:3451
 V5.17.txt:3452
 V5.17.txt:3453
 V5.17.txt:3454
 V5.17.txt:3455
 V5.17.txt:3456
 V5.17.txt:3457
 V5.17.txt:3458
 V5.17.txt:3459
 V5.17.txt:3460
 V5.17.txt:3461
 V5.17.txt:3462
 V5.17.txt:3463
 V5.17.txt:3464
 V5.17.txt:3465
 V5.17.txt:3466
 V5.17.txt:3467
 V5.17.txt:3468
 V5.17.txt:3469
 V5.17.txt:3470
 V5.17.txt:3471
 V5.17.txt:3472
 V5.17.txt:3473
 V5.17.txt:3474
 V5.17.txt:3475
 V5.17.txt:3476
 V5.17.txt:3477
 V5.17.txt:3478
 V5.17.txt:3479
 V5.17.txt:3480
 V5.17.txt:3481
 V5.17.txt:3482
 V5.17.txt:3483
 V5.17.txt:3484
 V5.17.txt:3485
 V5.17.txt:3486
 V5.17.txt:3487
 V5.17.txt:3488
 V5.17.txt:3489
 V5.17.txt:3490
 V5.17.txt:3491
 V5.17.txt:3492
 V5.17.txt:3493
 V5.17.txt:3494
 V5.17.txt:3495
 V5.17.txt:3496
 V5.17.txt:3497
 V5.17.txt:3498
 V5.17.txt:3499
 V5.17.txt:3500
 V5.17.txt:3501
 V5.17.txt:3502
 V5.17.txt:3503
 V5.17.txt:3504
 V5.17.txt:3505
 V5.17.txt:3506
 V5.17.txt:3507
 V5.17.txt:3508
 V5.17.txt:3509
 V5.17.txt:3510
 V5.17.txt:3511
 V5.17.txt:3512
 V5.17.txt:3513
 V5.17.txt:3514
 V5.17.txt:3515
 V5.17.txt:3516
 V5.17.txt:3517
 V5.17.txt:3518
 V5.17.txt:3519
 V5.17.txt:3520
 V5.17.txt:3521
 V5.17.txt:3522
 V5.17.txt:3523
 V5.17.txt:3524
 V5.17.txt:3525
 V5.17.txt:3526
 V5.17.txt:3527
 V5.17.txt:3528
 V5.17.txt:3529
 V5.17.txt:3530
 V5.17.txt:3531
 V5.17.txt:3532
 V5.17.txt:3533
 V5.17.txt:3534
 V5.17.txt:3535
 V5.17.txt:3536
 V5.17.txt:3537
 V5.17.txt:3538
 V5.17.txt:3539
 V5.17.txt:3540
 V5.17.txt:3541
 V5.17.txt:3542
 V5.17.txt:3543
 V5.17.txt:3544
 V5.17.txt:3545
 V5.17.txt:3546
 V5.17.txt:3547
 V5.17.txt:3548
 V5.17.txt:3549
 V5.17.txt:3550
 V5.17.txt:3551
 V5.17.txt:3552
 V5.17.txt:3553
 V5.17.txt:3554
 V5.17.txt:3555
 V5.17.txt:3556
 V5.17.txt:3557
 V5.17.txt:3558
 V5.17.txt:3559
 V5.17.txt:3560
 V5.17.txt:3561
 V5.17.txt:3562
 V5.17.txt:3563
 V5.17.txt:3564
 V5.17.txt:3565
 V5.17.txt:3566
 V5.17.txt:3567
 V5.17.txt:3568
 V5.17.txt:3569
 V5.17.txt:3570
 V5.17.txt:3571
 V5.17.txt:3572
 V5.17.txt:3573
 V5.17.txt:3574
 V5.17.txt:3575
 V5.17.txt:3576
 V5.17.txt:3577
 V5.17.txt:3578
 V5.17.txt:3579
 V5.17.txt:3580
 V5.17.txt:3581
 V5.17.txt:3582
 V5.17.txt:3583
 V5.17.txt:3584
 V5.17.txt:3585
 V5.17.txt:3586
 V5.17.txt:3587
 V5.17.txt:3588
 V5.17.txt:3589
 V5.17.txt:3590
 V5.17.txt:3591
 V5.17.txt:3592
 V5.17.txt:3593
 V5.17.txt:3594
 V5.17.txt:3595
 V5.17.txt:3596
 V5.17.txt:3597
 V5.17.txt:3598
 V5.17.txt:3599
 V5.17.txt:3600
 V5.17.txt:3601
 V5.17.txt:3602
 V5.17.txt:3603
 V5.17.txt:3604
 V5.17.txt:3605
 V5.17.txt:3606
 V5.17.txt:3607
 V5.17.txt:3608
 V5.17.txt:3609
 V5.17.txt:3610
 V5.17.txt:3611
 V5.17.txt:3612
 V5.17.txt:3613
 V5.17.txt:3614
 V5.17.txt:3615
 V5.17.txt:3616
 V5.17.txt:3617
 V5.17.txt:3618
 V5.17.txt:3619
 V5.17.txt:3620
 V5.17.txt:3621
 V5.17.txt:3622
 V5.17.txt:3623
 V5.17.txt:3624
 V5.17.txt:3625
 V5.17.txt:3626
 V5.17.txt:3627
 V5.17.txt:3628
 V5.17.txt:3629
 V5.17.txt:3630
 V5.17.txt:3631
 V5.17.txt:3632
 V5.17.txt:3633
 V5.17.txt:3634
 V5.17.txt:3635
 V5.17.txt:3636
 V5.17.txt:3637
 V5.17.txt:3638
 V5.17.txt:3639
 V5.17.txt:3640
 V5.17.txt:3641
 V5.17.txt:3642
 V5.17.txt:3643
 V5.17.txt:3644
 V5.17.txt:3645
 V5.17.txt:3646
 V5.17.txt:3647
 V5.17.txt:3648
 V5.17.txt:3649
 V5.17.txt:3650
 V5.17.txt:3651
 V5.17.txt:3652
 V5.17.txt:3653
 V5.17.txt:3654
 V5.17.txt:3655
 V5.17.txt:3656
 V5.17.txt:3657
 V5.17.txt:3658
 V5.17.txt:3659
 V5.17.txt:3660
 V5.17.txt:3661
 V5.17.txt:3662
 V5.17.txt:3663
 V5.17.txt:3664
 V5.17.txt:3665
 V5.17.txt:3666
 V5.17.txt:3667
 V5.17.txt:3668
 V5.17.txt:3669
 V5.17.txt:3670
 V5.17.txt:3671
 V5.17.txt:3672
 V5.17.txt:3673
 V5.17.txt:3674
 V5.17.txt:3675
 V5.17.txt:3676
 V5.17.txt:3677
 V5.17.txt:3678
 V5.17.txt:3679
 V5.17.txt:3680
 V5.17.txt:3681
 V5.17.txt:3682
 V5.17.txt:3683
 V5.17.txt:3684
 V5.17.txt:3685
 V5.17.txt:3686
 V5.17.txt:3687
 V5.17.txt:3688
 V5.17.txt:3689
 V5.17.txt:3690
 V5.17.txt:3691
 V5.17.txt:3692
 V5.17.txt:3693
 V5.17.txt:3694
 V5.17.txt:3695
 V5.17.txt:3696
 V5.17.txt:3697
 V5.17.txt:3698
 V5.17.txt:3699
 V5.17.txt:3700
 V5.17.txt:3701
 V5.17.txt:3702
 V5.17.txt:3703
 V5.17.txt:3704
 V5.17.txt:3705
 V5.17.txt:3706
 V5.17.txt:3707
 V5.17.txt:3708
 V5.17.txt:3709
 V5.17.txt:3710
 V5.17.txt:3711
 V5.17.txt:3712
 V5.17.txt:3713
 V5.17.txt:3714
 V5.17.txt:3715
 V5.17.txt:3716
 V5.17.txt:3717
 V5.17.txt:3718
 V5.17.txt:3719
 V5.17.txt:3720
 V5.17.txt:3721
 V5.17.txt:3722
 V5.17.txt:3723
 V5.17.txt:3724
 V5.17.txt:3725
 V5.17.txt:3726
 V5.17.txt:3727
 V5.17.txt:3728
 V5.17.txt:3729
 V5.17.txt:3730
 V5.17.txt:3731
 V5.17.txt:3732
 V5.17.txt:3733
 V5.17.txt:3734
 V5.17.txt:3735
 V5.17.txt:3736
 V5.17.txt:3737
 V5.17.txt:3738
 V5.17.txt:3739
 V5.17.txt:3740
 V5.17.txt:3741
 V5.17.txt:3742
 V5.17.txt:3743
 V5.17.txt:3744
 V5.17.txt:3745
 V5.17.txt:3746
 V5.17.txt:3747
 V5.17.txt:3748
 V5.17.txt:3749
 V5.17.txt:3750
 V5.17.txt:3751
 V5.17.txt:3752
 V5.17.txt:3753
 V5.17.txt:3754
 V5.17.txt:3755
 V5.17.txt:3756
 V5.17.txt:3757
 V5.17.txt:3758
 V5.17.txt:3759
 V5.17.txt:3760
 V5.17.txt:3761
 V5.17.txt:3762
 V5.17.txt:3763
 V5.17.txt:3764
 V5.17.txt:3765
 V5.17.txt:3766
 V5.17.txt:3767
 V5.17.txt:3768
 V5.17.txt:3769
 V5.17.txt:3770
 V5.17.txt:3771
 V5.17.txt:3772
 V5.17.txt:3773
 V5.17.txt:3774
 V5.17.txt:3775
 V5.17.txt:3776
 V5.17.txt:3777
 V5.17.txt:3778
 V5.17.txt:3779
 V5.17.txt:3780
 V5.17.txt:3781
 V5.17.txt:3782
 V5.17.txt:3783
 V5.17.txt:3784
 V5.17.txt:3785
 V5.17.txt:3786
 V5.17.txt:3787
 V5.17.txt:3788
 V5.17.txt:3789
 V5.17.txt:3790
 V5.17.txt:3791
 V5.17.txt:3792
 V5.17.txt:3793
 V5.17.txt:3794
 V5.17.txt:3795
 V5.17.txt:3796
 V5.17.txt:3797
 V5.17.txt:3798
 V5.17.txt:3799
 V5.17.txt:3800
 V5.17.txt:3801
 V5.17.txt:3802
 V5.17.txt:3803
 V5.17.txt:3804
 V5.17.txt:3805
 V5.17.txt:3806
 V5.17.txt:3807
 V5.17.txt:3808
 V5.17.txt:3809
 V5.17.txt:3810
 V5.17.txt:3811
 V5.17.txt:3812
 V5.17.txt:3813
 V5.17.txt:3814
 V5.17.txt:3815
 V5.17.txt:3816
 V5.17.txt:3817
 V5.17.txt:3818
 V5.17.txt:3819
 V5.17.txt:3820
 V5.17.txt:3821
 V5.17.txt:3822
 V5.17.txt:3823
 V5.17.txt:3824
 V5.17.txt:3825
 V5.17.txt:3826
 V5.17.txt:3827
 V5.17.txt:3828
 V5.17.txt:3829
 V5.17.txt:3830
 V5.17.txt:3831
 V5.17.txt:3832
 V5.17.txt:3833
 V5.17.txt:3834
 V5.17.txt:3835
 V5.17.txt:3836
 V5.17.txt:3837
 V5.17.txt:3838
 V5.17.txt:3839
 V5.17.txt:3840
 V5.17.txt:3841
 V5.17.txt:3842
 V5.17.txt:3843
 V5.17.txt:3844
 V5.17.txt:3845
 V5.17.txt:3846
 V5.17.txt:3847
 V5.17.txt:3848
 V5.17.txt:3849
 V5.17.txt:3850
 V5.17.txt:3851
 V5.17.txt:3852
 V5.17.txt:3853
 V5.17.txt:3854
 V5.17.txt:3855
 V5.17.txt:3856
 V5.17.txt:3857
 V5.17.txt:3858
 V5.17.txt:3859
 V5.17.txt:3860
 V5.17.txt:3861
 V5.17.txt:3862
 V5.17.txt:3863
 V5.17.txt:3864
 V5.17.txt:3865
 V5.17.txt:3866
 V5.17.txt:3867
 V5.17.txt:3868
 V5.17.txt:3869
 V5.17.txt:3870
 V5.17.txt:3871
 V5.17.txt:3872
 V5.17.txt:3873
 V5.17.txt:3874
 V5.17.txt:3875
 V5.17.txt:3876
 V5.17.txt:3877
 V5.17.txt:3878
 V5.17.txt:3879
 V5.17.txt:3880
 V5.17.txt:3881
 V5.17.txt:3882
 V5.17.txt:3883
 V5.17.txt:3884
 V5.17.txt:3885
 V5.17.txt:3886
 V5.17.txt:3887
 V5.17.txt:3888
 V5.17.txt:3889
 V5.17.txt:3890
 V5.17.txt:3891
 V5.17.txt:3892
 V5.17.txt:3893
 V5.17.txt:3894
 V5.17.txt:3895
 V5.17.txt:3896
 V5.17.txt:3897
 V5.17.txt:3898
 V5.17.txt:3899
 V5.17.txt:3900
 V5.17.txt:3901
 V5.17.txt:3902
 V5.17.txt:3903
 V5.17.txt:3904
 V5.17.txt:3905
 V5.17.txt:3906
 V5.17.txt:3907
 V5.17.txt:3908
 V5.17.txt:3909
 V5.17.txt:3910
 V5.17.txt:3911
 V5.17.txt:3912
 V5.17.txt:3913
 V5.17.txt:3914
 V5.17.txt:3915
 V5.17.txt:3916
 V5.17.txt:3917
 V5.17.txt:3918
 V5.17.txt:3919
 V5.17.txt:3920
 V5.17.txt:3921
 V5.17.txt:3922
 V5.17.txt:3923
 V5.17.txt:3924
 V5.17.txt:3925
 V5.17.txt:3926
 V5.17.txt:3927
 V5.17.txt:3928
 V5.17.txt:3929
 V5.17.txt:3930
 V5.17.txt:3931
 V5.17.txt:3932
 V5.17.txt:3933
 V5.17.txt:3934
 V5.17.txt:3935
 V5.17.txt:3936
 V5.17.txt:3937
 V5.17.txt:3938
 V5.17.txt:3939
 V5.17.txt:3940
 V5.17.txt:3941
 V5.17.txt:3942
 V5.17.txt:3943
 V5.17.txt:3944
 V5.17.txt:3945
 V5.17.txt:3946
 V5.17.txt:3947
 V5.17.txt:3948
 V5.17.txt:3949
 V5.17.txt:3950
 V5.17.txt:3951
 V5.17.txt:3952
 V5.17.txt:3953
 V5.17.txt:3954
 V5.17.txt:3955
 V5.17.txt:3956
 V5.17.txt:3957
 V5.17.txt:3958
 V5.17.txt:3959
 V5.17.txt:3960
 V5.17.txt:3961
 V5.17.txt:3962
 V5.17.txt:3963
 V5.17.txt:3964
 V5.17.txt:3965
 V5.17.txt:3966
 V5.17.txt:3967
 V5.17.txt:3968
 V5.17.txt:3969
 V5.17.txt:3970
 V5.17.txt:3971
 V5.17.txt:3972
 V5.17.txt:3973
 V5.17.txt:3974
 V5.17.txt:3975
 V5.17.txt:3976
 V5.17.txt:3977
 V5.17.txt:3978
 V5.17.txt:3979
 V5.17.txt:3980
 V5.17.txt:3981
 V5.17.txt:3982
 V5.17.txt:3983
 V5.17.txt:3984
 V5.17.txt:3985
 V5.17.txt:3986
 V5.17.txt:3987
 V5.17.txt:3988
 V5.17.txt:3989
 V5.17.txt:3990
 V5.17.txt:3991
 V5.17.txt:3992
 V5.17.txt:3993
 V5.17.txt:3994
 V5.17.txt:3995
 V5.17.txt:3996
 V5.17.txt:3997
 V5.17.txt:3998
 V5.17.txt:3999
 V5.17.txt:4000
 V5.17.txt:4001
 V5.17.txt:4002
 V5.17.txt:4003
 V5.17.txt:4004
 V5.17.txt:4005
 V5.17.txt:4006
 V5.17.txt:4007
 V5.17.txt:4008
 V5.17.txt:4009
 V5.17.txt:4010
 V5.17.txt:4011
 V5.17.txt:4012
 V5.17.txt:4013
 V5.17.txt:4014
 V5.17.txt:4015
 V5.17.txt:4016
 V5.17.txt:4017
 V5.17.txt:4018
 V5.17.txt:4019
 V5.17.txt:4020
 V5.17.txt:4021
 V5.17.txt:4022
 V5.17.txt:4023
 V5.17.txt:4024
 V5.17.txt:4025
 V5.17.txt:4026
 V5.17.txt:4027
 V5.17.txt:4028
 V5.17.txt:4029
 V5.17.txt:4030
 V5.17.txt:4031
 V5.17.txt:4032
 V5.17.txt:4033
 V5.17.txt:4034
 V5.17.txt:4035
 V5.17.txt:4036
 V5.17.txt:4037
 V5.17.txt:4038
 V5.17.txt:4039
 V5.17.txt:4040
 V5.17.txt:4041
 V5.17.txt:4042
 V5.17.txt:4043
 V5.17.txt:4044
 V5.17.txt:4045
 V5.17.txt:4046
 V5.17.txt:4047
 V5.17.txt:4048
 V5.17.txt:4049
 V5.17.txt:4050
 V5.17.txt:4051
 V5.17.txt:4052
 V5.17.txt:4053
 V5.17.txt:4054
 V5.17.txt:4055
 V5.17.txt:4056
 V5.17.txt:4057
 V5.17.txt:4058
 V5.17.txt:4059
 V5.17.txt:4060
 V5.17.txt:4061
 V5.17.txt:4062
 V5.17.txt:4063
 V5.17.txt:4064
 V5.17.txt:4065
 V5.17.txt:4066
 V5.17.txt:4067
 V5.17.txt:4068
 V5.17.txt:4069
 V5.17.txt:4070
 V5.17.txt:4071
 V5.17.txt:4072
 V5.17.txt:4073
 V5.17.txt:4074
 V5.17.txt:4075
 V5.17.txt:4076
 V5.17.txt:4077
 V5.17.txt:4078
 V5.17.txt:4079
 V5.17.txt:4080
 V5.17.txt:4081
 V5.17.txt:4082
 V5.17.txt:4083
 V5.17.txt:4084
 V5.17.txt:4085
 V5.17.txt:4086
 V5.17.txt:4087
 V5.17.txt:4088
 V5.17.txt:4089
 V5.17.txt:4090
 V5.17.txt:4091
 V5.17.txt:4092
 V5.17.txt:4093
 V5.17.txt:4094
 V5.17.txt:4095
 V5.17.txt:4096
 V5.17.txt:4097
 V5.17.txt:4098
 V5.17.txt:4099
 V5.17.txt:4100
 V5.17.txt:4101
 V5.17.txt:4102
 V5.17.txt:4103
 V5.17.txt:4104
 V5.17.txt:4105
 V5.17.txt:4106
 V5.17.txt:4107
 V5.17.txt:4108
 V5.17.txt:4109
 V5.17.txt:4110
 V5.17.txt:4111
 V5.17.txt:4112
 V5.17.txt:4113
 V5.17.txt:4114
 V5.17.txt:4115
 V5.17.txt:4116
 V5.17.txt:4117
 V5.17.txt:4118
 V5.17.txt:4119
 V5.17.txt:4120
 V5.17.txt:4121
 V5.17.txt:4122
 V5.17.txt:4123
 V5.17.txt:4124
 V5.17.txt:4125
 V5.17.txt:4126
 V5.17.txt:4127
 V5.17.txt:4128
 V5.17.txt:4129
 V5.17.txt:4130
 V5.17.txt:4131
 V5.17.txt:4132
 V5.17.txt:4133
 V5.17.txt:4134
 V5.17.txt:4135
 V5.17.txt:4136
 V5.17.txt:4137
 V5.17.txt:4138
 V5.17.txt:4139
 V5.17.txt:4140
 V5.17.txt:4141
 V5.17.txt:4142
 V5.17.txt:4143
 V5.17.txt:4144
 V5.17.txt:4145
 V5.17.txt:4146
 V5.17.txt:4147
 V5.17.txt:4148
 V5.17.txt:4149
 V5.17.txt:4150
 V5.17.txt:4151
 V5.17.txt:4152
 V5.17.txt:4153
 V5.17.txt:4154
 V5.17.txt:4155
 V5.17.txt:4156
 V5.17.txt:4157
 V5.17.txt:4158
 V5.17.txt:4159
 V5.17.txt:4160
 V5.17.txt:4161
 V5.17.txt:4162
 V5.17.txt:4163
 V5.17.txt:4164
 V5.17.txt:4165
 V5.17.txt:4166
 V5.17.txt:4167
 V5.17.txt:4168
 V5.17.txt:4169
 V5.17.txt:4170
 V5.17.txt:4171
 V5.17.txt:4172
 V5.17.txt:4173
 V5.17.txt:4174
 V5.17.txt:4175
 V5.17.txt:4176
 V5.17.txt:4177
 V5.17.txt:4178
 V5.17.txt:4179
 V5.17.txt:4180
 V5.17.txt:4181
 V5.17.txt:4182
 V5.17.txt:4183
 V5.17.txt:4184
 V5.17.txt:4185
 V5.17.txt:4186
 V5.17.txt:4187
 V5.17.txt:4188
 V5.17.txt:4189
 V5.17.txt:4190
 V5.17.txt:4191
 V5.17.txt:4192
 V5.17.txt:4193
 V5.17.txt:4194
 V5.17.txt:4195
 V5.17.txt:4196
 V5.17.txt:4197
 V5.17.txt:4198
 V5.17.txt:4199
 V5.17.txt:4200
 V5.17.txt:4201
 V5.17.txt:4202
 V5.17.txt:4203
 V5.17.txt:4204
 V5.17.txt:4205
 V5.17.txt:4206
 V5.17.txt:4207
 V5.17.txt:4208
 V5.17.txt:4209
 V5.17.txt:4210
 V5.17.txt:4211
 V5.17.txt:4212
 V5.17.txt:4213
 V5.17.txt:4214
 V5.17.txt:4215
 V5.17.txt:4216
 V5.17.txt:4217
 V5.17.txt:4218
 V5.17.txt:4219
 V5.17.txt:4220
 V5.17.txt:4221
 V5.17.txt:4222
 V5.17.txt:4223
 V5.17.txt:4224
 V5.17.txt:4225
 V5.17.txt:4226
 V5.17.txt:4227
 V5.17.txt:4228
 V5.17.txt:4229
 V5.17.txt:4230
 V5.17.txt:4231
 V5.17.txt:4232
 V5.17.txt:4233
 V5.17.txt:4234
 V5.17.txt:4235
 V5.17.txt:4236
 V5.17.txt:4237
 V5.17.txt:4238
 V5.17.txt:4239
 V5.17.txt:4240
 V5.17.txt:4241
 V5.17.txt:4242
 V5.17.txt:4243
 V5.17.txt:4244
 V5.17.txt:4245
 V5.17.txt:4246
 V5.17.txt:4247
 V5.17.txt:4248
 V5.17.txt:4249
 V5.17.txt:4250
 V5.17.txt:4251
 V5.17.txt:4252
 V5.17.txt:4253
 V5.17.txt:4254
 V5.17.txt:4255
 V5.17.txt:4256
 V5.17.txt:4257
 V5.17.txt:4258
 V5.17.txt:4259
 V5.17.txt:4260
 V5.17.txt:4261
 V5.17.txt:4262
 V5.17.txt:4263
 V5.17.txt:4264
 V5.17.txt:4265
 V5.17.txt:4266
 V5.17.txt:4267
 V5.17.txt:4268
 V5.17.txt:4269
 V5.17.txt:4270
 V5.17.txt:4271
 V5.17.txt:4272
 V5.17.txt:4273
 V5.17.txt:4274
 V5.17.txt:4275
 V5.17.txt:4276
 V5.17.txt:4277
 V5.17.txt:4278
 V5.17.txt:4279
 V5.17.txt:4280
 V5.17.txt:4281
 V5.17.txt:4282
 V5.17.txt:4283
 V5.17.txt:4284
 V5.17.txt:4285
 V5.17.txt:4286
 V5.17.txt:4287
 V5.17.txt:4288
 V5.17.txt:4289
 V5.17.txt:4290
 V5.17.txt:4291
 V5.17.txt:4292
 V5.17.txt:4293
 V5.17.txt:4294
 V5.17.txt:4295
 V5.17.txt:4296
 V5.17.txt:4297
 V5.17.txt:4298
 V5.17.txt:4299
 V5.17.txt:4300
 V5.17.txt:4301
 V5.17.txt:4302
 V5.17.txt:4303
 V5.17.txt:4304
 V5.17.txt:4305
 V5.17.txt:4306
 V5.17.txt:4307
 V5.17.txt:4308
 V5.17.txt:4309
 V5.17.txt:4310
 V5.17.txt:4311
 V5.17.txt:4312
 V5.17.txt:4313
 V5.17.txt:4314
 V5.17.txt:4315
 V5.17.txt:4316
 V5.17.txt:4317
 V5.17.txt:4318
 V5.17.txt:4319
 V5.17.txt:4320
 V5.17.txt:4321
 V5.17.txt:4322
 V5.17.txt:4323
 V5.17.txt:4324
 V5.17.txt:4325
 V5.17.txt:4326
 V5.17.txt:4327
 V5.17.txt:4328
 V5.17.txt:4329
 V5.17.txt:4330
 V5.17.txt:4331
 V5.17.txt:4332
 V5.17.txt:4333
 V5.17.txt:4334
 V5.17.txt:4335
 V5.17.txt:4336
 V5.17.txt:4337
 V5.17.txt:4338
 V5.17.txt:4339
 V5.17.txt:4340
 V5.17.txt:4341
 V5.17.txt:4342
 V5.17.txt:4343
 V5.17.txt:4344
 V5.17.txt:4345
 V5.17.txt:4346
 V5.17.txt:4347
 V5.17.txt:4348
 V5.17.txt:4349
 V5.17.txt:4350
 V5.17.txt:4351
 V5.17.txt:4352
 V5.17.txt:4353
 V5.17.txt:4354
 V5.17.txt:4355
 V5.17.txt:4356
 V5.17.txt:4357
 V5.17.txt:4358
 V5.17.txt:4359
 V5.17.txt:4360
 V5.17.txt:4361
 V5.17.txt:4362
 V5.17.txt:4363
 V5.17.txt:4364
 V5.17.txt:4365
 V5.17.txt:4366
 V5.17.txt:4367
 V5.17.txt:4368
 V5.17.txt:4369
 V5.17.txt:4370
 V5.17.txt:4371
 V5.17.txt:4372
 V5.17.txt:4373
 V5.17.txt:4374
 V5.17.txt:4375
 V5.17.txt:4376
 V5.17.txt:4377
 V5.17.txt:4378
 V5.17.txt:4379
 V5.17.txt:4380
 V5.17.txt:4381
 V5.17.txt:4382
 V5.17.txt:4383
 V5.17.txt:4384
 V5.17.txt:4385
 V5.17.txt:4386
 V5.17.txt:4387
 V5.17.txt:4388
 V5.17.txt:4389
 V5.17.txt:4390
 V5.17.txt:4391
 V5.17.txt:4392
 V5.17.txt:4393
 V5.17.txt:4394
 V5.17.txt:4395
 V5.17.txt:4396
 V5.17.txt:4397
 V5.17.txt:4398
 V5.17.txt:4399
 V5.17.txt:4400
 V5.17.txt:4401
 V5.17.txt:4402
 V5.17.txt:4403
 V5.17.txt:4404
 V5.17.txt:4405
 V5.17.txt:4406
 V5.17.txt:4407
 V5.17.txt:4408
 V5.17.txt:4409
 V5.17.txt:4410
 V5.17.txt:4411
 V5.17.txt:4412
 V5.17.txt:4413
 V5.17.txt:4414
 V5.17.txt:4415
 V5.17.txt:4416
 V5.17.txt:4417
 V5.17.txt:4418
 V5.17.txt:4419
 V5.17.txt:4420
 V5.17.txt:4421
 V5.17.txt:4422
 V5.17.txt:4423
 V5.17.txt:4424
 V5.17.txt:4425
 V5.17.txt:4426
 V5.17.txt:4427
 V5.17.txt:4428
 V5.17.txt:4429
 V5.17.txt:4430
 V5.17.txt:4431
 V5.17.txt:4432
 V5.17.txt:4433
 V5.17.txt:4434
 V5.17.txt:4435
 V5.17.txt:4436
 V5.17.txt:4437
 V5.17.txt:4438
 V5.17.txt:4439
 V5.17.txt:4440
 V5.17.txt:4441
 V5.17.txt:4442
 V5.17.txt:4443
 V5.17.txt:4444
 V5.17.txt:4445
 V5.17.txt:4446
 V5.17.txt:4447
 V5.17.txt:4448
 V5.17.txt:4449
 V5.17.txt:4450
 V5.17.txt:4451
 V5.17.txt:4452
 V5.17.txt:4453
 V5.17.txt:4454
 V5.17.txt:4455
 V5.17.txt:4456
 V5.17.txt:4457
 V5.17.txt:4458
 V5.17.txt:4459
 V5.17.txt:4460
 V5.17.txt:4461
 V5.17.txt:4462
 V5.17.txt:4463
 V5.17.txt:4464
 V5.17.txt:4465
 V5.17.txt:4466
 V5.17.txt:4467
 V5.17.txt:4468
 V5.17.txt:4469
 V5.17.txt:4470
 V5.17.txt:4471
 V5.17.txt:4472
 V5.17.txt:4473
 V5.17.txt:4474
 V5.17.txt:4475
 V5.17.txt:4476
 V5.17.txt:4477
 V5.17.txt:4478
 V5.17.txt:4479
 V5.17.txt:4480
 V5.17.txt:4481
 V5.17.txt:4482
 V5.17.txt:4483
 V5.17.txt:4484
 V5.17.txt:4485
 V5.17.txt:4486
 V5.17.txt:4487
 V5.17.txt:4488
 V5.17.txt:4489
 V5.17.txt:4490
 V5.17.txt:4491
 V5.17.txt:4492
 V5.17.txt:4493
 V5.17.txt:4494
 V5.17.txt:4495
 V5.17.txt:4496
 V5.17.txt:4497
 V5.17.txt:4498
 V5.17.txt:4499
 V5.17.txt:4500
 V5.17.txt:4501
 V5.17.txt:4502
 V5.17.txt:4503
 V5.17.txt:4504
 V5.17.txt:4505
 V5.17.txt:4506
 V5.17.txt:4507
 V5.17.txt:4508
 V5.17.txt:4509
 V5.17.txt:4510
 V5.17.txt:4511
 V5.17.txt:4512
 V5.17.txt:4513
 V5.17.txt:4514
 V5.17.txt:4515
 V5.17.txt:4516
 V5.17.txt:4517
 V5.17.txt:4518
 V5.17.txt:4519
 V5.17.txt:4520
 V5.17.txt:4521
 V5.17.txt:4522
 V5.17.txt:4523
 V5.17.txt:4524
 V5.17.txt:4525
 V5.17.txt:4526
 V5.17.txt:4527
 V5.17.txt:4528
 V5.17.txt:4529
 V5.17.txt:4530
 V5.17.txt:4531
 V5.17.txt:4532
 V5.17.txt:4533
 V5.17.txt:4534
 V5.17.txt:4535
 V5.17.txt:4536
 V5.17.txt:4537
 V5.17.txt:4538
 V5.17.txt:4539
 V5.17.txt:4540
 V5.17.txt:4541
 V5.17.txt:4542
 V5.17.txt:4543
 V5.17.txt:4544
 V5.17.txt:4545
 V5.17.txt:4546
 V5.17.txt:4547
 V5.17.txt:4548
 V5.17.txt:4549
 V5.17.txt:4550
 V5.17.txt:4551
 V5.17.txt:4552
 V5.17.txt:4553
 V5.17.txt:4554
 V5.17.txt:4555
 V5.17.txt:4556
 V5.17.txt:4557
 V5.17.txt:4558
 V5.17.txt:4559
 V5.17.txt:4560
 V5.17.txt:4561
 V5.17.txt:4562
 V5.17.txt:4563
 V5.17.txt:4564
 V5.17.txt:4565
 V5.17.txt:4566
 V5.17.txt:4567
 V5.17.txt:4568
 V5.17.txt:4569
 V5.17.txt:4570
 V5.17.txt:4571
 V5.17.txt:4572
 V5.17.txt:4573
 V5.17.txt:4574
 V5.17.txt:4575
 V5.17.txt:4576
 V5.17.txt:4577
 V5.17.txt:4578
 V5.17.txt:4579
 V5.17.txt:4580
 V5.17.txt:4581
 V5.17.txt:4582
 V5.17.txt:4583
 V5.17.txt:4584
 V5.17.txt:4585
 V5.17.txt:4586
 V5.17.txt:4587
 V5.17.txt:4588
 V5.17.txt:4589
 V5.17.txt:4590
 V5.17.txt:4591
 V5.17.txt:4592
 V5.17.txt:4593
 V5.17.txt:4594
 V5.17.txt:4595
 V5.17.txt:4596
 V5.17.txt:4597
 V5.17.txt:4598
 V5.17.txt:4599
 V5.17.txt:4600
 V5.17.txt:4601
 V5.17.txt:4602
 V5.17.txt:4603
 V5.17.txt:4604
 V5.17.txt:4605
 V5.17.txt:4606
 V5.17.txt:4607
 V5.17.txt:4608
 V5.17.txt:4609
 V5.17.txt:4610
 V5.17.txt:4611
 V5.17.txt:4612
 V5.17.txt:4613
 V5.17.txt:4614
 V5.17.txt:4615
 V5.17.txt:4616
 V5.17.txt:4617
 V5.17.txt:4618
 V5.17.txt:4619
 V5.17.txt:4620
 V5.17.txt:4621
 V5.17.txt:4622
 V5.17.txt:4623
 V5.17.txt:4624
 V5.17.txt:4625
 V5.17.txt:4626
 V5.17.txt:4627
 V5.17.txt:4628
 V5.17.txt:4629
 V5.17.txt:4630
 V5.17.txt:4631
 V5.17.txt:4632
 V5.17.txt:4633
 V5.17.txt:4634
 V5.17.txt:4635
 V5.17.txt:4636
 V5.17.txt:4637
 V5.17.txt:4638
 V5.17.txt:4639
 V5.17.txt:4640
 V5.17.txt:4641
 V5.17.txt:4642
 V5.17.txt:4643
 V5.17.txt:4644
 V5.17.txt:4645
 V5.17.txt:4646
 V5.17.txt:4647
 V5.17.txt:4648
 V5.17.txt:4649
 V5.17.txt:4650
 V5.17.txt:4651
 V5.17.txt:4652
 V5.17.txt:4653
 V5.17.txt:4654
 V5.17.txt:4655
 V5.17.txt:4656
 V5.17.txt:4657
 V5.17.txt:4658
 V5.17.txt:4659
 V5.17.txt:4660
 V5.17.txt:4661
 V5.17.txt:4662
 V5.17.txt:4663
 V5.17.txt:4664
 V5.17.txt:4665
 V5.17.txt:4666
 V5.17.txt:4667
 V5.17.txt:4668
 V5.17.txt:4669
 V5.17.txt:4670
 V5.17.txt:4671
 V5.17.txt:4672
 V5.17.txt:4673
 V5.17.txt:4674
 V5.17.txt:4675
 V5.17.txt:4676
 V5.17.txt:4677
 V5.17.txt:4678
 V5.17.txt:4679
 V5.17.txt:4680
 V5.17.txt:4681
 V5.17.txt:4682
 V5.17.txt:4683
 V5.17.txt:4684
 V5.17.txt:4685
 V5.17.txt:4686
 V5.17.txt:4687
 V5.17.txt:4688
 V5.17.txt:4689
 V5.17.txt:4690
 V5.17.txt:4691
 V5.17.txt:4692
 V5.17.txt:4693
 V5.17.txt:4694
 V5.17.txt:4695
 V5.17.txt:4696
 V5.17.txt:4697
 V5.17.txt:4698
 V5.17.txt:4699
 V5.17.txt:4700
 V5.17.txt:4701
 V5.17.txt:4702
 V5.17.txt:4703
 V5.17.txt:4704
 V5.17.txt:4705
 V5.17.txt:4706
 V5.17.txt:4707
 V5.17.txt:4708
 V5.17.txt:4709
 V5.17.txt:4710
 V5.17.txt:4711
 V5.17.txt:4712
 V5.17.txt:4713
 V5.17.txt:4714
 V5.17.txt:4715
 V5.17.txt:4716
 V5.17.txt:4717
 V5.17.txt:4718
 V5.17.txt:4719
 V5.17.txt:4720
 V5.17.txt:4721
 V5.17.txt:4722
 V5.17.txt:4723
 V5.17.txt:4724
 V5.17.txt:4725
 V5.17.txt:4726
 V5.17.txt:4727
 V5.17.txt:4728
 V5.17.txt:4729
 V5.17.txt:4730
 V5.17.txt:4731
 V5.17.txt:4732
 V5.17.txt:4733
 V5.17.txt:4734
 V5.17.txt:4735
 V5.17.txt:4736
 V5.17.txt:4737
 V5.17.txt:4738
 V5.17.txt:4739
 V5.17.txt:4740
 V5.17.txt:4741
 V5.17.txt:4742
 V5.17.txt:4743
 V5.17.txt:4744
 V5.17.txt:4745
 V5.17.txt:4746
 V5.17.txt:4747
 V5.17.txt:4748
 V5.17.txt:4749
 V5.17.txt:4750
 V5.17.txt:4751
 V5.17.txt:4752
 V5.17.txt:4753
 V5.17.txt:4754
 V5.17.txt:4755
 V5.17.txt:4756
 V5.17.txt:4757
 V5.17.txt:4758
 V5.17.txt:4759
 V5.17.txt:4760
 V5.17.txt:4761
 V5.17.txt:4762
 V5.17.txt:4763
 V5.17.txt:4764
 V5.17.txt:4765
 V5.17.txt:4766
 V5.17.txt:4767
 V5.17.txt:4768
 V5.17.txt:4769
 V5.17.txt:4770
 V5.17.txt:4771
 V5.17.txt:4772
 V5.17.txt:4773
 V5.17.txt:4774
 V5.17.txt:4775
 V5.17.txt:4776
 V5.17.txt:4777
 V5.17.txt:4778
 V5.17.txt:4779
 V5.17.txt:4780
 V5.17.txt:4781
 V5.17.txt:4782
 V5.17.txt:4783
 V5.17.txt:4784
 V5.17.txt:4785
 V5.17.txt:4786
 V5.17.txt:4787
 V5.17.txt:4788
 V5.17.txt:4789
 V5.17.txt:4790
 V5.17.txt:4791
 V5.17.txt:4792
 V5.17.txt:4793
 V5.17.txt:4794
 V5.17.txt:4795
 V5.17.txt:4796
 V5.17.txt:4797
 V5.17.txt:4798
 V5.17.txt:4799
 V5.17.txt:4800
 V5.17.txt:4801
 V5.17.txt:4802
 V5.17.txt:4803
 V5.17.txt:4804
 V5.17.txt:4805
 V5.17.txt:4806
 V5.17.txt:4807
 V5.17.txt:4808
 V5.17.txt:4809
 V5.17.txt:4810
 V5.17.txt:4811
 V5.17.txt:4812
 V5.17.txt:4813
 V5.17.txt:4814
 V5.17.txt:4815
 V5.17.txt:4816
 V5.17.txt:4817
 V5.17.txt:4818
 V5.17.txt:4819
 V5.17.txt:4820
 V5.17.txt:4821
 V5.17.txt:4822
 V5.17.txt:4823
 V5.17.txt:4824
 V5.17.txt:4825
 V5.17.txt:4826
 V5.17.txt:4827
 V5.17.txt:4828
 V5.17.txt:4829
 V5.17.txt:4830
 V5.17.txt:4831
 V5.17.txt:4832
 V5.17.txt:4833
 V5.17.txt:4834
 V5.17.txt:4835
 V5.17.txt:4836
 V5.17.txt:4837
 V5.17.txt:4838
 V5.17.txt:4839
 V5.17.txt:4840
 V5.17.txt:4841
 V5.17.txt:4842
 V5.17.txt:4843
 V5.17.txt:4844
 V5.17.txt:4845
 V5.17.txt:4846
 V5.17.txt:4847
 V5.17.txt:4848
 V5.17.txt:4849
 V5.17.txt:4850
 V5.17.txt:4851
 V5.17.txt:4852
 V5.17.txt:4853
 V5.17.txt:4854
 V5.17.txt:4855
 V5.17.txt:4856
 V5.17.txt:4857
 V5.17.txt:4858
 V5.17.txt:4859
 V5.17.txt:4860
 V5.17.txt:4861
 V5.17.txt:4862
 V5.17.txt:4863
 V5.17.txt:4864
 V5.17.txt:4865
 V5.17.txt:4866
 V5.17.txt:4867
 V5.17.txt:4868
 V5.17.txt:4869
 V5.17.txt:4870
 V5.17.txt:4871
 V5.17.txt:4872
 V5.17.txt:4873
 V5.17.txt:4874
 V5.17.txt:4875
 V5.17.txt:4876
 V5.17.txt:4877
 V5.17.txt:4878
 V5.17.txt:4879
 V5.17.txt:4880
 V5.17.txt:4881
 V5.17.txt:4882
 V5.17.txt:4883
 V5.17.txt:4884
 V5.17.txt:4885
 V5.17.txt:4886
 V5.17.txt:4887
 V5.17.txt:4888
 V5.17.txt:4889
 V5.17.txt:4890
 V5.17.txt:4891
 V5.17.txt:4892
 V5.17.txt:4893
 V5.17.txt:4894
 V5.17.txt:4895
 V5.17.txt:4896
 V5.17.txt:4897
 V5.17.txt:4898
 V5.17.txt:4899
 V5.17.txt:4900
 V5.17.txt:4901
 V5.17.txt:4902
 V5.17.txt:4903
 V5.17.txt:4904
 V5.17.txt:4905
 V5.17.txt:4906
 V5.17.txt:4907
 V5.17.txt:4908
 V5.17.txt:4909
 V5.17.txt:4910
 V5.17.txt:4911
 V5.17.txt:4912
 V5.17.txt:4913
 V5.17.txt:4914
 V5.17.txt:4915
 V5.17.txt:4916
 V5.17.txt:4917
 V5.17.txt:4918
 V5.17.txt:4919
 V5.17.txt:4920
 V5.17.txt:4921
 V5.17.txt:4922
 V5.17.txt:4923
 V5.17.txt:4924
 V5.17.txt:4925
 V5.17.txt:4926
 V5.17.txt:4927
 V5.17.txt:4928
 V5.17.txt:4929
 V5.17.txt:4930
 V5.17.txt:4931
 V5.17.txt:4932
 V5.17.txt:4933
 V5.17.txt:4934
 V5.17.txt:4935
 V5.17.txt:4936
 V5.17.txt:4937
 V5.17.txt:4938
 V5.17.txt:4939
 V5.17.txt:4940
 V5.17.txt:4941
 V5.17.txt:4942
 V5.17.txt:4943
 V5.17.txt:4944
 V5.17.txt:4945
 V5.17.txt:4946
 V5.17.txt:4947
 V5.17.txt:4948
 V5.17.txt:4949
 V5.17.txt:4950
 V5.17.txt:4951
 V5.17.txt:4952
 V5.17.txt:4953
 V5.17.txt:4954
 V5.17.txt:4955
 V5.17.txt:4956
 V5.17.txt:4957
 V5.17.txt:4958
 V5.17.txt:4959
 V5.17.txt:4960
 V5.17.txt:4961
 V5.17.txt:4962
 V5.17.txt:4963
 V5.17.txt:4964
 V5.17.txt:4965
 V5.17.txt:4966
 V5.17.txt:4967
 V5.17.txt:4968
 V5.17.txt:4969
 V5.17.txt:4970
 V5.17.txt:4971
 V5.17.txt:4972
 V5.17.txt:4973
 V5.17.txt:4974
 V5.17.txt:4975
 V5.17.txt:4976
 V5.17.txt:4977
 V5.17.txt:4978
 V5.17.txt:4979
 V5.17.txt:4980
 V5.17.txt:4981
 V5.17.txt:4982
 V5.17.txt:4983
 V5.17.txt:4984
 V5.17.txt:4985
 V5.17.txt:4986
 V5.17.txt:4987
 V5.17.txt:4988
 V5.17.txt:4989
 V5.17.txt:4990
 V5.17.txt:4991
 V5.17.txt:4992
 V5.17.txt:4993
 V5.17.txt:4994
 V5.17.txt:4995
 V5.17.txt:4996
 V5.17.txt:4997
 V5.17.txt:4998
 V5.17.txt:4999
 V5.17.txt:5000
 V5.17.txt:5001
 V5.17.txt:5002
 V5.17.txt:5003
 V5.17.txt:5004
 V5.17.txt:5005
 V5.17.txt:5006
 V5.17.txt:5007
 V5.17.txt:5008
 V5.17.txt:5009
 V5.17.txt:5010
 V5.17.txt:5011
 V5.17.txt:5012
 V5.17.txt:5013
 V5.17.txt:5014
 V5.17.txt:5015
 V5.17.txt:5016
 V5.17.txt:5017
 V5.17.txt:5018
 V5.17.txt:5019
 V5.17.txt:5020
 V5.17.txt:5021
 V5.17.txt:5022
 V5.17.txt:5023
 V5.17.txt:5024
 V5.17.txt:5025
 V5.17.txt:5026
 V5.17.txt:5027
 V5.17.txt:5028
 V5.17.txt:5029
 V5.17.txt:5030
 V5.17.txt:5031
 V5.17.txt:5032
 V5.17.txt:5033
 V5.17.txt:5034
 V5.17.txt:5035
 V5.17.txt:5036
 V5.17.txt:5037
 V5.17.txt:5038
 V5.17.txt:5039
 V5.17.txt:5040
 V5.17.txt:5041
 V5.17.txt:5042
 V5.17.txt:5043
 V5.17.txt:5044
 V5.17.txt:5045
 V5.17.txt:5046
 V5.17.txt:5047
 V5.17.txt:5048
 V5.17.txt:5049
 V5.17.txt:5050
 V5.17.txt:5051
 V5.17.txt:5052
 V5.17.txt:5053
 V5.17.txt:5054
 V5.17.txt:5055
 V5.17.txt:5056
 V5.17.txt:5057
 V5.17.txt:5058
 V5.17.txt:5059
 V5.17.txt:5060
 V5.17.txt:5061
 V5.17.txt:5062
 V5.17.txt:5063
 V5.17.txt:5064
 V5.17.txt:5065
 V5.17.txt:5066
 V5.17.txt:5067
 V5.17.txt:5068
 V5.17.txt:5069
 V5.17.txt:5070
 V5.17.txt:5071
 V5.17.txt:5072
 V5.17.txt:5073
 V5.17.txt:5074
 V5.17.txt:5075
 V5.17.txt:5076
 V5.17.txt:5077
 V5.17.txt:5078
 V5.17.txt:5079
 V5.17.txt:5080
 V5.17.txt:5081
 V5.17.txt:5082
 V5.17.txt:5083
 V5.17.txt:5084
 V5.17.txt:5085
 V5.17.txt:5086
 V5.17.txt:5087
 V5.17.txt:5088
 V5.17.txt:5089
 V5.17.txt:5090
 V5.17.txt:5091
 V5.17.txt:5092
 V5.17.txt:5093
 V5.17.txt:5094
 V5.17.txt:5095
 V5.17.txt:5096
 V5.17.txt:5097
 V5.17.txt:5098
 V5.17.txt:5099
 V5.17.txt:5100
 V5.17.txt:5101
 V5.17.txt:5102
 V5.17.txt:5103
 V5.17.txt:5104
 V5.17.txt:5105
 V5.17.txt:5106
 V5.17.txt:5107
 V5.17.txt:5108
 V5.17.txt:5109
 V5.17.txt:5110
 V5.17.txt:5111
 V5.17.txt:5112
 V5.17.txt:5113
 V5.17.txt:5114
 V5.17.txt:5115
 V5.17.txt:5116
 V5.17.txt:5117
 V5.17.txt:5118
 V5.17.txt:5119
 V5.17.txt:5120
 V5.17.txt:5121
 V5.17.txt:5122
 V5.17.txt:5123
 V5.17.txt:5124
 V5.17.txt:5125
 V5.17.txt:5126
 V5.17.txt:5127
 V5.17.txt:5128
 V5.17.txt:5129
 V5.17.txt:5130
 V5.17.txt:5131
 V5.17.txt:5132
 V5.17.txt:5133
 V5.17.txt:5134
 V5.17.txt:5135
 V5.17.txt:5136
 V5.17.txt:5137
 V5.17.txt:5138
 V5.17.txt:5139
 V5.17.txt:5140
 V5.17.txt:5141
 V5.17.txt:5142
 V5.17.txt:5143
 V5.17.txt:5144
 V5.17.txt:5145
 V5.17.txt:5146
 V5.17.txt:5147
 V5.17.txt:5148
 V5.17.txt:5149
 V5.17.txt:5150
 V5.17.txt:5151
 V5.17.txt:5152
 V5.17.txt:5153
 V5.17.txt:5154
 V5.17.txt:5155
 V5.17.txt:5156
 V5.17.txt:5157
 V5.17.txt:5158
 V5.17.txt:5159
 V5.17.txt:5160
 V5.17.txt:5161
 V5.17.txt:5162
 V5.17.txt:5163
 V5.17.txt:5164
 V5.17.txt:5165
 V5.17.txt:5166
 V5.17.txt:5167
 V5.17.txt:5168
 V5.17.txt:5169
 V5.17.txt:5170
 V5.17.txt:5171
 V5.17.txt:5172
 V5.17.txt:5173
 V5.17.txt:5174
 V5.17.txt:5175
 V5.17.txt:5176
 V5.17.txt:5177
 V5.17.txt:5178
 V5.17.txt:5179
 V5.17.txt:5180
 V5.17.txt:5181
 V5.17.txt:5182
 V5.17.txt:5183
 V5.17.txt:5184
 V5.17.txt:5185
 V5.17.txt:5186
 V5.17.txt:5187
 V5.17.txt:5188
 V5.17.txt:5189
 V5.17.txt:5190
 V5.17.txt:5191
 V5.17.txt:5192
 V5.17.txt:5193
 V5.17.txt:5194
 V5.17.txt:5195
 V5.17.txt:5196
 V5.17.txt:5197
 V5.17.txt:5198
 V5.17.txt:5199
 V5.17.txt:5200
 V5.17.txt:5201
 V5.17.txt:5202
 V5.17.txt:5203
 V5.17.txt:5204
 V5.17.txt:5205
 V5.17.txt:5206
 V5.17.txt:5207
 V5.17.txt:5208
 V5.17.txt:5209
 V5.17.txt:5210
 V5.17.txt:5211
 V5.17.txt:5212
 V5.17.txt:5213
 V5.17.txt:5214
 V5.17.txt:5215
 V5.17.txt:5216
 V5.17.txt:5217
 V5.17.txt:5218
 V5.17.txt:5219
 V5.17.txt:5220
 V5.17.txt:5221
 V5.17.txt:5222
 V5.17.txt:5223
 V5.17.txt:5224
 V5.17.txt:5225
 V5.17.txt:5226
 V5.17.txt:5227
 V5.17.txt:5228
 V5.17.txt:5229
 V5.17.txt:5230
 V5.17.txt:5231
 V5.17.txt:5232
 V5.17.txt:5233
 V5.17.txt:5234
 V5.17.txt:5235
 V5.17.txt:5236
 V5.17.txt:5237
 V5.17.txt:5238
 V5.17.txt:5239
 V5.17.txt:5240
 V5.17.txt:5241
 V5.17.txt:5242
 V5.17.txt:5243
 V5.17.txt:5244
 V5.17.txt:5245
 V5.17.txt:5246
 V5.17.txt:5247
 V5.17.txt:5248
 V5.17.txt:5249
 V5.17.txt:5250
 V5.17.txt:5251
 V5.17.txt:5252
 V5.17.txt:5253
 V5.17.txt:5254
 V5.17.txt:5255
 V5.17.txt:5256
 V5.17.txt:5257
 V5.17.txt:5258
 V5.17.txt:5259
 V5.17.txt:5260
 V5.17.txt:5261
 V5.17.txt:5262
 V5.17.txt:5263
 V5.17.txt:5264
 V5.17.txt:5265
 V5.17.txt:5266
 V5.17.txt:5267
 V5.17.txt:5268
 V5.17.txt:5269
 V5.17.txt:5270
 V5.17.txt:5271
 V5.17.txt:5272
 V5.17.txt:5273
 V5.17.txt:5274
 V5.17.txt:5275
 V5.17.txt:5276
 V5.17.txt:5277
 V5.17.txt:5278
 V5.17.txt:5279
 V5.17.txt:5280
 V5.17.txt:5281
 V5.17.txt:5282
 V5.17.txt:5283
 V5.17.txt:5284
 V5.17.txt:5285
 V5.17.txt:5286
 V5.17.txt:5287
 V5.17.txt:5288
 V5.17.txt:5289
 V5.17.txt:5290
 V5.17.txt:5291
 V5.17.txt:5292
 V5.17.txt:5293
 V5.17.txt:5294
 V5.17.txt:5295
 V5.17.txt:5296
 V5.17.txt:5297
 V5.17.txt:5298
 V5.17.txt:5299
 V5.17.txt:5300
 V5.17.txt:5301
 V5.17.txt:5302
 V5.17.txt:5303
 V5.17.txt:5304
 V5.17.txt:5305
 V5.17.txt:5306
 V5.17.txt:5307
 V5.17.txt:5308
 V5.17.txt:5309
 V5.17.txt:5310
 V5.17.txt:5311
 V5.17.txt:5312
 V5.17.txt:5313
 V5.17.txt:5314
 V5.17.txt:5315
 V5.17.txt:5316
 V5.17.txt:5317
 V5.17.txt:5318
 V5.17.txt:5319
 V5.17.txt:5320
 V5.17.txt:5321
 V5.17.txt:5322
 V5.17.txt:5323
 V5.17.txt:5324
 V5.17.txt:5325
 V5.17.txt:5326
 V5.17.txt:5327
 V5.17.txt:5328
 V5.17.txt:5329
 V5.17.txt:5330
 V5.17.txt:5331
 V5.17.txt:5332
 V5.17.txt:5333
 V5.17.txt:5334
 V5.17.txt:5335
 V5.17.txt:5336
 V5.17.txt:5337
 V5.17.txt:5338
 V5.17.txt:5339
 V5.17.txt:5340
 V5.17.txt:5341
 V5.17.txt:5342
 V5.17.txt:5343
 V5.17.txt:5344
 V5.17.txt:5345
 V5.17.txt:5346
 V5.17.txt:5347
 V5.17.txt:5348
 V5.17.txt:5349
 V5.17.txt:5350
 V5.17.txt:5351
 V5.17.txt:5352
 V5.17.txt:5353
 V5.17.txt:5354
 V5.17.txt:5355
 V5.17.txt:5356
 V5.17.txt:5357
 V5.17.txt:5358
 V5.17.txt:5359
 V5.17.txt:5360
 V5.17.txt:5361
 V5.17.txt:5362
 V5.17.txt:5363
 V5.17.txt:5364
 V5.17.txt:5365
 V5.17.txt:5366
 V5.17.txt:5367
 V5.17.txt:5368
 V5.17.txt:5369
 V5.17.txt:5370
 V5.17.txt:5371
 V5.17.txt:5372
 V5.17.txt:5373
 V5.17.txt:5374
 V5.17.txt:5375
 V5.17.txt:5376
 V5.17.txt:5377
 V5.17.txt:5378
 V5.17.txt:5379
 V5.17.txt:5380
 V5.17.txt:5381
 V5.17.txt:5382
 V5.17.txt:5383
 V5.17.txt:5384
 V5.17.txt:5385
 V5.17.txt:5386
 V5.17.txt:5387
 V5.17.txt:5388
 V5.17.txt:5389
 V5.17.txt:5390
 V5.17.txt:5391
 V5.17.txt:5392
 V5.17.txt:5393
 V5.17.txt:5394
 V5.17.txt:5395
 V5.17.txt:5396
 V5.17.txt:5397
 V5.17.txt:5398
 V5.17.txt:5399
 V5.17.txt:5400
 V5.17.txt:5401
 V5.17.txt:5402
 V5.17.txt:5403
 V5.17.txt:5404
 V5.17.txt:5405
 V5.17.txt:5406
 V5.17.txt:5407
 V5.17.txt:5408
 V5.17.txt:5409
 V5.17.txt:5410
 V5.17.txt:5411
 V5.17.txt:5412
 V5.17.txt:5413
 V5.17.txt:5414
 V5.17.txt:5415
 V5.17.txt:5416
 V5.17.txt:5417
 V5.17.txt:5418
 V5.17.txt:5419
 V5.17.txt:5420
 V5.17.txt:5421
 V5.17.txt:5422
 V5.17.txt:5423
 V5.17.txt:5424
 V5.17.txt:5425
 V5.17.txt:5426
 V5.17.txt:5427
 V5.17.txt:5428
 V5.17.txt:5429
 V5.17.txt:5430
 V5.17.txt:5431
 V5.17.txt:5432
 V5.17.txt:5433
 V5.17.txt:5434
 V5.17.txt:5435
 V5.17.txt:5436
 V5.17.txt:5437
 V5.17.txt:5438
 V5.17.txt:5439
 V5.17.txt:5440
 V5.17.txt:5441
 V5.17.txt:5442
 V5.17.txt:5443
 V5.17.txt:5444
 V5.17.txt:5445
 V5.17.txt:5446
 V5.17.txt:5447
 V5.17.txt:5448
 V5.17.txt:5449
 V5.17.txt:5450
 V5.17.txt:5451
 V5.17.txt:5452
 V5.17.txt:5453
 V5.17.txt:5454
 V5.17.txt:5455
 V5.17.txt:5456
 V5.17.txt:5457
 V5.17.txt:5458
 V5.17.txt:5459
 V5.17.txt:5460
 V5.17.txt:5461
 V5.17.txt:5462
 V5.17.txt:5463
 V5.17.txt:5464
 V5.17.txt:5465
 V5.17.txt:5466
 V5.17.txt:5467
 V5.17.txt:5468
 V5.17.txt:5469
 V5.17.txt:5470
 V5.17.txt:5471
 V5.17.txt:5472
 V5.17.txt:5473
 V5.17.txt:5474
 V5.17.txt:5475
 V5.17.txt:5476
 V5.17.txt:5477
 V5.17.txt:5478
 V5.17.txt:5479
 V5.17.txt:5480
 V5.17.txt:5481
 V5.17.txt:5482
 V5.17.txt:5483
 V5.17.txt:5484
 V5.17.txt:5485
 V5.17.txt:5486
 V5.17.txt:5487
 V5.17.txt:5488
 V5.17.txt:5489
 V5.17.txt:5490
 V5.17.txt:5491
 V5.17.txt:5492
 V5.17.txt:5493
 V5.17.txt:5494
 V5.17.txt:5495
 V5.17.txt:5496
 V5.17.txt:5497
 V5.17.txt:5498
 V5.17.txt:5499
 V5.17.txt:5500
 V5.17.txt:5501
 V5.17.txt:5502
 V5.17.txt:5503
 V5.17.txt:5504
 V5.17.txt:5505
 V5.17.txt:5506
 V5.17.txt:5507
 V5.17.txt:5508
 V5.17.txt:5509
 V5.17.txt:5510
 V5.17.txt:5511
 V5.17.txt:5512
 V5.17.txt:5513
 V5.17.txt:5514
 V5.17.txt:5515
 V5.17.txt:5516
 V5.17.txt:5517
 V5.17.txt:5518
 V5.17.txt:5519
 V5.17.txt:5520
 V5.17.txt:5521
 V5.17.txt:5522
 V5.17.txt:5523
 V5.17.txt:5524
 V5.17.txt:5525
 V5.17.txt:5526
 V5.17.txt:5527
 V5.17.txt:5528
 V5.17.txt:5529
 V5.17.txt:5530
 V5.17.txt:5531
 V5.17.txt:5532
 V5.17.txt:5533
 V5.17.txt:5534
 V5.17.txt:5535
 V5.17.txt:5536
 V5.17.txt:5537
 V5.17.txt:5538
 V5.17.txt:5539
 V5.17.txt:5540
 V5.17.txt:5541
 V5.17.txt:5542
 V5.17.txt:5543
 V5.17.txt:5544
 V5.17.txt:5545
 V5.17.txt:5546
 V5.17.txt:5547
 V5.17.txt:5548
 V5.17.txt:5549
 V5.17.txt:5550
 V5.17.txt:5551
 V5.17.txt:5552
 V5.17.txt:5553
 V5.17.txt:5554
 V5.17.txt:5555
 V5.17.txt:5556
 V5.17.txt:5557
 V5.17.txt:5558
 V5.17.txt:5559
 V5.17.txt:5560
 V5.17.txt:5561
 V5.17.txt:5562
 V5.17.txt:5563
 V5.17.txt:5564
 V5.17.txt:5565
 V5.17.txt:5566
 V5.17.txt:5567
 V5.17.txt:5568
 V5.17.txt:5569
 V5.17.txt:5570
 V5.17.txt:5571
 V5.17.txt:5572
 V5.17.txt:5573
 V5.17.txt:5574
 V5.17.txt:5575
 V5.17.txt:5576
 V5.17.txt:5577
 V5.17.txt:5578
 V5.17.txt:5579
 V5.17.txt:5580
 V5.17.txt:5581
 V5.17.txt:5582
 V5.17.txt:5583
 V5.17.txt:5584
 V5.17.txt:5585
 V5.17.txt:5586
 V5.17.txt:5587
 V5.17.txt:5588
 V5.17.txt:5589
 V5.17.txt:5590
 V5.17.txt:5591
 V5.17.txt:5592
 V5.17.txt:5593
 V5.17.txt:5594
 V5.17.txt:5595
 V5.17.txt:5596
 V5.17.txt:5597
 V5.17.txt:5598
 V5.17.txt:5599
 V5.17.txt:5600
 V5.17.txt:5601
 V5.17.txt:5602
 V5.17.txt:5603
 V5.17.txt:5604
 V5.17.txt:5605
 V5.17.txt:5606
 V5.17.txt:5607
 V5.17.txt:5608
 V5.17.txt:5609
 V5.17.txt:5610
 V5.17.txt:5611
 V5.17.txt:5612
 V5.17.txt:5613
 V5.17.txt:5614
 V5.17.txt:5615
 V5.17.txt:5616
 V5.17.txt:5617
 V5.17.txt:5618
 V5.17.txt:5619
 V5.17.txt:5620
 V5.17.txt:5621
 V5.17.txt:5622
 V5.17.txt:5623
 V5.17.txt:5624
 V5.17.txt:5625
 V5.17.txt:5626
 V5.17.txt:5627
 V5.17.txt:5628
 V5.17.txt:5629
 V5.17.txt:5630
 V5.17.txt:5631
 V5.17.txt:5632
 V5.17.txt:5633
 V5.17.txt:5634
 V5.17.txt:5635
 V5.17.txt:5636
 V5.17.txt:5637
 V5.17.txt:5638
 V5.17.txt:5639
 V5.17.txt:5640
 V5.17.txt:5641
 V5.17.txt:5642
 V5.17.txt:5643
 V5.17.txt:5644
 V5.17.txt:5645
 V5.17.txt:5646
 V5.17.txt:5647
 V5.17.txt:5648
 V5.17.txt:5649
 V5.17.txt:5650
 V5.17.txt:5651
 V5.17.txt:5652
 V5.17.txt:5653
 V5.17.txt:5654
 V5.17.txt:5655
 V5.17.txt:5656
 V5.17.txt:5657
 V5.17.txt:5658
 V5.17.txt:5659
 V5.17.txt:5660
 V5.17.txt:5661
 V5.17.txt:5662
 V5.17.txt:5663
 V5.17.txt:5664
 V5.17.txt:5665
 V5.17.txt:5666
 V5.17.txt:5667
 V5.17.txt:5668
 V5.17.txt:5669
 V5.17.txt:5670
 V5.17.txt:5671
 V5.17.txt:5672
 V5.17.txt:5673
 V5.17.txt:5674
 V5.17.txt:5675
 V5.17.txt:5676
 V5.17.txt:5677
 V5.17.txt:5678
 V5.17.txt:5679
 V5.17.txt:5680
 V5.17.txt:5681
 V5.17.txt:5682
 V5.17.txt:5683
 V5.17.txt:5684
 V5.17.txt:5685
 V5.17.txt:5686
 V5.17.txt:5687
 V5.17.txt:5688
 V5.17.txt:5689
 V5.17.txt:5690
 V5.17.txt:5691
 V5.17.txt:5692
 V5.17.txt:5693
 V5.17.txt:5694
 V5.17.txt:5695
 V5.17.txt:5696
 V5.17.txt:5697
 V5.17.txt:5698
 V5.17.txt:5699
 V5.17.txt:5700
 V5.17.txt:5701
 V5.17.txt:5702
 V5.17.txt:5703
 V5.17.txt:5704
 V5.17.txt:5705
 V5.17.txt:5706
 V5.17.txt:5707
 V5.17.txt:5708
 V5.17.txt:5709
 V5.17.txt:5710
 V5.17.txt:5711
 V5.17.txt:5712
 V5.17.txt:5713
 V5.17.txt:5714
 V5.17.txt:5715
 V5.17.txt:5716
 V5.17.txt:5717
 V5.17.txt:5718
 V5.17.txt:5719
 V5.17.txt:5720
 V5.17.txt:5721
 V5.17.txt:5722
 V5.17.txt:5723
 V5.17.txt:5724
 V5.17.txt:5725
 V5.17.txt:5726
 V5.17.txt:5727
 V5.17.txt:5728
 V5.17.txt:5729
 V5.17.txt:5730
 V5.17.txt:5731
 V5.17.txt:5732
 V5.17.txt:5733
 V5.17.txt:5734
 V5.17.txt:5735
 V5.17.txt:5736
 V5.17.txt:5737
 V5.17.txt:5738
 V5.17.txt:5739
 V5.17.txt:5740
 V5.17.txt:5741
 V5.17.txt:5742
 V5.17.txt:5743
 V5.17.txt:5744
 V5.17.txt:5745
 V5.17.txt:5746
 V5.17.txt:5747
 V5.17.txt:5748
 V5.17.txt:5749
 V5.17.txt:5750
 V5.17.txt:5751
 V5.17.txt:5752
 V5.17.txt:5753
 V5.17.txt:5754
 V5.17.txt:5755
 V5.17.txt:5756
 V5.17.txt:5757
 V5.17.txt:5758
 V5.17.txt:5759
 V5.17.txt:5760
 V5.17.txt:5761
 V5.17.txt:5762
 V5.17.txt:5763
 V5.17.txt:5764
 V5.17.txt:5765
 V5.17.txt:5766
 V5.17.txt:5767
 V5.17.txt:5768
 V5.17.txt:5769
 V5.17.txt:5770
 V5.17.txt:5771
 V5.17.txt:5772
 V5.17.txt:5773
 V5.17.txt:5774
 V5.17.txt:5775
 V5.17.txt:5776
 V5.17.txt:5777
 V5.17.txt:5778
 V5.17.txt:5779
 V5.17.txt:5780
 V5.17.txt:5781
 V5.17.txt:5782
 V5.17.txt:5783
 V5.17.txt:5784
 V5.17.txt:5785
 V5.17.txt:5786
 V5.17.txt:5787
 V5.17.txt:5788
 V5.17.txt:5789
 V5.17.txt:5790
 V5.17.txt:5791
 V5.17.txt:5792
 V5.17.txt:5793
 V5.17.txt:5794
 V5.17.txt:5795
 V5.17.txt:5796
 V5.17.txt:5797
 V5.17.txt:5798
 V5.17.txt:5799
 V5.17.txt:5800
 V5.17.txt:5801
 V5.17.txt:5802
 V5.17.txt:5803
 V5.17.txt:5804
 V5.17.txt:5805
 V5.17.txt:5806
 V5.17.txt:5807
 V5.17.txt:5808
 V5.17.txt:5809
 V5.17.txt:5810
 V5.17.txt:5811
 V5.17.txt:5812
 V5.17.txt:5813
 V5.17.txt:5814
 V5.17.txt:5815
 V5.17.txt:5816
 V5.17.txt:5817
 V5.17.txt:5818
 V5.17.txt:5819
 V5.17.txt:5820
 V5.17.txt:5821
 V5.17.txt:5822
 V5.17.txt:5823
 V5.17.txt:5824
 V5.17.txt:5825
 V5.17.txt:5826
 V5.17.txt:5827
 V5.17.txt:5828
 V5.17.txt:5829
 V5.17.txt:5830
 V5.17.txt:5831
 V5.17.txt:5832
 V5.17.txt:5833
 V5.17.txt:5834
 V5.17.txt:5835
 V5.17.txt:5836
 V5.17.txt:5837
 V5.17.txt:5838
 V5.17.txt:5839
 V5.17.txt:5840
 V5.17.txt:5841
 V5.17.txt:5842
 V5.17.txt:5843
 V5.17.txt:5844
 V5.17.txt:5845
 V5.17.txt:5846
 V5.17.txt:5847
 V5.17.txt:5848
 V5.17.txt:5849
 V5.17.txt:5850
 V5.17.txt:5851
 V5.17.txt:5852
 V5.17.txt:5853
 V5.17.txt:5854
 V5.17.txt:5855
 V5.17.txt:5856
 V5.17.txt:5857
 V5.17.txt:5858
 V5.17.txt:5859
 V5.17.txt:5860
 V5.17.txt:5861
 V5.17.txt:5862
 V5.17.txt:5863
 V5.17.txt:5864
 V5.17.txt:5865
 V5.17.txt:5866
 V5.17.txt:5867
 V5.17.txt:5868
 V5.17.txt:5869
 V5.17.txt:5870
 V5.17.txt:5871
 V5.17.txt:5872
 V5.17.txt:5873
 V5.17.txt:5874
 V5.17.txt:5875
 V5.17.txt:5876
 V5.17.txt:5877
 V5.17.txt:5878
 V5.17.txt:5879
 V5.17.txt:5880
 V5.17.txt:5881
 V5.17.txt:5882
 V5.17.txt:5883
 V5.17.txt:5884
 V5.17.txt:5885
 V5.17.txt:5886
 V5.17.txt:5887
 V5.17.txt:5888
 V5.17.txt:5889
 V5.17.txt:5890
 V5.17.txt:5891
 V5.17.txt:5892
 V5.17.txt:5893
 V5.17.txt:5894
 V5.17.txt:5895
 V5.17.txt:5896
 V5.17.txt:5897
 V5.17.txt:5898
 V5.17.txt:5899
 V5.17.txt:5900
 V5.17.txt:5901
 V5.17.txt:5902
 V5.17.txt:5903
 V5.17.txt:5904
 V5.17.txt:5905
 V5.17.txt:5906
 V5.17.txt:5907
 V5.17.txt:5908
 V5.17.txt:5909
 V5.17.txt:5910
 V5.17.txt:5911
 V5.17.txt:5912
 V5.17.txt:5913
 V5.17.txt:5914
 V5.17.txt:5915
 V5.17.txt:5916
 V5.17.txt:5917
 V5.17.txt:5918
 V5.17.txt:5919
 V5.17.txt:5920
 V5.17.txt:5921
 V5.17.txt:5922
 V5.17.txt:5923
 V5.17.txt:5924
 V5.17.txt:5925
 V5.17.txt:5926
 V5.17.txt:5927
 V5.17.txt:5928
 V5.17.txt:5929
 V5.17.txt:5930
 V5.17.txt:5931
 V5.17.txt:5932
 V5.17.txt:5933
 V5.17.txt:5934
 V5.17.txt:5935
 V5.17.txt:5936
 V5.17.txt:5937
 V5.17.txt:5938
 V5.17.txt:5939
 V5.17.txt:5940
 V5.17.txt:5941
 V5.17.txt:5942
 V5.17.txt:5943
 V5.17.txt:5944
 V5.17.txt:5945
 V5.17.txt:5946
 V5.17.txt:5947
 V5.17.txt:5948
 V5.17.txt:5949
 V5.17.txt:5950
 V5.17.txt:5951
 V5.17.txt:5952
 V5.17.txt:5953
 V5.17.txt:5954
 V5.17.txt:5955
 V5.17.txt:5956
 V5.17.txt:5957
 V5.17.txt:5958
 V5.17.txt:5959
 V5.17.txt:5960
 V5.17.txt:5961
 V5.17.txt:5962
 V5.17.txt:5963
 V5.17.txt:5964
 V5.17.txt:5965
 V5.17.txt:5966
 V5.17.txt:5967
 V5.17.txt:5968
 V5.17.txt:5969
 V5.17.txt:5970
 V5.17.txt:5971
 V5.17.txt:5972
 V5.17.txt:5973
 V5.17.txt:5974
 V5.17.txt:5975
 V5.17.txt:5976
 V5.17.txt:5977
 V5.17.txt:5978
 V5.17.txt:5979
 V5.17.txt:5980
 V5.17.txt:5981
 V5.17.txt:5982
 V5.17.txt:5983
 V5.17.txt:5984
 V5.17.txt:5985
 V5.17.txt:5986
 V5.17.txt:5987
 V5.17.txt:5988
 V5.17.txt:5989
 V5.17.txt:5990
 V5.17.txt:5991
 V5.17.txt:5992
 V5.17.txt:5993
 V5.17.txt:5994
 V5.17.txt:5995
 V5.17.txt:5996
 V5.17.txt:5997
 V5.17.txt:5998
 V5.17.txt:5999
 V5.17.txt:6000
 V5.17.txt:6001
 V5.17.txt:6002
 V5.17.txt:6003
 V5.17.txt:6004
 V5.17.txt:6005
 V5.17.txt:6006
 V5.17.txt:6007
 V5.17.txt:6008
 V5.17.txt:6009
 V5.17.txt:6010
 V5.17.txt:6011
 V5.17.txt:6012
 V5.17.txt:6013
 V5.17.txt:6014
 V5.17.txt:6015
 V5.17.txt:6016
 V5.17.txt:6017
 V5.17.txt:6018
 V5.17.txt:6019
 V5.17.txt:6020
 V5.17.txt:6021
 V5.17.txt:6022
 V5.17.txt:6023
 V5.17.txt:6024
 V5.17.txt:6025
 V5.17.txt:6026
 V5.17.txt:6027
 V5.17.txt:6028
 V5.17.txt:6029
 V5.17.txt:6030
 V5.17.txt:6031
 V5.17.txt:6032
 V5.17.txt:6033
 V5.17.txt:6034
 V5.17.txt:6035
 V5.17.txt:6036
 V5.17.txt:6037
 V5.17.txt:6038
 V5.17.txt:6039
 V5.17.txt:6040
 V5.17.txt:6041
 V5.17.txt:6042
 V5.17.txt:6043
 V5.17.txt:6044
 V5.17.txt:6045
 V5.17.txt:6046
 V5.17.txt:6047
 V5.17.txt:6048
 V5.17.txt:6049
 V5.17.txt:6050
 V5.17.txt:6051
 V5.17.txt:6052
 V5.17.txt:6053
 V5.17.txt:6054
 V5.17.txt:6055
 V5.17.txt:6056
 V5.17.txt:6057
 V5.17.txt:6058
 V5.17.txt:6059
 V5.17.txt:6060
 V5.17.txt:6061
 V5.17.txt:6062
 V5.17.txt:6063
 V5.17.txt:6064
 V5.17.txt:6065
 V5.17.txt:6066
 V5.17.txt:6067
 V5.17.txt:6068
 V5.17.txt:6069
 V5.17.txt:6070
 V5.17.txt:6071
 V5.17.txt:6072
 V5.17.txt:6073
 V5.17.txt:6074
 V5.17.txt:6075
 V5.17.txt:6076
 V5.17.txt:6077
 V5.17.txt:6078
 V5.17.txt:6079
 V5.17.txt:6080
 V5.17.txt:6081
 V5.17.txt:6082
 V5.17.txt:6083
 V5.17.txt:6084
 V5.17.txt:6085
 V5.17.txt:6086
 V5.17.txt:6087
 V5.17.txt:6088
 V5.17.txt:6089
 V5.17.txt:6090
 V5.17.txt:6091
 V5.17.txt:6092
 V5.17.txt:6093
 V5.17.txt:6094
 V5.17.txt:6095
 V5.17.txt:6096
 V5.17.txt:6097
 V5.17.txt:6098
 V5.17.txt:6099
 V5.17.txt:6100
 V5.17.txt:6101
 V5.17.txt:6102
 V5.17.txt:6103
 V5.17.txt:6104
 V5.17.txt:6105
 V5.17.txt:6106
 V5.17.txt:6107
 V5.17.txt:6108
 V5.17.txt:6109
 V5.17.txt:6110
 V5.17.txt:6111
 V5.17.txt:6112
 V5.17.txt:6113
 V5.17.txt:6114
 V5.17.txt:6115
 V5.17.txt:6116
 V5.17.txt:6117
 V5.17.txt:6118
 V5.17.txt:6119
 V5.17.txt:6120
 V5.17.txt:6121
 V5.17.txt:6122
 V5.17.txt:6123
 V5.17.txt:6124
 V5.17.txt:6125
 V5.17.txt:6126
 V5.17.txt:6127
 V5.17.txt:6128
 V5.17.txt:6129
 V5.17.txt:6130
 V5.17.txt:6131
 V5.17.txt:6132
 V5.17.txt:6133
 V5.17.txt:6134
 V5.17.txt:6135
 V5.17.txt:6136
 V5.17.txt:6137
 V5.17.txt:6138
 V5.17.txt:6139
 V5.17.txt:6140
 V5.17.txt:6141
 V5.17.txt:6142
 V5.17.txt:6143
 V5.17.txt:6144
 V5.17.txt:6145
 V5.17.txt:6146
 V5.17.txt:6147
 V5.17.txt:6148
 V5.17.txt:6149
 V5.17.txt:6150
 V5.17.txt:6151
 V5.17.txt:6152
 V5.17.txt:6153
 V5.17.txt:6154
 V5.17.txt:6155
 V5.17.txt:6156
 V5.17.txt:6157
 V5.17.txt:6158
 V5.17.txt:6159
 V5.17.txt:6160
 V5.17.txt:6161
 V5.17.txt:6162
 V5.17.txt:6163
 V5.17.txt:6164
 V5.17.txt:6165
 V5.17.txt:6166
 V5.17.txt:6167
 V5.17.txt:6168
 V5.17.txt:6169
 V5.17.txt:6170
 V5.17.txt:6171
 V5.17.txt:6172
 V5.17.txt:6173
 V5.17.txt:6174
 V5.17.txt:6175
 V5.17.txt:6176
 V5.17.txt:6177
 V5.17.txt:6178
 V5.17.txt:6179
 V5.17.txt:6180
 V5.17.txt:6181
 V5.17.txt:6182
 V5.17.txt:6183
 V5.17.txt:6184
 V5.17.txt:6185
 V5.17.txt:6186
 V5.17.txt:6187
 V5.17.txt:6188
 V5.17.txt:6189
 V5.17.txt:6190
 V5.17.txt:6191
 V5.17.txt:6192
 V5.17.txt:6193
 V5.17.txt:6194
 V5.17.txt:6195
 V5.17.txt:6196
 V5.17.txt:6197
 V5.17.txt:6198
 V5.17.txt:6199
 V5.17.txt:6200
 V5.17.txt:6201
 V5.17.txt:6202
 V5.17.txt:6203
 V5.17.txt:6204
 V5.17.txt:6205
 V5.17.txt:6206
 V5.17.txt:6207
 V5.17.txt:6208
 V5.17.txt:6209
 V5.17.txt:6210
 V5.17.txt:6211
 V5.17.txt:6212
 V5.17.txt:6213
 V5.17.txt:6214
 V5.17.txt:6215
 V5.17.txt:6216
 V5.17.txt:6217
 V5.17.txt:6218
 V5.17.txt:6219
 V5.17.txt:6220
 V5.17.txt:6221
 V5.17.txt:6222
 V5.17.txt:6223
 V5.17.txt:6224
 V5.17.txt:6225
 V5.17.txt:6226
 V5.17.txt:6227
 V5.17.txt:6228
 V5.17.txt:6229
 V5.17.txt:6230
 V5.17.txt:6231
 V5.17.txt:6232
 V5.17.txt:6233
 V5.17.txt:6234
 V5.17.txt:6235
 V5.17.txt:6236
 V5.17.txt:6237
 V5.17.txt:6238
 V5.17.txt:6239
 V5.17.txt:6240
 V5.17.txt:6241
 V5.17.txt:6242
 V5.17.txt:6243
 V5.17.txt:6244
 V5.17.txt:6245
 V5.17.txt:6246
 V5.17.txt:6247
 V5.17.txt:6248
 V5.17.txt:6249
 V5.17.txt:6250
 V5.17.txt:6251
 V5.17.txt:6252
 V5.17.txt:6253
 V5.17.txt:6254
 V5.17.txt:6255
 V5.17.txt:6256
 V5.17.txt:6257
 V5.17.txt:6258
 V5.17.txt:6259
 V5.17.txt:6260
 V5.17.txt:6261
 V5.17.txt:6262
 V5.17.txt:6263
 V5.17.txt:6264
 V5.17.txt:6265
 V5.17.txt:6266
 V5.17.txt:6267
 V5.17.txt:6268
 V5.17.txt:6269
 V5.17.txt:6270
 V5.17.txt:6271
 V5.17.txt:6272
 V5.17.txt:6273
 V5.17.txt:6274
 V5.17.txt:6275
 V5.17.txt:6276
 V5.17.txt:6277
 V5.17.txt:6278
 V5.17.txt:6279
 V5.17.txt:6280
 V5.17.txt:6281
 V5.17.txt:6282
 V5.17.txt:6283
 V5.17.txt:6284
 V5.17.txt:6285
 V5.17.txt:6286
 V5.17.txt:6287
 V5.17.txt:6288
 V5.17.txt:6289
 V5.17.txt:6290
 V5.17.txt:6291
 V5.17.txt:6292
 V5.17.txt:6293
 V5.17.txt:6294
 V5.17.txt:6295
 V5.17.txt:6296
 V5.17.txt:6297
 V5.17.txt:6298
 V5.17.txt:6299
 V5.17.txt:6300
 V5.17.txt:6301
 V5.17.txt:6302
 V5.17.txt:6303
 V5.17.txt:6304
 V5.17.txt:6305
 V5.17.txt:6306
 V5.17.txt:6307
 V5.17.txt:6308
 V5.17.txt:6309
 V5.17.txt:6310
 V5.17.txt:6311
 V5.17.txt:6312
 V5.17.txt:6313
 V5.17.txt:6314
 V5.17.txt:6315
 V5.17.txt:6316
 V5.17.txt:6317
 V5.17.txt:6318
 V5.17.txt:6319
 V5.17.txt:6320
 V5.17.txt:6321
 V5.17.txt:6322
 V5.17.txt:6323
 V5.17.txt:6324
 V5.17.txt:6325
 V5.17.txt:6326
 V5.17.txt:6327
 V5.17.txt:6328
 V5.17.txt:6329
 V5.17.txt:6330
 V5.17.txt:6331
 V5.17.txt:6332
 V5.17.txt:6333
 V5.17.txt:6334
 V5.17.txt:6335
 V5.17.txt:6336
 V5.17.txt:6337
 V5.17.txt:6338
 V5.17.txt:6339
 V5.17.txt:6340
 V5.17.txt:6341
 V5.17.txt:6342
 V5.17.txt:6343
 V5.17.txt:6344
 V5.17.txt:6345
 V5.17.txt:6346
 V5.17.txt:6347
 V5.17.txt:6348
 V5.17.txt:6349
 V5.17.txt:6350
 V5.17.txt:6351
 V5.17.txt:6352
 V5.17.txt:6353
 V5.17.txt:6354
 V5.17.txt:6355
 V5.17.txt:6356
 V5.17.txt:6357
 V5.17.txt:6358
 V5.17.txt:6359
 V5.17.txt:6360
 V5.17.txt:6361
 V5.17.txt:6362
 V5.17.txt:6363
 V5.17.txt:6364
 V5.17.txt:6365
 V5.17.txt:6366
 V5.17.txt:6367
 V5.17.txt:6368
 V5.17.txt:6369
 V5.17.txt:6370
 V5.17.txt:6371
 V5.17.txt:6372
 V5.17.txt:6373
 V5.17.txt:6374
 V5.17.txt:6375
 V5.17.txt:6376
 V5.17.txt:6377
 V5.17.txt:6378
 V5.17.txt:6379
 V5.17.txt:6380
 V5.17.txt:6381
 V5.17.txt:6382
 V5.17.txt:6383
 V5.17.txt:6384
 V5.17.txt:6385
 V5.17.txt:6386
 V5.17.txt:6387
 V5.17.txt:6388
 V5.17.txt:6389
 V5.17.txt:6390
 V5.17.txt:6391
 V5.17.txt:6392
 V5.17.txt:6393
 V5.17.txt:6394
 V5.17.txt:6395
 V5.17.txt:6396
 V5.17.txt:6397
 V5.17.txt:6398
 V5.17.txt:6399
 V5.17.txt:6400
 V5.17.txt:6401
 V5.17.txt:6402
 V5.17.txt:6403
 V5.17.txt:6404
 V5.17.txt:6405
 V5.17.txt:6406
 V5.17.txt:6407
 V5.17.txt:6408
 V5.17.txt:6409
 V5.17.txt:6410
 V5.17.txt:6411
 V5.17.txt:6412
 V5.17.txt:6413
 V5.17.txt:6414
 V5.17.txt:6415
 V5.17.txt:6416
 V5.17.txt:6417
 V5.17.txt:6418
 V5.17.txt:6419
 V5.17.txt:6420
 V5.17.txt:6421
 V5.17.txt:6422
 V5.17.txt:6423
 V5.17.txt:6424
 V5.17.txt:6425
 V5.17.txt:6426
 V5.17.txt:6427
 V5.17.txt:6428
 V5.17.txt:6429
 V5.17.txt:6430
 V5.17.txt:6431
 V5.17.txt:6432
 V5.17.txt:6433
 V5.17.txt:6434
 V5.17.txt:6435
 V5.17.txt:6436
 V5.17.txt:6437
 V5.17.txt:6438
 V5.17.txt:6439
 V5.17.txt:6440
 V5.17.txt:6441
 V5.17.txt:6442
 V5.17.txt:6443
 V5.17.txt:6444
 V5.17.txt:6445
 V5.17.txt:6446
 V5.17.txt:6447
 V5.17.txt:6448
 V5.17.txt:6449
 V5.17.txt:6450
 V5.17.txt:6451
 V5.17.txt:6452
 V5.17.txt:6453
 V5.17.txt:6454
 V5.17.txt:6455
 V5.17.txt:6456
 V5.17.txt:6457
 V5.17.txt:6458
 V5.17.txt:6459
 V5.17.txt:6460
 V5.17.txt:6461
 V5.17.txt:6462
 V5.17.txt:6463
 V5.17.txt:6464
 V5.17.txt:6465
 V5.17.txt:6466
 V5.17.txt:6467
 V5.17.txt:6468
 V5.17.txt:6469
 V5.17.txt:6470
 V5.17.txt:6471
 V5.17.txt:6472
 V5.17.txt:6473
 V5.17.txt:6474
 V5.17.txt:6475
 V5.17.txt:6476
 V5.17.txt:6477
 V5.17.txt:6478
 V5.17.txt:6479
 V5.17.txt:6480
 V5.17.txt:6481
 V5.17.txt:6482
 V5.17.txt:6483
 V5.17.txt:6484
 V5.17.txt:6485
 V5.17.txt:6486
 V5.17.txt:6487
 V5.17.txt:6488
 V5.17.txt:6489
 V5.17.txt:6490
 V5.17.txt:6491
 V5.17.txt:6492
 V5.17.txt:6493
 V5.17.txt:6494
 V5.17.txt:6495
 V5.17.txt:6496
 V5.17.txt:6497
 V5.17.txt:6498
 V5.17.txt:6499
 V5.17.txt:6500
 V5.17.txt:6501
 V5.17.txt:6502
 V5.17.txt:6503
 V5.17.txt:6504
 V5.17.txt:6505
 V5.17.txt:6506
 V5.17.txt:6507
 V5.17.txt:6508
 V5.17.txt:6509
 V5.17.txt:6510
 V5.17.txt:6511
 V5.17.txt:6512
 V5.17.txt:6513
 V5.17.txt:6514
 V5.17.txt:6515
 V5.17.txt:6516
 V5.17.txt:6517
 V5.17.txt:6518
 V5.17.txt:6519
 V5.17.txt:6520
 V5.17.txt:6521
 V5.17.txt:6522
 V5.17.txt:6523
 V5.17.txt:6524
 V5.17.txt:6525
 V5.17.txt:6526
 V5.17.txt:6527
 V5.17.txt:6528
 V5.17.txt:6529
 V5.17.txt:6530
 V5.17.txt:6531
 V5.17.txt:6532
 V5.17.txt:6533
 V5.17.txt:6534
 V5.17.txt:6535
 V5.17.txt:6536
 V5.17.txt:6537
 V5.17.txt:6538
 V5.17.txt:6539
 V5.17.txt:6540
 V5.17.txt:6541
 V5.17.txt:6542
 V5.17.txt:6543
 V5.17.txt:6544
 V5.17.txt:6545
 V5.17.txt:6546
 V5.17.txt:6547
 V5.17.txt:6548
 V5.17.txt:6549
 V5.17.txt:6550
 V5.17.txt:6551
 V5.17.txt:6552
 V5.17.txt:6553
 V5.17.txt:6554
 V5.17.txt:6555
 V5.17.txt:6556
 V5.17.txt:6557
 V5.17.txt:6558
 V5.17.txt:6559
 V5.17.txt:6560
 V5.17.txt:6561
 V5.17.txt:6562
 V5.17.txt:6563
 V5.17.txt:6564
 V5.17.txt:6565
 V5.17.txt:6566
 V5.17.txt:6567
 V5.17.txt:6568
 V5.17.txt:6569
 V5.17.txt:6570
 V5.17.txt:6571
 V5.17.txt:6572
 V5.17.txt:6573
 V5.17.txt:6574
 V5.17.txt:6575
 V5.17.txt:6576
 V5.17.txt:6577
 V5.17.txt:6578
 V5.17.txt:6579
 V5.17.txt:6580
 V5.17.txt:6581
 V5.17.txt:6582
 V5.17.txt:6583
 V5.17.txt:6584
 V5.17.txt:6585
 V5.17.txt:6586
 V5.17.txt:6587
 V5.17.txt:6588
 V5.17.txt:6589
 V5.17.txt:6590
 V5.17.txt:6591
 V5.17.txt:6592
 V5.17.txt:6593
 V5.17.txt:6594
 V5.17.txt:6595
 V5.17.txt:6596
 V5.17.txt:6597
 V5.17.txt:6598
 V5.17.txt:6599
 V5.17.txt:6600
 V5.17.txt:6601
 V5.17.txt:6602
 V5.17.txt:6603
 V5.17.txt:6604
 V5.17.txt:6605
 V5.17.txt:6606
 V5.17.txt:6607
 V5.17.txt:6608
 V5.17.txt:6609
 V5.17.txt:6610
 V5.17.txt:6611
 V5.17.txt:6612
 V5.17.txt:6613
 V5.17.txt:6614
 V5.17.txt:6615
 V5.17.txt:6616
 V5.17.txt:6617
 V5.17.txt:6618
 V5.17.txt:6619
 V5.17.txt:6620
 V5.17.txt:6621
 V5.17.txt:6622
 V5.17.txt:6623
 V5.17.txt:6624
 V5.17.txt:6625
 V5.17.txt:6626
 V5.17.txt:6627
 V5.17.txt:6628
 V5.17.txt:6629
 V5.17.txt:6630
 V5.17.txt:6631
 V5.17.txt:6632
 V5.17.txt:6633
 V5.17.txt:6634
 V5.17.txt:6635
 V5.17.txt:6636
 V5.17.txt:6637
 V5.17.txt:6638
 V5.17.txt:6639
 V5.17.txt:6640
 V5.17.txt:6641
 V5.17.txt:6642
 V5.17.txt:6643
 V5.17.txt:6644
 V5.17.txt:6645
 V5.17.txt:6646
 V5.17.txt:6647
 V5.17.txt:6648
 V5.17.txt:6649
 V5.17.txt:6650
 V5.17.txt:6651
 V5.17.txt:6652
 V5.17.txt:6653
 V5.17.txt:6654
 V5.17.txt:6655
 V5.17.txt:6656
 V5.17.txt:6657
 V5.17.txt:6658
 V5.17.txt:6659
 V5.17.txt:6660
 V5.17.txt:6661
 V5.17.txt:6662
 V5.17.txt:6663
 V5.17.txt:6664
 V5.17.txt:6665
 V5.17.txt:6666
 V5.17.txt:6667
 V5.17.txt:6668
 V5.17.txt:6669
 V5.17.txt:6670
 V5.17.txt:6671
 V5.17.txt:6672
 V5.17.txt:6673
 V5.17.txt:6674
 V5.17.txt:6675
 V5.17.txt:6676
 V5.17.txt:6677
 V5.17.txt:6678
 V5.17.txt:6679
 V5.17.txt:6680
 V5.17.txt:6681
 V5.17.txt:6682
 V5.17.txt:6683
 V5.17.txt:6684
 V5.17.txt:6685
 V5.17.txt:6686
 V5.17.txt:6687
 V5.17.txt:6688
 V5.17.txt:6689
 V5.17.txt:6690
 V5.17.txt:6691
 V5.17.txt:6692
 V5.17.txt:6693
 V5.17.txt:6694
 V5.17.txt:6695
 V5.17.txt:6696
 V5.17.txt:6697
 V5.17.txt:6698
 V5.17.txt:6699
 V5.17.txt:6700
 V5.17.txt:6701
 V5.17.txt:6702
 V5.17.txt:6703
 V5.17.txt:6704
 V5.17.txt:6705
 V5.17.txt:6706
 V5.17.txt:6707
 V5.17.txt:6708
 V5.17.txt:6709
 V5.17.txt:6710
 V5.17.txt:6711
 V5.17.txt:6712
 V5.17.txt:6713
 V5.17.txt:6714
 V5.17.txt:6715
 V5.17.txt:6716
 V5.17.txt:6717
 V5.17.txt:6718
 V5.17.txt:6719
 V5.17.txt:6720
 V5.17.txt:6721
 V5.17.txt:6722
 V5.17.txt:6723
 V5.17.txt:6724
 V5.17.txt:6725
 V5.17.txt:6726
 V5.17.txt:6727
 V5.17.txt:6728
 V5.17.txt:6729
 V5.17.txt:6730
 V5.17.txt:6731
 V5.17.txt:6732
 V5.17.txt:6733
 V5.17.txt:6734
 V5.17.txt:6735
 V5.17.txt:6736
 V5.17.txt:6737
 V5.17.txt:6738
 V5.17.txt:6739
 V5.17.txt:6740
 V5.17.txt:6741
 V5.17.txt:6742
 V5.17.txt:6743
 V5.17.txt:6744
 V5.17.txt:6745
 V5.17.txt:6746
 V5.17.txt:6747
 V5.17.txt:6748
 V5.17.txt:6749
 V5.17.txt:6750
 V5.17.txt:6751
 V5.17.txt:6752
 V5.17.txt:6753
 V5.17.txt:6754
 V5.17.txt:6755
 V5.17.txt:6756
 V5.17.txt:6757
 V5.17.txt:6758
 V5.17.txt:6759
 V5.17.txt:6760
 V5.17.txt:6761
 V5.17.txt:6762
 V5.17.txt:6763
 V5.17.txt:6764
 V5.17.txt:6765
 V5.17.txt:6766
 V5.17.txt:6767
 V5.17.txt:6768
 V5.17.txt:6769
 V5.17.txt:6770
 V5.17.txt:6771
 V5.17.txt:6772
 V5.17.txt:6773
 V5.17.txt:6774
 V5.17.txt:6775
 V5.17.txt:6776
 V5.17.txt:6777
 V5.17.txt:6778
 V5.17.txt:6779
 V5.17.txt:6780
 V5.17.txt:6781
 V5.17.txt:6782
 V5.17.txt:6783
 V5.17.txt:6784
 V5.17.txt:6785
 V5.17.txt:6786
 V5.17.txt:6787
 V5.17.txt:6788
 V5.17.txt:6789
 V5.17.txt:6790
 V5.17.txt:6791
 V5.17.txt:6792
 V5.17.txt:6793
 V5.17.txt:6794
 V5.17.txt:6795
 V5.17.txt:6796
 V5.17.txt:6797
 V5.17.txt:6798
 V5.17.txt:6799
 V5.17.txt:6800
 V5.17.txt:6801
 V5.17.txt:6802
 V5.17.txt:6803
 V5.17.txt:6804
 V5.17.txt:6805
 V5.17.txt:6806
 V5.17.txt:6807
 V5.17.txt:6808
 V5.17.txt:6809
 V5.17.txt:6810
 V5.17.txt:6811
 V5.17.txt:6812
 V5.17.txt:6813
 V5.17.txt:6814
 V5.17.txt:6815
 V5.17.txt:6816
 V5.17.txt:6817
 V5.17.txt:6818
 V5.17.txt:6819
 V5.17.txt:6820
 V5.17.txt:6821
 V5.17.txt:6822
 V5.17.txt:6823
 V5.17.txt:6824
 V5.17.txt:6825
 V5.17.txt:6826
 V5.17.txt:6827
 V5.17.txt:6828
 V5.17.txt:6829
 V5.17.txt:6830
 V5.17.txt:6831
 V5.17.txt:6832
 V5.17.txt:6833
 V5.17.txt:6834
 V5.17.txt:6835
 V5.17.txt:6836
 V5.17.txt:6837
 V5.17.txt:6838
 V5.17.txt:6839
 V5.17.txt:6840
 V5.17.txt:6841
 V5.17.txt:6842
 V5.17.txt:6843
 V5.17.txt:6844
 V5.17.txt:6845
 V5.17.txt:6846
 V5.17.txt:6847
 V5.17.txt:6848
 V5.17.txt:6849
 V5.17.txt:6850
 V5.17.txt:6851
 V5.17.txt:6852
 V5.17.txt:6853
 V5.17.txt:6854
 V5.17.txt:6855
 V5.17.txt:6856
 V5.17.txt:6857
 V5.17.txt:6858
 V5.17.txt:6859
 V5.17.txt:6860
 V5.17.txt:6861
 V5.17.txt:6862
 V5.17.txt:6863
 V5.17.txt:6864
 V5.17.txt:6865
 V5.17.txt:6866
 V5.17.txt:6867
 V5.17.txt:6868
 V5.17.txt:6869
 V5.17.txt:6870
 V5.17.txt:6871
 V5.17.txt:6872
 V5.17.txt:6873
 V5.17.txt:6874
 V5.17.txt:6875
 V5.17.txt:6876
 V5.17.txt:6877
 V5.17.txt:6878
 V5.17.txt:6879
 V5.17.txt:6880
 V5.17.txt:6881
 V5.17.txt:6882
 V5.17.txt:6883
 V5.17.txt:6884
 V5.17.txt:6885
 V5.17.txt:6886
 V5.17.txt:6887
 V5.17.txt:6888
 V5.17.txt:6889
 V5.17.txt:6890
 V5.17.txt:6891
 V5.17.txt:6892
 V5.17.txt:6893
 V5.17.txt:6894
 V5.17.txt:6895
 V5.17.txt:6896
 V5.17.txt:6897
 V5.17.txt:6898
 V5.17.txt:6899
 V5.17.txt:6900
 V5.17.txt:6901
 V5.17.txt:6902
 V5.17.txt:6903
 V5.17.txt:6904
 V5.17.txt:6905
 V5.17.txt:6906
 V5.17.txt:6907
 V5.17.txt:6908
 V5.17.txt:6909
 V5.17.txt:6910
 V5.17.txt:6911
 V5.17.txt:6912
 V5.17.txt:6913
 V5.17.txt:6914
 V5.17.txt:6915
 V5.17.txt:6916
 V5.17.txt:6917
 V5.17.txt:6918
 V5.17.txt:6919
 V5.17.txt:6920
 V5.17.txt:6921
 V5.17.txt:6922
 V5.17.txt:6923
 V5.17.txt:6924
 V5.17.txt:6925
 V5.17.txt:6926
 V5.17.txt:6927
 V5.17.txt:6928
 V5.17.txt:6929
 V5.17.txt:6930
 V5.17.txt:6931
 V5.17.txt:6932
 V5.17.txt:6933
 V5.17.txt:6934
 V5.17.txt:6935
 V5.17.txt:6936
 V5.17.txt:6937
 V5.17.txt:6938
 V5.17.txt:6939
 V5.17.txt:6940
 V5.17.txt:6941
 V5.17.txt:6942
 V5.17.txt:6943
 V5.17.txt:6944
 V5.17.txt:6945
 V5.17.txt:6946
 V5.17.txt:6947
 V5.17.txt:6948
 V5.17.txt:6949
 V5.17.txt:6950
 V5.17.txt:6951
 V5.17.txt:6952
 V5.17.txt:6953
 V5.17.txt:6954
 V5.17.txt:6955
 V5.17.txt:6956
 V5.17.txt:6957
 V5.17.txt:6958
 V5.17.txt:6959
 V5.17.txt:6960
 V5.17.txt:6961
 V5.17.txt:6962
 V5.17.txt:6963
 V5.17.txt:6964
 V5.17.txt:6965
 V5.17.txt:6966
 V5.17.txt:6967
 V5.17.txt:6968
 V5.17.txt:6969
 V5.17.txt:6970
 V5.17.txt:6971
 V5.17.txt:6972
 V5.17.txt:6973
 V5.17.txt:6974
 V5.17.txt:6975
 V5.17.txt:6976
 V5.17.txt:6977
 V5.17.txt:6978
 V5.17.txt:6979
 V5.17.txt:6980
 V5.17.txt:6981
 V5.17.txt:6982
 V5.17.txt:6983
 V5.17.txt:6984
 V5.17.txt:6985
 V5.17.txt:6986
 V5.17.txt:6987
 V5.17.txt:6988
 V5.17.txt:6989
 V5.17.txt:6990
 V5.17.txt:6991
 V5.17.txt:6992
 V5.17.txt:6993
 V5.17.txt:6994
 V5.17.txt:6995
 V5.17.txt:6996
 V5.17.txt:6997
 V5.17.txt:6998
 V5.17.txt:6999
 V5.17.txt:7000
 V5.17.txt:7001
 V5.17.txt:7002
 V5.17.txt:7003
 V5.17.txt:7004
 V5.17.txt:7005
 V5.17.txt:7006
 V5.17.txt:7007
 V5.17.txt:7008
 V5.17.txt:7009
 V5.17.txt:7010
 V5.17.txt:7011
 V5.17.txt:7012
 V5.17.txt:7013
 V5.17.txt:7014
 V5.17.txt:7015
 V5.17.txt:7016
 V5.17.txt:7017
 V5.17.txt:7018
 V5.17.txt:7019
 V5.17.txt:7020
 V5.17.txt:7021
 V5.17.txt:7022
 V5.17.txt:7023
 V5.17.txt:7024
 V5.17.txt:7025
 V5.17.txt:7026
 V5.17.txt:7027
 V5.17.txt:7028
 V5.17.txt:7029
 V5.17.txt:7030
 V5.17.txt:7031
 V5.17.txt:7032
 V5.17.txt:7033
 V5.17.txt:7034
 V5.17.txt:7035
 V5.17.txt:7036
 V5.17.txt:7037
 V5.17.txt:7038
 V5.17.txt:7039
 V5.17.txt:7040
 V5.17.txt:7041
 V5.17.txt:7042
 V5.17.txt:7043
 V5.17.txt:7044
 V5.17.txt:7045
 V5.17.txt:7046
 V5.17.txt:7047
 V5.17.txt:7048
 V5.17.txt:7049
 V5.17.txt:7050
 V5.17.txt:7051
 V5.17.txt:7052
 V5.17.txt:7053
 V5.17.txt:7054
 V5.17.txt:7055
 V5.17.txt:7056
 V5.17.txt:7057
 V5.17.txt:7058
 V5.17.txt:7059
 V5.17.txt:7060
 V5.17.txt:7061
 V5.17.txt:7062
 V5.17.txt:7063
 V5.17.txt:7064
 V5.17.txt:7065
 V5.17.txt:7066
 V5.17.txt:7067
 V5.17.txt:7068
 V5.17.txt:7069
 V5.17.txt:7070
 V5.17.txt:7071
 V5.17.txt:7072
 V5.17.txt:7073
 V5.17.txt:7074
 V5.17.txt:7075
 V5.17.txt:7076
 V5.17.txt:7077
 V5.17.txt:7078
 V5.17.txt:7079
 V5.17.txt:7080
 V5.17.txt:7081
 V5.17.txt:7082
 V5.17.txt:7083
 V5.17.txt:7084
 V5.17.txt:7085
 V5.17.txt:7086
 V5.17.txt:7087
 V5.17.txt:7088
 V5.17.txt:7089
 V5.17.txt:7090
 V5.17.txt:7091
 V5.17.txt:7092
 V5.17.txt:7093
 V5.17.txt:7094
 V5.17.txt:7095
 V5.17.txt:7096
 V5.17.txt:7097
 V5.17.txt:7098
 V5.17.txt:7099
 V5.17.txt:7100
 V5.17.txt:7101
 V5.17.txt:7102
 V5.17.txt:7103
 V5.17.txt:7104
 V5.17.txt:7105
 V5.17.txt:7106
 V5.17.txt:7107
 V5.17.txt:7108
 V5.17.txt:7109
 V5.17.txt:7110
 V5.17.txt:7111
 V5.17.txt:7112
 V5.17.txt:7113
 V5.17.txt:7114
 V5.17.txt:7115
 V5.17.txt:7116
 V5.17.txt:7117
 V5.17.txt:7118
 V5.17.txt:7119
 V5.17.txt:7120
 V5.17.txt:7121
 V5.17.txt:7122
 V5.17.txt:7123
 V5.17.txt:7124
 V5.17.txt:7125
 V5.17.txt:7126
 V5.17.txt:7127
 V5.17.txt:7128
 V5.17.txt:7129
 V5.17.txt:7130
 V5.17.txt:7131
 V5.17.txt:7132
 V5.17.txt:7133
 V5.17.txt:7134
 V5.17.txt:7135
 V5.17.txt:7136
 V5.17.txt:7137
 V5.17.txt:7138
 V5.17.txt:7139
 V5.17.txt:7140
 V5.17.txt:7141
 V5.17.txt:7142
 V5.17.txt:7143
 V5.17.txt:7144
 V5.17.txt:7145
 V5.17.txt:7146
 V5.17.txt:7147
 V5.17.txt:7148
 V5.17.txt:7149
 V5.17.txt:7150
 V5.17.txt:7151
 V5.17.txt:7152
 V5.17.txt:7153
 V5.17.txt:7154
 V5.17.txt:7155
 V5.17.txt:7156
 V5.17.txt:7157
 V5.17.txt:7158
 V5.17.txt:7159
 V5.17.txt:7160
 V5.17.txt:7161
 V5.17.txt:7162
 V5.17.txt:7163
 V5.17.txt:7164
 V5.17.txt:7165
 V5.17.txt:7166
 V5.17.txt:7167
 V5.17.txt:7168
 V5.17.txt:7169
 V5.17.txt:7170
 V5.17.txt:7171
 V5.17.txt:7172
 V5.17.txt:7173
 V5.17.txt:7174
 V5.17.txt:7175
 V5.17.txt:7176
 V5.17.txt:7177
 V5.17.txt:7178
 V5.17.txt:7179
 V5.17.txt:7180
 V5.17.txt:7181
 V5.17.txt:7182
 V5.17.txt:7183
 V5.17.txt:7184
 V5.17.txt:7185
 V5.17.txt:7186
 V5.17.txt:7187
 V5.17.txt:7188
 V5.17.txt:7189
 V5.17.txt:7190
 V5.17.txt:7191
 V5.17.txt:7192
 V5.17.txt:7193
 V5.17.txt:7194
 V5.17.txt:7195
 V5.17.txt:7196
 V5.17.txt:7197
 V5.17.txt:7198
 V5.17.txt:7199
 V5.17.txt:7200
 V5.17.txt:7201
 V5.17.txt:7202
 V5.17.txt:7203
 V5.17.txt:7204
 V5.17.txt:7205
 V5.17.txt:7206
 V5.17.txt:7207
 V5.17.txt:7208
 V5.17.txt:7209
 V5.17.txt:7210
 V5.17.txt:7211
 V5.17.txt:7212
 V5.17.txt:7213
 V5.17.txt:7214
 V5.17.txt:7215
 V5.17.txt:7216
 V5.17.txt:7217
 V5.17.txt:7218
 V5.17.txt:7219
 V5.17.txt:7220
 V5.17.txt:7221
 V5.17.txt:7222
 V5.17.txt:7223
 V5.17.txt:7224
 V5.17.txt:7225
 V5.17.txt:7226
 V5.17.txt:7227
 V5.17.txt:7228
 V5.17.txt:7229
 V5.17.txt:7230
 V5.17.txt:7231
 V5.17.txt:7232
 V5.17.txt:7233
 V5.17.txt:7234
 V5.17.txt:7235
 V5.17.txt:7236
 V5.17.txt:7237
 V5.17.txt:7238
 V5.17.txt:7239
 V5.17.txt:7240
 V5.17.txt:7241
 V5.17.txt:7242
 V5.17.txt:7243
 V5.17.txt:7244
 V5.17.txt:7245
 V5.17.txt:7246
 V5.17.txt:7247
 V5.17.txt:7248
 V5.17.txt:7249
 V5.17.txt:7250
 V5.17.txt:7251
 V5.17.txt:7252
 V5.17.txt:7253
 V5.17.txt:7254
 V5.17.txt:7255
 V5.17.txt:7256
 V5.17.txt:7257
 V5.17.txt:7258
 V5.17.txt:7259
 V5.17.txt:7260
 V5.17.txt:7261
 V5.17.txt:7262
 V5.17.txt:7263
 V5.17.txt:7264
 V5.17.txt:7265
 V5.17.txt:7266
 V5.17.txt:7267
 V5.17.txt:7268
 V5.17.txt:7269
 V5.17.txt:7270
 V5.17.txt:7271
 V5.17.txt:7272
 V5.17.txt:7273
 V5.17.txt:7274
 V5.17.txt:7275
 V5.17.txt:7276
 V5.17.txt:7277
 V5.17.txt:7278
 V5.17.txt:7279
 V5.17.txt:7280
 V5.17.txt:7281
 V5.17.txt:7282
 V5.17.txt:7283
 V5.17.txt:7284
 V5.17.txt:7285
 V5.17.txt:7286
 V5.17.txt:7287
 V5.17.txt:7288
 V5.17.txt:7289
 V5.17.txt:7290
 V5.17.txt:7291
 V5.17.txt:7292
 V5.17.txt:7293
 V5.17.txt:7294
 V5.17.txt:7295
 V5.17.txt:7296
 V5.17.txt:7297
 V5.17.txt:7298
 V5.17.txt:7299
 V5.17.txt:7300
 V5.17.txt:7301
 V5.17.txt:7302
 V5.17.txt:7303
 V5.17.txt:7304
 V5.17.txt:7305
 V5.17.txt:7306
 V5.17.txt:7307
 V5.17.txt:7308
 V5.17.txt:7309
 V5.17.txt:7310
 V5.17.txt:7311
 V5.17.txt:7312
 V5.17.txt:7313
 V5.17.txt:7314
 V5.17.txt:7315
 V5.17.txt:7316
 V5.17.txt:7317
 V5.17.txt:7318
 V5.17.txt:7319
 V5.17.txt:7320
 V5.17.txt:7321
 V5.17.txt:7322
 V5.17.txt:7323
 V5.17.txt:7324
 V5.17.txt:7325
 V5.17.txt:7326
 V5.17.txt:7327
 V5.17.txt:7328
 V5.17.txt:7329
 V5.17.txt:7330
 V5.17.txt:7331
 V5.17.txt:7332
 V5.17.txt:7333
 V5.17.txt:7334
 V5.17.txt:7335
 V5.17.txt:7336
 V5.17.txt:7337
 V5.17.txt:7338
 V5.17.txt:7339
 V5.17.txt:7340
 V5.17.txt:7341
 V5.17.txt:7342
 V5.17.txt:7343
 V5.17.txt:7344
 V5.17.txt:7345
 V5.17.txt:7346
 V5.17.txt:7347
 V5.17.txt:7348
 V5.17.txt:7349
 V5.17.txt:7350
 V5.17.txt:7351
 V5.17.txt:7352
 V5.17.txt:7353
 V5.17.txt:7354
 V5.17.txt:7355
 V5.17.txt:7356
 V5.17.txt:7357
 V5.17.txt:7358
 V5.17.txt:7359
 V5.17.txt:7360
 V5.17.txt:7361
 V5.17.txt:7362
 V5.17.txt:7363
 V5.17.txt:7364
 V5.17.txt:7365
 V5.17.txt:7366
 V5.17.txt:7367
 V5.17.txt:7368
 V5.17.txt:7369
 V5.17.txt:7370
 V5.17.txt:7371
 V5.17.txt:7372
 V5.17.txt:7373
 V5.17.txt:7374
 V5.17.txt:7375
 V5.17.txt:7376
 V5.17.txt:7377
 V5.17.txt:7378
 V5.17.txt:7379
 V5.17.txt:7380
 V5.17.txt:7381
 V5.17.txt:7382
 V5.17.txt:7383
 V5.17.txt:7384
 V5.17.txt:7385
 V5.17.txt:7386
 V5.17.txt:7387
 V5.17.txt:7388
 V5.17.txt:7389
 V5.17.txt:7390
 V5.17.txt:7391
 V5.17.txt:7392
 V5.17.txt:7393
 V5.17.txt:7394
 V5.17.txt:7395
 V5.17.txt:7396
 V5.17.txt:7397
 V5.17.txt:7398
 V5.17.txt:7399
 V5.17.txt:7400
 V5.17.txt:7401
 V5.17.txt:7402
 V5.17.txt:7403
 V5.17.txt:7404
 V5.17.txt:7405
 V5.17.txt:7406
 V5.17.txt:7407
 V5.17.txt:7408
 V5.17.txt:7409
 V5.17.txt:7410
 V5.17.txt:7411
 V5.17.txt:7412
 V5.17.txt:7413
 V5.17.txt:7414
 V5.17.txt:7415
 V5.17.txt:7416
 V5.17.txt:7417
 V5.17.txt:7418
 V5.17.txt:7419
 V5.17.txt:7420
 V5.17.txt:7421
 V5.17.txt:7422
 V5.17.txt:7423
 V5.17.txt:7424
 V5.17.txt:7425
 V5.17.txt:7426
 V5.17.txt:7427
 V5.17.txt:7428
 V5.17.txt:7429
 V5.17.txt:7430
 V5.17.txt:7431
 V5.17.txt:7432
 V5.17.txt:7433
 V5.17.txt:7434
 V5.17.txt:7435
 V5.17.txt:7436
 V5.17.txt:7437
 V5.17.txt:7438
 V5.17.txt:7439
 V5.17.txt:7440
 V5.17.txt:7441
 V5.17.txt:7442
 V5.17.txt:7443
 V5.17.txt:7444
 V5.17.txt:7445
 V5.17.txt:7446
 V5.17.txt:7447
 V5.17.txt:7448
 V5.17.txt:7449
 V5.17.txt:7450
 V5.17.txt:7451
 V5.17.txt:7452
 V5.17.txt:7453
 V5.17.txt:7454
 V5.17.txt:7455
 V5.17.txt:7456
 V5.17.txt:7457
 V5.17.txt:7458
 V5.17.txt:7459
 V5.17.txt:7460
 V5.17.txt:7461
 V5.17.txt:7462
 V5.17.txt:7463
 V5.17.txt:7464
 V5.17.txt:7465
 V5.17.txt:7466
 V5.17.txt:7467
 V5.17.txt:7468
 V5.17.txt:7469
 V5.17.txt:7470
 V5.17.txt:7471
 V5.17.txt:7472
 V5.17.txt:7473
 V5.17.txt:7474
 V5.17.txt:7475
 V5.17.txt:7476
 V5.17.txt:7477
 V5.17.txt:7478
 V5.17.txt:7479
 V5.17.txt:7480
 V5.17.txt:7481
 V5.17.txt:7482
 V5.17.txt:7483
 V5.17.txt:7484
 V5.17.txt:7485
 V5.17.txt:7486
 V5.17.txt:7487
 V5.17.txt:7488
 V5.17.txt:7489
 V5.17.txt:7490
 V5.17.txt:7491
 V5.17.txt:7492
 V5.17.txt:7493
 V5.17.txt:7494
 V5.17.txt:7495
 V5.17.txt:7496
 V5.17.txt:7497
 V5.17.txt:7498
 V5.17.txt:7499
 V5.17.txt:7500
 V5.17.txt:7501
 V5.17.txt:7502
 V5.17.txt:7503
 V5.17.txt:7504
 V5.17.txt:7505
 V5.17.txt:7506
 V5.17.txt:7507
 V5.17.txt:7508
 V5.17.txt:7509
 V5.17.txt:7510
 V5.17.txt:7511
 V5.17.txt:7512
 V5.17.txt:7513
 V5.17.txt:7514
 V5.17.txt:7515
 V5.17.txt:7516
 V5.17.txt:7517
 V5.17.txt:7518
 V5.17.txt:7519
 V5.17.txt:7520
 V5.17.txt:7521
 V5.17.txt:7522
 V5.17.txt:7523
 V5.17.txt:7524
 V5.17.txt:7525
 V5.17.txt:7526
 V5.17.txt:7527
 V5.17.txt:7528
 V5.17.txt:7529
 V5.17.txt:7530
 V5.17.txt:7531
 V5.17.txt:7532
 V5.17.txt:7533
 V5.17.txt:7534
 V5.17.txt:7535
 V5.17.txt:7536
 V5.17.txt:7537
 V5.17.txt:7538
 V5.17.txt:7539
 V5.17.txt:7540
 V5.17.txt:7541
 V5.17.txt:7542
 V5.17.txt:7543
 V5.17.txt:7544
 V5.17.txt:7545
 V5.17.txt:7546
 V5.17.txt:7547
 V5.17.txt:7548
 V5.17.txt:7549
 V5.17.txt:7550
 V5.17.txt:7551
 V5.17.txt:7552
 V5.17.txt:7553
 V5.17.txt:7554
 V5.17.txt:7555
 V5.17.txt:7556
 V5.17.txt:7557
 V5.17.txt:7558
 V5.17.txt:7559
 V5.17.txt:7560
 V5.17.txt:7561
 V5.17.txt:7562
 V5.17.txt:7563
 V5.17.txt:7564
 V5.17.txt:7565
 V5.17.txt:7566
 V5.17.txt:7567
 V5.17.txt:7568
 V5.17.txt:7569
 V5.17.txt:7570
 V5.17.txt:7571
 V5.17.txt:7572
 V5.17.txt:7573
 V5.17.txt:7574
 V5.17.txt:7575
 V5.17.txt:7576
 V5.17.txt:7577
 V5.17.txt:7578
 V5.17.txt:7579
 V5.17.txt:7580
 V5.17.txt:7581
 V5.17.txt:7582
 V5.17.txt:7583
 V5.17.txt:7584
 V5.17.txt:7585
 V5.17.txt:7586
 V5.17.txt:7587
 V5.17.txt:7588
 V5.17.txt:7589
 V5.17.txt:7590
 V5.17.txt:7591
 V5.17.txt:7592
 V5.17.txt:7593
 V5.17.txt:7594
 V5.17.txt:7595
 V5.17.txt:7596
 V5.17.txt:7597
 V5.17.txt:7598
 V5.17.txt:7599
 V5.17.txt:7600
 V5.17.txt:7601
 V5.17.txt:7602
 V5.17.txt:7603
 V5.17.txt:7604
 V5.17.txt:7605
 V5.17.txt:7606
 V5.17.txt:7607
 V5.17.txt:7608
 V5.17.txt:7609
 V5.17.txt:7610
 V5.17.txt:7611
 V5.17.txt:7612
 V5.17.txt:7613
 V5.17.txt:7614
 V5.17.txt:7615
 V5.17.txt:7616
 V5.17.txt:7617
 V5.17.txt:7618
 V5.17.txt:7619
 V5.17.txt:7620
 V5.17.txt:7621
 V5.17.txt:7622
 V5.17.txt:7623
 V5.17.txt:7624
 V5.17.txt:7625
 V5.17.txt:7626
 V5.17.txt:7627
 V5.17.txt:7628
 V5.17.txt:7629
 V5.17.txt:7630
 V5.17.txt:7631
 V5.17.txt:7632
 V5.17.txt:7633
 V5.17.txt:7634
 V5.17.txt:7635
 V5.17.txt:7636
 V5.17.txt:7637
 V5.17.txt:7638
 V5.17.txt:7639
 V5.17.txt:7640
 V5.17.txt:7641
 V5.17.txt:7642
 V5.17.txt:7643
 V5.17.txt:7644
 V5.17.txt:7645
 V5.17.txt:7646
 V5.17.txt:7647
 V5.17.txt:7648
 V5.17.txt:7649
 V5.17.txt:7650
 V5.17.txt:7651
 V5.17.txt:7652
 V5.17.txt:7653
 V5.17.txt:7654
 V5.17.txt:7655
 V5.17.txt:7656
 V5.17.txt:7657
 V5.17.txt:7658
 V5.17.txt:7659
 V5.17.txt:7660
 V5.17.txt:7661
 V5.17.txt:7662
 V5.17.txt:7663
 V5.17.txt:7664
 V5.17.txt:7665
 V5.17.txt:7666
 V5.17.txt:7667
 V5.17.txt:7668
 V5.17.txt:7669
 V5.17.txt:7670
 V5.17.txt:7671
 V5.17.txt:7672
 V5.17.txt:7673
 V5.17.txt:7674
 V5.17.txt:7675
 V5.17.txt:7676
 V5.17.txt:7677
 V5.17.txt:7678
 V5.17.txt:7679
 V5.17.txt:7680
 V5.17.txt:7681
 V5.17.txt:7682
 V5.17.txt:7683
 V5.17.txt:7684
 V5.17.txt:7685
 V5.17.txt:7686
 V5.17.txt:7687
 V5.17.txt:7688
 V5.17.txt:7689
 V5.17.txt:7690
 V5.17.txt:7691
 V5.17.txt:7692
 V5.17.txt:7693
 V5.17.txt:7694
 V5.17.txt:7695
 V5.17.txt:7696
 V5.17.txt:7697
 V5.17.txt:7698
 V5.17.txt:7699
 V5.17.txt:7700
 V5.17.txt:7701
 V5.17.txt:7702
 V5.17.txt:7703
 V5.17.txt:7704
 V5.17.txt:7705
 V5.17.txt:7706
 V5.17.txt:7707
 V5.17.txt:7708
 V5.17.txt:7709
 V5.17.txt:7710
 V5.17.txt:7711
 V5.17.txt:7712
 V5.17.txt:7713
 V5.17.txt:7714
 V5.17.txt:7715
 V5.17.txt:7716
 V5.17.txt:7717
 V5.17.txt:7718
 V5.17.txt:7719
 V5.17.txt:7720
 V5.17.txt:7721
 V5.17.txt:7722
 V5.17.txt:7723
 V5.17.txt:7724
 V5.17.txt:7725
 V5.17.txt:7726
 V5.17.txt:7727
 V5.17.txt:7728
 V5.17.txt:7729
 V5.17.txt:7730
 V5.17.txt:7731
 V5.17.txt:7732
 V5.17.txt:7733
 V5.17.txt:7734
 V5.17.txt:7735
 V5.17.txt:7736
 V5.17.txt:7737
 V5.17.txt:7738
 V5.17.txt:7739
 V5.17.txt:7740
 V5.17.txt:7741
 V5.17.txt:7742
 V5.17.txt:7743
 V5.17.txt:7744
 V5.17.txt:7745
 V5.17.txt:7746
 V5.17.txt:7747
 V5.17.txt:7748
 V5.17.txt:7749
 V5.17.txt:7750
 V5.17.txt:7751
 V5.17.txt:7752
 V5.17.txt:7753
 V5.17.txt:7754
 V5.17.txt:7755
 V5.17.txt:7756
 V5.17.txt:7757
 V5.17.txt:7758
 V5.17.txt:7759
 V5.17.txt:7760
 V5.17.txt:7761
 V5.17.txt:7762
 V5.17.txt:7763
 V5.17.txt:7764
 V5.17.txt:7765
 V5.17.txt:7766
 V5.17.txt:7767
 V5.17.txt:7768
 V5.17.txt:7769
 V5.17.txt:7770
 V5.17.txt:7771
 V5.17.txt:7772
 V5.17.txt:7773
 V5.17.txt:7774
 V5.17.txt:7775
 V5.17.txt:7776
 V5.17.txt:7777
 V5.17.txt:7778
 V5.17.txt:7779
 V5.17.txt:7780
 V5.17.txt:7781
 V5.17.txt:7782
 V5.17.txt:7783
 V5.17.txt:7784
 V5.17.txt:7785
 V5.17.txt:7786
 V5.17.txt:7787
 V5.17.txt:7788
 V5.17.txt:7789
 V5.17.txt:7790
 V5.17.txt:7791
 V5.17.txt:7792
 V5.17.txt:7793
 V5.17.txt:7794
 V5.17.txt:7795
 V5.17.txt:7796
 V5.17.txt:7797
 V5.17.txt:7798
 V5.17.txt:7799
 V5.17.txt:7800
 V5.17.txt:7801
 V5.17.txt:7802
 V5.17.txt:7803
 V5.17.txt:7804
 V5.17.txt:7805
 V5.17.txt:7806
 V5.17.txt:7807
 V5.17.txt:7808
 V5.17.txt:7809
 V5.17.txt:7810
 V5.17.txt:7811
 V5.17.txt:7812
 V5.17.txt:7813
 V5.17.txt:7814
 V5.17.txt:7815
 V5.17.txt:7816
 V5.17.txt:7817
 V5.17.txt:7818
 V5.17.txt:7819
 V5.17.txt:7820
 V5.17.txt:7821
 V5.17.txt:7822
 V5.17.txt:7823
 V5.17.txt:7824
 V5.17.txt:7825
 V5.17.txt:7826
 V5.17.txt:7827
 V5.17.txt:7828
 V5.17.txt:7829
 V5.17.txt:7830
 V5.17.txt:7831
 V5.17.txt:7832
 V5.17.txt:7833
 V5.17.txt:7834
 V5.17.txt:7835
 V5.17.txt:7836
 V5.17.txt:7837
 V5.17.txt:7838
 V5.17.txt:7839
 V5.17.txt:7840
 V5.17.txt:7841
 V5.17.txt:7842
 V5.17.txt:7843
 V5.17.txt:7844
 V5.17.txt:7845
 V5.17.txt:7846
 V5.17.txt:7847
 V5.17.txt:7848
 V5.17.txt:7849
 V5.17.txt:7850
 V5.17.txt:7851
 V5.17.txt:7852
 V5.17.txt:7853
 V5.17.txt:7854
 V5.17.txt:7855
 V5.17.txt:7856
 V5.17.txt:7857
 V5.17.txt:7858
 V5.17.txt:7859
 V5.17.txt:7860
 V5.17.txt:7861
 V5.17.txt:7862
 V5.17.txt:7863
 V5.17.txt:7864
 V5.17.txt:7865
 V5.17.txt:7866
 V5.17.txt:7867
 V5.17.txt:7868
 V5.17.txt:7869
 V5.17.txt:7870
 V5.17.txt:7871
 V5.17.txt:7872
 V5.17.txt:7873
 V5.17.txt:7874
 V5.17.txt:7875
 V5.17.txt:7876
 V5.17.txt:7877
 V5.17.txt:7878
 V5.17.txt:7879
 V5.17.txt:7880
 V5.17.txt:7881
 V5.17.txt:7882
 V5.17.txt:7883
 V5.17.txt:7884
 V5.17.txt:7885
 V5.17.txt:7886
 V5.17.txt:7887
 V5.17.txt:7888
 V5.17.txt:7889
 V5.17.txt:7890
 V5.17.txt:7891
 V5.17.txt:7892
 V5.17.txt:7893
 V5.17.txt:7894
 V5.17.txt:7895
 V5.17.txt:7896
 V5.17.txt:7897
 V5.17.txt:7898
 V5.17.txt:7899
 V5.17.txt:7900
 V5.17.txt:7901
 V5.17.txt:7902
 V5.17.txt:7903
 V5.17.txt:7904
 V5.17.txt:7905
 V5.17.txt:7906
 V5.17.txt:7907
 V5.17.txt:7908
 V5.17.txt:7909
 V5.17.txt:7910
 V5.17.txt:7911
 V5.17.txt:7912
 V5.17.txt:7913
 V5.17.txt:7914
 V5.17.txt:7915
 V5.17.txt:7916
 V5.17.txt:7917
 V5.17.txt:7918
 V5.17.txt:7919
 V5.17.txt:7920
 V5.17.txt:7921
 V5.17.txt:7922
 V5.17.txt:7923
 V5.17.txt:7924
 V5.17.txt:7925
 V5.17.txt:7926
 V5.17.txt:7927
 V5.17.txt:7928
 V5.17.txt:7929
 V5.17.txt:7930
 V5.17.txt:7931
 V5.17.txt:7932
 V5.17.txt:7933
 V5.17.txt:7934
 V5.17.txt:7935
 V5.17.txt:7936
 V5.17.txt:7937
 V5.17.txt:7938
 V5.17.txt:7939
 V5.17.txt:7940
 V5.17.txt:7941
 V5.17.txt:7942
 V5.17.txt:7943
 V5.17.txt:7944
 V5.17.txt:7945
 V5.17.txt:7946
 V5.17.txt:7947
 V5.17.txt:7948
 V5.17.txt:7949
 V5.17.txt:7950
 V5.17.txt:7951
 V5.17.txt:7952
 V5.17.txt:7953
 V5.17.txt:7954
 V5.17.txt:7955
 V5.17.txt:7956
 V5.17.txt:7957
 V5.17.txt:7958
 V5.17.txt:7959
 V5.17.txt:7960
 V5.17.txt:7961
 V5.17.txt:7962
 V5.17.txt:7963
 V5.17.txt:7964
 V5.17.txt:7965
 V5.17.txt:7966
 V5.17.txt:7967
 V5.17.txt:7968
 V5.17.txt:7969
 V5.17.txt:7970
 V5.17.txt:7971
 V5.17.txt:7972
 V5.17.txt:7973
 V5.17.txt:7974
 V5.17.txt:7975
 V5.17.txt:7976
 V5.17.txt:7977
 V5.17.txt:7978
 V5.17.txt:7979
 V5.17.txt:7980
 V5.17.txt:7981
 V5.17.txt:7982
 V5.17.txt:7983
 V5.17.txt:7984
 V5.17.txt:7985
 V5.17.txt:7986
 V5.17.txt:7987
 V5.17.txt:7988
 V5.17.txt:7989
 V5.17.txt:7990
 V5.17.txt:7991
 V5.17.txt:7992
 V5.17.txt:7993
 V5.17.txt:7994
 V5.17.txt:7995
 V5.17.txt:7996
 V5.17.txt:7997
 V5.17.txt:7998
 V5.17.txt:7999
 V5.17.txt:8000
 V5.17.txt:8001
 V5.17.txt:8002
 V5.17.txt:8003
 V5.17.txt:8004
 V5.17.txt:8005
 V5.17.txt:8006
 V5.17.txt:8007
 V5.17.txt:8008
 V5.17.txt:8009
 V5.17.txt:8010
 V5.17.txt:8011
 V5.17.txt:8012
 V5.17.txt:8013
 V5.17.txt:8014
 V5.17.txt:8015
 V5.17.txt:8016
 V5.17.txt:8017
 V5.17.txt:8018
 V5.17.txt:8019
 V5.17.txt:8020
 V5.17.txt:8021
 V5.17.txt:8022
 V5.17.txt:8023
 V5.17.txt:8024
 V5.17.txt:8025
 V5.17.txt:8026
 V5.17.txt:8027
 V5.17.txt:8028
 V5.17.txt:8029
 V5.17.txt:8030
 V5.17.txt:8031
 V5.17.txt:8032
 V5.17.txt:8033
 V5.17.txt:8034
 V5.17.txt:8035
 V5.17.txt:8036
 V5.17.txt:8037
 V5.17.txt:8038
 V5.17.txt:8039
 V5.17.txt:8040
 V5.17.txt:8041
 V5.17.txt:8042
 V5.17.txt:8043
 V5.17.txt:8044
 V5.17.txt:8045
 V5.17.txt:8046
 V5.17.txt:8047
 V5.17.txt:8048
 V5.17.txt:8049
 V5.17.txt:8050
 V5.17.txt:8051
 V5.17.txt:8052
 V5.17.txt:8053
 V5.17.txt:8054
 V5.17.txt:8055
 V5.17.txt:8056
 V5.17.txt:8057
 V5.17.txt:8058
 V5.17.txt:8059
 V5.17.txt:8060
 V5.17.txt:8061
 V5.17.txt:8062
 V5.17.txt:8063
 V5.17.txt:8064
 V5.17.txt:8065
 V5.17.txt:8066
 V5.17.txt:8067
 V5.17.txt:8068
 V5.17.txt:8069
 V5.17.txt:8070
 V5.17.txt:8071
 V5.17.txt:8072
 V5.17.txt:8073
 V5.17.txt:8074
 V5.17.txt:8075
 V5.17.txt:8076
 V5.17.txt:8077
 V5.17.txt:8078
 V5.17.txt:8079
 V5.17.txt:8080
 V5.17.txt:8081
 V5.17.txt:8082
 V5.17.txt:8083
 V5.17.txt:8084
 V5.17.txt:8085
 V5.17.txt:8086
 V5.17.txt:8087
 V5.17.txt:8088
 V5.17.txt:8089
 V5.17.txt:8090
 V5.17.txt:8091
 V5.17.txt:8092
 V5.17.txt:8093
 V5.17.txt:8094
 V5.17.txt:8095
 V5.17.txt:8096
 V5.17.txt:8097
 V5.17.txt:8098
 V5.17.txt:8099
 V5.17.txt:8100
 V5.17.txt:8101
 V5.17.txt:8102
 V5.17.txt:8103
 V5.17.txt:8104
 V5.17.txt:8105
 V5.17.txt:8106
 V5.17.txt:8107
 V5.17.txt:8108
 V5.17.txt:8109
 V5.17.txt:8110
 V5.17.txt:8111
 V5.17.txt:8112
 V5.17.txt:8113
 V5.17.txt:8114
 V5.17.txt:8115
 V5.17.txt:8116
 V5.17.txt:8117
 V5.17.txt:8118
 V5.17.txt:8119
 V5.17.txt:8120
 V5.17.txt:8121
 V5.17.txt:8122
 V5.17.txt:8123
 V5.17.txt:8124
 V5.17.txt:8125
 V5.17.txt:8126
 V5.17.txt:8127
 V5.17.txt:8128
 V5.17.txt:8129
 V5.17.txt:8130
 V5.17.txt:8131
 V5.17.txt:8132
 V5.17.txt:8133
 V5.17.txt:8134
 V5.17.txt:8135
 V5.17.txt:8136
 V5.17.txt:8137
 V5.17.txt:8138
 V5.17.txt:8139
 V5.17.txt:8140
 V5.17.txt:8141
 V5.17.txt:8142
 V5.17.txt:8143
 V5.17.txt:8144
 V5.17.txt:8145
 V5.17.txt:8146
 V5.17.txt:8147
 V5.17.txt:8148
 V5.17.txt:8149
 V5.17.txt:8150
 V5.17.txt:8151
 V5.17.txt:8152
 V5.17.txt:8153
 V5.17.txt:8154
 V5.17.txt:8155
 V5.17.txt:8156
 V5.17.txt:8157
 V5.17.txt:8158
 V5.17.txt:8159
 V5.17.txt:8160
 V5.17.txt:8161
 V5.17.txt:8162
 V5.17.txt:8163
 V5.17.txt:8164
 V5.17.txt:8165
 V5.17.txt:8166
 V5.17.txt:8167
 V5.17.txt:8168
 V5.17.txt:8169
 V5.17.txt:8170
 V5.17.txt:8171
 V5.17.txt:8172
 V5.17.txt:8173
 V5.17.txt:8174
 V5.17.txt:8175
 V5.17.txt:8176
 V5.17.txt:8177
 V5.17.txt:8178
 V5.17.txt:8179
 V5.17.txt:8180
 V5.17.txt:8181
 V5.17.txt:8182
 V5.17.txt:8183
 V5.17.txt:8184
 V5.17.txt:8185
 V5.17.txt:8186
 V5.17.txt:8187
 V5.17.txt:8188
 V5.17.txt:8189
 V5.17.txt:8190
 V5.17.txt:8191
 V5.17.txt:8192
 V5.17.txt:8193
 V5.17.txt:8194
 V5.17.txt:8195
 V5.17.txt:8196
 V5.17.txt:8197
 V5.17.txt:8198
 V5.17.txt:8199
 V5.17.txt:8200
 V5.17.txt:8201
 V5.17.txt:8202
 V5.17.txt:8203
 V5.17.txt:8204
 V5.17.txt:8205
 V5.17.txt:8206
 V5.17.txt:8207
 V5.17.txt:8208
 V5.17.txt:8209
 V5.17.txt:8210
 V5.17.txt:8211
 V5.17.txt:8212
 V5.17.txt:8213
 V5.17.txt:8214
 V5.17.txt:8215
 V5.17.txt:8216
 V5.17.txt:8217
 V5.17.txt:8218
 V5.17.txt:8219
 V5.17.txt:8220
 V5.17.txt:8221
 V5.17.txt:8222
 V5.17.txt:8223
 V5.17.txt:8224
 V5.17.txt:8225
 V5.17.txt:8226
 V5.17.txt:8227
 V5.17.txt:8228
 V5.17.txt:8229
 V5.17.txt:8230
 V5.17.txt:8231
 V5.17.txt:8232
 V5.17.txt:8233
 V5.17.txt:8234
 V5.17.txt:8235
 V5.17.txt:8236
 V5.17.txt:8237
 V5.17.txt:8238
 V5.17.txt:8239
 V5.17.txt:8240
 V5.17.txt:8241
 V5.17.txt:8242
 V5.17.txt:8243
 V5.17.txt:8244
 V5.17.txt:8245
 V5.17.txt:8246
 V5.17.txt:8247
 V5.17.txt:8248
 V5.17.txt:8249
 V5.17.txt:8250
 V5.17.txt:8251
 V5.17.txt:8252
 V5.17.txt:8253
 V5.17.txt:8254
 V5.17.txt:8255
 V5.17.txt:8256
 V5.17.txt:8257
 V5.17.txt:8258
 V5.17.txt:8259
 V5.17.txt:8260
 V5.17.txt:8261
 V5.17.txt:8262
 V5.17.txt:8263
 V5.17.txt:8264
 V5.17.txt:8265
 V5.17.txt:8266
 V5.17.txt:8267
 V5.17.txt:8268
 V5.17.txt:8269
 V5.17.txt:8270
 V5.17.txt:8271
 V5.17.txt:8272
 V5.17.txt:8273
 V5.17.txt:8274
 V5.17.txt:8275
 V5.17.txt:8276
 V5.17.txt:8277
 V5.17.txt:8278
 V5.17.txt:8279
 V5.17.txt:8280
 V5.17.txt:8281
 V5.17.txt:8282
 V5.17.txt:8283
 V5.17.txt:8284
 V5.17.txt:8285
 V5.17.txt:8286
 V5.17.txt:8287
 V5.17.txt:8288
 V5.17.txt:8289
 V5.17.txt:8290
 V5.17.txt:8291
 V5.17.txt:8292
 V5.17.txt:8293
 V5.17.txt:8294
 V5.17.txt:8295
 V5.17.txt:8296
 V5.17.txt:8297
 V5.17.txt:8298
 V5.17.txt:8299
 V5.17.txt:8300
 V5.17.txt:8301
 V5.17.txt:8302
 V5.17.txt:8303
 V5.17.txt:8304
 V5.17.txt:8305
 V5.17.txt:8306
 V5.17.txt:8307
 V5.17.txt:8308
 V5.17.txt:8309
 V5.17.txt:8310
 V5.17.txt:8311
 V5.17.txt:8312
 V5.17.txt:8313
 V5.17.txt:8314
 V5.17.txt:8315
 V5.17.txt:8316
 V5.17.txt:8317
 V5.17.txt:8318
 V5.17.txt:8319
 V5.17.txt:8320
 V5.17.txt:8321
 V5.17.txt:8322
 V5.17.txt:8323
 V5.17.txt:8324
 V5.17.txt:8325
 V5.17.txt:8326
 V5.17.txt:8327
 V5.17.txt:8328
 V5.17.txt:8329
 V5.17.txt:8330
 V5.17.txt:8331
 V5.17.txt:8332
 V5.17.txt:8333
 V5.17.txt:8334
 V5.17.txt:8335
 V5.17.txt:8336
 V5.17.txt:8337
 V5.17.txt:8338
 V5.17.txt:8339
 V5.17.txt:8340
 V5.17.txt:8341
 V5.17.txt:8342
 V5.17.txt:8343
 V5.17.txt:8344
 V5.17.txt:8345
 V5.17.txt:8346
 V5.17.txt:8347
 V5.17.txt:8348
 V5.17.txt:8349
 V5.17.txt:8350
 V5.17.txt:8351
 V5.17.txt:8352
 V5.17.txt:8353
 V5.17.txt:8354
 V5.17.txt:8355
 V5.17.txt:8356
 V5.17.txt:8357
 V5.17.txt:8358
 V5.17.txt:8359
 V5.17.txt:8360
 V5.17.txt:8361
 V5.17.txt:8362
 V5.17.txt:8363
 V5.17.txt:8364
 V5.17.txt:8365
 V5.17.txt:8366
 V5.17.txt:8367
 V5.17.txt:8368
 V5.17.txt:8369
 V5.17.txt:8370
 V5.17.txt:8371
 V5.17.txt:8372
 V5.17.txt:8373
 V5.17.txt:8374
 V5.17.txt:8375
 V5.17.txt:8376
 V5.17.txt:8377
 V5.17.txt:8378
 V5.17.txt:8379
 V5.17.txt:8380
 V5.17.txt:8381
 V5.17.txt:8382
 V5.17.txt:8383
 V5.17.txt:8384
 V5.17.txt:8385
 V5.17.txt:8386
 V5.17.txt:8387
 V5.17.txt:8388
 V5.17.txt:8389
 V5.17.txt:8390
 V5.17.txt:8391
 V5.17.txt:8392
 V5.17.txt:8393
 V5.17.txt:8394
 V5.17.txt:8395
 V5.17.txt:8396
 V5.17.txt:8397
 V5.17.txt:8398
 V5.17.txt:8399
 V5.17.txt:8400
 V5.17.txt:8401
 V5.17.txt:8402
 V5.17.txt:8403
 V5.17.txt:8404
 V5.17.txt:8405
 V5.17.txt:8406
 V5.17.txt:8407
 V5.17.txt:8408
 V5.17.txt:8409
 V5.17.txt:8410
 V5.17.txt:8411
 V5.17.txt:8412
 V5.17.txt:8413
 V5.17.txt:8414
 V5.17.txt:8415
 V5.17.txt:8416
 V5.17.txt:8417
 V5.17.txt:8418
 V5.17.txt:8419
 V5.17.txt:8420
 V5.17.txt:8421
 V5.17.txt:8422
 V5.17.txt:8423
 V5.17.txt:8424
 V5.17.txt:8425
 V5.17.txt:8426
 V5.17.txt:8427
 V5.17.txt:8428
 V5.17.txt:8429
 V5.17.txt:8430
 V5.17.txt:8431
 V5.17.txt:8432
 V5.17.txt:8433
 V5.17.txt:8434
 V5.17.txt:8435
 V5.17.txt:8436
 V5.17.txt:8437
 V5.17.txt:8438
 V5.17.txt:8439
 V5.17.txt:8440
 V5.17.txt:8441
 V5.17.txt:8442
 V5.17.txt:8443
 V5.17.txt:8444
 V5.17.txt:8445
 V5.17.txt:8446
 V5.17.txt:8447
 V5.17.txt:8448
 V5.17.txt:8449
 V5.17.txt:8450
 V5.17.txt:8451
 V5.17.txt:8452
 V5.17.txt:8453
 V5.17.txt:8454
 V5.17.txt:8455
 V5.17.txt:8456
 V5.17.txt:8457
 V5.17.txt:8458
 V5.17.txt:8459
 V5.17.txt:8460
 V5.17.txt:8461
 V5.17.txt:8462
 V5.17.txt:8463
 V5.17.txt:8464
 V5.17.txt:8465
 V5.17.txt:8466
 V5.17.txt:8467
 V5.17.txt:8468
 V5.17.txt:8469
 V5.17.txt:8470
 V5.17.txt:8471
 V5.17.txt:8472
 V5.17.txt:8473
 V5.17.txt:8474
 V5.17.txt:8475
 V5.17.txt:8476
 V5.17.txt:8477
 V5.17.txt:8478
 V5.17.txt:8479
 V5.17.txt:8480
 V5.17.txt:8481
 V5.17.txt:8482
 V5.17.txt:8483
 V5.17.txt:8484
 V5.17.txt:8485
 V5.17.txt:8486
 V5.17.txt:8487
 V5.17.txt:8488
 V5.17.txt:8489
 V5.17.txt:8490
 V5.17.txt:8491
 V5.17.txt:8492
 V5.17.txt:8493
 V5.17.txt:8494
 V5.17.txt:8495
 V5.17.txt:8496
 V5.17.txt:8497
 V5.17.txt:8498
 V5.17.txt:8499
 V5.17.txt:8500
 V5.17.txt:8501
 V5.17.txt:8502
 V5.17.txt:8503
 V5.17.txt:8504
 V5.17.txt:8505
 V5.17.txt:8506
 V5.17.txt:8507
 V5.17.txt:8508
 V5.17.txt:8509
 V5.17.txt:8510
 V5.17.txt:8511
 V5.17.txt:8512
 V5.17.txt:8513
 V5.17.txt:8514
 V5.17.txt:8515
 V5.17.txt:8516
 V5.17.txt:8517
 V5.17.txt:8518
 V5.17.txt:8519
 V5.17.txt:8520
 V5.17.txt:8521
 V5.17.txt:8522
 V5.17.txt:8523
 V5.17.txt:8524
 V5.17.txt:8525
 V5.17.txt:8526
 V5.17.txt:8527
 V5.17.txt:8528
 V5.17.txt:8529
 V5.17.txt:8530
 V5.17.txt:8531
 V5.17.txt:8532
 V5.17.txt:8533
 V5.17.txt:8534
 V5.17.txt:8535
 V5.17.txt:8536
 V5.17.txt:8537
 V5.17.txt:8538
 V5.17.txt:8539
 V5.17.txt:8540
 V5.17.txt:8541
 V5.17.txt:8542
 V5.17.txt:8543
 V5.17.txt:8544
 V5.17.txt:8545
 V5.17.txt:8546
 V5.17.txt:8547
 V5.17.txt:8548
 V5.17.txt:8549
 V5.17.txt:8550
 V5.17.txt:8551
 V5.17.txt:8552
 V5.17.txt:8553
 V5.17.txt:8554
 V5.17.txt:8555
 V5.17.txt:8556
 V5.17.txt:8557
 V5.17.txt:8558
 V5.17.txt:8559
 V5.17.txt:8560
 V5.17.txt:8561
 V5.17.txt:8562
 V5.17.txt:8563
 V5.17.txt:8564
 V5.17.txt:8565
 V5.17.txt:8566
 V5.17.txt:8567
 V5.17.txt:8568
 V5.17.txt:8569
 V5.17.txt:8570
 V5.17.txt:8571
 V5.17.txt:8572
 V5.17.txt:8573
 V5.17.txt:8574
 V5.17.txt:8575
 V5.17.txt:8576
 V5.17.txt:8577
 V5.17.txt:8578
 V5.17.txt:8579
 V5.17.txt:8580
 V5.17.txt:8581
 V5.17.txt:8582
 V5.17.txt:8583
 V5.17.txt:8584
 V5.17.txt:8585
 V5.17.txt:8586
 V5.17.txt:8587
 V5.17.txt:8588
 V5.17.txt:8589
 V5.17.txt:8590
 V5.17.txt:8591
 V5.17.txt:8592
 V5.17.txt:8593
 V5.17.txt:8594
 V5.17.txt:8595
 V5.17.txt:8596
 V5.17.txt:8597
 V5.17.txt:8598
 V5.17.txt:8599
 V5.17.txt:8600
 V5.17.txt:8601
 V5.17.txt:8602
 V5.17.txt:8603
 V5.17.txt:8604
 V5.17.txt:8605
 V5.17.txt:8606
 V5.17.txt:8607
 V5.17.txt:8608
 V5.17.txt:8609
 V5.17.txt:8610
 V5.17.txt:8611
 V5.17.txt:8612
 V5.17.txt:8613
 V5.17.txt:8614
 V5.17.txt:8615
 V5.17.txt:8616
 V5.17.txt:8617
 V5.17.txt:8618
 V5.17.txt:8619
 V5.17.txt:8620
 V5.17.txt:8621
 V5.17.txt:8622
 V5.17.txt:8623
 V5.17.txt:8624
 V5.17.txt:8625
 V5.17.txt:8626
 V5.17.txt:8627
 V5.17.txt:8628
 V5.17.txt:8629
 V5.17.txt:8630
 V5.17.txt:8631
 V5.17.txt:8632
 V5.17.txt:8633
 V5.17.txt:8634
 V5.17.txt:8635
 V5.17.txt:8636
 V5.17.txt:8637
 V5.17.txt:8638
 V5.17.txt:8639
 V5.17.txt:8640
 V5.17.txt:8641
 V5.17.txt:8642
 V5.17.txt:8643
 V5.17.txt:8644
 V5.17.txt:8645
 V5.17.txt:8646
 V5.17.txt:8647
 V5.17.txt:8648
 V5.17.txt:8649
 V5.17.txt:8650
 V5.17.txt:8651
 V5.17.txt:8652
 V5.17.txt:8653
 V5.17.txt:8654
 V5.17.txt:8655
 V5.17.txt:8656
 V5.17.txt:8657
 V5.17.txt:8658
 V5.17.txt:8659
 V5.17.txt:8660
 V5.17.txt:8661
 V5.17.txt:8662
 V5.17.txt:8663
 V5.17.txt:8664
 V5.17.txt:8665
 V5.17.txt:8666
 V5.17.txt:8667
 V5.17.txt:8668
 V5.17.txt:8669
 V5.17.txt:8670
 V5.17.txt:8671
 V5.17.txt:8672
 V5.17.txt:8673
 V5.17.txt:8674
 V5.17.txt:8675
 V5.17.txt:8676
 V5.17.txt:8677
 V5.17.txt:8678
 V5.17.txt:8679
 V5.17.txt:8680
 V5.17.txt:8681
 V5.17.txt:8682
 V5.17.txt:8683
 V5.17.txt:8684
 V5.17.txt:8685
 V5.17.txt:8686
 V5.17.txt:8687
 V5.17.txt:8688
 V5.17.txt:8689
 V5.17.txt:8690
 V5.17.txt:8691
 V5.17.txt:8692
 V5.17.txt:8693
 V5.17.txt:8694
 V5.17.txt:8695
 V5.17.txt:8696
 V5.17.txt:8697
 V5.17.txt:8698
 V5.17.txt:8699
 V5.17.txt:8700
 V5.17.txt:8701
 V5.17.txt:8702
 V5.17.txt:8703
 V5.17.txt:8704
 V5.17.txt:8705
 V5.17.txt:8706
 V5.17.txt:8707
 V5.17.txt:8708
 V5.17.txt:8709
 V5.17.txt:8710
 V5.17.txt:8711
 V5.17.txt:8712
 V5.17.txt:8713
 V5.17.txt:8714
 V5.17.txt:8715
 V5.17.txt:8716
 V5.17.txt:8717
 V5.17.txt:8718
 V5.17.txt:8719
 V5.17.txt:8720
 V5.17.txt:8721
 V5.17.txt:8722
 V5.17.txt:8723
 V5.17.txt:8724
 V5.17.txt:8725
 V5.17.txt:8726
 V5.17.txt:8727
 V5.17.txt:8728
 V5.17.txt:8729
 V5.17.txt:8730
 V5.17.txt:8731
 V5.17.txt:8732
 V5.17.txt:8733
 V5.17.txt:8734
 V5.17.txt:8735
 V5.17.txt:8736
 V5.17.txt:8737
 V5.17.txt:8738
 V5.17.txt:8739
 V5.17.txt:8740
 V5.17.txt:8741
 V5.17.txt:8742
 V5.17.txt:8743
 V5.17.txt:8744
 V5.17.txt:8745
 V5.17.txt:8746
 V5.17.txt:8747
 V5.17.txt:8748
 V5.17.txt:8749
 V5.17.txt:8750
 V5.17.txt:8751
 V5.17.txt:8752
 V5.17.txt:8753
 V5.17.txt:8754
 V5.17.txt:8755
 V5.17.txt:8756
 V5.17.txt:8757
 V5.17.txt:8758
 V5.17.txt:8759
 V5.17.txt:8760
 V5.17.txt:8761
 V5.17.txt:8762
 V5.17.txt:8763
 V5.17.txt:8764
 V5.17.txt:8765
 V5.17.txt:8766
 V5.17.txt:8767
 V5.17.txt:8768
 V5.17.txt:8769
 V5.17.txt:8770
 V5.17.txt:8771
 V5.17.txt:8772
 V5.17.txt:8773
 V5.17.txt:8774
 V5.17.txt:8775
 V5.17.txt:8776
 V5.17.txt:8777
 V5.17.txt:8778
 V5.17.txt:8779
 V5.17.txt:8780
 V5.17.txt:8781
 V5.17.txt:8782
 V5.17.txt:8783
 V5.17.txt:8784
 V5.17.txt:8785
 V5.17.txt:8786
 V5.17.txt:8787
 V5.17.txt:8788
 V5.17.txt:8789
 V5.17.txt:8790
 V5.17.txt:8791
 V5.17.txt:8792
 V5.17.txt:8793
 V5.17.txt:8794
 V5.17.txt:8795
 V5.17.txt:8796
 V5.17.txt:8797
 V5.17.txt:8798
 V5.17.txt:8799
 V5.17.txt:8800
 V5.17.txt:8801
 V5.17.txt:8802
 V5.17.txt:8803
 V5.17.txt:8804
 V5.17.txt:8805
 V5.17.txt:8806
 V5.17.txt:8807
 V5.17.txt:8808
 V5.17.txt:8809
 V5.17.txt:8810
 V5.17.txt:8811
 V5.17.txt:8812
 V5.17.txt:8813
 V5.17.txt:8814
 V5.17.txt:8815
 V5.17.txt:8816
 V5.17.txt:8817
 V5.17.txt:8818
 V5.17.txt:8819
 V5.17.txt:8820
 V5.17.txt:8821
 V5.17.txt:8822
 V5.17.txt:8823
 V5.17.txt:8824
 V5.17.txt:8825
 V5.17.txt:8826
 V5.17.txt:8827
 V5.17.txt:8828
 V5.17.txt:8829
 V5.17.txt:8830
 V5.17.txt:8831
 V5.17.txt:8832
 V5.17.txt:8833
 V5.17.txt:8834
 V5.17.txt:8835
 V5.17.txt:8836
 V5.17.txt:8837
 V5.17.txt:8838
 V5.17.txt:8839
 V5.17.txt:8840
 V5.17.txt:8841
 V5.17.txt:8842
 V5.17.txt:8843
 V5.17.txt:8844
 V5.17.txt:8845
 V5.17.txt:8846
 V5.17.txt:8847
 V5.17.txt:8848
 V5.17.txt:8849
 V5.17.txt:8850
 V5.17.txt:8851
 V5.17.txt:8852
 V5.17.txt:8853
 V5.17.txt:8854
 V5.17.txt:8855
 V5.17.txt:8856
 V5.17.txt:8857
 V5.17.txt:8858
 V5.17.txt:8859
 V5.17.txt:8860
 V5.17.txt:8861
 V5.17.txt:8862
 V5.17.txt:8863
 V5.17.txt:8864
 V5.17.txt:8865
 V5.17.txt:8866
 V5.17.txt:8867
 V5.17.txt:8868
 V5.17.txt:8869
 V5.17.txt:8870
 V5.17.txt:8871
 V5.17.txt:8872
 V5.17.txt:8873
 V5.17.txt:8874
 V5.17.txt:8875
 V5.17.txt:8876
 V5.17.txt:8877
 V5.17.txt:8878
 V5.17.txt:8879
 V5.17.txt:8880
 V5.17.txt:8881
 V5.17.txt:8882
 V5.17.txt:8883
 V5.17.txt:8884
 V5.17.txt:8885
 V5.17.txt:8886
 V5.17.txt:8887
 V5.17.txt:8888
 V5.17.txt:8889
 V5.17.txt:8890
 V5.17.txt:8891
 V5.17.txt:8892
 V5.17.txt:8893
 V5.17.txt:8894
 V5.17.txt:8895
 V5.17.txt:8896
 V5.17.txt:8897
 V5.17.txt:8898
 V5.17.txt:8899
 V5.17.txt:8900
 V5.17.txt:8901
 V5.17.txt:8902
 V5.17.txt:8903
 V5.17.txt:8904
 V5.17.txt:8905
 V5.17.txt:8906
 V5.17.txt:8907
 V5.17.txt:8908
 V5.17.txt:8909
 V5.17.txt:8910
 V5.17.txt:8911
 V5.17.txt:8912
 V5.17.txt:8913
 V5.17.txt:8914
 V5.17.txt:8915
 V5.17.txt:8916
 V5.17.txt:8917
 V5.17.txt:8918
 V5.17.txt:8919
 V5.17.txt:8920
 V5.17.txt:8921
 V5.17.txt:8922
 V5.17.txt:8923
 V5.17.txt:8924
 V5.17.txt:8925
 V5.17.txt:8926
 V5.17.txt:8927
 V5.17.txt:8928
 V5.17.txt:8929
 V5.17.txt:8930
 V5.17.txt:8931
 V5.17.txt:8932
 V5.17.txt:8933
 V5.17.txt:8934
 V5.17.txt:8935
 V5.17.txt:8936
 V5.17.txt:8937
 V5.17.txt:8938
 V5.17.txt:8939
 V5.17.txt:8940
 V5.17.txt:8941
 V5.17.txt:8942
 V5.17.txt:8943
 V5.17.txt:8944
 V5.17.txt:8945
 V5.17.txt:8946
 V5.17.txt:8947
 V5.17.txt:8948
 V5.17.txt:8949
 V5.17.txt:8950
 V5.17.txt:8951
 V5.17.txt:8952
 V5.17.txt:8953
 V5.17.txt:8954
 V5.17.txt:8955
 V5.17.txt:8956
 V5.17.txt:8957
 V5.17.txt:8958
 V5.17.txt:8959
 V5.17.txt:8960
 V5.17.txt:8961
 V5.17.txt:8962
 V5.17.txt:8963
 V5.17.txt:8964
 V5.17.txt:8965
 V5.17.txt:8966
 V5.17.txt:8967
 V5.17.txt:8968
 V5.17.txt:8969
 V5.17.txt:8970
 V5.17.txt:8971
 V5.17.txt:8972
 V5.17.txt:8973
 V5.17.txt:8974
 V5.17.txt:8975
 V5.17.txt:8976
 V5.17.txt:8977
 V5.17.txt:8978
 V5.17.txt:8979
 V5.17.txt:8980
 V5.17.txt:8981
 V5.17.txt:8982
 V5.17.txt:8983
 V5.17.txt:8984
 V5.17.txt:8985
 V5.17.txt:8986
 V5.17.txt:8987
 V5.17.txt:8988
 V5.17.txt:8989
 V5.17.txt:8990
 V5.17.txt:8991
 V5.17.txt:8992
 V5.17.txt:8993
 V5.17.txt:8994
 V5.17.txt:8995
 V5.17.txt:8996
 V5.17.txt:8997
 V5.17.txt:8998
 V5.17.txt:8999
 V5.17.txt:9000
 V5.17.txt:9001
 V5.17.txt:9002
 V5.17.txt:9003
 V5.17.txt:9004
 V5.17.txt:9005
 V5.17.txt:9006
 V5.17.txt:9007
 V5.17.txt:9008
 V5.17.txt:9009
 V5.17.txt:9010
 V5.17.txt:9011
 V5.17.txt:9012
 V5.17.txt:9013
 V5.17.txt:9014
 V5.17.txt:9015
 V5.17.txt:9016
 V5.17.txt:9017
 V5.17.txt:9018
 V5.17.txt:9019
 V5.17.txt:9020
 V5.17.txt:9021
 V5.17.txt:9022
 V5.17.txt:9023
 V5.17.txt:9024
 V5.17.txt:9025
 V5.17.txt:9026
 V5.17.txt:9027
 V5.17.txt:9028
 V5.17.txt:9029
 V5.17.txt:9030
 V5.17.txt:9031
 V5.17.txt:9032
 V5.17.txt:9033
 V5.17.txt:9034
 V5.17.txt:9035
 V5.17.txt:9036
 V5.17.txt:9037
 V5.17.txt:9038
 V5.17.txt:9039
 V5.17.txt:9040
 V5.17.txt:9041
 V5.17.txt:9042
 V5.17.txt:9043
 V5.17.txt:9044
 V5.17.txt:9045
 V5.17.txt:9046
 V5.17.txt:9047
 V5.17.txt:9048
 V5.17.txt:9049
 V5.17.txt:9050
 V5.17.txt:9051
 V5.17.txt:9052
 V5.17.txt:9053
 V5.17.txt:9054
 V5.17.txt:9055
 V5.17.txt:9056
 V5.17.txt:9057
 V5.17.txt:9058
 V5.17.txt:9059
 V5.17.txt:9060
 V5.17.txt:9061
 V5.17.txt:9062
 V5.17.txt:9063
 V5.17.txt:9064
 V5.17.txt:9065
 V5.17.txt:9066
 V5.17.txt:9067
 V5.17.txt:9068
 V5.17.txt:9069
 V5.17.txt:9070
 V5.17.txt:9071
 V5.17.txt:9072
 V5.17.txt:9073
 V5.17.txt:9074
 V5.17.txt:9075
 V5.17.txt:9076
 V5.17.txt:9077
 V5.17.txt:9078
 V5.17.txt:9079
 V5.17.txt:9080
 V5.17.txt:9081
 V5.17.txt:9082
 V5.17.txt:9083
 V5.17.txt:9084
 V5.17.txt:9085
 V5.17.txt:9086
 V5.17.txt:9087
 V5.17.txt:9088
 V5.17.txt:9089
 V5.17.txt:9090
 V5.17.txt:9091
 V5.17.txt:9092
 V5.17.txt:9093
 V5.17.txt:9094
 V5.17.txt:9095
 V5.17.txt:9096
 V5.17.txt:9097
 V5.17.txt:9098
 V5.17.txt:9099
 V5.17.txt:9100
 V5.17.txt:9101
 V5.17.txt:9102
 V5.17.txt:9103
 V5.17.txt:9104
 V5.17.txt:9105
 V5.17.txt:9106
 V5.17.txt:9107
 V5.17.txt:9108
 V5.17.txt:9109
 V5.17.txt:9110
 V5.17.txt:9111
 V5.17.txt:9112
 V5.17.txt:9113
 V5.17.txt:9114
 V5.17.txt:9115
 V5.17.txt:9116
 V5.17.txt:9117
 V5.17.txt:9118
 V5.17.txt:9119
 V5.17.txt:9120
 V5.17.txt:9121
 V5.17.txt:9122
 V5.17.txt:9123
 V5.17.txt:9124
 V5.17.txt:9125
 V5.17.txt:9126
 V5.17.txt:9127
 V5.17.txt:9128
 V5.17.txt:9129
 V5.17.txt:9130
 V5.17.txt:9131
 V5.17.txt:9132
 V5.17.txt:9133
 V5.17.txt:9134
 V5.17.txt:9135
 V5.17.txt:9136
 V5.17.txt:9137
 V5.17.txt:9138
 V5.17.txt:9139
 V5.17.txt:9140
 V5.17.txt:9141
 V5.17.txt:9142
 V5.17.txt:9143
 V5.17.txt:9144
 V5.17.txt:9145
 V5.17.txt:9146
 V5.17.txt:9147
 V5.17.txt:9148
 V5.17.txt:9149
 V5.17.txt:9150
 V5.17.txt:9151
 V5.17.txt:9152
 V5.17.txt:9153
 V5.17.txt:9154
 V5.17.txt:9155
 V5.17.txt:9156
 V5.17.txt:9157
 V5.17.txt:9158
 V5.17.txt:9159
 V5.17.txt:9160
 V5.17.txt:9161
 V5.17.txt:9162
 V5.17.txt:9163
 V5.17.txt:9164
 V5.17.txt:9165
 V5.17.txt:9166
 V5.17.txt:9167
 V5.17.txt:9168
 V5.17.txt:9169
 V5.17.txt:9170
 V5.17.txt:9171
 V5.17.txt:9172
 V5.17.txt:9173
 V5.17.txt:9174
 V5.17.txt:9175
 V5.17.txt:9176
 V5.17.txt:9177
 V5.17.txt:9178
 V5.17.txt:9179
 V5.17.txt:9180
 V5.17.txt:9181
 V5.17.txt:9182
 V5.17.txt:9183
 V5.17.txt:9184
 V5.17.txt:9185
 V5.17.txt:9186
 V5.17.txt:9187
 V5.17.txt:9188
 V5.17.txt:9189
 V5.17.txt:9190
 V5.17.txt:9191
 V5.17.txt:9192
 V5.17.txt:9193
 V5.17.txt:9194
 V5.17.txt:9195
 V5.17.txt:9196
 V5.17.txt:9197
 V5.17.txt:9198
 V5.17.txt:9199
 V5.17.txt:9200
 V5.17.txt:9201
 V5.17.txt:9202
 V5.17.txt:9203
 V5.17.txt:9204
 V5.17.txt:9205
 V5.17.txt:9206
 V5.17.txt:9207
 V5.17.txt:9208
 V5.17.txt:9209
 V5.17.txt:9210
 V5.17.txt:9211
 V5.17.txt:9212
 V5.17.txt:9213
 V5.17.txt:9214
 V5.17.txt:9215
 V5.17.txt:9216
 V5.17.txt:9217
 V5.17.txt:9218
 V5.17.txt:9219
 V5.17.txt:9220
 V5.17.txt:9221
 V5.17.txt:9222
 V5.17.txt:9223
 V5.17.txt:9224
 V5.17.txt:9225
 V5.17.txt:9226
 V5.17.txt:9227
 V5.17.txt:9228
 V5.17.txt:9229
 V5.17.txt:9230
 V5.17.txt:9231
 V5.17.txt:9232
 V5.17.txt:9233
 V5.17.txt:9234
 V5.17.txt:9235
 V5.17.txt:9236
 V5.17.txt:9237
 V5.17.txt:9238
 V5.17.txt:9239
 V5.17.txt:9240
 V5.17.txt:9241
 V5.17.txt:9242
 V5.17.txt:9243
 V5.17.txt:9244
 V5.17.txt:9245
 V5.17.txt:9246
 V5.17.txt:9247
 V5.17.txt:9248
 V5.17.txt:9249
 V5.17.txt:9250
 V5.17.txt:9251
 V5.17.txt:9252
 V5.17.txt:9253
 V5.17.txt:9254
 V5.17.txt:9255
 V5.17.txt:9256
 V5.17.txt:9257
 V5.17.txt:9258
 V5.17.txt:9259
 V5.17.txt:9260
 V5.17.txt:9261
 V5.17.txt:9262
 V5.17.txt:9263
 V5.17.txt:9264
 V5.17.txt:9265
 V5.17.txt:9266
 V5.17.txt:9267
 V5.17.txt:9268
 V5.17.txt:9269
 V5.17.txt:9270
 V5.17.txt:9271
 V5.17.txt:9272
 V5.17.txt:9273
 V5.17.txt:9274
 V5.17.txt:9275
 V5.17.txt:9276
 V5.17.txt:9277
 V5.17.txt:9278
 V5.17.txt:9279
 V5.17.txt:9280
 V5.17.txt:9281
 V5.17.txt:9282
 V5.17.txt:9283
 V5.17.txt:9284
 V5.17.txt:9285
 V5.17.txt:9286
 V5.17.txt:9287
 V5.17.txt:9288
 V5.17.txt:9289
 V5.17.txt:9290
 V5.17.txt:9291
 V5.17.txt:9292
 V5.17.txt:9293
 V5.17.txt:9294
 V5.17.txt:9295
 V5.17.txt:9296
 V5.17.txt:9297
 V5.17.txt:9298
 V5.17.txt:9299
 V5.17.txt:9300
 V5.17.txt:9301
 V5.17.txt:9302
 V5.17.txt:9303
 V5.17.txt:9304
 V5.17.txt:9305
 V5.17.txt:9306
 V5.17.txt:9307
 V5.17.txt:9308
 V5.17.txt:9309
 V5.17.txt:9310
 V5.17.txt:9311
 V5.17.txt:9312
 V5.17.txt:9313
 V5.17.txt:9314
 V5.17.txt:9315
 V5.17.txt:9316
 V5.17.txt:9317
 V5.17.txt:9318
 V5.17.txt:9319
 V5.17.txt:9320
 V5.17.txt:9321
 V5.17.txt:9322
 V5.17.txt:9323
 V5.17.txt:9324
 V5.17.txt:9325
 V5.17.txt:9326
 V5.17.txt:9327
 V5.17.txt:9328
 V5.17.txt:9329
 V5.17.txt:9330
 V5.17.txt:9331
 V5.17.txt:9332
 V5.17.txt:9333
 V5.17.txt:9334
 V5.17.txt:9335
 V5.17.txt:9336
 V5.17.txt:9337
 V5.17.txt:9338
 V5.17.txt:9339
 V5.17.txt:9340
 V5.17.txt:9341
 V5.17.txt:9342
 V5.17.txt:9343
 V5.17.txt:9344
 V5.17.txt:9345
 V5.17.txt:9346
 V5.17.txt:9347
 V5.17.txt:9348
 V5.17.txt:9349
 V5.17.txt:9350
 V5.17.txt:9351
 V5.17.txt:9352
 V5.17.txt:9353
 V5.17.txt:9354
 V5.17.txt:9355
 V5.17.txt:9356
 V5.17.txt:9357
 V5.17.txt:9358
 V5.17.txt:9359
 V5.17.txt:9360
 V5.17.txt:9361
 V5.17.txt:9362
 V5.17.txt:9363
 V5.17.txt:9364
 V5.17.txt:9365
 V5.17.txt:9366
 V5.17.txt:9367
 V5.17.txt:9368
 V5.17.txt:9369
 V5.17.txt:9370
 V5.17.txt:9371
 V5.17.txt:9372
 V5.17.txt:9373
 V5.17.txt:9374
 V5.17.txt:9375
 V5.17.txt:9376
 V5.17.txt:9377
 V5.17.txt:9378
 V5.17.txt:9379
 V5.17.txt:9380
 V5.17.txt:9381
 V5.17.txt:9382
 V5.17.txt:9383
 V5.17.txt:9384
 V5.17.txt:9385
 V5.17.txt:9386
 V5.17.txt:9387
 V5.17.txt:9388
 V5.17.txt:9389
 V5.17.txt:9390
 V5.17.txt:9391
 V5.17.txt:9392
 V5.17.txt:9393
 V5.17.txt:9394
 V5.17.txt:9395
 V5.17.txt:9396
 V5.17.txt:9397
 V5.17.txt:9398
 V5.17.txt:9399
 V5.17.txt:9400
 V5.17.txt:9401
 V5.17.txt:9402
 V5.17.txt:9403
 V5.17.txt:9404
 V5.17.txt:9405
 V5.17.txt:9406
 V5.17.txt:9407
 V5.17.txt:9408
 V5.17.txt:9409
 V5.17.txt:9410
 V5.17.txt:9411
 V5.17.txt:9412
 V5.17.txt:9413
 V5.17.txt:9414
 V5.17.txt:9415
 V5.17.txt:9416
 V5.17.txt:9417
 V5.17.txt:9418
 V5.17.txt:9419
 V5.17.txt:9420
 V5.17.txt:9421
 V5.17.txt:9422
 V5.17.txt:9423
 V5.17.txt:9424
 V5.17.txt:9425
 V5.17.txt:9426
 V5.17.txt:9427
 V5.17.txt:9428
 V5.17.txt:9429
 V5.17.txt:9430
 V5.17.txt:9431
 V5.17.txt:9432
 V5.17.txt:9433
 V5.17.txt:9434
 V5.17.txt:9435
 V5.17.txt:9436
 V5.17.txt:9437
 V5.17.txt:9438
 V5.17.txt:9439
 V5.17.txt:9440
 V5.17.txt:9441
 V5.17.txt:9442
 V5.17.txt:9443
 V5.17.txt:9444
 V5.17.txt:9445
 V5.17.txt:9446
 V5.17.txt:9447
 V5.17.txt:9448
 V5.17.txt:9449
 V5.17.txt:9450
 V5.17.txt:9451
 V5.17.txt:9452
 V5.17.txt:9453
 V5.17.txt:9454
 V5.17.txt:9455
 V5.17.txt:9456
 V5.17.txt:9457
 V5.17.txt:9458
 V5.17.txt:9459
 V5.17.txt:9460
 V5.17.txt:9461
 V5.17.txt:9462
 V5.17.txt:9463
 V5.17.txt:9464
 V5.17.txt:9465
 V5.17.txt:9466
 V5.17.txt:9467
 V5.17.txt:9468
 V5.17.txt:9469
 V5.17.txt:9470
 V5.17.txt:9471
 V5.17.txt:9472
 V5.17.txt:9473
 V5.17.txt:9474
 V5.17.txt:9475
 V5.17.txt:9476
 V5.17.txt:9477
 V5.17.txt:9478
 V5.17.txt:9479
 V5.17.txt:9480
 V5.17.txt:9481
 V5.17.txt:9482
 V5.17.txt:9483
 V5.17.txt:9484
 V5.17.txt:9485
 V5.17.txt:9486
 V5.17.txt:9487
 V5.17.txt:9488
 V5.17.txt:9489
 V5.17.txt:9490
 V5.17.txt:9491
 V5.17.txt:9492
 V5.17.txt:9493
 V5.17.txt:9494
 V5.17.txt:9495
 V5.17.txt:9496
 V5.17.txt:9497
 V5.17.txt:9498
 V5.17.txt:9499
 V5.17.txt:9500
 V5.17.txt:9501
 V5.17.txt:9502
 V5.17.txt:9503
 V5.17.txt:9504
 V5.17.txt:9505
 V5.17.txt:9506
 V5.17.txt:9507
 V5.17.txt:9508
 V5.17.txt:9509
 V5.17.txt:9510
 V5.17.txt:9511
 V5.17.txt:9512
 V5.17.txt:9513
 V5.17.txt:9514
 V5.17.txt:9515
 V5.17.txt:9516
 V5.17.txt:9517
 V5.17.txt:9518
 V5.17.txt:9519
 V5.17.txt:9520
 V5.17.txt:9521
 V5.17.txt:9522
 V5.17.txt:9523
 V5.17.txt:9524
 V5.17.txt:9525
 V5.17.txt:9526
 V5.17.txt:9527
 V5.17.txt:9528
 V5.17.txt:9529
 V5.17.txt:9530
 V5.17.txt:9531
 V5.17.txt:9532
 V5.17.txt:9533
 V5.17.txt:9534
 V5.17.txt:9535
 V5.17.txt:9536
 V5.17.txt:9537
 V5.17.txt:9538
 V5.17.txt:9539
 V5.17.txt:9540
 V5.17.txt:9541
 V5.17.txt:9542
 V5.17.txt:9543
 V5.17.txt:9544
 V5.17.txt:9545
 V5.17.txt:9546
 V5.17.txt:9547
 V5.17.txt:9548
 V5.17.txt:9549
 V5.17.txt:9550
 V5.17.txt:9551
 V5.17.txt:9552
 V5.17.txt:9553
 V5.17.txt:9554
 V5.17.txt:9555
 V5.17.txt:9556
 V5.17.txt:9557
 V5.17.txt:9558
 V5.17.txt:9559
 V5.17.txt:9560
 V5.17.txt:9561
 V5.17.txt:9562
 V5.17.txt:9563
 V5.17.txt:9564
 V5.17.txt:9565
 V5.17.txt:9566
 V5.17.txt:9567
 V5.17.txt:9568
 V5.17.txt:9569
 V5.17.txt:9570
 V5.17.txt:9571
 V5.17.txt:9572
 V5.17.txt:9573
 V5.17.txt:9574
 V5.17.txt:9575
 V5.17.txt:9576
 V5.17.txt:9577
 V5.17.txt:9578
 V5.17.txt:9579
 V5.17.txt:9580
 V5.17.txt:9581
 V5.17.txt:9582
 V5.17.txt:9583
 V5.17.txt:9584
 V5.17.txt:9585
 V5.17.txt:9586
 V5.17.txt:9587
 V5.17.txt:9588
 V5.17.txt:9589
 V5.17.txt:9590
 V5.17.txt:9591
 V5.17.txt:9592
 V5.17.txt:9593
 V5.17.txt:9594
 V5.17.txt:9595
 V5.17.txt:9596
 V5.17.txt:9597
 V5.17.txt:9598
 V5.17.txt:9599
 V5.17.txt:9600
 V5.17.txt:9601
 V5.17.txt:9602
 V5.17.txt:9603
 V5.17.txt:9604
 V5.17.txt:9605
 V5.17.txt:9606
 V5.17.txt:9607
 V5.17.txt:9608
 V5.17.txt:9609
 V5.17.txt:9610
 V5.17.txt:9611
 V5.17.txt:9612
 V5.17.txt:9613
 V5.17.txt:9614
 V5.17.txt:9615
 V5.17.txt:9616
 V5.17.txt:9617
 V5.17.txt:9618
 V5.17.txt:9619
 V5.17.txt:9620
 V5.17.txt:9621
 V5.17.txt:9622
 V5.17.txt:9623
 V5.17.txt:9624
 V5.17.txt:9625
 V5.17.txt:9626
 V5.17.txt:9627
 V5.17.txt:9628
 V5.17.txt:9629
 V5.17.txt:9630
 V5.17.txt:9631
 V5.17.txt:9632
 V5.17.txt:9633
 V5.17.txt:9634
 V5.17.txt:9635
 V5.17.txt:9636
 V5.17.txt:9637
 V5.17.txt:9638
 V5.17.txt:9639
 V5.17.txt:9640
 V5.17.txt:9641
 V5.17.txt:9642
 V5.17.txt:9643
 V5.17.txt:9644
 V5.17.txt:9645
 V5.17.txt:9646
 V5.17.txt:9647
 V5.17.txt:9648
 V5.17.txt:9649
 V5.17.txt:9650
 V5.17.txt:9651
 V5.17.txt:9652
 V5.17.txt:9653
 V5.17.txt:9654
 V5.17.txt:9655
 V5.17.txt:9656
 V5.17.txt:9657
 V5.17.txt:9658
 V5.17.txt:9659
 V5.17.txt:9660
 V5.17.txt:9661
 V5.17.txt:9662
 V5.17.txt:9663
 V5.17.txt:9664
 V5.17.txt:9665
 V5.17.txt:9666
 V5.17.txt:9667
 V5.17.txt:9668
 V5.17.txt:9669
 V5.17.txt:9670
 V5.17.txt:9671
 V5.17.txt:9672
 V5.17.txt:9673
 V5.17.txt:9674
 V5.17.txt:9675
 V5.17.txt:9676
 V5.17.txt:9677
 V5.17.txt:9678
 V5.17.txt:9679
 V5.17.txt:9680
 V5.17.txt:9681
 V5.17.txt:9682
 V5.17.txt:9683
 V5.17.txt:9684
 V5.17.txt:9685
 V5.17.txt:9686
 V5.17.txt:9687
 V5.17.txt:9688
 V5.17.txt:9689
 V5.17.txt:9690
 V5.17.txt:9691
 V5.17.txt:9692
 V5.17.txt:9693
 V5.17.txt:9694
 V5.17.txt:9695
 V5.17.txt:9696
 V5.17.txt:9697
 V5.17.txt:9698
 V5.17.txt:9699
 V5.17.txt:9700
 V5.17.txt:9701
 V5.17.txt:9702
 V5.17.txt:9703
 V5.17.txt:9704
 V5.17.txt:9705
 V5.17.txt:9706
 V5.17.txt:9707
 V5.17.txt:9708
 V5.17.txt:9709
 V5.17.txt:9710
 V5.17.txt:9711
 V5.17.txt:9712
 V5.17.txt:9713
 V5.17.txt:9714
 V5.17.txt:9715
 V5.17.txt:9716
 V5.17.txt:9717
 V5.17.txt:9718
 V5.17.txt:9719
 V5.17.txt:9720
 V5.17.txt:9721
 V5.17.txt:9722
 V5.17.txt:9723
 V5.17.txt:9724
 V5.17.txt:9725
 V5.17.txt:9726
 V5.17.txt:9727
 V5.17.txt:9728
 V5.17.txt:9729
 V5.17.txt:9730
 V5.17.txt:9731
 V5.17.txt:9732
 V5.17.txt:9733
 V5.17.txt:9734
 V5.17.txt:9735
 V5.17.txt:9736
 V5.17.txt:9737
 V5.17.txt:9738
 V5.17.txt:9739
 V5.17.txt:9740
 V5.17.txt:9741
 V5.17.txt:9742
 V5.17.txt:9743
 V5.17.txt:9744
 V5.17.txt:9745
 V5.17.txt:9746
 V5.17.txt:9747
 V5.17.txt:9748
 V5.17.txt:9749
 V5.17.txt:9750
 V5.17.txt:9751
 V5.17.txt:9752
 V5.17.txt:9753
 V5.17.txt:9754
 V5.17.txt:9755
 V5.17.txt:9756
 V5.17.txt:9757
 V5.17.txt:9758
 V5.17.txt:9759
 V5.17.txt:9760
 V5.17.txt:9761
 V5.17.txt:9762
 V5.17.txt:9763
 V5.17.txt:9764
 V5.17.txt:9765
 V5.17.txt:9766
 V5.17.txt:9767
 V5.17.txt:9768
 V5.17.txt:9769
 V5.17.txt:9770
 V5.17.txt:9771
 V5.17.txt:9772
 V5.17.txt:9773
 V5.17.txt:9774
 V5.17.txt:9775
 V5.17.txt:9776
 V5.17.txt:9777
 V5.17.txt:9778
 V5.17.txt:9779
 V5.17.txt:9780
 V5.17.txt:9781
 V5.17.txt:9782
 V5.17.txt:9783
 V5.17.txt:9784
 V5.17.txt:9785
 V5.17.txt:9786
 V5.17.txt:9787
 V5.17.txt:9788
 V5.17.txt:9789
 V5.17.txt:9790
 V5.17.txt:9791
 V5.17.txt:9792
 V5.17.txt:9793
 V5.17.txt:9794
 V5.17.txt:9795
 V5.17.txt:9796
 V5.17.txt:9797
 V5.17.txt:9798
 V5.17.txt:9799
 V5.17.txt:9800
 V5.17.txt:9801
 V5.17.txt:9802
 V5.17.txt:9803
 V5.17.txt:9804
 V5.17.txt:9805
 V5.17.txt:9806
 V5.17.txt:9807
 V5.17.txt:9808
 V5.17.txt:9809
 V5.17.txt:9810
 V5.17.txt:9811
 V5.17.txt:9812
 V5.17.txt:9813
 V5.17.txt:9814
 V5.17.txt:9815
 V5.17.txt:9816
 V5.17.txt:9817
 V5.17.txt:9818
 V5.17.txt:9819
 V5.17.txt:9820
 V5.17.txt:9821
 V5.17.txt:9822
 V5.17.txt:9823
 V5.17.txt:9824
 V5.17.txt:9825
 V5.17.txt:9826
 V5.17.txt:9827
 V5.17.txt:9828
 V5.17.txt:9829
 V5.17.txt:9830
 V5.17.txt:9831
 V5.17.txt:9832
 V5.17.txt:9833
 V5.17.txt:9834
 V5.17.txt:9835
 V5.17.txt:9836
 V5.17.txt:9837
 V5.17.txt:9838
 V5.17.txt:9839
 V5.17.txt:9840
 V5.17.txt:9841
 V5.17.txt:9842
 V5.17.txt:9843
 V5.17.txt:9844
 V5.17.txt:9845
 V5.17.txt:9846
 V5.17.txt:9847
 V5.17.txt:9848
 V5.17.txt:9849
 V5.17.txt:9850
 V5.17.txt:9851
 V5.17.txt:9852
 V5.17.txt:9853
 V5.17.txt:9854
 V5.17.txt:9855
 V5.17.txt:9856
 V5.17.txt:9857
 V5.17.txt:9858
 V5.17.txt:9859
 V5.17.txt:9860
 V5.17.txt:9861
 V5.17.txt:9862
 V5.17.txt:9863
 V5.17.txt:9864
 V5.17.txt:9865
 V5.17.txt:9866
 V5.17.txt:9867
 V5.17.txt:9868
 V5.17.txt:9869
 V5.17.txt:9870
 V5.17.txt:9871
 V5.17.txt:9872
 V5.17.txt:9873
 V5.17.txt:9874
 V5.17.txt:9875
 V5.17.txt:9876
 V5.17.txt:9877
 V5.17.txt:9878
 V5.17.txt:9879
 V5.17.txt:9880
 V5.17.txt:9881
 V5.17.txt:9882
 V5.17.txt:9883
 V5.17.txt:9884
 V5.17.txt:9885
 V5.17.txt:9886
 V5.17.txt:9887
 V5.17.txt:9888
 V5.17.txt:9889
 V5.17.txt:9890
 V5.17.txt:9891
 V5.17.txt:9892
 V5.17.txt:9893
 V5.17.txt:9894
 V5.17.txt:9895
 V5.17.txt:9896
 V5.17.txt:9897
 V5.17.txt:9898
 V5.17.txt:9899
 V5.17.txt:9900
 V5.17.txt:9901
 V5.17.txt:9902
 V5.17.txt:9903
 V5.17.txt:9904
 V5.17.txt:9905
 V5.17.txt:9906
 V5.17.txt:9907
 V5.17.txt:9908
 V5.17.txt:9909
 V5.17.txt:9910
 V5.17.txt:9911
 V5.17.txt:9912
 V5.17.txt:9913
 V5.17.txt:9914
 V5.17.txt:9915
 V5.17.txt:9916
 V5.17.txt:9917
 V5.17.txt:9918
 V5.17.txt:9919
 V5.17.txt:9920
 V5.17.txt:9921
 V5.17.txt:9922
 V5.17.txt:9923
 V5.17.txt:9924
 V5.17.txt:9925
 V5.17.txt:9926
 V5.17.txt:9927
 V5.17.txt:9928
 V5.17.txt:9929
 V5.17.txt:9930
 V5.17.txt:9931
 V5.17.txt:9932
 V5.17.txt:9933
 V5.17.txt:9934
 V5.17.txt:9935
 V5.17.txt:9936
 V5.17.txt:9937
 V5.17.txt:9938
 V5.17.txt:9939
 V5.17.txt:9940
 V5.17.txt:9941
 V5.17.txt:9942
 V5.17.txt:9943
 V5.17.txt:9944
 V5.17.txt:9945
 V5.17.txt:9946
 V5.17.txt:9947
 V5.17.txt:9948
 V5.17.txt:9949
 V5.17.txt:9950
 V5.17.txt:9951
 V5.17.txt:9952
 V5.17.txt:9953
 V5.17.txt:9954
 V5.17.txt:9955
 V5.17.txt:9956
 V5.17.txt:9957
 V5.17.txt:9958
 V5.17.txt:9959
 V5.17.txt:9960
 V5.17.txt:9961
 V5.17.txt:9962
 V5.17.txt:9963
 V5.17.txt:9964
 V5.17.txt:9965
 V5.17.txt:9966
 V5.17.txt:9967
 V5.17.txt:9968
 V5.17.txt:9969
 V5.17.txt:9970
 V5.17.txt:9971
 V5.17.txt:9972
 V5.17.txt:9973
 V5.17.txt:9974
 V5.17.txt:9975
 V5.17.txt:9976
 V5.17.txt:9977
 V5.17.txt:9978
 V5.17.txt:9979
 V5.17.txt:9980
 V5.17.txt:9981
 V5.17.txt:9982
 V5.17.txt:9983
 V5.17.txt:9984
 V5.17.txt:9985
 V5.17.txt:9986
 V5.17.txt:9987
 V5.17.txt:9988
 V5.17.txt:9989
 V5.17.txt:9990
 V5.17.txt:9991
 V5.17.txt:9992
 V5.17.txt:9993
 V5.17.txt:9994
 V5.17.txt:9995
 V5.17.txt:9996
 V5.17.txt:9997
 V5.17.txt:9998
 V5.17.txt:9999
 V5.17.txt:10000
 V5.17.txt:10001
 V5.17.txt:10002
 V5.17.txt:10003
 V5.17.txt:10004
 V5.17.txt:10005
 V5.17.txt:10006
 V5.17.txt:10007
 V5.17.txt:10008
 V5.17.txt:10009
 V5.17.txt:10010
 V5.17.txt:10011
 V5.17.txt:10012
 V5.17.txt:10013
 V5.17.txt:10014
 V5.17.txt:10015
 V5.17.txt:10016
 V5.17.txt:10017
 V5.17.txt:10018
 V5.17.txt:10019
 V5.17.txt:10020
 V5.17.txt:10021
 V5.17.txt:10022
 V5.17.txt:10023
 V5.17.txt:10024
 V5.17.txt:10025
 V5.17.txt:10026
 V5.17.txt:10027
 V5.17.txt:10028
 V5.17.txt:10029
 V5.17.txt:10030
 V5.17.txt:10031
 V5.17.txt:10032
 V5.17.txt:10033
 V5.17.txt:10034
 V5.17.txt:10035
 V5.17.txt:10036
 V5.17.txt:10037
 V5.17.txt:10038
 V5.17.txt:10039
 V5.17.txt:10040
 V5.17.txt:10041
 V5.17.txt:10042
 V5.17.txt:10043
 V5.17.txt:10044
 V5.17.txt:10045
 V5.17.txt:10046
 V5.17.txt:10047
 V5.17.txt:10048
 V5.17.txt:10049
 V5.17.txt:10050
 V5.17.txt:10051
 V5.17.txt:10052
 V5.17.txt:10053
 V5.17.txt:10054
 V5.17.txt:10055
 V5.17.txt:10056
 V5.17.txt:10057
 V5.17.txt:10058
 V5.17.txt:10059
 V5.17.txt:10060
 V5.17.txt:10061
 V5.17.txt:10062
 V5.17.txt:10063
 V5.17.txt:10064
 V5.17.txt:10065
 V5.17.txt:10066
 V5.17.txt:10067
 V5.17.txt:10068
 V5.17.txt:10069
 V5.17.txt:10070
 V5.17.txt:10071
 V5.17.txt:10072
 V5.17.txt:10073
 V5.17.txt:10074
 V5.17.txt:10075
 V5.17.txt:10076
 V5.17.txt:10077
 V5.17.txt:10078
 V5.17.txt:10079
 V5.17.txt:10080
 V5.17.txt:10081
 V5.17.txt:10082
 V5.17.txt:10083
 V5.17.txt:10084
 V5.17.txt:10085
 V5.17.txt:10086
 V5.17.txt:10087
 V5.17.txt:10088
 V5.17.txt:10089
 V5.17.txt:10090
 V5.17.txt:10091
 V5.17.txt:10092
 V5.17.txt:10093
 V5.17.txt:10094
 V5.17.txt:10095
 V5.17.txt:10096
 V5.17.txt:10097
 V5.17.txt:10098
 V5.17.txt:10099
 V5.17.txt:10100
 V5.17.txt:10101
 V5.17.txt:10102
 V5.17.txt:10103
 V5.17.txt:10104
 V5.17.txt:10105
 V5.17.txt:10106
 V5.17.txt:10107
 V5.17.txt:10108
 V5.17.txt:10109
 V5.17.txt:10110
 V5.17.txt:10111
 V5.17.txt:10112
 V5.17.txt:10113
 V5.17.txt:10114
 V5.17.txt:10115
 V5.17.txt:10116
 V5.17.txt:10117
 V5.17.txt:10118
 V5.17.txt:10119
 V5.17.txt:10120
 V5.17.txt:10121
 V5.17.txt:10122
 V5.17.txt:10123
 V5.17.txt:10124
 V5.17.txt:10125
 V5.17.txt:10126
 V5.17.txt:10127
 V5.17.txt:10128
 V5.17.txt:10129
 V5.17.txt:10130
 V5.17.txt:10131
 V5.17.txt:10132
 V5.17.txt:10133
 V5.17.txt:10134
 V5.17.txt:10135
 V5.17.txt:10136
 V5.17.txt:10137
 V5.17.txt:10138
 V5.17.txt:10139
 V5.17.txt:10140
 V5.17.txt:10141
 V5.17.txt:10142
 V5.17.txt:10143
 V5.17.txt:10144
 V5.17.txt:10145
 V5.17.txt:10146
 V5.17.txt:10147
 V5.17.txt:10148
 V5.17.txt:10149
 V5.17.txt:10150
 V5.17.txt:10151
 V5.17.txt:10152
 V5.17.txt:10153
 V5.17.txt:10154
 V5.17.txt:10155
 V5.17.txt:10156
 V5.17.txt:10157
 V5.17.txt:10158
 V5.17.txt:10159
 V5.17.txt:10160
 V5.17.txt:10161
 V5.17.txt:10162
 V5.17.txt:10163
 V5.17.txt:10164
 V5.17.txt:10165
 V5.17.txt:10166
 V5.17.txt:10167
 V5.17.txt:10168
 V5.17.txt:10169
 V5.17.txt:10170
 V5.17.txt:10171
 V5.17.txt:10172
 V5.17.txt:10173
 V5.17.txt:10174
 V5.17.txt:10175
 V5.17.txt:10176
 V5.17.txt:10177
 V5.17.txt:10178
 V5.17.txt:10179
 V5.17.txt:10180
 V5.17.txt:10181
 V5.17.txt:10182
 V5.17.txt:10183
 V5.17.txt:10184
 V5.17.txt:10185
 V5.17.txt:10186
 V5.17.txt:10187
 V5.17.txt:10188
 V5.17.txt:10189
 V5.17.txt:10190
 V5.17.txt:10191
 V5.17.txt:10192
 V5.17.txt:10193
 V5.17.txt:10194
 V5.17.txt:10195
 V5.17.txt:10196
 V5.17.txt:10197
 V5.17.txt:10198
 V5.17.txt:10199
 V5.17.txt:10200
 V5.17.txt:10201
 V5.17.txt:10202
 V5.17.txt:10203
 V5.17.txt:10204
 V5.17.txt:10205
 V5.17.txt:10206
 V5.17.txt:10207
 V5.17.txt:10208
 V5.17.txt:10209
 V5.17.txt:10210
 V5.17.txt:10211
 V5.17.txt:10212
 V5.17.txt:10213
 V5.17.txt:10214
 V5.17.txt:10215
 V5.17.txt:10216
 V5.17.txt:10217
 V5.17.txt:10218
 V5.17.txt:10219
 V5.17.txt:10220
 V5.17.txt:10221
 V5.17.txt:10222
 V5.17.txt:10223
 V5.17.txt:10224
 V5.17.txt:10225
 V5.17.txt:10226
 V5.17.txt:10227
 V5.17.txt:10228
 V5.17.txt:10229
 V5.17.txt:10230
 V5.17.txt:10231
 V5.17.txt:10232
 V5.17.txt:10233
 V5.17.txt:10234
 V5.17.txt:10235
 V5.17.txt:10236
 V5.17.txt:10237
 V5.17.txt:10238
 V5.17.txt:10239
 V5.17.txt:10240
 V5.17.txt:10241
 V5.17.txt:10242
 V5.17.txt:10243
 V5.17.txt:10244
 V5.17.txt:10245
 V5.17.txt:10246
 V5.17.txt:10247
 V5.17.txt:10248
 V5.17.txt:10249
 V5.17.txt:10250
 V5.17.txt:10251
 V5.17.txt:10252
 V5.17.txt:10253
 V5.17.txt:10254
 V5.17.txt:10255
 V5.17.txt:10256
 V5.17.txt:10257
 V5.17.txt:10258
 V5.17.txt:10259
 V5.17.txt:10260
 V5.17.txt:10261
 V5.17.txt:10262
 V5.17.txt:10263
 V5.17.txt:10264
 V5.17.txt:10265
 V5.17.txt:10266
 V5.17.txt:10267
 V5.17.txt:10268
 V5.17.txt:10269
 V5.17.txt:10270
 V5.17.txt:10271
 V5.17.txt:10272
 V5.17.txt:10273
 V5.17.txt:10274
 V5.17.txt:10275
 V5.17.txt:10276
 V5.17.txt:10277
 V5.17.txt:10278
 V5.17.txt:10279
 V5.17.txt:10280
 V5.17.txt:10281
 V5.17.txt:10282
 V5.17.txt:10283
 V5.17.txt:10284
 V5.17.txt:10285
 V5.17.txt:10286
 V5.17.txt:10287
 V5.17.txt:10288
 V5.17.txt:10289
 V5.17.txt:10290
 V5.17.txt:10291
 V5.17.txt:10292
 V5.17.txt:10293
 V5.17.txt:10294
 V5.17.txt:10295
 V5.17.txt:10296
 V5.17.txt:10297
 V5.17.txt:10298
 V5.17.txt:10299
 V5.17.txt:10300
 V5.17.txt:10301
 V5.17.txt:10302
 V5.17.txt:10303
 V5.17.txt:10304
 V5.17.txt:10305
 V5.17.txt:10306
 V5.17.txt:10307
 V5.17.txt:10308
 V5.17.txt:10309
 V5.17.txt:10310
 V5.17.txt:10311
 V5.17.txt:10312
 V5.17.txt:10313
 V5.17.txt:10314
 V5.17.txt:10315
 V5.17.txt:10316
 V5.17.txt:10317
 V5.17.txt:10318
 V5.17.txt:10319
 V5.17.txt:10320
 V5.17.txt:10321
 V5.17.txt:10322
 V5.17.txt:10323
 V5.17.txt:10324
 V5.17.txt:10325
 V5.17.txt:10326
 V5.17.txt:10327
 V5.17.txt:10328
 V5.17.txt:10329
 V5.17.txt:10330
 V5.17.txt:10331
 V5.17.txt:10332
 V5.17.txt:10333
 V5.17.txt:10334
 V5.17.txt:10335
 V5.17.txt:10336
 V5.17.txt:10337
 V5.17.txt:10338
 V5.17.txt:10339
 V5.17.txt:10340
 V5.17.txt:10341
 V5.17.txt:10342
 V5.17.txt:10343
 V5.17.txt:10344
 V5.17.txt:10345
 V5.17.txt:10346
 V5.17.txt:10347
 V5.17.txt:10348
 V5.17.txt:10349
 V5.17.txt:10350
 V5.17.txt:10351
 V5.17.txt:10352
 V5.17.txt:10353
 V5.17.txt:10354
 V5.17.txt:10355
 V5.17.txt:10356
 V5.17.txt:10357
 V5.17.txt:10358
 V5.17.txt:10359
 V5.17.txt:10360
 V5.17.txt:10361
 V5.17.txt:10362
 V5.17.txt:10363
 V5.17.txt:10364
 V5.17.txt:10365
 V5.17.txt:10366
 V5.17.txt:10367
 V5.17.txt:10368
 V5.17.txt:10369
 V5.17.txt:10370
 V5.17.txt:10371
 V5.17.txt:10372
 V5.17.txt:10373
 V5.17.txt:10374
 V5.17.txt:10375
 V5.17.txt:10376
 V5.17.txt:10377
 V5.17.txt:10378
 V5.17.txt:10379
 V5.17.txt:10380
 V5.17.txt:10381
 V5.17.txt:10382
 V5.17.txt:10383
 V5.17.txt:10384
 V5.17.txt:10385
 V5.17.txt:10386
 V5.17.txt:10387
 V5.17.txt:10388
 V5.17.txt:10389
 V5.17.txt:10390
 V5.17.txt:10391
 V5.17.txt:10392
 V5.17.txt:10393
 V5.17.txt:10394
 V5.17.txt:10395
 V5.17.txt:10396
 V5.17.txt:10397
 V5.17.txt:10398
 V5.17.txt:10399
 V5.17.txt:10400
 V5.17.txt:10401
 V5.17.txt:10402
 V5.17.txt:10403
 V5.17.txt:10404
 V5.17.txt:10405
 V5.17.txt:10406
 V5.17.txt:10407
 V5.17.txt:10408
 V5.17.txt:10409
 V5.17.txt:10410
 V5.17.txt:10411
 V5.17.txt:10412
 V5.17.txt:10413
 V5.17.txt:10414
 V5.17.txt:10415
 V5.17.txt:10416
 V5.17.txt:10417
 V5.17.txt:10418
 V5.17.txt:10419
 V5.17.txt:10420
 V5.17.txt:10421
 V5.17.txt:10422
 V5.17.txt:10423
 V5.17.txt:10424
 V5.17.txt:10425
 V5.17.txt:10426
 V5.17.txt:10427
 V5.17.txt:10428
 V5.17.txt:10429
 V5.17.txt:10430
 V5.17.txt:10431
 V5.17.txt:10432
 V5.17.txt:10433
 V5.17.txt:10434
 V5.17.txt:10435
 V5.17.txt:10436
 V5.17.txt:10437
 V5.17.txt:10438
 V5.17.txt:10439
 V5.17.txt:10440
 V5.17.txt:10441
 V5.17.txt:10442
 V5.17.txt:10443
 V5.17.txt:10444
 V5.17.txt:10445
 V5.17.txt:10446
 V5.17.txt:10447
 V5.17.txt:10448
 V5.17.txt:10449
 V5.17.txt:10450
 V5.17.txt:10451
 V5.17.txt:10452
 V5.17.txt:10453
 V5.17.txt:10454
 V5.17.txt:10455
 V5.17.txt:10456
 V5.17.txt:10457
 V5.17.txt:10458
 V5.17.txt:10459
 V5.17.txt:10460
 V5.17.txt:10461
 V5.17.txt:10462
 V5.17.txt:10463
 V5.17.txt:10464
 V5.17.txt:10465
 V5.17.txt:10466
 V5.17.txt:10467
 V5.17.txt:10468
 V5.17.txt:10469
 V5.17.txt:10470
 V5.17.txt:10471
 V5.17.txt:10472
 V5.17.txt:10473
 V5.17.txt:10474
 V5.17.txt:10475
 V5.17.txt:10476
 V5.17.txt:10477
 V5.17.txt:10478
 V5.17.txt:10479
 V5.17.txt:10480
 V5.17.txt:10481
 V5.17.txt:10482
 V5.17.txt:10483
 V5.17.txt:10484
 V5.17.txt:10485
 V5.17.txt:10486
 V5.17.txt:10487
 V5.17.txt:10488
 V5.17.txt:10489
 V5.17.txt:10490
 V5.17.txt:10491
 V5.17.txt:10492
 V5.17.txt:10493
 V5.17.txt:10494
 V5.17.txt:10495
 V5.17.txt:10496
 V5.17.txt:10497
 V5.17.txt:10498
 V5.17.txt:10499
 V5.17.txt:10500
 V5.17.txt:10501
 V5.17.txt:10502
 V5.17.txt:10503
 V5.17.txt:10504
 V5.17.txt:10505
 V5.17.txt:10506
 V5.17.txt:10507
 V5.17.txt:10508
 V5.17.txt:10509
 V5.17.txt:10510
 V5.17.txt:10511
 V5.17.txt:10512
 V5.17.txt:10513
 V5.17.txt:10514
 V5.17.txt:10515
 V5.17.txt:10516
 V5.17.txt:10517
 V5.17.txt:10518
 V5.17.txt:10519
 V5.17.txt:10520
 V5.17.txt:10521
 V5.17.txt:10522
 V5.17.txt:10523
 V5.17.txt:10524
 V5.17.txt:10525
 V5.17.txt:10526
 V5.17.txt:10527
 V5.17.txt:10528
 V5.17.txt:10529
 V5.17.txt:10530
 V5.17.txt:10531
 V5.17.txt:10532
 V5.17.txt:10533
 V5.17.txt:10534
 V5.17.txt:10535
 V5.17.txt:10536
 V5.17.txt:10537
 V5.17.txt:10538
 V5.17.txt:10539
 V5.17.txt:10540
 V5.17.txt:10541
 V5.17.txt:10542
 V5.17.txt:10543
 V5.17.txt:10544
 V5.17.txt:10545
 V5.17.txt:10546
 V5.17.txt:10547
 V5.17.txt:10548
 V5.17.txt:10549
 V5.17.txt:10550
 V5.17.txt:10551
 V5.17.txt:10552
 V5.17.txt:10553
 V5.17.txt:10554
 V5.17.txt:10555
 V5.17.txt:10556
 V5.17.txt:10557
 V5.17.txt:10558
 V5.17.txt:10559
 V5.17.txt:10560
 V5.17.txt:10561
 V5.17.txt:10562
 V5.17.txt:10563
 V5.17.txt:10564
 V5.17.txt:10565
 V5.17.txt:10566
 V5.17.txt:10567
 V5.17.txt:10568
 V5.17.txt:10569
 V5.17.txt:10570
 V5.17.txt:10571
 V5.17.txt:10572
 V5.17.txt:10573
 V5.17.txt:10574
 V5.17.txt:10575
 V5.17.txt:10576
 V5.17.txt:10577
 V5.17.txt:10578
 V5.17.txt:10579
 V5.17.txt:10580
 V5.17.txt:10581
 V5.17.txt:10582
 V5.17.txt:10583
 V5.17.txt:10584
 V5.17.txt:10585
 V5.17.txt:10586
 V5.17.txt:10587
 V5.17.txt:10588
 V5.17.txt:10589
 V5.17.txt:10590
 V5.17.txt:10591
 V5.17.txt:10592
 V5.17.txt:10593
 V5.17.txt:10594
 V5.17.txt:10595
 V5.17.txt:10596
 V5.17.txt:10597
 V5.17.txt:10598
 V5.17.txt:10599
 V5.17.txt:10600
 V5.17.txt:10601
 V5.17.txt:10602
 V5.17.txt:10603
 V5.17.txt:10604
 V5.17.txt:10605
 V5.17.txt:10606
 V5.17.txt:10607
 V5.17.txt:10608
 V5.17.txt:10609
 V5.17.txt:10610
 V5.17.txt:10611
 V5.17.txt:10612
 V5.17.txt:10613
 V5.17.txt:10614
 V5.17.txt:10615
 V5.17.txt:10616
 V5.17.txt:10617
 V5.17.txt:10618
 V5.17.txt:10619
 V5.17.txt:10620
 V5.17.txt:10621
 V5.17.txt:10622
 V5.17.txt:10623
 V5.17.txt:10624
 V5.17.txt:10625
 V5.17.txt:10626
 V5.17.txt:10627
 V5.17.txt:10628
 V5.17.txt:10629
 V5.17.txt:10630
 V5.17.txt:10631
 V5.17.txt:10632
 V5.17.txt:10633
 V5.17.txt:10634
 V5.17.txt:10635
 V5.17.txt:10636
 V5.17.txt:10637
 V5.17.txt:10638
 V5.17.txt:10639
 V5.17.txt:10640
 V5.17.txt:10641
 V5.17.txt:10642
 V5.17.txt:10643
 V5.17.txt:10644
 V5.17.txt:10645
 V5.17.txt:10646
 V5.17.txt:10647
 V5.17.txt:10648
 V5.17.txt:10649
 V5.17.txt:10650
 V5.17.txt:10651
 V5.17.txt:10652
 V5.17.txt:10653
 V5.17.txt:10654
 V5.17.txt:10655
 V5.17.txt:10656
 V5.17.txt:10657
 V5.17.txt:10658
 V5.17.txt:10659
 V5.17.txt:10660
 V5.17.txt:10661
 V5.17.txt:10662
 V5.17.txt:10663
 V5.17.txt:10664
 V5.17.txt:10665
 V5.17.txt:10666
 V5.17.txt:10667
 V5.17.txt:10668
 V5.17.txt:10669
 V5.17.txt:10670
 V5.17.txt:10671
 V5.17.txt:10672
 V5.17.txt:10673
 V5.17.txt:10674
 V5.17.txt:10675
 V5.17.txt:10676
 V5.17.txt:10677
 V5.17.txt:10678
 V5.17.txt:10679
 V5.17.txt:10680
 V5.17.txt:10681
 V5.17.txt:10682
 V5.17.txt:10683
 V5.17.txt:10684
 V5.17.txt:10685
 V5.17.txt:10686
 V5.17.txt:10687
 V5.17.txt:10688
 V5.17.txt:10689
 V5.17.txt:10690
 V5.17.txt:10691
 V5.17.txt:10692
 V5.17.txt:10693
 V5.17.txt:10694
 V5.17.txt:10695
 V5.17.txt:10696
 V5.17.txt:10697
 V5.17.txt:10698
 V5.17.txt:10699
 V5.17.txt:10700
 V5.17.txt:10701
 V5.17.txt:10702
 V5.17.txt:10703
 V5.17.txt:10704
 V5.17.txt:10705
 V5.17.txt:10706
 V5.17.txt:10707
 V5.17.txt:10708
 V5.17.txt:10709
 V5.17.txt:10710
 V5.17.txt:10711
 V5.17.txt:10712
 V5.17.txt:10713
 V5.17.txt:10714
 V5.17.txt:10715
 V5.17.txt:10716
 V5.17.txt:10717
 V5.17.txt:10718
 V5.17.txt:10719
 V5.17.txt:10720
 V5.17.txt:10721
 V5.17.txt:10722
 V5.17.txt:10723
 V5.17.txt:10724
 V5.17.txt:10725
 V5.17.txt:10726
 V5.17.txt:10727
 V5.17.txt:10728
 V5.17.txt:10729
 V5.17.txt:10730
 V5.17.txt:10731
 V5.17.txt:10732
 V5.17.txt:10733
 V5.17.txt:10734
 V5.17.txt:10735
 V5.17.txt:10736
 V5.17.txt:10737
 V5.17.txt:10738
 V5.17.txt:10739
 V5.17.txt:10740
 V5.17.txt:10741
 V5.17.txt:10742
 V5.17.txt:10743
 V5.17.txt:10744
 V5.17.txt:10745
 V5.17.txt:10746
 V5.17.txt:10747
 V5.17.txt:10748
 V5.17.txt:10749
 V5.17.txt:10750
 V5.17.txt:10751
 V5.17.txt:10752
 V5.17.txt:10753
 V5.17.txt:10754
 V5.17.txt:10755
 V5.17.txt:10756
 V5.17.txt:10757
 V5.17.txt:10758
 V5.17.txt:10759
 V5.17.txt:10760
 V5.17.txt:10761
 V5.17.txt:10762
 V5.17.txt:10763
 V5.17.txt:10764
 V5.17.txt:10765
 V5.17.txt:10766
 V5.17.txt:10767
 V5.17.txt:10768
 V5.17.txt:10769
 V5.17.txt:10770
 V5.17.txt:10771
 V5.17.txt:10772
 V5.17.txt:10773
 V5.17.txt:10774
 V5.17.txt:10775
 V5.17.txt:10776
 V5.17.txt:10777
 V5.17.txt:10778
 V5.17.txt:10779
 V5.17.txt:10780
 V5.17.txt:10781
 V5.17.txt:10782
 V5.17.txt:10783
 V5.17.txt:10784
 V5.17.txt:10785
 V5.17.txt:10786
 V5.17.txt:10787
 V5.17.txt:10788
 V5.17.txt:10789
 V5.17.txt:10790
 V5.17.txt:10791
 V5.17.txt:10792
 V5.17.txt:10793
 V5.17.txt:10794
 V5.17.txt:10795
 V5.17.txt:10796
 V5.17.txt:10797
 V5.17.txt:10798
 V5.17.txt:10799
 V5.17.txt:10800
 V5.17.txt:10801
 V5.17.txt:10802
 V5.17.txt:10803
 V5.17.txt:10804
 V5.17.txt:10805
 V5.17.txt:10806
 V5.17.txt:10807
 V5.17.txt:10808
 V5.17.txt:10809
 V5.17.txt:10810
 V5.17.txt:10811
 V5.17.txt:10812
 V5.17.txt:10813
 V5.17.txt:10814
 V5.17.txt:10815
 V5.17.txt:10816
 V5.17.txt:10817
 V5.17.txt:10818
 V5.17.txt:10819
 V5.17.txt:10820
 V5.17.txt:10821
 V5.17.txt:10822
 V5.17.txt:10823
 V5.17.txt:10824
 V5.17.txt:10825
 V5.17.txt:10826
 V5.17.txt:10827
 V5.17.txt:10828
 V5.17.txt:10829
 V5.17.txt:10830
 V5.17.txt:10831
 V5.17.txt:10832
 V5.17.txt:10833
 V5.17.txt:10834
 V5.17.txt:10835
 V5.17.txt:10836
 V5.17.txt:10837
 V5.17.txt:10838
 V5.17.txt:10839
 V5.17.txt:10840
 V5.17.txt:10841
 V5.17.txt:10842
 V5.17.txt:10843
 V5.17.txt:10844
 V5.17.txt:10845
 V5.17.txt:10846
 V5.17.txt:10847
 V5.17.txt:10848
 V5.17.txt:10849
 V5.17.txt:10850
 V5.17.txt:10851
 V5.17.txt:10852
 V5.17.txt:10853
 V5.17.txt:10854
 V5.17.txt:10855
 V5.17.txt:10856
 V5.17.txt:10857
 V5.17.txt:10858
 V5.17.txt:10859
 V5.17.txt:10860
 V5.17.txt:10861
 V5.17.txt:10862
 V5.17.txt:10863
 V5.17.txt:10864
 V5.17.txt:10865
 V5.17.txt:10866
 V5.17.txt:10867
 V5.17.txt:10868
 V5.17.txt:10869
 V5.17.txt:10870
 V5.17.txt:10871
 V5.17.txt:10872
 V5.17.txt:10873
 V5.17.txt:10874
 V5.17.txt:10875
 V5.17.txt:10876
 V5.17.txt:10877
 V5.17.txt:10878
 V5.17.txt:10879
 V5.17.txt:10880
 V5.17.txt:10881
 V5.17.txt:10882
 V5.17.txt:10883
 V5.17.txt:10884
 V5.17.txt:10885
 V5.17.txt:10886
 V5.17.txt:10887
 V5.17.txt:10888
 V5.17.txt:10889
 V5.17.txt:10890
 V5.17.txt:10891
 V5.17.txt:10892
 V5.17.txt:10893
 V5.17.txt:10894
 V5.17.txt:10895
 V5.17.txt:10896
 V5.17.txt:10897
 V5.17.txt:10898
 V5.17.txt:10899
 V5.17.txt:10900
 V5.17.txt:10901
 V5.17.txt:10902
 V5.17.txt:10903
 V5.17.txt:10904
 V5.17.txt:10905
 V5.17.txt:10906
 V5.17.txt:10907
 V5.17.txt:10908
 V5.17.txt:10909
 V5.17.txt:10910
 V5.17.txt:10911
 V5.17.txt:10912
 V5.17.txt:10913
 V5.17.txt:10914
 V5.17.txt:10915
 V5.17.txt:10916
 V5.17.txt:10917
 V5.17.txt:10918
 V5.17.txt:10919
 V5.17.txt:10920
 V5.17.txt:10921
 V5.17.txt:10922
 V5.17.txt:10923
 V5.17.txt:10924
 V5.17.txt:10925
 V5.17.txt:10926
 V5.17.txt:10927
 V5.17.txt:10928
 V5.17.txt:10929
 V5.17.txt:10930
 V5.17.txt:10931
 V5.17.txt:10932
 V5.17.txt:10933
 V5.17.txt:10934
 V5.17.txt:10935
 V5.17.txt:10936
 V5.17.txt:10937
 V5.17.txt:10938
 V5.17.txt:10939
 V5.17.txt:10940
 V5.17.txt:10941
 V5.17.txt:10942
 V5.17.txt:10943
 V5.17.txt:10944
 V5.17.txt:10945
 V5.17.txt:10946
 V5.17.txt:10947
 V5.17.txt:10948
 V5.17.txt:10949
 V5.17.txt:10950
 V5.17.txt:10951
 V5.17.txt:10952
 V5.17.txt:10953
 V5.17.txt:10954
 V5.17.txt:10955
 V5.17.txt:10956
 V5.17.txt:10957
 V5.17.txt:10958
 V5.17.txt:10959
 V5.17.txt:10960
 V5.17.txt:10961
 V5.17.txt:10962
 V5.17.txt:10963
 V5.17.txt:10964
 V5.17.txt:10965
 V5.17.txt:10966
 V5.17.txt:10967
 V5.17.txt:10968
 V5.17.txt:10969
 V5.17.txt:10970
 V5.17.txt:10971
 V5.17.txt:10972
 V5.17.txt:10973
 V5.17.txt:10974
 V5.17.txt:10975
 V5.17.txt:10976
 V5.17.txt:10977
 V5.17.txt:10978
 V5.17.txt:10979
 V5.17.txt:10980
 V5.17.txt:10981
 V5.17.txt:10982
 V5.17.txt:10983
 V5.17.txt:10984
 V5.17.txt:10985
 V5.17.txt:10986
 V5.17.txt:10987
 V5.17.txt:10988
 V5.17.txt:10989
 V5.17.txt:10990
 V5.17.txt:10991
 V5.17.txt:10992
 V5.17.txt:10993
 V5.17.txt:10994
 V5.17.txt:10995
 V5.17.txt:10996
 V5.17.txt:10997
 V5.17.txt:10998
 V5.17.txt:10999
 V5.17.txt:11000
 V5.17.txt:11001
 V5.17.txt:11002
 V5.17.txt:11003
 V5.17.txt:11004
 V5.17.txt:11005
 V5.17.txt:11006
 V5.17.txt:11007
 V5.17.txt:11008
 V5.17.txt:11009
 V5.17.txt:11010
 V5.17.txt:11011
 V5.17.txt:11012
 V5.17.txt:11013
 V5.17.txt:11014
 V5.17.txt:11015
 V5.17.txt:11016
 V5.17.txt:11017
 V5.17.txt:11018
 V5.17.txt:11019
 V5.17.txt:11020
 V5.17.txt:11021
 V5.17.txt:11022
 V5.17.txt:11023
 V5.17.txt:11024
 V5.17.txt:11025
 V5.17.txt:11026
 V5.17.txt:11027
 V5.17.txt:11028
 V5.17.txt:11029
 V5.17.txt:11030
 V5.17.txt:11031
 V5.17.txt:11032
 V5.17.txt:11033
 V5.17.txt:11034
 V5.17.txt:11035
 V5.17.txt:11036
 V5.17.txt:11037
 V5.17.txt:11038
 V5.17.txt:11039
 V5.17.txt:11040
 V5.17.txt:11041
 V5.17.txt:11042
 V5.17.txt:11043
 V5.17.txt:11044
 V5.17.txt:11045
 V5.17.txt:11046
 V5.17.txt:11047
 V5.17.txt:11048
 V5.17.txt:11049
 V5.17.txt:11050
 V5.17.txt:11051
 V5.17.txt:11052
 V5.17.txt:11053
 V5.17.txt:11054
 V5.17.txt:11055
 V5.17.txt:11056
 V5.17.txt:11057
 V5.17.txt:11058
 V5.17.txt:11059
 V5.17.txt:11060
 V5.17.txt:11061
 V5.17.txt:11062
 V5.17.txt:11063
 V5.17.txt:11064
 V5.17.txt:11065
 V5.17.txt:11066
 V5.17.txt:11067
 V5.17.txt:11068
 V5.17.txt:11069
 V5.17.txt:11070
 V5.17.txt:11071
 V5.17.txt:11072
 V5.17.txt:11073
 V5.17.txt:11074
 V5.17.txt:11075
 V5.17.txt:11076
 V5.17.txt:11077
 V5.17.txt:11078
 V5.17.txt:11079
 V5.17.txt:11080
 V5.17.txt:11081
 V5.17.txt:11082
 V5.17.txt:11083
 V5.17.txt:11084
 V5.17.txt:11085
 V5.17.txt:11086
 V5.17.txt:11087
 V5.17.txt:11088
 V5.17.txt:11089
 V5.17.txt:11090
 V5.17.txt:11091
 V5.17.txt:11092
 V5.17.txt:11093
 V5.17.txt:11094
 V5.17.txt:11095
 V5.17.txt:11096
 V5.17.txt:11097
 V5.17.txt:11098
 V5.17.txt:11099
 V5.17.txt:11100
 V5.17.txt:11101
 V5.17.txt:11102
 V5.17.txt:11103
 V5.17.txt:11104
 V5.17.txt:11105
 V5.17.txt:11106
 V5.17.txt:11107
 V5.17.txt:11108
 V5.17.txt:11109
 V5.17.txt:11110
 V5.17.txt:11111
 V5.17.txt:11112
 V5.17.txt:11113
 V5.17.txt:11114
 V5.17.txt:11115
 V5.17.txt:11116
 V5.17.txt:11117
 V5.17.txt:11118
 V5.17.txt:11119
 V5.17.txt:11120
 V5.17.txt:11121
 V5.17.txt:11122
 V5.17.txt:11123
 V5.17.txt:11124
 V5.17.txt:11125
 V5.17.txt:11126
 V5.17.txt:11127
 V5.17.txt:11128
 V5.17.txt:11129
 V5.17.txt:11130
 V5.17.txt:11131
 V5.17.txt:11132
 V5.17.txt:11133
 V5.17.txt:11134
 V5.17.txt:11135
 V5.17.txt:11136
 V5.17.txt:11137
 V5.17.txt:11138
 V5.17.txt:11139
 V5.17.txt:11140
 V5.17.txt:11141
 V5.17.txt:11142
 V5.17.txt:11143
 V5.17.txt:11144
 V5.17.txt:11145
 V5.17.txt:11146
 V5.17.txt:11147
 V5.17.txt:11148
 V5.17.txt:11149
 V5.17.txt:11150
 V5.17.txt:11151
 V5.17.txt:11152
 V5.17.txt:11153
 V5.17.txt:11154
 V5.17.txt:11155
 V5.17.txt:11156
 V5.17.txt:11157
 V5.17.txt:11158
 V5.17.txt:11159
 V5.17.txt:11160
 V5.17.txt:11161
 V5.17.txt:11162
 V5.17.txt:11163
 V5.17.txt:11164
 V5.17.txt:11165
 V5.17.txt:11166
 V5.17.txt:11167
 V5.17.txt:11168
 V5.17.txt:11169
 V5.17.txt:11170
 V5.17.txt:11171
 V5.17.txt:11172
 V5.17.txt:11173
 V5.17.txt:11174
 V5.17.txt:11175
 V5.17.txt:11176
 V5.17.txt:11177
 V5.17.txt:11178
 V5.17.txt:11179
 V5.17.txt:11180
 V5.17.txt:11181
 V5.17.txt:11182
 V5.17.txt:11183
 V5.17.txt:11184
 V5.17.txt:11185
 V5.17.txt:11186
 V5.17.txt:11187
 V5.17.txt:11188
 V5.17.txt:11189
 V5.17.txt:11190
 V5.17.txt:11191
 V5.17.txt:11192
 V5.17.txt:11193
 V5.17.txt:11194
 V5.17.txt:11195
 V5.17.txt:11196
 V5.17.txt:11197
 V5.17.txt:11198
 V5.17.txt:11199
 V5.17.txt:11200
 V5.17.txt:11201
 V5.17.txt:11202
 V5.17.txt:11203
 V5.17.txt:11204
 V5.17.txt:11205
 V5.17.txt:11206
 V5.17.txt:11207
 V5.17.txt:11208
 V5.17.txt:11209
 V5.17.txt:11210
 V5.17.txt:11211
 V5.17.txt:11212
 V5.17.txt:11213
 V5.17.txt:11214
 V5.17.txt:11215
 V5.17.txt:11216
 V5.17.txt:11217
 V5.17.txt:11218
 V5.17.txt:11219
 V5.17.txt:11220
 V5.17.txt:11221
 V5.17.txt:11222
 V5.17.txt:11223
 V5.17.txt:11224
 V5.17.txt:11225
 V5.17.txt:11226
 V5.17.txt:11227
 V5.17.txt:11228
 V5.17.txt:11229
 V5.17.txt:11230
 V5.17.txt:11231
 V5.17.txt:11232
 V5.17.txt:11233
 V5.17.txt:11234
 V5.17.txt:11235
 V5.17.txt:11236
 V5.17.txt:11237
 V5.17.txt:11238
 V5.17.txt:11239
 V5.17.txt:11240
 V5.17.txt:11241
 V5.17.txt:11242
 V5.17.txt:11243
 V5.17.txt:11244
 V5.17.txt:11245
 V5.17.txt:11246
 V5.17.txt:11247
 V5.17.txt:11248
 V5.17.txt:11249
 V5.17.txt:11250
 V5.17.txt:11251
 V5.17.txt:11252
 V5.17.txt:11253
 V5.17.txt:11254
 V5.17.txt:11255
 V5.17.txt:11256
 V5.17.txt:11257
 V5.17.txt:11258
 V5.17.txt:11259
 V5.17.txt:11260
 V5.17.txt:11261
 V5.17.txt:11262
 V5.17.txt:11263
 V5.17.txt:11264
 V5.17.txt:11265
 V5.17.txt:11266
 V5.17.txt:11267
 V5.17.txt:11268
 V5.17.txt:11269
 V5.17.txt:11270
 V5.17.txt:11271
 V5.17.txt:11272
 V5.17.txt:11273
 V5.17.txt:11274
 V5.17.txt:11275
 V5.17.txt:11276
 V5.17.txt:11277
 V5.17.txt:11278
 V5.17.txt:11279
 V5.17.txt:11280
 V5.17.txt:11281
 V5.17.txt:11282
 V5.17.txt:11283
 V5.17.txt:11284
 V5.17.txt:11285
 V5.17.txt:11286
 V5.17.txt:11287
 V5.17.txt:11288
 V5.17.txt:11289
 V5.17.txt:11290
 V5.17.txt:11291
 V5.17.txt:11292
 V5.17.txt:11293
 V5.17.txt:11294
 V5.17.txt:11295
 V5.17.txt:11296
 V5.17.txt:11297
 V5.17.txt:11298
 V5.17.txt:11299
 V5.17.txt:11300
 V5.17.txt:11301
 V5.17.txt:11302
 V5.17.txt:11303
 V5.17.txt:11304
 V5.17.txt:11305
 V5.17.txt:11306
 V5.17.txt:11307
 V5.17.txt:11308
 V5.17.txt:11309
 V5.17.txt:11310
 V5.17.txt:11311
 V5.17.txt:11312
 V5.17.txt:11313
 V5.17.txt:11314
 V5.17.txt:11315
 V5.17.txt:11316
 V5.17.txt:11317
 V5.17.txt:11318
 V5.17.txt:11319
 V5.17.txt:11320
 V5.17.txt:11321
 V5.17.txt:11322
 V5.17.txt:11323
 V5.17.txt:11324
 V5.17.txt:11325
 V5.17.txt:11326
 V5.17.txt:11327
 V5.17.txt:11328
 V5.17.txt:11329
 V5.17.txt:11330
 V5.17.txt:11331
 V5.17.txt:11332
 V5.17.txt:11333
 V5.17.txt:11334
 V5.17.txt:11335
 V5.17.txt:11336
 V5.17.txt:11337
 V5.17.txt:11338
 V5.17.txt:11339
 V5.17.txt:11340
 V5.17.txt:11341
 V5.17.txt:11342
 V5.17.txt:11343
 V5.17.txt:11344
 V5.17.txt:11345
 V5.17.txt:11346
 V5.17.txt:11347
 V5.17.txt:11348
 V5.17.txt:11349
 V5.17.txt:11350
 V5.17.txt:11351
 V5.17.txt:11352
 V5.17.txt:11353
 V5.17.txt:11354
 V5.17.txt:11355
 V5.17.txt:11356
 V5.17.txt:11357
 V5.17.txt:11358
 V5.17.txt:11359
 V5.17.txt:11360
 V5.17.txt:11361
 V5.17.txt:11362
 V5.17.txt:11363
 V5.17.txt:11364
 V5.17.txt:11365
 V5.17.txt:11366
 V5.17.txt:11367
 V5.17.txt:11368
 V5.17.txt:11369
 V5.17.txt:11370
 V5.17.txt:11371
 V5.17.txt:11372
 V5.17.txt:11373
 V5.17.txt:11374
 V5.17.txt:11375
 V5.17.txt:11376
 V5.17.txt:11377
 V5.17.txt:11378
 V5.17.txt:11379
 V5.17.txt:11380
 V5.17.txt:11381
 V5.17.txt:11382
 V5.17.txt:11383
 V5.17.txt:11384
 V5.17.txt:11385
 V5.17.txt:11386
 V5.17.txt:11387
 V5.17.txt:11388
 V5.17.txt:11389
 V5.17.txt:11390
 V5.17.txt:11391
 V5.17.txt:11392
 V5.17.txt:11393
 V5.17.txt:11394
 V5.17.txt:11395
 V5.17.txt:11396
 V5.17.txt:11397
 V5.17.txt:11398
 V5.17.txt:11399
 V5.17.txt:11400
 V5.17.txt:11401
 V5.17.txt:11402
 V5.17.txt:11403
 V5.17.txt:11404
 V5.17.txt:11405
 V5.17.txt:11406
 V5.17.txt:11407
 V5.17.txt:11408
 V5.17.txt:11409
 V5.17.txt:11410
 V5.17.txt:11411
 V5.17.txt:11412
 V5.17.txt:11413
 V5.17.txt:11414
 V5.17.txt:11415
 V5.17.txt:11416
 V5.17.txt:11417
 V5.17.txt:11418
 V5.17.txt:11419
 V5.17.txt:11420
 V5.17.txt:11421
 V5.17.txt:11422
 V5.17.txt:11423
 V5.17.txt:11424
 V5.17.txt:11425
 V5.17.txt:11426
 V5.17.txt:11427
 V5.17.txt:11428
 V5.17.txt:11429
 V5.17.txt:11430
 V5.17.txt:11431
 V5.17.txt:11432
 V5.17.txt:11433
 V5.17.txt:11434
 V5.17.txt:11435
 V5.17.txt:11436
 V5.17.txt:11437
 V5.17.txt:11438
 V5.17.txt:11439
 V5.17.txt:11440
 V5.17.txt:11441
 V5.17.txt:11442
 V5.17.txt:11443
 V5.17.txt:11444
 V5.17.txt:11445
 V5.17.txt:11446
 V5.17.txt:11447
 V5.17.txt:11448
 V5.17.txt:11449
 V5.17.txt:11450
 V5.17.txt:11451
 V5.17.txt:11452
 V5.17.txt:11453
 V5.17.txt:11454
 V5.17.txt:11455
 V5.17.txt:11456
 V5.17.txt:11457
 V5.17.txt:11458
 V5.17.txt:11459
 V5.17.txt:11460
 V5.17.txt:11461
 V5.17.txt:11462
 V5.17.txt:11463
 V5.17.txt:11464
 V5.17.txt:11465
 V5.17.txt:11466
 V5.17.txt:11467
 V5.17.txt:11468
 V5.17.txt:11469
 V5.17.txt:11470
 V5.17.txt:11471
 V5.17.txt:11472
 V5.17.txt:11473
 V5.17.txt:11474
 V5.17.txt:11475
 V5.17.txt:11476
 V5.17.txt:11477
 V5.17.txt:11478
 V5.17.txt:11479
 V5.17.txt:11480
 V5.17.txt:11481
 V5.17.txt:11482
 V5.17.txt:11483
 V5.17.txt:11484
 V5.17.txt:11485
 V5.17.txt:11486
 V5.17.txt:11487
 V5.17.txt:11488
 V5.17.txt:11489
 V5.17.txt:11490
 V5.17.txt:11491
 V5.17.txt:11492
 V5.17.txt:11493
 V5.17.txt:11494
 V5.17.txt:11495
 V5.17.txt:11496
 V5.17.txt:11497
 V5.17.txt:11498
 V5.17.txt:11499
 V5.17.txt:11500
 V5.17.txt:11501
 V5.17.txt:11502
 V5.17.txt:11503
 V5.17.txt:11504
 V5.17.txt:11505
 V5.17.txt:11506
 V5.17.txt:11507
 V5.17.txt:11508
 V5.17.txt:11509
 V5.17.txt:11510
 V5.17.txt:11511
 V5.17.txt:11512
 V5.17.txt:11513
 V5.17.txt:11514
 V5.17.txt:11515
 V5.17.txt:11516
 V5.17.txt:11517
 V5.17.txt:11518
 V5.17.txt:11519
 V5.17.txt:11520
 V5.17.txt:11521
 V5.17.txt:11522
 V5.17.txt:11523
 V5.17.txt:11524
 V5.17.txt:11525
 V5.17.txt:11526
 V5.17.txt:11527
 V5.17.txt:11528
 V5.17.txt:11529
 V5.17.txt:11530
 V5.17.txt:11531
 V5.17.txt:11532
 V5.17.txt:11533
 V5.17.txt:11534
 V5.17.txt:11535
 V5.17.txt:11536
 V5.17.txt:11537
 V5.17.txt:11538
 V5.17.txt:11539
 V5.17.txt:11540
 V5.17.txt:11541
 V5.17.txt:11542
 V5.17.txt:11543
 V5.17.txt:11544
 V5.17.txt:11545
 V5.17.txt:11546
 V5.17.txt:11547
 V5.17.txt:11548
 V5.17.txt:11549
 V5.17.txt:11550
 V5.17.txt:11551
 V5.17.txt:11552
 V5.17.txt:11553
 V5.17.txt:11554
 V5.17.txt:11555
 V5.17.txt:11556
 V5.17.txt:11557
 V5.17.txt:11558
 V5.17.txt:11559
 V5.17.txt:11560
 V5.17.txt:11561
 V5.17.txt:11562
 V5.17.txt:11563
 V5.17.txt:11564
 V5.17.txt:11565
 V5.17.txt:11566
 V5.17.txt:11567
 V5.17.txt:11568
 V5.17.txt:11569
 V5.17.txt:11570
 V5.17.txt:11571
 V5.17.txt:11572
 V5.17.txt:11573
 V5.17.txt:11574
 V5.17.txt:11575
 V5.17.txt:11576
 V5.17.txt:11577
 V5.17.txt:11578
 V5.17.txt:11579
 V5.17.txt:11580
 V5.17.txt:11581
 V5.17.txt:11582
 V5.17.txt:11583
 V5.17.txt:11584
 V5.17.txt:11585
 V5.17.txt:11586
 V5.17.txt:11587
 V5.17.txt:11588
 V5.17.txt:11589
 V5.17.txt:11590
 V5.17.txt:11591
 V5.17.txt:11592
 V5.17.txt:11593
 V5.17.txt:11594
 V5.17.txt:11595
 V5.17.txt:11596
 V5.17.txt:11597
 V5.17.txt:11598
 V5.17.txt:11599
 V5.17.txt:11600
 V5.17.txt:11601
 V5.17.txt:11602
 V5.17.txt:11603
 V5.17.txt:11604
 V5.17.txt:11605
 V5.17.txt:11606
 V5.17.txt:11607
 V5.17.txt:11608
 V5.17.txt:11609
 V5.17.txt:11610
 V5.17.txt:11611
 V5.17.txt:11612
 V5.17.txt:11613
 V5.17.txt:11614
 V5.17.txt:11615
 V5.17.txt:11616
 V5.17.txt:11617
 V5.17.txt:11618
 V5.17.txt:11619
 V5.17.txt:11620
 V5.17.txt:11621
 V5.17.txt:11622
 V5.17.txt:11623
 V5.17.txt:11624
 V5.17.txt:11625
 V5.17.txt:11626
 V5.17.txt:11627
 V5.17.txt:11628
 V5.17.txt:11629
 V5.17.txt:11630
 V5.17.txt:11631
 V5.17.txt:11632
 V5.17.txt:11633
 V5.17.txt:11634
 V5.17.txt:11635
 V5.17.txt:11636
 V5.17.txt:11637
 V5.17.txt:11638
 V5.17.txt:11639
 V5.17.txt:11640
 V5.17.txt:11641
 V5.17.txt:11642
 V5.17.txt:11643
 V5.17.txt:11644
 V5.17.txt:11645
 V5.17.txt:11646
 V5.17.txt:11647
 V5.17.txt:11648
 V5.17.txt:11649
 V5.17.txt:11650
 V5.17.txt:11651
 V5.17.txt:11652
 V5.17.txt:11653
 V5.17.txt:11654
 V5.17.txt:11655
 V5.17.txt:11656
 V5.17.txt:11657
 V5.17.txt:11658
 V5.17.txt:11659
 V5.17.txt:11660
 V5.17.txt:11661
 V5.17.txt:11662
 V5.17.txt:11663
 V5.17.txt:11664
 V5.17.txt:11665
 V5.17.txt:11666
 V5.17.txt:11667
 V5.17.txt:11668
 V5.17.txt:11669
 V5.17.txt:11670
 V5.17.txt:11671
 V5.17.txt:11672
 V5.17.txt:11673
 V5.17.txt:11674
 V5.17.txt:11675
 V5.17.txt:11676
 V5.17.txt:11677
 V5.17.txt:11678
 V5.17.txt:11679
 V5.17.txt:11680
 V5.17.txt:11681
 V5.17.txt:11682
 V5.17.txt:11683
 V5.17.txt:11684
 V5.17.txt:11685
 V5.17.txt:11686
 V5.17.txt:11687
 V5.17.txt:11688
 V5.17.txt:11689
 V5.17.txt:11690
 V5.17.txt:11691
 V5.17.txt:11692
 V5.17.txt:11693
 V5.17.txt:11694
 V5.17.txt:11695
 V5.17.txt:11696
 V5.17.txt:11697
 V5.17.txt:11698
 V5.17.txt:11699
 V5.17.txt:11700
 V5.17.txt:11701
 V5.17.txt:11702
 V5.17.txt:11703
 V5.17.txt:11704
 V5.17.txt:11705
 V5.17.txt:11706
 V5.17.txt:11707
 V5.17.txt:11708
 V5.17.txt:11709
 V5.17.txt:11710
 V5.17.txt:11711
 V5.17.txt:11712
 V5.17.txt:11713
 V5.17.txt:11714
 V5.17.txt:11715
 V5.17.txt:11716
 V5.17.txt:11717
 V5.17.txt:11718
 V5.17.txt:11719
 V5.17.txt:11720
 V5.17.txt:11721
 V5.17.txt:11722
 V5.17.txt:11723
 V5.17.txt:11724
 V5.17.txt:11725
 V5.17.txt:11726
 V5.17.txt:11727
 V5.17.txt:11728
 V5.17.txt:11729
 V5.17.txt:11730
 V5.17.txt:11731
 V5.17.txt:11732
 V5.17.txt:11733
 V5.17.txt:11734
 V5.17.txt:11735
 V5.17.txt:11736
 V5.17.txt:11737
 V5.17.txt:11738
 V5.17.txt:11739
 V5.17.txt:11740
 V5.17.txt:11741
 V5.17.txt:11742
 V5.17.txt:11743
 V5.17.txt:11744
 V5.17.txt:11745
 V5.17.txt:11746
 V5.17.txt:11747
 V5.17.txt:11748
 V5.17.txt:11749
 V5.17.txt:11750
 V5.17.txt:11751
 V5.17.txt:11752
 V5.17.txt:11753
 V5.17.txt:11754
 V5.17.txt:11755
 V5.17.txt:11756
 V5.17.txt:11757
 V5.17.txt:11758
 V5.17.txt:11759
 V5.17.txt:11760
 V5.17.txt:11761
 V5.17.txt:11762
 V5.17.txt:11763
 V5.17.txt:11764
 V5.17.txt:11765
 V5.17.txt:11766
 V5.17.txt:11767
 V5.17.txt:11768
 V5.17.txt:11769
 V5.17.txt:11770
 V5.17.txt:11771
 V5.17.txt:11772
 V5.17.txt:11773
 V5.17.txt:11774
 V5.17.txt:11775
 V5.17.txt:11776
 V5.17.txt:11777
 V5.17.txt:11778
 V5.17.txt:11779
 V5.17.txt:11780
 V5.17.txt:11781
 V5.17.txt:11782
 V5.17.txt:11783
 V5.17.txt:11784
 V5.17.txt:11785
 V5.17.txt:11786
 V5.17.txt:11787
 V5.17.txt:11788
 V5.17.txt:11789
 V5.17.txt:11790
 V5.17.txt:11791
 V5.17.txt:11792
 V5.17.txt:11793
 V5.17.txt:11794
 V5.17.txt:11795
 V5.17.txt:11796
 V5.17.txt:11797
 V5.17.txt:11798
 V5.17.txt:11799
 V5.17.txt:11800
 V5.17.txt:11801
 V5.17.txt:11802
 V5.17.txt:11803
 V5.17.txt:11804
 V5.17.txt:11805
 V5.17.txt:11806
 V5.17.txt:11807
 V5.17.txt:11808
 V5.17.txt:11809
 V5.17.txt:11810
 V5.17.txt:11811
 V5.17.txt:11812
 V5.17.txt:11813
 V5.17.txt:11814
 V5.17.txt:11815
 V5.17.txt:11816
 V5.17.txt:11817
 V5.17.txt:11818
 V5.17.txt:11819
 V5.17.txt:11820
 V5.17.txt:11821
 V5.17.txt:11822
 V5.17.txt:11823
 V5.17.txt:11824
 V5.17.txt:11825
 V5.17.txt:11826
 V5.17.txt:11827
 V5.17.txt:11828
 V5.17.txt:11829
 V5.17.txt:11830
 V5.17.txt:11831
 V5.17.txt:11832
 V5.17.txt:11833
 V5.17.txt:11834
 V5.17.txt:11835
 V5.17.txt:11836
 V5.17.txt:11837
 V5.17.txt:11838
 V5.17.txt:11839
 V5.17.txt:11840
 V5.17.txt:11841
 V5.17.txt:11842
 V5.17.txt:11843
 V5.17.txt:11844
 V5.17.txt:11845
 V5.17.txt:11846
 V5.17.txt:11847
 V5.17.txt:11848
 V5.17.txt:11849
 V5.17.txt:11850
 V5.17.txt:11851
 V5.17.txt:11852
 V5.17.txt:11853
 V5.17.txt:11854
 V5.17.txt:11855
 V5.17.txt:11856
 V5.17.txt:11857
 V5.17.txt:11858
 V5.17.txt:11859
 V5.17.txt:11860
 V5.17.txt:11861
 V5.17.txt:11862
 V5.17.txt:11863
 V5.17.txt:11864
 V5.17.txt:11865
 V5.17.txt:11866
 V5.17.txt:11867
 V5.17.txt:11868
 V5.17.txt:11869
 V5.17.txt:11870
 V5.17.txt:11871
 V5.17.txt:11872
 V5.17.txt:11873
 V5.17.txt:11874
 V5.17.txt:11875
 V5.17.txt:11876
 V5.17.txt:11877
 V5.17.txt:11878
 V5.17.txt:11879
 V5.17.txt:11880
 V5.17.txt:11881
 V5.17.txt:11882
 V5.17.txt:11883
 V5.17.txt:11884
 V5.17.txt:11885
 V5.17.txt:11886
 V5.17.txt:11887
 V5.17.txt:11888
 V5.17.txt:11889
 V5.17.txt:11890
 V5.17.txt:11891
 V5.17.txt:11892
 V5.17.txt:11893
 V5.17.txt:11894
 V5.17.txt:11895
 V5.17.txt:11896
 V5.17.txt:11897
 V5.17.txt:11898
 V5.17.txt:11899
 V5.17.txt:11900
 V5.17.txt:11901
 V5.17.txt:11902
 V5.17.txt:11903
 V5.17.txt:11904
 V5.17.txt:11905
 V5.17.txt:11906
 V5.17.txt:11907
 V5.17.txt:11908
 V5.17.txt:11909
 V5.17.txt:11910
 V5.17.txt:11911
 V5.17.txt:11912
 V5.17.txt:11913
 V5.17.txt:11914
 V5.17.txt:11915
 V5.17.txt:11916
 V5.17.txt:11917
 V5.17.txt:11918
 V5.17.txt:11919
 V5.17.txt:11920
 V5.17.txt:11921
 V5.17.txt:11922
 V5.17.txt:11923
 V5.17.txt:11924
 V5.17.txt:11925
 V5.17.txt:11926
 V5.17.txt:11927
 V5.17.txt:11928
 V5.17.txt:11929
 V5.17.txt:11930
 V5.17.txt:11931
 V5.17.txt:11932
 V5.17.txt:11933
 V5.17.txt:11934
 V5.17.txt:11935
 V5.17.txt:11936
 V5.17.txt:11937
 V5.17.txt:11938
 V5.17.txt:11939
 V5.17.txt:11940
 V5.17.txt:11941
 V5.17.txt:11942
 V5.17.txt:11943
 V5.17.txt:11944
 V5.17.txt:11945
 V5.17.txt:11946
 V5.17.txt:11947
 V5.17.txt:11948
 V5.17.txt:11949
 V5.17.txt:11950
 V5.17.txt:11951
 V5.17.txt:11952
 V5.17.txt:11953
 V5.17.txt:11954
 V5.17.txt:11955
 V5.17.txt:11956
 V5.17.txt:11957
 V5.17.txt:11958
 V5.17.txt:11959
 V5.17.txt:11960
 V5.17.txt:11961
 V5.17.txt:11962
 V5.17.txt:11963
 V5.17.txt:11964
 V5.17.txt:11965
 V5.17.txt:11966
 V5.17.txt:11967
 V5.17.txt:11968
 V5.17.txt:11969
 V5.17.txt:11970
 V5.17.txt:11971
 V5.17.txt:11972
 V5.17.txt:11973
 V5.17.txt:11974
 V5.17.txt:11975
 V5.17.txt:11976
 V5.17.txt:11977
 V5.17.txt:11978
 V5.17.txt:11979
 V5.17.txt:11980
 V5.17.txt:11981
 V5.17.txt:11982
 V5.17.txt:11983
 V5.17.txt:11984
 V5.17.txt:11985
 V5.17.txt:11986
 V5.17.txt:11987
 V5.17.txt:11988
 V5.17.txt:11989
 V5.17.txt:11990
 V5.17.txt:11991
 V5.17.txt:11992
 V5.17.txt:11993
 V5.17.txt:11994
 V5.17.txt:11995
 V5.17.txt:11996
 V5.17.txt:11997
 V5.17.txt:11998
 V5.17.txt:11999
 V5.17.txt:12000
 V5.17.txt:12001
 V5.17.txt:12002
 V5.17.txt:12003
 V5.17.txt:12004
 V5.17.txt:12005
 V5.17.txt:12006
 V5.17.txt:12007
 V5.17.txt:12008
 V5.17.txt:12009
 V5.17.txt:12010
 V5.17.txt:12011
 V5.17.txt:12012
 V5.17.txt:12013
 V5.17.txt:12014
 V5.17.txt:12015
 V5.17.txt:12016
 V5.17.txt:12017
 V5.17.txt:12018
 V5.17.txt:12019
 V5.17.txt:12020
 V5.17.txt:12021
 V5.17.txt:12022
 V5.17.txt:12023
 V5.17.txt:12024
 V5.17.txt:12025
 V5.17.txt:12026
 V5.17.txt:12027
 V5.17.txt:12028
 V5.17.txt:12029
 V5.17.txt:12030
 V5.17.txt:12031
 V5.17.txt:12032
 V5.17.txt:12033
 V5.17.txt:12034
 V5.17.txt:12035
 V5.17.txt:12036
 V5.17.txt:12037
 V5.17.txt:12038
 V5.17.txt:12039
 V5.17.txt:12040
 V5.17.txt:12041
 V5.17.txt:12042
 V5.17.txt:12043
 V5.17.txt:12044
 V5.17.txt:12045
 V5.17.txt:12046
 V5.17.txt:12047
 V5.17.txt:12048
 V5.17.txt:12049
 V5.17.txt:12050
 V5.17.txt:12051
 V5.17.txt:12052
 V5.17.txt:12053
 V5.17.txt:12054
 V5.17.txt:12055
 V5.17.txt:12056
 V5.17.txt:12057
 V5.17.txt:12058
 V5.17.txt:12059
 V5.17.txt:12060
 V5.17.txt:12061
 V5.17.txt:12062
 V5.17.txt:12063
 V5.17.txt:12064
 V5.17.txt:12065
 V5.17.txt:12066
 V5.17.txt:12067
 V5.17.txt:12068
 V5.17.txt:12069
 V5.17.txt:12070
 V5.17.txt:12071
 V5.17.txt:12072
 V5.17.txt:12073
 V5.17.txt:12074
 V5.17.txt:12075
 V5.17.txt:12076
 V5.17.txt:12077
 V5.17.txt:12078
 V5.17.txt:12079
 V5.17.txt:12080
 V5.17.txt:12081
 V5.17.txt:12082
 V5.17.txt:12083
 V5.17.txt:12084
 V5.17.txt:12085
 V5.17.txt:12086
 V5.17.txt:12087
 V5.17.txt:12088
 V5.17.txt:12089
 V5.17.txt:12090
 V5.17.txt:12091
 V5.17.txt:12092
 V5.17.txt:12093
 V5.17.txt:12094
 V5.17.txt:12095
 V5.17.txt:12096
 V5.17.txt:12097
 V5.17.txt:12098
 V5.17.txt:12099
 V5.17.txt:12100
 V5.17.txt:12101
 V5.17.txt:12102
 V5.17.txt:12103
 V5.17.txt:12104
 V5.17.txt:12105
 V5.17.txt:12106
 V5.17.txt:12107
 V5.17.txt:12108
 V5.17.txt:12109
 V5.17.txt:12110
 V5.17.txt:12111
 V5.17.txt:12112
 V5.17.txt:12113
 V5.17.txt:12114
 V5.17.txt:12115
 V5.17.txt:12116
 V5.17.txt:12117
 V5.17.txt:12118
 V5.17.txt:12119
 V5.17.txt:12120
 V5.17.txt:12121
 V5.17.txt:12122
 V5.17.txt:12123
 V5.17.txt:12124
 V5.17.txt:12125
 V5.17.txt:12126
 V5.17.txt:12127
 V5.17.txt:12128
 V5.17.txt:12129
 V5.17.txt:12130
 V5.17.txt:12131
 V5.17.txt:12132
 V5.17.txt:12133
 V5.17.txt:12134
 V5.17.txt:12135
 V5.17.txt:12136
 V5.17.txt:12137
 V5.17.txt:12138
 V5.17.txt:12139
 V5.17.txt:12140
 V5.17.txt:12141
 V5.17.txt:12142
 V5.17.txt:12143
 V5.17.txt:12144
 V5.17.txt:12145
 V5.17.txt:12146
 V5.17.txt:12147
 V5.17.txt:12148
 V5.17.txt:12149
 V5.17.txt:12150
 V5.17.txt:12151
 V5.17.txt:12152
 V5.17.txt:12153
 V5.17.txt:12154
 V5.17.txt:12155
 V5.17.txt:12156
 V5.17.txt:12157
 V5.17.txt:12158
 V5.17.txt:12159
 V5.17.txt:12160
 V5.17.txt:12161
 V5.17.txt:12162
 V5.17.txt:12163
 V5.17.txt:12164
 V5.17.txt:12165
 V5.17.txt:12166
 V5.17.txt:12167
 V5.17.txt:12168
 V5.17.txt:12169
 V5.17.txt:12170
 V5.17.txt:12171
 V5.17.txt:12172
 V5.17.txt:12173
 V5.17.txt:12174
 V5.17.txt:12175
 V5.17.txt:12176
 V5.17.txt:12177
 V5.17.txt:12178
 V5.17.txt:12179
 V5.17.txt:12180
 V5.17.txt:12181
 V5.17.txt:12182
 V5.17.txt:12183
 V5.17.txt:12184
 V5.17.txt:12185
 V5.17.txt:12186
 V5.17.txt:12187
 V5.17.txt:12188
 V5.17.txt:12189
 V5.17.txt:12190
 V5.17.txt:12191
 V5.17.txt:12192
 V5.17.txt:12193
 V5.17.txt:12194
 V5.17.txt:12195
 V5.17.txt:12196
 V5.17.txt:12197
 V5.17.txt:12198
 V5.17.txt:12199
 V5.17.txt:12200
 V5.17.txt:12201
 V5.17.txt:12202
 V5.17.txt:12203
 V5.17.txt:12204
 V5.17.txt:12205
 V5.17.txt:12206
 V5.17.txt:12207
 V5.17.txt:12208
 V5.17.txt:12209
 V5.17.txt:12210
 V5.17.txt:12211
 V5.17.txt:12212
 V5.17.txt:12213
 V5.17.txt:12214
 V5.17.txt:12215
 V5.17.txt:12216
 V5.17.txt:12217
 V5.17.txt:12218
 V5.17.txt:12219
 V5.17.txt:12220
 V5.17.txt:12221
 V5.17.txt:12222
 V5.17.txt:12223
 V5.17.txt:12224
 V5.17.txt:12225
 V5.17.txt:12226
 V5.17.txt:12227
 V5.17.txt:12228
 V5.17.txt:12229
 V5.17.txt:12230
 V5.17.txt:12231
 V5.17.txt:12232
 V5.17.txt:12233
 V5.17.txt:12234
 V5.17.txt:12235
 V5.17.txt:12236
 V5.17.txt:12237
 V5.17.txt:12238
 V5.17.txt:12239
 V5.17.txt:12240
 V5.17.txt:12241
 V5.17.txt:12242
 V5.17.txt:12243
 V5.17.txt:12244
 V5.17.txt:12245
 V5.17.txt:12246
 V5.17.txt:12247
 V5.17.txt:12248
 V5.17.txt:12249
 V5.17.txt:12250
 V5.17.txt:12251
 V5.17.txt:12252
 V5.17.txt:12253
 V5.17.txt:12254
 V5.17.txt:12255
 V5.17.txt:12256
 V5.17.txt:12257
 V5.17.txt:12258
 V5.17.txt:12259
 V5.17.txt:12260
 V5.17.txt:12261
 V5.17.txt:12262
 V5.17.txt:12263
 V5.17.txt:12264
 V5.17.txt:12265
 V5.17.txt:12266
 V5.17.txt:12267
 V5.17.txt:12268
 V5.17.txt:12269
 V5.17.txt:12270
 V5.17.txt:12271
 V5.17.txt:12272
 V5.17.txt:12273
 V5.17.txt:12274
 V5.17.txt:12275
 V5.17.txt:12276
 V5.17.txt:12277
 V5.17.txt:12278
 V5.17.txt:12279
 V5.17.txt:12280
 V5.17.txt:12281
 V5.17.txt:12282
 V5.17.txt:12283
 V5.17.txt:12284
 V5.17.txt:12285
 V5.17.txt:12286
 V5.17.txt:12287
 V5.17.txt:12288
 V5.17.txt:12289
 V5.17.txt:12290
 V5.17.txt:12291
 V5.17.txt:12292
 V5.17.txt:12293
 V5.17.txt:12294
 V5.17.txt:12295
 V5.17.txt:12296
 V5.17.txt:12297
 V5.17.txt:12298
 V5.17.txt:12299
 V5.17.txt:12300
 V5.17.txt:12301
 V5.17.txt:12302
 V5.17.txt:12303
 V5.17.txt:12304
 V5.17.txt:12305
 V5.17.txt:12306
 V5.17.txt:12307
 V5.17.txt:12308
 V5.17.txt:12309
 V5.17.txt:12310
 V5.17.txt:12311
 V5.17.txt:12312
 V5.17.txt:12313
 V5.17.txt:12314
 V5.17.txt:12315
 V5.17.txt:12316
 V5.17.txt:12317
 V5.17.txt:12318
 V5.17.txt:12319
 V5.17.txt:12320
 V5.17.txt:12321
 V5.17.txt:12322
 V5.17.txt:12323
 V5.17.txt:12324
 V5.17.txt:12325
 V5.17.txt:12326
 V5.17.txt:12327
 V5.17.txt:12328
 V5.17.txt:12329
 V5.17.txt:12330
 V5.17.txt:12331
 V5.17.txt:12332
 V5.17.txt:12333
 V5.17.txt:12334
 V5.17.txt:12335
 V5.17.txt:12336
 V5.17.txt:12337
 V5.17.txt:12338
 V5.17.txt:12339
 V5.17.txt:12340
 V5.17.txt:12341
 V5.17.txt:12342
 V5.17.txt:12343
 V5.17.txt:12344
 V5.17.txt:12345
 V5.17.txt:12346
 V5.17.txt:12347
 V5.17.txt:12348
 V5.17.txt:12349
 V5.17.txt:12350
 V5.17.txt:12351
 V5.17.txt:12352
 V5.17.txt:12353
 V5.17.txt:12354
 V5.17.txt:12355
 V5.17.txt:12356
 V5.17.txt:12357
 V5.17.txt:12358
 V5.17.txt:12359
 V5.17.txt:12360
 V5.17.txt:12361
 V5.17.txt:12362
 V5.17.txt:12363
 V5.17.txt:12364
 V5.17.txt:12365
 V5.17.txt:12366
 V5.17.txt:12367
 V5.17.txt:12368
 V5.17.txt:12369
 V5.17.txt:12370
 V5.17.txt:12371
 V5.17.txt:12372
 V5.17.txt:12373
 V5.17.txt:12374
 V5.17.txt:12375
 V5.17.txt:12376
 V5.17.txt:12377
 V5.17.txt:12378
 V5.17.txt:12379
 V5.17.txt:12380
 V5.17.txt:12381
 V5.17.txt:12382
 V5.17.txt:12383
 V5.17.txt:12384
 V5.17.txt:12385
 V5.17.txt:12386
 V5.17.txt:12387
 V5.17.txt:12388
 V5.17.txt:12389
 V5.17.txt:12390
 V5.17.txt:12391
 V5.17.txt:12392
 V5.17.txt:12393
 V5.17.txt:12394
 V5.17.txt:12395
 V5.17.txt:12396
 V5.17.txt:12397
 V5.17.txt:12398
 V5.17.txt:12399
 V5.17.txt:12400
 V5.17.txt:12401
 V5.17.txt:12402
 V5.17.txt:12403
 V5.17.txt:12404
 V5.17.txt:12405
 V5.17.txt:12406
 V5.17.txt:12407
 V5.17.txt:12408
 V5.17.txt:12409
 V5.17.txt:12410
 V5.17.txt:12411
 V5.17.txt:12412
 V5.17.txt:12413
 V5.17.txt:12414
 V5.17.txt:12415
 V5.17.txt:12416
 V5.17.txt:12417
 V5.17.txt:12418
 V5.17.txt:12419
 V5.17.txt:12420
 V5.17.txt:12421
 V5.17.txt:12422
 V5.17.txt:12423
 V5.17.txt:12424
 V5.17.txt:12425
 V5.17.txt:12426
 V5.17.txt:12427
 V5.17.txt:12428
 V5.17.txt:12429
 V5.17.txt:12430
 V5.17.txt:12431
 V5.17.txt:12432
 V5.17.txt:12433
 V5.17.txt:12434
 V5.17.txt:12435
 V5.17.txt:12436
 V5.17.txt:12437
 V5.17.txt:12438
 V5.17.txt:12439
 V5.17.txt:12440
 V5.17.txt:12441
 V5.17.txt:12442
 V5.17.txt:12443
 V5.17.txt:12444
 V5.17.txt:12445
 V5.17.txt:12446
 V5.17.txt:12447
 V5.17.txt:12448
 V5.17.txt:12449
 V5.17.txt:12450
 V5.17.txt:12451
 V5.17.txt:12452
 V5.17.txt:12453
 V5.17.txt:12454
 V5.17.txt:12455
 V5.17.txt:12456
 V5.17.txt:12457
 V5.17.txt:12458
 V5.17.txt:12459
 V5.17.txt:12460
 V5.17.txt:12461
 V5.17.txt:12462
 V5.17.txt:12463
 V5.17.txt:12464
 V5.17.txt:12465
 V5.17.txt:12466
 V5.17.txt:12467
 V5.17.txt:12468
 V5.17.txt:12469
 V5.17.txt:12470
 V5.17.txt:12471
 V5.17.txt:12472
 V5.17.txt:12473
 V5.17.txt:12474
 V5.17.txt:12475
 V5.17.txt:12476
 V5.17.txt:12477
 V5.17.txt:12478
 V5.17.txt:12479
 V5.17.txt:12480
 V5.17.txt:12481
 V5.17.txt:12482
 V5.17.txt:12483
 V5.17.txt:12484
 V5.17.txt:12485
 V5.17.txt:12486
 V5.17.txt:12487
 V5.17.txt:12488
 V5.17.txt:12489
 V5.17.txt:12490
 V5.17.txt:12491
 V5.17.txt:12492
 V5.17.txt:12493
 V5.17.txt:12494
 V5.17.txt:12495
 V5.17.txt:12496
 V5.17.txt:12497
 V5.17.txt:12498
 V5.17.txt:12499
 V5.17.txt:12500
 V5.17.txt:12501
 V5.17.txt:12502
 V5.17.txt:12503
 V5.17.txt:12504
 V5.17.txt:12505
 V5.17.txt:12506
 V5.17.txt:12507
 V5.17.txt:12508
 V5.17.txt:12509
 V5.17.txt:12510
 V5.17.txt:12511
 V5.17.txt:12512
 V5.17.txt:12513
 V5.17.txt:12514
 V5.17.txt:12515
 V5.17.txt:12516
 V5.17.txt:12517
 V5.17.txt:12518
 V5.17.txt:12519
 V5.17.txt:12520
 V5.17.txt:12521
 V5.17.txt:12522
 V5.17.txt:12523
 V5.17.txt:12524
 V5.17.txt:12525
 V5.17.txt:12526
 V5.17.txt:12527
 V5.17.txt:12528
 V5.17.txt:12529
 V5.17.txt:12530
 V5.17.txt:12531
 V5.17.txt:12532
 V5.17.txt:12533
 V5.17.txt:12534
 V5.17.txt:12535
 V5.17.txt:12536
 V5.17.txt:12537
 V5.17.txt:12538
 V5.17.txt:12539
 V5.17.txt:12540
 V5.17.txt:12541
 V5.17.txt:12542
 V5.17.txt:12543
 V5.17.txt:12544
 V5.17.txt:12545
 V5.17.txt:12546
 V5.17.txt:12547
 V5.17.txt:12548
 V5.17.txt:12549
 V5.17.txt:12550
 V5.17.txt:12551
 V5.17.txt:12552
 V5.17.txt:12553
 V5.17.txt:12554
 V5.17.txt:12555
 V5.17.txt:12556
 V5.17.txt:12557
 V5.17.txt:12558
 V5.17.txt:12559
 V5.17.txt:12560
 V5.17.txt:12561
 V5.17.txt:12562
 V5.17.txt:12563
 V5.17.txt:12564
 V5.17.txt:12565
 V5.17.txt:12566
 V5.17.txt:12567
 V5.17.txt:12568
 V5.17.txt:12569
 V5.17.txt:12570
 V5.17.txt:12571
 V5.17.txt:12572
 V5.17.txt:12573
 V5.17.txt:12574
 V5.17.txt:12575
 V5.17.txt:12576
 V5.17.txt:12577
 V5.17.txt:12578
 V5.17.txt:12579
 V5.17.txt:12580
 V5.17.txt:12581
 V5.17.txt:12582
 V5.17.txt:12583
 V5.17.txt:12584
 V5.17.txt:12585
 V5.17.txt:12586
 V5.17.txt:12587
 V5.17.txt:12588
 V5.17.txt:12589
 V5.17.txt:12590
 V5.17.txt:12591
 V5.17.txt:12592
 V5.17.txt:12593
 V5.17.txt:12594
 V5.17.txt:12595
 V5.17.txt:12596
 V5.17.txt:12597
 V5.17.txt:12598
 V5.17.txt:12599
 V5.17.txt:12600
 V5.17.txt:12601
 V5.17.txt:12602
 V5.17.txt:12603
 V5.17.txt:12604
 V5.17.txt:12605
 V5.17.txt:12606
 V5.17.txt:12607
 V5.17.txt:12608
 V5.17.txt:12609
 V5.17.txt:12610
 V5.17.txt:12611
 V5.17.txt:12612
 V5.17.txt:12613
 V5.17.txt:12614
 V5.17.txt:12615
 V5.17.txt:12616
 V5.17.txt:12617
 V5.17.txt:12618
 V5.17.txt:12619
 V5.17.txt:12620
 V5.17.txt:12621
 V5.17.txt:12622
 V5.17.txt:12623
 V5.17.txt:12624
 V5.17.txt:12625
 V5.17.txt:12626
 V5.17.txt:12627
 V5.17.txt:12628
 V5.17.txt:12629
 V5.17.txt:12630
 V5.17.txt:12631
 V5.17.txt:12632
 V5.17.txt:12633
 V5.17.txt:12634
 V5.17.txt:12635
 V5.17.txt:12636
 V5.17.txt:12637
 V5.17.txt:12638
 V5.17.txt:12639
 V5.17.txt:12640
 V5.17.txt:12641
 V5.17.txt:12642
 V5.17.txt:12643
 V5.17.txt:12644
 V5.17.txt:12645
 V5.17.txt:12646
 V5.17.txt:12647
 V5.17.txt:12648
 V5.17.txt:12649
 V5.17.txt:12650
 V5.17.txt:12651
 V5.17.txt:12652
 V5.17.txt:12653
 V5.17.txt:12654
 V5.17.txt:12655
 V5.17.txt:12656
 V5.17.txt:12657
 V5.17.txt:12658
 V5.17.txt:12659
 V5.17.txt:12660
 V5.17.txt:12661
 V5.17.txt:12662
 V5.17.txt:12663
 V5.17.txt:12664
 V5.17.txt:12665
 V5.17.txt:12666
 V5.17.txt:12667
 V5.17.txt:12668
 V5.17.txt:12669
 V5.17.txt:12670
 V5.17.txt:12671
 V5.17.txt:12672
 V5.17.txt:12673
 V5.17.txt:12674
 V5.17.txt:12675
 V5.17.txt:12676
 V5.17.txt:12677
 V5.17.txt:12678
 V5.17.txt:12679
 V5.17.txt:12680
 V5.17.txt:12681
 V5.17.txt:12682
 V5.17.txt:12683
 V5.17.txt:12684
 V5.17.txt:12685
 V5.17.txt:12686
 V5.17.txt:12687
 V5.17.txt:12688
 V5.17.txt:12689
 V5.17.txt:12690
 V5.17.txt:12691
 V5.17.txt:12692
 V5.17.txt:12693
 V5.17.txt:12694
 V5.17.txt:12695
 V5.17.txt:12696
 V5.17.txt:12697
 V5.17.txt:12698
 V5.17.txt:12699
 V5.17.txt:12700
 V5.17.txt:12701
 V5.17.txt:12702
 V5.17.txt:12703
 V5.17.txt:12704
 V5.17.txt:12705
 V5.17.txt:12706
 V5.17.txt:12707
 V5.17.txt:12708
 V5.17.txt:12709
 V5.17.txt:12710
 V5.17.txt:12711
 V5.17.txt:12712
 V5.17.txt:12713
 V5.17.txt:12714
 V5.17.txt:12715
 V5.17.txt:12716
 V5.17.txt:12717
 V5.17.txt:12718
 V5.17.txt:12719
 V5.17.txt:12720
 V5.17.txt:12721
 V5.17.txt:12722
 V5.17.txt:12723
 V5.17.txt:12724
 V5.17.txt:12725
 V5.17.txt:12726
 V5.17.txt:12727
 V5.17.txt:12728
 V5.17.txt:12729
 V5.17.txt:12730
 V5.17.txt:12731
 V5.17.txt:12732
 V5.17.txt:12733
 V5.17.txt:12734
 V5.17.txt:12735
 V5.17.txt:12736
 V5.17.txt:12737
 V5.17.txt:12738
 V5.17.txt:12739
 V5.17.txt:12740
 V5.17.txt:12741
 V5.17.txt:12742
 V5.17.txt:12743
 V5.17.txt:12744
 V5.17.txt:12745
 V5.17.txt:12746
 V5.17.txt:12747
 V5.17.txt:12748
 V5.17.txt:12749
 V5.17.txt:12750
 V5.17.txt:12751
 V5.17.txt:12752
 V5.17.txt:12753
 V5.17.txt:12754
 V5.17.txt:12755
 V5.17.txt:12756
 V5.17.txt:12757
 V5.17.txt:12758
 V5.17.txt:12759
 V5.17.txt:12760
 V5.17.txt:12761
 V5.17.txt:12762
 V5.17.txt:12763
 V5.17.txt:12764
 V5.17.txt:12765
 V5.17.txt:12766
 V5.17.txt:12767
 V5.17.txt:12768
 V5.17.txt:12769
 V5.17.txt:12770
 V5.17.txt:12771
 V5.17.txt:12772
 V5.17.txt:12773
 V5.17.txt:12774
 V5.17.txt:12775
 V5.17.txt:12776
 V5.17.txt:12777
 V5.17.txt:12778
 V5.17.txt:12779
 V5.17.txt:12780
 V5.17.txt:12781
 V5.17.txt:12782
 V5.17.txt:12783
 V5.17.txt:12784
 V5.17.txt:12785
 V5.17.txt:12786
 V5.17.txt:12787
 V5.17.txt:12788
 V5.17.txt:12789
 V5.17.txt:12790
 V5.17.txt:12791
 V5.17.txt:12792
 V5.17.txt:12793
 V5.17.txt:12794
 V5.17.txt:12795
 V5.17.txt:12796
 V5.17.txt:12797
 V5.17.txt:12798
 V5.17.txt:12799
 V5.17.txt:12800
 V5.17.txt:12801
 V5.17.txt:12802
 V5.17.txt:12803
 V5.17.txt:12804
 V5.17.txt:12805
 V5.17.txt:12806
 V5.17.txt:12807
 V5.17.txt:12808
 V5.17.txt:12809
 V5.17.txt:12810
 V5.17.txt:12811
 V5.17.txt:12812
 V5.17.txt:12813
 V5.17.txt:12814
 V5.17.txt:12815
 V5.17.txt:12816
 V5.17.txt:12817
 V5.17.txt:12818
 V5.17.txt:12819
 V5.17.txt:12820
 V5.17.txt:12821
 V5.17.txt:12822
 V5.17.txt:12823
 V5.17.txt:12824
 V5.17.txt:12825
 V5.17.txt:12826
 V5.17.txt:12827
 V5.17.txt:12828
 V5.17.txt:12829
 V5.17.txt:12830
 V5.17.txt:12831
 V5.17.txt:12832
 V5.17.txt:12833
 V5.17.txt:12834
 V5.17.txt:12835
 V5.17.txt:12836
 V5.17.txt:12837
 V5.17.txt:12838
 V5.17.txt:12839
 V5.17.txt:12840
 V5.17.txt:12841
 V5.17.txt:12842
 V5.17.txt:12843
 V5.17.txt:12844
 V5.17.txt:12845
 V5.17.txt:12846
 V5.17.txt:12847
 V5.17.txt:12848
 V5.17.txt:12849
 V5.17.txt:12850
 V5.17.txt:12851
 V5.17.txt:12852
 V5.17.txt:12853
 V5.17.txt:12854
 V5.17.txt:12855
 V5.17.txt:12856
 V5.17.txt:12857
 V5.17.txt:12858
 V5.17.txt:12859
 V5.17.txt:12860
 V5.17.txt:12861
 V5.17.txt:12862
 V5.17.txt:12863
 V5.17.txt:12864
 V5.17.txt:12865
 V5.17.txt:12866
 V5.17.txt:12867
 V5.17.txt:12868
 V5.17.txt:12869
 V5.17.txt:12870
 V5.17.txt:12871
 V5.17.txt:12872
 V5.17.txt:12873
 V5.17.txt:12874
 V5.17.txt:12875
 V5.17.txt:12876
 V5.17.txt:12877
 V5.17.txt:12878
 V5.17.txt:12879
 V5.17.txt:12880
 V5.17.txt:12881
 V5.17.txt:12882
 V5.17.txt:12883
 V5.17.txt:12884
 V5.17.txt:12885
 V5.17.txt:12886
 V5.17.txt:12887
 V5.17.txt:12888
 V5.17.txt:12889
 V5.17.txt:12890
 V5.17.txt:12891
 V5.17.txt:12892
 V5.17.txt:12893
 V5.17.txt:12894
 V5.17.txt:12895
 V5.17.txt:12896
 V5.17.txt:12897
 V5.17.txt:12898
 V5.17.txt:12899
 V5.17.txt:12900
 V5.17.txt:12901
 V5.17.txt:12902
 V5.17.txt:12903
 V5.17.txt:12904
 V5.17.txt:12905
 V5.17.txt:12906
 V5.17.txt:12907
 V5.17.txt:12908
 V5.17.txt:12909
 V5.17.txt:12910
 V5.17.txt:12911
 V5.17.txt:12912
 V5.17.txt:12913
 V5.17.txt:12914
 V5.17.txt:12915
 V5.17.txt:12916
 V5.17.txt:12917
 V5.17.txt:12918
 V5.17.txt:12919
 V5.17.txt:12920
 V5.17.txt:12921
 V5.17.txt:12922
 V5.17.txt:12923
 V5.17.txt:12924
 V5.17.txt:12925
 V5.17.txt:12926
 V5.17.txt:12927
 V5.17.txt:12928
 V5.17.txt:12929
 V5.17.txt:12930
 V5.17.txt:12931
 V5.17.txt:12932
 V5.17.txt:12933
 V5.17.txt:12934
 V5.17.txt:12935
 V5.17.txt:12936
 V5.17.txt:12937
 V5.17.txt:12938
 V5.17.txt:12939
 V5.17.txt:12940
 V5.17.txt:12941
 V5.17.txt:12942
 V5.17.txt:12943
 V5.17.txt:12944
 V5.17.txt:12945
 V5.17.txt:12946
 V5.17.txt:12947
 V5.17.txt:12948
 V5.17.txt:12949
 V5.17.txt:12950
 V5.17.txt:12951
 V5.17.txt:12952
 V5.17.txt:12953
 V5.17.txt:12954
 V5.17.txt:12955
 V5.17.txt:12956
 V5.17.txt:12957
 V5.17.txt:12958
 V5.17.txt:12959
 V5.17.txt:12960
 V5.17.txt:12961
 V5.17.txt:12962
 V5.17.txt:12963
 V5.17.txt:12964
 V5.17.txt:12965
 V5.17.txt:12966
 V5.17.txt:12967
 V5.17.txt:12968
 V5.17.txt:12969
 V5.17.txt:12970
 V5.17.txt:12971
 V5.17.txt:12972
 V5.17.txt:12973
 V5.17.txt:12974
 V5.17.txt:12975
 V5.17.txt:12976
 V5.17.txt:12977
 V5.17.txt:12978
 V5.17.txt:12979
 V5.17.txt:12980
 V5.17.txt:12981
 V5.17.txt:12982
 V5.17.txt:12983
 V5.17.txt:12984
 V5.17.txt:12985
 V5.17.txt:12986
 V5.17.txt:12987
 V5.17.txt:12988
 V5.17.txt:12989
 V5.17.txt:12990
 V5.17.txt:12991
 V5.17.txt:12992
 V5.17.txt:12993
 V5.17.txt:12994
 V5.17.txt:12995
 V5.17.txt:12996
 V5.17.txt:12997
 V5.17.txt:12998
 V5.17.txt:12999
 V5.17.txt:13000
 V5.17.txt:13001
 V5.17.txt:13002
 V5.17.txt:13003
 V5.17.txt:13004
 V5.17.txt:13005
 V5.17.txt:13006
 V5.17.txt:13007
 V5.17.txt:13008
 V5.17.txt:13009
 V5.17.txt:13010
 V5.17.txt:13011
 V5.17.txt:13012
 V5.17.txt:13013
 V5.17.txt:13014
 V5.17.txt:13015
 V5.17.txt:13016
 V5.17.txt:13017
 V5.17.txt:13018
 V5.17.txt:13019
 V5.17.txt:13020
 V5.17.txt:13021
 V5.17.txt:13022
 V5.17.txt:13023
 V5.17.txt:13024
 V5.17.txt:13025
 V5.17.txt:13026
 V5.17.txt:13027
 V5.17.txt:13028
 V5.17.txt:13029
 V5.17.txt:13030
 V5.17.txt:13031
 V5.17.txt:13032
 V5.17.txt:13033
 V5.17.txt:13034
 V5.17.txt:13035
 V5.17.txt:13036
 V5.17.txt:13037
 V5.17.txt:13038
 V5.17.txt:13039
 V5.17.txt:13040
 V5.17.txt:13041
 V5.17.txt:13042
 V5.17.txt:13043
 V5.17.txt:13044
 V5.17.txt:13045
 V5.17.txt:13046
 V5.17.txt:13047
 V5.17.txt:13048
 V5.17.txt:13049
 V5.17.txt:13050
 V5.17.txt:13051
 V5.17.txt:13052
 V5.17.txt:13053
 V5.17.txt:13054
 V5.17.txt:13055
 V5.17.txt:13056
 V5.17.txt:13057
 V5.17.txt:13058
 V5.17.txt:13059
 V5.17.txt:13060
 V5.17.txt:13061
 V5.17.txt:13062
 V5.17.txt:13063
 V5.17.txt:13064
 V5.17.txt:13065
 V5.17.txt:13066
 V5.17.txt:13067
 V5.17.txt:13068
 V5.17.txt:13069
 V5.17.txt:13070
 V5.17.txt:13071
 V5.17.txt:13072
 V5.17.txt:13073
 V5.17.txt:13074
 V5.17.txt:13075
 V5.17.txt:13076
 V5.17.txt:13077
 V5.17.txt:13078
 V5.17.txt:13079
 V5.17.txt:13080
 V5.17.txt:13081
 V5.17.txt:13082
 V5.17.txt:13083
 V5.17.txt:13084
 V5.17.txt:13085
 V5.17.txt:13086
 V5.17.txt:13087
 V5.17.txt:13088
 V5.17.txt:13089
 V5.17.txt:13090
 V5.17.txt:13091
 V5.17.txt:13092
 V5.17.txt:13093
 V5.17.txt:13094
 V5.17.txt:13095
 V5.17.txt:13096
 V5.17.txt:13097
 V5.17.txt:13098
 V5.17.txt:13099
 V5.17.txt:13100
 V5.17.txt:13101
 V5.17.txt:13102
 V5.17.txt:13103
 V5.17.txt:13104
 V5.17.txt:13105
 V5.17.txt:13106
 V5.17.txt:13107
 V5.17.txt:13108
 V5.17.txt:13109
 V5.17.txt:13110
 V5.17.txt:13111
 V5.17.txt:13112
 V5.17.txt:13113
 V5.17.txt:13114
 V5.17.txt:13115
 V5.17.txt:13116
 V5.17.txt:13117
 V5.17.txt:13118
 V5.17.txt:13119
 V5.17.txt:13120
 V5.17.txt:13121
 V5.17.txt:13122
 V5.17.txt:13123
 V5.17.txt:13124
 V5.17.txt:13125
 V5.17.txt:13126
 V5.17.txt:13127
 V5.17.txt:13128
 V5.17.txt:13129
 V5.17.txt:13130
 V5.17.txt:13131
 V5.17.txt:13132
 V5.17.txt:13133
 V5.17.txt:13134
 V5.17.txt:13135
 V5.17.txt:13136
 V5.17.txt:13137
 V5.17.txt:13138
 V5.17.txt:13139
 V5.17.txt:13140
 V5.17.txt:13141
 V5.17.txt:13142
 V5.17.txt:13143
 V5.17.txt:13144
 V5.17.txt:13145
 V5.17.txt:13146
 V5.17.txt:13147
 V5.17.txt:13148
 V5.17.txt:13149
 V5.17.txt:13150
 V5.17.txt:13151
 V5.17.txt:13152
 V5.17.txt:13153
 V5.17.txt:13154
 V5.17.txt:13155
 V5.17.txt:13156
 V5.17.txt:13157
 V5.17.txt:13158
 V5.17.txt:13159
 V5.17.txt:13160
 V5.17.txt:13161
 V5.17.txt:13162
 V5.17.txt:13163
 V5.17.txt:13164
 V5.17.txt:13165
 V5.17.txt:13166
 V5.17.txt:13167
 V5.17.txt:13168
 V5.17.txt:13169
 V5.17.txt:13170
 V5.17.txt:13171
 V5.17.txt:13172
 V5.17.txt:13173
 V5.17.txt:13174
 V5.17.txt:13175
 V5.17.txt:13176
 V5.17.txt:13177
 V5.17.txt:13178
 V5.17.txt:13179
 V5.17.txt:13180
 V5.17.txt:13181
 V5.17.txt:13182
 V5.17.txt:13183
 V5.17.txt:13184
 V5.17.txt:13185
 V5.17.txt:13186
 V5.17.txt:13187
 V5.17.txt:13188
 V5.17.txt:13189
 V5.17.txt:13190
 V5.17.txt:13191
 V5.17.txt:13192
 V5.17.txt:13193
 V5.17.txt:13194
 V5.17.txt:13195
 V5.17.txt:13196
 V5.17.txt:13197
 V5.17.txt:13198
 V5.17.txt:13199
 V5.17.txt:13200
 V5.17.txt:13201
 V5.17.txt:13202
 V5.17.txt:13203
 V5.17.txt:13204
 V5.17.txt:13205
 V5.17.txt:13206
 V5.17.txt:13207
 V5.17.txt:13208
 V5.17.txt:13209
 V5.17.txt:13210
 V5.17.txt:13211
 V5.17.txt:13212
 V5.17.txt:13213
 V5.17.txt:13214
 V5.17.txt:13215
 V5.17.txt:13216
 V5.17.txt:13217
 V5.17.txt:13218
 V5.17.txt:13219
 V5.17.txt:13220
 V5.17.txt:13221
 V5.17.txt:13222
 V5.17.txt:13223
 V5.17.txt:13224
 V5.17.txt:13225
 V5.17.txt:13226
 V5.17.txt:13227
 V5.17.txt:13228
 V5.17.txt:13229
 V5.17.txt:13230
 V5.17.txt:13231
 V5.17.txt:13232
 V5.17.txt:13233
 V5.17.txt:13234
 V5.17.txt:13235
 V5.17.txt:13236
 V5.17.txt:13237
 V5.17.txt:13238
 V5.17.txt:13239
 V5.17.txt:13240
 V5.17.txt:13241
 V5.17.txt:13242
 V5.17.txt:13243
 V5.17.txt:13244
 V5.17.txt:13245
 V5.17.txt:13246
 V5.17.txt:13247
 V5.17.txt:13248
 V5.17.txt:13249
 V5.17.txt:13250
 V5.17.txt:13251
 V5.17.txt:13252
 V5.17.txt:13253
 V5.17.txt:13254
 V5.17.txt:13255
 V5.17.txt:13256
 V5.17.txt:13257
 V5.17.txt:13258
 V5.17.txt:13259
 V5.17.txt:13260
 V5.17.txt:13261
 V5.17.txt:13262
 V5.17.txt:13263
 V5.17.txt:13264
 V5.17.txt:13265
 V5.17.txt:13266
 V5.17.txt:13267
 V5.17.txt:13268
 V5.17.txt:13269
 V5.17.txt:13270
 V5.17.txt:13271
 V5.17.txt:13272
 V5.17.txt:13273
 V5.17.txt:13274
 V5.17.txt:13275
 V5.17.txt:13276
 V5.17.txt:13277
 V5.17.txt:13278
 V5.17.txt:13279
 V5.17.txt:13280
 V5.17.txt:13281
 V5.17.txt:13282
 V5.17.txt:13283
 V5.17.txt:13284
 V5.17.txt:13285
 V5.17.txt:13286
 V5.17.txt:13287
 V5.17.txt:13288
 V5.17.txt:13289
 V5.17.txt:13290
 V5.17.txt:13291
 V5.17.txt:13292
 V5.17.txt:13293
 V5.17.txt:13294
 V5.17.txt:13295
 V5.17.txt:13296
 V5.17.txt:13297
 V5.17.txt:13298
 V5.17.txt:13299
 V5.17.txt:13300
 V5.17.txt:13301
 V5.17.txt:13302
 V5.17.txt:13303
 V5.17.txt:13304
 V5.17.txt:13305
 V5.17.txt:13306
 V5.17.txt:13307
 V5.17.txt:13308
 V5.17.txt:13309
 V5.17.txt:13310
 V5.17.txt:13311
 V5.17.txt:13312
 V5.17.txt:13313
 V5.17.txt:13314
 V5.17.txt:13315
 V5.17.txt:13316
 V5.17.txt:13317
 V5.17.txt:13318
 V5.17.txt:13319
 V5.17.txt:13320
 V5.17.txt:13321
 V5.17.txt:13322
 V5.17.txt:13323
 V5.17.txt:13324
 V5.17.txt:13325
 V5.17.txt:13326
 V5.17.txt:13327
 V5.17.txt:13328
 V5.17.txt:13329
 V5.17.txt:13330
 V5.17.txt:13331
 V5.17.txt:13332
 V5.17.txt:13333
 V5.17.txt:13334
 V5.17.txt:13335
 V5.17.txt:13336
 V5.17.txt:13337
 V5.17.txt:13338
 V5.17.txt:13339
 V5.17.txt:13340
 V5.17.txt:13341
 V5.17.txt:13342
 V5.17.txt:13343
 V5.17.txt:13344
 V5.17.txt:13345
 V5.17.txt:13346
 V5.17.txt:13347
 V5.17.txt:13348
 V5.17.txt:13349
 V5.17.txt:13350
 V5.17.txt:13351
 V5.17.txt:13352
 V5.17.txt:13353
 V5.17.txt:13354
 V5.17.txt:13355
 V5.17.txt:13356
 V5.17.txt:13357
 V5.17.txt:13358
 V5.17.txt:13359
 V5.17.txt:13360
 V5.17.txt:13361
 V5.17.txt:13362
 V5.17.txt:13363
 V5.17.txt:13364
 V5.17.txt:13365
 V5.17.txt:13366
 V5.17.txt:13367
 V5.17.txt:13368
 V5.17.txt:13369
 V5.17.txt:13370
 V5.17.txt:13371
 V5.17.txt:13372
 V5.17.txt:13373
 V5.17.txt:13374
 V5.17.txt:13375
 V5.17.txt:13376
 V5.17.txt:13377
 V5.17.txt:13378
 V5.17.txt:13379
 V5.17.txt:13380
 V5.17.txt:13381
 V5.17.txt:13382
 V5.17.txt:13383
 V5.17.txt:13384
 V5.17.txt:13385
 V5.17.txt:13386
 V5.17.txt:13387
 V5.17.txt:13388
 V5.17.txt:13389
 V5.17.txt:13390
 V5.17.txt:13391
 V5.17.txt:13392
 V5.17.txt:13393
 V5.17.txt:13394
 V5.17.txt:13395
 V5.17.txt:13396
 V5.17.txt:13397
 V5.17.txt:13398
 V5.17.txt:13399
 V5.17.txt:13400
 V5.17.txt:13401
 V5.17.txt:13402
 V5.17.txt:13403
 V5.17.txt:13404
 V5.17.txt:13405
 V5.17.txt:13406
 V5.17.txt:13407
 V5.17.txt:13408
 V5.17.txt:13409
 V5.17.txt:13410
 V5.17.txt:13411
 V5.17.txt:13412
 V5.17.txt:13413
 V5.17.txt:13414
 V5.17.txt:13415
 V5.17.txt:13416
 V5.17.txt:13417
 V5.17.txt:13418
 V5.17.txt:13419
 V5.17.txt:13420
 V5.17.txt:13421
 V5.17.txt:13422
 V5.17.txt:13423
 V5.17.txt:13424
 V5.17.txt:13425
 V5.17.txt:13426
 V5.17.txt:13427
 V5.17.txt:13428
 V5.17.txt:13429
 V5.17.txt:13430
 V5.17.txt:13431
 V5.17.txt:13432
 V5.17.txt:13433
 V5.17.txt:13434
 V5.17.txt:13435
 V5.17.txt:13436
 V5.17.txt:13437
 V5.17.txt:13438
 V5.17.txt:13439
 V5.17.txt:13440
 V5.17.txt:13441
 V5.17.txt:13442
 V5.17.txt:13443
 V5.17.txt:13444
 V5.17.txt:13445
 V5.17.txt:13446
 V5.17.txt:13447
 V5.17.txt:13448
 V5.17.txt:13449
 V5.17.txt:13450
 V5.17.txt:13451
 V5.17.txt:13452
 V5.17.txt:13453
 V5.17.txt:13454
 V5.17.txt:13455
 V5.17.txt:13456
 V5.17.txt:13457
 V5.17.txt:13458
 V5.17.txt:13459
 V5.17.txt:13460
 V5.17.txt:13461
 V5.17.txt:13462
 V5.17.txt:13463
 V5.17.txt:13464
 V5.17.txt:13465
 V5.17.txt:13466
 V5.17.txt:13467
 V5.17.txt:13468
 V5.17.txt:13469
 V5.17.txt:13470
 V5.17.txt:13471
 V5.17.txt:13472
 V5.17.txt:13473
 V5.17.txt:13474
 V5.17.txt:13475
 V5.17.txt:13476
 V5.17.txt:13477
 V5.17.txt:13478
 V5.17.txt:13479
 V5.17.txt:13480
 V5.17.txt:13481
 V5.17.txt:13482
 V5.17.txt:13483
 V5.17.txt:13484
 V5.17.txt:13485
 V5.17.txt:13486
 V5.17.txt:13487
 V5.17.txt:13488
 V5.17.txt:13489
 V5.17.txt:13490
 V5.17.txt:13491
 V5.17.txt:13492
 V5.17.txt:13493
 V5.17.txt:13494
 V5.17.txt:13495
 V5.17.txt:13496
 V5.17.txt:13497
 V5.17.txt:13498
 V5.17.txt:13499
 V5.17.txt:13500
 V5.17.txt:13501
 V5.17.txt:13502
 V5.17.txt:13503
 V5.17.txt:13504
 V5.17.txt:13505
 V5.17.txt:13506
 V5.17.txt:13507
 V5.17.txt:13508
 V5.17.txt:13509
 V5.17.txt:13510
 V5.17.txt:13511
 V5.17.txt:13512
 V5.17.txt:13513
 V5.17.txt:13514
 V5.17.txt:13515
 V5.17.txt:13516
 V5.17.txt:13517
 V5.17.txt:13518
 V5.17.txt:13519
 V5.17.txt:13520
 V5.17.txt:13521
 V5.17.txt:13522
 V5.17.txt:13523
 V5.17.txt:13524
 V5.17.txt:13525
 V5.17.txt:13526
 V5.17.txt:13527
 V5.17.txt:13528
 V5.17.txt:13529
 V5.17.txt:13530
 V5.17.txt:13531
 V5.17.txt:13532
 V5.17.txt:13533
 V5.17.txt:13534
 V5.17.txt:13535
 V5.17.txt:13536
 V5.17.txt:13537
 V5.17.txt:13538
 V5.17.txt:13539
 V5.17.txt:13540
 V5.17.txt:13541
 V5.17.txt:13542
 V5.17.txt:13543
 V5.17.txt:13544
 V5.17.txt:13545
 V5.17.txt:13546
 V5.17.txt:13547
 V5.17.txt:13548
 V5.17.txt:13549
 V5.17.txt:13550
 V5.17.txt:13551
 V5.17.txt:13552
 V5.17.txt:13553
 V5.17.txt:13554
 V5.17.txt:13555
 V5.17.txt:13556
 V5.17.txt:13557
 V5.17.txt:13558
 V5.17.txt:13559
 V5.17.txt:13560
 V5.17.txt:13561
 V5.17.txt:13562
 V5.17.txt:13563
 V5.17.txt:13564
 V5.17.txt:13565
 V5.17.txt:13566
 V5.17.txt:13567
 V5.17.txt:13568
 V5.17.txt:13569
 V5.17.txt:13570
 V5.17.txt:13571
 V5.17.txt:13572
 V5.17.txt:13573
 V5.17.txt:13574
 V5.17.txt:13575
 V5.17.txt:13576
 V5.17.txt:13577
 V5.17.txt:13578
 V5.17.txt:13579
 V5.17.txt:13580
 V5.17.txt:13581
 V5.17.txt:13582
 V5.17.txt:13583
 V5.17.txt:13584
 V5.17.txt:13585
 V5.17.txt:13586
 V5.17.txt:13587
 V5.17.txt:13588
 V5.17.txt:13589
 V5.17.txt:13590
 V5.17.txt:13591
 V5.17.txt:13592
 V5.17.txt:13593
 V5.17.txt:13594
 V5.17.txt:13595
 V5.17.txt:13596
 V5.17.txt:13597
 V5.17.txt:13598
 V5.17.txt:13599
 V5.17.txt:13600
 V5.17.txt:13601
 V5.17.txt:13602
 V5.17.txt:13603
 V5.17.txt:13604
 V5.17.txt:13605
 V5.17.txt:13606
 V5.17.txt:13607
 V5.17.txt:13608
 V5.17.txt:13609
 V5.17.txt:13610
 V5.17.txt:13611
 V5.17.txt:13612
 V5.17.txt:13613
 V5.17.txt:13614
 V5.17.txt:13615
 V5.17.txt:13616
 V5.17.txt:13617
 V5.17.txt:13618
 V5.17.txt:13619
 V5.17.txt:13620
 V5.17.txt:13621
 V5.17.txt:13622
 V5.17.txt:13623
 V5.17.txt:13624
 V5.17.txt:13625
 V5.17.txt:13626
 V5.17.txt:13627
 V5.17.txt:13628
 V5.17.txt:13629
 V5.17.txt:13630
 V5.17.txt:13631
 V5.17.txt:13632
 V5.17.txt:13633
 V5.17.txt:13634
 V5.17.txt:13635
 V5.17.txt:13636
 V5.17.txt:13637
 V5.17.txt:13638
 V5.17.txt:13639
 V5.17.txt:13640
 V5.17.txt:13641
 V5.17.txt:13642
 V5.17.txt:13643
 V5.17.txt:13644
 V5.17.txt:13645
 V5.17.txt:13646
 V5.17.txt:13647
 V5.17.txt:13648
 V5.17.txt:13649
 V5.17.txt:13650
 V5.17.txt:13651
 V5.17.txt:13652
 V5.17.txt:13653
 V5.17.txt:13654
 V5.17.txt:13655
 V5.17.txt:13656
 V5.17.txt:13657
 V5.17.txt:13658
 V5.17.txt:13659
 V5.17.txt:13660
 V5.17.txt:13661
 V5.17.txt:13662
 V5.17.txt:13663
 V5.17.txt:13664
 V5.17.txt:13665
 V5.17.txt:13666
 V5.17.txt:13667
 V5.17.txt:13668
 V5.17.txt:13669
 V5.17.txt:13670
 V5.17.txt:13671
 V5.17.txt:13672
 V5.17.txt:13673
 V5.17.txt:13674
 V5.17.txt:13675
 V5.17.txt:13676
 V5.17.txt:13677
 V5.17.txt:13678
 V5.17.txt:13679
 V5.17.txt:13680
 V5.17.txt:13681
 V5.17.txt:13682
 V5.17.txt:13683
 V5.17.txt:13684
 V5.17.txt:13685
 V5.17.txt:13686
 V5.17.txt:13687
 V5.17.txt:13688
 V5.17.txt:13689
 V5.17.txt:13690
 V5.17.txt:13691
 V5.17.txt:13692
 V5.17.txt:13693
 V5.17.txt:13694
 V5.17.txt:13695
 V5.17.txt:13696
 V5.17.txt:13697
 V5.17.txt:13698
 V5.17.txt:13699
 V5.17.txt:13700
 V5.17.txt:13701
 V5.17.txt:13702
 V5.17.txt:13703
 V5.17.txt:13704
 V5.17.txt:13705
 V5.17.txt:13706
 V5.17.txt:13707
 V5.17.txt:13708
 V5.17.txt:13709
 V5.17.txt:13710
 V5.17.txt:13711
 V5.17.txt:13712
 V5.17.txt:13713
 V5.17.txt:13714
 V5.17.txt:13715
 V5.17.txt:13716
 V5.17.txt:13717
 V5.17.txt:13718
 V5.17.txt:13719
 V5.17.txt:13720
 V5.17.txt:13721
 V5.17.txt:13722
 V5.17.txt:13723
 V5.17.txt:13724
 V5.17.txt:13725
 V5.17.txt:13726
 V5.17.txt:13727
 V5.17.txt:13728
 V5.17.txt:13729
 V5.17.txt:13730
 V5.17.txt:13731
 V5.17.txt:13732
 V5.17.txt:13733
 V5.17.txt:13734
 V5.17.txt:13735
 V5.17.txt:13736
 V5.17.txt:13737
 V5.17.txt:13738
 V5.17.txt:13739
 V5.17.txt:13740
 V5.17.txt:13741
 V5.17.txt:13742
 V5.17.txt:13743
 V5.17.txt:13744
 V5.17.txt:13745
 V5.17.txt:13746
 V5.17.txt:13747
 V5.17.txt:13748
 V5.17.txt:13749
 V5.17.txt:13750
 V5.17.txt:13751
 V5.17.txt:13752
 V5.17.txt:13753
 V5.17.txt:13754
 V5.17.txt:13755
 V5.17.txt:13756
 V5.17.txt:13757
 V5.17.txt:13758
 V5.17.txt:13759
 V5.17.txt:13760
 V5.17.txt:13761
 V5.17.txt:13762
 V5.17.txt:13763
 V5.17.txt:13764
 V5.17.txt:13765
 V5.17.txt:13766
 V5.17.txt:13767
 V5.17.txt:13768
 V5.17.txt:13769
 V5.17.txt:13770
 V5.17.txt:13771
 V5.17.txt:13772
 V5.17.txt:13773
 V5.17.txt:13774
 V5.17.txt:13775
 V5.17.txt:13776
 V5.17.txt:13777
 V5.17.txt:13778
 V5.17.txt:13779
 V5.17.txt:13780
 V5.17.txt:13781
 V5.17.txt:13782
 V5.17.txt:13783
 V5.17.txt:13784
 V5.17.txt:13785
 V5.17.txt:13786
 V5.17.txt:13787
 V5.17.txt:13788
 V5.17.txt:13789
 V5.17.txt:13790
 V5.17.txt:13791
 V5.17.txt:13792
 V5.17.txt:13793
 V5.17.txt:13794
 V5.17.txt:13795
 V5.17.txt:13796
 V5.17.txt:13797
 V5.17.txt:13798
 V5.17.txt:13799
 V5.17.txt:13800
 V5.17.txt:13801
 V5.17.txt:13802
 V5.17.txt:13803
 V5.17.txt:13804
 V5.17.txt:13805
 V5.17.txt:13806
 V5.17.txt:13807
 V5.17.txt:13808
 V5.17.txt:13809
 V5.17.txt:13810
 V5.17.txt:13811
 V5.17.txt:13812
 V5.17.txt:13813
 V5.17.txt:13814
 V5.17.txt:13815
 V5.17.txt:13816
 V5.17.txt:13817
 V5.17.txt:13818
 V5.17.txt:13819
 V5.17.txt:13820
 V5.17.txt:13821
 V5.17.txt:13822
 V5.17.txt:13823
 V5.17.txt:13824
 V5.17.txt:13825
 V5.17.txt:13826
 V5.17.txt:13827
 V5.17.txt:13828
 V5.17.txt:13829
 V5.17.txt:13830
 V5.17.txt:13831
 V5.17.txt:13832
 V5.17.txt:13833
 V5.17.txt:13834
 V5.17.txt:13835
 V5.17.txt:13836
 V5.17.txt:13837
 V5.17.txt:13838
 V5.17.txt:13839
 V5.17.txt:13840
 V5.17.txt:13841
 V5.17.txt:13842
 V5.17.txt:13843
 V5.17.txt:13844
 V5.17.txt:13845
 V5.17.txt:13846
 V5.17.txt:13847
 V5.17.txt:13848
 V5.17.txt:13849
 V5.17.txt:13850
 V5.17.txt:13851
 V5.17.txt:13852
 V5.17.txt:13853
 V5.17.txt:13854
 V5.17.txt:13855
 V5.17.txt:13856
 V5.17.txt:13857
 V5.17.txt:13858
 V5.17.txt:13859
 V5.17.txt:13860
 V5.17.txt:13861
 V5.17.txt:13862
 V5.17.txt:13863
 V5.17.txt:13864
 V5.17.txt:13865
 V5.17.txt:13866
 V5.17.txt:13867
 V5.17.txt:13868
 V5.17.txt:13869
 V5.17.txt:13870
 V5.17.txt:13871
 V5.17.txt:13872
 V5.17.txt:13873
 V5.17.txt:13874
 V5.17.txt:13875
 V5.17.txt:13876
 V5.17.txt:13877
 V5.17.txt:13878
 V5.17.txt:13879
 V5.17.txt:13880
 V5.17.txt:13881
 V5.17.txt:13882
 V5.17.txt:13883
 V5.17.txt:13884
 V5.17.txt:13885
 V5.17.txt:13886
 V5.17.txt:13887
 V5.17.txt:13888
 V5.17.txt:13889
 V5.17.txt:13890
 V5.17.txt:13891
 V5.17.txt:13892
 V5.17.txt:13893
 V5.17.txt:13894
 V5.17.txt:13895
 V5.17.txt:13896
 V5.17.txt:13897
 V5.17.txt:13898
 V5.17.txt:13899
 V5.17.txt:13900
 V5.17.txt:13901
 V5.17.txt:13902
 V5.17.txt:13903
 V5.17.txt:13904
 V5.17.txt:13905
 V5.17.txt:13906
 V5.17.txt:13907
 V5.17.txt:13908
 V5.17.txt:13909
 V5.17.txt:13910
 V5.17.txt:13911
 V5.17.txt:13912
 V5.17.txt:13913
 V5.17.txt:13914
 V5.17.txt:13915
 V5.17.txt:13916
 V5.17.txt:13917
 V5.17.txt:13918
 V5.17.txt:13919
 V5.17.txt:13920
 V5.17.txt:13921
 V5.17.txt:13922
 V5.17.txt:13923
 V5.17.txt:13924
 V5.17.txt:13925
 V5.17.txt:13926
 V5.17.txt:13927
 V5.17.txt:13928
 V5.17.txt:13929
 V5.17.txt:13930
 V5.17.txt:13931
 V5.17.txt:13932
 V5.17.txt:13933
 V5.17.txt:13934
 V5.17.txt:13935
 V5.17.txt:13936
 V5.17.txt:13937
 V5.17.txt:13938
 V5.17.txt:13939
 V5.17.txt:13940
 V5.17.txt:13941
 V5.17.txt:13942
 V5.17.txt:13943
 V5.17.txt:13944
 V5.17.txt:13945
 V5.17.txt:13946
 V5.17.txt:13947
 V5.17.txt:13948
 V5.17.txt:13949
 V5.17.txt:13950
 V5.17.txt:13951
 V5.17.txt:13952
 V5.17.txt:13953
 V5.17.txt:13954
 V5.17.txt:13955
 V5.17.txt:13956
 V5.17.txt:13957
 V5.17.txt:13958
 V5.17.txt:13959
 V5.17.txt:13960
 V5.17.txt:13961
 V5.17.txt:13962
 V5.17.txt:13963
 V5.17.txt:13964
 V5.17.txt:13965
 V5.17.txt:13966
 V5.17.txt:13967
 V5.17.txt:13968
 V5.17.txt:13969
 V5.17.txt:13970
 V5.17.txt:13971
 V5.17.txt:13972
 V5.17.txt:13973
 V5.17.txt:13974
 V5.17.txt:13975
 V5.17.txt:13976
 V5.17.txt:13977
 V5.17.txt:13978
 V5.17.txt:13979
 V5.17.txt:13980
 V5.17.txt:13981
 V5.17.txt:13982
 V5.17.txt:13983
 V5.17.txt:13984
 V5.17.txt:13985
 V5.17.txt:13986
 V5.17.txt:13987
 V5.17.txt:13988
 V5.17.txt:13989
 V5.17.txt:13990
 V5.17.txt:13991
 V5.17.txt:13992
 V5.17.txt:13993
 V5.17.txt:13994
 V5.17.txt:13995
 V5.17.txt:13996
 V5.17.txt:13997
 V5.17.txt:13998
 V5.17.txt:13999
 V5.17.txt:14000
 V5.17.txt:14001
 V5.17.txt:14002
 V5.17.txt:14003
 V5.17.txt:14004
 V5.17.txt:14005
 V5.17.txt:14006
 V5.17.txt:14007
 V5.17.txt:14008
 V5.17.txt:14009
 V5.17.txt:14010
 V5.17.txt:14011
 V5.17.txt:14012
 V5.17.txt:14013
 V5.17.txt:14014
 V5.17.txt:14015
 V5.17.txt:14016
 V5.17.txt:14017
 V5.17.txt:14018
 V5.17.txt:14019
 V5.17.txt:14020
 V5.17.txt:14021
 V5.17.txt:14022
 V5.17.txt:14023
 V5.17.txt:14024
 V5.17.txt:14025
 V5.17.txt:14026
 V5.17.txt:14027
 V5.17.txt:14028
 V5.17.txt:14029
 V5.17.txt:14030
 V5.17.txt:14031
 V5.17.txt:14032
 V5.17.txt:14033
 V5.17.txt:14034
 V5.17.txt:14035
 V5.17.txt:14036
 V5.17.txt:14037
 V5.17.txt:14038
 V5.17.txt:14039
 V5.17.txt:14040
 V5.17.txt:14041
 V5.17.txt:14042
 V5.17.txt:14043
 V5.17.txt:14044
 V5.17.txt:14045
 V5.17.txt:14046
 V5.17.txt:14047
 V5.17.txt:14048
 V5.17.txt:14049
 V5.17.txt:14050
 V5.17.txt:14051
 V5.17.txt:14052
 V5.17.txt:14053
 V5.17.txt:14054
 V5.17.txt:14055
 V5.17.txt:14056
 V5.17.txt:14057
 V5.17.txt:14058
 V5.17.txt:14059
 V5.17.txt:14060
 V5.17.txt:14061
 V5.17.txt:14062
 V5.17.txt:14063
 V5.17.txt:14064
 V5.17.txt:14065
 V5.17.txt:14066
 V5.17.txt:14067
 V5.17.txt:14068
 V5.17.txt:14069
 V5.17.txt:14070
 V5.17.txt:14071
 V5.17.txt:14072
 V5.17.txt:14073
 V5.17.txt:14074
 V5.17.txt:14075
 V5.17.txt:14076
 V5.17.txt:14077
 V5.17.txt:14078
 V5.17.txt:14079
 V5.17.txt:14080
 V5.17.txt:14081
 V5.17.txt:14082
 V5.17.txt:14083
 V5.17.txt:14084
 V5.17.txt:14085
 V5.17.txt:14086
 V5.17.txt:14087
 V5.17.txt:14088
 V5.17.txt:14089
 V5.17.txt:14090
 V5.17.txt:14091
 V5.17.txt:14092
 V5.17.txt:14093
 V5.17.txt:14094
 V5.17.txt:14095
 V5.17.txt:14096
 V5.17.txt:14097
 V5.17.txt:14098
 V5.17.txt:14099
 V5.17.txt:14100
 V5.17.txt:14101
 V5.17.txt:14102
 V5.17.txt:14103
 V5.17.txt:14104
 V5.17.txt:14105
 V5.17.txt:14106
 V5.17.txt:14107
 V5.17.txt:14108
 V5.17.txt:14109
 V5.17.txt:14110
 V5.17.txt:14111
 V5.17.txt:14112
 V5.17.txt:14113
 V5.17.txt:14114
 V5.17.txt:14115
 V5.17.txt:14116
 V5.17.txt:14117
 V5.17.txt:14118
 V5.17.txt:14119
 V5.17.txt:14120
 V5.17.txt:14121
 V5.17.txt:14122
 V5.17.txt:14123
 V5.17.txt:14124
 V5.17.txt:14125
 V5.17.txt:14126
 V5.17.txt:14127
 V5.17.txt:14128
 V5.17.txt:14129
 V5.17.txt:14130
 V5.17.txt:14131
 V5.17.txt:14132
 V5.17.txt:14133
 V5.17.txt:14134
 V5.17.txt:14135
 V5.17.txt:14136
 V5.17.txt:14137
 V5.17.txt:14138
 V5.17.txt:14139
 V5.17.txt:14140
 V5.17.txt:14141
 V5.17.txt:14142
 V5.17.txt:14143
 V5.17.txt:14144
 V5.17.txt:14145
 V5.17.txt:14146
 V5.17.txt:14147
 V5.17.txt:14148
 V5.17.txt:14149
 V5.17.txt:14150
 V5.17.txt:14151
 V5.17.txt:14152
 V5.17.txt:14153
 V5.17.txt:14154
 V5.17.txt:14155
 V5.17.txt:14156
 V5.17.txt:14157
 V5.17.txt:14158
 V5.17.txt:14159
 V5.17.txt:14160
 V5.17.txt:14161
 V5.17.txt:14162
 V5.17.txt:14163
 V5.17.txt:14164
 V5.17.txt:14165
 V5.17.txt:14166
 V5.17.txt:14167
 V5.17.txt:14168
 V5.17.txt:14169
 V5.17.txt:14170
 V5.17.txt:14171
 V5.17.txt:14172
 V5.17.txt:14173
 V5.17.txt:14174
 V5.17.txt:14175
 V5.17.txt:14176
 V5.17.txt:14177
 V5.17.txt:14178
 V5.17.txt:14179
 V5.17.txt:14180
 V5.17.txt:14181
 V5.17.txt:14182
 V5.17.txt:14183
 V5.17.txt:14184
 V5.17.txt:14185
 V5.17.txt:14186
 V5.17.txt:14187
 V5.17.txt:14188
 V5.17.txt:14189
 V5.17.txt:14190
 V5.17.txt:14191
 V5.17.txt:14192
 V5.17.txt:14193
 V5.17.txt:14194
 V5.17.txt:14195
 V5.17.txt:14196
 V5.17.txt:14197
 V5.17.txt:14198
 V5.17.txt:14199
 V5.17.txt:14200
 V5.17.txt:14201
 V5.17.txt:14202
 V5.17.txt:14203
 V5.17.txt:14204
 V5.17.txt:14205
 V5.17.txt:14206
 V5.17.txt:14207
 V5.17.txt:14208
 V5.17.txt:14209
 V5.17.txt:14210
 V5.17.txt:14211
 V5.17.txt:14212
 V5.17.txt:14213
 V5.17.txt:14214
 V5.17.txt:14215
 V5.17.txt:14216
 V5.17.txt:14217
 V5.17.txt:14218
 V5.17.txt:14219
 V5.17.txt:14220
 V5.17.txt:14221
 V5.17.txt:14222
 V5.17.txt:14223
 V5.17.txt:14224
 V5.17.txt:14225
 V5.17.txt:14226
 V5.17.txt:14227
 V5.17.txt:14228
 V5.17.txt:14229
 V5.17.txt:14230
 V5.17.txt:14231
 V5.17.txt:14232
 V5.17.txt:14233
 V5.17.txt:14234
 V5.17.txt:14235
 V5.17.txt:14236
 V5.17.txt:14237
 V5.17.txt:14238
 V5.17.txt:14239
 V5.17.txt:14240
 V5.17.txt:14241
 V5.17.txt:14242
 V5.17.txt:14243
 V5.17.txt:14244
 V5.17.txt:14245
 V5.17.txt:14246
 V5.17.txt:14247
 V5.17.txt:14248
 V5.17.txt:14249
 V5.17.txt:14250
 V5.17.txt:14251
 V5.17.txt:14252
 V5.17.txt:14253
 V5.17.txt:14254
 V5.17.txt:14255
 V5.17.txt:14256
 V5.17.txt:14257
 V5.17.txt:14258
 V5.17.txt:14259
 V5.17.txt:14260
 V5.17.txt:14261
 V5.17.txt:14262
 V5.17.txt:14263
 V5.17.txt:14264
 V5.17.txt:14265
 V5.17.txt:14266
 V5.17.txt:14267
 V5.17.txt:14268
 V5.17.txt:14269
 V5.17.txt:14270
 V5.17.txt:14271
 V5.17.txt:14272
 V5.17.txt:14273
 V5.17.txt:14274
 V5.17.txt:14275
 V5.17.txt:14276
 V5.17.txt:14277
 V5.17.txt:14278
 V5.17.txt:14279
 V5.17.txt:14280
 V5.17.txt:14281
 V5.17.txt:14282
 V5.17.txt:14283
 V5.17.txt:14284
 V5.17.txt:14285
 V5.17.txt:14286
 V5.17.txt:14287
 V5.17.txt:14288
 V5.17.txt:14289
 V5.17.txt:14290
 V5.17.txt:14291
 V5.17.txt:14292
 V5.17.txt:14293
 V5.17.txt:14294
 V5.17.txt:14295
 V5.17.txt:14296
 V5.17.txt:14297
 V5.17.txt:14298
 V5.17.txt:14299
 V5.17.txt:14300
 V5.17.txt:14301
 V5.17.txt:14302
 V5.17.txt:14303
 V5.17.txt:14304
 V5.17.txt:14305
 V5.17.txt:14306
 V5.17.txt:14307
 V5.17.txt:14308
 V5.17.txt:14309
 V5.17.txt:14310
 V5.17.txt:14311
 V5.17.txt:14312
 V5.17.txt:14313
 V5.17.txt:14314
 V5.17.txt:14315
 V5.17.txt:14316
 V5.17.txt:14317
 V5.17.txt:14318
 V5.17.txt:14319
 V5.17.txt:14320
 V5.17.txt:14321
 V5.17.txt:14322
 V5.17.txt:14323
 V5.17.txt:14324
 V5.17.txt:14325
 V5.17.txt:14326
 V5.17.txt:14327
 V5.17.txt:14328
 V5.17.txt:14329
 V5.17.txt:14330
 V5.17.txt:14331
 V5.17.txt:14332
 V5.17.txt:14333
 V5.17.txt:14334
 V5.17.txt:14335
 V5.17.txt:14336
 V5.17.txt:14337
 V5.17.txt:14338
 V5.17.txt:14339
 V5.17.txt:14340
 V5.17.txt:14341
 V5.17.txt:14342
 V5.17.txt:14343
 V5.17.txt:14344
 V5.17.txt:14345
 V5.17.txt:14346
 V5.17.txt:14347
 V5.17.txt:14348
 V5.17.txt:14349
 V5.17.txt:14350
 V5.17.txt:14351
 V5.17.txt:14352
 V5.17.txt:14353
 V5.17.txt:14354
 V5.17.txt:14355
 V5.17.txt:14356
 V5.17.txt:14357
 V5.17.txt:14358
 V5.17.txt:14359
 V5.17.txt:14360
 V5.17.txt:14361
 V5.17.txt:14362
 V5.17.txt:14363
 V5.17.txt:14364
 V5.17.txt:14365
 V5.17.txt:14366
 V5.17.txt:14367
 V5.17.txt:14368
 V5.17.txt:14369
 V5.17.txt:14370
 V5.17.txt:14371
 V5.17.txt:14372
 V5.17.txt:14373
 V5.17.txt:14374
 V5.17.txt:14375
 V5.17.txt:14376
 V5.17.txt:14377
 V5.17.txt:14378
 V5.17.txt:14379
 V5.17.txt:14380
 V5.17.txt:14381
 V5.17.txt:14382
 V5.17.txt:14383
 V5.17.txt:14384
 V5.17.txt:14385
 V5.17.txt:14386
 V5.17.txt:14387
 V5.17.txt:14388
 V5.17.txt:14389
 V5.17.txt:14390
 V5.17.txt:14391
 V5.17.txt:14392
 V5.17.txt:14393
 V5.17.txt:14394
 V5.17.txt:14395
 V5.17.txt:14396
 V5.17.txt:14397
 V5.17.txt:14398
 V5.17.txt:14399
 V5.17.txt:14400
 V5.17.txt:14401
 V5.17.txt:14402
 V5.17.txt:14403
 V5.17.txt:14404
 V5.17.txt:14405
 V5.17.txt:14406
 V5.17.txt:14407
 V5.17.txt:14408
 V5.17.txt:14409
 V5.17.txt:14410
 V5.17.txt:14411
 V5.17.txt:14412
 V5.17.txt:14413
 V5.17.txt:14414
 V5.17.txt:14415
 V5.17.txt:14416
 V5.17.txt:14417
 V5.17.txt:14418
 V5.17.txt:14419
 V5.17.txt:14420
 V5.17.txt:14421
 V5.17.txt:14422
 V5.17.txt:14423
 V5.17.txt:14424
 V5.17.txt:14425
 V5.17.txt:14426
 V5.17.txt:14427
 V5.17.txt:14428
 V5.17.txt:14429
 V5.17.txt:14430
 V5.17.txt:14431
 V5.17.txt:14432
 V5.17.txt:14433
 V5.17.txt:14434
 V5.17.txt:14435
 V5.17.txt:14436
 V5.17.txt:14437
 V5.17.txt:14438
 V5.17.txt:14439
 V5.17.txt:14440
 V5.17.txt:14441
 V5.17.txt:14442
 V5.17.txt:14443
 V5.17.txt:14444
 V5.17.txt:14445
 V5.17.txt:14446
 V5.17.txt:14447
 V5.17.txt:14448
 V5.17.txt:14449
 V5.17.txt:14450
 V5.17.txt:14451
 V5.17.txt:14452
 V5.17.txt:14453
 V5.17.txt:14454
 V5.17.txt:14455
 V5.17.txt:14456
 V5.17.txt:14457
 V5.17.txt:14458
 V5.17.txt:14459
 V5.17.txt:14460
 V5.17.txt:14461
 V5.17.txt:14462
 V5.17.txt:14463
 V5.17.txt:14464
 V5.17.txt:14465
 V5.17.txt:14466
 V5.17.txt:14467
 V5.17.txt:14468
 V5.17.txt:14469
 V5.17.txt:14470
 V5.17.txt:14471
 V5.17.txt:14472
 V5.17.txt:14473
 V5.17.txt:14474
 V5.17.txt:14475
 V5.17.txt:14476
 V5.17.txt:14477
 V5.17.txt:14478
 V5.17.txt:14479
 V5.17.txt:14480
 V5.17.txt:14481
 V5.17.txt:14482
 V5.17.txt:14483
 V5.17.txt:14484
 V5.17.txt:14485
 V5.17.txt:14486
 V5.17.txt:14487
 V5.17.txt:14488
 V5.17.txt:14489
 V5.17.txt:14490
 V5.17.txt:14491
 V5.17.txt:14492
 V5.17.txt:14493
 V5.17.txt:14494
 V5.17.txt:14495
 V5.17.txt:14496
 V5.17.txt:14497
 V5.17.txt:14498
 V5.17.txt:14499
 V5.17.txt:14500
 V5.17.txt:14501
 V5.17.txt:14502
 V5.17.txt:14503
 V5.17.txt:14504
 V5.17.txt:14505
 V5.17.txt:14506
 V5.17.txt:14507
 V5.17.txt:14508
 V5.17.txt:14509
 V5.17.txt:14510
 V5.17.txt:14511
 V5.17.txt:14512
 V5.17.txt:14513
 V5.17.txt:14514
 V5.17.txt:14515
 V5.17.txt:14516
 V5.17.txt:14517
 V5.17.txt:14518
 V5.17.txt:14519
 V5.17.txt:14520
 V5.17.txt:14521
 V5.17.txt:14522
 V5.17.txt:14523
 V5.17.txt:14524
 V5.17.txt:14525
 V5.17.txt:14526
 V5.17.txt:14527
 V5.17.txt:14528
 V5.17.txt:14529
 V5.17.txt:14530
 V5.17.txt:14531
 V5.17.txt:14532
 V5.17.txt:14533
 V5.17.txt:14534
 V5.17.txt:14535
 V5.17.txt:14536
 V5.17.txt:14537
 V5.17.txt:14538
 V5.17.txt:14539
 V5.17.txt:14540
 V5.17.txt:14541
 V5.17.txt:14542
 V5.17.txt:14543
 V5.17.txt:14544
 V5.17.txt:14545
 V5.17.txt:14546
 V5.17.txt:14547
 V5.17.txt:14548
 V5.17.txt:14549
 V5.17.txt:14550
 V5.17.txt:14551
 V5.17.txt:14552
 V5.17.txt:14553
 V5.17.txt:14554
 V5.17.txt:14555
 V5.17.txt:14556
 V5.17.txt:14557
 V5.17.txt:14558
 V5.17.txt:14559
 V5.17.txt:14560
 V5.17.txt:14561
 V5.17.txt:14562
 V5.17.txt:14563
 V5.17.txt:14564
 V5.17.txt:14565
 V5.17.txt:14566
 V5.17.txt:14567
 V5.17.txt:14568
 V5.17.txt:14569
 V5.17.txt:14570
 V5.17.txt:14571
 V5.17.txt:14572
 V5.17.txt:14573
 V5.17.txt:14574
 V5.17.txt:14575
 V5.17.txt:14576
 V5.17.txt:14577
 V5.17.txt:14578
 V5.17.txt:14579
 V5.17.txt:14580
 V5.17.txt:14581
 V5.17.txt:14582
 V5.17.txt:14583
 V5.17.txt:14584
 V5.17.txt:14585
 V5.17.txt:14586
 V5.17.txt:14587
 V5.17.txt:14588
 V5.17.txt:14589
 V5.17.txt:14590
 V5.17.txt:14591
 V5.17.txt:14592
 V5.17.txt:14593
 V5.17.txt:14594
 V5.17.txt:14595
 V5.17.txt:14596
 V5.17.txt:14597
 V5.17.txt:14598
 V5.17.txt:14599
 V5.17.txt:14600
 V5.17.txt:14601
 V5.17.txt:14602
 V5.17.txt:14603
 V5.17.txt:14604
 V5.17.txt:14605
 V5.17.txt:14606
 V5.17.txt:14607
 V5.17.txt:14608
 V5.17.txt:14609
 V5.17.txt:14610
 V5.17.txt:14611
 V5.17.txt:14612
 V5.17.txt:14613
 V5.17.txt:14614
 V5.17.txt:14615
 V5.17.txt:14616
 V5.17.txt:14617
 V5.17.txt:14618
 V5.17.txt:14619
 V5.17.txt:14620
 V5.17.txt:14621
 V5.17.txt:14622
 V5.17.txt:14623
 V5.17.txt:14624
 V5.17.txt:14625
 V5.17.txt:14626
 V5.17.txt:14627
 V5.17.txt:14628
 V5.17.txt:14629
 V5.17.txt:14630
 V5.17.txt:14631
 V5.17.txt:14632
 V5.17.txt:14633
 V5.17.txt:14634
 V5.17.txt:14635
 V5.17.txt:14636
 V5.17.txt:14637
 V5.17.txt:14638
 V5.17.txt:14639
 V5.17.txt:14640
 V5.17.txt:14641
 V5.17.txt:14642
 V5.17.txt:14643
 V5.17.txt:14644
 V5.17.txt:14645
 V5.17.txt:14646
 V5.17.txt:14647
 V5.17.txt:14648
 V5.17.txt:14649
 V5.17.txt:14650
 V5.17.txt:14651
 V5.17.txt:14652
 V5.17.txt:14653
 V5.17.txt:14654
 V5.17.txt:14655
 V5.17.txt:14656
 V5.17.txt:14657
 V5.17.txt:14658
 V5.17.txt:14659
 V5.17.txt:14660
 V5.17.txt:14661
 V5.17.txt:14662
 V5.17.txt:14663
 V5.17.txt:14664
 V5.17.txt:14665
 V5.17.txt:14666
 V5.17.txt:14667
 V5.17.txt:14668
 V5.17.txt:14669
 V5.17.txt:14670
 V5.17.txt:14671
 V5.17.txt:14672
 V5.17.txt:14673
 V5.17.txt:14674
 V5.17.txt:14675
 V5.17.txt:14676
 V5.17.txt:14677
 V5.17.txt:14678
 V5.17.txt:14679
 V5.17.txt:14680
 V5.17.txt:14681
 V5.17.txt:14682
 V5.17.txt:14683
 V5.17.txt:14684
 V5.17.txt:14685
 V5.17.txt:14686
 V5.17.txt:14687
 V5.17.txt:14688
 V5.17.txt:14689
 V5.17.txt:14690
 V5.17.txt:14691
 V5.17.txt:14692
 V5.17.txt:14693
 V5.17.txt:14694
 V5.17.txt:14695
 V5.17.txt:14696
 V5.17.txt:14697
 V5.17.txt:14698
 V5.17.txt:14699
 V5.17.txt:14700
 V5.17.txt:14701
 V5.17.txt:14702
 V5.17.txt:14703
 V5.17.txt:14704
 V5.17.txt:14705
 V5.17.txt:14706
 V5.17.txt:14707
 V5.17.txt:14708
 V5.17.txt:14709
 V5.17.txt:14710
 V5.17.txt:14711
 V5.17.txt:14712
 V5.17.txt:14713
 V5.17.txt:14714
 V5.17.txt:14715
 V5.17.txt:14716
 V5.17.txt:14717
 V5.17.txt:14718
 V5.17.txt:14719
 V5.17.txt:14720
 V5.17.txt:14721
 V5.17.txt:14722
 V5.17.txt:14723
 V5.17.txt:14724
 V5.17.txt:14725
 V5.17.txt:14726
 V5.17.txt:14727
 V5.17.txt:14728
 V5.17.txt:14729
 V5.17.txt:14730
 V5.17.txt:14731
 V5.17.txt:14732
 V5.17.txt:14733
 V5.17.txt:14734
 V5.17.txt:14735
 V5.17.txt:14736
 V5.17.txt:14737
 V5.17.txt:14738
 V5.17.txt:14739
 V5.17.txt:14740
 V5.17.txt:14741
 V5.17.txt:14742
 V5.17.txt:14743
 V5.17.txt:14744
 V5.17.txt:14745
 V5.17.txt:14746
 V5.17.txt:14747
 V5.17.txt:14748
 V5.17.txt:14749
 V5.17.txt:14750
 V5.17.txt:14751
 V5.17.txt:14752
 V5.17.txt:14753
 V5.17.txt:14754
 V5.17.txt:14755
 V5.17.txt:14756
 V5.17.txt:14757
 V5.17.txt:14758
 V5.17.txt:14759
 V5.17.txt:14760
 V5.17.txt:14761
 V5.17.txt:14762
 V5.17.txt:14763
 V5.17.txt:14764
 V5.17.txt:14765
 V5.17.txt:14766
 V5.17.txt:14767
 V5.17.txt:14768
 V5.17.txt:14769
 V5.17.txt:14770
 V5.17.txt:14771
 V5.17.txt:14772
 V5.17.txt:14773
 V5.17.txt:14774
 V5.17.txt:14775
 V5.17.txt:14776
 V5.17.txt:14777
 V5.17.txt:14778
 V5.17.txt:14779
 V5.17.txt:14780
 V5.17.txt:14781
 V5.17.txt:14782
 V5.17.txt:14783
 V5.17.txt:14784
 V5.17.txt:14785
 V5.17.txt:14786
 V5.17.txt:14787
 V5.17.txt:14788
 V5.17.txt:14789
 V5.17.txt:14790
 V5.17.txt:14791
 V5.17.txt:14792
 V5.17.txt:14793
 V5.17.txt:14794
 V5.17.txt:14795
 V5.17.txt:14796
 V5.17.txt:14797
 V5.17.txt:14798
 V5.17.txt:14799
 V5.17.txt:14800
 V5.17.txt:14801
 V5.17.txt:14802
 V5.17.txt:14803
 V5.17.txt:14804
 V5.17.txt:14805
 V5.17.txt:14806
 V5.17.txt:14807
 V5.17.txt:14808
 V5.17.txt:14809
 V5.17.txt:14810
 V5.17.txt:14811
 V5.17.txt:14812
 V5.17.txt:14813
 V5.17.txt:14814
 V5.17.txt:14815
 V5.17.txt:14816
 V5.17.txt:14817
 V5.17.txt:14818
 V5.17.txt:14819
 V5.17.txt:14820
 V5.17.txt:14821
 V5.17.txt:14822
 V5.17.txt:14823
 V5.17.txt:14824
 V5.17.txt:14825
 V5.17.txt:14826
 V5.17.txt:14827
 V5.17.txt:14828
 V5.17.txt:14829
 V5.17.txt:14830
 V5.17.txt:14831
 V5.17.txt:14832
 V5.17.txt:14833
 V5.17.txt:14834
 V5.17.txt:14835
 V5.17.txt:14836
 V5.17.txt:14837
 V5.17.txt:14838
 V5.17.txt:14839
 V5.17.txt:14840
 V5.17.txt:14841
 V5.17.txt:14842
 V5.17.txt:14843
 V5.17.txt:14844
 V5.17.txt:14845
 V5.17.txt:14846
 V5.17.txt:14847
 V5.17.txt:14848
 V5.17.txt:14849
 V5.17.txt:14850
 V5.17.txt:14851
 V5.17.txt:14852
 V5.17.txt:14853
 V5.17.txt:14854
 V5.17.txt:14855
 V5.17.txt:14856
 V5.17.txt:14857
 V5.17.txt:14858
 V5.17.txt:14859
 V5.17.txt:14860
 V5.17.txt:14861
 V5.17.txt:14862
 V5.17.txt:14863
 V5.17.txt:14864
 V5.17.txt:14865
 V5.17.txt:14866
 V5.17.txt:14867
 V5.17.txt:14868
 V5.17.txt:14869
 V5.17.txt:14870
 V5.17.txt:14871
 V5.17.txt:14872
 V5.17.txt:14873
 V5.17.txt:14874
 V5.17.txt:14875
 V5.17.txt:14876
 V5.17.txt:14877
 V5.17.txt:14878
 V5.17.txt:14879
 V5.17.txt:14880
 V5.17.txt:14881
 V5.17.txt:14882
 V5.17.txt:14883
 V5.17.txt:14884
 V5.17.txt:14885
 V5.17.txt:14886
 V5.17.txt:14887
 V5.17.txt:14888
 V5.17.txt:14889
 V5.17.txt:14890
 V5.17.txt:14891
 V5.17.txt:14892
 V5.17.txt:14893
 V5.17.txt:14894
 V5.17.txt:14895
 V5.17.txt:14896
 V5.17.txt:14897
 V5.17.txt:14898
 V5.17.txt:14899
 V5.17.txt:14900
 V5.17.txt:14901
 V5.17.txt:14902
 V5.17.txt:14903
 V5.17.txt:14904
 V5.17.txt:14905
 V5.17.txt:14906
 V5.17.txt:14907
 V5.17.txt:14908
 V5.17.txt:14909
 V5.17.txt:14910
 V5.17.txt:14911
 V5.17.txt:14912
 V5.17.txt:14913
 V5.17.txt:14914
 V5.17.txt:14915
 V5.17.txt:14916
 V5.17.txt:14917
 V5.17.txt:14918
 V5.17.txt:14919
 V5.17.txt:14920
 V5.17.txt:14921
 V5.17.txt:14922
 V5.17.txt:14923
 V5.17.txt:14924
 V5.17.txt:14925
 V5.17.txt:14926
 V5.17.txt:14927
 V5.17.txt:14928
 V5.17.txt:14929
 V5.17.txt:14930
 V5.17.txt:14931
 V5.17.txt:14932
 V5.17.txt:14933
 V5.17.txt:14934
 V5.17.txt:14935
 V5.17.txt:14936
 V5.17.txt:14937
 V5.17.txt:14938
 V5.17.txt:14939
 V5.17.txt:14940
 V5.17.txt:14941
 V5.17.txt:14942
 V5.17.txt:14943
 V5.17.txt:14944
 V5.17.txt:14945
 V5.17.txt:14946
 V5.17.txt:14947
 V5.17.txt:14948
 V5.17.txt:14949
 V5.17.txt:14950
 V5.17.txt:14951
 V5.17.txt:14952
 V5.17.txt:14953
 V5.17.txt:14954
 V5.17.txt:14955
 V5.17.txt:14956
 V5.17.txt:14957
 V5.17.txt:14958
 V5.17.txt:14959
 V5.17.txt:14960
 V5.17.txt:14961
 V5.17.txt:14962
 V5.17.txt:14963
 V5.17.txt:14964
 V5.17.txt:14965
 V5.17.txt:14966
 V5.17.txt:14967
 V5.17.txt:14968
 V5.17.txt:14969
 V5.17.txt:14970
 V5.17.txt:14971
 V5.17.txt:14972
 V5.17.txt:14973
 V5.17.txt:14974
 V5.17.txt:14975
 V5.17.txt:14976
 V5.17.txt:14977
 V5.17.txt:14978
 V5.17.txt:14979
 V5.17.txt:14980
 V5.17.txt:14981
 V5.17.txt:14982
 V5.17.txt:14983
 V5.17.txt:14984
 V5.17.txt:14985
 V5.17.txt:14986
 V5.17.txt:14987
 V5.17.txt:14988
 V5.17.txt:14989
 V5.17.txt:14990
 V5.17.txt:14991
 V5.17.txt:14992
 V5.17.txt:14993
 V5.17.txt:14994
 V5.17.txt:14995
 V5.17.txt:14996
 V5.17.txt:14997
 V5.17.txt:14998
 V5.17.txt:14999
 V5.17.txt:15000
 V5.17.txt:15001
 V5.17.txt:15002
 V5.17.txt:15003
 V5.17.txt:15004
 V5.17.txt:15005
 V5.17.txt:15006
 V5.17.txt:15007
 V5.17.txt:15008
 V5.17.txt:15009
 V5.17.txt:15010
 V5.17.txt:15011
 V5.17.txt:15012
 V5.17.txt:15013
 V5.17.txt:15014
 V5.17.txt:15015
 V5.17.txt:15016
 V5.17.txt:15017
 V5.17.txt:15018
 V5.17.txt:15019
 V5.17.txt:15020
 V5.17.txt:15021
 V5.17.txt:15022
 V5.17.txt:15023
 V5.17.txt:15024
 V5.17.txt:15025
 V5.17.txt:15026
 V5.17.txt:15027
 V5.17.txt:15028
 V5.17.txt:15029
 V5.17.txt:15030
 V5.17.txt:15031
 V5.17.txt:15032
 V5.17.txt:15033
 V5.17.txt:15034
 V5.17.txt:15035
 V5.17.txt:15036
 V5.17.txt:15037
 V5.17.txt:15038
 V5.17.txt:15039
 V5.17.txt:15040
 V5.17.txt:15041
 V5.17.txt:15042
 V5.17.txt:15043
 V5.17.txt:15044
 V5.17.txt:15045
 V5.17.txt:15046
 V5.17.txt:15047
 V5.17.txt:15048
 V5.17.txt:15049
 V5.17.txt:15050
 V5.17.txt:15051
 V5.17.txt:15052
 V5.17.txt:15053
 V5.17.txt:15054
 V5.17.txt:15055
 V5.17.txt:15056
 V5.17.txt:15057
 V5.17.txt:15058
 V5.17.txt:15059
 V5.17.txt:15060
 V5.17.txt:15061
 V5.17.txt:15062
 V5.17.txt:15063
 V5.17.txt:15064
 V5.17.txt:15065
 V5.17.txt:15066
 V5.17.txt:15067
 V5.17.txt:15068
 V5.17.txt:15069
 V5.17.txt:15070
 V5.17.txt:15071
 V5.17.txt:15072
 V5.17.txt:15073
 V5.17.txt:15074
 V5.17.txt:15075
 V5.17.txt:15076
 V5.17.txt:15077
 V5.17.txt:15078
 V5.17.txt:15079
 V5.17.txt:15080
 V5.17.txt:15081
 V5.17.txt:15082
 V5.17.txt:15083
 V5.17.txt:15084
 V5.17.txt:15085
 V5.17.txt:15086
 V5.17.txt:15087
 V5.17.txt:15088
 V5.17.txt:15089
 V5.17.txt:15090
 V5.17.txt:15091
 V5.17.txt:15092
 V5.17.txt:15093
 V5.17.txt:15094
 V5.17.txt:15095
 V5.17.txt:15096
 V5.17.txt:15097
 V5.17.txt:15098
 V5.17.txt:15099
 V5.17.txt:15100
 V5.17.txt:15101
 V5.17.txt:15102
 V5.17.txt:15103
 V5.17.txt:15104
 V5.17.txt:15105
 V5.17.txt:15106
 V5.17.txt:15107
 V5.17.txt:15108
 V5.17.txt:15109
 V5.17.txt:15110
 V5.17.txt:15111
 V5.17.txt:15112
 V5.17.txt:15113
 V5.17.txt:15114
 V5.17.txt:15115
 V5.17.txt:15116
 V5.17.txt:15117
 V5.17.txt:15118
 V5.17.txt:15119
 V5.17.txt:15120
 V5.17.txt:15121
 V5.17.txt:15122
 V5.17.txt:15123
 V5.17.txt:15124
 V5.17.txt:15125
 V5.17.txt:15126
 V5.17.txt:15127
 V5.17.txt:15128
 V5.17.txt:15129
 V5.17.txt:15130
 V5.17.txt:15131
 V5.17.txt:15132
 V5.17.txt:15133
 V5.17.txt:15134
 V5.17.txt:15135
 V5.17.txt:15136
 V5.17.txt:15137
 V5.17.txt:15138
 V5.17.txt:15139
 V5.17.txt:15140
 V5.17.txt:15141
 V5.17.txt:15142
 V5.17.txt:15143
 V5.17.txt:15144
 V5.17.txt:15145
 V5.17.txt:15146
 V5.17.txt:15147
 V5.17.txt:15148
 V5.17.txt:15149
 V5.17.txt:15150
 V5.17.txt:15151
 V5.17.txt:15152
 V5.17.txt:15153
 V5.17.txt:15154
 V5.17.txt:15155
 V5.17.txt:15156
 V5.17.txt:15157
 V5.17.txt:15158
 V5.17.txt:15159
 V5.17.txt:15160
 V5.17.txt:15161
 V5.17.txt:15162
 V5.17.txt:15163
 V5.17.txt:15164
 V5.17.txt:15165
 V5.17.txt:15166
 V5.17.txt:15167
 V5.17.txt:15168
 V5.17.txt:15169
 V5.17.txt:15170
 V5.17.txt:15171
 V5.17.txt:15172
 V5.17.txt:15173
 V5.17.txt:15174
 V5.17.txt:15175
 V5.17.txt:15176
 V5.17.txt:15177
 V5.17.txt:15178
 V5.17.txt:15179
 V5.17.txt:15180
 V5.17.txt:15181
 V5.17.txt:15182
 V5.17.txt:15183
 V5.17.txt:15184
 V5.17.txt:15185
 V5.17.txt:15186
 V5.17.txt:15187
 V5.17.txt:15188
 V5.17.txt:15189
 V5.17.txt:15190
 V5.17.txt:15191
 V5.17.txt:15192
 V5.17.txt:15193
 V5.17.txt:15194
 V5.17.txt:15195
 V5.17.txt:15196
 V5.17.txt:15197
 V5.17.txt:15198
 V5.17.txt:15199
 V5.17.txt:15200
 V5.17.txt:15201
 V5.17.txt:15202
 V5.17.txt:15203
 V5.17.txt:15204
 V5.17.txt:15205
 V5.17.txt:15206
 V5.17.txt:15207
 V5.17.txt:15208
 V5.17.txt:15209
 V5.17.txt:15210
 V5.17.txt:15211
 V5.17.txt:15212
 V5.17.txt:15213
 V5.17.txt:15214
 V5.17.txt:15215
 V5.17.txt:15216
 V5.17.txt:15217
 V5.17.txt:15218
 V5.17.txt:15219
 V5.17.txt:15220
 V5.17.txt:15221
 V5.17.txt:15222
 V5.17.txt:15223
 V5.17.txt:15224
 V5.17.txt:15225
 V5.17.txt:15226
 V5.17.txt:15227
 V5.17.txt:15228
 V5.17.txt:15229
 V5.17.txt:15230
 V5.17.txt:15231
 V5.17.txt:15232
 V5.17.txt:15233
 V5.17.txt:15234
 V5.17.txt:15235
 V5.17.txt:15236
 V5.17.txt:15237
 V5.17.txt:15238
 V5.17.txt:15239
 V5.17.txt:15240
 V5.17.txt:15241
 V5.17.txt:15242
 V5.17.txt:15243
 V5.17.txt:15244
 V5.17.txt:15245
 V5.17.txt:15246
 V5.17.txt:15247
 V5.17.txt:15248
 V5.17.txt:15249
 V5.17.txt:15250
 V5.17.txt:15251
 V5.17.txt:15252
 V5.17.txt:15253
 V5.17.txt:15254
 V5.17.txt:15255
 V5.17.txt:15256
 V5.17.txt:15257
 V5.17.txt:15258
 V5.17.txt:15259
 V5.17.txt:15260
 V5.17.txt:15261
 V5.17.txt:15262
 V5.17.txt:15263
 V5.17.txt:15264
 V5.17.txt:15265
 V5.17.txt:15266
 V5.17.txt:15267
 V5.17.txt:15268
 V5.17.txt:15269
 V5.17.txt:15270
 V5.17.txt:15271
 V5.17.txt:15272
 V5.17.txt:15273
 V5.17.txt:15274
 V5.17.txt:15275
 V5.17.txt:15276
 V5.17.txt:15277
 V5.17.txt:15278
 V5.17.txt:15279
 V5.17.txt:15280
 V5.17.txt:15281
 V5.17.txt:15282
 V5.17.txt:15283
 V5.17.txt:15284
 V5.17.txt:15285
 V5.17.txt:15286
 V5.17.txt:15287
 V5.17.txt:15288
 V5.17.txt:15289
 V5.17.txt:15290
 V5.17.txt:15291
 V5.17.txt:15292
 V5.17.txt:15293
 V5.17.txt:15294
 V5.17.txt:15295
 V5.17.txt:15296
 V5.17.txt:15297
 V5.17.txt:15298
 V5.17.txt:15299
 V5.17.txt:15300
 V5.17.txt:15301
 V5.17.txt:15302
 V5.17.txt:15303
 V5.17.txt:15304
 V5.17.txt:15305
 V5.17.txt:15306
 V5.17.txt:15307
 V5.17.txt:15308
 V5.17.txt:15309
 V5.17.txt:15310
 V5.17.txt:15311
 V5.17.txt:15312
 V5.17.txt:15313
 V5.17.txt:15314
 V5.17.txt:15315
 V5.17.txt:15316
 V5.17.txt:15317
 V5.17.txt:15318
 V5.17.txt:15319
 V5.17.txt:15320
 V5.17.txt:15321
 V5.17.txt:15322
 V5.17.txt:15323
 V5.17.txt:15324
 V5.17.txt:15325
 V5.17.txt:15326
 V5.17.txt:15327
 V5.17.txt:15328
 V5.17.txt:15329
 V5.17.txt:15330
 V5.17.txt:15331
 V5.17.txt:15332
 V5.17.txt:15333
 V5.17.txt:15334
 V5.17.txt:15335
 V5.17.txt:15336
 V5.17.txt:15337
 V5.17.txt:15338
 V5.17.txt:15339
 V5.17.txt:15340
 V5.17.txt:15341
 V5.17.txt:15342
 V5.17.txt:15343
 V5.17.txt:15344
 V5.17.txt:15345
 V5.17.txt:15346
 V5.17.txt:15347
 V5.17.txt:15348
 V5.17.txt:15349
 V5.17.txt:15350
 V5.17.txt:15351
 V5.17.txt:15352
 V5.17.txt:15353
 V5.17.txt:15354
 V5.17.txt:15355
 V5.17.txt:15356
 V5.17.txt:15357
 V5.17.txt:15358
 V5.17.txt:15359
 V5.17.txt:15360
 V5.17.txt:15361
 V5.17.txt:15362
 V5.17.txt:15363
 V5.17.txt:15364
 V5.17.txt:15365
 V5.17.txt:15366
 V5.17.txt:15367
 V5.17.txt:15368
 V5.17.txt:15369
 V5.17.txt:15370
 V5.17.txt:15371
 V5.17.txt:15372
 V5.17.txt:15373
 V5.17.txt:15374
 V5.17.txt:15375
 V5.17.txt:15376
 V5.17.txt:15377
 V5.17.txt:15378
 V5.17.txt:15379
 V5.17.txt:15380
 V5.17.txt:15381
 V5.17.txt:15382
 V5.17.txt:15383
 V5.17.txt:15384
 V5.17.txt:15385
 V5.17.txt:15386
 V5.17.txt:15387
 V5.17.txt:15388
 V5.17.txt:15389
 V5.17.txt:15390
 V5.17.txt:15391
 V5.17.txt:15392
 V5.17.txt:15393
 V5.17.txt:15394
 V5.17.txt:15395
 V5.17.txt:15396
 V5.17.txt:15397
 V5.17.txt:15398
 V5.17.txt:15399
 V5.17.txt:15400
 V5.17.txt:15401
 V5.17.txt:15402
 V5.17.txt:15403
 V5.17.txt:15404
 V5.17.txt:15405
 V5.17.txt:15406
 V5.17.txt:15407
 V5.17.txt:15408
 V5.17.txt:15409
 V5.17.txt:15410
 V5.17.txt:15411
 V5.17.txt:15412
 V5.17.txt:15413
 V5.17.txt:15414
 V5.17.txt:15415
 V5.17.txt:15416
 V5.17.txt:15417
 V5.17.txt:15418
 V5.17.txt:15419
 V5.17.txt:15420
 V5.17.txt:15421
 V5.17.txt:15422
 V5.17.txt:15423
 V5.17.txt:15424
 V5.17.txt:15425
 V5.17.txt:15426
 V5.17.txt:15427
 V5.17.txt:15428
 V5.17.txt:15429
 V5.17.txt:15430
 V5.17.txt:15431
 V5.17.txt:15432
 V5.17.txt:15433
 V5.17.txt:15434
 V5.17.txt:15435
 V5.17.txt:15436
 V5.17.txt:15437
 V5.17.txt:15438
 V5.17.txt:15439
 V5.17.txt:15440
 V5.17.txt:15441
 V5.17.txt:15442
 V5.17.txt:15443
 V5.17.txt:15444
 V5.17.txt:15445
 V5.17.txt:15446
 V5.17.txt:15447
 V5.17.txt:15448
 V5.17.txt:15449
 V5.17.txt:15450
 V5.17.txt:15451
 V5.17.txt:15452
 V5.17.txt:15453
 V5.17.txt:15454
 V5.17.txt:15455
 V5.17.txt:15456
 V5.17.txt:15457
 V5.17.txt:15458
 V5.17.txt:15459
 V5.17.txt:15460
 V5.17.txt:15461
 V5.17.txt:15462
 V5.17.txt:15463
 V5.17.txt:15464
 V5.17.txt:15465
 V5.17.txt:15466
 V5.17.txt:15467
 V5.17.txt:15468
 V5.17.txt:15469
 V5.17.txt:15470
 V5.17.txt:15471
 V5.17.txt:15472
 V5.17.txt:15473
 V5.17.txt:15474
 V5.17.txt:15475
 V5.17.txt:15476
 V5.17.txt:15477
 V5.17.txt:15478
 V5.17.txt:15479
 V5.17.txt:15480
 V5.17.txt:15481
 V5.17.txt:15482
 V5.17.txt:15483
 V5.17.txt:15484
 V5.17.txt:15485
 V5.17.txt:15486
 V5.17.txt:15487
 V5.17.txt:15488
 V5.17.txt:15489
 V5.17.txt:15490
 V5.17.txt:15491
 V5.17.txt:15492
 V5.17.txt:15493
 V5.17.txt:15494
 V5.17.txt:15495
 V5.17.txt:15496
 V5.17.txt:15497
 V5.17.txt:15498
 V5.17.txt:15499
 V5.17.txt:15500
 V5.17.txt:15501
 V5.17.txt:15502
 V5.17.txt:15503
 V5.17.txt:15504
 V5.17.txt:15505
 V5.17.txt:15506
 V5.17.txt:15507
 V5.17.txt:15508
 V5.17.txt:15509
 V5.17.txt:15510
 V5.17.txt:15511
 V5.17.txt:15512
 V5.17.txt:15513
 V5.17.txt:15514
 V5.17.txt:15515
 V5.17.txt:15516
 V5.17.txt:15517
 V5.17.txt:15518
 V5.17.txt:15519
 V5.17.txt:15520
 V5.17.txt:15521
 V5.17.txt:15522
 V5.17.txt:15523
 V5.17.txt:15524
 V5.17.txt:15525
 V5.17.txt:15526
 V5.17.txt:15527
 V5.17.txt:15528
 V5.17.txt:15529
 V5.17.txt:15530
 V5.17.txt:15531
 V5.17.txt:15532
 V5.17.txt:15533
 V5.17.txt:15534
 V5.17.txt:15535
 V5.17.txt:15536
 V5.17.txt:15537
 V5.17.txt:15538
 V5.17.txt:15539
 V5.17.txt:15540
 V5.17.txt:15541
 V5.17.txt:15542
 V5.17.txt:15543
 V5.17.txt:15544
 V5.17.txt:15545
 V5.17.txt:15546
 V5.17.txt:15547
 V5.17.txt:15548
 V5.17.txt:15549
 V5.17.txt:15550
 V5.17.txt:15551
 V5.17.txt:15552
 V5.17.txt:15553
 V5.17.txt:15554
 V5.17.txt:15555
 V5.17.txt:15556
 V5.17.txt:15557
 V5.17.txt:15558
 V5.17.txt:15559
 V5.17.txt:15560
 V5.17.txt:15561
 V5.17.txt:15562
 V5.17.txt:15563
 V5.17.txt:15564
 V5.17.txt:15565
 V5.17.txt:15566
 V5.17.txt:15567
 V5.17.txt:15568
 V5.17.txt:15569
 V5.17.txt:15570
 V5.17.txt:15571
 V5.17.txt:15572
 V5.17.txt:15573
 V5.17.txt:15574
 V5.17.txt:15575
 V5.17.txt:15576
 V5.17.txt:15577
 V5.17.txt:15578
 V5.17.txt:15579
 V5.17.txt:15580
 V5.17.txt:15581
 V5.17.txt:15582
 V5.17.txt:15583
 V5.17.txt:15584
 V5.17.txt:15585
 V5.17.txt:15586
 V5.17.txt:15587
 V5.17.txt:15588
 V5.17.txt:15589
 V5.17.txt:15590
 V5.17.txt:15591
 V5.17.txt:15592
 V5.17.txt:15593
 V5.17.txt:15594
 V5.17.txt:15595
 V5.17.txt:15596
 V5.17.txt:15597
 V5.17.txt:15598
 V5.17.txt:15599
 V5.17.txt:15600
 V5.17.txt:15601
 V5.17.txt:15602
 V5.17.txt:15603
 V5.17.txt:15604
 V5.17.txt:15605
 V5.17.txt:15606
 V5.17.txt:15607
 V5.17.txt:15608
 V5.17.txt:15609
 V5.17.txt:15610
 V5.17.txt:15611
 V5.17.txt:15612
 V5.17.txt:15613
 V5.17.txt:15614
 V5.17.txt:15615
 V5.17.txt:15616
 V5.17.txt:15617
 V5.17.txt:15618
 V5.17.txt:15619
 V5.17.txt:15620
 V5.17.txt:15621
 V5.17.txt:15622
 V5.17.txt:15623
 V5.17.txt:15624
 V5.17.txt:15625
 V5.17.txt:15626
 V5.17.txt:15627
 V5.17.txt:15628
 V5.17.txt:15629
 V5.17.txt:15630
 V5.17.txt:15631
 V5.17.txt:15632
 V5.17.txt:15633
 V5.17.txt:15634
 V5.17.txt:15635
 V5.17.txt:15636
 V5.17.txt:15637
 V5.17.txt:15638
 V5.17.txt:15639
 V5.17.txt:15640
 V5.17.txt:15641
 V5.17.txt:15642
 V5.17.txt:15643
 V5.17.txt:15644
 V5.17.txt:15645
 V5.17.txt:15646
 V5.17.txt:15647
 V5.17.txt:15648
 V5.17.txt:15649
 V5.17.txt:15650
 V5.17.txt:15651
 V5.17.txt:15652
 V5.17.txt:15653
 V5.17.txt:15654
 V5.17.txt:15655
 V5.17.txt:15656
 V5.17.txt:15657
 V5.17.txt:15658
 V5.17.txt:15659
 V5.17.txt:15660
 V5.17.txt:15661
 V5.17.txt:15662
 V5.17.txt:15663
 V5.17.txt:15664
 V5.17.txt:15665
 V5.17.txt:15666
 V5.17.txt:15667
 V5.17.txt:15668
 V5.17.txt:15669
 V5.17.txt:15670
 V5.17.txt:15671
 V5.17.txt:15672
 V5.17.txt:15673
 V5.17.txt:15674
 V5.17.txt:15675
 V5.17.txt:15676
 V5.17.txt:15677
 V5.17.txt:15678
 V5.17.txt:15679
 V5.17.txt:15680
 V5.17.txt:15681
 V5.17.txt:15682
 V5.17.txt:15683
 V5.17.txt:15684
 V5.17.txt:15685
 V5.17.txt:15686
 V5.17.txt:15687
 V5.17.txt:15688
 V5.17.txt:15689
 V5.17.txt:15690
 V5.17.txt:15691
 V5.17.txt:15692
 V5.17.txt:15693
 V5.17.txt:15694
 V5.17.txt:15695
 V5.17.txt:15696
 V5.17.txt:15697
 V5.17.txt:15698
 V5.17.txt:15699
 V5.17.txt:15700
 V5.17.txt:15701
 V5.17.txt:15702
 V5.17.txt:15703
 V5.17.txt:15704
 V5.17.txt:15705
 V5.17.txt:15706
 V5.17.txt:15707
 V5.17.txt:15708
 V5.17.txt:15709
 V5.17.txt:15710
 V5.17.txt:15711
 V5.17.txt:15712
 V5.17.txt:15713
 V5.17.txt:15714
 V5.17.txt:15715
 V5.17.txt:15716
 V5.17.txt:15717
 V5.17.txt:15718
 V5.17.txt:15719
 V5.17.txt:15720
 V5.17.txt:15721
 V5.17.txt:15722
 V5.17.txt:15723
 V5.17.txt:15724
 V5.17.txt:15725
 V5.17.txt:15726
 V5.17.txt:15727
 V5.17.txt:15728
 V5.17.txt:15729
 V5.17.txt:15730
 V5.17.txt:15731
 V5.17.txt:15732
 V5.17.txt:15733
 V5.17.txt:15734
 V5.17.txt:15735
 V5.17.txt:15736
 V5.17.txt:15737
 V5.17.txt:15738
 V5.17.txt:15739
 V5.17.txt:15740
 V5.17.txt:15741
 V5.17.txt:15742
 V5.17.txt:15743
 V5.17.txt:15744
 V5.17.txt:15745
 V5.17.txt:15746
 V5.17.txt:15747
 V5.17.txt:15748
 V5.17.txt:15749
 V5.17.txt:15750
 V5.17.txt:15751
 V5.17.txt:15752
 V5.17.txt:15753
 V5.17.txt:15754
 V5.17.txt:15755
 V5.17.txt:15756
 V5.17.txt:15757
 V5.17.txt:15758
 V5.17.txt:15759
 V5.17.txt:15760
 V5.17.txt:15761
 V5.17.txt:15762
 V5.17.txt:15763
 V5.17.txt:15764
 V5.17.txt:15765
 V5.17.txt:15766
 V5.17.txt:15767
 V5.17.txt:15768
 V5.17.txt:15769
 V5.17.txt:15770
 V5.17.txt:15771
 V5.17.txt:15772
 V5.17.txt:15773
 V5.17.txt:15774
 V5.17.txt:15775
 V5.17.txt:15776
 V5.17.txt:15777
 V5.17.txt:15778
 V5.17.txt:15779
 V5.17.txt:15780
 V5.17.txt:15781
 V5.17.txt:15782
 V5.17.txt:15783
 V5.17.txt:15784
 V5.17.txt:15785
 V5.17.txt:15786
 V5.17.txt:15787
 V5.17.txt:15788
 V5.17.txt:15789
 V5.17.txt:15790
 V5.17.txt:15791
 V5.17.txt:15792
 V5.17.txt:15793
 V5.17.txt:15794
 V5.17.txt:15795
 V5.17.txt:15796
 V5.17.txt:15797
 V5.17.txt:15798
 V5.17.txt:15799
 V5.17.txt:15800
 V5.17.txt:15801
 V5.17.txt:15802
 V5.17.txt:15803
 V5.17.txt:15804
 V5.17.txt:15805
 V5.17.txt:15806
 V5.17.txt:15807
 V5.17.txt:15808
 V5.17.txt:15809
 V5.17.txt:15810
 V5.17.txt:15811
 V5.17.txt:15812
 V5.17.txt:15813
 V5.17.txt:15814
 V5.17.txt:15815
 V5.17.txt:15816
 V5.17.txt:15817
 V5.17.txt:15818
 V5.17.txt:15819
 V5.17.txt:15820
 V5.17.txt:15821
 V5.17.txt:15822
 V5.17.txt:15823
 V5.17.txt:15824
 V5.17.txt:15825
 V5.17.txt:15826
 V5.17.txt:15827
 V5.17.txt:15828
 V5.17.txt:15829
 V5.17.txt:15830
 V5.17.txt:15831
 V5.17.txt:15832
 V5.17.txt:15833
 V5.17.txt:15834
 V5.17.txt:15835
 V5.17.txt:15836
 V5.17.txt:15837
 V5.17.txt:15838
 V5.17.txt:15839
 V5.17.txt:15840
 V5.17.txt:15841
 V5.17.txt:15842
 V5.17.txt:15843
 V5.17.txt:15844
 V5.17.txt:15845
 V5.17.txt:15846
 V5.17.txt:15847
 V5.17.txt:15848
 V5.17.txt:15849
 V5.17.txt:15850
 V5.17.txt:15851
 V5.17.txt:15852
 V5.17.txt:15853
 V5.17.txt:15854
 V5.17.txt:15855
 V5.17.txt:15856
 V5.17.txt:15857
 V5.17.txt:15858
 V5.17.txt:15859
 V5.17.txt:15860
 V5.17.txt:15861
 V5.17.txt:15862
 V5.17.txt:15863
 V5.17.txt:15864
 V5.17.txt:15865
 V5.17.txt:15866
 V5.17.txt:15867
 V5.17.txt:15868
 V5.17.txt:15869
 V5.17.txt:15870
 V5.17.txt:15871
 V5.17.txt:15872
 V5.17.txt:15873
 V5.17.txt:15874
 V5.17.txt:15875
 V5.17.txt:15876
 V5.17.txt:15877
 V5.17.txt:15878
 V5.17.txt:15879
 V5.17.txt:15880
 V5.17.txt:15881
 V5.17.txt:15882
 V5.17.txt:15883
 V5.17.txt:15884
 V5.17.txt:15885
 V5.17.txt:15886
 V5.17.txt:15887
 V5.17.txt:15888
 V5.17.txt:15889
 V5.17.txt:15890
 V5.17.txt:15891
 V5.17.txt:15892
 V5.17.txt:15893
 V5.17.txt:15894
 V5.17.txt:15895
 V5.17.txt:15896
 V5.17.txt:15897
 V5.17.txt:15898
 V5.17.txt:15899
 V5.17.txt:15900
 V5.17.txt:15901
 V5.17.txt:15902
 V5.17.txt:15903
 V5.17.txt:15904
 V5.17.txt:15905
 V5.17.txt:15906
 V5.17.txt:15907
 V5.17.txt:15908
 V5.17.txt:15909
 V5.17.txt:15910
 V5.17.txt:15911
 V5.17.txt:15912
 V5.17.txt:15913
 V5.17.txt:15914
 V5.17.txt:15915
 V5.17.txt:15916
 V5.17.txt:15917
 V5.17.txt:15918
 V5.17.txt:15919
 V5.17.txt:15920
 V5.17.txt:15921
 V5.17.txt:15922
 V5.17.txt:15923
 V5.17.txt:15924
 V5.17.txt:15925
 V5.17.txt:15926
 V5.17.txt:15927
 V5.17.txt:15928
 V5.17.txt:15929
 V5.17.txt:15930
 V5.17.txt:15931
 V5.17.txt:15932
 V5.17.txt:15933
 V5.17.txt:15934
 V5.17.txt:15935
 V5.17.txt:15936
 V5.17.txt:15937
 V5.17.txt:15938
 V5.17.txt:15939
 V5.17.txt:15940
 V5.17.txt:15941
 V5.17.txt:15942
 V5.17.txt:15943
 V5.17.txt:15944
 V5.17.txt:15945
 V5.17.txt:15946
 V5.17.txt:15947
 V5.17.txt:15948
 V5.17.txt:15949
 V5.17.txt:15950
 V5.17.txt:15951
 V5.17.txt:15952
 V5.17.txt:15953
 V5.17.txt:15954
 V5.17.txt:15955
 V5.17.txt:15956
 V5.17.txt:15957
 V5.17.txt:15958
 V5.17.txt:15959
 V5.17.txt:15960
 V5.17.txt:15961
 V5.17.txt:15962
 V5.17.txt:15963
 V5.17.txt:15964
 V5.17.txt:15965
 V5.17.txt:15966
 V5.17.txt:15967
 V5.17.txt:15968
 V5.17.txt:15969
 V5.17.txt:15970
 V5.17.txt:15971
 V5.17.txt:15972
 V5.17.txt:15973
 V5.17.txt:15974
 V5.17.txt:15975
 V5.17.txt:15976
 V5.17.txt:15977
 V5.17.txt:15978
 V5.17.txt:15979
 V5.17.txt:15980
 V5.17.txt:15981
 V5.17.txt:15982
 V5.17.txt:15983
 V5.17.txt:15984
 V5.17.txt:15985
 V5.17.txt:15986
 V5.17.txt:15987
 V5.17.txt:15988
 V5.17.txt:15989
 V5.17.txt:15990
 V5.17.txt:15991
 V5.17.txt:15992
 V5.17.txt:15993
 V5.17.txt:15994
 V5.17.txt:15995
 V5.17.txt:15996
 V5.17.txt:15997
 V5.17.txt:15998
 V5.17.txt:15999
 V5.17.txt:16000
 V5.17.txt:16001
 V5.17.txt:16002
 V5.17.txt:16003
 V5.17.txt:16004
 V5.17.txt:16005
 V5.17.txt:16006
 V5.17.txt:16007
 V5.17.txt:16008
 V5.17.txt:16009
 V5.17.txt:16010
 V5.17.txt:16011
 V5.17.txt:16012
 V5.17.txt:16013
 V5.17.txt:16014
 V5.17.txt:16015
 V5.17.txt:16016
 V5.17.txt:16017
 V5.17.txt:16018
 V5.17.txt:16019
 V5.17.txt:16020
 V5.17.txt:16021
 V5.17.txt:16022
 V5.17.txt:16023
 V5.17.txt:16024
 V5.17.txt:16025
 V5.17.txt:16026
 V5.17.txt:16027
 V5.17.txt:16028
 V5.17.txt:16029
 V5.17.txt:16030
 V5.17.txt:16031
 V5.17.txt:16032
 V5.17.txt:16033
 V5.17.txt:16034
 V5.17.txt:16035
 V5.17.txt:16036
 V5.17.txt:16037
 V5.17.txt:16038
 V5.17.txt:16039
 V5.17.txt:16040
 V5.17.txt:16041
 V5.17.txt:16042
 V5.17.txt:16043
 V5.17.txt:16044
 V5.17.txt:16045
 V5.17.txt:16046
 V5.17.txt:16047
 V5.17.txt:16048
 V5.17.txt:16049
 V5.17.txt:16050
 V5.17.txt:16051
 V5.17.txt:16052
 V5.17.txt:16053
 V5.17.txt:16054
 V5.17.txt:16055
 V5.17.txt:16056
 V5.17.txt:16057
 V5.17.txt:16058
 V5.17.txt:16059
 V5.17.txt:16060
 V5.17.txt:16061
 V5.17.txt:16062
 V5.17.txt:16063
 V5.17.txt:16064
 V5.17.txt:16065
 V5.17.txt:16066
 V5.17.txt:16067
 V5.17.txt:16068
 V5.17.txt:16069
 V5.17.txt:16070
 V5.17.txt:16071
 V5.17.txt:16072
 V5.17.txt:16073
 V5.17.txt:16074
 V5.17.txt:16075
 V5.17.txt:16076
 V5.17.txt:16077
 V5.17.txt:16078
 V5.17.txt:16079
 V5.17.txt:16080
 V5.17.txt:16081
 V5.17.txt:16082
 V5.17.txt:16083
 V5.17.txt:16084
 V5.17.txt:16085
 V5.17.txt:16086
 V5.17.txt:16087
 V5.17.txt:16088
 V5.17.txt:16089
 V5.17.txt:16090
 V5.17.txt:16091
 V5.17.txt:16092
 V5.17.txt:16093
 V5.17.txt:16094
 V5.17.txt:16095
 V5.17.txt:16096
 V5.17.txt:16097
 V5.17.txt:16098
 V5.17.txt:16099
 V5.17.txt:16100
 V5.17.txt:16101
 V5.17.txt:16102
 V5.17.txt:16103
 V5.17.txt:16104
 V5.17.txt:16105
 V5.17.txt:16106
 V5.17.txt:16107
 V5.17.txt:16108
 V5.17.txt:16109
 V5.17.txt:16110
 V5.17.txt:16111
 V5.17.txt:16112
 V5.17.txt:16113
 V5.17.txt:16114
 V5.17.txt:16115
 V5.17.txt:16116
 V5.17.txt:16117
 V5.17.txt:16118
 V5.17.txt:16119
 V5.17.txt:16120
 V5.17.txt:16121
 V5.17.txt:16122
 V5.17.txt:16123
 V5.17.txt:16124
 V5.17.txt:16125
 V5.17.txt:16126
 V5.17.txt:16127
 V5.17.txt:16128
 V5.17.txt:16129
 V5.17.txt:16130
 V5.17.txt:16131
 V5.17.txt:16132
 V5.17.txt:16133
 V5.17.txt:16134
 V5.17.txt:16135
 V5.17.txt:16136
 V5.17.txt:16137
 V5.17.txt:16138
 V5.17.txt:16139
 V5.17.txt:16140
 V5.17.txt:16141
 V5.17.txt:16142
 V5.17.txt:16143
 V5.17.txt:16144
 V5.17.txt:16145
 V5.17.txt:16146
 V5.17.txt:16147
 V5.17.txt:16148
 V5.17.txt:16149
 V5.17.txt:16150
 V5.17.txt:16151
 V5.17.txt:16152
 V5.17.txt:16153
 V5.17.txt:16154
 V5.17.txt:16155
 V5.17.txt:16156
 V5.17.txt:16157
 V5.17.txt:16158
 V5.17.txt:16159
 V5.17.txt:16160
 V5.17.txt:16161
 V5.17.txt:16162
 V5.17.txt:16163
 V5.17.txt:16164
 V5.17.txt:16165
 V5.17.txt:16166
 V5.17.txt:16167
 V5.17.txt:16168
 V5.17.txt:16169
 V5.17.txt:16170
 V5.17.txt:16171
 V5.17.txt:16172
 V5.17.txt:16173
 V5.17.txt:16174
 V5.17.txt:16175
 V5.17.txt:16176
 V5.17.txt:16177
 V5.17.txt:16178
 V5.17.txt:16179
 V5.17.txt:16180
 V5.17.txt:16181
 V5.17.txt:16182
 V5.17.txt:16183
 V5.17.txt:16184
 V5.17.txt:16185
 V5.17.txt:16186
 V5.17.txt:16187
 V5.17.txt:16188
 V5.17.txt:16189
 V5.17.txt:16190
 V5.17.txt:16191
 V5.17.txt:16192
 V5.17.txt:16193
 V5.17.txt:16194
 V5.17.txt:16195
 V5.17.txt:16196
 V5.17.txt:16197
 V5.17.txt:16198
 V5.17.txt:16199
 V5.17.txt:16200
 V5.17.txt:16201
 V5.17.txt:16202
 V5.17.txt:16203
 V5.17.txt:16204
 V5.17.txt:16205
 V5.17.txt:16206
 V5.17.txt:16207
 V5.17.txt:16208
 V5.17.txt:16209
 V5.17.txt:16210
 V5.17.txt:16211
 V5.17.txt:16212
 V5.17.txt:16213
 V5.17.txt:16214
 V5.17.txt:16215
 V5.17.txt:16216
 V5.17.txt:16217
 V5.17.txt:16218
 V5.17.txt:16219
 V5.17.txt:16220
 V5.17.txt:16221
 V5.17.txt:16222
 V5.17.txt:16223
 V5.17.txt:16224
 V5.17.txt:16225
 V5.17.txt:16226
 V5.17.txt:16227
 V5.17.txt:16228
 V5.17.txt:16229
 V5.17.txt:16230
 V5.17.txt:16231
 V5.17.txt:16232
 V5.17.txt:16233
 V5.17.txt:16234
 V5.17.txt:16235
 V5.17.txt:16236
 V5.17.txt:16237
 V5.17.txt:16238
 V5.17.txt:16239
 V5.17.txt:16240
 V5.17.txt:16241
 V5.17.txt:16242
 V5.17.txt:16243
 V5.17.txt:16244
 V5.17.txt:16245
 V5.17.txt:16246
 V5.17.txt:16247
 V5.17.txt:16248
 V5.17.txt:16249
 V5.17.txt:16250
 V5.17.txt:16251
 V5.17.txt:16252
 V5.17.txt:16253
 V5.17.txt:16254
 V5.17.txt:16255
 V5.17.txt:16256
 V5.17.txt:16257
 V5.17.txt:16258
 V5.17.txt:16259
 V5.17.txt:16260
 V5.17.txt:16261
 V5.17.txt:16262
 V5.17.txt:16263
 V5.17.txt:16264
 V5.17.txt:16265
 V5.17.txt:16266
 V5.17.txt:16267
 V5.17.txt:16268
 V5.17.txt:16269
 V5.17.txt:16270
 V5.17.txt:16271
 V5.17.txt:16272
 V5.17.txt:16273
 V5.17.txt:16274
 V5.17.txt:16275
 V5.17.txt:16276
 V5.17.txt:16277
 V5.17.txt:16278
 V5.17.txt:16279
 V5.17.txt:16280
 V5.17.txt:16281
 V5.17.txt:16282
 V5.17.txt:16283
 V5.17.txt:16284
 V5.17.txt:16285
 V5.17.txt:16286
 V5.17.txt:16287
 V5.17.txt:16288
 V5.17.txt:16289
 V5.17.txt:16290
 V5.17.txt:16291
 V5.17.txt:16292
 V5.17.txt:16293
 V5.17.txt:16294
 V5.17.txt:16295
 V5.17.txt:16296
 V5.17.txt:16297
 V5.17.txt:16298
 V5.17.txt:16299
 V5.17.txt:16300
 V5.17.txt:16301
 V5.17.txt:16302
 V5.17.txt:16303
 V5.17.txt:16304
 V5.17.txt:16305
 V5.17.txt:16306
 V5.17.txt:16307
 V5.17.txt:16308
 V5.17.txt:16309
 V5.17.txt:16310
 V5.17.txt:16311
 V5.17.txt:16312
 V5.17.txt:16313
 V5.17.txt:16314
 V5.17.txt:16315
 V5.17.txt:16316
 V5.17.txt:16317
 V5.17.txt:16318
 V5.17.txt:16319
 V5.17.txt:16320
 V5.17.txt:16321
 V5.17.txt:16322
 V5.17.txt:16323
 V5.17.txt:16324
 V5.17.txt:16325
 V5.17.txt:16326
 V5.17.txt:16327
 V5.17.txt:16328
 V5.17.txt:16329
 V5.17.txt:16330
 V5.17.txt:16331
 V5.17.txt:16332
 V5.17.txt:16333
 V5.17.txt:16334
 V5.17.txt:16335
 V5.17.txt:16336
 V5.17.txt:16337
 V5.17.txt:16338
 V5.17.txt:16339
 V5.17.txt:16340
 V5.17.txt:16341
 V5.17.txt:16342
 V5.17.txt:16343
 V5.17.txt:16344
 V5.17.txt:16345
 V5.17.txt:16346
 V5.17.txt:16347
 V5.17.txt:16348
 V5.17.txt:16349
 V5.17.txt:16350
 V5.17.txt:16351
 V5.17.txt:16352
 V5.17.txt:16353
 V5.17.txt:16354
 V5.17.txt:16355
 V5.17.txt:16356
 V5.17.txt:16357
 V5.17.txt:16358
 V5.17.txt:16359
 V5.17.txt:16360
 V5.17.txt:16361
 V5.17.txt:16362
 V5.17.txt:16363
 V5.17.txt:16364
 V5.17.txt:16365
 V5.17.txt:16366
 V5.17.txt:16367
 V5.17.txt:16368
 V5.17.txt:16369
 V5.17.txt:16370
 V5.17.txt:16371
 V5.17.txt:16372
 V5.17.txt:16373
 V5.17.txt:16374
 V5.17.txt:16375
 V5.17.txt:16376
 V5.17.txt:16377
 V5.17.txt:16378
 V5.17.txt:16379
 V5.17.txt:16380
 V5.17.txt:16381
 V5.17.txt:16382
 V5.17.txt:16383
 V5.17.txt:16384
 V5.17.txt:16385
 V5.17.txt:16386
 V5.17.txt:16387
 V5.17.txt:16388
 V5.17.txt:16389
 V5.17.txt:16390
 V5.17.txt:16391
 V5.17.txt:16392
 V5.17.txt:16393
 V5.17.txt:16394
 V5.17.txt:16395
 V5.17.txt:16396
 V5.17.txt:16397
 V5.17.txt:16398
 V5.17.txt:16399
 V5.17.txt:16400
 V5.17.txt:16401
 V5.17.txt:16402
 V5.17.txt:16403
 V5.17.txt:16404
 V5.17.txt:16405
 V5.17.txt:16406
 V5.17.txt:16407
 V5.17.txt:16408
 V5.17.txt:16409
 V5.17.txt:16410
 V5.17.txt:16411
 V5.17.txt:16412
 V5.17.txt:16413
 V5.17.txt:16414
 V5.17.txt:16415
 V5.17.txt:16416
 V5.17.txt:16417
 V5.17.txt:16418
 V5.17.txt:16419
 V5.17.txt:16420
 V5.17.txt:16421
 V5.17.txt:16422
 V5.17.txt:16423
 V5.17.txt:16424
 V5.17.txt:16425
 V5.17.txt:16426
 V5.17.txt:16427
 V5.17.txt:16428
 V5.17.txt:16429
 V5.17.txt:16430
 V5.17.txt:16431
 V5.17.txt:16432
 V5.17.txt:16433
 V5.17.txt:16434
 V5.17.txt:16435
 V5.17.txt:16436
 V5.17.txt:16437
 V5.17.txt:16438
 V5.17.txt:16439
 V5.17.txt:16440
 V5.17.txt:16441
 V5.17.txt:16442
 V5.17.txt:16443
 V5.17.txt:16444
 V5.17.txt:16445
 V5.17.txt:16446
 V5.17.txt:16447
 V5.17.txt:16448
 V5.17.txt:16449
 V5.17.txt:16450
 V5.17.txt:16451
 V5.17.txt:16452
 V5.17.txt:16453
 V5.17.txt:16454
 V5.17.txt:16455
 V5.17.txt:16456
 V5.17.txt:16457
 V5.17.txt:16458
 V5.17.txt:16459
 V5.17.txt:16460
 V5.17.txt:16461
 V5.17.txt:16462
 V5.17.txt:16463
 V5.17.txt:16464
 V5.17.txt:16465
 V5.17.txt:16466
 V5.17.txt:16467
 V5.17.txt:16468
 V5.17.txt:16469
 V5.17.txt:16470
 V5.17.txt:16471
 V5.17.txt:16472
 V5.17.txt:16473
 V5.17.txt:16474
 V5.17.txt:16475
 V5.17.txt:16476
 V5.17.txt:16477
 V5.17.txt:16478
 V5.17.txt:16479
 V5.17.txt:16480
 V5.17.txt:16481
 V5.17.txt:16482
 V5.17.txt:16483
 V5.17.txt:16484
 V5.17.txt:16485
 V5.17.txt:16486
 V5.17.txt:16487
 V5.17.txt:16488
 V5.17.txt:16489
 V5.17.txt:16490
 V5.17.txt:16491
 V5.17.txt:16492
 V5.17.txt:16493
 V5.17.txt:16494
 V5.17.txt:16495
 V5.17.txt:16496
 V5.17.txt:16497
 V5.17.txt:16498
 V5.17.txt:16499
 V5.17.txt:16500
 V5.17.txt:16501
 V5.17.txt:16502
 V5.17.txt:16503
 V5.17.txt:16504
 V5.17.txt:16505
 V5.17.txt:16506
 V5.17.txt:16507
 V5.17.txt:16508
 V5.17.txt:16509
 V5.17.txt:16510
 V5.17.txt:16511
 V5.17.txt:16512
 V5.17.txt:16513
 V5.17.txt:16514
 V5.17.txt:16515
 V5.17.txt:16516
 V5.17.txt:16517
 V5.17.txt:16518
 V5.17.txt:16519
 V5.17.txt:16520
 V5.17.txt:16521
 V5.17.txt:16522
 V5.17.txt:16523
 V5.17.txt:16524
 V5.17.txt:16525
 V5.17.txt:16526
 V5.17.txt:16527
 V5.17.txt:16528
 V5.17.txt:16529
 V5.17.txt:16530
 V5.17.txt:16531
 V5.17.txt:16532
 V5.17.txt:16533
 V5.17.txt:16534
 V5.17.txt:16535
 V5.17.txt:16536
 V5.17.txt:16537
 V5.17.txt:16538
 V5.17.txt:16539
 V5.17.txt:16540
 V5.17.txt:16541
 V5.17.txt:16542
 V5.17.txt:16543
 V5.17.txt:16544
 V5.17.txt:16545
 V5.17.txt:16546
 V5.17.txt:16547
 V5.17.txt:16548
 V5.17.txt:16549
 V5.17.txt:16550
 V5.17.txt:16551
 V5.17.txt:16552
 V5.17.txt:16553
 V5.17.txt:16554
 V5.17.txt:16555
 V5.17.txt:16556
 V5.17.txt:16557
 V5.17.txt:16558
 V5.17.txt:16559
 V5.17.txt:16560
 V5.17.txt:16561
 V5.17.txt:16562
 V5.17.txt:16563
 V5.17.txt:16564
 V5.17.txt:16565
 V5.17.txt:16566
 V5.17.txt:16567
 V5.17.txt:16568
 V5.17.txt:16569
 V5.17.txt:16570
 V5.17.txt:16571
 V5.17.txt:16572
 V5.17.txt:16573
 V5.17.txt:16574
 V5.17.txt:16575
 V5.17.txt:16576
 V5.17.txt:16577
 V5.17.txt:16578
 V5.17.txt:16579
 V5.17.txt:16580
 V5.17.txt:16581
 V5.17.txt:16582
 V5.17.txt:16583
 V5.17.txt:16584
 V5.17.txt:16585
 V5.17.txt:16586
 V5.17.txt:16587
 V5.17.txt:16588
 V5.17.txt:16589
 V5.17.txt:16590
 V5.17.txt:16591
 V5.17.txt:16592
 V5.17.txt:16593
 V5.17.txt:16594
 V5.17.txt:16595
 V5.17.txt:16596
 V5.17.txt:16597
 V5.17.txt:16598
 V5.17.txt:16599
 V5.17.txt:16600
 V5.17.txt:16601
 V5.17.txt:16602
 V5.17.txt:16603
 V5.17.txt:16604
 V5.17.txt:16605
 V5.17.txt:16606
 V5.17.txt:16607
 V5.17.txt:16608
 V5.17.txt:16609
 V5.17.txt:16610
 V5.17.txt:16611
 V5.17.txt:16612
 V5.17.txt:16613
 V5.17.txt:16614
 V5.17.txt:16615
 V5.17.txt:16616
 V5.17.txt:16617
 V5.17.txt:16618
 V5.17.txt:16619
 V5.17.txt:16620
 V5.17.txt:16621
 V5.17.txt:16622
 V5.17.txt:16623
 V5.17.txt:16624
 V5.17.txt:16625
 V5.17.txt:16626
 V5.17.txt:16627
 V5.17.txt:16628
 V5.17.txt:16629
 V5.17.txt:16630
 V5.17.txt:16631
 V5.17.txt:16632
 V5.17.txt:16633
 V5.17.txt:16634
 V5.17.txt:16635
 V5.17.txt:16636
 V5.17.txt:16637
 V5.17.txt:16638
 V5.17.txt:16639
 V5.17.txt:16640
 V5.17.txt:16641
 V5.17.txt:16642
 V5.17.txt:16643
 V5.17.txt:16644
 V5.17.txt:16645
 V5.17.txt:16646
 V5.17.txt:16647
 V5.17.txt:16648
 V5.17.txt:16649
 V5.17.txt:16650
 V5.17.txt:16651
 V5.17.txt:16652
 V5.17.txt:16653
 V5.17.txt:16654
 V5.17.txt:16655
 V5.17.txt:16656
 V5.17.txt:16657
 V5.17.txt:16658
 V5.17.txt:16659
 V5.17.txt:16660
 V5.17.txt:16661
 V5.17.txt:16662
 V5.17.txt:16663
 V5.17.txt:16664
 V5.17.txt:16665
 V5.17.txt:16666
 V5.17.txt:16667
 V5.17.txt:16668
 V5.17.txt:16669
 V5.17.txt:16670
 V5.17.txt:16671
 V5.17.txt:16672
 V5.17.txt:16673
 V5.17.txt:16674
 V5.17.txt:16675
 V5.17.txt:16676
 V5.17.txt:16677
 V5.17.txt:16678
 V5.17.txt:16679
 V5.17.txt:16680
 V5.17.txt:16681
 V5.17.txt:16682
 V5.17.txt:16683
 V5.17.txt:16684
 V5.17.txt:16685
 V5.17.txt:16686
 V5.17.txt:16687
 V5.17.txt:16688
 V5.17.txt:16689
 V5.17.txt:16690
 V5.17.txt:16691
 V5.17.txt:16692
 V5.17.txt:16693
 V5.17.txt:16694
 V5.17.txt:16695
 V5.17.txt:16696
 V5.17.txt:16697
 V5.17.txt:16698
 V5.17.txt:16699
 V5.17.txt:16700
 V5.17.txt:16701
 V5.17.txt:16702
 V5.17.txt:16703
 V5.17.txt:16704
 V5.17.txt:16705
 V5.17.txt:16706
 V5.17.txt:16707
 V5.17.txt:16708
 V5.17.txt:16709
 V5.17.txt:16710
 V5.17.txt:16711
 V5.17.txt:16712
 V5.17.txt:16713
 V5.17.txt:16714
 V5.17.txt:16715
 V5.17.txt:16716
 V5.17.txt:16717
 V5.17.txt:16718
 V5.17.txt:16719
 V5.17.txt:16720
 V5.17.txt:16721
 V5.17.txt:16722
 V5.17.txt:16723
 V5.17.txt:16724
 V5.17.txt:16725
 V5.17.txt:16726
 V5.17.txt:16727
 V5.17.txt:16728
 V5.17.txt:16729
 V5.17.txt:16730
 V5.17.txt:16731
 V5.17.txt:16732
 V5.17.txt:16733
 V5.17.txt:16734
 V5.17.txt:16735
 V5.17.txt:16736
 V5.17.txt:16737
 V5.17.txt:16738
 V5.17.txt:16739
 V5.17.txt:16740
 V5.17.txt:16741
 V5.17.txt:16742
 V5.17.txt:16743
 V5.17.txt:16744
 V5.17.txt:16745
 V5.17.txt:16746
 V5.17.txt:16747
 V5.17.txt:16748
 V5.17.txt:16749
 V5.17.txt:16750
 V5.17.txt:16751
 V5.17.txt:16752
 V5.17.txt:16753
 V5.17.txt:16754
 V5.17.txt:16755
 V5.17.txt:16756
 V5.17.txt:16757
 V5.17.txt:16758
 V5.17.txt:16759
 V5.17.txt:16760
 V5.17.txt:16761
 V5.17.txt:16762
 V5.17.txt:16763
 V5.17.txt:16764
 V5.17.txt:16765
 V5.17.txt:16766
 V5.17.txt:16767
 V5.17.txt:16768
 V5.17.txt:16769
 V5.17.txt:16770
 V5.17.txt:16771
 V5.17.txt:16772
 V5.17.txt:16773
 V5.17.txt:16774
 V5.17.txt:16775
 V5.17.txt:16776
 V5.17.txt:16777
 V5.17.txt:16778
 V5.17.txt:16779
 V5.17.txt:16780
 V5.17.txt:16781
 V5.17.txt:16782
 V5.17.txt:16783
 V5.17.txt:16784
 V5.17.txt:16785
 V5.17.txt:16786
 V5.17.txt:16787
 V5.17.txt:16788
 V5.17.txt:16789
 V5.17.txt:16790
 V5.17.txt:16791
 V5.17.txt:16792
 V5.17.txt:16793
 V5.17.txt:16794
 V5.17.txt:16795
 V5.17.txt:16796
 V5.17.txt:16797
 V5.17.txt:16798
 V5.17.txt:16799
 V5.17.txt:16800
 V5.17.txt:16801
 V5.17.txt:16802
 V5.17.txt:16803
 V5.17.txt:16804
 V5.17.txt:16805
 V5.17.txt:16806
 V5.17.txt:16807
 V5.17.txt:16808
 V5.17.txt:16809
 V5.17.txt:16810
 V5.17.txt:16811
 V5.17.txt:16812
 V5.17.txt:16813
 V5.17.txt:16814
 V5.17.txt:16815
 V5.17.txt:16816
 V5.17.txt:16817
 V5.17.txt:16818
 V5.17.txt:16819
 V5.17.txt:16820
 V5.17.txt:16821
 V5.17.txt:16822
 V5.17.txt:16823
 V5.17.txt:16824
 V5.17.txt:16825
 V5.17.txt:16826
 V5.17.txt:16827
 V5.17.txt:16828
 V5.17.txt:16829
 V5.17.txt:16830
 V5.17.txt:16831
 V5.17.txt:16832
 V5.17.txt:16833
 V5.17.txt:16834
 V5.17.txt:16835
 V5.17.txt:16836
 V5.17.txt:16837
 V5.17.txt:16838
 V5.17.txt:16839
 V5.17.txt:16840
 V5.17.txt:16841
 V5.17.txt:16842
 V5.17.txt:16843
 V5.17.txt:16844
 V5.17.txt:16845
 V5.17.txt:16846
 V5.17.txt:16847
 V5.17.txt:16848
 V5.17.txt:16849
 V5.17.txt:16850
 V5.17.txt:16851
 V5.17.txt:16852
 V5.17.txt:16853
 V5.17.txt:16854
 V5.17.txt:16855
 V5.17.txt:16856
 V5.17.txt:16857
 V5.17.txt:16858
 V5.17.txt:16859
 V5.17.txt:16860
 V5.17.txt:16861
 V5.17.txt:16862
 V5.17.txt:16863
 V5.17.txt:16864
 V5.17.txt:16865
 V5.17.txt:16866
 V5.17.txt:16867
 V5.17.txt:16868
 V5.17.txt:16869
 V5.17.txt:16870
 V5.17.txt:16871
 V5.17.txt:16872
 V5.17.txt:16873
 V5.17.txt:16874
 V5.17.txt:16875
 V5.17.txt:16876
 V5.17.txt:16877
 V5.17.txt:16878
 V5.17.txt:16879
 V5.17.txt:16880
 V5.17.txt:16881
 V5.17.txt:16882
 V5.17.txt:16883
 V5.17.txt:16884
 V5.17.txt:16885
 V5.17.txt:16886
 V5.17.txt:16887
 V5.17.txt:16888
 V5.17.txt:16889
 V5.17.txt:16890
 V5.17.txt:16891
 V5.17.txt:16892
 V5.17.txt:16893
 V5.17.txt:16894
 V5.17.txt:16895
 V5.17.txt:16896
 V5.17.txt:16897
 V5.17.txt:16898
 V5.17.txt:16899
 V5.17.txt:16900
 V5.17.txt:16901
 V5.17.txt:16902
 V5.17.txt:16903
 V5.17.txt:16904
 V5.17.txt:16905
 V5.17.txt:16906
 V5.17.txt:16907
 V5.17.txt:16908
 V5.17.txt:16909
 V5.17.txt:16910
 V5.17.txt:16911
 V5.17.txt:16912
 V5.17.txt:16913
 V5.17.txt:16914
 V5.17.txt:16915
 V5.17.txt:16916
 V5.17.txt:16917
 V5.17.txt:16918
 V5.17.txt:16919
 V5.17.txt:16920
 V5.17.txt:16921
 V5.17.txt:16922
 V5.17.txt:16923
 V5.17.txt:16924
 V5.17.txt:16925
 V5.17.txt:16926
 V5.17.txt:16927
 V5.17.txt:16928
 V5.17.txt:16929
 V5.17.txt:16930
 V5.17.txt:16931
 V5.17.txt:16932
 V5.17.txt:16933
 V5.17.txt:16934
 V5.17.txt:16935
 V5.17.txt:16936
 V5.17.txt:16937
 V5.17.txt:16938
 V5.17.txt:16939
 V5.17.txt:16940
 V5.17.txt:16941
 V5.17.txt:16942
 V5.17.txt:16943
 V5.17.txt:16944
 V5.17.txt:16945
 V5.17.txt:16946
 V5.17.txt:16947
 V5.17.txt:16948
 V5.17.txt:16949
 V5.17.txt:16950
 V5.17.txt:16951
 V5.17.txt:16952
 V5.17.txt:16953
 V5.17.txt:16954
 V5.17.txt:16955
 V5.17.txt:16956
 V5.17.txt:16957
 V5.17.txt:16958
 V5.17.txt:16959
 V5.17.txt:16960
 V5.17.txt:16961
 V5.17.txt:16962
 V5.17.txt:16963
 V5.17.txt:16964
 V5.17.txt:16965
 V5.17.txt:16966
 V5.17.txt:16967
 V5.17.txt:16968
 V5.17.txt:16969
 V5.17.txt:16970
 V5.17.txt:16971
 V5.17.txt:16972
 V5.17.txt:16973
 V5.17.txt:16974
 V5.17.txt:16975
 V5.17.txt:16976
 V5.17.txt:16977
 V5.17.txt:16978
 V5.17.txt:16979
 V5.17.txt:16980
 V5.17.txt:16981
 V5.17.txt:16982
 V5.17.txt:16983
 V5.17.txt:16984
 V5.17.txt:16985
 V5.17.txt:16986
 V5.17.txt:16987
 V5.17.txt:16988
 V5.17.txt:16989
 V5.17.txt:16990
 V5.17.txt:16991
 V5.17.txt:16992
 V5.17.txt:16993
 V5.17.txt:16994
 V5.17.txt:16995
 V5.17.txt:16996
 V5.17.txt:16997
 V5.17.txt:16998
 V5.17.txt:16999
 V5.17.txt:17000
 V5.17.txt:17001
 V5.17.txt:17002
 V5.17.txt:17003
 V5.17.txt:17004
 V5.17.txt:17005
 V5.17.txt:17006
 V5.17.txt:17007
 V5.17.txt:17008
 V5.17.txt:17009
 V5.17.txt:17010
 V5.17.txt:17011
 V5.17.txt:17012
 V5.17.txt:17013
 V5.17.txt:17014
 V5.17.txt:17015
 V5.17.txt:17016
 V5.17.txt:17017
 V5.17.txt:17018
 V5.17.txt:17019
 V5.17.txt:17020
 V5.17.txt:17021
 V5.17.txt:17022
 V5.17.txt:17023
 V5.17.txt:17024
 V5.17.txt:17025
 V5.17.txt:17026
 V5.17.txt:17027
 V5.17.txt:17028
 V5.17.txt:17029
 V5.17.txt:17030
 V5.17.txt:17031
 V5.17.txt:17032
 V5.17.txt:17033
 V5.17.txt:17034
 V5.17.txt:17035
 V5.17.txt:17036
 V5.17.txt:17037
 V5.17.txt:17038
 V5.17.txt:17039
 V5.17.txt:17040
 V5.17.txt:17041
 V5.17.txt:17042
 V5.17.txt:17043
 V5.17.txt:17044
 V5.17.txt:17045
 V5.17.txt:17046
 V5.17.txt:17047
 V5.17.txt:17048
 V5.17.txt:17049
 V5.17.txt:17050
 V5.17.txt:17051
 V5.17.txt:17052
 V5.17.txt:17053
 V5.17.txt:17054
 V5.17.txt:17055
 V5.17.txt:17056
 V5.17.txt:17057
 V5.17.txt:17058
 V5.17.txt:17059
 V5.17.txt:17060
 V5.17.txt:17061
 V5.17.txt:17062
 V5.17.txt:17063
 V5.17.txt:17064
 V5.17.txt:17065
 V5.17.txt:17066
 V5.17.txt:17067
 V5.17.txt:17068
 V5.17.txt:17069
 V5.17.txt:17070
 V5.17.txt:17071
 V5.17.txt:17072
 V5.17.txt:17073
 V5.17.txt:17074
 V5.17.txt:17075
 V5.17.txt:17076
 V5.17.txt:17077
 V5.17.txt:17078
 V5.17.txt:17079
 V5.17.txt:17080
 V5.17.txt:17081
 V5.17.txt:17082
 V5.17.txt:17083
 V5.17.txt:17084
 V5.17.txt:17085
 V5.17.txt:17086
 V5.17.txt:17087
 V5.17.txt:17088
 V5.17.txt:17089
 V5.17.txt:17090
 V5.17.txt:17091
 V5.17.txt:17092
 V5.17.txt:17093
 V5.17.txt:17094
 V5.17.txt:17095
 V5.17.txt:17096
 V5.17.txt:17097
 V5.17.txt:17098
 V5.17.txt:17099
 V5.17.txt:17100
 V5.17.txt:17101
 V5.17.txt:17102
 V5.17.txt:17103
 V5.17.txt:17104
 V5.17.txt:17105
 V5.17.txt:17106
 V5.17.txt:17107
 V5.17.txt:17108
 V5.17.txt:17109
 V5.17.txt:17110
 V5.17.txt:17111
 V5.17.txt:17112
 V5.17.txt:17113
 V5.17.txt:17114
 V5.17.txt:17115
 V5.17.txt:17116
 V5.17.txt:17117
 V5.17.txt:17118
 V5.17.txt:17119
 V5.17.txt:17120
 V5.17.txt:17121
 V5.17.txt:17122
 V5.17.txt:17123
 V5.17.txt:17124
 V5.17.txt:17125
 V5.17.txt:17126
 V5.17.txt:17127
 V5.17.txt:17128
 V5.17.txt:17129
 V5.17.txt:17130
 V5.17.txt:17131
 V5.17.txt:17132
 V5.17.txt:17133
 V5.17.txt:17134
 V5.17.txt:17135
 V5.17.txt:17136
 V5.17.txt:17137
 V5.17.txt:17138
 V5.17.txt:17139
 V5.17.txt:17140
 V5.17.txt:17141
 V5.17.txt:17142
 V5.17.txt:17143
 V5.17.txt:17144
 V5.17.txt:17145
 V5.17.txt:17146
 V5.17.txt:17147
 V5.17.txt:17148
 V5.17.txt:17149
 V5.17.txt:17150
 V5.17.txt:17151
 V5.17.txt:17152
 V5.17.txt:17153
 V5.17.txt:17154
 V5.17.txt:17155
 V5.17.txt:17156
 V5.17.txt:17157
 V5.17.txt:17158
 V5.17.txt:17159
 V5.17.txt:17160
 V5.17.txt:17161
 V5.17.txt:17162
 V5.17.txt:17163
 V5.17.txt:17164
 V5.17.txt:17165
 V5.17.txt:17166
 V5.17.txt:17167
 V5.17.txt:17168
 V5.17.txt:17169
 V5.17.txt:17170
 V5.17.txt:17171
 V5.17.txt:17172
 V5.17.txt:17173
 V5.17.txt:17174
 V5.17.txt:17175
 V5.17.txt:17176
 V5.17.txt:17177
 V5.17.txt:17178
 V5.17.txt:17179
 V5.17.txt:17180
 V5.17.txt:17181
 V5.17.txt:17182
 V5.17.txt:17183
 V5.17.txt:17184
 V5.17.txt:17185
 V5.17.txt:17186
 V5.17.txt:17187
 V5.17.txt:17188
 V5.17.txt:17189
 V5.17.txt:17190
 V5.17.txt:17191
 V5.17.txt:17192
 V5.17.txt:17193
 V5.17.txt:17194
 V5.17.txt:17195
 V5.17.txt:17196
 V5.17.txt:17197
 V5.17.txt:17198
 V5.17.txt:17199
 V5.17.txt:17200
 V5.17.txt:17201
 V5.17.txt:17202
 V5.17.txt:17203
 V5.17.txt:17204
 V5.17.txt:17205
 V5.17.txt:17206
 V5.17.txt:17207
 V5.17.txt:17208
 V5.17.txt:17209
 V5.17.txt:17210
 V5.17.txt:17211
 V5.17.txt:17212
 V5.17.txt:17213
 V5.17.txt:17214
 V5.17.txt:17215
 V5.17.txt:17216
 V5.17.txt:17217
 V5.17.txt:17218
 V5.17.txt:17219
 V5.17.txt:17220
 V5.17.txt:17221
 V5.17.txt:17222
 V5.17.txt:17223
 V5.17.txt:17224
 V5.17.txt:17225
 V5.17.txt:17226
 V5.17.txt:17227
 V5.17.txt:17228
 V5.17.txt:17229
 V5.17.txt:17230
 V5.17.txt:17231
 V5.17.txt:17232
 V5.17.txt:17233
 V5.17.txt:17234
 V5.17.txt:17235
 V5.17.txt:17236
 V5.17.txt:17237
 V5.17.txt:17238
 V5.17.txt:17239
 V5.17.txt:17240
 V5.17.txt:17241
 V5.17.txt:17242
 V5.17.txt:17243
 V5.17.txt:17244
 V5.17.txt:17245
 V5.17.txt:17246
 V5.17.txt:17247
 V5.17.txt:17248
 V5.17.txt:17249
 V5.17.txt:17250
 V5.17.txt:17251
 V5.17.txt:17252
 V5.17.txt:17253
 V5.17.txt:17254
 V5.17.txt:17255
 V5.17.txt:17256
 V5.17.txt:17257
 V5.17.txt:17258
 V5.17.txt:17259
 V5.17.txt:17260
 V5.17.txt:17261
 V5.17.txt:17262
 V5.17.txt:17263
 V5.17.txt:17264
 V5.17.txt:17265
 V5.17.txt:17266
 V5.17.txt:17267
 V5.17.txt:17268
 V5.17.txt:17269
 V5.17.txt:17270
 V5.17.txt:17271
 V5.17.txt:17272
 V5.17.txt:17273
 V5.17.txt:17274
 V5.17.txt:17275
 V5.17.txt:17276
 V5.17.txt:17277
 V5.17.txt:17278
 V5.17.txt:17279
 V5.17.txt:17280
 V5.17.txt:17281
 V5.17.txt:17282
 V5.17.txt:17283
 V5.17.txt:17284
 V5.17.txt:17285
 V5.17.txt:17286
 V5.17.txt:17287
 V5.17.txt:17288
 V5.17.txt:17289
 V5.17.txt:17290
 V5.17.txt:17291
 V5.17.txt:17292
 V5.17.txt:17293
 V5.17.txt:17294
 V5.17.txt:17295
 V5.17.txt:17296
 V5.17.txt:17297
 V5.17.txt:17298
 V5.17.txt:17299
 V5.17.txt:17300
 V5.17.txt:17301
 V5.17.txt:17302
 V5.17.txt:17303
 V5.17.txt:17304
 V5.17.txt:17305
 V5.17.txt:17306
 V5.17.txt:17307
 V5.17.txt:17308
 V5.17.txt:17309
 V5.17.txt:17310
 V5.17.txt:17311
 V5.17.txt:17312
 V5.17.txt:17313
 V5.17.txt:17314
 V5.17.txt:17315
 V5.17.txt:17316
 V5.17.txt:17317
 V5.17.txt:17318
 V5.17.txt:17319
 V5.17.txt:17320
 V5.17.txt:17321
 V5.17.txt:17322
 V5.17.txt:17323
 V5.17.txt:17324
 V5.17.txt:17325
 V5.17.txt:17326
 V5.17.txt:17327
 V5.17.txt:17328
 V5.17.txt:17329
 V5.17.txt:17330
 V5.17.txt:17331
 V5.17.txt:17332
 V5.17.txt:17333
 V5.17.txt:17334
 V5.17.txt:17335
 V5.17.txt:17336
 V5.17.txt:17337
 V5.17.txt:17338
 V5.17.txt:17339
 V5.17.txt:17340
 V5.17.txt:17341
 V5.17.txt:17342
 V5.17.txt:17343
 V5.17.txt:17344
 V5.17.txt:17345
 V5.17.txt:17346
 V5.17.txt:17347
 V5.17.txt:17348
 V5.17.txt:17349
 V5.17.txt:17350
 V5.17.txt:17351
 V5.17.txt:17352
 V5.17.txt:17353
 V5.17.txt:17354
 V5.17.txt:17355
 V5.17.txt:17356
 V5.17.txt:17357
 V5.17.txt:17358
 V5.17.txt:17359
 V5.17.txt:17360
 V5.17.txt:17361
 V5.17.txt:17362
 V5.17.txt:17363
 V5.17.txt:17364
 V5.17.txt:17365
 V5.17.txt:17366
 V5.17.txt:17367
 V5.17.txt:17368
 V5.17.txt:17369
 V5.17.txt:17370
 V5.17.txt:17371
 V5.17.txt:17372
 V5.17.txt:17373
 V5.17.txt:17374
 V5.17.txt:17375
 V5.17.txt:17376
 V5.17.txt:17377
 V5.17.txt:17378
 V5.17.txt:17379
 V5.17.txt:17380
 V5.17.txt:17381
 V5.17.txt:17382
 V5.17.txt:17383
 V5.17.txt:17384
 V5.17.txt:17385
 V5.17.txt:17386
 V5.17.txt:17387
 V5.17.txt:17388
 V5.17.txt:17389
 V5.17.txt:17390
 V5.17.txt:17391
 V5.17.txt:17392
 V5.17.txt:17393
 V5.17.txt:17394
 V5.17.txt:17395
 V5.17.txt:17396
 V5.17.txt:17397
 V5.17.txt:17398
 V5.17.txt:17399
 V5.17.txt:17400
 V5.17.txt:17401
 V5.17.txt:17402
 V5.17.txt:17403
 V5.17.txt:17404
 V5.17.txt:17405
 V5.17.txt:17406
 V5.17.txt:17407
 V5.17.txt:17408
 V5.17.txt:17409
 V5.17.txt:17410
 V5.17.txt:17411
 V5.17.txt:17412
 V5.17.txt:17413
 V5.17.txt:17414
 V5.17.txt:17415
 V5.17.txt:17416
 V5.17.txt:17417
 V5.17.txt:17418
 V5.17.txt:17419
 V5.17.txt:17420
 V5.17.txt:17421
 V5.17.txt:17422
 V5.17.txt:17423
 V5.17.txt:17424
 V5.17.txt:17425
 V5.17.txt:17426
 V5.17.txt:17427
 V5.17.txt:17428
 V5.17.txt:17429
 V5.17.txt:17430
 V5.17.txt:17431
 V5.17.txt:17432
 V5.17.txt:17433
 V5.17.txt:17434
 V5.17.txt:17435
 V5.17.txt:17436
 V5.17.txt:17437
 V5.17.txt:17438
 V5.17.txt:17439
 V5.17.txt:17440
 V5.17.txt:17441
 V5.17.txt:17442
 V5.17.txt:17443
 V5.17.txt:17444
 V5.17.txt:17445
 V5.17.txt:17446
 V5.17.txt:17447
 V5.17.txt:17448
 V5.17.txt:17449
 V5.17.txt:17450
 V5.17.txt:17451
 V5.17.txt:17452
 V5.17.txt:17453
 V5.17.txt:17454
 V5.17.txt:17455
 V5.17.txt:17456
 V5.17.txt:17457
 V5.17.txt:17458
 V5.17.txt:17459
 V5.17.txt:17460
 V5.17.txt:17461
 V5.17.txt:17462
 V5.17.txt:17463
 V5.17.txt:17464
 V5.17.txt:17465
 V5.17.txt:17466
 V5.17.txt:17467
 V5.17.txt:17468
 V5.17.txt:17469
 V5.17.txt:17470
 V5.17.txt:17471
 V5.17.txt:17472
 V5.17.txt:17473
 V5.17.txt:17474
 V5.17.txt:17475
 V5.17.txt:17476
 V5.17.txt:17477
 V5.17.txt:17478
 V5.17.txt:17479
 V5.17.txt:17480
 V5.17.txt:17481
 V5.17.txt:17482
 V5.17.txt:17483
 V5.17.txt:17484
 V5.17.txt:17485
 V5.17.txt:17486
 V5.17.txt:17487
 V5.17.txt:17488
 V5.17.txt:17489
 V5.17.txt:17490
 V5.17.txt:17491
 V5.17.txt:17492
 V5.17.txt:17493
 V5.17.txt:17494
 V5.17.txt:17495
 V5.17.txt:17496
 V5.17.txt:17497
 V5.17.txt:17498
 V5.17.txt:17499
 V5.17.txt:17500
 V5.17.txt:17501
 V5.17.txt:17502
 V5.17.txt:17503
 V5.17.txt:17504
 V5.17.txt:17505
 V5.17.txt:17506
 V5.17.txt:17507
 V5.17.txt:17508
 V5.17.txt:17509
 V5.17.txt:17510
 V5.17.txt:17511
 V5.17.txt:17512
 V5.17.txt:17513
 V5.17.txt:17514
 V5.17.txt:17515
 V5.17.txt:17516
 V5.17.txt:17517
 V5.17.txt:17518
 V5.17.txt:17519
 V5.17.txt:17520
 V5.17.txt:17521
 V5.17.txt:17522
 V5.17.txt:17523
 V5.17.txt:17524
 V5.17.txt:17525
 V5.17.txt:17526
 V5.17.txt:17527
 V5.17.txt:17528
 V5.17.txt:17529
 V5.17.txt:17530
 V5.17.txt:17531
 V5.17.txt:17532
 V5.17.txt:17533
 V5.17.txt:17534
 V5.17.txt:17535
 V5.17.txt:17536
 V5.17.txt:17537
 V5.17.txt:17538
 V5.17.txt:17539
 V5.17.txt:17540
 V5.17.txt:17541
 V5.17.txt:17542
 V5.17.txt:17543
 V5.17.txt:17544
 V5.17.txt:17545
 V5.17.txt:17546
 V5.17.txt:17547
 V5.17.txt:17548
 V5.17.txt:17549
 V5.17.txt:17550
 V5.17.txt:17551
 V5.17.txt:17552
 V5.17.txt:17553
 V5.17.txt:17554
 V5.17.txt:17555
 V5.17.txt:17556
 V5.17.txt:17557
 V5.17.txt:17558
 V5.17.txt:17559
 V5.17.txt:17560
 V5.17.txt:17561
 V5.17.txt:17562
 V5.17.txt:17563
 V5.17.txt:17564
 V5.17.txt:17565
 V5.17.txt:17566
 V5.17.txt:17567
 V5.17.txt:17568
 V5.17.txt:17569
 V5.17.txt:17570
 V5.17.txt:17571
 V5.17.txt:17572
 V5.17.txt:17573
 V5.17.txt:17574
 V5.17.txt:17575
 V5.17.txt:17576
 V5.17.txt:17577
 V5.17.txt:17578
 V5.17.txt:17579
 V5.17.txt:17580
 V5.17.txt:17581
 V5.17.txt:17582
 V5.17.txt:17583
 V5.17.txt:17584
 V5.17.txt:17585
 V5.17.txt:17586
 V5.17.txt:17587
 V5.17.txt:17588
 V5.17.txt:17589
 V5.17.txt:17590
 V5.17.txt:17591
 V5.17.txt:17592
 V5.17.txt:17593
 V5.17.txt:17594
 V5.17.txt:17595
 V5.17.txt:17596
 V5.17.txt:17597
 V5.17.txt:17598
 V5.17.txt:17599
 V5.17.txt:17600
 V5.17.txt:17601
 V5.17.txt:17602
 V5.17.txt:17603
 V5.17.txt:17604
 V5.17.txt:17605
 V5.17.txt:17606
 V5.17.txt:17607
 V5.17.txt:17608
 V5.17.txt:17609
 V5.17.txt:17610
 V5.17.txt:17611
 V5.17.txt:17612
 V5.17.txt:17613
 V5.17.txt:17614
 V5.17.txt:17615
 V5.17.txt:17616
 V5.17.txt:17617
 V5.17.txt:17618
 V5.17.txt:17619
 V5.17.txt:17620
 V5.17.txt:17621
 V5.17.txt:17622
 V5.17.txt:17623
 V5.17.txt:17624
 V5.17.txt:17625
 V5.17.txt:17626
 V5.17.txt:17627
 V5.17.txt:17628
 V5.17.txt:17629
 V5.17.txt:17630
 V5.17.txt:17631
 V5.17.txt:17632
 V5.17.txt:17633
 V5.17.txt:17634
 V5.17.txt:17635
 V5.17.txt:17636
 V5.17.txt:17637
 V5.17.txt:17638
 V5.17.txt:17639
 V5.17.txt:17640
 V5.17.txt:17641
 V5.17.txt:17642
 V5.17.txt:17643
 V5.17.txt:17644
 V5.17.txt:17645
 V5.17.txt:17646
 V5.17.txt:17647
 V5.17.txt:17648
 V5.17.txt:17649
 V5.17.txt:17650
 V5.17.txt:17651
 V5.17.txt:17652
 V5.17.txt:17653
 V5.17.txt:17654
 V5.17.txt:17655
 V5.17.txt:17656
 V5.17.txt:17657
 V5.17.txt:17658
 V5.17.txt:17659
 V5.17.txt:17660
 V5.17.txt:17661
 V5.17.txt:17662
 V5.17.txt:17663
 V5.17.txt:17664
 V5.17.txt:17665
 V5.17.txt:17666
 V5.17.txt:17667
 V5.17.txt:17668
 V5.17.txt:17669
 V5.17.txt:17670
 V5.17.txt:17671
 V5.17.txt:17672
 V5.17.txt:17673
 V5.17.txt:17674
 V5.17.txt:17675
 V5.17.txt:17676
 V5.17.txt:17677
 V5.17.txt:17678
 V5.17.txt:17679
 V5.17.txt:17680
 V5.17.txt:17681
 V5.17.txt:17682
 V5.17.txt:17683
 V5.17.txt:17684
 V5.17.txt:17685
 V5.17.txt:17686
 V5.17.txt:17687
 V5.17.txt:17688
 V5.17.txt:17689
 V5.17.txt:17690
 V5.17.txt:17691
 V5.17.txt:17692
 V5.17.txt:17693
 V5.17.txt:17694
 V5.17.txt:17695
 V5.17.txt:17696
 V5.17.txt:17697
 V5.17.txt:17698
 V5.17.txt:17699
 V5.17.txt:17700
 V5.17.txt:17701
 V5.17.txt:17702
 V5.17.txt:17703
 V5.17.txt:17704
 V5.17.txt:17705
 V5.17.txt:17706
 V5.17.txt:17707
 V5.17.txt:17708
 V5.17.txt:17709
 V5.17.txt:17710
 V5.17.txt:17711
 V5.17.txt:17712
 V5.17.txt:17713
 V5.17.txt:17714
 V5.17.txt:17715
 V5.17.txt:17716
 V5.17.txt:17717
 V5.17.txt:17718
 V5.17.txt:17719
 V5.17.txt:17720
 V5.17.txt:17721
 V5.17.txt:17722
 V5.17.txt:17723
 V5.17.txt:17724
 V5.17.txt:17725
 V5.17.txt:17726
 V5.17.txt:17727
 V5.17.txt:17728
 V5.17.txt:17729
 V5.17.txt:17730
 V5.17.txt:17731
 V5.17.txt:17732
 V5.17.txt:17733
 V5.17.txt:17734
 V5.17.txt:17735
 V5.17.txt:17736
 V5.17.txt:17737
 V5.17.txt:17738
 V5.17.txt:17739
 V5.17.txt:17740
 V5.17.txt:17741
 V5.17.txt:17742
 V5.17.txt:17743
 V5.17.txt:17744
 V5.17.txt:17745
 V5.17.txt:17746
 V5.17.txt:17747
 V5.17.txt:17748
 V5.17.txt:17749
 V5.17.txt:17750
 V5.17.txt:17751
 V5.17.txt:17752
 V5.17.txt:17753
 V5.17.txt:17754
 V5.17.txt:17755
 V5.17.txt:17756
 V5.17.txt:17757
 V5.17.txt:17758
 V5.17.txt:17759
 V5.17.txt:17760
 V5.17.txt:17761
 V5.17.txt:17762
 V5.17.txt:17763
 V5.17.txt:17764
 V5.17.txt:17765
 V5.17.txt:17766
 V5.17.txt:17767
 V5.17.txt:17768
 V5.17.txt:17769
 V5.17.txt:17770
 V5.17.txt:17771
 V5.17.txt:17772
 V5.17.txt:17773
 V5.17.txt:17774
 V5.17.txt:17775
 V5.17.txt:17776
 V5.17.txt:17777
 V5.17.txt:17778
 V5.17.txt:17779
 V5.17.txt:17780
 V5.17.txt:17781
 V5.17.txt:17782
 V5.17.txt:17783
 V5.17.txt:17784
 V5.17.txt:17785
 V5.17.txt:17786
 V5.17.txt:17787
 V5.17.txt:17788
 V5.17.txt:17789
 V5.17.txt:17790
 V5.17.txt:17791
 V5.17.txt:17792
 V5.17.txt:17793
 V5.17.txt:17794
 V5.17.txt:17795
 V5.17.txt:17796
 V5.17.txt:17797
 V5.17.txt:17798
 V5.17.txt:17799
 V5.17.txt:17800
 V5.17.txt:17801
 V5.17.txt:17802
 V5.17.txt:17803
 V5.17.txt:17804
 V5.17.txt:17805
 V5.17.txt:17806
 V5.17.txt:17807
 V5.17.txt:17808
 V5.17.txt:17809
 V5.17.txt:17810
 V5.17.txt:17811
 V5.17.txt:17812
 V5.17.txt:17813
 V5.17.txt:17814
 V5.17.txt:17815
 V5.17.txt:17816
 V5.17.txt:17817
 V5.17.txt:17818
 V5.17.txt:17819
 V5.17.txt:17820
 V5.17.txt:17821
 V5.17.txt:17822
 V5.17.txt:17823
 V5.17.txt:17824
 V5.17.txt:17825
 V5.17.txt:17826
 V5.17.txt:17827
 V5.17.txt:17828
 V5.17.txt:17829
 V5.17.txt:17830
 V5.17.txt:17831
 V5.17.txt:17832
 V5.17.txt:17833
 V5.17.txt:17834
 V5.17.txt:17835
 V5.17.txt:17836
 V5.17.txt:17837
 V5.17.txt:17838
 V5.17.txt:17839
 V5.17.txt:17840
 V5.17.txt:17841
 V5.17.txt:17842
 V5.17.txt:17843
 V5.17.txt:17844
 V5.17.txt:17845
 V5.17.txt:17846
 V5.17.txt:17847
 V5.17.txt:17848
 V5.17.txt:17849
 V5.17.txt:17850
 V5.17.txt:17851
 V5.17.txt:17852
 V5.17.txt:17853
 V5.17.txt:17854
 V5.17.txt:17855
 V5.17.txt:17856
 V5.17.txt:17857
 V5.17.txt:17858
 V5.17.txt:17859
 V5.17.txt:17860
 V5.17.txt:17861
 V5.17.txt:17862
 V5.17.txt:17863
 V5.17.txt:17864
 V5.17.txt:17865
 V5.17.txt:17866
 V5.17.txt:17867
 V5.17.txt:17868
 V5.17.txt:17869
 V5.17.txt:17870
 V5.17.txt:17871
 V5.17.txt:17872
 V5.17.txt:17873
 V5.17.txt:17874
 V5.17.txt:17875
 V5.17.txt:17876
 V5.17.txt:17877
 V5.17.txt:17878
 V5.17.txt:17879
 V5.17.txt:17880
 V5.17.txt:17881
 V5.17.txt:17882
 V5.17.txt:17883
 V5.17.txt:17884
 V5.17.txt:17885
 V5.17.txt:17886
 V5.17.txt:17887
 V5.17.txt:17888
 V5.17.txt:17889
 V5.17.txt:17890
 V5.17.txt:17891
 V5.17.txt:17892
 V5.17.txt:17893
 V5.17.txt:17894
 V5.17.txt:17895
 V5.17.txt:17896
 V5.17.txt:17897
 V5.17.txt:17898
 V5.17.txt:17899
 V5.17.txt:17900
 V5.17.txt:17901
 V5.17.txt:17902
 V5.17.txt:17903
 V5.17.txt:17904
 V5.17.txt:17905
 V5.17.txt:17906
 V5.17.txt:17907
 V5.17.txt:17908
 V5.17.txt:17909
 V5.17.txt:17910
 V5.17.txt:17911
 V5.17.txt:17912
 V5.17.txt:17913
 V5.17.txt:17914
 V5.17.txt:17915
 V5.17.txt:17916
 V5.17.txt:17917
 V5.17.txt:17918
 V5.17.txt:17919
 V5.17.txt:17920
 V5.17.txt:17921
 V5.17.txt:17922
 V5.17.txt:17923
 V5.17.txt:17924
 V5.17.txt:17925
 V5.17.txt:17926
 V5.17.txt:17927
 V5.17.txt:17928
 V5.17.txt:17929
 V5.17.txt:17930
 V5.17.txt:17931
 V5.17.txt:17932
 V5.17.txt:17933
 V5.17.txt:17934
 V5.17.txt:17935
 V5.17.txt:17936
 V5.17.txt:17937
 V5.17.txt:17938
 V5.17.txt:17939
 V5.17.txt:17940
 V5.17.txt:17941
 V5.17.txt:17942
 V5.17.txt:17943
 V5.17.txt:17944
 V5.17.txt:17945
 V5.17.txt:17946
 V5.17.txt:17947
 V5.17.txt:17948
 V5.17.txt:17949
 V5.17.txt:17950
 V5.17.txt:17951
 V5.17.txt:17952
 V5.17.txt:17953
 V5.17.txt:17954
 V5.17.txt:17955
 V5.17.txt:17956
 V5.17.txt:17957
 V5.17.txt:17958
 V5.17.txt:17959
 V5.17.txt:17960
 V5.17.txt:17961
 V5.17.txt:17962
 V5.17.txt:17963
 V5.17.txt:17964
 V5.17.txt:17965
 V5.17.txt:17966
 V5.17.txt:17967
 V5.17.txt:17968
 V5.17.txt:17969
 V5.17.txt:17970
 V5.17.txt:17971
 V5.17.txt:17972
 V5.17.txt:17973
 V5.17.txt:17974
 V5.17.txt:17975
 V5.17.txt:17976
 V5.17.txt:17977
 V5.17.txt:17978
 V5.17.txt:17979
 V5.17.txt:17980
 V5.17.txt:17981
 V5.17.txt:17982
 V5.17.txt:17983
 V5.17.txt:17984
 V5.17.txt:17985
 V5.17.txt:17986
 V5.17.txt:17987
 V5.17.txt:17988
 V5.17.txt:17989
 V5.17.txt:17990
 V5.17.txt:17991
 V5.17.txt:17992
 V5.17.txt:17993
 V5.17.txt:17994
 V5.17.txt:17995
 V5.17.txt:17996
 V5.17.txt:17997
 V5.17.txt:17998
 V5.17.txt:17999
 V5.17.txt:18000
 V5.17.txt:18001
 V5.17.txt:18002
 V5.17.txt:18003
 V5.17.txt:18004
 V5.17.txt:18005
 V5.17.txt:18006
 V5.17.txt:18007
 V5.17.txt:18008
 V5.17.txt:18009
 V5.17.txt:18010
 V5.17.txt:18011
 V5.17.txt:18012
 V5.17.txt:18013
 V5.17.txt:18014
 V5.17.txt:18015
 V5.17.txt:18016
 V5.17.txt:18017
 V5.17.txt:18018
 V5.17.txt:18019
 V5.17.txt:18020
 V5.17.txt:18021
 V5.17.txt:18022
 V5.17.txt:18023
 V5.17.txt:18024
 V5.17.txt:18025
 V5.17.txt:18026
 V5.17.txt:18027
 V5.17.txt:18028
 V5.17.txt:18029
 V5.17.txt:18030
 V5.17.txt:18031
 V5.17.txt:18032
 V5.17.txt:18033
 V5.17.txt:18034
 V5.17.txt:18035
 V5.17.txt:18036
 V5.17.txt:18037
 V5.17.txt:18038
 V5.17.txt:18039
 V5.17.txt:18040
 V5.17.txt:18041
 V5.17.txt:18042
 V5.17.txt:18043
 V5.17.txt:18044
 V5.17.txt:18045
 V5.17.txt:18046
 V5.17.txt:18047
 V5.17.txt:18048
 V5.17.txt:18049
 V5.17.txt:18050
 V5.17.txt:18051
 V5.17.txt:18052
 V5.17.txt:18053
 V5.17.txt:18054
 V5.17.txt:18055
 V5.17.txt:18056
 V5.17.txt:18057
 V5.17.txt:18058
 V5.17.txt:18059
 V5.17.txt:18060
 V5.17.txt:18061
 V5.17.txt:18062
 V5.17.txt:18063
 V5.17.txt:18064
 V5.17.txt:18065
 V5.17.txt:18066
 V5.17.txt:18067
 V5.17.txt:18068
 V5.17.txt:18069
 V5.17.txt:18070
 V5.17.txt:18071
 V5.17.txt:18072
 V5.17.txt:18073
 V5.17.txt:18074
 V5.17.txt:18075
 V5.17.txt:18076
 V5.17.txt:18077
 V5.17.txt:18078
 V5.17.txt:18079
 V5.17.txt:18080
 V5.17.txt:18081
 V5.17.txt:18082
 V5.17.txt:18083
 V5.17.txt:18084
 V5.17.txt:18085
 V5.17.txt:18086
 V5.17.txt:18087
 V5.17.txt:18088
 V5.17.txt:18089
 V5.17.txt:18090
 V5.17.txt:18091
 V5.17.txt:18092
 V5.17.txt:18093
 V5.17.txt:18094
 V5.17.txt:18095
 V5.17.txt:18096
 V5.17.txt:18097
 V5.17.txt:18098
 V5.17.txt:18099
 V5.17.txt:18100
 V5.17.txt:18101
 V5.17.txt:18102
 V5.17.txt:18103
 V5.17.txt:18104
 V5.17.txt:18105
 V5.17.txt:18106
 V5.17.txt:18107
 V5.17.txt:18108
 V5.17.txt:18109
 V5.17.txt:18110
 V5.17.txt:18111
 V5.17.txt:18112
 V5.17.txt:18113
 V5.17.txt:18114
 V5.17.txt:18115
 V5.17.txt:18116
 V5.17.txt:18117
 V5.17.txt:18118
 V5.17.txt:18119
 V5.17.txt:18120
 V5.17.txt:18121
 V5.17.txt:18122
 V5.17.txt:18123
 V5.17.txt:18124
 V5.17.txt:18125
 V5.17.txt:18126
 V5.17.txt:18127
 V5.17.txt:18128
 V5.17.txt:18129
 V5.17.txt:18130
 V5.17.txt:18131
 V5.17.txt:18132
 V5.17.txt:18133
 V5.17.txt:18134
 V5.17.txt:18135
 V5.17.txt:18136
 V5.17.txt:18137
 V5.17.txt:18138
 V5.17.txt:18139
 V5.17.txt:18140
 V5.17.txt:18141
 V5.17.txt:18142
 V5.17.txt:18143
 V5.17.txt:18144
 V5.17.txt:18145
 V5.17.txt:18146
 V5.17.txt:18147
 V5.17.txt:18148
 V5.17.txt:18149
 V5.17.txt:18150
 V5.17.txt:18151
 V5.17.txt:18152
 V5.17.txt:18153
 V5.17.txt:18154
 V5.17.txt:18155
 V5.17.txt:18156
 V5.17.txt:18157
 V5.17.txt:18158
 V5.17.txt:18159
 V5.17.txt:18160
 V5.17.txt:18161
 V5.17.txt:18162
 V5.17.txt:18163
 V5.17.txt:18164
 V5.17.txt:18165
 V5.17.txt:18166
 V5.17.txt:18167
 V5.17.txt:18168
 V5.17.txt:18169
 V5.17.txt:18170
 V5.17.txt:18171
 V5.17.txt:18172
 V5.17.txt:18173
 V5.17.txt:18174
 V5.17.txt:18175
 V5.17.txt:18176
 V5.17.txt:18177
 V5.17.txt:18178
 V5.17.txt:18179
 V5.17.txt:18180
 V5.17.txt:18181
 V5.17.txt:18182
 V5.17.txt:18183
 V5.17.txt:18184
 V5.17.txt:18185
 V5.17.txt:18186
 V5.17.txt:18187
 V5.17.txt:18188
 V5.17.txt:18189
 V5.17.txt:18190
 V5.17.txt:18191
 V5.17.txt:18192
 V5.17.txt:18193
 V5.17.txt:18194
 V5.17.txt:18195
 V5.17.txt:18196
 V5.17.txt:18197
 V5.17.txt:18198
 V5.17.txt:18199
 V5.17.txt:18200
 V5.17.txt:18201
 V5.17.txt:18202
 V5.17.txt:18203
 V5.17.txt:18204
 V5.17.txt:18205
 V5.17.txt:18206
 V5.17.txt:18207
 V5.17.txt:18208
 V5.17.txt:18209
 V5.17.txt:18210
 V5.17.txt:18211
 V5.17.txt:18212
 V5.17.txt:18213
 V5.17.txt:18214
 V5.17.txt:18215
 V5.17.txt:18216
 V5.17.txt:18217
 V5.17.txt:18218
 V5.17.txt:18219
 V5.17.txt:18220
 V5.17.txt:18221
 V5.17.txt:18222
 V5.17.txt:18223
 V5.17.txt:18224
 V5.17.txt:18225
 V5.17.txt:18226
 V5.17.txt:18227
 V5.17.txt:18228
 V5.17.txt:18229
 V5.17.txt:18230
 V5.17.txt:18231
 V5.17.txt:18232
 V5.17.txt:18233
 V5.17.txt:18234
 V5.17.txt:18235
 V5.17.txt:18236
 V5.17.txt:18237
 V5.17.txt:18238
 V5.17.txt:18239
 V5.17.txt:18240
 V5.17.txt:18241
 V5.17.txt:18242
 V5.17.txt:18243
 V5.17.txt:18244
 V5.17.txt:18245
 V5.17.txt:18246
 V5.17.txt:18247
 V5.17.txt:18248
 V5.17.txt:18249
 V5.17.txt:18250
 V5.17.txt:18251
 V5.17.txt:18252
 V5.17.txt:18253
 V5.17.txt:18254
 V5.17.txt:18255
 V5.17.txt:18256
 V5.17.txt:18257
 V5.17.txt:18258
 V5.17.txt:18259
 V5.17.txt:18260
 V5.17.txt:18261
 V5.17.txt:18262
 V5.17.txt:18263
 V5.17.txt:18264
 V5.17.txt:18265
 V5.17.txt:18266
 V5.17.txt:18267
 V5.17.txt:18268
 V5.17.txt:18269
 V5.17.txt:18270
 V5.17.txt:18271
 V5.17.txt:18272
 V5.17.txt:18273
 V5.17.txt:18274
 V5.17.txt:18275
 V5.17.txt:18276
 V5.17.txt:18277
 V5.17.txt:18278
 V5.17.txt:18279
 V5.17.txt:18280
 V5.17.txt:18281
 V5.17.txt:18282
 V5.17.txt:18283
 V5.17.txt:18284
 V5.17.txt:18285
 V5.17.txt:18286
 V5.17.txt:18287
 V5.17.txt:18288
 V5.17.txt:18289
 V5.17.txt:18290
 V5.17.txt:18291
 V5.17.txt:18292
 V5.17.txt:18293
 V5.17.txt:18294
 V5.17.txt:18295
 V5.17.txt:18296
 V5.17.txt:18297
 V5.17.txt:18298
 V5.17.txt:18299
 V5.17.txt:18300
 V5.17.txt:18301
 V5.17.txt:18302
 V5.17.txt:18303
 V5.17.txt:18304
 V5.17.txt:18305
 V5.17.txt:18306
 V5.17.txt:18307
 V5.17.txt:18308
 V5.17.txt:18309
 V5.17.txt:18310
 V5.17.txt:18311
 V5.17.txt:18312
 V5.17.txt:18313
 V5.17.txt:18314
 V5.17.txt:18315
 V5.17.txt:18316
 V5.17.txt:18317
 V5.17.txt:18318
 V5.17.txt:18319
 V5.17.txt:18320
 V5.17.txt:18321
 V5.17.txt:18322
 V5.17.txt:18323
 V5.17.txt:18324
 V5.17.txt:18325
 V5.17.txt:18326
 V5.17.txt:18327
 V5.17.txt:18328
 V5.17.txt:18329
 V5.17.txt:18330
 V5.17.txt:18331
 V5.17.txt:18332
 V5.17.txt:18333
 V5.17.txt:18334
 V5.17.txt:18335
 V5.17.txt:18336
 V5.17.txt:18337
 V5.17.txt:18338
 V5.17.txt:18339
 V5.17.txt:18340
 V5.17.txt:18341
 V5.17.txt:18342
 V5.17.txt:18343
 V5.17.txt:18344
 V5.17.txt:18345
 V5.17.txt:18346
 V5.17.txt:18347
 V5.17.txt:18348
 V5.17.txt:18349
 V5.17.txt:18350
 V5.17.txt:18351
 V5.17.txt:18352
 V5.17.txt:18353
 V5.17.txt:18354
 V5.17.txt:18355
 V5.17.txt:18356
 V5.17.txt:18357
 V5.17.txt:18358
 V5.17.txt:18359
 V5.17.txt:18360
 V5.17.txt:18361
 V5.17.txt:18362
 V5.17.txt:18363
 V5.17.txt:18364
 V5.17.txt:18365
 V5.17.txt:18366
 V5.17.txt:18367
 V5.17.txt:18368
 V5.17.txt:18369
 V5.17.txt:18370
 V5.17.txt:18371
 V5.17.txt:18372
 V5.17.txt:18373
 V5.17.txt:18374
 V5.17.txt:18375
 V5.17.txt:18376
 V5.17.txt:18377
 V5.17.txt:18378
 V5.17.txt:18379
 V5.17.txt:18380
 V5.17.txt:18381
 V5.17.txt:18382
 V5.17.txt:18383
 V5.17.txt:18384
 V5.17.txt:18385
 V5.17.txt:18386
 V5.17.txt:18387
 V5.17.txt:18388
 V5.17.txt:18389
 V5.17.txt:18390
 V5.17.txt:18391
 V5.17.txt:18392
 V5.17.txt:18393
 V5.17.txt:18394
 V5.17.txt:18395
 V5.17.txt:18396
 V5.17.txt:18397
 V5.17.txt:18398
 V5.17.txt:18399
 V5.17.txt:18400
 V5.17.txt:18401
 V5.17.txt:18402
 V5.17.txt:18403
 V5.17.txt:18404
 V5.17.txt:18405
 V5.17.txt:18406
 V5.17.txt:18407
 V5.17.txt:18408
 V5.17.txt:18409
 V5.17.txt:18410
 V5.17.txt:18411
 V5.17.txt:18412
 V5.17.txt:18413
 V5.17.txt:18414
 V5.17.txt:18415
 V5.17.txt:18416
 V5.17.txt:18417
 V5.17.txt:18418
 V5.17.txt:18419
 V5.17.txt:18420
 V5.17.txt:18421
 V5.17.txt:18422
 V5.17.txt:18423
 V5.17.txt:18424
 V5.17.txt:18425
 V5.17.txt:18426
 V5.17.txt:18427
 V5.17.txt:18428
 V5.17.txt:18429
 V5.17.txt:18430
 V5.17.txt:18431
 V5.17.txt:18432
 V5.17.txt:18433
 V5.17.txt:18434
 V5.17.txt:18435
 V5.17.txt:18436
 V5.17.txt:18437
 V5.17.txt:18438
 V5.17.txt:18439
 V5.17.txt:18440
 V5.17.txt:18441
 V5.17.txt:18442
 V5.17.txt:18443
 V5.17.txt:18444
 V5.17.txt:18445
 V5.17.txt:18446
 V5.17.txt:18447
 V5.17.txt:18448
 V5.17.txt:18449
 V5.17.txt:18450
 V5.17.txt:18451
 V5.17.txt:18452
 V5.17.txt:18453
 V5.17.txt:18454
 V5.17.txt:18455
 V5.17.txt:18456
 V5.17.txt:18457
 V5.17.txt:18458
 V5.17.txt:18459
 V5.17.txt:18460
 V5.17.txt:18461
 V5.17.txt:18462
 V5.17.txt:18463
 V5.17.txt:18464
 V5.17.txt:18465
 V5.17.txt:18466
 V5.17.txt:18467
 V5.17.txt:18468
 V5.17.txt:18469
 V5.17.txt:18470
 V5.17.txt:18471
 V5.17.txt:18472
 V5.17.txt:18473
 V5.17.txt:18474
 V5.17.txt:18475
 V5.17.txt:18476
 V5.17.txt:18477
 V5.17.txt:18478
 V5.17.txt:18479
 V5.17.txt:18480
 V5.17.txt:18481
 V5.17.txt:18482
 V5.17.txt:18483
 V5.17.txt:18484
 V5.17.txt:18485
 V5.17.txt:18486
 V5.17.txt:18487
 V5.17.txt:18488
 V5.17.txt:18489
 V5.17.txt:18490
 V5.17.txt:18491
 V5.17.txt:18492
 V5.17.txt:18493
 V5.17.txt:18494
 V5.17.txt:18495
 V5.17.txt:18496
 V5.17.txt:18497
 V5.17.txt:18498
 V5.17.txt:18499
 V5.17.txt:18500
 V5.17.txt:18501
 V5.17.txt:18502
 V5.17.txt:18503
 V5.17.txt:18504
 V5.17.txt:18505
 V5.17.txt:18506
 V5.17.txt:18507
 V5.17.txt:18508
 V5.17.txt:18509
 V5.17.txt:18510
 V5.17.txt:18511
 V5.17.txt:18512
 V5.17.txt:18513
 V5.17.txt:18514
 V5.17.txt:18515
 V5.17.txt:18516
 V5.17.txt:18517
 V5.17.txt:18518
 V5.17.txt:18519
 V5.17.txt:18520
 V5.17.txt:18521
 V5.17.txt:18522
 V5.17.txt:18523
 V5.17.txt:18524
 V5.17.txt:18525
 V5.17.txt:18526
 V5.17.txt:18527
 V5.17.txt:18528
 V5.17.txt:18529
 V5.17.txt:18530
 V5.17.txt:18531
 V5.17.txt:18532
 V5.17.txt:18533
 V5.17.txt:18534
 V5.17.txt:18535
 V5.17.txt:18536
 V5.17.txt:18537
 V5.17.txt:18538
 V5.17.txt:18539
 V5.17.txt:18540
 V5.17.txt:18541
 V5.17.txt:18542
 V5.17.txt:18543
 V5.17.txt:18544
 V5.17.txt:18545
 V5.17.txt:18546
 V5.17.txt:18547
 V5.17.txt:18548
 V5.17.txt:18549
 V5.17.txt:18550
 V5.17.txt:18551
 V5.17.txt:18552
 V5.17.txt:18553
 V5.17.txt:18554
 V5.17.txt:18555
 V5.17.txt:18556
 V5.17.txt:18557
 V5.17.txt:18558
 V5.17.txt:18559
 V5.17.txt:18560
 V5.17.txt:18561
 V5.17.txt:18562
 V5.17.txt:18563
 V5.17.txt:18564
 V5.17.txt:18565
 V5.17.txt:18566
 V5.17.txt:18567
 V5.17.txt:18568
 V5.17.txt:18569
 V5.17.txt:18570
 V5.17.txt:18571
 V5.17.txt:18572
 V5.17.txt:18573
 V5.17.txt:18574
 V5.17.txt:18575
 V5.17.txt:18576
 V5.17.txt:18577
 V5.17.txt:18578
 V5.17.txt:18579
 V5.17.txt:18580
 V5.17.txt:18581
 V5.17.txt:18582
 V5.17.txt:18583
 V5.17.txt:18584
 V5.17.txt:18585
 V5.17.txt:18586
 V5.17.txt:18587
 V5.17.txt:18588
 V5.17.txt:18589
 V5.17.txt:18590
 V5.17.txt:18591
 V5.17.txt:18592
 V5.17.txt:18593
 V5.17.txt:18594
 V5.17.txt:18595
 V5.17.txt:18596
 V5.17.txt:18597
 V5.17.txt:18598
 V5.17.txt:18599
 V5.17.txt:18600
 V5.17.txt:18601
 V5.17.txt:18602
 V5.17.txt:18603
 V5.17.txt:18604
 V5.17.txt:18605
 V5.17.txt:18606
 V5.17.txt:18607
 V5.17.txt:18608
 V5.17.txt:18609
 V5.17.txt:18610
 V5.17.txt:18611
 V5.17.txt:18612
 V5.17.txt:18613
 V5.17.txt:18614
 V5.17.txt:18615
 V5.17.txt:18616
 V5.17.txt:18617
 V5.17.txt:18618
 V5.17.txt:18619
 V5.17.txt:18620
 V5.17.txt:18621
 V5.17.txt:18622
 V5.17.txt:18623
 V5.17.txt:18624
 V5.17.txt:18625
 V5.17.txt:18626
 V5.17.txt:18627
 V5.17.txt:18628
 V5.17.txt:18629
 V5.17.txt:18630
 V5.17.txt:18631
 V5.17.txt:18632
 V5.17.txt:18633
 V5.17.txt:18634
 V5.17.txt:18635
 V5.17.txt:18636
 V5.17.txt:18637
 V5.17.txt:18638
 V5.17.txt:18639
 V5.17.txt:18640
 V5.17.txt:18641
 V5.17.txt:18642
 V5.17.txt:18643
 V5.17.txt:18644
 V5.17.txt:18645
 V5.17.txt:18646
 V5.17.txt:18647
 V5.17.txt:18648
 V5.17.txt:18649
 V5.17.txt:18650
 V5.17.txt:18651
 V5.17.txt:18652
 V5.17.txt:18653
 V5.17.txt:18654
 V5.17.txt:18655
 V5.17.txt:18656
 V5.17.txt:18657
 V5.17.txt:18658
 V5.17.txt:18659
 V5.17.txt:18660
 V5.17.txt:18661
 V5.17.txt:18662
 V5.17.txt:18663
 V5.17.txt:18664
 V5.17.txt:18665
 V5.17.txt:18666
 V5.17.txt:18667
 V5.17.txt:18668
 V5.17.txt:18669
 V5.17.txt:18670
 V5.17.txt:18671
 V5.17.txt:18672
 V5.17.txt:18673
 V5.17.txt:18674
 V5.17.txt:18675
 V5.17.txt:18676
 V5.17.txt:18677
 V5.17.txt:18678
 V5.17.txt:18679
 V5.17.txt:18680
 V5.17.txt:18681
 V5.17.txt:18682
 V5.17.txt:18683
 V5.17.txt:18684
 V5.17.txt:18685
 V5.17.txt:18686
 V5.17.txt:18687
 V5.17.txt:18688
 V5.17.txt:18689
 V5.17.txt:18690
 V5.17.txt:18691
 V5.17.txt:18692
 V5.17.txt:18693
 V5.17.txt:18694
 V5.17.txt:18695
 V5.17.txt:18696
 V5.17.txt:18697
 V5.17.txt:18698
 V5.17.txt:18699
 V5.17.txt:18700
 V5.17.txt:18701
 V5.17.txt:18702
 V5.17.txt:18703
 V5.17.txt:18704
 V5.17.txt:18705
 V5.17.txt:18706
 V5.17.txt:18707
 V5.17.txt:18708
 V5.17.txt:18709
 V5.17.txt:18710
 V5.17.txt:18711
 V5.17.txt:18712
 V5.17.txt:18713
 V5.17.txt:18714
 V5.17.txt:18715
 V5.17.txt:18716
 V5.17.txt:18717
 V5.17.txt:18718
 V5.17.txt:18719
 V5.17.txt:18720
 V5.17.txt:18721
 V5.17.txt:18722
 V5.17.txt:18723
 V5.17.txt:18724
 V5.17.txt:18725
 V5.17.txt:18726
 V5.17.txt:18727
 V5.17.txt:18728
 V5.17.txt:18729
 V5.17.txt:18730
 V5.17.txt:18731
 V5.17.txt:18732
 V5.17.txt:18733
 V5.17.txt:18734
 V5.17.txt:18735
 V5.17.txt:18736
 V5.17.txt:18737
 V5.17.txt:18738
 V5.17.txt:18739
 V5.17.txt:18740
 V5.17.txt:18741
 V5.17.txt:18742
 V5.17.txt:18743
 V5.17.txt:18744
 V5.17.txt:18745
 V5.17.txt:18746
 V5.17.txt:18747
 V5.17.txt:18748
 V5.17.txt:18749
 V5.17.txt:18750
 V5.17.txt:18751
 V5.17.txt:18752
 V5.17.txt:18753
 V5.17.txt:18754
 V5.17.txt:18755
 V5.17.txt:18756
 V5.17.txt:18757
 V5.17.txt:18758
 V5.17.txt:18759
 V5.17.txt:18760
 V5.17.txt:18761
 V5.17.txt:18762
 V5.17.txt:18763
 V5.17.txt:18764
 V5.17.txt:18765
 V5.17.txt:18766
 V5.17.txt:18767
 V5.17.txt:18768
 V5.17.txt:18769
 V5.17.txt:18770
 V5.17.txt:18771
 V5.17.txt:18772
 V5.17.txt:18773
 V5.17.txt:18774
 V5.17.txt:18775
 V5.17.txt:18776
 V5.17.txt:18777
 V5.17.txt:18778
 V5.17.txt:18779
 V5.17.txt:18780
 V5.17.txt:18781
 V5.17.txt:18782
 V5.17.txt:18783
 V5.17.txt:18784
 V5.17.txt:18785
 V5.17.txt:18786
 V5.17.txt:18787
 V5.17.txt:18788
 V5.17.txt:18789
 V5.17.txt:18790
 V5.17.txt:18791
 V5.17.txt:18792
 V5.17.txt:18793
 V5.17.txt:18794
 V5.17.txt:18795
 V5.17.txt:18796
 V5.17.txt:18797
 V5.17.txt:18798
 V5.17.txt:18799
 V5.17.txt:18800
 V5.17.txt:18801
 V5.17.txt:18802
 V5.17.txt:18803
 V5.17.txt:18804
 V5.17.txt:18805
 V5.17.txt:18806
 V5.17.txt:18807
 V5.17.txt:18808
 V5.17.txt:18809
 V5.17.txt:18810
 V5.17.txt:18811
 V5.17.txt:18812
 V5.17.txt:18813
 V5.17.txt:18814
 V5.17.txt:18815
 V5.17.txt:18816
 V5.17.txt:18817
 V5.17.txt:18818
 V5.17.txt:18819
 V5.17.txt:18820
 V5.17.txt:18821
 V5.17.txt:18822
 V5.17.txt:18823
 V5.17.txt:18824
 V5.17.txt:18825
 V5.17.txt:18826
 V5.17.txt:18827
 V5.17.txt:18828
 V5.17.txt:18829
 V5.17.txt:18830
 V5.17.txt:18831
 V5.17.txt:18832
 V5.17.txt:18833
 V5.17.txt:18834
 V5.17.txt:18835
 V5.17.txt:18836
 V5.17.txt:18837
 V5.17.txt:18838
 V5.17.txt:18839
 V5.17.txt:18840
 V5.17.txt:18841
 V5.17.txt:18842
 V5.17.txt:18843
 V5.17.txt:18844
 V5.17.txt:18845
 V5.17.txt:18846
 V5.17.txt:18847
 V5.17.txt:18848
 V5.17.txt:18849
 V5.17.txt:18850
 V5.17.txt:18851
 V5.17.txt:18852
 V5.17.txt:18853
 V5.17.txt:18854
 V5.17.txt:18855
 V5.17.txt:18856
 V5.17.txt:18857
 V5.17.txt:18858
 V5.17.txt:18859
 V5.17.txt:18860
 V5.17.txt:18861
 V5.17.txt:18862
 V5.17.txt:18863
 V5.17.txt:18864
 V5.17.txt:18865
 V5.17.txt:18866
 V5.17.txt:18867
 V5.17.txt:18868
 V5.17.txt:18869
 V5.17.txt:18870
 V5.17.txt:18871
 V5.17.txt:18872
 V5.17.txt:18873
 V5.17.txt:18874
 V5.17.txt:18875
 V5.17.txt:18876
 V5.17.txt:18877
 V5.17.txt:18878
 V5.17.txt:18879
 V5.17.txt:18880
 V5.17.txt:18881
 V5.17.txt:18882
 V5.17.txt:18883
 V5.17.txt:18884
 V5.17.txt:18885
 V5.17.txt:18886
 V5.17.txt:18887
 V5.17.txt:18888
 V5.17.txt:18889
 V5.17.txt:18890
 V5.17.txt:18891
 V5.17.txt:18892
 V5.17.txt:18893
 V5.17.txt:18894
 V5.17.txt:18895
 V5.17.txt:18896
 V5.17.txt:18897
 V5.17.txt:18898
 V5.17.txt:18899
 V5.17.txt:18900
 V5.17.txt:18901
 V5.17.txt:18902
 V5.17.txt:18903
 V5.17.txt:18904
 V5.17.txt:18905
 V5.17.txt:18906
 V5.17.txt:18907
 V5.17.txt:18908
 V5.17.txt:18909
 V5.17.txt:18910
 V5.17.txt:18911
 V5.17.txt:18912
 V5.17.txt:18913
 V5.17.txt:18914
 V5.17.txt:18915
 V5.17.txt:18916
 V5.17.txt:18917
 V5.17.txt:18918
 V5.17.txt:18919
 V5.17.txt:18920
 V5.17.txt:18921
 V5.17.txt:18922
 V5.17.txt:18923
 V5.17.txt:18924
 V5.17.txt:18925
 V5.17.txt:18926
 V5.17.txt:18927
 V5.17.txt:18928
 V5.17.txt:18929
 V5.17.txt:18930
 V5.17.txt:18931
 V5.17.txt:18932
 V5.17.txt:18933
 V5.17.txt:18934
 V5.17.txt:18935
 V5.17.txt:18936
 V5.17.txt:18937
 V5.17.txt:18938
 V5.17.txt:18939
 V5.17.txt:18940
 V5.17.txt:18941
 V5.17.txt:18942
 V5.17.txt:18943
 V5.17.txt:18944
 V5.17.txt:18945
 V5.17.txt:18946
 V5.17.txt:18947
 V5.17.txt:18948
 V5.17.txt:18949
 V5.17.txt:18950
 V5.17.txt:18951
 V5.17.txt:18952
 V5.17.txt:18953
 V5.17.txt:18954
 V5.17.txt:18955
 V5.17.txt:18956
 V5.17.txt:18957
 V5.17.txt:18958
 V5.17.txt:18959
 V5.17.txt:18960
 V5.17.txt:18961
 V5.17.txt:18962
 V5.17.txt:18963
 V5.17.txt:18964
 V5.17.txt:18965
 V5.17.txt:18966
 V5.17.txt:18967
 V5.17.txt:18968
 V5.17.txt:18969
 V5.17.txt:18970
 V5.17.txt:18971
 V5.17.txt:18972
 V5.17.txt:18973
 V5.17.txt:18974
 V5.17.txt:18975
 V5.17.txt:18976
 V5.17.txt:18977
 V5.17.txt:18978
 V5.17.txt:18979
 V5.17.txt:18980
 V5.17.txt:18981
 V5.17.txt:18982
 V5.17.txt:18983
 V5.17.txt:18984
 V5.17.txt:18985
 V5.17.txt:18986
 V5.17.txt:18987
 V5.17.txt:18988
 V5.17.txt:18989
 V5.17.txt:18990
 V5.17.txt:18991
 V5.17.txt:18992
 V5.17.txt:18993
 V5.17.txt:18994
 V5.17.txt:18995
 V5.17.txt:18996
 V5.17.txt:18997
 V5.17.txt:18998
 V5.17.txt:18999
 V5.17.txt:19000
 V5.17.txt:19001
 V5.17.txt:19002
 V5.17.txt:19003
 V5.17.txt:19004
 V5.17.txt:19005
 V5.17.txt:19006
 V5.17.txt:19007
 V5.17.txt:19008
 V5.17.txt:19009
 V5.17.txt:19010
 V5.17.txt:19011
 V5.17.txt:19012
 V5.17.txt:19013
 V5.17.txt:19014
 V5.17.txt:19015
 V5.17.txt:19016
 V5.17.txt:19017
 V5.17.txt:19018
 V5.17.txt:19019
 V5.17.txt:19020
 V5.17.txt:19021
 V5.17.txt:19022
 V5.17.txt:19023
 V5.17.txt:19024
 V5.17.txt:19025
 V5.17.txt:19026
 V5.17.txt:19027
 V5.17.txt:19028
 V5.17.txt:19029
 V5.17.txt:19030
 V5.17.txt:19031
 V5.17.txt:19032
 V5.17.txt:19033
 V5.17.txt:19034
 V5.17.txt:19035
 V5.17.txt:19036
 V5.17.txt:19037
 V5.17.txt:19038
 V5.17.txt:19039
 V5.17.txt:19040
 V5.17.txt:19041
 V5.17.txt:19042
 V5.17.txt:19043
 V5.17.txt:19044
 V5.17.txt:19045
 V5.17.txt:19046
 V5.17.txt:19047
 V5.17.txt:19048
 V5.17.txt:19049
 V5.17.txt:19050
 V5.17.txt:19051
 V5.17.txt:19052
 V5.17.txt:19053
 V5.17.txt:19054
 V5.17.txt:19055
 V5.17.txt:19056
 V5.17.txt:19057
 V5.17.txt:19058
 V5.17.txt:19059
 V5.17.txt:19060
 V5.17.txt:19061
 V5.17.txt:19062
 V5.17.txt:19063
 V5.17.txt:19064
 V5.17.txt:19065
 V5.17.txt:19066
 V5.17.txt:19067
 V5.17.txt:19068
 V5.17.txt:19069
 V5.17.txt:19070
 V5.17.txt:19071
 V5.17.txt:19072
 V5.17.txt:19073
 V5.17.txt:19074
 V5.17.txt:19075
 V5.17.txt:19076
 V5.17.txt:19077
 V5.17.txt:19078
 V5.17.txt:19079
 V5.17.txt:19080
 V5.17.txt:19081
 V5.17.txt:19082
 V5.17.txt:19083
 V5.17.txt:19084
 V5.17.txt:19085
 V5.17.txt:19086
 V5.17.txt:19087
 V5.17.txt:19088
 V5.17.txt:19089
 V5.17.txt:19090
 V5.17.txt:19091
 V5.17.txt:19092
 V5.17.txt:19093
 V5.17.txt:19094
 V5.17.txt:19095
 V5.17.txt:19096
 V5.17.txt:19097
 V5.17.txt:19098
 V5.17.txt:19099
 V5.17.txt:19100
 V5.17.txt:19101
 V5.17.txt:19102
 V5.17.txt:19103
 V5.17.txt:19104
 V5.17.txt:19105
 V5.17.txt:19106
 V5.17.txt:19107
 V5.17.txt:19108
 V5.17.txt:19109
 V5.17.txt:19110
 V5.17.txt:19111
 V5.17.txt:19112
 V5.17.txt:19113
 V5.17.txt:19114
 V5.17.txt:19115
 V5.17.txt:19116
 V5.17.txt:19117
 V5.17.txt:19118
 V5.17.txt:19119
 V5.17.txt:19120
 V5.17.txt:19121
 V5.17.txt:19122
 V5.17.txt:19123
 V5.17.txt:19124
 V5.17.txt:19125
 V5.17.txt:19126
 V5.17.txt:19127
 V5.17.txt:19128
 V5.17.txt:19129
 V5.17.txt:19130
 V5.17.txt:19131
 V5.17.txt:19132
 V5.17.txt:19133
 V5.17.txt:19134
 V5.17.txt:19135
 V5.17.txt:19136
 V5.17.txt:19137
 V5.17.txt:19138
 V5.17.txt:19139
 V5.17.txt:19140
 V5.17.txt:19141
 V5.17.txt:19142
 V5.17.txt:19143
 V5.17.txt:19144
 V5.17.txt:19145
 V5.17.txt:19146
 V5.17.txt:19147
 V5.17.txt:19148
 V5.17.txt:19149
 V5.17.txt:19150
 V5.17.txt:19151
 V5.17.txt:19152
 V5.17.txt:19153
 V5.17.txt:19154
 V5.17.txt:19155
 V5.17.txt:19156
 V5.17.txt:19157
 V5.17.txt:19158
 V5.17.txt:19159
 V5.17.txt:19160
 V5.17.txt:19161
 V5.17.txt:19162
 V5.17.txt:19163
 V5.17.txt:19164
 V5.17.txt:19165
 V5.17.txt:19166
 V5.17.txt:19167
 V5.17.txt:19168
 V5.17.txt:19169
 V5.17.txt:19170
 V5.17.txt:19171
 V5.17.txt:19172
 V5.17.txt:19173
 V5.17.txt:19174
 V5.17.txt:19175
 V5.17.txt:19176
 V5.17.txt:19177
 V5.17.txt:19178
 V5.17.txt:19179
 V5.17.txt:19180
 V5.17.txt:19181
 V5.17.txt:19182
 V5.17.txt:19183
 V5.17.txt:19184
 V5.17.txt:19185
 V5.17.txt:19186
 V5.17.txt:19187
 V5.17.txt:19188
 V5.17.txt:19189
 V5.17.txt:19190
 V5.17.txt:19191
 V5.17.txt:19192
 V5.17.txt:19193
 V5.17.txt:19194
 V5.17.txt:19195
 V5.17.txt:19196
 V5.17.txt:19197
 V5.17.txt:19198
 V5.17.txt:19199
 V5.17.txt:19200
 V5.17.txt:19201
 V5.17.txt:19202
 V5.17.txt:19203
 V5.17.txt:19204
 V5.17.txt:19205
 V5.17.txt:19206
 V5.17.txt:19207
 V5.17.txt:19208
 V5.17.txt:19209
 V5.17.txt:19210
 V5.17.txt:19211
 V5.17.txt:19212
 V5.17.txt:19213
 V5.17.txt:19214
 V5.17.txt:19215
 V5.17.txt:19216
 V5.17.txt:19217
 V5.17.txt:19218
 V5.17.txt:19219
 V5.17.txt:19220
 V5.17.txt:19221
 V5.17.txt:19222
 V5.17.txt:19223
 V5.17.txt:19224
 V5.17.txt:19225
 V5.17.txt:19226
 V5.17.txt:19227
 V5.17.txt:19228
 V5.17.txt:19229
 V5.17.txt:19230
 V5.17.txt:19231
 V5.17.txt:19232
 V5.17.txt:19233
 V5.17.txt:19234
 V5.17.txt:19235
 V5.17.txt:19236
 V5.17.txt:19237
 V5.17.txt:19238
 V5.17.txt:19239
 V5.17.txt:19240
 V5.17.txt:19241
 V5.17.txt:19242
 V5.17.txt:19243
 V5.17.txt:19244
 V5.17.txt:19245
 V5.17.txt:19246
 V5.17.txt:19247
 V5.17.txt:19248
 V5.17.txt:19249
 V5.17.txt:19250
 V5.17.txt:19251
 V5.17.txt:19252
 V5.17.txt:19253
 V5.17.txt:19254
 V5.17.txt:19255
 V5.17.txt:19256
 V5.17.txt:19257
 V5.17.txt:19258
 V5.17.txt:19259
 V5.17.txt:19260
 V5.17.txt:19261
 V5.17.txt:19262
 V5.17.txt:19263
 V5.17.txt:19264
 V5.17.txt:19265
 V5.17.txt:19266
 V5.17.txt:19267
 V5.17.txt:19268
 V5.17.txt:19269
 V5.17.txt:19270
 V5.17.txt:19271
 V5.17.txt:19272
 V5.17.txt:19273
 V5.17.txt:19274
 V5.17.txt:19275
 V5.17.txt:19276
 V5.17.txt:19277
 V5.17.txt:19278
 V5.17.txt:19279
 V5.17.txt:19280
 V5.17.txt:19281
 V5.17.txt:19282
 V5.17.txt:19283
 V5.17.txt:19284
 V5.17.txt:19285
 V5.17.txt:19286
 V5.17.txt:19287
 V5.17.txt:19288
 V5.17.txt:19289
 V5.17.txt:19290
 V5.17.txt:19291
 V5.17.txt:19292
 V5.17.txt:19293
 V5.17.txt:19294
 V5.17.txt:19295
 V5.17.txt:19296
 V5.17.txt:19297
 V5.17.txt:19298
 V5.17.txt:19299
 V5.17.txt:19300
 V5.17.txt:19301
 V5.17.txt:19302
 V5.17.txt:19303
 V5.17.txt:19304
 V5.17.txt:19305
 V5.17.txt:19306
 V5.17.txt:19307
 V5.17.txt:19308
 V5.17.txt:19309
 V5.17.txt:19310
 V5.17.txt:19311
 V5.17.txt:19312
 V5.17.txt:19313
 V5.17.txt:19314
 V5.17.txt:19315
 V5.17.txt:19316
 V5.17.txt:19317
 V5.17.txt:19318
 V5.17.txt:19319
 V5.17.txt:19320
 V5.17.txt:19321
 V5.17.txt:19322
 V5.17.txt:19323
 V5.17.txt:19324
 V5.17.txt:19325
 V5.17.txt:19326
 V5.17.txt:19327
 V5.17.txt:19328
 V5.17.txt:19329
 V5.17.txt:19330
 V5.17.txt:19331
 V5.17.txt:19332
 V5.17.txt:19333
 V5.17.txt:19334
 V5.17.txt:19335
 V5.17.txt:19336
 V5.17.txt:19337
 V5.17.txt:19338
 V5.17.txt:19339
 V5.17.txt:19340
 V5.17.txt:19341
 V5.17.txt:19342
 V5.17.txt:19343
 V5.17.txt:19344
 V5.17.txt:19345
 V5.17.txt:19346
 V5.17.txt:19347
 V5.17.txt:19348
 V5.17.txt:19349
 V5.17.txt:19350
 V5.17.txt:19351
 V5.17.txt:19352
 V5.17.txt:19353
 V5.17.txt:19354
 V5.17.txt:19355
 V5.17.txt:19356
 V5.17.txt:19357
 V5.17.txt:19358
 V5.17.txt:19359
 V5.17.txt:19360
 V5.17.txt:19361
 V5.17.txt:19362
 V5.17.txt:19363
 V5.17.txt:19364
 V5.17.txt:19365
 V5.17.txt:19366
 V5.17.txt:19367
 V5.17.txt:19368
 V5.17.txt:19369
 V5.17.txt:19370
 V5.17.txt:19371
 V5.17.txt:19372
 V5.17.txt:19373
 V5.17.txt:19374
 V5.17.txt:19375
 V5.17.txt:19376
 V5.17.txt:19377
 V5.17.txt:19378
 V5.17.txt:19379
 V5.17.txt:19380
 V5.17.txt:19381
 V5.17.txt:19382
 V5.17.txt:19383
 V5.17.txt:19384
 V5.17.txt:19385
 V5.17.txt:19386
 V5.17.txt:19387
 V5.17.txt:19388
 V5.17.txt:19389
 V5.17.txt:19390
 V5.17.txt:19391
 V5.17.txt:19392
 V5.17.txt:19393
 V5.17.txt:19394
 V5.17.txt:19395
 V5.17.txt:19396
 V5.17.txt:19397
 V5.17.txt:19398
 V5.17.txt:19399
 V5.17.txt:19400
 V5.17.txt:19401
 V5.17.txt:19402
 V5.17.txt:19403
 V5.17.txt:19404
 V5.17.txt:19405
 V5.17.txt:19406
 V5.17.txt:19407
 V5.17.txt:19408
 V5.17.txt:19409
 V5.17.txt:19410
 V5.17.txt:19411
 V5.17.txt:19412
 V5.17.txt:19413
 V5.17.txt:19414
 V5.17.txt:19415
 V5.17.txt:19416
 V5.17.txt:19417
 V5.17.txt:19418
 V5.17.txt:19419
 V5.17.txt:19420
 V5.17.txt:19421
 V5.17.txt:19422
 V5.17.txt:19423
 V5.17.txt:19424
 V5.17.txt:19425
 V5.17.txt:19426
 V5.17.txt:19427
 V5.17.txt:19428
 V5.17.txt:19429
 V5.17.txt:19430
 V5.17.txt:19431
 V5.17.txt:19432
 V5.17.txt:19433
 V5.17.txt:19434
 V5.17.txt:19435
 V5.17.txt:19436
 V5.17.txt:19437
 V5.17.txt:19438
 V5.17.txt:19439
 V5.17.txt:19440
 V5.17.txt:19441
 V5.17.txt:19442
 V5.17.txt:19443
 V5.17.txt:19444
 V5.17.txt:19445
 V5.17.txt:19446
 V5.17.txt:19447
 V5.17.txt:19448
 V5.17.txt:19449
 V5.17.txt:19450
 V5.17.txt:19451
 V5.17.txt:19452
 V5.17.txt:19453
 V5.17.txt:19454
 V5.17.txt:19455
 V5.17.txt:19456
 V5.17.txt:19457
 V5.17.txt:19458
 V5.17.txt:19459
 V5.17.txt:19460
 V5.17.txt:19461
 V5.17.txt:19462
 V5.17.txt:19463
 V5.17.txt:19464
 V5.17.txt:19465
 V5.17.txt:19466
 V5.17.txt:19467
 V5.17.txt:19468
 V5.17.txt:19469
 V5.17.txt:19470
 V5.17.txt:19471
 V5.17.txt:19472
 V5.17.txt:19473
 V5.17.txt:19474
 V5.17.txt:19475
 V5.17.txt:19476
 V5.17.txt:19477
 V5.17.txt:19478
 V5.17.txt:19479
 V5.17.txt:19480
 V5.17.txt:19481
 V5.17.txt:19482
 V5.17.txt:19483
 V5.17.txt:19484
 V5.17.txt:19485
 V5.17.txt:19486
 V5.17.txt:19487
 V5.17.txt:19488
 V5.17.txt:19489
 V5.17.txt:19490
 V5.17.txt:19491
 V5.17.txt:19492
 V5.17.txt:19493
 V5.17.txt:19494
 V5.17.txt:19495
 V5.17.txt:19496
 V5.17.txt:19497
 V5.17.txt:19498
 V5.17.txt:19499
 V5.17.txt:19500
 V5.17.txt:19501
 V5.17.txt:19502
 V5.17.txt:19503
 V5.17.txt:19504
 V5.17.txt:19505
 V5.17.txt:19506
 V5.17.txt:19507
 V5.17.txt:19508
 V5.17.txt:19509
 V5.17.txt:19510
 V5.17.txt:19511
 V5.17.txt:19512
 V5.17.txt:19513
 V5.17.txt:19514
 V5.17.txt:19515
 V5.17.txt:19516
 V5.17.txt:19517
 V5.17.txt:19518
 V5.17.txt:19519
 V5.17.txt:19520
 V5.17.txt:19521
 V5.17.txt:19522
 V5.17.txt:19523
 V5.17.txt:19524
 V5.17.txt:19525
 V5.17.txt:19526
 V5.17.txt:19527
 V5.17.txt:19528
 V5.17.txt:19529
 V5.17.txt:19530
 V5.17.txt:19531
 V5.17.txt:19532
 V5.17.txt:19533
 V5.17.txt:19534
 V5.17.txt:19535
 V5.17.txt:19536
 V5.17.txt:19537
 V5.17.txt:19538
 V5.17.txt:19539
 V5.17.txt:19540
 V5.17.txt:19541
 V5.17.txt:19542
 V5.17.txt:19543
 V5.17.txt:19544
 V5.17.txt:19545
 V5.17.txt:19546
 V5.17.txt:19547
 V5.17.txt:19548
 V5.17.txt:19549
 V5.17.txt:19550
 V5.17.txt:19551
 V5.17.txt:19552
 V5.17.txt:19553
 V5.17.txt:19554
 V5.17.txt:19555
 V5.17.txt:19556
 V5.17.txt:19557
 V5.17.txt:19558
 V5.17.txt:19559
 V5.17.txt:19560
 V5.17.txt:19561
 V5.17.txt:19562
 V5.17.txt:19563
 V5.17.txt:19564
 V5.17.txt:19565
 V5.17.txt:19566
 V5.17.txt:19567
 V5.17.txt:19568
 V5.17.txt:19569
 V5.17.txt:19570
 V5.17.txt:19571
 V5.17.txt:19572
 V5.17.txt:19573
 V5.17.txt:19574
 V5.17.txt:19575
 V5.17.txt:19576
 V5.17.txt:19577
 V5.17.txt:19578
 V5.17.txt:19579
 V5.17.txt:19580
 V5.17.txt:19581
 V5.17.txt:19582
 V5.17.txt:19583
 V5.17.txt:19584
 V5.17.txt:19585
 V5.17.txt:19586
 V5.17.txt:19587
 V5.17.txt:19588
 V5.17.txt:19589
 V5.17.txt:19590
 V5.17.txt:19591
 V5.17.txt:19592
 V5.17.txt:19593
 V5.17.txt:19594
 V5.17.txt:19595
 V5.17.txt:19596
 V5.17.txt:19597
 V5.17.txt:19598
 V5.17.txt:19599
 V5.17.txt:19600
 V5.17.txt:19601
 V5.17.txt:19602
 V5.17.txt:19603
 V5.17.txt:19604
 V5.17.txt:19605
 V5.17.txt:19606
 V5.17.txt:19607
 V5.17.txt:19608
 V5.17.txt:19609
 V5.17.txt:19610
 V5.17.txt:19611
 V5.17.txt:19612
 V5.17.txt:19613
 V5.17.txt:19614
 V5.17.txt:19615
 V5.17.txt:19616
 V5.17.txt:19617
 V5.17.txt:19618
 V5.17.txt:19619
 V5.17.txt:19620
 V5.17.txt:19621
 V5.17.txt:19622
 V5.17.txt:19623
 V5.17.txt:19624
 V5.17.txt:19625
 V5.17.txt:19626
 V5.17.txt:19627
 V5.17.txt:19628
 V5.17.txt:19629
 V5.17.txt:19630
 V5.17.txt:19631
 V5.17.txt:19632
 V5.17.txt:19633
 V5.17.txt:19634
 V5.17.txt:19635
 V5.17.txt:19636
 V5.17.txt:19637
 V5.17.txt:19638
 V5.17.txt:19639
 V5.17.txt:19640
 V5.17.txt:19641
 V5.17.txt:19642
 V5.17.txt:19643
 V5.17.txt:19644
 V5.17.txt:19645
 V5.17.txt:19646
 V5.17.txt:19647
 V5.17.txt:19648
 V5.17.txt:19649
 V5.17.txt:19650
 V5.17.txt:19651
 V5.17.txt:19652
 V5.17.txt:19653
 V5.17.txt:19654
 V5.17.txt:19655
 V5.17.txt:19656
 V5.17.txt:19657
 V5.17.txt:19658
 V5.17.txt:19659
 V5.17.txt:19660
 V5.17.txt:19661
 V5.17.txt:19662
 V5.17.txt:19663
 V5.17.txt:19664
 V5.17.txt:19665
 V5.17.txt:19666
 V5.17.txt:19667
 V5.17.txt:19668
 V5.17.txt:19669
 V5.17.txt:19670
 V5.17.txt:19671
 V5.17.txt:19672
 V5.17.txt:19673
 V5.17.txt:19674
 V5.17.txt:19675
 V5.17.txt:19676
 V5.17.txt:19677
 V5.17.txt:19678
 V5.17.txt:19679
 V5.17.txt:19680
 V5.17.txt:19681
 V5.17.txt:19682
 V5.17.txt:19683
 V5.17.txt:19684
 V5.17.txt:19685
 V5.17.txt:19686
 V5.17.txt:19687
 V5.17.txt:19688
 V5.17.txt:19689
 V5.17.txt:19690
 V5.17.txt:19691
 V5.17.txt:19692
 V5.17.txt:19693
 V5.17.txt:19694
 V5.17.txt:19695
 V5.17.txt:19696
 V5.17.txt:19697
 V5.17.txt:19698
 V5.17.txt:19699
 V5.17.txt:19700
 V5.17.txt:19701
 V5.17.txt:19702
 V5.17.txt:19703
 V5.17.txt:19704
 V5.17.txt:19705
 V5.17.txt:19706
 V5.17.txt:19707
 V5.17.txt:19708
 V5.17.txt:19709
 V5.17.txt:19710
 V5.17.txt:19711
 V5.17.txt:19712
 V5.17.txt:19713
 V5.17.txt:19714
 V5.17.txt:19715
 V5.17.txt:19716
 V5.17.txt:19717
 V5.17.txt:19718
 V5.17.txt:19719
 V5.17.txt:19720
 V5.17.txt:19721
 V5.17.txt:19722
 V5.17.txt:19723
 V5.17.txt:19724
 V5.17.txt:19725
 V5.17.txt:19726
 V5.17.txt:19727
 V5.17.txt:19728
 V5.17.txt:19729
 V5.17.txt:19730
 V5.17.txt:19731
 V5.17.txt:19732
 V5.17.txt:19733
 V5.17.txt:19734
 V5.17.txt:19735
 V5.17.txt:19736
 V5.17.txt:19737
 V5.17.txt:19738
 V5.17.txt:19739
 V5.17.txt:19740
 V5.17.txt:19741
 V5.17.txt:19742
 V5.17.txt:19743
 V5.17.txt:19744
 V5.17.txt:19745
 V5.17.txt:19746
 V5.17.txt:19747
 V5.17.txt:19748
 V5.17.txt:19749
 V5.17.txt:19750
 V5.17.txt:19751
 V5.17.txt:19752
 V5.17.txt:19753
 V5.17.txt:19754
 V5.17.txt:19755
 V5.17.txt:19756
 V5.17.txt:19757
 V5.17.txt:19758
 V5.17.txt:19759
 V5.17.txt:19760
 V5.17.txt:19761
 V5.17.txt:19762
 V5.17.txt:19763
 V5.17.txt:19764
 V5.17.txt:19765
 V5.17.txt:19766
 V5.17.txt:19767
 V5.17.txt:19768
 V5.17.txt:19769
 V5.17.txt:19770
 V5.17.txt:19771
 V5.17.txt:19772
 V5.17.txt:19773
 V5.17.txt:19774
 V5.17.txt:19775
 V5.17.txt:19776
 V5.17.txt:19777
 V5.17.txt:19778
 V5.17.txt:19779
 V5.17.txt:19780
 V5.17.txt:19781
 V5.17.txt:19782
 V5.17.txt:19783
 V5.17.txt:19784
 V5.17.txt:19785
 V5.17.txt:19786
 V5.17.txt:19787
 V5.17.txt:19788
 V5.17.txt:19789
 V5.17.txt:19790
 V5.17.txt:19791
 V5.17.txt:19792
 V5.17.txt:19793
 V5.17.txt:19794
 V5.17.txt:19795
 V5.17.txt:19796
 V5.17.txt:19797
 V5.17.txt:19798
 V5.17.txt:19799
 V5.17.txt:19800
 V5.17.txt:19801
 V5.17.txt:19802
 V5.17.txt:19803
 V5.17.txt:19804
 V5.17.txt:19805
 V5.17.txt:19806
 V5.17.txt:19807
 V5.17.txt:19808
 V5.17.txt:19809
 V5.17.txt:19810
 V5.17.txt:19811
 V5.17.txt:19812
 V5.17.txt:19813
 V5.17.txt:19814
 V5.17.txt:19815
 V5.17.txt:19816
 V5.17.txt:19817
 V5.17.txt:19818
 V5.17.txt:19819
 V5.17.txt:19820
 V5.17.txt:19821
 V5.17.txt:19822
 V5.17.txt:19823
 V5.17.txt:19824
 V5.17.txt:19825
 V5.17.txt:19826
 V5.17.txt:19827
 V5.17.txt:19828
 V5.17.txt:19829
 V5.17.txt:19830
 V5.17.txt:19831
 V5.17.txt:19832
 V5.17.txt:19833
 V5.17.txt:19834
 V5.17.txt:19835
 V5.17.txt:19836
 V5.17.txt:19837
 V5.17.txt:19838
 V5.17.txt:19839
 V5.17.txt:19840
 V5.17.txt:19841
 V5.17.txt:19842
 V5.17.txt:19843
 V5.17.txt:19844
 V5.17.txt:19845
 V5.17.txt:19846
 V5.17.txt:19847
 V5.17.txt:19848
 V5.17.txt:19849
 V5.17.txt:19850
 V5.17.txt:19851
 V5.17.txt:19852
 V5.17.txt:19853
 V5.17.txt:19854
 V5.17.txt:19855
 V5.17.txt:19856
 V5.17.txt:19857
 V5.17.txt:19858
 V5.17.txt:19859
 V5.17.txt:19860
 V5.17.txt:19861
 V5.17.txt:19862
 V5.17.txt:19863
 V5.17.txt:19864
 V5.17.txt:19865
 V5.17.txt:19866
 V5.17.txt:19867
 V5.17.txt:19868
 V5.17.txt:19869
 V5.17.txt:19870
 V5.17.txt:19871
 V5.17.txt:19872
 V5.17.txt:19873
 V5.17.txt:19874
 V5.17.txt:19875
 V5.17.txt:19876
 V5.17.txt:19877
 V5.17.txt:19878
 V5.17.txt:19879
 V5.17.txt:19880
 V5.17.txt:19881
 V5.17.txt:19882
 V5.17.txt:19883
 V5.17.txt:19884
 V5.17.txt:19885
 V5.17.txt:19886
 V5.17.txt:19887
 V5.17.txt:19888
 V5.17.txt:19889
 V5.17.txt:19890
 V5.17.txt:19891
 V5.17.txt:19892
 V5.17.txt:19893
 V5.17.txt:19894
 V5.17.txt:19895
 V5.17.txt:19896
 V5.17.txt:19897
 V5.17.txt:19898
 V5.17.txt:19899
 V5.17.txt:19900
 V5.17.txt:19901
 V5.17.txt:19902
 V5.17.txt:19903
 V5.17.txt:19904
 V5.17.txt:19905
 V5.17.txt:19906
 V5.17.txt:19907
 V5.17.txt:19908
 V5.17.txt:19909
 V5.17.txt:19910
 V5.17.txt:19911
 V5.17.txt:19912
 V5.17.txt:19913
 V5.17.txt:19914
 V5.17.txt:19915
 V5.17.txt:19916
 V5.17.txt:19917
 V5.17.txt:19918
 V5.17.txt:19919
 V5.17.txt:19920
 V5.17.txt:19921
 V5.17.txt:19922
 V5.17.txt:19923
 V5.17.txt:19924
 V5.17.txt:19925
 V5.17.txt:19926
 V5.17.txt:19927
 V5.17.txt:19928
 V5.17.txt:19929
 V5.17.txt:19930
 V5.17.txt:19931
 V5.17.txt:19932
 V5.17.txt:19933
 V5.17.txt:19934
 V5.17.txt:19935
 V5.17.txt:19936
 V5.17.txt:19937
 V5.17.txt:19938
 V5.17.txt:19939
 V5.17.txt:19940
 V5.17.txt:19941
 V5.17.txt:19942
 V5.17.txt:19943
 V5.17.txt:19944
 V5.17.txt:19945
 V5.17.txt:19946
 V5.17.txt:19947
 V5.17.txt:19948
 V5.17.txt:19949
 V5.17.txt:19950
 V5.17.txt:19951
 V5.17.txt:19952
 V5.17.txt:19953
 V5.17.txt:19954
 V5.17.txt:19955
 V5.17.txt:19956
 V5.17.txt:19957
 V5.17.txt:19958
 V5.17.txt:19959
 V5.17.txt:19960
 V5.17.txt:19961
 V5.17.txt:19962
 V5.17.txt:19963
 V5.17.txt:19964
 V5.17.txt:19965
 V5.17.txt:19966
 V5.17.txt:19967
 V5.17.txt:19968
 V5.17.txt:19969
 V5.17.txt:19970
 V5.17.txt:19971
 V5.17.txt:19972
 V5.17.txt:19973
 V5.17.txt:19974
 V5.17.txt:19975
 V5.17.txt:19976
 V5.17.txt:19977
 V5.17.txt:19978
 V5.17.txt:19979
 V5.17.txt:19980
 V5.17.txt:19981
 V5.17.txt:19982
 V5.17.txt:19983
 V5.17.txt:19984
 V5.17.txt:19985
 V5.17.txt:19986
 V5.17.txt:19987
 V5.17.txt:19988
 V5.17.txt:19989
 V5.17.txt:19990
 V5.17.txt:19991
 V5.17.txt:19992
 V5.17.txt:19993
 V5.17.txt:19994
 V5.17.txt:19995
 V5.17.txt:19996
 V5.17.txt:19997
 V5.17.txt:19998
 V5.17.txt:19999
 V5.17.txt:20000
 V5.17.txt:20001
 V5.17.txt:20002
 V5.17.txt:20003
 V5.17.txt:20004
 V5.17.txt:20005
 V5.17.txt:20006
 V5.17.txt:20007
 V5.17.txt:20008
 V5.17.txt:20009
 V5.17.txt:20010
 V5.17.txt:20011
 V5.17.txt:20012
 V5.17.txt:20013
 V5.17.txt:20014
 V5.17.txt:20015
 V5.17.txt:20016
 V5.17.txt:20017
 V5.17.txt:20018
 V5.17.txt:20019
 V5.17.txt:20020
 V5.17.txt:20021
 V5.17.txt:20022
 V5.17.txt:20023
 V5.17.txt:20024
 V5.17.txt:20025
 V5.17.txt:20026
 V5.17.txt:20027
 V5.17.txt:20028
 V5.17.txt:20029
 V5.17.txt:20030
 V5.17.txt:20031
 V5.17.txt:20032
 V5.17.txt:20033
 V5.17.txt:20034
 V5.17.txt:20035
 V5.17.txt:20036
 V5.17.txt:20037
 V5.17.txt:20038
 V5.17.txt:20039
 V5.17.txt:20040
 V5.17.txt:20041
 V5.17.txt:20042
 V5.17.txt:20043
 V5.17.txt:20044
 V5.17.txt:20045
 V5.17.txt:20046
 V5.17.txt:20047
 V5.17.txt:20048
 V5.17.txt:20049
 V5.17.txt:20050
 V5.17.txt:20051
 V5.17.txt:20052
 V5.17.txt:20053
 V5.17.txt:20054
 V5.17.txt:20055
 V5.17.txt:20056
 V5.17.txt:20057
 V5.17.txt:20058
 V5.17.txt:20059
 V5.17.txt:20060
 V5.17.txt:20061
 V5.17.txt:20062
 V5.17.txt:20063
 V5.17.txt:20064
 V5.17.txt:20065
 V5.17.txt:20066
 V5.17.txt:20067
 V5.17.txt:20068
 V5.17.txt:20069
 V5.17.txt:20070
 V5.17.txt:20071
 V5.17.txt:20072
 V5.17.txt:20073
 V5.17.txt:20074
 V5.17.txt:20075
 V5.17.txt:20076
 V5.17.txt:20077
 V5.17.txt:20078
 V5.17.txt:20079
 V5.17.txt:20080
 V5.17.txt:20081
 V5.17.txt:20082
 V5.17.txt:20083
 V5.17.txt:20084
 V5.17.txt:20085
 V5.17.txt:20086
 V5.17.txt:20087
 V5.17.txt:20088
 V5.17.txt:20089
 V5.17.txt:20090
 V5.17.txt:20091
 V5.17.txt:20092
 V5.17.txt:20093
 V5.17.txt:20094
 V5.17.txt:20095
 V5.17.txt:20096
 V5.17.txt:20097
 V5.17.txt:20098
 V5.17.txt:20099
 V5.17.txt:20100
 V5.17.txt:20101
 V5.17.txt:20102
 V5.17.txt:20103
 V5.17.txt:20104
 V5.17.txt:20105
 V5.17.txt:20106
 V5.17.txt:20107
 V5.17.txt:20108
 V5.17.txt:20109
 V5.17.txt:20110
 V5.17.txt:20111
 V5.17.txt:20112
 V5.17.txt:20113
 V5.17.txt:20114
 V5.17.txt:20115
 V5.17.txt:20116
 V5.17.txt:20117
 V5.17.txt:20118
 V5.17.txt:20119
 V5.17.txt:20120
 V5.17.txt:20121
 V5.17.txt:20122
 V5.17.txt:20123
 V5.17.txt:20124
 V5.17.txt:20125
 V5.17.txt:20126
 V5.17.txt:20127
 V5.17.txt:20128
 V5.17.txt:20129
 V5.17.txt:20130
 V5.17.txt:20131
 V5.17.txt:20132
 V5.17.txt:20133
 V5.17.txt:20134
 V5.17.txt:20135
 V5.17.txt:20136
 V5.17.txt:20137
 V5.17.txt:20138
 V5.17.txt:20139
 V5.17.txt:20140
 V5.17.txt:20141
 V5.17.txt:20142
 V5.17.txt:20143
 V5.17.txt:20144
 V5.17.txt:20145
 V5.17.txt:20146
 V5.17.txt:20147
 V5.17.txt:20148
 V5.17.txt:20149
 V5.17.txt:20150
 V5.17.txt:20151
 V5.17.txt:20152
 V5.17.txt:20153
 V5.17.txt:20154
 V5.17.txt:20155
 V5.17.txt:20156
 V5.17.txt:20157
 V5.17.txt:20158
 V5.17.txt:20159
 V5.17.txt:20160
 V5.17.txt:20161
 V5.17.txt:20162
 V5.17.txt:20163
 V5.17.txt:20164
 V5.17.txt:20165
 V5.17.txt:20166
 V5.17.txt:20167
 V5.17.txt:20168
 V5.17.txt:20169
 V5.17.txt:20170
 V5.17.txt:20171
 V5.17.txt:20172
 V5.17.txt:20173
 V5.17.txt:20174
 V5.17.txt:20175
 V5.17.txt:20176
 V5.17.txt:20177
 V5.17.txt:20178
 V5.17.txt:20179
 V5.17.txt:20180
 V5.17.txt:20181
 V5.17.txt:20182
 V5.17.txt:20183
 V5.17.txt:20184
 V5.17.txt:20185
 V5.17.txt:20186
 V5.17.txt:20187
 V5.17.txt:20188
 V5.17.txt:20189
 V5.17.txt:20190
 V5.17.txt:20191
 V5.17.txt:20192
 V5.17.txt:20193
 V5.17.txt:20194
 V5.17.txt:20195
 V5.17.txt:20196
 V5.17.txt:20197
 V5.17.txt:20198
 V5.17.txt:20199
 V5.17.txt:20200
 V5.17.txt:20201
 V5.17.txt:20202
 V5.17.txt:20203
 V5.17.txt:20204
 V5.17.txt:20205
 V5.17.txt:20206
 V5.17.txt:20207
 V5.17.txt:20208
 V5.17.txt:20209
 V5.17.txt:20210
 V5.17.txt:20211
 V5.17.txt:20212
 V5.17.txt:20213
 V5.17.txt:20214
 V5.17.txt:20215
 V5.17.txt:20216
 V5.17.txt:20217
 V5.17.txt:20218
 V5.17.txt:20219
 V5.17.txt:20220
 V5.17.txt:20221
 V5.17.txt:20222
 V5.17.txt:20223
 V5.17.txt:20224
 V5.17.txt:20225
 V5.17.txt:20226
 V5.17.txt:20227
 V5.17.txt:20228
 V5.17.txt:20229
 V5.17.txt:20230
 V5.17.txt:20231
 V5.17.txt:20232
 V5.17.txt:20233
 V5.17.txt:20234
 V5.17.txt:20235
 V5.17.txt:20236
 V5.17.txt:20237
 V5.17.txt:20238
 V5.17.txt:20239
 V5.17.txt:20240
 V5.17.txt:20241
 V5.17.txt:20242
 V5.17.txt:20243
 V5.17.txt:20244
 V5.17.txt:20245
 V5.17.txt:20246
 V5.17.txt:20247
 V5.17.txt:20248
 V5.17.txt:20249
 V5.17.txt:20250
 V5.17.txt:20251
 V5.17.txt:20252
 V5.17.txt:20253
 V5.17.txt:20254
 V5.17.txt:20255
 V5.17.txt:20256
 V5.17.txt:20257
 V5.17.txt:20258
 V5.17.txt:20259
 V5.17.txt:20260
 V5.17.txt:20261
 V5.17.txt:20262
 V5.17.txt:20263
 V5.17.txt:20264
 V5.17.txt:20265
 V5.17.txt:20266
 V5.17.txt:20267
 V5.17.txt:20268
 V5.17.txt:20269
 V5.17.txt:20270
 V5.17.txt:20271
 V5.17.txt:20272
 V5.17.txt:20273
 V5.17.txt:20274
 V5.17.txt:20275
 V5.17.txt:20276
 V5.17.txt:20277
 V5.17.txt:20278
 V5.17.txt:20279
 V5.17.txt:20280
 V5.17.txt:20281
 V5.17.txt:20282
 V5.17.txt:20283
 V5.17.txt:20284
 V5.17.txt:20285
 V5.17.txt:20286
 V5.17.txt:20287
 V5.17.txt:20288
 V5.17.txt:20289
 V5.17.txt:20290
 V5.17.txt:20291
 V5.17.txt:20292
 V5.17.txt:20293
 V5.17.txt:20294
 V5.17.txt:20295
 V5.17.txt:20296
 V5.17.txt:20297
 V5.17.txt:20298
 V5.17.txt:20299
 V5.17.txt:20300
 V5.17.txt:20301
 V5.17.txt:20302
 V5.17.txt:20303
 V5.17.txt:20304
 V5.17.txt:20305
 V5.17.txt:20306
 V5.17.txt:20307
 V5.17.txt:20308
 V5.17.txt:20309
 V5.17.txt:20310
 V5.17.txt:20311
 V5.17.txt:20312
 V5.17.txt:20313
 V5.17.txt:20314
 V5.17.txt:20315
 V5.17.txt:20316
 V5.17.txt:20317
 V5.17.txt:20318
 V5.17.txt:20319
 V5.17.txt:20320
 V5.17.txt:20321
 V5.17.txt:20322
 V5.17.txt:20323
 V5.17.txt:20324
 V5.17.txt:20325
 V5.17.txt:20326
 V5.17.txt:20327
 V5.17.txt:20328
 V5.17.txt:20329
 V5.17.txt:20330
 V5.17.txt:20331
 V5.17.txt:20332
 V5.17.txt:20333
 V5.17.txt:20334
 V5.17.txt:20335
 V5.17.txt:20336
 V5.17.txt:20337
 V5.17.txt:20338
 V5.17.txt:20339
 V5.17.txt:20340
 V5.17.txt:20341
 V5.17.txt:20342
 V5.17.txt:20343
 V5.17.txt:20344
 V5.17.txt:20345
 V5.17.txt:20346
 V5.17.txt:20347
 V5.17.txt:20348
 V5.17.txt:20349
 V5.17.txt:20350
 V5.17.txt:20351
 V5.17.txt:20352
 V5.17.txt:20353
 V5.17.txt:20354
 V5.17.txt:20355
 V5.17.txt:20356
 V5.17.txt:20357
 V5.17.txt:20358
 V5.17.txt:20359
 V5.17.txt:20360
 V5.17.txt:20361
 V5.17.txt:20362
 V5.17.txt:20363
 V5.17.txt:20364
 V5.17.txt:20365
 V5.17.txt:20366
 V5.17.txt:20367
 V5.17.txt:20368
 V5.17.txt:20369
 V5.17.txt:20370
 V5.17.txt:20371
 V5.17.txt:20372
 V5.17.txt:20373
 V5.17.txt:20374
 V5.17.txt:20375
 V5.17.txt:20376
 V5.17.txt:20377
 V5.17.txt:20378
 V5.17.txt:20379
 V5.17.txt:20380
 V5.17.txt:20381
 V5.17.txt:20382
 V5.17.txt:20383
 V5.17.txt:20384
 V5.17.txt:20385
 V5.17.txt:20386
 V5.17.txt:20387
 V5.17.txt:20388
 V5.17.txt:20389
 V5.17.txt:20390
 V5.17.txt:20391
 V5.17.txt:20392
 V5.17.txt:20393
 V5.17.txt:20394
 V5.17.txt:20395
 V5.17.txt:20396
 V5.17.txt:20397
 V5.17.txt:20398
 V5.17.txt:20399
 V5.17.txt:20400
 V5.17.txt:20401
 V5.17.txt:20402
 V5.17.txt:20403
 V5.17.txt:20404
 V5.17.txt:20405
 V5.17.txt:20406
 V5.17.txt:20407
 V5.17.txt:20408
 V5.17.txt:20409
 V5.17.txt:20410
 V5.17.txt:20411
 V5.17.txt:20412
 V5.17.txt:20413
 V5.17.txt:20414
 V5.17.txt:20415
 V5.17.txt:20416
 V5.17.txt:20417
 V5.17.txt:20418
 V5.17.txt:20419
 V5.17.txt:20420
 V5.17.txt:20421
 V5.17.txt:20422
 V5.17.txt:20423
 V5.17.txt:20424
 V5.17.txt:20425
 V5.17.txt:20426
 V5.17.txt:20427
 V5.17.txt:20428
 V5.17.txt:20429
 V5.17.txt:20430
 V5.17.txt:20431
 V5.17.txt:20432
 V5.17.txt:20433
 V5.17.txt:20434
 V5.17.txt:20435
 V5.17.txt:20436
 V5.17.txt:20437
 V5.17.txt:20438
 V5.17.txt:20439
 V5.17.txt:20440
 V5.17.txt:20441
 V5.17.txt:20442
 V5.17.txt:20443
 V5.17.txt:20444
 V5.17.txt:20445
 V5.17.txt:20446
 V5.17.txt:20447
 V5.17.txt:20448
 V5.17.txt:20449
 V5.17.txt:20450
 V5.17.txt:20451
 V5.17.txt:20452
 V5.17.txt:20453
 V5.17.txt:20454
 V5.17.txt:20455
 V5.17.txt:20456
 V5.17.txt:20457
 V5.17.txt:20458
 V5.17.txt:20459
 V5.17.txt:20460
 V5.17.txt:20461
 V5.17.txt:20462
 V5.17.txt:20463
 V5.17.txt:20464
 V5.17.txt:20465
 V5.17.txt:20466
 V5.17.txt:20467
 V5.17.txt:20468
 V5.17.txt:20469
 V5.17.txt:20470
 V5.17.txt:20471
 V5.17.txt:20472
 V5.17.txt:20473
 V5.17.txt:20474
 V5.17.txt:20475
 V5.17.txt:20476
 V5.17.txt:20477
 V5.17.txt:20478
 V5.17.txt:20479
 V5.17.txt:20480
 V5.17.txt:20481
 V5.17.txt:20482
 V5.17.txt:20483
 V5.17.txt:20484
 V5.17.txt:20485
 V5.17.txt:20486
 V5.17.txt:20487
 V5.17.txt:20488
 V5.17.txt:20489
 V5.17.txt:20490
 V5.17.txt:20491
 V5.17.txt:20492
 V5.17.txt:20493
 V5.17.txt:20494
 V5.17.txt:20495
 V5.17.txt:20496
 V5.17.txt:20497
 V5.17.txt:20498
 V5.17.txt:20499
 V5.17.txt:20500
 V5.17.txt:20501
 V5.17.txt:20502
 V5.17.txt:20503
 V5.17.txt:20504
 V5.17.txt:20505
 V5.17.txt:20506
 V5.17.txt:20507
 V5.17.txt:20508
 V5.17.txt:20509
 V5.17.txt:20510
 V5.17.txt:20511
 V5.17.txt:20512
 V5.17.txt:20513
 V5.17.txt:20514
 V5.17.txt:20515
 V5.17.txt:20516
 V5.17.txt:20517
 V5.17.txt:20518
 V5.17.txt:20519
 V5.17.txt:20520
 V5.17.txt:20521
 V5.17.txt:20522
 V5.17.txt:20523
 V5.17.txt:20524
 V5.17.txt:20525
 V5.17.txt:20526
 V5.17.txt:20527
 V5.17.txt:20528
 V5.17.txt:20529
 V5.17.txt:20530
 V5.17.txt:20531
 V5.17.txt:20532
 V5.17.txt:20533
 V5.17.txt:20534
 V5.17.txt:20535
 V5.17.txt:20536
 V5.17.txt:20537
 V5.17.txt:20538
 V5.17.txt:20539
 V5.17.txt:20540
 V5.17.txt:20541
 V5.17.txt:20542
 V5.17.txt:20543
 V5.17.txt:20544
 V5.17.txt:20545
 V5.17.txt:20546
 V5.17.txt:20547
 V5.17.txt:20548
 V5.17.txt:20549
 V5.17.txt:20550
 V5.17.txt:20551
 V5.17.txt:20552
 V5.17.txt:20553
 V5.17.txt:20554
 V5.17.txt:20555
 V5.17.txt:20556
 V5.17.txt:20557
 V5.17.txt:20558
 V5.17.txt:20559
 V5.17.txt:20560
 V5.17.txt:20561
 V5.17.txt:20562
 V5.17.txt:20563
 V5.17.txt:20564
 V5.17.txt:20565
 V5.17.txt:20566
 V5.17.txt:20567
 V5.17.txt:20568
 V5.17.txt:20569
 V5.17.txt:20570
 V5.17.txt:20571
 V5.17.txt:20572
 V5.17.txt:20573
 V5.17.txt:20574
 V5.17.txt:20575
 V5.17.txt:20576
 V5.17.txt:20577
 V5.17.txt:20578
 V5.17.txt:20579
 V5.17.txt:20580
 V5.17.txt:20581
 V5.17.txt:20582
 V5.17.txt:20583
 V5.17.txt:20584
 V5.17.txt:20585
 V5.17.txt:20586
 V5.17.txt:20587
 V5.17.txt:20588
 V5.17.txt:20589
 V5.17.txt:20590
 V5.17.txt:20591
 V5.17.txt:20592
 V5.17.txt:20593
 V5.17.txt:20594
 V5.17.txt:20595
 V5.17.txt:20596
 V5.17.txt:20597
 V5.17.txt:20598
 V5.17.txt:20599
 V5.17.txt:20600
 V5.17.txt:20601
 V5.17.txt:20602
 V5.17.txt:20603
 V5.17.txt:20604
 V5.17.txt:20605
 V5.17.txt:20606
 V5.17.txt:20607
 V5.17.txt:20608
 V5.17.txt:20609
 V5.17.txt:20610
 V5.17.txt:20611
 V5.17.txt:20612
 V5.17.txt:20613
 V5.17.txt:20614
 V5.17.txt:20615
 V5.17.txt:20616
 V5.17.txt:20617
 V5.17.txt:20618
 V5.17.txt:20619
 V5.17.txt:20620
 V5.17.txt:20621
 V5.17.txt:20622
 V5.17.txt:20623
 V5.17.txt:20624
 V5.17.txt:20625
 V5.17.txt:20626
 V5.17.txt:20627
 V5.17.txt:20628
 V5.17.txt:20629
 V5.17.txt:20630
 V5.17.txt:20631
 V5.17.txt:20632
 V5.17.txt:20633
 V5.17.txt:20634
 V5.17.txt:20635
 V5.17.txt:20636
 V5.17.txt:20637
 V5.17.txt:20638
 V5.17.txt:20639
 V5.17.txt:20640
 V5.17.txt:20641
 V5.17.txt:20642
 V5.17.txt:20643
 V5.17.txt:20644
 V5.17.txt:20645
 V5.17.txt:20646
 V5.17.txt:20647
 V5.17.txt:20648
 V5.17.txt:20649
 V5.17.txt:20650
 V5.17.txt:20651
 V5.17.txt:20652
 V5.17.txt:20653
 V5.17.txt:20654
 V5.17.txt:20655
 V5.17.txt:20656
 V5.17.txt:20657
 V5.17.txt:20658
 V5.17.txt:20659
 V5.17.txt:20660
 V5.17.txt:20661
 V5.17.txt:20662
 V5.17.txt:20663
 V5.17.txt:20664
 V5.17.txt:20665
 V5.17.txt:20666
 V5.17.txt:20667
 V5.17.txt:20668
 V5.17.txt:20669
 V5.17.txt:20670
 V5.17.txt:20671
 V5.17.txt:20672
 V5.17.txt:20673
 V5.17.txt:20674
 V5.17.txt:20675
 V5.17.txt:20676
 V5.17.txt:20677
 V5.17.txt:20678
 V5.17.txt:20679
 V5.17.txt:20680
 V5.17.txt:20681
 V5.17.txt:20682
 V5.17.txt:20683
 V5.17.txt:20684
 V5.17.txt:20685
 V5.17.txt:20686
 V5.17.txt:20687
 V5.17.txt:20688
 V5.17.txt:20689
 V5.17.txt:20690
 V5.17.txt:20691
 V5.17.txt:20692
 V5.17.txt:20693
 V5.17.txt:20694
 V5.17.txt:20695
 V5.17.txt:20696
 V5.17.txt:20697
 V5.17.txt:20698
 V5.17.txt:20699
 V5.17.txt:20700
 V5.17.txt:20701
 V5.17.txt:20702
 V5.17.txt:20703
 V5.17.txt:20704
 V5.17.txt:20705
 V5.17.txt:20706
 V5.17.txt:20707
 V5.17.txt:20708
 V5.17.txt:20709
 V5.17.txt:20710
 V5.17.txt:20711
 V5.17.txt:20712
 V5.17.txt:20713
 V5.17.txt:20714
 V5.17.txt:20715
 V5.17.txt:20716
 V5.17.txt:20717
 V5.17.txt:20718
 V5.17.txt:20719
 V5.17.txt:20720
 V5.17.txt:20721
 V5.17.txt:20722
 V5.17.txt:20723
 V5.17.txt:20724
 V5.17.txt:20725
 V5.17.txt:20726
 V5.17.txt:20727
 V5.17.txt:20728
 V5.17.txt:20729
 V5.17.txt:20730
 V5.17.txt:20731
 V5.17.txt:20732
 V5.17.txt:20733
 V5.17.txt:20734
 V5.17.txt:20735
 V5.17.txt:20736
 V5.17.txt:20737
 V5.17.txt:20738
 V5.17.txt:20739
 V5.17.txt:20740
 V5.17.txt:20741
 V5.17.txt:20742
 V5.17.txt:20743
 V5.17.txt:20744
 V5.17.txt:20745
 V5.17.txt:20746
 V5.17.txt:20747
 V5.17.txt:20748
 V5.17.txt:20749
 V5.17.txt:20750
 V5.17.txt:20751
 V5.17.txt:20752
 V5.17.txt:20753
 V5.17.txt:20754
 V5.17.txt:20755
 V5.17.txt:20756
 V5.17.txt:20757
 V5.17.txt:20758
 V5.17.txt:20759
 V5.17.txt:20760
 V5.17.txt:20761
 V5.17.txt:20762
 V5.17.txt:20763
 V5.17.txt:20764
 V5.17.txt:20765
 V5.17.txt:20766
 V5.17.txt:20767
 V5.17.txt:20768
 V5.17.txt:20769
 V5.17.txt:20770
 V5.17.txt:20771
 V5.17.txt:20772
 V5.17.txt:20773
 V5.17.txt:20774
 V5.17.txt:20775
 V5.17.txt:20776
 V5.17.txt:20777
 V5.17.txt:20778
 V5.17.txt:20779
 V5.17.txt:20780
 V5.17.txt:20781
 V5.17.txt:20782
 V5.17.txt:20783
 V5.17.txt:20784
 V5.17.txt:20785
 V5.17.txt:20786
 V5.17.txt:20787
 V5.17.txt:20788
 V5.17.txt:20789
 V5.17.txt:20790
 V5.17.txt:20791
 V5.17.txt:20792
 V5.17.txt:20793
 V5.17.txt:20794
 V5.17.txt:20795
 V5.17.txt:20796
 V5.17.txt:20797
 V5.17.txt:20798
 V5.17.txt:20799
 V5.17.txt:20800
 V5.17.txt:20801
 V5.17.txt:20802
 V5.17.txt:20803
 V5.17.txt:20804
 V5.17.txt:20805
 V5.17.txt:20806
 V5.17.txt:20807
 V5.17.txt:20808
 V5.17.txt:20809
 V5.17.txt:20810
 V5.17.txt:20811
 V5.17.txt:20812
 V5.17.txt:20813
 V5.17.txt:20814
 V5.17.txt:20815
 V5.17.txt:20816
 V5.17.txt:20817
 V5.17.txt:20818
 V5.17.txt:20819
 V5.17.txt:20820
 V5.17.txt:20821
 V5.17.txt:20822
 V5.17.txt:20823
 V5.17.txt:20824
 V5.17.txt:20825
 V5.17.txt:20826
 V5.17.txt:20827
 V5.17.txt:20828
 V5.17.txt:20829
 V5.17.txt:20830
 V5.17.txt:20831
 V5.17.txt:20832
 V5.17.txt:20833
 V5.17.txt:20834
 V5.17.txt:20835
 V5.17.txt:20836
 V5.17.txt:20837
 V5.17.txt:20838
 V5.17.txt:20839
 V5.17.txt:20840
 V5.17.txt:20841
 V5.17.txt:20842
 V5.17.txt:20843
 V5.17.txt:20844
 V5.17.txt:20845
 V5.17.txt:20846
 V5.17.txt:20847
 V5.17.txt:20848
 V5.17.txt:20849
 V5.17.txt:20850
 V5.17.txt:20851
 V5.17.txt:20852
 V5.17.txt:20853
 V5.17.txt:20854
 V5.17.txt:20855
 V5.17.txt:20856
 V5.17.txt:20857
 V5.17.txt:20858
 V5.17.txt:20859
 V5.17.txt:20860
 V5.17.txt:20861
 V5.17.txt:20862
 V5.17.txt:20863
 V5.17.txt:20864
 V5.17.txt:20865
 V5.17.txt:20866
 V5.17.txt:20867
 V5.17.txt:20868
 V5.17.txt:20869
 V5.17.txt:20870
 V5.17.txt:20871
 V5.17.txt:20872
 V5.17.txt:20873
 V5.17.txt:20874
 V5.17.txt:20875
 V5.17.txt:20876
 V5.17.txt:20877
 V5.17.txt:20878
 V5.17.txt:20879
 V5.17.txt:20880
 V5.17.txt:20881
 V5.17.txt:20882
 V5.17.txt:20883
 V5.17.txt:20884
 V5.17.txt:20885
 V5.17.txt:20886
 V5.17.txt:20887
 V5.17.txt:20888
 V5.17.txt:20889
 V5.17.txt:20890
 V5.17.txt:20891
 V5.17.txt:20892
 V5.17.txt:20893
 V5.17.txt:20894
 V5.17.txt:20895
 V5.17.txt:20896
 V5.17.txt:20897
 V5.17.txt:20898
 V5.17.txt:20899
 V5.17.txt:20900
 V5.17.txt:20901
 V5.17.txt:20902
 V5.17.txt:20903
 V5.17.txt:20904
 V5.17.txt:20905
 V5.17.txt:20906
 V5.17.txt:20907
 V5.17.txt:20908
 V5.17.txt:20909
 V5.17.txt:20910
 V5.17.txt:20911
 V5.17.txt:20912
 V5.17.txt:20913
 V5.17.txt:20914
 V5.17.txt:20915
 V5.17.txt:20916
 V5.17.txt:20917
 V5.17.txt:20918
 V5.17.txt:20919
 V5.17.txt:20920
 V5.17.txt:20921
 V5.17.txt:20922
 V5.17.txt:20923
 V5.17.txt:20924
 V5.17.txt:20925
 V5.17.txt:20926
 V5.17.txt:20927
 V5.17.txt:20928
 V5.17.txt:20929
 V5.17.txt:20930
 V5.17.txt:20931
 V5.17.txt:20932
 V5.17.txt:20933
 V5.17.txt:20934
 V5.17.txt:20935
 V5.17.txt:20936
 V5.17.txt:20937
 V5.17.txt:20938
 V5.17.txt:20939
 V5.17.txt:20940
 V5.17.txt:20941
 V5.17.txt:20942
 V5.17.txt:20943
 V5.17.txt:20944
 V5.17.txt:20945
 V5.17.txt:20946
 V5.17.txt:20947
 V5.17.txt:20948
 V5.17.txt:20949
 V5.17.txt:20950
 V5.17.txt:20951
 V5.17.txt:20952
 V5.17.txt:20953
 V5.17.txt:20954
 V5.17.txt:20955
 V5.17.txt:20956
 V5.17.txt:20957
 V5.17.txt:20958
 V5.17.txt:20959
 V5.17.txt:20960
 V5.17.txt:20961
 V5.17.txt:20962
 V5.17.txt:20963
 V5.17.txt:20964
 V5.17.txt:20965
 V5.17.txt:20966
 V5.17.txt:20967
 V5.17.txt:20968
 V5.17.txt:20969
 V5.17.txt:20970
 V5.17.txt:20971
 V5.17.txt:20972
 V5.17.txt:20973
 V5.17.txt:20974
 V5.17.txt:20975
 V5.17.txt:20976
 V5.17.txt:20977
 V5.17.txt:20978
 V5.17.txt:20979
 V5.17.txt:20980
 V5.17.txt:20981
 V5.17.txt:20982
 V5.17.txt:20983
 V5.17.txt:20984
 V5.17.txt:20985
 V5.17.txt:20986
 V5.17.txt:20987
 V5.17.txt:20988
 V5.17.txt:20989
 V5.17.txt:20990
 V5.17.txt:20991
 V5.17.txt:20992
 V5.17.txt:20993
 V5.17.txt:20994
 V5.17.txt:20995
 V5.17.txt:20996
 V5.17.txt:20997
 V5.17.txt:20998
 V5.17.txt:20999
 V5.17.txt:21000
 V5.17.txt:21001
 V5.17.txt:21002
 V5.17.txt:21003
 V5.17.txt:21004
 V5.17.txt:21005
 V5.17.txt:21006
 V5.17.txt:21007
 V5.17.txt:21008
 V5.17.txt:21009
 V5.17.txt:21010
 V5.17.txt:21011
 V5.17.txt:21012
 V5.17.txt:21013
 V5.17.txt:21014
 V5.17.txt:21015
 V5.17.txt:21016
 V5.17.txt:21017
 V5.17.txt:21018
 V5.17.txt:21019
 V5.17.txt:21020
 V5.17.txt:21021
 V5.17.txt:21022
 V5.17.txt:21023
 V5.17.txt:21024
 V5.17.txt:21025
 V5.17.txt:21026
 V5.17.txt:21027
 V5.17.txt:21028
 V5.17.txt:21029
 V5.17.txt:21030
 V5.17.txt:21031
 V5.17.txt:21032
 V5.17.txt:21033
 V5.17.txt:21034
 V5.17.txt:21035
 V5.17.txt:21036
 V5.17.txt:21037
 V5.17.txt:21038
 V5.17.txt:21039
 V5.17.txt:21040
 V5.17.txt:21041
 V5.17.txt:21042
 V5.17.txt:21043
 V5.17.txt:21044
 V5.17.txt:21045
 V5.17.txt:21046
 V5.17.txt:21047
 V5.17.txt:21048
 V5.17.txt:21049
 V5.17.txt:21050
 V5.17.txt:21051
 V5.17.txt:21052
 V5.17.txt:21053
 V5.17.txt:21054
 V5.17.txt:21055
 V5.17.txt:21056
 V5.17.txt:21057
 V5.17.txt:21058
 V5.17.txt:21059
 V5.17.txt:21060
 V5.17.txt:21061
 V5.17.txt:21062
 V5.17.txt:21063
 V5.17.txt:21064
 V5.17.txt:21065
 V5.17.txt:21066
 V5.17.txt:21067
 V5.17.txt:21068
 V5.17.txt:21069
 V5.17.txt:21070
 V5.17.txt:21071
 V5.17.txt:21072
 V5.17.txt:21073
 V5.17.txt:21074
 V5.17.txt:21075
 V5.17.txt:21076
 V5.17.txt:21077
 V5.17.txt:21078
 V5.17.txt:21079
 V5.17.txt:21080
 V5.17.txt:21081
 V5.17.txt:21082
 V5.17.txt:21083
 V5.17.txt:21084
 V5.17.txt:21085
 V5.17.txt:21086
 V5.17.txt:21087
 V5.17.txt:21088
 V5.17.txt:21089
 V5.17.txt:21090
 V5.17.txt:21091
 V5.17.txt:21092
 V5.17.txt:21093
 V5.17.txt:21094
 V5.17.txt:21095
 V5.17.txt:21096
 V5.17.txt:21097
 V5.17.txt:21098
 V5.17.txt:21099
 V5.17.txt:21100
 V5.17.txt:21101
 V5.17.txt:21102
 V5.17.txt:21103
 V5.17.txt:21104
 V5.17.txt:21105
 V5.17.txt:21106
 V5.17.txt:21107
 V5.17.txt:21108
 V5.17.txt:21109
 V5.17.txt:21110
 V5.17.txt:21111
 V5.17.txt:21112
 V5.17.txt:21113
 V5.17.txt:21114
 V5.17.txt:21115
 V5.17.txt:21116
 V5.17.txt:21117
 V5.17.txt:21118
 V5.17.txt:21119
 V5.17.txt:21120
 V5.17.txt:21121
 V5.17.txt:21122
 V5.17.txt:21123
 V5.17.txt:21124
 V5.17.txt:21125
 V5.17.txt:21126
 V5.17.txt:21127
 V5.17.txt:21128
 V5.17.txt:21129
 V5.17.txt:21130
 V5.17.txt:21131
 V5.17.txt:21132
 V5.17.txt:21133
 V5.17.txt:21134
 V5.17.txt:21135
 V5.17.txt:21136
 V5.17.txt:21137
 V5.17.txt:21138
 V5.17.txt:21139
 V5.17.txt:21140
 V5.17.txt:21141
 V5.17.txt:21142
 V5.17.txt:21143
 V5.17.txt:21144
 V5.17.txt:21145
 V5.17.txt:21146
 V5.17.txt:21147
 V5.17.txt:21148
 V5.17.txt:21149
 V5.17.txt:21150
 V5.17.txt:21151
 V5.17.txt:21152
 V5.17.txt:21153
 V5.17.txt:21154
 V5.17.txt:21155
 V5.17.txt:21156
 V5.17.txt:21157
 V5.17.txt:21158
 V5.17.txt:21159
 V5.17.txt:21160
 V5.17.txt:21161
 V5.17.txt:21162
 V5.17.txt:21163
 V5.17.txt:21164
 V5.17.txt:21165
 V5.17.txt:21166
 V5.17.txt:21167
 V5.17.txt:21168
 V5.17.txt:21169
 V5.17.txt:21170
 V5.17.txt:21171
 V5.17.txt:21172
 V5.17.txt:21173
 V5.17.txt:21174
 V5.17.txt:21175
 V5.17.txt:21176
 V5.17.txt:21177
 V5.17.txt:21178
 V5.17.txt:21179
 V5.17.txt:21180
 V5.17.txt:21181
 V5.17.txt:21182
 V5.17.txt:21183
 V5.17.txt:21184
 V5.17.txt:21185
 V5.17.txt:21186
 V5.17.txt:21187
 V5.17.txt:21188
 V5.17.txt:21189
 V5.17.txt:21190
 V5.17.txt:21191
 V5.17.txt:21192
 V5.17.txt:21193
 V5.17.txt:21194
 V5.17.txt:21195
 V5.17.txt:21196
 V5.17.txt:21197
 V5.17.txt:21198
 V5.17.txt:21199
 V5.17.txt:21200
 V5.17.txt:21201
 V5.17.txt:21202
 V5.17.txt:21203
 V5.17.txt:21204
 V5.17.txt:21205
 V5.17.txt:21206
 V5.17.txt:21207
 V5.17.txt:21208
 V5.17.txt:21209
 V5.17.txt:21210
 V5.17.txt:21211
 V5.17.txt:21212
 V5.17.txt:21213
 V5.17.txt:21214
 V5.17.txt:21215
 V5.17.txt:21216
 V5.17.txt:21217
 V5.17.txt:21218
 V5.17.txt:21219
 V5.17.txt:21220
 V5.17.txt:21221
 V5.17.txt:21222
 V5.17.txt:21223
 V5.17.txt:21224
 V5.17.txt:21225
 V5.17.txt:21226
 V5.17.txt:21227
 V5.17.txt:21228
 V5.17.txt:21229
 V5.17.txt:21230
 V5.17.txt:21231
 V5.17.txt:21232
 V5.17.txt:21233
 V5.17.txt:21234
 V5.17.txt:21235
 V5.17.txt:21236
 V5.17.txt:21237
 V5.17.txt:21238
 V5.17.txt:21239
 V5.17.txt:21240
 V5.17.txt:21241
 V5.17.txt:21242
 V5.17.txt:21243
 V5.17.txt:21244
 V5.17.txt:21245
 V5.17.txt:21246
 V5.17.txt:21247
 V5.17.txt:21248
 V5.17.txt:21249
 V5.17.txt:21250
 V5.17.txt:21251
 V5.17.txt:21252
 V5.17.txt:21253
 V5.17.txt:21254
 V5.17.txt:21255
 V5.17.txt:21256
 V5.17.txt:21257
 V5.17.txt:21258
 V5.17.txt:21259
 V5.17.txt:21260
 V5.17.txt:21261
 V5.17.txt:21262
 V5.17.txt:21263
 V5.17.txt:21264
 V5.17.txt:21265
 V5.17.txt:21266
 V5.17.txt:21267
 V5.17.txt:21268
 V5.17.txt:21269
 V5.17.txt:21270
 V5.17.txt:21271
 V5.17.txt:21272
 V5.17.txt:21273
 V5.17.txt:21274
 V5.17.txt:21275
 V5.17.txt:21276
 V5.17.txt:21277
 V5.17.txt:21278
 V5.17.txt:21279
 V5.17.txt:21280
 V5.17.txt:21281
 V5.17.txt:21282
 V5.17.txt:21283
 V5.17.txt:21284
 V5.17.txt:21285
 V5.17.txt:21286
 V5.17.txt:21287
 V5.17.txt:21288
 V5.17.txt:21289
 V5.17.txt:21290
 V5.17.txt:21291
 V5.17.txt:21292
 V5.17.txt:21293
 V5.17.txt:21294
 V5.17.txt:21295
 V5.17.txt:21296
 V5.17.txt:21297
 V5.17.txt:21298
 V5.17.txt:21299
 V5.17.txt:21300
 V5.17.txt:21301
 V5.17.txt:21302
 V5.17.txt:21303
 V5.17.txt:21304
 V5.17.txt:21305
 V5.17.txt:21306
 V5.17.txt:21307
 V5.17.txt:21308
 V5.17.txt:21309
 V5.17.txt:21310
 V5.17.txt:21311
 V5.17.txt:21312
 V5.17.txt:21313
 V5.17.txt:21314
 V5.17.txt:21315
 V5.17.txt:21316
 V5.17.txt:21317
 V5.17.txt:21318
 V5.17.txt:21319
 V5.17.txt:21320
 V5.17.txt:21321
 V5.17.txt:21322
 V5.17.txt:21323
 V5.17.txt:21324
 V5.17.txt:21325
 V5.17.txt:21326
 V5.17.txt:21327
 V5.17.txt:21328
 V5.17.txt:21329
 V5.17.txt:21330
 V5.17.txt:21331
 V5.17.txt:21332
 V5.17.txt:21333
 V5.17.txt:21334
 V5.17.txt:21335
 V5.17.txt:21336
 V5.17.txt:21337
 V5.17.txt:21338
 V5.17.txt:21339
 V5.17.txt:21340
 V5.17.txt:21341
 V5.17.txt:21342
 V5.17.txt:21343
 V5.17.txt:21344
 V5.17.txt:21345
 V5.17.txt:21346
 V5.17.txt:21347
 V5.17.txt:21348
 V5.17.txt:21349
 V5.17.txt:21350
 V5.17.txt:21351
 V5.17.txt:21352
 V5.17.txt:21353
 V5.17.txt:21354
 V5.17.txt:21355
 V5.17.txt:21356
 V5.17.txt:21357
 V5.17.txt:21358
 V5.17.txt:21359
 V5.17.txt:21360
 V5.17.txt:21361
 V5.17.txt:21362
 V5.17.txt:21363
 V5.17.txt:21364
 V5.17.txt:21365
 V5.17.txt:21366
 V5.17.txt:21367
 V5.17.txt:21368
 V5.17.txt:21369
 V5.17.txt:21370
 V5.17.txt:21371
 V5.17.txt:21372
 V5.17.txt:21373
 V5.17.txt:21374
 V5.17.txt:21375
 V5.17.txt:21376
 V5.17.txt:21377
 V5.17.txt:21378
 V5.17.txt:21379
 V5.17.txt:21380
 V5.17.txt:21381
 V5.17.txt:21382
 V5.17.txt:21383
 V5.17.txt:21384
 V5.17.txt:21385
 V5.17.txt:21386
 V5.17.txt:21387
 V5.17.txt:21388
 V5.17.txt:21389
 V5.17.txt:21390
 V5.17.txt:21391
 V5.17.txt:21392
 V5.17.txt:21393
 V5.17.txt:21394
 V5.17.txt:21395
 V5.17.txt:21396
 V5.17.txt:21397
 V5.17.txt:21398
 V5.17.txt:21399
 V5.17.txt:21400
 V5.17.txt:21401
 V5.17.txt:21402
 V5.17.txt:21403
 V5.17.txt:21404
 V5.17.txt:21405
 V5.17.txt:21406
 V5.17.txt:21407
 V5.17.txt:21408
 V5.17.txt:21409
 V5.17.txt:21410
 V5.17.txt:21411
 V5.17.txt:21412
 V5.17.txt:21413
 V5.17.txt:21414
 V5.17.txt:21415
 V5.17.txt:21416
 V5.17.txt:21417
 V5.17.txt:21418
 V5.17.txt:21419
 V5.17.txt:21420
 V5.17.txt:21421
 V5.17.txt:21422
 V5.17.txt:21423
 V5.17.txt:21424
 V5.17.txt:21425
 V5.17.txt:21426
 V5.17.txt:21427
 V5.17.txt:21428
 V5.17.txt:21429
 V5.17.txt:21430
 V5.17.txt:21431
 V5.17.txt:21432
 V5.17.txt:21433
 V5.17.txt:21434
 V5.17.txt:21435
 V5.17.txt:21436
 V5.17.txt:21437
 V5.17.txt:21438
 V5.17.txt:21439
 V5.17.txt:21440
 V5.17.txt:21441
 V5.17.txt:21442
 V5.17.txt:21443
 V5.17.txt:21444
 V5.17.txt:21445
 V5.17.txt:21446
 V5.17.txt:21447
 V5.17.txt:21448
 V5.17.txt:21449
 V5.17.txt:21450
 V5.17.txt:21451
 V5.17.txt:21452
 V5.17.txt:21453
 V5.17.txt:21454
 V5.17.txt:21455
 V5.17.txt:21456
 V5.17.txt:21457
 V5.17.txt:21458
 V5.17.txt:21459
 V5.17.txt:21460
 V5.17.txt:21461
 V5.17.txt:21462
 V5.17.txt:21463
 V5.17.txt:21464
 V5.17.txt:21465
 V5.17.txt:21466
 V5.17.txt:21467
 V5.17.txt:21468
 V5.17.txt:21469
 V5.17.txt:21470
 V5.17.txt:21471
 V5.17.txt:21472
 V5.17.txt:21473
 V5.17.txt:21474
 V5.17.txt:21475
 V5.17.txt:21476
 V5.17.txt:21477
 V5.17.txt:21478
 V5.17.txt:21479
 V5.17.txt:21480
 V5.17.txt:21481
 V5.17.txt:21482
 V5.17.txt:21483
 V5.17.txt:21484
 V5.17.txt:21485
 V5.17.txt:21486
 V5.17.txt:21487
 V5.17.txt:21488
 V5.17.txt:21489
 V5.17.txt:21490
 V5.17.txt:21491
 V5.17.txt:21492
 V5.17.txt:21493
 V5.17.txt:21494
 V5.17.txt:21495
 V5.17.txt:21496
 V5.17.txt:21497
 V5.17.txt:21498
 V5.17.txt:21499
 V5.17.txt:21500
 V5.17.txt:21501
 V5.17.txt:21502
 V5.17.txt:21503
 V5.17.txt:21504
 V5.17.txt:21505
 V5.17.txt:21506
 V5.17.txt:21507
 V5.17.txt:21508
 V5.17.txt:21509
 V5.17.txt:21510
 V5.17.txt:21511
 V5.17.txt:21512
 V5.17.txt:21513
 V5.17.txt:21514
 V5.17.txt:21515
 V5.17.txt:21516
 V5.17.txt:21517
 V5.17.txt:21518
 V5.17.txt:21519
 V5.17.txt:21520
 V5.17.txt:21521
 V5.17.txt:21522
 V5.17.txt:21523
 V5.17.txt:21524
 V5.17.txt:21525
 V5.17.txt:21526
 V5.17.txt:21527
 V5.17.txt:21528
 V5.17.txt:21529
 V5.17.txt:21530
 V5.17.txt:21531
 V5.17.txt:21532
 V5.17.txt:21533
 V5.17.txt:21534
 V5.17.txt:21535
 V5.17.txt:21536
 V5.17.txt:21537
 V5.17.txt:21538
 V5.17.txt:21539
 V5.17.txt:21540
 V5.17.txt:21541
 V5.17.txt:21542
 V5.17.txt:21543
 V5.17.txt:21544
 V5.17.txt:21545
 V5.17.txt:21546
 V5.17.txt:21547
 V5.17.txt:21548
 V5.17.txt:21549
 V5.17.txt:21550
 V5.17.txt:21551
 V5.17.txt:21552
 V5.17.txt:21553
 V5.17.txt:21554
 V5.17.txt:21555
 V5.17.txt:21556
 V5.17.txt:21557
 V5.17.txt:21558
 V5.17.txt:21559
 V5.17.txt:21560
 V5.17.txt:21561
 V5.17.txt:21562
 V5.17.txt:21563
 V5.17.txt:21564
 V5.17.txt:21565
 V5.17.txt:21566
 V5.17.txt:21567
 V5.17.txt:21568
 V5.17.txt:21569
 V5.17.txt:21570
 V5.17.txt:21571
 V5.17.txt:21572
 V5.17.txt:21573
 V5.17.txt:21574
 V5.17.txt:21575
 V5.17.txt:21576
 V5.17.txt:21577
 V5.17.txt:21578
 V5.17.txt:21579
 V5.17.txt:21580
 V5.17.txt:21581
 V5.17.txt:21582
 V5.17.txt:21583
 V5.17.txt:21584
 V5.17.txt:21585
 V5.17.txt:21586
 V5.17.txt:21587
 V5.17.txt:21588
 V5.17.txt:21589
 V5.17.txt:21590
 V5.17.txt:21591
 V5.17.txt:21592
 V5.17.txt:21593
 V5.17.txt:21594
 V5.17.txt:21595
 V5.17.txt:21596
 V5.17.txt:21597
 V5.17.txt:21598
 V5.17.txt:21599
 V5.17.txt:21600
 V5.17.txt:21601
 V5.17.txt:21602
 V5.17.txt:21603
 V5.17.txt:21604
 V5.17.txt:21605
 V5.17.txt:21606
 V5.17.txt:21607
 V5.17.txt:21608
 V5.17.txt:21609
 V5.17.txt:21610
 V5.17.txt:21611
 V5.17.txt:21612
 V5.17.txt:21613
 V5.17.txt:21614
 V5.17.txt:21615
 V5.17.txt:21616
 V5.17.txt:21617
 V5.17.txt:21618
 V5.17.txt:21619
 V5.17.txt:21620
 V5.17.txt:21621
 V5.17.txt:21622
 V5.17.txt:21623
 V5.17.txt:21624
 V5.17.txt:21625
 V5.17.txt:21626
 V5.17.txt:21627
 V5.17.txt:21628
 V5.17.txt:21629
 V5.17.txt:21630
 V5.17.txt:21631
 V5.17.txt:21632
 V5.17.txt:21633
 V5.17.txt:21634
 V5.17.txt:21635
 V5.17.txt:21636
 V5.17.txt:21637
 V5.17.txt:21638
 V5.17.txt:21639
 V5.17.txt:21640
 V5.17.txt:21641
 V5.17.txt:21642
 V5.17.txt:21643
 V5.17.txt:21644
 V5.17.txt:21645
 V5.17.txt:21646
 V5.17.txt:21647
 V5.17.txt:21648
 V5.17.txt:21649
 V5.17.txt:21650
 V5.17.txt:21651
 V5.17.txt:21652
 V5.17.txt:21653
 V5.17.txt:21654
 V5.17.txt:21655
 V5.17.txt:21656
 V5.17.txt:21657
 V5.17.txt:21658
 V5.17.txt:21659
 V5.17.txt:21660
 V5.17.txt:21661
 V5.17.txt:21662
 V5.17.txt:21663
 V5.17.txt:21664
 V5.17.txt:21665
 V5.17.txt:21666
 V5.17.txt:21667
 V5.17.txt:21668
 V5.17.txt:21669
 V5.17.txt:21670
 V5.17.txt:21671
 V5.17.txt:21672
 V5.17.txt:21673
 V5.17.txt:21674
 V5.17.txt:21675
 V5.17.txt:21676
 V5.17.txt:21677
 V5.17.txt:21678
 V5.17.txt:21679
 V5.17.txt:21680
 V5.17.txt:21681
 V5.17.txt:21682
 V5.17.txt:21683
 V5.17.txt:21684
 V5.17.txt:21685
 V5.17.txt:21686
 V5.17.txt:21687
 V5.17.txt:21688
 V5.17.txt:21689
 V5.17.txt:21690
 V5.17.txt:21691
 V5.17.txt:21692
 V5.17.txt:21693
 V5.17.txt:21694
 V5.17.txt:21695
 V5.17.txt:21696
 V5.17.txt:21697
 V5.17.txt:21698
 V5.17.txt:21699
 V5.17.txt:21700
 V5.17.txt:21701
 V5.17.txt:21702
 V5.17.txt:21703
 V5.17.txt:21704
 V5.17.txt:21705
 V5.17.txt:21706
 V5.17.txt:21707
 V5.17.txt:21708
 V5.17.txt:21709
 V5.17.txt:21710
 V5.17.txt:21711
 V5.17.txt:21712
 V5.17.txt:21713
 V5.17.txt:21714
 V5.17.txt:21715
 V5.17.txt:21716
 V5.17.txt:21717
 V5.17.txt:21718
 V5.17.txt:21719
 V5.17.txt:21720
 V5.17.txt:21721
 V5.17.txt:21722
 V5.17.txt:21723
 V5.17.txt:21724
 V5.17.txt:21725
 V5.17.txt:21726
 V5.17.txt:21727
 V5.17.txt:21728
 V5.17.txt:21729
 V5.17.txt:21730
 V5.17.txt:21731
 V5.17.txt:21732
 V5.17.txt:21733
 V5.17.txt:21734
 V5.17.txt:21735
 V5.17.txt:21736
 V5.17.txt:21737
 V5.17.txt:21738
 V5.17.txt:21739
 V5.17.txt:21740
 V5.17.txt:21741
 V5.17.txt:21742
 V5.17.txt:21743
 V5.17.txt:21744
 V5.17.txt:21745
 V5.17.txt:21746
 V5.17.txt:21747
 V5.17.txt:21748
 V5.17.txt:21749
 V5.17.txt:21750
 V5.17.txt:21751
 V5.17.txt:21752
 V5.17.txt:21753
 V5.17.txt:21754
 V5.17.txt:21755
 V5.17.txt:21756
 V5.17.txt:21757
 V5.17.txt:21758
 V5.17.txt:21759
 V5.17.txt:21760
 V5.17.txt:21761
 V5.17.txt:21762
 V5.17.txt:21763
 V5.17.txt:21764
 V5.17.txt:21765
 V5.17.txt:21766
 V5.17.txt:21767
 V5.17.txt:21768
 V5.17.txt:21769
 V5.17.txt:21770
 V5.17.txt:21771
 V5.17.txt:21772
 V5.17.txt:21773
 V5.17.txt:21774
 V5.17.txt:21775
 V5.17.txt:21776
 V5.17.txt:21777
 V5.17.txt:21778
 V5.17.txt:21779
 V5.17.txt:21780
 V5.17.txt:21781
 V5.17.txt:21782
 V5.17.txt:21783
 V5.17.txt:21784
 V5.17.txt:21785
 V5.17.txt:21786
 V5.17.txt:21787
 V5.17.txt:21788
 V5.17.txt:21789
 V5.17.txt:21790
 V5.17.txt:21791
 V5.17.txt:21792
 V5.17.txt:21793
 V5.17.txt:21794
 V5.17.txt:21795
 V5.17.txt:21796
 V5.17.txt:21797
 V5.17.txt:21798
 V5.17.txt:21799
 V5.17.txt:21800
 V5.17.txt:21801
 V5.17.txt:21802
 V5.17.txt:21803
 V5.17.txt:21804
 V5.17.txt:21805
 V5.17.txt:21806
 V5.17.txt:21807
 V5.17.txt:21808
 V5.17.txt:21809
 V5.17.txt:21810
 V5.17.txt:21811
 V5.17.txt:21812
 V5.17.txt:21813
 V5.17.txt:21814
 V5.17.txt:21815
 V5.17.txt:21816
 V5.17.txt:21817
 V5.17.txt:21818
 V5.17.txt:21819
 V5.17.txt:21820
 V5.17.txt:21821
 V5.17.txt:21822
 V5.17.txt:21823
 V5.17.txt:21824
 V5.17.txt:21825
 V5.17.txt:21826
 V5.17.txt:21827
 V5.17.txt:21828
 V5.17.txt:21829
 V5.17.txt:21830
 V5.17.txt:21831
 V5.17.txt:21832
 V5.17.txt:21833
 V5.17.txt:21834
 V5.17.txt:21835
 V5.17.txt:21836
 V5.17.txt:21837
 V5.17.txt:21838
 V5.17.txt:21839
 V5.17.txt:21840
 V5.17.txt:21841
 V5.17.txt:21842
 V5.17.txt:21843
 V5.17.txt:21844
 V5.17.txt:21845
 V5.17.txt:21846
 V5.17.txt:21847
 V5.17.txt:21848
 V5.17.txt:21849
 V5.17.txt:21850
 V5.17.txt:21851
 V5.17.txt:21852
 V5.17.txt:21853
 V5.17.txt:21854
 V5.17.txt:21855
 V5.17.txt:21856
 V5.17.txt:21857
 V5.17.txt:21858
 V5.17.txt:21859
 V5.17.txt:21860
 V5.17.txt:21861
 V5.17.txt:21862
 V5.17.txt:21863
 V5.17.txt:21864
 V5.17.txt:21865
 V5.17.txt:21866
 V5.17.txt:21867
 V5.17.txt:21868
 V5.17.txt:21869
 V5.17.txt:21870
 V5.17.txt:21871
 V5.17.txt:21872
 V5.17.txt:21873
 V5.17.txt:21874
 V5.17.txt:21875
 V5.17.txt:21876
 V5.17.txt:21877
 V5.17.txt:21878
 V5.17.txt:21879
 V5.17.txt:21880
 V5.17.txt:21881
 V5.17.txt:21882
 V5.17.txt:21883
 V5.17.txt:21884
 V5.17.txt:21885
 V5.17.txt:21886
 V5.17.txt:21887
 V5.17.txt:21888
 V5.17.txt:21889
 V5.17.txt:21890
 V5.17.txt:21891
 V5.17.txt:21892
 V5.17.txt:21893
 V5.17.txt:21894
 V5.17.txt:21895
 V5.17.txt:21896
 V5.17.txt:21897
 V5.17.txt:21898
 V5.17.txt:21899
 V5.17.txt:21900
 V5.17.txt:21901
 V5.17.txt:21902
 V5.17.txt:21903
 V5.17.txt:21904
 V5.17.txt:21905
 V5.17.txt:21906
 V5.17.txt:21907
 V5.17.txt:21908
 V5.17.txt:21909
 V5.17.txt:21910
 V5.17.txt:21911
 V5.17.txt:21912
 V5.17.txt:21913
 V5.17.txt:21914
 V5.17.txt:21915
 V5.17.txt:21916
 V5.17.txt:21917
 V5.17.txt:21918
 V5.17.txt:21919
 V5.17.txt:21920
 V5.17.txt:21921
 V5.17.txt:21922
 V5.17.txt:21923
 V5.17.txt:21924
 V5.17.txt:21925
 V5.17.txt:21926
 V5.17.txt:21927
 V5.17.txt:21928
 V5.17.txt:21929
 V5.17.txt:21930
 V5.17.txt:21931
 V5.17.txt:21932
 V5.17.txt:21933
 V5.17.txt:21934
 V5.17.txt:21935
 V5.17.txt:21936
 V5.17.txt:21937
 V5.17.txt:21938
 V5.17.txt:21939
 V5.17.txt:21940
 V5.17.txt:21941
 V5.17.txt:21942
 V5.17.txt:21943
 V5.17.txt:21944
 V5.17.txt:21945
 V5.17.txt:21946
 V5.17.txt:21947
 V5.17.txt:21948
 V5.17.txt:21949
 V5.17.txt:21950
 V5.17.txt:21951
 V5.17.txt:21952
 V5.17.txt:21953
 V5.17.txt:21954
 V5.17.txt:21955
 V5.17.txt:21956
 V5.17.txt:21957
 V5.17.txt:21958
 V5.17.txt:21959
 V5.17.txt:21960
 V5.17.txt:21961
 V5.17.txt:21962
 V5.17.txt:21963
 V5.17.txt:21964
 V5.17.txt:21965
 V5.17.txt:21966
 V5.17.txt:21967
 V5.17.txt:21968
 V5.17.txt:21969
 V5.17.txt:21970
 V5.17.txt:21971
 V5.17.txt:21972
 V5.17.txt:21973
 V5.17.txt:21974
 V5.17.txt:21975
 V5.17.txt:21976
 V5.17.txt:21977
 V5.17.txt:21978
 V5.17.txt:21979
 V5.17.txt:21980
 V5.17.txt:21981
 V5.17.txt:21982
 V5.17.txt:21983
 V5.17.txt:21984
 V5.17.txt:21985
 V5.17.txt:21986
 V5.17.txt:21987
 V5.17.txt:21988
 V5.17.txt:21989
 V5.17.txt:21990
 V5.17.txt:21991
 V5.17.txt:21992
 V5.17.txt:21993
 V5.17.txt:21994
 V5.17.txt:21995
 V5.17.txt:21996
 V5.17.txt:21997
 V5.17.txt:21998
 V5.17.txt:21999
 V5.17.txt:22000
 V5.17.txt:22001
 V5.17.txt:22002
 V5.17.txt:22003
 V5.17.txt:22004
 V5.17.txt:22005
 V5.17.txt:22006
 V5.17.txt:22007
 V5.17.txt:22008
 V5.17.txt:22009
 V5.17.txt:22010
 V5.17.txt:22011
 V5.17.txt:22012
 V5.17.txt:22013
 V5.17.txt:22014
 V5.17.txt:22015
 V5.17.txt:22016
 V5.17.txt:22017
 V5.17.txt:22018
 V5.17.txt:22019
 V5.17.txt:22020
 V5.17.txt:22021
 V5.17.txt:22022
 V5.17.txt:22023
 V5.17.txt:22024
 V5.17.txt:22025
 V5.17.txt:22026
 V5.17.txt:22027
 V5.17.txt:22028
 V5.17.txt:22029
 V5.17.txt:22030
 V5.17.txt:22031
 V5.17.txt:22032
 V5.17.txt:22033
 V5.17.txt:22034
 V5.17.txt:22035
 V5.17.txt:22036
 V5.17.txt:22037
 V5.17.txt:22038
 V5.17.txt:22039
 V5.17.txt:22040
 V5.17.txt:22041
 V5.17.txt:22042
 V5.17.txt:22043
 V5.17.txt:22044
 V5.17.txt:22045
 V5.17.txt:22046
 V5.17.txt:22047
 V5.17.txt:22048
 V5.17.txt:22049
 V5.17.txt:22050
 V5.17.txt:22051
 V5.17.txt:22052
 V5.17.txt:22053
 V5.17.txt:22054
 V5.17.txt:22055
 V5.17.txt:22056
 V5.17.txt:22057
 V5.17.txt:22058
 V5.17.txt:22059
 V5.17.txt:22060
 V5.17.txt:22061
 V5.17.txt:22062
 V5.17.txt:22063
 V5.17.txt:22064
 V5.17.txt:22065
 V5.17.txt:22066
 V5.17.txt:22067
 V5.17.txt:22068
 V5.17.txt:22069
 V5.17.txt:22070
 V5.17.txt:22071
 V5.17.txt:22072
 V5.17.txt:22073
 V5.17.txt:22074
 V5.17.txt:22075
 V5.17.txt:22076
 V5.17.txt:22077
 V5.17.txt:22078
 V5.17.txt:22079
 V5.17.txt:22080
 V5.17.txt:22081
 V5.17.txt:22082
 V5.17.txt:22083
 V5.17.txt:22084
 V5.17.txt:22085
 V5.17.txt:22086
 V5.17.txt:22087
 V5.17.txt:22088
 V5.17.txt:22089
 V5.17.txt:22090
 V5.17.txt:22091
 V5.17.txt:22092
 V5.17.txt:22093
 V5.17.txt:22094
 V5.17.txt:22095
 V5.17.txt:22096
 V5.17.txt:22097
 V5.17.txt:22098
 V5.17.txt:22099
 V5.17.txt:22100
 V5.17.txt:22101
 V5.17.txt:22102
 V5.17.txt:22103
 V5.17.txt:22104
 V5.17.txt:22105
 V5.17.txt:22106
 V5.17.txt:22107
 V5.17.txt:22108
 V5.17.txt:22109
 V5.17.txt:22110
 V5.17.txt:22111
 V5.17.txt:22112
 V5.17.txt:22113
 V5.17.txt:22114
 V5.17.txt:22115
 V5.17.txt:22116
 V5.17.txt:22117
 V5.17.txt:22118
 V5.17.txt:22119
 V5.17.txt:22120
 V5.17.txt:22121
 V5.17.txt:22122
 V5.17.txt:22123
 V5.17.txt:22124
 V5.17.txt:22125
 V5.17.txt:22126
 V5.17.txt:22127
 V5.17.txt:22128
 V5.17.txt:22129
 V5.17.txt:22130
 V5.17.txt:22131
 V5.17.txt:22132
 V5.17.txt:22133
 V5.17.txt:22134
 V5.17.txt:22135
 V5.17.txt:22136
 V5.17.txt:22137
 V5.17.txt:22138
 V5.17.txt:22139
 V5.17.txt:22140
 V5.17.txt:22141
 V5.17.txt:22142
 V5.17.txt:22143
 V5.17.txt:22144
 V5.17.txt:22145
 V5.17.txt:22146
 V5.17.txt:22147
 V5.17.txt:22148
 V5.17.txt:22149
 V5.17.txt:22150
 V5.17.txt:22151
 V5.17.txt:22152
 V5.17.txt:22153
 V5.17.txt:22154
 V5.17.txt:22155
 V5.17.txt:22156
 V5.17.txt:22157
 V5.17.txt:22158
 V5.17.txt:22159
 V5.17.txt:22160
 V5.17.txt:22161
 V5.17.txt:22162
 V5.17.txt:22163
 V5.17.txt:22164
 V5.17.txt:22165
 V5.17.txt:22166
 V5.17.txt:22167
 V5.17.txt:22168
 V5.17.txt:22169
 V5.17.txt:22170
 V5.17.txt:22171
 V5.17.txt:22172
 V5.17.txt:22173
 V5.17.txt:22174
 V5.17.txt:22175
 V5.17.txt:22176
 V5.17.txt:22177
 V5.17.txt:22178
 V5.17.txt:22179
 V5.17.txt:22180
 V5.17.txt:22181
 V5.17.txt:22182
 V5.17.txt:22183
 V5.17.txt:22184
 V5.17.txt:22185
 V5.17.txt:22186
 V5.17.txt:22187
 V5.17.txt:22188
 V5.17.txt:22189
 V5.17.txt:22190
 V5.17.txt:22191
 V5.17.txt:22192
 V5.17.txt:22193
 V5.17.txt:22194
 V5.17.txt:22195
 V5.17.txt:22196
 V5.17.txt:22197
 V5.17.txt:22198
 V5.17.txt:22199
 V5.17.txt:22200
 V5.17.txt:22201
 V5.17.txt:22202
 V5.17.txt:22203
 V5.17.txt:22204
 V5.17.txt:22205
 V5.17.txt:22206
 V5.17.txt:22207
 V5.17.txt:22208
 V5.17.txt:22209
 V5.17.txt:22210
 V5.17.txt:22211
 V5.17.txt:22212
 V5.17.txt:22213
 V5.17.txt:22214
 V5.17.txt:22215
 V5.17.txt:22216
 V5.17.txt:22217
 V5.17.txt:22218
 V5.17.txt:22219
 V5.17.txt:22220
 V5.17.txt:22221
 V5.17.txt:22222
 V5.17.txt:22223
 V5.17.txt:22224
 V5.17.txt:22225
 V5.17.txt:22226
 V5.17.txt:22227
 V5.17.txt:22228
 V5.17.txt:22229
 V5.17.txt:22230
 V5.17.txt:22231
 V5.17.txt:22232
 V5.17.txt:22233
 V5.17.txt:22234
 V5.17.txt:22235
 V5.17.txt:22236
 V5.17.txt:22237
 V5.17.txt:22238
 V5.17.txt:22239
 V5.17.txt:22240
 V5.17.txt:22241
 V5.17.txt:22242
 V5.17.txt:22243
 V5.17.txt:22244
 V5.17.txt:22245
 V5.17.txt:22246
 V5.17.txt:22247
 V5.17.txt:22248
 V5.17.txt:22249
 V5.17.txt:22250
 V5.17.txt:22251
 V5.17.txt:22252
 V5.17.txt:22253
 V5.17.txt:22254
 V5.17.txt:22255
 V5.17.txt:22256
 V5.17.txt:22257
 V5.17.txt:22258
 V5.17.txt:22259
 V5.17.txt:22260
 V5.17.txt:22261
 V5.17.txt:22262
 V5.17.txt:22263
 V5.17.txt:22264
 V5.17.txt:22265
 V5.17.txt:22266
 V5.17.txt:22267
 V5.17.txt:22268
 V5.17.txt:22269
 V5.17.txt:22270
 V5.17.txt:22271
 V5.17.txt:22272
 V5.17.txt:22273
 V5.17.txt:22274
 V5.17.txt:22275
 V5.17.txt:22276
 V5.17.txt:22277
 V5.17.txt:22278
 V5.17.txt:22279
 V5.17.txt:22280
 V5.17.txt:22281
 V5.17.txt:22282
 V5.17.txt:22283
 V5.17.txt:22284
 V5.17.txt:22285
 V5.17.txt:22286
 V5.17.txt:22287
 V5.17.txt:22288
 V5.17.txt:22289
 V5.17.txt:22290
 V5.17.txt:22291
 V5.17.txt:22292
 V5.17.txt:22293
 V5.17.txt:22294
 V5.17.txt:22295
 V5.17.txt:22296
 V5.17.txt:22297
 V5.17.txt:22298
 V5.17.txt:22299
 V5.17.txt:22300
 V5.17.txt:22301
 V5.17.txt:22302
 V5.17.txt:22303
 V5.17.txt:22304
 V5.17.txt:22305
 V5.17.txt:22306
 V5.17.txt:22307
 V5.17.txt:22308
 V5.17.txt:22309
 V5.17.txt:22310
 V5.17.txt:22311
 V5.17.txt:22312
 V5.17.txt:22313
 V5.17.txt:22314
 V5.17.txt:22315
 V5.17.txt:22316
 V5.17.txt:22317
 V5.17.txt:22318
 V5.17.txt:22319
 V5.17.txt:22320
 V5.17.txt:22321
 V5.17.txt:22322
 V5.17.txt:22323
 V5.17.txt:22324
 V5.17.txt:22325
 V5.17.txt:22326
 V5.17.txt:22327
 V5.17.txt:22328
 V5.17.txt:22329
 V5.17.txt:22330
 V5.17.txt:22331
 V5.17.txt:22332
 V5.17.txt:22333
 V5.17.txt:22334
 V5.17.txt:22335
 V5.17.txt:22336
 V5.17.txt:22337
 V5.17.txt:22338
 V5.17.txt:22339
 V5.17.txt:22340
 V5.17.txt:22341
 V5.17.txt:22342
 V5.17.txt:22343
 V5.17.txt:22344
 V5.17.txt:22345
 V5.17.txt:22346
 V5.17.txt:22347
 V5.17.txt:22348
 V5.17.txt:22349
 V5.17.txt:22350
 V5.17.txt:22351
 V5.17.txt:22352
 V5.17.txt:22353
 V5.17.txt:22354
 V5.17.txt:22355
 V5.17.txt:22356
 V5.17.txt:22357
 V5.17.txt:22358
 V5.17.txt:22359
 V5.17.txt:22360
 V5.17.txt:22361
 V5.17.txt:22362
 V5.17.txt:22363
 V5.17.txt:22364
 V5.17.txt:22365
 V5.17.txt:22366
 V5.17.txt:22367
 V5.17.txt:22368
 V5.17.txt:22369
 V5.17.txt:22370
 V5.17.txt:22371
 V5.17.txt:22372
 V5.17.txt:22373
 V5.17.txt:22374
 V5.17.txt:22375
 V5.17.txt:22376
 V5.17.txt:22377
 V5.17.txt:22378
 V5.17.txt:22379
 V5.17.txt:22380
 V5.17.txt:22381
 V5.17.txt:22382
 V5.17.txt:22383
 V5.17.txt:22384
 V5.17.txt:22385
 V5.17.txt:22386
 V5.17.txt:22387
 V5.17.txt:22388
 V5.17.txt:22389
 V5.17.txt:22390
 V5.17.txt:22391
 V5.17.txt:22392
 V5.17.txt:22393
 V5.17.txt:22394
 V5.17.txt:22395
 V5.17.txt:22396
 V5.17.txt:22397
 V5.17.txt:22398
 V5.17.txt:22399
 V5.17.txt:22400
 V5.17.txt:22401
 V5.17.txt:22402
 V5.17.txt:22403
 V5.17.txt:22404
 V5.17.txt:22405
 V5.17.txt:22406
 V5.17.txt:22407
 V5.17.txt:22408
 V5.17.txt:22409
 V5.17.txt:22410
 V5.17.txt:22411
 V5.17.txt:22412
 V5.17.txt:22413
 V5.17.txt:22414
 V5.17.txt:22415
 V5.17.txt:22416
 V5.17.txt:22417
 V5.17.txt:22418
 V5.17.txt:22419
 V5.17.txt:22420
 V5.17.txt:22421
 V5.17.txt:22422
 V5.17.txt:22423
 V5.17.txt:22424
 V5.17.txt:22425
 V5.17.txt:22426
 V5.17.txt:22427
 V5.17.txt:22428
 V5.17.txt:22429
 V5.17.txt:22430
 V5.17.txt:22431
 V5.17.txt:22432
 V5.17.txt:22433
 V5.17.txt:22434
 V5.17.txt:22435
 V5.17.txt:22436
 V5.17.txt:22437
 V5.17.txt:22438
 V5.17.txt:22439
 V5.17.txt:22440
 V5.17.txt:22441
 V5.17.txt:22442
 V5.17.txt:22443
 V5.17.txt:22444
 V5.17.txt:22445
 V5.17.txt:22446
 V5.17.txt:22447
 V5.17.txt:22448
 V5.17.txt:22449
 V5.17.txt:22450
 V5.17.txt:22451
 V5.17.txt:22452
 V5.17.txt:22453
 V5.17.txt:22454
 V5.17.txt:22455
 V5.17.txt:22456
 V5.17.txt:22457
 V5.17.txt:22458
 V5.17.txt:22459
 V5.17.txt:22460
 V5.17.txt:22461
 V5.17.txt:22462
 V5.17.txt:22463
 V5.17.txt:22464
 V5.17.txt:22465
 V5.17.txt:22466
 V5.17.txt:22467
 V5.17.txt:22468
 V5.17.txt:22469
 V5.17.txt:22470
 V5.17.txt:22471
 V5.17.txt:22472
 V5.17.txt:22473
 V5.17.txt:22474
 V5.17.txt:22475
 V5.17.txt:22476
 V5.17.txt:22477
 V5.17.txt:22478
 V5.17.txt:22479
 V5.17.txt:22480
 V5.17.txt:22481
 V5.17.txt:22482
 V5.17.txt:22483
 V5.17.txt:22484
 V5.17.txt:22485
 V5.17.txt:22486
 V5.17.txt:22487
 V5.17.txt:22488
 V5.17.txt:22489
 V5.17.txt:22490
 V5.17.txt:22491
 V5.17.txt:22492
 V5.17.txt:22493
 V5.17.txt:22494
 V5.17.txt:22495
 V5.17.txt:22496
 V5.17.txt:22497
 V5.17.txt:22498
 V5.17.txt:22499
 V5.17.txt:22500
 V5.17.txt:22501
 V5.17.txt:22502
 V5.17.txt:22503
 V5.17.txt:22504
 V5.17.txt:22505
 V5.17.txt:22506
 V5.17.txt:22507
 V5.17.txt:22508
 V5.17.txt:22509
 V5.17.txt:22510
 V5.17.txt:22511
 V5.17.txt:22512
 V5.17.txt:22513
 V5.17.txt:22514
 V5.17.txt:22515
 V5.17.txt:22516
 V5.17.txt:22517
 V5.17.txt:22518
 V5.17.txt:22519
 V5.17.txt:22520
 V5.17.txt:22521
 V5.17.txt:22522
 V5.17.txt:22523
 V5.17.txt:22524
 V5.17.txt:22525
 V5.17.txt:22526
 V5.17.txt:22527
 V5.17.txt:22528
 V5.17.txt:22529
 V5.17.txt:22530
 V5.17.txt:22531
 V5.17.txt:22532
 V5.17.txt:22533
 V5.17.txt:22534
 V5.17.txt:22535
 V5.17.txt:22536
 V5.17.txt:22537
 V5.17.txt:22538
 V5.17.txt:22539
 V5.17.txt:22540
 V5.17.txt:22541
 V5.17.txt:22542
 V5.17.txt:22543
 V5.17.txt:22544
 V5.17.txt:22545
 V5.17.txt:22546
 V5.17.txt:22547
 V5.17.txt:22548
 V5.17.txt:22549
 V5.17.txt:22550
 V5.17.txt:22551
 V5.17.txt:22552
 V5.17.txt:22553
 V5.17.txt:22554
 V5.17.txt:22555
 V5.17.txt:22556
 V5.17.txt:22557
 V5.17.txt:22558
 V5.17.txt:22559
 V5.17.txt:22560
 V5.17.txt:22561
 V5.17.txt:22562
 V5.17.txt:22563
 V5.17.txt:22564
 V5.17.txt:22565
 V5.17.txt:22566
 V5.17.txt:22567
 V5.17.txt:22568
 V5.17.txt:22569
 V5.17.txt:22570
 V5.17.txt:22571
 V5.17.txt:22572
 V5.17.txt:22573
 V5.17.txt:22574
 V5.17.txt:22575
 V5.17.txt:22576
 V5.17.txt:22577
 V5.17.txt:22578
 V5.17.txt:22579
 V5.17.txt:22580
 V5.17.txt:22581
 V5.17.txt:22582
 V5.17.txt:22583
 V5.17.txt:22584
 V5.17.txt:22585
 V5.17.txt:22586
 V5.17.txt:22587
 V5.17.txt:22588
 V5.17.txt:22589
 V5.17.txt:22590
 V5.17.txt:22591
 V5.17.txt:22592
 V5.17.txt:22593
 V5.17.txt:22594
 V5.17.txt:22595
 V5.17.txt:22596
 V5.17.txt:22597
 V5.17.txt:22598
 V5.17.txt:22599
 V5.17.txt:22600
 V5.17.txt:22601
 V5.17.txt:22602
 V5.17.txt:22603
 V5.17.txt:22604
 V5.17.txt:22605
 V5.17.txt:22606
 V5.17.txt:22607
 V5.17.txt:22608
 V5.17.txt:22609
 V5.17.txt:22610
 V5.17.txt:22611
 V5.17.txt:22612
 V5.17.txt:22613
 V5.17.txt:22614
 V5.17.txt:22615
 V5.17.txt:22616
 V5.17.txt:22617
 V5.17.txt:22618
 V5.17.txt:22619
 V5.17.txt:22620
 V5.17.txt:22621
 V5.17.txt:22622
 V5.17.txt:22623
 V5.17.txt:22624
 V5.17.txt:22625
 V5.17.txt:22626
 V5.17.txt:22627
 V5.17.txt:22628
 V5.17.txt:22629
 V5.17.txt:22630
 V5.17.txt:22631
 V5.17.txt:22632
 V5.17.txt:22633
 V5.17.txt:22634
 V5.17.txt:22635
 V5.17.txt:22636
 V5.17.txt:22637
 V5.17.txt:22638
 V5.17.txt:22639
 V5.17.txt:22640
 V5.17.txt:22641
 V5.17.txt:22642
 V5.17.txt:22643
 V5.17.txt:22644
 V5.17.txt:22645
 V5.17.txt:22646
 V5.17.txt:22647
 V5.17.txt:22648
 V5.17.txt:22649
 V5.17.txt:22650
 V5.17.txt:22651
 V5.17.txt:22652
 V5.17.txt:22653
 V5.17.txt:22654
 V5.17.txt:22655
 V5.17.txt:22656
 V5.17.txt:22657
 V5.17.txt:22658
 V5.17.txt:22659
 V5.17.txt:22660
 V5.17.txt:22661
 V5.17.txt:22662
 V5.17.txt:22663
 V5.17.txt:22664
 V5.17.txt:22665
 V5.17.txt:22666
 V5.17.txt:22667
 V5.17.txt:22668
 V5.17.txt:22669
 V5.17.txt:22670
 V5.17.txt:22671
 V5.17.txt:22672
 V5.17.txt:22673
 V5.17.txt:22674
 V5.17.txt:22675
 V5.17.txt:22676
 V5.17.txt:22677
 V5.17.txt:22678
 V5.17.txt:22679
 V5.17.txt:22680
 V5.17.txt:22681
 V5.17.txt:22682
 V5.17.txt:22683
 V5.17.txt:22684
 V5.17.txt:22685
 V5.17.txt:22686
 V5.17.txt:22687
 V5.17.txt:22688
 V5.17.txt:22689
 V5.17.txt:22690
 V5.17.txt:22691
 V5.17.txt:22692
 V5.17.txt:22693
 V5.17.txt:22694
 V5.17.txt:22695
 V5.17.txt:22696
 V5.17.txt:22697
 V5.17.txt:22698
 V5.17.txt:22699
 V5.17.txt:22700
 V5.17.txt:22701
 V5.17.txt:22702
 V5.17.txt:22703
 V5.17.txt:22704
 V5.17.txt:22705
 V5.17.txt:22706
 V5.17.txt:22707
 V5.17.txt:22708
 V5.17.txt:22709
 V5.17.txt:22710
 V5.17.txt:22711
 V5.17.txt:22712
 V5.17.txt:22713
 V5.17.txt:22714
 V5.17.txt:22715
 V5.17.txt:22716
 V5.17.txt:22717
 V5.17.txt:22718
 V5.17.txt:22719
 V5.17.txt:22720
 V5.17.txt:22721
 V5.17.txt:22722
 V5.17.txt:22723
 V5.17.txt:22724
 V5.17.txt:22725
 V5.17.txt:22726
 V5.17.txt:22727
 V5.17.txt:22728
 V5.17.txt:22729
 V5.17.txt:22730
 V5.17.txt:22731
 V5.17.txt:22732
 V5.17.txt:22733
 V5.17.txt:22734
 V5.17.txt:22735
 V5.17.txt:22736
 V5.17.txt:22737
 V5.17.txt:22738
 V5.17.txt:22739
 V5.17.txt:22740
 V5.17.txt:22741
 V5.17.txt:22742
 V5.17.txt:22743
 V5.17.txt:22744
 V5.17.txt:22745
 V5.17.txt:22746
 V5.17.txt:22747
 V5.17.txt:22748
 V5.17.txt:22749
 V5.17.txt:22750
 V5.17.txt:22751
 V5.17.txt:22752
 V5.17.txt:22753
 V5.17.txt:22754
 V5.17.txt:22755
 V5.17.txt:22756
 V5.17.txt:22757
 V5.17.txt:22758
 V5.17.txt:22759
 V5.17.txt:22760
 V5.17.txt:22761
 V5.17.txt:22762
 V5.17.txt:22763
 V5.17.txt:22764
 V5.17.txt:22765
 V5.17.txt:22766
 V5.17.txt:22767
 V5.17.txt:22768
 V5.17.txt:22769
 V5.17.txt:22770
 V5.17.txt:22771
 V5.17.txt:22772
 V5.17.txt:22773
 V5.17.txt:22774
 V5.17.txt:22775
 V5.17.txt:22776
 V5.17.txt:22777
 V5.17.txt:22778
 V5.17.txt:22779
 V5.17.txt:22780
 V5.17.txt:22781
 V5.17.txt:22782
 V5.17.txt:22783
 V5.17.txt:22784
 V5.17.txt:22785
 V5.17.txt:22786
 V5.17.txt:22787
 V5.17.txt:22788
 V5.17.txt:22789
 V5.17.txt:22790
 V5.17.txt:22791
 V5.17.txt:22792
 V5.17.txt:22793
 V5.17.txt:22794
 V5.17.txt:22795
 V5.17.txt:22796
 V5.17.txt:22797
 V5.17.txt:22798
 V5.17.txt:22799
 V5.17.txt:22800
 V5.17.txt:22801
 V5.17.txt:22802
 V5.17.txt:22803
 V5.17.txt:22804
 V5.17.txt:22805
 V5.17.txt:22806
 V5.17.txt:22807
 V5.17.txt:22808
 V5.17.txt:22809
 V5.17.txt:22810
 V5.17.txt:22811
 V5.17.txt:22812
 V5.17.txt:22813
 V5.17.txt:22814
 V5.17.txt:22815
 V5.17.txt:22816
 V5.17.txt:22817
 V5.17.txt:22818
 V5.17.txt:22819
 V5.17.txt:22820
 V5.17.txt:22821
 V5.17.txt:22822
 V5.17.txt:22823
 V5.17.txt:22824
 V5.17.txt:22825
 V5.17.txt:22826
 V5.17.txt:22827
 V5.17.txt:22828
 V5.17.txt:22829
 V5.17.txt:22830
 V5.17.txt:22831
 V5.17.txt:22832
 V5.17.txt:22833
 V5.17.txt:22834
 V5.17.txt:22835
 V5.17.txt:22836
 V5.17.txt:22837
 V5.17.txt:22838
 V5.17.txt:22839
 V5.17.txt:22840
 V5.17.txt:22841
 V5.17.txt:22842
 V5.17.txt:22843
 V5.17.txt:22844
 V5.17.txt:22845
 V5.17.txt:22846
 V5.17.txt:22847
 V5.17.txt:22848
 V5.17.txt:22849
 V5.17.txt:22850
 V5.17.txt:22851
 V5.17.txt:22852
 V5.17.txt:22853
 V5.17.txt:22854
 V5.17.txt:22855
 V5.17.txt:22856
 V5.17.txt:22857
 V5.17.txt:22858
 V5.17.txt:22859
 V5.17.txt:22860
 V5.17.txt:22861
 V5.17.txt:22862
 V5.17.txt:22863
 V5.17.txt:22864
 V5.17.txt:22865
 V5.17.txt:22866
 V5.17.txt:22867
 V5.17.txt:22868
 V5.17.txt:22869
 V5.17.txt:22870
 V5.17.txt:22871
 V5.17.txt:22872
 V5.17.txt:22873
 V5.17.txt:22874
 V5.17.txt:22875
 V5.17.txt:22876
 V5.17.txt:22877
 V5.17.txt:22878
 V5.17.txt:22879
 V5.17.txt:22880
 V5.17.txt:22881
 V5.17.txt:22882
 V5.17.txt:22883
 V5.17.txt:22884
 V5.17.txt:22885
 V5.17.txt:22886
 V5.17.txt:22887
 V5.17.txt:22888
 V5.17.txt:22889
 V5.17.txt:22890
 V5.17.txt:22891
 V5.17.txt:22892
 V5.17.txt:22893
 V5.17.txt:22894
 V5.17.txt:22895
 V5.17.txt:22896
 V5.17.txt:22897
 V5.17.txt:22898
 V5.17.txt:22899
 V5.17.txt:22900
 V5.17.txt:22901
 V5.17.txt:22902
 V5.17.txt:22903
 V5.17.txt:22904
 V5.17.txt:22905
 V5.17.txt:22906
 V5.17.txt:22907
 V5.17.txt:22908
 V5.17.txt:22909
 V5.17.txt:22910
 V5.17.txt:22911
 V5.17.txt:22912
 V5.17.txt:22913
 V5.17.txt:22914
 V5.17.txt:22915
 V5.17.txt:22916
 V5.17.txt:22917
 V5.17.txt:22918
 V5.17.txt:22919
 V5.17.txt:22920
 V5.17.txt:22921
 V5.17.txt:22922
 V5.17.txt:22923
 V5.17.txt:22924
 V5.17.txt:22925
 V5.17.txt:22926
 V5.17.txt:22927
 V5.17.txt:22928
 V5.17.txt:22929
 V5.17.txt:22930
 V5.17.txt:22931
 V5.17.txt:22932
 V5.17.txt:22933
 V5.17.txt:22934
 V5.17.txt:22935
 V5.17.txt:22936
 V5.17.txt:22937
 V5.17.txt:22938
 V5.17.txt:22939
 V5.17.txt:22940
 V5.17.txt:22941
 V5.17.txt:22942
 V5.17.txt:22943
 V5.17.txt:22944
 V5.17.txt:22945
 V5.17.txt:22946
 V5.17.txt:22947
 V5.17.txt:22948
 V5.17.txt:22949
 V5.17.txt:22950
 V5.17.txt:22951
 V5.17.txt:22952
 V5.17.txt:22953
 V5.17.txt:22954
 V5.17.txt:22955
 V5.17.txt:22956
 V5.17.txt:22957
 V5.17.txt:22958
 V5.17.txt:22959
 V5.17.txt:22960
 V5.17.txt:22961
 V5.17.txt:22962
 V5.17.txt:22963
 V5.17.txt:22964
 V5.17.txt:22965
 V5.17.txt:22966
 V5.17.txt:22967
 V5.17.txt:22968
 V5.17.txt:22969
 V5.17.txt:22970
 V5.17.txt:22971
 V5.17.txt:22972
 V5.17.txt:22973
 V5.17.txt:22974
 V5.17.txt:22975
 V5.17.txt:22976
 V5.17.txt:22977
 V5.17.txt:22978
 V5.17.txt:22979
 V5.17.txt:22980
 V5.17.txt:22981
 V5.17.txt:22982
 V5.17.txt:22983
 V5.17.txt:22984
 V5.17.txt:22985
 V5.17.txt:22986
 V5.17.txt:22987
 V5.17.txt:22988
 V5.17.txt:22989
 V5.17.txt:22990
 V5.17.txt:22991
 V5.17.txt:22992
 V5.17.txt:22993
 V5.17.txt:22994
 V5.17.txt:22995
 V5.17.txt:22996
 V5.17.txt:22997
 V5.17.txt:22998
 V5.17.txt:22999
 V5.17.txt:23000
 V5.17.txt:23001
 V5.17.txt:23002
 V5.17.txt:23003
 V5.17.txt:23004
 V5.17.txt:23005
 V5.17.txt:23006
 V5.17.txt:23007
 V5.17.txt:23008
 V5.17.txt:23009
 V5.17.txt:23010
 V5.17.txt:23011
 V5.17.txt:23012
 V5.17.txt:23013
 V5.17.txt:23014
 V5.17.txt:23015
 V5.17.txt:23016
 V5.17.txt:23017
 V5.17.txt:23018
 V5.17.txt:23019
 V5.17.txt:23020
 V5.17.txt:23021
 V5.17.txt:23022
 V5.17.txt:23023
 V5.17.txt:23024
 V5.17.txt:23025
 V5.17.txt:23026
 V5.17.txt:23027
 V5.17.txt:23028
 V5.17.txt:23029
 V5.17.txt:23030
 V5.17.txt:23031
 V5.17.txt:23032
 V5.17.txt:23033
 V5.17.txt:23034
 V5.17.txt:23035
 V5.17.txt:23036
 V5.17.txt:23037
 V5.17.txt:23038
 V5.17.txt:23039
 V5.17.txt:23040
 V5.17.txt:23041
 V5.17.txt:23042
 V5.17.txt:23043
 V5.17.txt:23044
 V5.17.txt:23045
 V5.17.txt:23046
 V5.17.txt:23047
 V5.17.txt:23048
 V5.17.txt:23049
 V5.17.txt:23050
 V5.17.txt:23051
 V5.17.txt:23052
 V5.17.txt:23053
 V5.17.txt:23054
 V5.17.txt:23055
 V5.17.txt:23056
 V5.17.txt:23057
 V5.17.txt:23058
 V5.17.txt:23059
 V5.17.txt:23060
 V5.17.txt:23061
 V5.17.txt:23062
 V5.17.txt:23063
 V5.17.txt:23064
 V5.17.txt:23065
 V5.17.txt:23066
 V5.17.txt:23067
 V5.17.txt:23068
 V5.17.txt:23069
 V5.17.txt:23070
 V5.17.txt:23071
 V5.17.txt:23072
 V5.17.txt:23073
 V5.17.txt:23074
 V5.17.txt:23075
 V5.17.txt:23076
 V5.17.txt:23077
 V5.17.txt:23078
 V5.17.txt:23079
 V5.17.txt:23080
 V5.17.txt:23081
 V5.17.txt:23082
 V5.17.txt:23083
 V5.17.txt:23084
 V5.17.txt:23085
 V5.17.txt:23086
 V5.17.txt:23087
 V5.17.txt:23088
 V5.17.txt:23089
 V5.17.txt:23090
 V5.17.txt:23091
 V5.17.txt:23092
 V5.17.txt:23093
 V5.17.txt:23094
 V5.17.txt:23095
 V5.17.txt:23096
 V5.17.txt:23097
 V5.17.txt:23098
 V5.17.txt:23099
 V5.17.txt:23100
 V5.17.txt:23101
 V5.17.txt:23102
 V5.17.txt:23103
 V5.17.txt:23104
 V5.17.txt:23105
 V5.17.txt:23106
 V5.17.txt:23107
 V5.17.txt:23108
 V5.17.txt:23109
 V5.17.txt:23110
 V5.17.txt:23111
 V5.17.txt:23112
 V5.17.txt:23113
 V5.17.txt:23114
 V5.17.txt:23115
 V5.17.txt:23116
 V5.17.txt:23117
 V5.17.txt:23118
 V5.17.txt:23119
 V5.17.txt:23120
 V5.17.txt:23121
 V5.17.txt:23122
 V5.17.txt:23123
 V5.17.txt:23124
 V5.17.txt:23125
 V5.17.txt:23126
 V5.17.txt:23127
 V5.17.txt:23128
 V5.17.txt:23129
 V5.17.txt:23130
 V5.17.txt:23131
 V5.17.txt:23132
 V5.17.txt:23133
 V5.17.txt:23134
 V5.17.txt:23135
 V5.17.txt:23136
 V5.17.txt:23137
 V5.17.txt:23138
 V5.17.txt:23139
 V5.17.txt:23140
 V5.17.txt:23141
 V5.17.txt:23142
 V5.17.txt:23143
 V5.17.txt:23144
 V5.17.txt:23145
 V5.17.txt:23146
 V5.17.txt:23147
 V5.17.txt:23148
 V5.17.txt:23149
 V5.17.txt:23150
 V5.17.txt:23151
 V5.17.txt:23152
 V5.17.txt:23153
 V5.17.txt:23154
 V5.17.txt:23155
 V5.17.txt:23156
 V5.17.txt:23157
 V5.17.txt:23158
 V5.17.txt:23159
 V5.17.txt:23160
 V5.17.txt:23161
 V5.17.txt:23162
 V5.17.txt:23163
 V5.17.txt:23164
 V5.17.txt:23165
 V5.17.txt:23166
 V5.17.txt:23167
 V5.17.txt:23168
 V5.17.txt:23169
 V5.17.txt:23170
 V5.17.txt:23171
 V5.17.txt:23172
 V5.17.txt:23173
 V5.17.txt:23174
 V5.17.txt:23175
 V5.17.txt:23176
 V5.17.txt:23177
 V5.17.txt:23178
 V5.17.txt:23179
 V5.17.txt:23180
 V5.17.txt:23181
 V5.17.txt:23182
 V5.17.txt:23183
 V5.17.txt:23184
 V5.17.txt:23185
 V5.17.txt:23186
 V5.17.txt:23187
 V5.17.txt:23188
 V5.17.txt:23189
 V5.17.txt:23190
 V5.17.txt:23191
 V5.17.txt:23192
 V5.17.txt:23193
 V5.17.txt:23194
 V5.17.txt:23195
 V5.17.txt:23196
 V5.17.txt:23197
 V5.17.txt:23198
 V5.17.txt:23199
 V5.17.txt:23200
 V5.17.txt:23201
 V5.17.txt:23202
 V5.17.txt:23203
 V5.17.txt:23204
 V5.17.txt:23205
 V5.17.txt:23206
 V5.17.txt:23207
 V5.17.txt:23208
 V5.17.txt:23209
 V5.17.txt:23210
 V5.17.txt:23211
 V5.17.txt:23212
 V5.17.txt:23213
 V5.17.txt:23214
 V5.17.txt:23215
 V5.17.txt:23216
 V5.17.txt:23217
 V5.17.txt:23218
 V5.17.txt:23219
 V5.17.txt:23220
 V5.17.txt:23221
 V5.17.txt:23222
 V5.17.txt:23223
 V5.17.txt:23224
 V5.17.txt:23225
 V5.17.txt:23226
 V5.17.txt:23227
 V5.17.txt:23228
 V5.17.txt:23229
 V5.17.txt:23230
 V5.17.txt:23231
 V5.17.txt:23232
 V5.17.txt:23233
 V5.17.txt:23234
 V5.17.txt:23235
 V5.17.txt:23236
 V5.17.txt:23237
 V5.17.txt:23238
 V5.17.txt:23239
 V5.17.txt:23240
 V5.17.txt:23241
 V5.17.txt:23242
 V5.17.txt:23243
 V5.17.txt:23244
 V5.17.txt:23245
 V5.17.txt:23246
 V5.17.txt:23247
 V5.17.txt:23248
 V5.17.txt:23249
 V5.17.txt:23250
 V5.17.txt:23251
 V5.17.txt:23252
 V5.17.txt:23253
 V5.17.txt:23254
 V5.17.txt:23255
 V5.17.txt:23256
 V5.17.txt:23257
 V5.17.txt:23258
 V5.17.txt:23259
 V5.17.txt:23260
 V5.17.txt:23261
 V5.17.txt:23262
 V5.17.txt:23263
 V5.17.txt:23264
 V5.17.txt:23265
 V5.17.txt:23266
 V5.17.txt:23267
 V5.17.txt:23268
 V5.17.txt:23269
 V5.17.txt:23270
 V5.17.txt:23271
 V5.17.txt:23272
 V5.17.txt:23273
 V5.17.txt:23274
 V5.17.txt:23275
 V5.17.txt:23276
 V5.17.txt:23277
 V5.17.txt:23278
 V5.17.txt:23279
 V5.17.txt:23280
 V5.17.txt:23281
 V5.17.txt:23282
 V5.17.txt:23283
 V5.17.txt:23284
 V5.17.txt:23285
 V5.17.txt:23286
 V5.17.txt:23287
 V5.17.txt:23288
 V5.17.txt:23289
 V5.17.txt:23290
 V5.17.txt:23291
 V5.17.txt:23292
 V5.17.txt:23293
 V5.17.txt:23294
 V5.17.txt:23295
 V5.17.txt:23296
 V5.17.txt:23297
 V5.17.txt:23298
 V5.17.txt:23299
 V5.17.txt:23300
 V5.17.txt:23301
 V5.17.txt:23302
 V5.17.txt:23303
 V5.17.txt:23304
 V5.17.txt:23305
 V5.17.txt:23306
 V5.17.txt:23307
 V5.17.txt:23308
 V5.17.txt:23309
 V5.17.txt:23310
 V5.17.txt:23311
 V5.17.txt:23312
 V5.17.txt:23313
 V5.17.txt:23314
 V5.17.txt:23315
 V5.17.txt:23316
 V5.17.txt:23317
 V5.17.txt:23318
 V5.17.txt:23319
 V5.17.txt:23320
 V5.17.txt:23321
 V5.17.txt:23322
 V5.17.txt:23323
 V5.17.txt:23324
 V5.17.txt:23325
 V5.17.txt:23326
 V5.17.txt:23327
 V5.17.txt:23328
 V5.17.txt:23329
 V5.17.txt:23330
 V5.17.txt:23331
 V5.17.txt:23332
 V5.17.txt:23333
 V5.17.txt:23334
 V5.17.txt:23335
 V5.17.txt:23336
 V5.17.txt:23337
 V5.17.txt:23338
 V5.17.txt:23339
 V5.17.txt:23340
 V5.17.txt:23341
 V5.17.txt:23342
 V5.17.txt:23343
 V5.17.txt:23344
 V5.17.txt:23345
 V5.17.txt:23346
 V5.17.txt:23347
 V5.17.txt:23348
 V5.17.txt:23349
 V5.17.txt:23350
 V5.17.txt:23351
 V5.17.txt:23352
 V5.17.txt:23353
 V5.17.txt:23354
 V5.17.txt:23355
 V5.17.txt:23356
 V5.17.txt:23357
 V5.17.txt:23358
 V5.17.txt:23359
 V5.17.txt:23360
 V5.17.txt:23361
 V5.17.txt:23362
 V5.17.txt:23363
 V5.17.txt:23364
 V5.17.txt:23365
 V5.17.txt:23366
 V5.17.txt:23367
 V5.17.txt:23368
 V5.17.txt:23369
 V5.17.txt:23370
 V5.17.txt:23371
 V5.17.txt:23372
 V5.17.txt:23373
 V5.17.txt:23374
 V5.17.txt:23375
 V5.17.txt:23376
 V5.17.txt:23377
 V5.17.txt:23378
 V5.17.txt:23379
 V5.17.txt:23380
 V5.17.txt:23381
 V5.17.txt:23382
 V5.17.txt:23383
 V5.17.txt:23384
 V5.17.txt:23385
 V5.17.txt:23386
 V5.17.txt:23387
 V5.17.txt:23388
 V5.17.txt:23389
 V5.17.txt:23390
 V5.17.txt:23391
 V5.17.txt:23392
 V5.17.txt:23393
 V5.17.txt:23394
 V5.17.txt:23395
 V5.17.txt:23396
 V5.17.txt:23397
 V5.17.txt:23398
 V5.17.txt:23399
 V5.17.txt:23400
 V5.17.txt:23401
 V5.17.txt:23402
 V5.17.txt:23403
 V5.17.txt:23404
 V5.17.txt:23405
 V5.17.txt:23406
 V5.17.txt:23407
 V5.17.txt:23408
 V5.17.txt:23409
 V5.17.txt:23410
 V5.17.txt:23411
 V5.17.txt:23412
 V5.17.txt:23413
 V5.17.txt:23414
 V5.17.txt:23415
 V5.17.txt:23416
 V5.17.txt:23417
 V5.17.txt:23418
 V5.17.txt:23419
 V5.17.txt:23420
 V5.17.txt:23421
 V5.17.txt:23422
 V5.17.txt:23423
 V5.17.txt:23424
 V5.17.txt:23425
 V5.17.txt:23426
 V5.17.txt:23427
 V5.17.txt:23428
 V5.17.txt:23429
 V5.17.txt:23430
 V5.17.txt:23431
 V5.17.txt:23432
 V5.17.txt:23433
 V5.17.txt:23434
 V5.17.txt:23435
 V5.17.txt:23436
 V5.17.txt:23437
 V5.17.txt:23438
 V5.17.txt:23439
 V5.17.txt:23440
 V5.17.txt:23441
 V5.17.txt:23442
 V5.17.txt:23443
 V5.17.txt:23444
 V5.17.txt:23445
 V5.17.txt:23446
 V5.17.txt:23447
 V5.17.txt:23448
 V5.17.txt:23449
 V5.17.txt:23450
 V5.17.txt:23451
 V5.17.txt:23452
 V5.17.txt:23453
 V5.17.txt:23454
 V5.17.txt:23455
 V5.17.txt:23456
 V5.17.txt:23457
 V5.17.txt:23458
 V5.17.txt:23459
 V5.17.txt:23460
 V5.17.txt:23461
 V5.17.txt:23462
 V5.17.txt:23463
 V5.17.txt:23464
 V5.17.txt:23465
 V5.17.txt:23466
 V5.17.txt:23467
 V5.17.txt:23468
 V5.17.txt:23469
 V5.17.txt:23470
 V5.17.txt:23471
 V5.17.txt:23472
 V5.17.txt:23473
 V5.17.txt:23474
 V5.17.txt:23475
 V5.17.txt:23476
 V5.17.txt:23477
 V5.17.txt:23478
 V5.17.txt:23479
 V5.17.txt:23480
 V5.17.txt:23481
 V5.17.txt:23482
 V5.17.txt:23483
 V5.17.txt:23484
 V5.17.txt:23485
 V5.17.txt:23486
 V5.17.txt:23487
 V5.17.txt:23488
 V5.17.txt:23489
 V5.17.txt:23490
 V5.17.txt:23491
 V5.17.txt:23492
 V5.17.txt:23493
 V5.17.txt:23494
 V5.17.txt:23495
 V5.17.txt:23496
 V5.17.txt:23497
 V5.17.txt:23498
 V5.17.txt:23499
 V5.17.txt:23500
 V5.17.txt:23501
 V5.17.txt:23502
 V5.17.txt:23503
 V5.17.txt:23504
 V5.17.txt:23505
 V5.17.txt:23506
 V5.17.txt:23507
 V5.17.txt:23508
 V5.17.txt:23509
 V5.17.txt:23510
 V5.17.txt:23511
 V5.17.txt:23512
 V5.17.txt:23513
 V5.17.txt:23514
 V5.17.txt:23515
 V5.17.txt:23516
 V5.17.txt:23517
 V5.17.txt:23518
 V5.17.txt:23519
 V5.17.txt:23520
 V5.17.txt:23521
 V5.17.txt:23522
 V5.17.txt:23523
 V5.17.txt:23524
 V5.17.txt:23525
 V5.17.txt:23526
 V5.17.txt:23527
 V5.17.txt:23528
 V5.17.txt:23529
 V5.17.txt:23530
 V5.17.txt:23531
 V5.17.txt:23532
 V5.17.txt:23533
 V5.17.txt:23534
 V5.17.txt:23535
 V5.17.txt:23536
 V5.17.txt:23537
 V5.17.txt:23538
 V5.17.txt:23539
 V5.17.txt:23540
 V5.17.txt:23541
 V5.17.txt:23542
 V5.17.txt:23543
 V5.17.txt:23544
 V5.17.txt:23545
 V5.17.txt:23546
 V5.17.txt:23547
 V5.17.txt:23548
 V5.17.txt:23549
 V5.17.txt:23550
 V5.17.txt:23551
 V5.17.txt:23552
 V5.17.txt:23553
 V5.17.txt:23554
 V5.17.txt:23555
 V5.17.txt:23556
 V5.17.txt:23557
 V5.17.txt:23558
 V5.17.txt:23559
 V5.17.txt:23560
 V5.17.txt:23561
 V5.17.txt:23562
 V5.17.txt:23563
 V5.17.txt:23564
 V5.17.txt:23565
 V5.17.txt:23566
 V5.17.txt:23567
 V5.17.txt:23568
 V5.17.txt:23569
 V5.17.txt:23570
 V5.17.txt:23571
 V5.17.txt:23572
 V5.17.txt:23573
 V5.17.txt:23574
 V5.17.txt:23575
 V5.17.txt:23576
 V5.17.txt:23577
 V5.17.txt:23578
 V5.17.txt:23579
 V5.17.txt:23580
 V5.17.txt:23581
 V5.17.txt:23582
 V5.17.txt:23583
 V5.17.txt:23584
 V5.17.txt:23585
 V5.17.txt:23586
 V5.17.txt:23587
 V5.17.txt:23588
 V5.17.txt:23589
 V5.17.txt:23590
 V5.17.txt:23591
 V5.17.txt:23592
 V5.17.txt:23593
 V5.17.txt:23594
 V5.17.txt:23595
 V5.17.txt:23596
 V5.17.txt:23597
 V5.17.txt:23598
 V5.17.txt:23599
 V5.17.txt:23600
 V5.17.txt:23601
 V5.17.txt:23602
 V5.17.txt:23603
 V5.17.txt:23604
 V5.17.txt:23605
 V5.17.txt:23606
 V5.17.txt:23607
 V5.17.txt:23608
 V5.17.txt:23609
 V5.17.txt:23610
 V5.17.txt:23611
 V5.17.txt:23612
 V5.17.txt:23613
 V5.17.txt:23614
 V5.17.txt:23615
 V5.17.txt:23616
 V5.17.txt:23617
 V5.17.txt:23618
 V5.17.txt:23619
 V5.17.txt:23620
 V5.17.txt:23621
 V5.17.txt:23622
 V5.17.txt:23623
 V5.17.txt:23624
 V5.17.txt:23625
 V5.17.txt:23626
 V5.17.txt:23627
 V5.17.txt:23628
 V5.17.txt:23629
 V5.17.txt:23630
 V5.17.txt:23631
 V5.17.txt:23632
 V5.17.txt:23633
 V5.17.txt:23634
 V5.17.txt:23635
 V5.17.txt:23636
 V5.17.txt:23637
 V5.17.txt:23638
 V5.17.txt:23639
 V5.17.txt:23640
 V5.17.txt:23641
 V5.17.txt:23642
 V5.17.txt:23643
 V5.17.txt:23644
 V5.17.txt:23645
 V5.17.txt:23646
 V5.17.txt:23647
 V5.17.txt:23648
 V5.17.txt:23649
 V5.17.txt:23650
 V5.17.txt:23651
 V5.17.txt:23652
 V5.17.txt:23653
 V5.17.txt:23654
 V5.17.txt:23655
 V5.17.txt:23656
 V5.17.txt:23657
 V5.17.txt:23658
 V5.17.txt:23659
 V5.17.txt:23660
 V5.17.txt:23661
 V5.17.txt:23662
 V5.17.txt:23663
 V5.17.txt:23664
 V5.17.txt:23665
 V5.17.txt:23666
 V5.17.txt:23667
 V5.17.txt:23668
 V5.17.txt:23669
 V5.17.txt:23670
 V5.17.txt:23671
 V5.17.txt:23672
 V5.17.txt:23673
 V5.17.txt:23674
 V5.17.txt:23675
 V5.17.txt:23676
 V5.17.txt:23677
 V5.17.txt:23678
 V5.17.txt:23679
 V5.17.txt:23680
 V5.17.txt:23681
 V5.17.txt:23682
 V5.17.txt:23683
 V5.17.txt:23684
 V5.17.txt:23685
 V5.17.txt:23686
 V5.17.txt:23687
 V5.17.txt:23688
 V5.17.txt:23689
 V5.17.txt:23690
 V5.17.txt:23691
 V5.17.txt:23692
 V5.17.txt:23693
 V5.17.txt:23694
 V5.17.txt:23695
 V5.17.txt:23696
 V5.17.txt:23697
 V5.17.txt:23698
 V5.17.txt:23699
 V5.17.txt:23700
 V5.17.txt:23701
 V5.17.txt:23702
 V5.17.txt:23703
 V5.17.txt:23704
 V5.17.txt:23705
 V5.17.txt:23706
 V5.17.txt:23707
 V5.17.txt:23708
 V5.17.txt:23709
 V5.17.txt:23710
 V5.17.txt:23711
 V5.17.txt:23712
 V5.17.txt:23713
 V5.17.txt:23714
 V5.17.txt:23715
 V5.17.txt:23716
 V5.17.txt:23717
 V5.17.txt:23718
 V5.17.txt:23719
 V5.17.txt:23720
 V5.17.txt:23721
 V5.17.txt:23722
 V5.17.txt:23723
 V5.17.txt:23724
 V5.17.txt:23725
 V5.17.txt:23726
 V5.17.txt:23727
 V5.17.txt:23728
 V5.17.txt:23729
 V5.17.txt:23730
 V5.17.txt:23731
 V5.17.txt:23732
 V5.17.txt:23733
 V5.17.txt:23734
 V5.17.txt:23735
 V5.17.txt:23736
 V5.17.txt:23737
 V5.17.txt:23738
 V5.17.txt:23739
 V5.17.txt:23740
 V5.17.txt:23741
 V5.17.txt:23742
 V5.17.txt:23743
 V5.17.txt:23744
 V5.17.txt:23745
 V5.17.txt:23746
 V5.17.txt:23747
 V5.17.txt:23748
 V5.17.txt:23749
 V5.17.txt:23750
 V5.17.txt:23751
 V5.17.txt:23752
 V5.17.txt:23753
 V5.17.txt:23754
 V5.17.txt:23755
 V5.17.txt:23756
 V5.17.txt:23757
 V5.17.txt:23758
 V5.17.txt:23759
 V5.17.txt:23760
 V5.17.txt:23761
 V5.17.txt:23762
 V5.17.txt:23763
 V5.17.txt:23764
 V5.17.txt:23765
 V5.17.txt:23766
 V5.17.txt:23767
 V5.17.txt:23768
 V5.17.txt:23769
 V5.17.txt:23770
 V5.17.txt:23771
 V5.17.txt:23772
 V5.17.txt:23773
 V5.17.txt:23774
 V5.17.txt:23775
 V5.17.txt:23776
 V5.17.txt:23777
 V5.17.txt:23778
 V5.17.txt:23779
 V5.17.txt:23780
 V5.17.txt:23781
 V5.17.txt:23782
 V5.17.txt:23783
 V5.17.txt:23784
 V5.17.txt:23785
 V5.17.txt:23786
 V5.17.txt:23787
 V5.17.txt:23788
 V5.17.txt:23789
 V5.17.txt:23790
 V5.17.txt:23791
 V5.17.txt:23792
 V5.17.txt:23793
 V5.17.txt:23794
 V5.17.txt:23795
 V5.17.txt:23796
 V5.17.txt:23797
 V5.17.txt:23798
 V5.17.txt:23799
 V5.17.txt:23800
 V5.17.txt:23801
 V5.17.txt:23802
 V5.17.txt:23803
 V5.17.txt:23804
 V5.17.txt:23805
 V5.17.txt:23806
 V5.17.txt:23807
 V5.17.txt:23808
 V5.17.txt:23809
 V5.17.txt:23810
 V5.17.txt:23811
 V5.17.txt:23812
 V5.17.txt:23813
 V5.17.txt:23814
 V5.17.txt:23815
 V5.17.txt:23816
 V5.17.txt:23817
 V5.17.txt:23818
 V5.17.txt:23819
 V5.17.txt:23820
 V5.17.txt:23821
 V5.17.txt:23822
 V5.17.txt:23823
 V5.17.txt:23824
 V5.17.txt:23825
 V5.17.txt:23826
 V5.17.txt:23827
 V5.17.txt:23828
 V5.17.txt:23829
 V5.17.txt:23830
 V5.17.txt:23831
 V5.17.txt:23832
 V5.17.txt:23833
 V5.17.txt:23834
 V5.17.txt:23835
 V5.17.txt:23836
 V5.17.txt:23837
 V5.17.txt:23838
 V5.17.txt:23839
 V5.17.txt:23840
 V5.17.txt:23841
 V5.17.txt:23842
 V5.17.txt:23843
 V5.17.txt:23844
 V5.17.txt:23845
 V5.17.txt:23846
 V5.17.txt:23847
 V5.17.txt:23848
 V5.17.txt:23849
 V5.17.txt:23850
 V5.17.txt:23851
 V5.17.txt:23852
 V5.17.txt:23853
 V5.17.txt:23854
 V5.17.txt:23855
 V5.17.txt:23856
 V5.17.txt:23857
 V5.17.txt:23858
 V5.17.txt:23859
 V5.17.txt:23860
 V5.17.txt:23861
 V5.17.txt:23862
 V5.17.txt:23863
 V5.17.txt:23864
 V5.17.txt:23865
 V5.17.txt:23866
 V5.17.txt:23867
 V5.17.txt:23868
 V5.17.txt:23869
 V5.17.txt:23870
 V5.17.txt:23871
 V5.17.txt:23872
 V5.17.txt:23873
 V5.17.txt:23874
 V5.17.txt:23875
 V5.17.txt:23876
 V5.17.txt:23877
 V5.17.txt:23878
 V5.17.txt:23879
 V5.17.txt:23880
 V5.17.txt:23881
 V5.17.txt:23882
 V5.17.txt:23883
 V5.17.txt:23884
 V5.17.txt:23885
 V5.17.txt:23886
 V5.17.txt:23887
 V5.17.txt:23888
 V5.17.txt:23889
 V5.17.txt:23890
 V5.17.txt:23891
 V5.17.txt:23892
 V5.17.txt:23893
 V5.17.txt:23894
 V5.17.txt:23895
 V5.17.txt:23896
 V5.17.txt:23897
 V5.17.txt:23898
 V5.17.txt:23899
 V5.17.txt:23900
 V5.17.txt:23901
 V5.17.txt:23902
 V5.17.txt:23903
 V5.17.txt:23904
 V5.17.txt:23905
 V5.17.txt:23906
 V5.17.txt:23907
 V5.17.txt:23908
 V5.17.txt:23909
 V5.17.txt:23910
 V5.17.txt:23911
 V5.17.txt:23912
 V5.17.txt:23913
 V5.17.txt:23914
 V5.17.txt:23915
 V5.17.txt:23916
 V5.17.txt:23917
 V5.17.txt:23918
 V5.17.txt:23919
 V5.17.txt:23920
 V5.17.txt:23921
 V5.17.txt:23922
 V5.17.txt:23923
 V5.17.txt:23924
 V5.17.txt:23925
 V5.17.txt:23926
 V5.17.txt:23927
 V5.17.txt:23928
 V5.17.txt:23929
 V5.17.txt:23930
 V5.17.txt:23931
 V5.17.txt:23932
 V5.17.txt:23933
 V5.17.txt:23934
 V5.17.txt:23935
 V5.17.txt:23936
 V5.17.txt:23937
 V5.17.txt:23938
 V5.17.txt:23939
 V5.17.txt:23940
 V5.17.txt:23941
 V5.17.txt:23942
 V5.17.txt:23943
 V5.17.txt:23944
 V5.17.txt:23945
 V5.17.txt:23946
 V5.17.txt:23947
 V5.17.txt:23948
 V5.17.txt:23949
 V5.17.txt:23950
 V5.17.txt:23951
 V5.17.txt:23952
 V5.17.txt:23953
 V5.17.txt:23954
 V5.17.txt:23955
 V5.17.txt:23956
 V5.17.txt:23957
 V5.17.txt:23958
 V5.17.txt:23959
 V5.17.txt:23960
 V5.17.txt:23961
 V5.17.txt:23962
 V5.17.txt:23963
 V5.17.txt:23964
 V5.17.txt:23965
 V5.17.txt:23966
 V5.17.txt:23967
 V5.17.txt:23968
 V5.17.txt:23969
 V5.17.txt:23970
 V5.17.txt:23971
 V5.17.txt:23972
 V5.17.txt:23973
 V5.17.txt:23974
 V5.17.txt:23975
 V5.17.txt:23976
 V5.17.txt:23977
 V5.17.txt:23978
 V5.17.txt:23979
 V5.17.txt:23980
 V5.17.txt:23981
 V5.17.txt:23982
 V5.17.txt:23983
 V5.17.txt:23984
 V5.17.txt:23985
 V5.17.txt:23986
 V5.17.txt:23987
 V5.17.txt:23988
 V5.17.txt:23989
 V5.17.txt:23990
 V5.17.txt:23991
 V5.17.txt:23992
 V5.17.txt:23993
 V5.17.txt:23994
 V5.17.txt:23995
 V5.17.txt:23996
 V5.17.txt:23997
 V5.17.txt:23998
 V5.17.txt:23999
 V5.17.txt:24000
 V5.17.txt:24001
 V5.17.txt:24002
 V5.17.txt:24003
 V5.17.txt:24004
 V5.17.txt:24005
 V5.17.txt:24006
 V5.17.txt:24007
 V5.17.txt:24008
 V5.17.txt:24009
 V5.17.txt:24010