You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@xerces.apache.org by kn...@apache.org on 2001/02/15 17:46:44 UTC

cvs commit: xml-xerces/c/src/util/Platforms/Win32 Version.rc

knoaman     01/02/15 08:46:44

  Modified:    c/src/NLS/EN_US XMLErrList_EN_US.Xml
               c/src/framework XMLErrorCodes.hpp XMLValidityCodes.hpp
               c/src/util/MsgLoaders/InMemory CppErrMsgs_EN_US.hpp
               c/src/util/MsgLoaders/MsgCatalog XMLMsgCat_EN_US.Msg
               c/src/util/Platforms/Win32 Version.rc
  Log:
  Schema: messaging mechanism to issue new schema/datatype msgs
  Add the schema/datatype messages to message files for corresponding loaders
  
  Revision  Changes    Path
  1.14      +39 -0     xml-xerces/c/src/NLS/EN_US/XMLErrList_EN_US.Xml
  
  Index: XMLErrList_EN_US.Xml
  ===================================================================
  RCS file: /home/cvs/xml-xerces/c/src/NLS/EN_US/XMLErrList_EN_US.Xml,v
  retrieving revision 1.13
  retrieving revision 1.14
  diff -u -r1.13 -r1.14
  --- XMLErrList_EN_US.Xml	2000/04/07 01:01:54	1.13
  +++ XMLErrList_EN_US.Xml	2001/02/15 16:46:32	1.14
  @@ -136,6 +136,28 @@
               <Message Id="SysException" Text="A system exception occured during processing"/>
               <Message Id="XMLException" Text="An exception occured! Type:{0}, Message:{1}"/>
               <Message Id="UnexpectedEOF" Text="Unexpected end of file exception. Message: {0}"/>
  +            <Message Id="NoValidatorFor" Text="No validator for datatype {0}"/>
  +            <Message Id="IncorrectDatatype" Text="Incorrect datatype: {0}"/>
  +            <Message Id="NotADatatype" Text="{0} is not a datatype."/>
  +            <Message Id="TextOnlyContentWithType" Text="The content attribute must be 'textOnly' if you specify a type attribute."/>
  +            <Message Id="FeatureUnsupported" Text="{0} is unsupported"/>
  +            <Message Id="NestedOnlyInElemOnly" Text="Nested Element decls only allowed in elementOnly content"/>
  +            <Message Id="EltRefOnlyInMixedElemOnly" Text="Element references only allowed in mixed or elementOnly content"/>
  +            <Message Id="OnlyInEltContent" Text="{0} only allowed in elementOnly content."/>
  +            <Message Id="OrderIsAll" Text="{0} not allowed if the order is all."/>
  +            <Message Id="DatatypeWithType" Text="Datatype qualifiers can only be used if you specify a type attribute."/>
  +            <Message Id="DatatypeQualUnsupported" Text="The datatype qualifier {0} is not supported."/>
  +            <Message Id="GroupContentRestricted" Text="Error: {0} content must be one of element, group, modelGroupRef. Saw {1}"/>
  +            <Message Id="UnknownBaseDatatype" Text="Unknown base type {0} for type {1}."/>
  +            <Message Id="OneOfTypeRefArchRef" Text="Can only have one of type and ref attributes."/>
  +            <Message Id="NoContentForRef" Text="Cannot have child content for an element declaration that has a ref attribute"/>
  +            <Message Id="IncorrectDefaultType" Text="Incorrect type for {0}'s default value: {1}"/>
  +            <Message Id="IllegalAttContent" Text="Illegal content {0} in attribute group"/>
  +            <Message Id="ValueNotInteger" Text="Value of {0} is not an integer."/> 
  +            <Message Id="DatatypeError" Text="Datatype error: {0}."/>
  +            <Message Id="TypeAlreadySet" Text="The type of the element has already been declared."/>
  +            <Message Id="GenericError" Text="Schema error: {0}."/>
  +            <Message Id="UnexpectedError" Text="UnexpectedError"/>
           </Error>
       </MsgDomain>
       <MsgDomain Domain="http://apache.org/xml/messages/XMLValidity">
  @@ -165,6 +187,23 @@
               <Message Id="NoMultipleValues" Text="Attribute '{0}' does not support multiple values"/>
               <Message Id="NotSameAsFixedValue" Text="Attribute '{0}' has a value, '{1}', that does not match its #FIXED value, '{2}'"/>
               <Message Id="RepElemInMixed" Text="Element types cannot be duplicated in Mixed content models"/>
  +            <Message Id="NotBoolean" Text="{0} is not a boolean."/>
  +            <Message Id="NotDecimal" Text="{0} is not a decimal."/>
  +            <Message Id="FacetsInconsistent" Text="Facets are inconsistent with base type."/>
  +            <Message Id="IllegalFacetValue" Text="Illegal value {0} for facet {1}."/>
  +            <Message Id="IllegalDecimalFacet" Text="Illegal Facet for decimal type."/>
  +            <Message Id="UnknownFacet" Text="Unknown Facet: {0}."/>
  +            <Message Id="InvalidEnumValue" Text="Invalid value for Enum constant: {0}."/>
  +            <Message Id="OutOfBounds" Text="{0} is out of bounds:[ {1} {3} X  {4} {2} ]."/>
  +            <Message Id="NotAnEnumValue" Text="{0} is not one of the specified enum values."/>
  +            <Message Id="NotInteger" Text="{0} is not an integer."/>
  +            <Message Id="IllegalIntegerFacet" Text="Illegal Facet for Integer type."/>
  +            <Message Id="NotReal" Text="{0} is not a double."/>
  +            <Message Id="IllegalRealFacet" Text="Illegal Facet for Real type."/>
  +            <Message Id="ScaleLargerThanPrecision" Text="Scale Facet must be less than or equal to Precision Facet"/>
  +            <Message Id="PrecisionExceeded" Text="{0} has exceeded the precision Facet {1}"/>
  +            <Message Id="ScaleExceeded" Text="{0} has execeed the scale Facet {1}"/>
  +            <Message Id="NotFloat" Text="{0} is not a float."/>
           </Error>
       </MsgDomain>
       <MsgDomain Domain="http://apache.org/xml/messages/XML4CErrors">
  
  
  
  1.3       +25 -3     xml-xerces/c/src/framework/XMLErrorCodes.hpp
  
  Index: XMLErrorCodes.hpp
  ===================================================================
  RCS file: /home/cvs/xml-xerces/c/src/framework/XMLErrorCodes.hpp,v
  retrieving revision 1.2
  retrieving revision 1.3
  diff -u -r1.2 -r1.3
  --- XMLErrorCodes.hpp	2000/03/02 19:54:25	1.2
  +++ XMLErrorCodes.hpp	2001/02/15 16:46:35	1.3
  @@ -140,9 +140,31 @@
         , SysException                       = 127
         , XMLException                       = 128
         , UnexpectedEOF                      = 129
  -      , E_HighBounds                       = 130
  -      , V_LowBounds                        = 131
  -      , V_HighBounds                       = 132
  +      , NoValidatorFor                     = 130
  +      , IncorrectDatatype                  = 131
  +      , NotADatatype                       = 132
  +      , TextOnlyContentWithType            = 133
  +      , FeatureUnsupported                 = 134
  +      , NestedOnlyInElemOnly               = 135
  +      , EltRefOnlyInMixedElemOnly          = 136
  +      , OnlyInEltContent                   = 137
  +      , OrderIsAll                         = 138
  +      , DatatypeWithType                   = 139
  +      , DatatypeQualUnsupported            = 140
  +      , GroupContentRestricted             = 141
  +      , UnknownBaseDatatype                = 142
  +      , OneOfTypeRefArchRef                = 143
  +      , NoContentForRef                    = 144
  +      , IncorrectDefaultType               = 145
  +      , IllegalAttContent                  = 146
  +      , ValueNotInteger                    = 147
  +      , DatatypeError                      = 148
  +      , TypeAlreadySet                     = 149
  +      , GenericError                       = 150
  +      , UnexpectedError                    = 151
  +      , E_HighBounds                       = 152
  +      , V_LowBounds                        = 153
  +      , V_HighBounds                       = 154
       };
   
       static bool isFatal(const XMLErrs::Codes toCheck)
  
  
  
  1.3       +22 -5     xml-xerces/c/src/framework/XMLValidityCodes.hpp
  
  Index: XMLValidityCodes.hpp
  ===================================================================
  RCS file: /home/cvs/xml-xerces/c/src/framework/XMLValidityCodes.hpp,v
  retrieving revision 1.2
  retrieving revision 1.3
  diff -u -r1.2 -r1.3
  --- XMLValidityCodes.hpp	2000/03/02 19:54:25	1.2
  +++ XMLValidityCodes.hpp	2001/02/15 16:46:35	1.3
  @@ -37,11 +37,28 @@
         , NoMultipleValues                   = 24
         , NotSameAsFixedValue                = 25
         , RepElemInMixed                     = 26
  -      , V_HighBounds                       = 27
  -      , W_LowBounds                        = 28
  -      , W_HighBounds                       = 29
  -      , E_LowBounds                        = 30
  -      , E_HighBounds                       = 31
  +      , NotBoolean                         = 27
  +      , NotDecimal                         = 28
  +      , FacetsInconsistent                 = 29
  +      , IllegalFacetValue                  = 30
  +      , IllegalDecimalFacet                = 31
  +      , UnknownFacet                       = 32
  +      , InvalidEnumValue                   = 33
  +      , OutOfBounds                        = 34
  +      , NotAnEnumValue                     = 35
  +      , NotInteger                         = 36
  +      , IllegalIntegerFacet                = 37
  +      , NotReal                            = 38
  +      , IllegalRealFacet                   = 39
  +      , ScaleLargerThanPrecision           = 40
  +      , PrecisionExceeded                  = 41
  +      , ScaleExceeded                      = 42
  +      , NotFloat                           = 43
  +      , V_HighBounds                       = 44
  +      , W_LowBounds                        = 45
  +      , W_HighBounds                       = 46
  +      , E_LowBounds                        = 47
  +      , E_HighBounds                       = 48
       };
   
       static bool isFatal(const XMLValid::Codes toCheck)
  
  
  
  1.13      +41 -2     xml-xerces/c/src/util/MsgLoaders/InMemory/CppErrMsgs_EN_US.hpp
  
  Index: CppErrMsgs_EN_US.hpp
  ===================================================================
  RCS file: /home/cvs/xml-xerces/c/src/util/MsgLoaders/InMemory/CppErrMsgs_EN_US.hpp,v
  retrieving revision 1.12
  retrieving revision 1.13
  diff -u -r1.12 -r1.13
  --- CppErrMsgs_EN_US.hpp	2000/04/07 01:01:57	1.12
  +++ CppErrMsgs_EN_US.hpp	2001/02/15 16:46:38	1.13
  @@ -134,10 +134,32 @@
     , { 0x0041,0x0020,0x0073,0x0079,0x0073,0x0074,0x0065,0x006D,0x0020,0x0065,0x0078,0x0063,0x0065,0x0070,0x0074,0x0069,0x006F,0x006E,0x0020,0x006F,0x0063,0x0063,0x0075,0x0072,0x0065,0x0064,0x0020,0x0064,0x0075,0x0072,0x0069,0x006E,0x0067,0x0020,0x0070,0x0072,0x006F,0x0063,0x0065,0x0073,0x0073,0x0069,0x006E,0x0067,0x00 }
     , { 0x0041,0x006E,0x0020,0x0065,0x0078,0x0063,0x0065,0x0070,0x0074,0x0069,0x006F,0x006E,0x0020,0x006F,0x0063,0x0063,0x0075,0x0072,0x0065,0x0064,0x0021,0x0020,0x0054,0x0079,0x0070,0x0065,0x003A,0x007B,0x0030,0x007D,0x002C,0x0020,0x004D,0x0065,0x0073,0x0073,0x0061,0x0067,0x0065,0x003A,0x007B,0x0031,0x007D,0x00 }
     , { 0x0055,0x006E,0x0065,0x0078,0x0070,0x0065,0x0063,0x0074,0x0065,0x0064,0x0020,0x0065,0x006E,0x0064,0x0020,0x006F,0x0066,0x0020,0x0066,0x0069,0x006C,0x0065,0x0020,0x0065,0x0078,0x0063,0x0065,0x0070,0x0074,0x0069,0x006F,0x006E,0x002E,0x0020,0x004D,0x0065,0x0073,0x0073,0x0061,0x0067,0x0065,0x003A,0x0020,0x007B,0x0030,0x007D,0x00 }
  +  , { 0x004E,0x006F,0x0020,0x0076,0x0061,0x006C,0x0069,0x0064,0x0061,0x0074,0x006F,0x0072,0x0020,0x0066,0x006F,0x0072,0x0020,0x0064,0x0061,0x0074,0x0061,0x0074,0x0079,0x0070,0x0065,0x0020,0x007B,0x0030,0x007D,0x00 }
  +  , { 0x0049,0x006E,0x0063,0x006F,0x0072,0x0072,0x0065,0x0063,0x0074,0x0020,0x0064,0x0061,0x0074,0x0061,0x0074,0x0079,0x0070,0x0065,0x003A,0x0020,0x007B,0x0030,0x007D,0x00 }
  +  , { 0x007B,0x0030,0x007D,0x0020,0x0069,0x0073,0x0020,0x006E,0x006F,0x0074,0x0020,0x0061,0x0020,0x0064,0x0061,0x0074,0x0061,0x0074,0x0079,0x0070,0x0065,0x002E,0x00 }
  +  , { 0x0054,0x0068,0x0065,0x0020,0x0063,0x006F,0x006E,0x0074,0x0065,0x006E,0x0074,0x0020,0x0061,0x0074,0x0074,0x0072,0x0069,0x0062,0x0075,0x0074,0x0065,0x0020,0x006D,0x0075,0x0073,0x0074,0x0020,0x0062,0x0065,0x0020,0x0027,0x0074,0x0065,0x0078,0x0074,0x004F,0x006E,0x006C,0x0079,0x0027,0x0020,0x0069,0x0066,0x0020,0x0079,0x006F,0x0075,0x0020,0x0073,0x0070,0x0065,0x0063,0x0069,0x0066,0x0079,0x0020,0x0061,0x0020,0x0074,0x0079,0x0070,0x0065,0x0020,0x0061,0x0074,0x0074,0x0072,0x0069,0x0062,0x0075,0x0074,0x0065,0x002E,0x00 }
  +  , { 0x007B,0x0030,0x007D,0x0020,0x0069,0x0073,0x0020,0x0075,0x006E,0x0073,0x0075,0x0070,0x0070,0x006F,0x0072,0x0074,0x0065,0x0064,0x00 }
  +  , { 0x004E,0x0065,0x0073,0x0074,0x0065,0x0064,0x0020,0x0045,0x006C,0x0065,0x006D,0x0065,0x006E,0x0074,0x0020,0x0064,0x0065,0x0063,0x006C,0x0073,0x0020,0x006F,0x006E,0x006C,0x0079,0x0020,0x0061,0x006C,0x006C,0x006F,0x0077,0x0065,0x0064,0x0020,0x0069,0x006E,0x0020,0x0065,0x006C,0x0065,0x006D,0x0065,0x006E,0x0074,0x004F,0x006E,0x006C,0x0079,0x0020,0x0063,0x006F,0x006E,0x0074,0x0065,0x006E,0x0074,0x00 }
  +  , { 0x0045,0x006C,0x0065,0x006D,0x0065,0x006E,0x0074,0x0020,0x0072,0x0065,0x0066,0x0065,0x0072,0x0065,0x006E,0x0063,0x0065,0x0073,0x0020,0x006F,0x006E,0x006C,0x0079,0x0020,0x0061,0x006C,0x006C,0x006F,0x0077,0x0065,0x0064,0x0020,0x0069,0x006E,0x0020,0x006D,0x0069,0x0078,0x0065,0x0064,0x0020,0x006F,0x0072,0x0020,0x0065,0x006C,0x0065,0x006D,0x0065,0x006E,0x0074,0x004F,0x006E,0x006C,0x0079,0x0020,0x0063,0x006F,0x006E,0x0074,0x0065,0x006E,0x0074,0x00 }
  +  , { 0x007B,0x0030,0x007D,0x0020,0x006F,0x006E,0x006C,0x0079,0x0020,0x0061,0x006C,0x006C,0x006F,0x0077,0x0065,0x0064,0x0020,0x0069,0x006E,0x0020,0x0065,0x006C,0x0065,0x006D,0x0065,0x006E,0x0074,0x004F,0x006E,0x006C,0x0079,0x0020,0x0063,0x006F,0x006E,0x0074,0x0065,0x006E,0x0074,0x002E,0x00 }
  +  , { 0x007B,0x0030,0x007D,0x0020,0x006E,0x006F,0x0074,0x0020,0x0061,0x006C,0x006C,0x006F,0x0077,0x0065,0x0064,0x0020,0x0069,0x0066,0x0020,0x0074,0x0068,0x0065,0x0020,0x006F,0x0072,0x0064,0x0065,0x0072,0x0020,0x0069,0x0073,0x0020,0x0061,0x006C,0x006C,0x002E,0x00 }
  +  , { 0x0044,0x0061,0x0074,0x0061,0x0074,0x0079,0x0070,0x0065,0x0020,0x0071,0x0075,0x0061,0x006C,0x0069,0x0066,0x0069,0x0065,0x0072,0x0073,0x0020,0x0063,0x0061,0x006E,0x0020,0x006F,0x006E,0x006C,0x0079,0x0020,0x0062,0x0065,0x0020,0x0075,0x0073,0x0065,0x0064,0x0020,0x0069,0x0066,0x0020,0x0079,0x006F,0x0075,0x0020,0x0073,0x0070,0x0065,0x0063,0x0069,0x0066,0x0079,0x0020,0x0061,0x0020,0x0074,0x0079,0x0070,0x0065,0x0020,0x0061,0x0074,0x0074,0x0072,0x0069,0x0062,0x0075,0x0074,0x0065,0x002E,0x00 }
  +  , { 0x0054,0x0068,0x0065,0x0020,0x0064,0x0061,0x0074,0x0061,0x0074,0x0079,0x0070,0x0065,0x0020,0x0071,0x0075,0x0061,0x006C,0x0069,0x0066,0x0069,0x0065,0x0072,0x0020,0x007B,0x0030,0x007D,0x0020,0x0069,0x0073,0x0020,0x006E,0x006F,0x0074,0x0020,0x0073,0x0075,0x0070,0x0070,0x006F,0x0072,0x0074,0x0065,0x0064,0x002E,0x00 }
  +  , { 0x0045,0x0072,0x0072,0x006F,0x0072,0x003A,0x0020,0x007B,0x0030,0x007D,0x0020,0x0063,0x006F,0x006E,0x0074,0x0065,0x006E,0x0074,0x0020,0x006D,0x0075,0x0073,0x0074,0x0020,0x0062,0x0065,0x0020,0x006F,0x006E,0x0065,0x0020,0x006F,0x0066,0x0020,0x0065,0x006C,0x0065,0x006D,0x0065,0x006E,0x0074,0x002C,0x0020,0x0067,0x0072,0x006F,0x0075,0x0070,0x002C,0x0020,0x006D,0x006F,0x0064,0x0065,0x006C,0x0047,0x0072,0x006F,0x0075,0x0070,0x0052,0x0065,0x0066,0x002E,0x0020,0x0053,0x0061,0x0077,0x0020,0x007B,0x0031,0x007D,0x00 }
  +  , { 0x0055,0x006E,0x006B,0x006E,0x006F,0x0077,0x006E,0x0020,0x0062,0x0061,0x0073,0x0065,0x0020,0x0074,0x0079,0x0070,0x0065,0x0020,0x007B,0x0030,0x007D,0x0020,0x0066,0x006F,0x0072,0x0020,0x0074,0x0079,0x0070,0x0065,0x0020,0x007B,0x0031,0x007D,0x002E,0x00 }
  +  , { 0x0043,0x0061,0x006E,0x0020,0x006F,0x006E,0x006C,0x0079,0x0020,0x0068,0x0061,0x0076,0x0065,0x0020,0x006F,0x006E,0x0065,0x0020,0x006F,0x0066,0x0020,0x0074,0x0079,0x0070,0x0065,0x0020,0x0061,0x006E,0x0064,0x0020,0x0072,0x0065,0x0066,0x0020,0x0061,0x0074,0x0074,0x0072,0x0069,0x0062,0x0075,0x0074,0x0065,0x0073,0x002E,0x00 }
  +  , { 0x0043,0x0061,0x006E,0x006E,0x006F,0x0074,0x0020,0x0068,0x0061,0x0076,0x0065,0x0020,0x0063,0x0068,0x0069,0x006C,0x0064,0x0020,0x0063,0x006F,0x006E,0x0074,0x0065,0x006E,0x0074,0x0020,0x0066,0x006F,0x0072,0x0020,0x0061,0x006E,0x0020,0x0065,0x006C,0x0065,0x006D,0x0065,0x006E,0x0074,0x0020,0x0064,0x0065,0x0063,0x006C,0x0061,0x0072,0x0061,0x0074,0x0069,0x006F,0x006E,0x0020,0x0074,0x0068,0x0061,0x0074,0x0020,0x0068,0x0061,0x0073,0x0020,0x0061,0x0020,0x0072,0x0065,0x0066,0x0020,0x0061,0x0074,0x0074,0x0072,0x0069,0x0062,0x0075,0x0074,0x0065,0x00 }
  +  , { 0x0049,0x006E,0x0063,0x006F,0x0072,0x0072,0x0065,0x0063,0x0074,0x0020,0x0074,0x0079,0x0070,0x0065,0x0020,0x0066,0x006F,0x0072,0x0020,0x007B,0x0030,0x007D,0x0027,0x0073,0x0020,0x0064,0x0065,0x0066,0x0061,0x0075,0x006C,0x0074,0x0020,0x0076,0x0061,0x006C,0x0075,0x0065,0x003A,0x0020,0x007B,0x0031,0x007D,0x00 }
  +  , { 0x0049,0x006C,0x006C,0x0065,0x0067,0x0061,0x006C,0x0020,0x0063,0x006F,0x006E,0x0074,0x0065,0x006E,0x0074,0x0020,0x007B,0x0030,0x007D,0x0020,0x0069,0x006E,0x0020,0x0061,0x0074,0x0074,0x0072,0x0069,0x0062,0x0075,0x0074,0x0065,0x0020,0x0067,0x0072,0x006F,0x0075,0x0070,0x00 }
  +  , { 0x0056,0x0061,0x006C,0x0075,0x0065,0x0020,0x006F,0x0066,0x0020,0x007B,0x0030,0x007D,0x0020,0x0069,0x0073,0x0020,0x006E,0x006F,0x0074,0x0020,0x0061,0x006E,0x0020,0x0069,0x006E,0x0074,0x0065,0x0067,0x0065,0x0072,0x002E,0x00 }
  +  , { 0x0044,0x0061,0x0074,0x0061,0x0074,0x0079,0x0070,0x0065,0x0020,0x0065,0x0072,0x0072,0x006F,0x0072,0x003A,0x0020,0x007B,0x0030,0x007D,0x002E,0x00 }
  +  , { 0x0054,0x0068,0x0065,0x0020,0x0074,0x0079,0x0070,0x0065,0x0020,0x006F,0x0066,0x0020,0x0074,0x0068,0x0065,0x0020,0x0065,0x006C,0x0065,0x006D,0x0065,0x006E,0x0074,0x0020,0x0068,0x0061,0x0073,0x0020,0x0061,0x006C,0x0072,0x0065,0x0061,0x0064,0x0079,0x0020,0x0062,0x0065,0x0065,0x006E,0x0020,0x0064,0x0065,0x0063,0x006C,0x0061,0x0072,0x0065,0x0064,0x002E,0x00 }
  +  , { 0x0053,0x0063,0x0068,0x0065,0x006D,0x0061,0x0020,0x0065,0x0072,0x0072,0x006F,0x0072,0x003A,0x0020,0x007B,0x0030,0x007D,0x002E,0x00 }
  +  , { 0x0055,0x006E,0x0065,0x0078,0x0070,0x0065,0x0063,0x0074,0x0065,0x0064,0x0045,0x0072,0x0072,0x006F,0x0072,0x00 }
     , { 0x0045,0x005F,0x0045,0x006E,0x0064,0x00 }
   
   };
  -const unsigned int gXMLErrArraySize = 133;
  +const unsigned int gXMLErrArraySize = 155;
   
   const XMLCh gXMLValidityArray[][128] = 
   {
  @@ -167,10 +189,27 @@
     , { 0x0041,0x0074,0x0074,0x0072,0x0069,0x0062,0x0075,0x0074,0x0065,0x0020,0x0027,0x007B,0x0030,0x007D,0x0027,0x0020,0x0064,0x006F,0x0065,0x0073,0x0020,0x006E,0x006F,0x0074,0x0020,0x0073,0x0075,0x0070,0x0070,0x006F,0x0072,0x0074,0x0020,0x006D,0x0075,0x006C,0x0074,0x0069,0x0070,0x006C,0x0065,0x0020,0x0076,0x0061,0x006C,0x0075,0x0065,0x0073,0x00 }
     , { 0x0041,0x0074,0x0074,0x0072,0x0069,0x0062,0x0075,0x0074,0x0065,0x0020,0x0027,0x007B,0x0030,0x007D,0x0027,0x0020,0x0068,0x0061,0x0073,0x0020,0x0061,0x0020,0x0076,0x0061,0x006C,0x0075,0x0065,0x002C,0x0020,0x0027,0x007B,0x0031,0x007D,0x0027,0x002C,0x0020,0x0074,0x0068,0x0061,0x0074,0x0020,0x0064,0x006F,0x0065,0x0073,0x0020,0x006E,0x006F,0x0074,0x0020,0x006D,0x0061,0x0074,0x0063,0x0068,0x0020,0x0069,0x0074,0x0073,0x0020,0x0023,0x0046,0x0049,0x0058,0x0045,0x0044,0x0020,0x0076,0x0061,0x006C,0x0075,0x0065,0x002C,0x0020,0x0027,0x007B,0x0032,0x007D,0x0027,0x00 }
     , { 0x0045,0x006C,0x0065,0x006D,0x0065,0x006E,0x0074,0x0020,0x0074,0x0079,0x0070,0x0065,0x0073,0x0020,0x0063,0x0061,0x006E,0x006E,0x006F,0x0074,0x0020,0x0062,0x0065,0x0020,0x0064,0x0075,0x0070,0x006C,0x0069,0x0063,0x0061,0x0074,0x0065,0x0064,0x0020,0x0069,0x006E,0x0020,0x004D,0x0069,0x0078,0x0065,0x0064,0x0020,0x0063,0x006F,0x006E,0x0074,0x0065,0x006E,0x0074,0x0020,0x006D,0x006F,0x0064,0x0065,0x006C,0x0073,0x00 }
  +  , { 0x007B,0x0030,0x007D,0x0020,0x0069,0x0073,0x0020,0x006E,0x006F,0x0074,0x0020,0x0061,0x0020,0x0062,0x006F,0x006F,0x006C,0x0065,0x0061,0x006E,0x002E,0x00 }
  +  , { 0x007B,0x0030,0x007D,0x0020,0x0069,0x0073,0x0020,0x006E,0x006F,0x0074,0x0020,0x0061,0x0020,0x0064,0x0065,0x0063,0x0069,0x006D,0x0061,0x006C,0x002E,0x00 }
  +  , { 0x0046,0x0061,0x0063,0x0065,0x0074,0x0073,0x0020,0x0061,0x0072,0x0065,0x0020,0x0069,0x006E,0x0063,0x006F,0x006E,0x0073,0x0069,0x0073,0x0074,0x0065,0x006E,0x0074,0x0020,0x0077,0x0069,0x0074,0x0068,0x0020,0x0062,0x0061,0x0073,0x0065,0x0020,0x0074,0x0079,0x0070,0x0065,0x002E,0x00 }
  +  , { 0x0049,0x006C,0x006C,0x0065,0x0067,0x0061,0x006C,0x0020,0x0076,0x0061,0x006C,0x0075,0x0065,0x0020,0x007B,0x0030,0x007D,0x0020,0x0066,0x006F,0x0072,0x0020,0x0066,0x0061,0x0063,0x0065,0x0074,0x0020,0x007B,0x0031,0x007D,0x002E,0x00 }
  +  , { 0x0049,0x006C,0x006C,0x0065,0x0067,0x0061,0x006C,0x0020,0x0046,0x0061,0x0063,0x0065,0x0074,0x0020,0x0066,0x006F,0x0072,0x0020,0x0064,0x0065,0x0063,0x0069,0x006D,0x0061,0x006C,0x0020,0x0074,0x0079,0x0070,0x0065,0x002E,0x00 }
  +  , { 0x0055,0x006E,0x006B,0x006E,0x006F,0x0077,0x006E,0x0020,0x0046,0x0061,0x0063,0x0065,0x0074,0x003A,0x0020,0x007B,0x0030,0x007D,0x002E,0x00 }
  +  , { 0x0049,0x006E,0x0076,0x0061,0x006C,0x0069,0x0064,0x0020,0x0076,0x0061,0x006C,0x0075,0x0065,0x0020,0x0066,0x006F,0x0072,0x0020,0x0045,0x006E,0x0075,0x006D,0x0020,0x0063,0x006F,0x006E,0x0073,0x0074,0x0061,0x006E,0x0074,0x003A,0x0020,0x007B,0x0030,0x007D,0x002E,0x00 }
  +  , { 0x007B,0x0030,0x007D,0x0020,0x0069,0x0073,0x0020,0x006F,0x0075,0x0074,0x0020,0x006F,0x0066,0x0020,0x0062,0x006F,0x0075,0x006E,0x0064,0x0073,0x003A,0x005B,0x0020,0x007B,0x0031,0x007D,0x0020,0x007B,0x0033,0x007D,0x0020,0x0058,0x0020,0x0020,0x007B,0x0034,0x007D,0x0020,0x007B,0x0032,0x007D,0x0020,0x005D,0x002E,0x00 }
  +  , { 0x007B,0x0030,0x007D,0x0020,0x0069,0x0073,0x0020,0x006E,0x006F,0x0074,0x0020,0x006F,0x006E,0x0065,0x0020,0x006F,0x0066,0x0020,0x0074,0x0068,0x0065,0x0020,0x0073,0x0070,0x0065,0x0063,0x0069,0x0066,0x0069,0x0065,0x0064,0x0020,0x0065,0x006E,0x0075,0x006D,0x0020,0x0076,0x0061,0x006C,0x0075,0x0065,0x0073,0x002E,0x00 }
  +  , { 0x007B,0x0030,0x007D,0x0020,0x0069,0x0073,0x0020,0x006E,0x006F,0x0074,0x0020,0x0061,0x006E,0x0020,0x0069,0x006E,0x0074,0x0065,0x0067,0x0065,0x0072,0x002E,0x00 }
  +  , { 0x0049,0x006C,0x006C,0x0065,0x0067,0x0061,0x006C,0x0020,0x0046,0x0061,0x0063,0x0065,0x0074,0x0020,0x0066,0x006F,0x0072,0x0020,0x0049,0x006E,0x0074,0x0065,0x0067,0x0065,0x0072,0x0020,0x0074,0x0079,0x0070,0x0065,0x002E,0x00 }
  +  , { 0x007B,0x0030,0x007D,0x0020,0x0069,0x0073,0x0020,0x006E,0x006F,0x0074,0x0020,0x0061,0x0020,0x0064,0x006F,0x0075,0x0062,0x006C,0x0065,0x002E,0x00 }
  +  , { 0x0049,0x006C,0x006C,0x0065,0x0067,0x0061,0x006C,0x0020,0x0046,0x0061,0x0063,0x0065,0x0074,0x0020,0x0066,0x006F,0x0072,0x0020,0x0052,0x0065,0x0061,0x006C,0x0020,0x0074,0x0079,0x0070,0x0065,0x002E,0x00 }
  +  , { 0x0053,0x0063,0x0061,0x006C,0x0065,0x0020,0x0046,0x0061,0x0063,0x0065,0x0074,0x0020,0x006D,0x0075,0x0073,0x0074,0x0020,0x0062,0x0065,0x0020,0x006C,0x0065,0x0073,0x0073,0x0020,0x0074,0x0068,0x0061,0x006E,0x0020,0x006F,0x0072,0x0020,0x0065,0x0071,0x0075,0x0061,0x006C,0x0020,0x0074,0x006F,0x0020,0x0050,0x0072,0x0065,0x0063,0x0069,0x0073,0x0069,0x006F,0x006E,0x0020,0x0046,0x0061,0x0063,0x0065,0x0074,0x00 }
  +  , { 0x007B,0x0030,0x007D,0x0020,0x0068,0x0061,0x0073,0x0020,0x0065,0x0078,0x0063,0x0065,0x0065,0x0064,0x0065,0x0064,0x0020,0x0074,0x0068,0x0065,0x0020,0x0070,0x0072,0x0065,0x0063,0x0069,0x0073,0x0069,0x006F,0x006E,0x0020,0x0046,0x0061,0x0063,0x0065,0x0074,0x0020,0x007B,0x0031,0x007D,0x00 }
  +  , { 0x007B,0x0030,0x007D,0x0020,0x0068,0x0061,0x0073,0x0020,0x0065,0x0078,0x0065,0x0063,0x0065,0x0065,0x0064,0x0020,0x0074,0x0068,0x0065,0x0020,0x0073,0x0063,0x0061,0x006C,0x0065,0x0020,0x0046,0x0061,0x0063,0x0065,0x0074,0x0020,0x007B,0x0031,0x007D,0x00 }
  +  , { 0x007B,0x0030,0x007D,0x0020,0x0069,0x0073,0x0020,0x006E,0x006F,0x0074,0x0020,0x0061,0x0020,0x0066,0x006C,0x006F,0x0061,0x0074,0x002E,0x00 }
     , { 0x0056,0x005F,0x0045,0x006E,0x0064,0x00 }
   
   };
  -const unsigned int gXMLValidityArraySize = 32;
  +const unsigned int gXMLValidityArraySize = 49;
   
   const XMLCh gXMLExceptArray[][128] = 
   {
  
  
  
  1.16      +39 -0     xml-xerces/c/src/util/MsgLoaders/MsgCatalog/XMLMsgCat_EN_US.Msg
  
  Index: XMLMsgCat_EN_US.Msg
  ===================================================================
  RCS file: /home/cvs/xml-xerces/c/src/util/MsgLoaders/MsgCatalog/XMLMsgCat_EN_US.Msg,v
  retrieving revision 1.15
  retrieving revision 1.16
  diff -u -r1.15 -r1.16
  --- XMLMsgCat_EN_US.Msg	2000/04/07 23:26:29	1.15
  +++ XMLMsgCat_EN_US.Msg	2001/02/15 16:46:40	1.16
  @@ -126,6 +126,28 @@
   127  A system exception occured during processing
   128  An exception occured! Type:{0}, Message:{1}
   129  Unexpected end of file exception. Message: {0}
  +130  No validator for datatype {0}
  +131  Incorrect datatype: {0}
  +132  {0} is not a datatype.
  +133  The content attribute must be 'textOnly' if you specify a type attribute.
  +134  {0} is unsupported
  +135  Nested Element decls only allowed in elementOnly content
  +136  Element references only allowed in mixed or elementOnly content
  +137  {0} only allowed in elementOnly content.
  +138  {0} not allowed if the order is all.
  +139  Datatype qualifiers can only be used if you specify a type attribute.
  +140  The datatype qualifier {0} is not supported.
  +141  Error: {0} content must be one of element, group, modelGroupRef. Saw {1}
  +142  Unknown base type {0} for type {1}.
  +143  Can only have one of type and ref attributes.
  +144  Cannot have child content for an element declaration that has a ref attribute
  +145  Incorrect type for {0}'s default value: {1}
  +146  Illegal content {0} in attribute group
  +147  Value of {0} is not an integer.
  +148  Datatype error: {0}.
  +149  The type of the element has already been declared.
  +150  Schema error: {0}.
  +151  UnexpectedError
   
   
   $set 2
  @@ -154,6 +176,23 @@
    24  Attribute '{0}' does not support multiple values
    25  Attribute '{0}' has a value, '{1}', that does not match its #FIXED value, '{2}'
    26  Element types cannot be duplicated in Mixed content models
  + 27  {0} is not a boolean.
  + 28  {0} is not a decimal.
  + 29  Facets are inconsistent with base type.
  + 30  Illegal value {0} for facet {1}.
  + 31  Illegal Facet for decimal type.
  + 32  Unknown Facet: {0}.
  + 33  Invalid value for Enum constant: {0}.
  + 34  {0} is out of bounds:[ {1} {3} X  {4} {2} ].
  + 35  {0} is not one of the specified enum values.
  + 36  {0} is not an integer.
  + 37  Illegal Facet for Integer type.
  + 38  {0} is not a double.
  + 39  Illegal Facet for Real type.
  + 40  Scale Facet must be less than or equal to Precision Facet
  + 41  {0} has exceeded the precision Facet {1}
  + 42  {0} has execeed the scale Facet {1}
  + 43  {0} is not a float.
   
   
   $set 3
  
  
  
  1.19      +39 -0     xml-xerces/c/src/util/Platforms/Win32/Version.rc
  
  Index: Version.rc
  ===================================================================
  RCS file: /home/cvs/xml-xerces/c/src/util/Platforms/Win32/Version.rc,v
  retrieving revision 1.18
  retrieving revision 1.19
  diff -u -r1.18 -r1.19
  --- Version.rc	2001/01/19 16:41:46	1.18
  +++ Version.rc	2001/02/15 16:46:42	1.19
  @@ -231,6 +231,28 @@
       127               L"\x0041\x0020\x0073\x0079\x0073\x0074\x0065\x006D\x0020\x0065\x0078\x0063\x0065\x0070\x0074\x0069\x006F\x006E\x0020\x006F\x0063\x0063\x0075\x0072\x0065\x0064\x0020\x0064\x0075\x0072\x0069\x006E\x0067\x0020\x0070\x0072\x006F\x0063\x0065\x0073\x0073\x0069\x006E\x0067\x00"
       128               L"\x0041\x006E\x0020\x0065\x0078\x0063\x0065\x0070\x0074\x0069\x006F\x006E\x0020\x006F\x0063\x0063\x0075\x0072\x0065\x0064\x0021\x0020\x0054\x0079\x0070\x0065\x003A\x007B\x0030\x007D\x002C\x0020\x004D\x0065\x0073\x0073\x0061\x0067\x0065\x003A\x007B\x0031\x007D\x00"
       129               L"\x0055\x006E\x0065\x0078\x0070\x0065\x0063\x0074\x0065\x0064\x0020\x0065\x006E\x0064\x0020\x006F\x0066\x0020\x0066\x0069\x006C\x0065\x0020\x0065\x0078\x0063\x0065\x0070\x0074\x0069\x006F\x006E\x002E\x0020\x004D\x0065\x0073\x0073\x0061\x0067\x0065\x003A\x0020\x007B\x0030\x007D\x00"
  +    130               L"\x004E\x006F\x0020\x0076\x0061\x006C\x0069\x0064\x0061\x0074\x006F\x0072\x0020\x0066\x006F\x0072\x0020\x0064\x0061\x0074\x0061\x0074\x0079\x0070\x0065\x0020\x007B\x0030\x007D\x00"
  +    131               L"\x0049\x006E\x0063\x006F\x0072\x0072\x0065\x0063\x0074\x0020\x0064\x0061\x0074\x0061\x0074\x0079\x0070\x0065\x003A\x0020\x007B\x0030\x007D\x00"
  +    132               L"\x007B\x0030\x007D\x0020\x0069\x0073\x0020\x006E\x006F\x0074\x0020\x0061\x0020\x0064\x0061\x0074\x0061\x0074\x0079\x0070\x0065\x002E\x00"
  +    133               L"\x0054\x0068\x0065\x0020\x0063\x006F\x006E\x0074\x0065\x006E\x0074\x0020\x0061\x0074\x0074\x0072\x0069\x0062\x0075\x0074\x0065\x0020\x006D\x0075\x0073\x0074\x0020\x0062\x0065\x0020\x0027\x0074\x0065\x0078\x0074\x004F\x006E\x006C\x0079\x0027\x0020\x0069\x0066\x0020\x0079\x006F\x0075\x0020\x0073\x0070\x0065\x0063\x0069\x0066\x0079\x0020\x0061\x0020\x0074\x0079\x0070\x0065\x0020\x0061\x0074\x0074\x0072\x0069\x0062\x0075\x0074\x0065\x002E\x00"
  +    134               L"\x007B\x0030\x007D\x0020\x0069\x0073\x0020\x0075\x006E\x0073\x0075\x0070\x0070\x006F\x0072\x0074\x0065\x0064\x00"
  +    135               L"\x004E\x0065\x0073\x0074\x0065\x0064\x0020\x0045\x006C\x0065\x006D\x0065\x006E\x0074\x0020\x0064\x0065\x0063\x006C\x0073\x0020\x006F\x006E\x006C\x0079\x0020\x0061\x006C\x006C\x006F\x0077\x0065\x0064\x0020\x0069\x006E\x0020\x0065\x006C\x0065\x006D\x0065\x006E\x0074\x004F\x006E\x006C\x0079\x0020\x0063\x006F\x006E\x0074\x0065\x006E\x0074\x00"
  +    136               L"\x0045\x006C\x0065\x006D\x0065\x006E\x0074\x0020\x0072\x0065\x0066\x0065\x0072\x0065\x006E\x0063\x0065\x0073\x0020\x006F\x006E\x006C\x0079\x0020\x0061\x006C\x006C\x006F\x0077\x0065\x0064\x0020\x0069\x006E\x0020\x006D\x0069\x0078\x0065\x0064\x0020\x006F\x0072\x0020\x0065\x006C\x0065\x006D\x0065\x006E\x0074\x004F\x006E\x006C\x0079\x0020\x0063\x006F\x006E\x0074\x0065\x006E\x0074\x00"
  +    137               L"\x007B\x0030\x007D\x0020\x006F\x006E\x006C\x0079\x0020\x0061\x006C\x006C\x006F\x0077\x0065\x0064\x0020\x0069\x006E\x0020\x0065\x006C\x0065\x006D\x0065\x006E\x0074\x004F\x006E\x006C\x0079\x0020\x0063\x006F\x006E\x0074\x0065\x006E\x0074\x002E\x00"
  +    138               L"\x007B\x0030\x007D\x0020\x006E\x006F\x0074\x0020\x0061\x006C\x006C\x006F\x0077\x0065\x0064\x0020\x0069\x0066\x0020\x0074\x0068\x0065\x0020\x006F\x0072\x0064\x0065\x0072\x0020\x0069\x0073\x0020\x0061\x006C\x006C\x002E\x00"
  +    139               L"\x0044\x0061\x0074\x0061\x0074\x0079\x0070\x0065\x0020\x0071\x0075\x0061\x006C\x0069\x0066\x0069\x0065\x0072\x0073\x0020\x0063\x0061\x006E\x0020\x006F\x006E\x006C\x0079\x0020\x0062\x0065\x0020\x0075\x0073\x0065\x0064\x0020\x0069\x0066\x0020\x0079\x006F\x0075\x0020\x0073\x0070\x0065\x0063\x0069\x0066\x0079\x0020\x0061\x0020\x0074\x0079\x0070\x0065\x0020\x0061\x0074\x0074\x0072\x0069\x0062\x0075\x0074\x0065\x002E\x00"
  +    140               L"\x0054\x0068\x0065\x0020\x0064\x0061\x0074\x0061\x0074\x0079\x0070\x0065\x0020\x0071\x0075\x0061\x006C\x0069\x0066\x0069\x0065\x0072\x0020\x007B\x0030\x007D\x0020\x0069\x0073\x0020\x006E\x006F\x0074\x0020\x0073\x0075\x0070\x0070\x006F\x0072\x0074\x0065\x0064\x002E\x00"
  +    141               L"\x0045\x0072\x0072\x006F\x0072\x003A\x0020\x007B\x0030\x007D\x0020\x0063\x006F\x006E\x0074\x0065\x006E\x0074\x0020\x006D\x0075\x0073\x0074\x0020\x0062\x0065\x0020\x006F\x006E\x0065\x0020\x006F\x0066\x0020\x0065\x006C\x0065\x006D\x0065\x006E\x0074\x002C\x0020\x0067\x0072\x006F\x0075\x0070\x002C\x0020\x006D\x006F\x0064\x0065\x006C\x0047\x0072\x006F\x0075\x0070\x0052\x0065\x0066\x002E\x0020\x0053\x0061\x0077\x0020\x007B\x0031\x007D\x00"
  +    142               L"\x0055\x006E\x006B\x006E\x006F\x0077\x006E\x0020\x0062\x0061\x0073\x0065\x0020\x0074\x0079\x0070\x0065\x0020\x007B\x0030\x007D\x0020\x0066\x006F\x0072\x0020\x0074\x0079\x0070\x0065\x0020\x007B\x0031\x007D\x002E\x00"
  +    143               L"\x0043\x0061\x006E\x0020\x006F\x006E\x006C\x0079\x0020\x0068\x0061\x0076\x0065\x0020\x006F\x006E\x0065\x0020\x006F\x0066\x0020\x0074\x0079\x0070\x0065\x0020\x0061\x006E\x0064\x0020\x0072\x0065\x0066\x0020\x0061\x0074\x0074\x0072\x0069\x0062\x0075\x0074\x0065\x0073\x002E\x00"
  +    144               L"\x0043\x0061\x006E\x006E\x006F\x0074\x0020\x0068\x0061\x0076\x0065\x0020\x0063\x0068\x0069\x006C\x0064\x0020\x0063\x006F\x006E\x0074\x0065\x006E\x0074\x0020\x0066\x006F\x0072\x0020\x0061\x006E\x0020\x0065\x006C\x0065\x006D\x0065\x006E\x0074\x0020\x0064\x0065\x0063\x006C\x0061\x0072\x0061\x0074\x0069\x006F\x006E\x0020\x0074\x0068\x0061\x0074\x0020\x0068\x0061\x0073\x0020\x0061\x0020\x0072\x0065\x0066\x0020\x0061\x0074\x0074\x0072\x0069\x0062\x0075\x0074\x0065\x00"
  +    145               L"\x0049\x006E\x0063\x006F\x0072\x0072\x0065\x0063\x0074\x0020\x0074\x0079\x0070\x0065\x0020\x0066\x006F\x0072\x0020\x007B\x0030\x007D\x0027\x0073\x0020\x0064\x0065\x0066\x0061\x0075\x006C\x0074\x0020\x0076\x0061\x006C\x0075\x0065\x003A\x0020\x007B\x0031\x007D\x00"
  +    146               L"\x0049\x006C\x006C\x0065\x0067\x0061\x006C\x0020\x0063\x006F\x006E\x0074\x0065\x006E\x0074\x0020\x007B\x0030\x007D\x0020\x0069\x006E\x0020\x0061\x0074\x0074\x0072\x0069\x0062\x0075\x0074\x0065\x0020\x0067\x0072\x006F\x0075\x0070\x00"
  +    147               L"\x0056\x0061\x006C\x0075\x0065\x0020\x006F\x0066\x0020\x007B\x0030\x007D\x0020\x0069\x0073\x0020\x006E\x006F\x0074\x0020\x0061\x006E\x0020\x0069\x006E\x0074\x0065\x0067\x0065\x0072\x002E\x00"
  +    148               L"\x0044\x0061\x0074\x0061\x0074\x0079\x0070\x0065\x0020\x0065\x0072\x0072\x006F\x0072\x003A\x0020\x007B\x0030\x007D\x002E\x00"
  +    149               L"\x0054\x0068\x0065\x0020\x0074\x0079\x0070\x0065\x0020\x006F\x0066\x0020\x0074\x0068\x0065\x0020\x0065\x006C\x0065\x006D\x0065\x006E\x0074\x0020\x0068\x0061\x0073\x0020\x0061\x006C\x0072\x0065\x0061\x0064\x0079\x0020\x0062\x0065\x0065\x006E\x0020\x0064\x0065\x0063\x006C\x0061\x0072\x0065\x0064\x002E\x00"
  +    150               L"\x0053\x0063\x0068\x0065\x006D\x0061\x0020\x0065\x0072\x0072\x006F\x0072\x003A\x0020\x007B\x0030\x007D\x002E\x00"
  +    151               L"\x0055\x006E\x0065\x0078\x0070\x0065\x0063\x0074\x0065\x0064\x0045\x0072\x0072\x006F\x0072\x00"
   END
   STRINGTABLE DISCARDABLE
   BEGIN
  @@ -259,6 +281,23 @@
       16408             L"\x0041\x0074\x0074\x0072\x0069\x0062\x0075\x0074\x0065\x0020\x0027\x007B\x0030\x007D\x0027\x0020\x0064\x006F\x0065\x0073\x0020\x006E\x006F\x0074\x0020\x0073\x0075\x0070\x0070\x006F\x0072\x0074\x0020\x006D\x0075\x006C\x0074\x0069\x0070\x006C\x0065\x0020\x0076\x0061\x006C\x0075\x0065\x0073\x00"
       16409             L"\x0041\x0074\x0074\x0072\x0069\x0062\x0075\x0074\x0065\x0020\x0027\x007B\x0030\x007D\x0027\x0020\x0068\x0061\x0073\x0020\x0061\x0020\x0076\x0061\x006C\x0075\x0065\x002C\x0020\x0027\x007B\x0031\x007D\x0027\x002C\x0020\x0074\x0068\x0061\x0074\x0020\x0064\x006F\x0065\x0073\x0020\x006E\x006F\x0074\x0020\x006D\x0061\x0074\x0063\x0068\x0020\x0069\x0074\x0073\x0020\x0023\x0046\x0049\x0058\x0045\x0044\x0020\x0076\x0061\x006C\x0075\x0065\x002C\x0020\x0027\x007B\x0032\x007D\x0027\x00"
       16410             L"\x0045\x006C\x0065\x006D\x0065\x006E\x0074\x0020\x0074\x0079\x0070\x0065\x0073\x0020\x0063\x0061\x006E\x006E\x006F\x0074\x0020\x0062\x0065\x0020\x0064\x0075\x0070\x006C\x0069\x0063\x0061\x0074\x0065\x0064\x0020\x0069\x006E\x0020\x004D\x0069\x0078\x0065\x0064\x0020\x0063\x006F\x006E\x0074\x0065\x006E\x0074\x0020\x006D\x006F\x0064\x0065\x006C\x0073\x00"
  +    16411             L"\x007B\x0030\x007D\x0020\x0069\x0073\x0020\x006E\x006F\x0074\x0020\x0061\x0020\x0062\x006F\x006F\x006C\x0065\x0061\x006E\x002E\x00"
  +    16412             L"\x007B\x0030\x007D\x0020\x0069\x0073\x0020\x006E\x006F\x0074\x0020\x0061\x0020\x0064\x0065\x0063\x0069\x006D\x0061\x006C\x002E\x00"
  +    16413             L"\x0046\x0061\x0063\x0065\x0074\x0073\x0020\x0061\x0072\x0065\x0020\x0069\x006E\x0063\x006F\x006E\x0073\x0069\x0073\x0074\x0065\x006E\x0074\x0020\x0077\x0069\x0074\x0068\x0020\x0062\x0061\x0073\x0065\x0020\x0074\x0079\x0070\x0065\x002E\x00"
  +    16414             L"\x0049\x006C\x006C\x0065\x0067\x0061\x006C\x0020\x0076\x0061\x006C\x0075\x0065\x0020\x007B\x0030\x007D\x0020\x0066\x006F\x0072\x0020\x0066\x0061\x0063\x0065\x0074\x0020\x007B\x0031\x007D\x002E\x00"
  +    16415             L"\x0049\x006C\x006C\x0065\x0067\x0061\x006C\x0020\x0046\x0061\x0063\x0065\x0074\x0020\x0066\x006F\x0072\x0020\x0064\x0065\x0063\x0069\x006D\x0061\x006C\x0020\x0074\x0079\x0070\x0065\x002E\x00"
  +    16416             L"\x0055\x006E\x006B\x006E\x006F\x0077\x006E\x0020\x0046\x0061\x0063\x0065\x0074\x003A\x0020\x007B\x0030\x007D\x002E\x00"
  +    16417             L"\x0049\x006E\x0076\x0061\x006C\x0069\x0064\x0020\x0076\x0061\x006C\x0075\x0065\x0020\x0066\x006F\x0072\x0020\x0045\x006E\x0075\x006D\x0020\x0063\x006F\x006E\x0073\x0074\x0061\x006E\x0074\x003A\x0020\x007B\x0030\x007D\x002E\x00"
  +    16418             L"\x007B\x0030\x007D\x0020\x0069\x0073\x0020\x006F\x0075\x0074\x0020\x006F\x0066\x0020\x0062\x006F\x0075\x006E\x0064\x0073\x003A\x005B\x0020\x007B\x0031\x007D\x0020\x007B\x0033\x007D\x0020\x0058\x0020\x0020\x007B\x0034\x007D\x0020\x007B\x0032\x007D\x0020\x005D\x002E\x00"
  +    16419             L"\x007B\x0030\x007D\x0020\x0069\x0073\x0020\x006E\x006F\x0074\x0020\x006F\x006E\x0065\x0020\x006F\x0066\x0020\x0074\x0068\x0065\x0020\x0073\x0070\x0065\x0063\x0069\x0066\x0069\x0065\x0064\x0020\x0065\x006E\x0075\x006D\x0020\x0076\x0061\x006C\x0075\x0065\x0073\x002E\x00"
  +    16420             L"\x007B\x0030\x007D\x0020\x0069\x0073\x0020\x006E\x006F\x0074\x0020\x0061\x006E\x0020\x0069\x006E\x0074\x0065\x0067\x0065\x0072\x002E\x00"
  +    16421             L"\x0049\x006C\x006C\x0065\x0067\x0061\x006C\x0020\x0046\x0061\x0063\x0065\x0074\x0020\x0066\x006F\x0072\x0020\x0049\x006E\x0074\x0065\x0067\x0065\x0072\x0020\x0074\x0079\x0070\x0065\x002E\x00"
  +    16422             L"\x007B\x0030\x007D\x0020\x0069\x0073\x0020\x006E\x006F\x0074\x0020\x0061\x0020\x0064\x006F\x0075\x0062\x006C\x0065\x002E\x00"
  +    16423             L"\x0049\x006C\x006C\x0065\x0067\x0061\x006C\x0020\x0046\x0061\x0063\x0065\x0074\x0020\x0066\x006F\x0072\x0020\x0052\x0065\x0061\x006C\x0020\x0074\x0079\x0070\x0065\x002E\x00"
  +    16424             L"\x0053\x0063\x0061\x006C\x0065\x0020\x0046\x0061\x0063\x0065\x0074\x0020\x006D\x0075\x0073\x0074\x0020\x0062\x0065\x0020\x006C\x0065\x0073\x0073\x0020\x0074\x0068\x0061\x006E\x0020\x006F\x0072\x0020\x0065\x0071\x0075\x0061\x006C\x0020\x0074\x006F\x0020\x0050\x0072\x0065\x0063\x0069\x0073\x0069\x006F\x006E\x0020\x0046\x0061\x0063\x0065\x0074\x00"
  +    16425             L"\x007B\x0030\x007D\x0020\x0068\x0061\x0073\x0020\x0065\x0078\x0063\x0065\x0065\x0064\x0065\x0064\x0020\x0074\x0068\x0065\x0020\x0070\x0072\x0065\x0063\x0069\x0073\x0069\x006F\x006E\x0020\x0046\x0061\x0063\x0065\x0074\x0020\x007B\x0031\x007D\x00"
  +    16426             L"\x007B\x0030\x007D\x0020\x0068\x0061\x0073\x0020\x0065\x0078\x0065\x0063\x0065\x0065\x0064\x0020\x0074\x0068\x0065\x0020\x0073\x0063\x0061\x006C\x0065\x0020\x0046\x0061\x0063\x0065\x0074\x0020\x007B\x0031\x007D\x00"
  +    16427             L"\x007B\x0030\x007D\x0020\x0069\x0073\x0020\x006E\x006F\x0074\x0020\x0061\x0020\x0066\x006C\x006F\x0061\x0074\x002E\x00"
   END
   STRINGTABLE DISCARDABLE
   BEGIN