summaryrefslogtreecommitdiffstats
path: root/c++/src/H5Location.cpp
blob: a9d3e6dd544b213e9fa8774119d30092754c148b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
 * Copyright by The HDF Group.                                               *
 * Copyright by the Board of Trustees of the University of Illinois.         *
 * All rights reserved.                                                      *
 *                                                                           *
 * This file is part of HDF5.  The full HDF5 copyright notice, including     *
 * terms governing use, modification, and redistribution, is contained in    *
 * the files COPYING and Copyright.html.  COPYING can be found at the root   *
 * of the source code distribution tree; Copyright.html can be found at the  *
 * root level of an installed copy of the electronic HDF5 document set and   *
 * is linked from the top-level documents page.  It can also be found at     *
 * http://hdfgroup.org/HDF5/doc/Copyright.html.  If you do not have          *
 * access to either file, you may request a copy from help@hdfgroup.org.     *
 * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */

#include <string>

#include "H5Include.h"
#include "H5Exception.h"
#include "H5IdComponent.h"
#include "H5PropList.h"
#include "H5Location.h"
#include "H5Object.h"
#include "H5DcreatProp.h"
#include "H5DxferProp.h"
#include "H5FaccProp.h"
#include "H5FcreatProp.h"
#include "H5CommonFG.h"
#include "H5DataType.h"
#include "H5DataSpace.h"
#include "H5AbstractDs.h"
#include "H5File.h"
#include "H5DataSet.h"
#include "H5Attribute.h"
#include "H5private.h"		// for HDmemset

#ifndef H5_NO_NAMESPACE
namespace H5 {
#endif

#ifndef DOXYGEN_SHOULD_SKIP_THIS
// userAttrOpWrpr simply interfaces between the user's function and the
// C library function H5Aiterate2; used to resolve the different prototype
// problem.  May be moved to Iterator later.
extern "C" herr_t userAttrOpWrpr(hid_t loc_id, const char *attr_name,
    const H5A_info_t *ainfo, void *op_data)
{
   H5std_string s_attr_name = H5std_string( attr_name );
#ifdef NO_STATIC_CAST
   UserData4Aiterate* myData = (UserData4Aiterate *) op_data;
#else
   UserData4Aiterate* myData = static_cast <UserData4Aiterate *> (op_data);
#endif
   myData->op( *myData->location, s_attr_name, myData->opData );
   return 0;
}

//--------------------------------------------------------------------------
// Function:	H5Location default constructor (protected)
// Programmer	Binh-Minh Ribler - 2000
//--------------------------------------------------------------------------
H5Location::H5Location() : IdComponent() {}

//--------------------------------------------------------------------------
// Function:	H5Location overloaded constructor (protected)
// Purpose	Creates an H5Location object using the id of an existing HDF5
//		object.
// Parameters	object_id - IN: Id of an existing HDF5 object
// Programmer	Binh-Minh Ribler - 2000

// *** Deprecation warning ***
// This constructor is no longer appropriate because the data member "id" had
// been moved to the sub-classes.  It will be removed in 1.10 release.  If its
// removal does not raise any problems in 1.10, it will be removed from 1.8 in
// subsequent releases.
//--------------------------------------------------------------------------
H5Location::H5Location(const hid_t object_id) : IdComponent() {}

//--------------------------------------------------------------------------
// Function:	H5Location copy constructor
// Purpose:	This noop copy constructor is removed as a result of the data
//		member "id" being moved down to sub-classes. (Mar 2015)
///\param	original - IN: H5Location instance to copy
// Programmer	Binh-Minh Ribler - 2000
//
// *** Deprecation warning ***
// This constructor is no longer appropriate because the data member "id" had
// been moved to the sub-classes.  It is removed from 1.8.15 because it is
// a noop and it can be generated by the compiler if needed.
//--------------------------------------------------------------------------
// H5Location::H5Location(const H5Location& original) : IdComponent() {}

#endif // DOXYGEN_SHOULD_SKIP_THIS

//--------------------------------------------------------------------------
// Function:	H5Location::createAttribute
///\brief	Creates an attribute for a group, dataset, or named datatype.
///\param	name - IN: Name of the attribute
///\param	data_type - IN: Datatype for the attribute
///\param	data_space - IN: Dataspace for the attribute - only simple
///		dataspaces are allowed at this time
///\param	create_plist - IN: Creation property list - default to
///		PropList::DEFAULT
///\return	Attribute instance
///\exception	H5::AttributeIException
///\par Description
///		The attribute name specified in \a name must be unique.
///		Attempting to create an attribute with the same name as an
///		existing attribute will raise an exception, leaving the
///		pre-existing attribute intact. To overwrite an existing
///		attribute with a new attribute of the same name, first
///		delete the existing one with \c H5Location::removeAttr, then
///		recreate it with this function.
// Programmer	Binh-Minh Ribler - 2000
//--------------------------------------------------------------------------
Attribute H5Location::createAttribute( const char* name, const DataType& data_type, const DataSpace& data_space, const PropList& create_plist ) const
{
   hid_t type_id = data_type.getId();
   hid_t space_id = data_space.getId();
   hid_t plist_id = create_plist.getId();
   hid_t attr_id = H5Acreate2(getId(), name, type_id, space_id, plist_id, H5P_DEFAULT );

   // If the attribute id is valid, create and return the Attribute object
   if( attr_id > 0 )
   {
	Attribute attr;
	f_Attribute_setId(&attr, attr_id);
	return( attr );
   }
   else
      throw AttributeIException(inMemFunc("createAttribute"), "H5Acreate2 failed");
}

//--------------------------------------------------------------------------
// Function:	H5Location::createAttribute
///\brief	This is an overloaded member function, provided for convenience.
///		It differs from the above function in that it takes
///		a reference to an \c H5std_string for \a name.
// Programmer	Binh-Minh Ribler - 2000
//--------------------------------------------------------------------------
Attribute H5Location::createAttribute( const H5std_string& name, const DataType& data_type, const DataSpace& data_space, const PropList& create_plist ) const
{
   return( createAttribute( name.c_str(), data_type, data_space, create_plist ));
}

//--------------------------------------------------------------------------
// Function:	H5Location::openAttribute
///\brief	Opens an attribute given its name.
///\param	name - IN: Name of the attribute
///\return	Attribute instance
///\exception	H5::AttributeIException
// Programmer	Binh-Minh Ribler - 2000
//--------------------------------------------------------------------------
Attribute H5Location::openAttribute( const char* name ) const
{
   hid_t attr_id = H5Aopen(getId(), name, H5P_DEFAULT);
   if( attr_id > 0 )
   {
	Attribute attr;
	f_Attribute_setId(&attr, attr_id);
	return( attr );
   }
   else
   {
      throw AttributeIException(inMemFunc("openAttribute"), "H5Aopen failed");
   }
}

//--------------------------------------------------------------------------
// Function:	H5Location::openAttribute
///\brief	This is an overloaded member function, provided for convenience.
///		It differs from the above function in that it takes
///		a reference to an \c H5std_string for \a name.
// Programmer	Binh-Minh Ribler - 2000
//--------------------------------------------------------------------------
Attribute H5Location::openAttribute( const H5std_string& name ) const
{
   return( openAttribute( name.c_str()) );
}

//--------------------------------------------------------------------------
// Function:	H5Location::openAttribute
///\brief	Opens an attribute given its index.
///\param	idx - IN: Index of the attribute, a 0-based, non-negative integer
///\return	Attribute instance
///\exception	H5::AttributeIException
// Programmer	Binh-Minh Ribler - 2000
//--------------------------------------------------------------------------
Attribute H5Location::openAttribute( const unsigned int idx ) const
{
   hid_t attr_id = H5Aopen_by_idx(getId(), ".", H5_INDEX_CRT_ORDER,
			H5_ITER_INC, (hsize_t)idx, H5P_DEFAULT, H5P_DEFAULT);
   if( attr_id > 0 )
   {
	Attribute attr;
	f_Attribute_setId(&attr, attr_id);
	return(attr);
   }
   else
   {
	throw AttributeIException(inMemFunc("openAttribute"), "H5Aopen_by_idx failed");
   }
}

//--------------------------------------------------------------------------
// Function:	H5Location::iterateAttrs
///\brief	Iterates a user's function over all the attributes of an H5
///		object, which may be a group, dataset or named datatype.
///\param	user_op - IN: User's function to operate on each attribute
///\param	_idx - IN/OUT: Starting (IN) and ending (OUT) attribute indices
///\param	op_data - IN: User's data to pass to user's operator function
///\return	Returned value of the last operator if it was non-zero, or
///		zero if all attributes were processed
///\exception	H5::AttributeIException
///\par Description
///		The signature of user_op is
///		void (*)(H5::H5Location&, H5std_string, void*).
///		For information, please refer to the C layer Reference Manual
///		at:
/// http://www.hdfgroup.org/HDF5/doc/RM/RM_H5A.html#Annot-Iterate
// Programmer	Binh-Minh Ribler - 2000
//--------------------------------------------------------------------------
int H5Location::iterateAttrs( attr_operator_t user_op, unsigned *_idx, void *op_data )
{
   // store the user's function and data
   UserData4Aiterate* userData = new UserData4Aiterate;
   userData->opData = op_data;
   userData->op = user_op;
   userData->location = this;

   // call the C library routine H5Aiterate2 to iterate the attributes
   hsize_t idx = _idx ? (hsize_t)*_idx : 0;
   int ret_value = H5Aiterate2(getId(), H5_INDEX_NAME, H5_ITER_INC, &idx,
			userAttrOpWrpr, (void *) userData);

   // release memory
   delete userData;

   if( ret_value >= 0 ) {
      /* Pass back update index value to calling code */
      if (_idx)
	 *_idx = (unsigned)idx;

      return( ret_value );
   }
   else  // raise exception when H5Aiterate returns a negative value
      throw AttributeIException(inMemFunc("iterateAttrs"), "H5Aiterate2 failed");
}

//--------------------------------------------------------------------------
// Function:	H5Location::getNumAttrs
///\brief	Returns the number of attributes attached to this HDF5 object.
///\return	Number of attributes
///\exception	H5::AttributeIException
// Programmer	Binh-Minh Ribler - 2000
//--------------------------------------------------------------------------
int H5Location::getNumAttrs() const
{
   H5O_info_t oinfo;    /* Object info */

   if(H5Oget_info(getId(), &oinfo) < 0)
      throw AttributeIException(inMemFunc("getNumAttrs"), "H5Oget_info failed");
   else
      return( (int)oinfo.num_attrs );
}

//--------------------------------------------------------------------------
// Function:	H5Location::attrExists
///\brief	Checks whether the named attribute exists at this location.
///\param	name - IN: Name of the attribute to be queried
///\exception	H5::AttributeIException
// Programmer	Binh-Minh Ribler - 2013
//--------------------------------------------------------------------------
bool H5Location::attrExists(const char* name) const
{
   // Call C routine H5Aexists to determine whether an attribute exists
   // at this location, which could be specified by a file, group, dataset,
   // or named datatype.
   herr_t ret_value = H5Aexists(getId(), name);
   if( ret_value > 0 )
      return true;
   else if(ret_value == 0)
      return false;
   else // Raise exception when H5Aexists returns a negative value
      throw AttributeIException(inMemFunc("attrExists"), "H5Aexists failed");
}

//--------------------------------------------------------------------------
// Function:	H5Location::attrExists
///\brief	This is an overloaded member function, provided for convenience.
///		It differs from the above function in that it takes
///		a reference to an \c H5std_string for \a name.
// Programmer	Binh-Minh Ribler - 2000
//--------------------------------------------------------------------------
bool H5Location::attrExists(const H5std_string& name) const
{
   return(attrExists(name.c_str()));
}

//--------------------------------------------------------------------------
// Function:	H5Location::removeAttr
///\brief	Removes the named attribute from this object.
///\param	name - IN: Name of the attribute to be removed
///\exception	H5::AttributeIException
// Programmer	Binh-Minh Ribler - 2000
//--------------------------------------------------------------------------
void H5Location::removeAttr( const char* name ) const
{
   herr_t ret_value = H5Adelete(getId(), name);
   if( ret_value < 0 )
      throw AttributeIException(inMemFunc("removeAttr"), "H5Adelete failed");
}

//--------------------------------------------------------------------------
// Function:	H5Location::removeAttr
///\brief	This is an overloaded member function, provided for convenience.
///		It differs from the above function in that it takes
///		a reference to an \c H5std_string for \a name.
// Programmer	Binh-Minh Ribler - 2000
//--------------------------------------------------------------------------
void H5Location::removeAttr( const H5std_string& name ) const
{
   removeAttr( name.c_str() );
}

//--------------------------------------------------------------------------
// Function:	H5Location::renameAttr
///\brief	Renames the named attribute from this object.
///\param	oldname - IN: Name of the attribute to be renamed
///\param	newname - IN: New name ame of the attribute
///\exception	H5::AttributeIException
// Programmer	Binh-Minh Ribler - Mar, 2005
//--------------------------------------------------------------------------
void H5Location::renameAttr(const char* oldname, const char* newname) const
{
   herr_t ret_value = H5Arename(getId(), oldname, newname);
   if (ret_value < 0)
      throw AttributeIException(inMemFunc("renameAttr"), "H5Arename failed");
}

//--------------------------------------------------------------------------
// Function:	H5Location::renameAttr
///\brief	This is an overloaded member function, provided for convenience.
///		It differs from the above function in that it takes
///		a reference to an \c H5std_string for the names.
// Programmer	Binh-Minh Ribler - Mar, 2005
//--------------------------------------------------------------------------
void H5Location::renameAttr(const H5std_string& oldname, const H5std_string& newname) const
{
   renameAttr (oldname.c_str(), newname.c_str());
}

//--------------------------------------------------------------------------
// Function:	H5Location::flush
///\brief	Flushes all buffers associated with a location to disk.
///\param	scope - IN: Specifies the scope of the flushing action,
///		which can be either of these values:
///		\li \c H5F_SCOPE_GLOBAL - Flushes the entire virtual file
///		\li \c H5F_SCOPE_LOCAL - Flushes only the specified file
///\exception	H5::Exception
///\par Description
///		This location is used to identify the file to be flushed.
// Programmer	Binh-Minh Ribler - 2012
// Modification
//	Sep 2012 - BMR
//		Moved from H5File/H5Object
//--------------------------------------------------------------------------
void H5Location::flush(H5F_scope_t scope) const
{
   herr_t ret_value = H5Fflush(getId(), scope);
   if( ret_value < 0 )
   {
      throw LocationException(inMemFunc("flush"), "H5Fflush failed");
   }
}

//--------------------------------------------------------------------------
// Function:	H5Location::getFileName
///\brief	Gets the name of the file, in which this HDF5 object belongs.
///\return	File name
///\exception	H5::LocationException
// Programmer	Binh-Minh Ribler - Jul, 2004
//--------------------------------------------------------------------------
H5std_string H5Location::getFileName() const
{
   try {
      return(p_get_file_name());
   }
   catch (LocationException E) {
      throw FileIException(inMemFunc("getFileName"), E.getDetailMsg());
   }
}

//--------------------------------------------------------------------------
// Function:	H5Location::setComment
///\brief	Sets or resets the comment for an object specified by its name.
///\param	name  - IN: Name of the object
///\param	comment - IN: New comment
///\exception	H5::LocationException
///\par	Description
///		If \a comment is an empty string or a null pointer, the comment
///		message is removed from the object.
///		Comments should be relatively short, null-terminated, ASCII
///		strings.  They can be attached to any object that has an
///		object header, e.g., data sets, groups, named data types,
///		and data spaces, but not symbolic links.
// Programmer	Binh-Minh Ribler - 2000 (moved from CommonFG, Sep 2013)
// Modification
//	2007: QAK modified to use H5O APIs; however the first parameter is
//		no longer just file or group, this function should be moved
//		to another class to accommodate attribute, dataset, and named
//		datatype. - BMR
//--------------------------------------------------------------------------
void H5Location::setComment(const char* name, const char* comment) const
{
   herr_t ret_value = H5Oset_comment_by_name(getId(), name, comment, H5P_DEFAULT);
   if( ret_value < 0 )
      throw LocationException(inMemFunc("setComment"), "H5Oset_comment_by_name failed");
}

//--------------------------------------------------------------------------
// Function:	H5Location::setComment
///\brief	This is an overloaded member function, provided for convenience.
///		It differs from the above function in that it takes an
///		\c H5std_string for \a name and \a comment.
// Programmer	Binh-Minh Ribler - 2000 (moved from CommonFG, Sep 2013)
//--------------------------------------------------------------------------
void H5Location::setComment(const H5std_string& name, const H5std_string& comment) const
{
   setComment(name.c_str(), comment.c_str());
}

//--------------------------------------------------------------------------
// Function:	H5Location::setComment
///\brief	This is an overloaded member function, provided for convenience.
///		It differs from the above function in that it doesn't take
///		an object name.
// Programmer	Binh-Minh Ribler - Sep 2013
// Modification
//--------------------------------------------------------------------------
void H5Location::setComment(const char* comment) const
{
   herr_t ret_value = H5Oset_comment_by_name(getId(), ".", comment, H5P_DEFAULT);
   if( ret_value < 0 )
      throw LocationException(inMemFunc("setComment"), "H5Oset_comment_by_name failed");
}

//--------------------------------------------------------------------------
// Function:	H5Location::setComment
///\brief	This is an overloaded member function, provided for convenience.
///		It differs from the above function in that it takes an
///		\c H5std_string for \a comment.
// Programmer	Binh-Minh Ribler - Sep 2013
//--------------------------------------------------------------------------
void H5Location::setComment(const H5std_string& comment) const
{
   setComment(comment.c_str());
}

//--------------------------------------------------------------------------
// Function:	H5Location::removeComment
///\brief	Removes the comment from an object specified by its name.
///\param	name  - IN: Name of the object
///\exception	H5::LocationException
// Programmer	Binh-Minh Ribler - May 2005 (moved from CommonFG, Sep 2013)
//	2007: QAK modified to use H5O APIs; however the first parameter is
//		no longer just file or group, this function should be moved
//		to another class to accommodate attribute, dataset, and named
//		datatype. - BMR
//--------------------------------------------------------------------------
void H5Location::removeComment(const char* name) const
{
   herr_t ret_value = H5Oset_comment_by_name(getId(), name, NULL, H5P_DEFAULT);
   if( ret_value < 0 )
      throw LocationException(inMemFunc("removeComment"), "H5Oset_comment_by_name failed");
}

//--------------------------------------------------------------------------
// Function:	H5Location::removeComment
///\brief	This is an overloaded member function, provided for convenience.
///		It differs from the above function in that it takes an
///		\c H5std_string for \a name.
// Programmer	Binh-Minh Ribler - May 2005 (moved from CommonFG, Sep 2013)
//--------------------------------------------------------------------------
void H5Location::removeComment(const H5std_string& name) const
{
   removeComment (name.c_str());
}

//--------------------------------------------------------------------------
// Function:	H5Location::getComment
///\brief	Retrieves the comment for this location, returning its length.
///\param	name     - IN: Name of the object
///\param	buf_size - IN: Length of the comment to retrieve
///\param	comment  - OUT: Retrieved comment
///\return	Actual length of the comment
///\exception	H5::LocationException
///\par Description
///		This function retrieves \a buf_size characters of the comment
///		including the null terminator.  Thus, if the actual length
///		of the comment is more than buf_size-1, the retrieved comment
///		will be truncated to accommodate the null terminator.
// Programmer	Binh-Minh Ribler - Mar 2014
//--------------------------------------------------------------------------
ssize_t H5Location::getComment(const char* name, size_t buf_size, char* comment) const
{
    // H5Oget_comment_by_name will get buf_size chars of the comment including
    // the null terminator
    ssize_t comment_len;
    comment_len = H5Oget_comment_by_name(getId(), name, comment, buf_size, H5P_DEFAULT);

    // If H5Oget_comment_by_name returns a negative value, raise an exception
    if (comment_len < 0)
    {
        throw LocationException("H5Location::getComment", "H5Oget_comment_by_name failed");
    }
    // If the comment is longer than the provided buffer size, the C library
    // will not null terminate it
    if ((size_t)comment_len >= buf_size)
	comment[buf_size-1] = '\0';

    // Return the actual comment length, which might be different from buf_size
    return(comment_len);
}

//--------------------------------------------------------------------------
// Function:	H5Location::getComment
///\brief	Returns the comment as \a string for this location,
///		returning its length.
///\param	name     - IN: Name of the object
///\param	buf_size - IN: Length of the comment to retrieve, default to 0
///\return	Comment string
///\exception	H5::LocationException
// Programmer	Binh-Minh Ribler - 2000 (moved from CommonFG, Sep 2013)
//--------------------------------------------------------------------------
H5std_string H5Location::getComment(const char* name, size_t buf_size) const
{
    // Initialize string to "", so that if there is no comment, the returned
    // string will be empty
    H5std_string comment("");

    // Preliminary call to get the comment's length
    ssize_t comment_len = H5Oget_comment_by_name(getId(), name, NULL, (size_t)0, H5P_DEFAULT);

    // If H5Oget_comment_by_name returns a negative value, raise an exception
    if (comment_len < 0)
    {
        throw LocationException("H5Location::getComment", "H5Oget_comment_by_name failed");
    }

    // If comment exists, calls C routine again to get it
    else if (comment_len > 0)
    {
	size_t tmp_len = buf_size;

	// If buffer size is not provided, use comment length
	if (tmp_len == 0)
	    tmp_len = comment_len;

	// Temporary buffer for char* comment
	char* comment_C = new char[tmp_len+1];
	HDmemset(comment_C, 0, tmp_len+1); // clear buffer

	// Used overloaded function
	ssize_t comment_len = getComment(name, tmp_len+1, comment_C);
	if (comment_len < 0)
	{
	    delete []comment_C;
	    throw LocationException("H5Location::getComment", "H5Oget_comment_by_name failed");
	}

	// Convert the C comment to return
	comment = comment_C;

	// Clean up resource
	delete []comment_C;
    }

    // Return the string comment
    return(comment);
}

//--------------------------------------------------------------------------
// Function:	H5Location::getComment
///\brief	This is an overloaded member function, provided for convenience.
///		It differs from the above function in that it takes an
///		\c H5std_string for \a name.
// Programmer	Binh-Minh Ribler - 2000 (moved from CommonFG, Sep 2013)
//--------------------------------------------------------------------------
H5std_string H5Location::getComment(const H5std_string& name, size_t buf_size) const
{
    return(getComment(name.c_str(), buf_size));
}
#ifndef DOXYGEN_SHOULD_SKIP_THIS

//--------------------------------------------------------------------------
// Function:	H5Location::p_reference (protected)
// Purpose	Creates a reference to an HDF5 object or a dataset region.
// Parameters
//		name - IN: Name of the object to be referenced
//		dataspace - IN: Dataspace with selection
//		ref_type - IN: Type of reference; default to \c H5R_DATASET_REGION
// Exception	H5::ReferenceException
// Programmer	Binh-Minh Ribler - May, 2004
//--------------------------------------------------------------------------
void H5Location::p_reference(void* ref, const char* name, hid_t space_id, H5R_type_t ref_type) const
{
   herr_t ret_value = H5Rcreate(ref, getId(), name, ref_type, space_id);
   if (ret_value < 0)
   {
      throw ReferenceException(inMemFunc("reference"), "H5Rcreate failed");
   }
}

#endif // DOXYGEN_SHOULD_SKIP_THIS

//--------------------------------------------------------------------------
// Function:	H5Location::reference
///\brief	Creates a reference to an HDF5 object or a dataset region.
///\param	ref - IN: Reference pointer
///\param	name - IN: Name of the object to be referenced
///\param	dataspace - IN: Dataspace with selection
///\param	ref_type - IN: Type of reference to query, valid values are:
///		\li \c H5R_OBJECT         - Reference is an object reference.
///		\li \c H5R_DATASET_REGION - Reference is a dataset region
///			reference. (default)
///\exception	H5::ReferenceException
///\note	This method is more suitable for a dataset region reference.
// Programmer	Binh-Minh Ribler - May, 2004
//--------------------------------------------------------------------------
void H5Location::reference(void* ref, const char* name, const DataSpace& dataspace, H5R_type_t ref_type) const
{
   try {
      p_reference(ref, name, dataspace.getId(), ref_type);
   }
   catch (ReferenceException E) {
      throw ReferenceException(inMemFunc("reference"), E.getDetailMsg());
   }
}

//--------------------------------------------------------------------------
// Function:	H5Location::reference
///\brief	This is an overloaded member function, provided for convenience.
///		It differs from the above function in that it takes an
///		\c H5std_string for \a name.
///\param	ref - IN: Reference pointer
///\param	name - IN: Name of the object to be referenced
///\param	dataspace - IN: Dataspace with selection
///\param	ref_type - IN: Type of reference to query, valid values are:
///		\li \c H5R_OBJECT         - Reference is an object reference.
///		\li \c H5R_DATASET_REGION - Reference is a dataset region
///			reference. (default)
///\exception	H5::ReferenceException
///\note	This method is more suitable for a dataset region reference.
// Programmer	Binh-Minh Ribler - May, 2004
//--------------------------------------------------------------------------
void H5Location::reference(void* ref, const H5std_string& name, const DataSpace& dataspace, H5R_type_t ref_type) const
{
   try {
      p_reference(ref, name.c_str(), dataspace.getId(), ref_type);
   }
   catch (ReferenceException E) {
      throw ReferenceException(inMemFunc("reference"), E.getDetailMsg());
   }
}

//--------------------------------------------------------------------------
// Function:	H5Location::reference
///\brief	This is an overloaded function, provided for your convenience.
///		It differs from the above function in that it does not take
///		a DataSpace object and the reference type must be specified.
///\param	ref - IN: Reference pointer
///\param	name - IN: Name of the object to be referenced
///\param	ref_type - IN: Type of reference to query, valid values are:
///		\li \c H5R_OBJECT         - Reference is an object reference (default)
///		\li \c H5R_DATASET_REGION - Reference is a dataset region
///\exception	H5::ReferenceException
///\note	This method is more suitable for an object reference.
// Programmer	Binh-Minh Ribler - May, 2004
//--------------------------------------------------------------------------
void H5Location::reference(void* ref, const char* name, H5R_type_t ref_type) const
{
   try {
      p_reference(ref, name, -1, ref_type);
   }
   catch (ReferenceException E) {
      throw ReferenceException(inMemFunc("reference"), E.getDetailMsg());
   }
}

//--------------------------------------------------------------------------
// Function:	H5Location::reference
///\brief	This is an overloaded function, provided for your convenience.
///		It differs from the above function in that it takes an
///		\c H5std_string for the object's name.
///\param	ref - IN: Reference pointer
///\param	name - IN: Name of the object to be referenced - \c H5std_string
///\param	ref_type - IN: Type of reference to query, valid values are:
///		\li \c H5R_OBJECT         - Reference is an object reference (default)
///		\li \c H5R_DATASET_REGION - Reference is a dataset region
///\note	This method is more suitable for an object reference.
// Programmer	Binh-Minh Ribler - May, 2004
//--------------------------------------------------------------------------
void H5Location::reference(void* ref, const H5std_string& name, H5R_type_t ref_type) const
{
   reference(ref, name.c_str(), ref_type);
}

#ifndef DOXYGEN_SHOULD_SKIP_THIS
//--------------------------------------------------------------------------
// Function:	H5Location::p_dereference (protected)
// Purpose	Dereference a ref into an hdf5 object.
// Parameters
//		loc_id - IN: An hdf5 identifier specifying the location of the
//			 referenced object
//		ref - IN: Reference pointer
//		ref_type - IN: Reference type
//		plist - IN: Property list - default to PropList::DEFAULT
//		from_func - IN: Name of the calling function
// Exception	H5::ReferenceException
// Programmer	Binh-Minh Ribler - Oct, 2006
// Modification
//	May 2008 - BMR
//		Moved from IdComponent.
//--------------------------------------------------------------------------
hid_t H5Location::p_dereference(hid_t loc_id, const void* ref, H5R_type_t ref_type, const PropList& plist, const char* from_func)
{
   hid_t plist_id;
   if (p_valid_id(plist.getId()))
	plist_id = plist.getId();
   else
	plist_id = H5P_DEFAULT;

   hid_t temp_id = H5Rdereference2(loc_id, plist_id, ref_type, ref);
   if (temp_id < 0)
   {
      throw ReferenceException(inMemFunc(from_func), "H5Rdereference failed");
   }

   return(temp_id);
}
#endif // DOXYGEN_SHOULD_SKIP_THIS

//--------------------------------------------------------------------------
// Function:	H5Location::dereference
///\brief	Dereferences a reference into an HDF5 object, given an HDF5 object.
///\param	loc - IN: Location of the referenced object
///\param	ref - IN: Reference pointer
///\param	ref_type - IN: Reference type
///\param	plist - IN: Property list - default to PropList::DEFAULT
///\exception	H5::ReferenceException
// Programmer	Binh-Minh Ribler - Oct, 2006
// Modification
//	May, 2008
//		Corrected missing parameters. - BMR
//--------------------------------------------------------------------------
void H5Location::dereference(const H5Location& loc, const void* ref, H5R_type_t ref_type, const PropList& plist)
{
   p_setId(p_dereference(loc.getId(), ref, ref_type, plist, "dereference"));
}

//--------------------------------------------------------------------------
// Function:	H5Location::dereference
///\brief	Dereferences a reference into an HDF5 object, given an attribute.
///\param	attr - IN: Attribute specifying the location of the referenced object
///\param	ref - IN: Reference pointer
///\param	ref_type - IN: Reference type
///\param	plist - IN: Property list - default to PropList::DEFAULT
///\exception	H5::ReferenceException
// Programmer	Binh-Minh Ribler - Oct, 2006
// Modification
//	May, 2008
//		Corrected missing parameters. - BMR
//--------------------------------------------------------------------------
void H5Location::dereference(const Attribute& attr, const void* ref, H5R_type_t ref_type, const PropList& plist)
{
   p_setId(p_dereference(attr.getId(), ref, ref_type, plist, "dereference"));
}

#ifndef H5_NO_DEPRECATED_SYMBOLS
//--------------------------------------------------------------------------
// Function:	H5Location::getObjType
///\brief	Retrieves the type of object that an object reference points to.
///\param	ref_type - IN: Type of reference to query, valid values are:
///		\li \c H5R_OBJECT - Reference is an object reference.
///		\li \c H5R_DATASET_REGION - Reference is a dataset region reference.
///\param	ref      - IN: Reference to query
///\return	An object type, which can be one of the following:
///		\li \c H5G_UNKNOWN  - A failure occurs. (-1)
///		\li \c H5G_GROUP  - Object is a group.
///		\li \c H5G_DATASET - Object is a dataset.
///		\li \c H5G_TYPE Object - is a named datatype
///		\li \c H5G_LINK  - Object is a symbolic link.
///		\li \c H5G_UDLINK  - Object is a user-defined link.
///\exception	H5::ReferenceException
// Programmer	Binh-Minh Ribler - May, 2004
// Modification
//	Sep 2012: Moved up from H5File, Group, DataSet, and DataType
//--------------------------------------------------------------------------
H5G_obj_t H5Location::getObjType(void *ref, H5R_type_t ref_type) const
{
   try {
      return(p_get_obj_type(ref, ref_type));
   }
   catch (ReferenceException E) {
      throw ReferenceException(inMemFunc("getObjType"), E.getDetailMsg());
   }
}

#ifndef DOXYGEN_SHOULD_SKIP_THIS
//--------------------------------------------------------------------------
// Function:	H5Location::p_get_obj_type (protected)
// Purpose	Retrieves the type of object that an object reference points to.
// Parameters
//		ref      - IN: Reference to query
//		ref_type - IN: Type of reference to query
// Return	An object type, which can be one of the following:
//			H5G_UNKNOWN \tFailure occurs (-1)
//			H5G_GROUP \tObject is a group.
//			H5G_DATASET \tObject is a dataset.
//			H5G_TYPE Object \tis a named datatype.
//			H5G_LINK \tObject is a symbolic link.
//			H5G_UDLINK \tObject is a user-defined link.
// Exception	H5::ReferenceException
// Programmer	Binh-Minh Ribler - May, 2004
//--------------------------------------------------------------------------
H5G_obj_t H5Location::p_get_obj_type(void *ref, H5R_type_t ref_type) const
{
   H5G_obj_t obj_type = H5Rget_obj_type1(getId(), ref_type, ref);

   if (obj_type == H5G_UNKNOWN)
   {
      throw ReferenceException(inMemFunc("getObjType"), "H5Rget_obj_type1 failed");
   }
   return(obj_type);
}
#endif // DOXYGEN_SHOULD_SKIP_THIS
#endif /* H5_NO_DEPRECATED_SYMBOLS */

//--------------------------------------------------------------------------
// Function:	H5Location::getRefObjType
///\brief	Retrieves the type of object that an object reference points to.
///\param	ref      - IN: Reference to query
///\param	ref_type - IN: Type of reference to query, valid values are:
///		\li \c H5R_OBJECT         - Reference is an object reference.
///		\li \c H5R_DATASET_REGION - Reference is a dataset region reference.
///\return	An object type, which can be one of the following:
///		\li \c H5O_TYPE_UNKNOWN	- Unknown object type (-1)
///		\li \c H5O_TYPE_GROUP	- Object is a group
///		\li \c H5O_TYPE_DATASET	- Object is a dataset
///		\li \c H5O_TYPE_NAMED_DATATYPE - Object is a named datatype
///		\li \c H5O_TYPE_NTYPES	- Number of different object types
///\exception	H5::ReferenceException
// Programmer	Binh-Minh Ribler - May, 2004
//--------------------------------------------------------------------------
H5O_type_t H5Location::getRefObjType(void *ref, H5R_type_t ref_type) const
{
   try {
      return(p_get_ref_obj_type(ref, ref_type));
   }
   catch (ReferenceException E) {
      throw ReferenceException(inMemFunc("getRefObjType"), E.getDetailMsg());
   }
}

#ifndef DOXYGEN_SHOULD_SKIP_THIS
//--------------------------------------------------------------------------
// Function:	H5Location::p_get_ref_obj_type (protected)
// Purpose	Retrieves the type of object that an object reference points to.
// Parameters
//		ref      - IN: Reference to query
//		ref_type - IN: Type of reference to query
// Return	An object type, which can be one of the following:
//			H5O_TYPE_UNKNOWN	- Unknown object type (-1)
//			H5O_TYPE_GROUP		- Object is a group
//			H5O_TYPE_DATASET	- Object is a dataset
//			H5O_TYPE_NAMED_DATATYPE - Object is a named datatype
//			H5O_TYPE_NTYPES		- Number of object types
// Exception	H5::ReferenceException
// Programmer	Binh-Minh Ribler - May, 2004
//--------------------------------------------------------------------------
H5O_type_t H5Location::p_get_ref_obj_type(void *ref, H5R_type_t ref_type) const
{
   H5O_type_t obj_type = H5O_TYPE_UNKNOWN;
   herr_t ret_value = H5Rget_obj_type2(getId(), ref_type, ref, &obj_type);
   if (ret_value < 0)
   {
      throw ReferenceException(inMemFunc("getRefObjType"), "H5Rget_obj_type2 failed");
   }
   if (obj_type == H5O_TYPE_UNKNOWN || obj_type >= H5O_TYPE_NTYPES)
   {
      throw ReferenceException(inMemFunc("getRefObjType"), "H5Rget_obj_type2 returned invalid type");
   }
   return(obj_type);
}


//--------------------------------------------------------------------------
// Function:	H5Location::getRegion
///\brief	Retrieves a dataspace with the region pointed to selected.
///\param	ref	 - IN: Reference to get region of
///\param	ref_type - IN: Type of reference to get region of - default
//				to H5R_DATASET_REGION
///\return	DataSpace object
///\exception	H5::ReferenceException
// Programmer	Binh-Minh Ribler - May, 2004
// Modification
//	Mar 29, 2015
//		Used friend function to set id for DataSpace instead of the
//		existing id constructor or the setId method to avoid incrementing
//		ref count, as a work-around for a problem described in the JIRA
//		issue HDFFV-7947. -BMR
//--------------------------------------------------------------------------
DataSpace H5Location::getRegion(void *ref, H5R_type_t ref_type) const
{
   hid_t space_id = H5Rget_region(getId(), ref_type, ref);
   if (space_id < 0)
   {
      throw ReferenceException(inMemFunc("getRegion"), "H5Rget_region failed");
   }
   try {
	DataSpace dataspace;
	f_DataSpace_setId(&dataspace, space_id);
	return(dataspace);
   }
   catch (DataSpaceIException E) {
      throw ReferenceException(inMemFunc("getRegion"), E.getDetailMsg());
   }
}


//--------------------------------------------------------------------------
// Function:	H5Location destructor
///\brief	Noop destructor.
// Programmer	Binh-Minh Ribler - 2000
//--------------------------------------------------------------------------
H5Location::~H5Location() {}

//--------------------------------------------------------------------------
// Function:	f_Attribute_setId - friend
// Purpose:	This function is friend to class H5::Attribute so that it
//		can set Attribute::id in order to work around a problem
//		described in the JIRA issue HDFFV-7947.
//		Applications shouldn't need to use it.
// param	attr   - IN/OUT: Attribute object to be changed
// param	new_id - IN: New id to set
// Programmer	Binh-Minh Ribler - 2015
//--------------------------------------------------------------------------
void f_Attribute_setId(Attribute* attr, hid_t new_id)
{
    attr->p_setId(new_id);
}

//--------------------------------------------------------------------------
// Function:	f_DataSpace_setId - friend
// Purpose:	This function is friend to class H5::DataSpace so that it can
//		can set DataSpace::id in order to work around a problem
//		described in the JIRA issue HDFFV-7947.
//		Applications shouldn't need to use it.
// param	dspace   - IN/OUT: DataSpace object to be changed
// param	new_id - IN: New id to set
// Programmer	Binh-Minh Ribler - 2015
//--------------------------------------------------------------------------
void f_DataSpace_setId(DataSpace* dspace, hid_t new_id)
{
    dspace->p_setId(new_id);
}

#endif // DOXYGEN_SHOULD_SKIP_THIS

#ifndef H5_NO_NAMESPACE
} // end namespace
#endif
='n2834' href='#n2834'>2834 2835 2836 2837 2838 2839 2840 2841 2842 2843 2844 2845 2846 2847 2848 2849 2850 2851 2852 2853 2854 2855 2856 2857 2858 2859 2860 2861 2862 2863 2864 2865 2866 2867 2868 2869 2870 2871 2872 2873 2874 2875 2876 2877 2878 2879 2880 2881 2882 2883 2884 2885 2886 2887 2888 2889 2890 2891 2892 2893 2894 2895 2896 2897 2898 2899 2900 2901 2902 2903 2904 2905 2906 2907 2908 2909 2910 2911 2912 2913 2914 2915 2916 2917 2918 2919 2920 2921 2922 2923 2924 2925 2926 2927 2928 2929 2930 2931 2932 2933 2934 2935 2936 2937 2938 2939 2940 2941 2942 2943 2944 2945 2946 2947 2948 2949 2950 2951 2952 2953 2954 2955 2956 2957 2958 2959 2960 2961 2962 2963 2964 2965 2966 2967 2968 2969 2970 2971 2972 2973 2974 2975 2976 2977 2978 2979 2980 2981 2982 2983 2984 2985 2986 2987 2988 2989 2990 2991 2992 2993 2994 2995 2996 2997 2998 2999 3000 3001 3002 3003 3004 3005 3006 3007 3008 3009 3010 3011 3012 3013 3014 3015 3016 3017 3018 3019 3020 3021 3022 3023 3024 3025 3026 3027 3028 3029 3030 3031 3032 3033 3034 3035 3036 3037 3038 3039 3040 3041 3042 3043 3044 3045 3046 3047 3048 3049 3050 3051 3052 3053 3054 3055 3056 3057 3058 3059 3060 3061 3062 3063 3064 3065 3066 3067 3068 3069 3070 3071 3072 3073 3074 3075 3076 3077 3078 3079 3080 3081 3082 3083 3084 3085 3086 3087 3088 3089 3090 3091 3092 3093 3094 3095 3096 3097 3098 3099 3100 3101 3102 3103 3104 3105 3106 3107 3108 3109 3110 3111 3112 3113 3114 3115 3116 3117 3118 3119 3120 3121 3122 3123 3124 3125 3126 3127 3128 3129 3130 3131 3132 3133 3134 3135 3136 3137 3138 3139 3140 3141 3142 3143 3144 3145 3146 3147 3148 3149 3150 3151 3152 3153 3154 3155 3156 3157 3158 3159 3160 3161 3162 3163 3164 3165 3166 3167 3168 3169 3170 3171 3172 3173 3174 3175 3176 3177 3178 3179 3180 3181 3182 3183 3184 3185 3186 3187 3188 3189 3190 3191 3192 3193 3194 3195 3196 3197 3198 3199 3200 3201 3202 3203 3204 3205 3206 3207 3208 3209 3210 3211 3212 3213 3214 3215 3216 3217 3218 3219 3220 3221 3222 3223 3224 3225 3226 3227 3228 3229 3230 3231 3232 3233 3234 3235 3236 3237 3238 3239 3240 3241 3242 3243 3244 3245 3246 3247 3248 3249 3250 3251 3252 3253 3254 3255 3256 3257 3258 3259 3260 3261 3262 3263 3264 3265 3266 3267 3268 3269 3270 3271 3272 3273 3274 3275 3276 3277 3278 3279 3280 3281 3282 3283 3284 3285 3286 3287 3288 3289 3290 3291 3292 3293 3294 3295 3296 3297 3298 3299 3300 3301 3302 3303 3304 3305 3306 3307 3308 3309 3310 3311 3312 3313 3314 3315 3316 3317 3318 3319 3320 3321 3322 3323 3324 3325 3326 3327 3328 3329 3330 3331 3332 3333 3334 3335 3336 3337 3338 3339 3340 3341 3342 3343 3344 3345 3346 3347 3348 3349 3350 3351 3352 3353 3354 3355 3356 3357 3358 3359 3360 3361 3362 3363 3364 3365 3366 3367 3368 3369 3370 3371 3372 3373 3374 3375 3376 3377 3378 3379 3380 3381 3382 3383 3384 3385 3386 3387 3388 3389 3390 3391 3392 3393 3394 3395 3396 3397 3398 3399 3400 3401 3402 3403 3404 3405 3406 3407 3408 3409 3410 3411 3412 3413 3414 3415 3416 3417 3418 3419 3420 3421 3422 3423 3424 3425 3426 3427 3428 3429 3430 3431 3432 3433 3434 3435 3436 3437 3438 3439 3440 3441 3442 3443 3444 3445 3446 3447 3448 3449 3450 3451 3452 3453 3454 3455 3456 3457 3458 3459 3460 3461 3462 3463 3464 3465 3466 3467 3468 3469 3470 3471 3472 3473 3474 3475 3476 3477 3478 3479 3480 3481 3482 3483 3484 3485 3486 3487 3488 3489 3490 3491 3492 3493 3494 3495 3496 3497 3498 3499 3500 3501 3502 3503 3504 3505 3506 3507 3508 3509 3510 3511 3512 3513 3514 3515 3516 3517 3518 3519 3520 3521 3522 3523 3524 3525 3526 3527 3528 3529 3530 3531 3532 3533 3534 3535 3536 3537 3538 3539 3540 3541 3542 3543 3544 3545 3546 3547 3548 3549 3550 3551 3552 3553 3554 3555 3556 3557 3558 3559 3560 3561 3562 3563 3564 3565 3566 3567 3568 3569 3570 3571 3572 3573 3574 3575 3576 3577 3578 3579 3580 3581 3582 3583 3584 3585 3586 3587 3588 3589 3590 3591 3592 3593 3594 3595 3596 3597 3598 3599 3600 3601 3602 3603 3604 3605 3606 3607 3608 3609 3610 3611 3612 3613 3614 3615 3616 3617 3618 3619 3620 3621 3622 3623 3624 3625 3626 3627 3628 3629 3630 3631 3632 3633 3634 3635 3636 3637 3638 3639 3640 3641 3642 3643 3644 3645 3646 3647 3648 3649 3650 3651 3652 3653 3654 3655 3656 3657 3658 3659 3660 3661 3662 3663 3664 3665 3666 3667 3668 3669 3670 3671 3672 3673 3674 3675 3676 3677 3678 3679 3680 3681 3682 3683 3684 3685 3686 3687 3688 3689 3690 3691 3692 3693 3694 3695 3696 3697 3698 3699 3700 3701 3702 3703 3704 3705 3706 3707 3708 3709 3710 3711 3712 3713 3714 3715 3716 3717 3718 3719 3720 3721 3722 3723 3724 3725 3726 3727 3728 3729 3730 3731 3732 3733 3734 3735 3736 3737 3738 3739 3740 3741 3742 3743 3744 3745 3746 3747 3748 3749 3750 3751 3752 3753 3754 3755 3756 3757 3758 3759 3760 3761 3762 3763 3764 3765 3766 3767 3768 3769 3770 3771 3772 3773 3774 3775 3776 3777 3778 3779 3780 3781 3782 3783 3784 3785 3786 3787 3788 3789 3790 3791 3792 3793 3794 3795 3796 3797 3798 3799 3800 3801 3802 3803 3804 3805 3806 3807 3808 3809 3810 3811 3812 3813 3814 3815 3816 3817 3818 3819 3820 3821 3822 3823 3824 3825 3826 3827 3828 3829 3830 3831 3832 3833 3834 3835 3836 3837 3838 3839 3840 3841 3842 3843 3844 3845 3846 3847 3848 3849 3850 3851 3852 3853 3854 3855 3856 3857 3858 3859 3860 3861 3862 3863 3864 3865 3866 3867 3868 3869 3870 3871 3872 3873 3874 3875 3876 3877 3878 3879 3880 3881 3882 3883 3884 3885 3886 3887 3888 3889 3890 3891 3892 3893 3894 3895 3896 3897 3898 3899 3900 3901 3902 3903 3904 3905 3906 3907 3908 3909 3910 3911 3912 3913 3914 3915 3916 3917 3918 3919 3920 3921 3922 3923 3924 3925 3926 3927 3928 3929 3930 3931 3932 3933 3934 3935 3936 3937 3938 3939 3940 3941 3942 3943 3944 3945 3946 3947 3948 3949 3950 3951 3952 3953 3954 3955 3956 3957 3958 3959 3960 3961 3962 3963 3964 3965 3966 3967 3968 3969 3970 3971 3972 3973 3974 3975 3976 3977 3978 3979 3980 3981 3982 3983 3984 3985 3986 3987 3988 3989 3990 3991 3992 3993 3994 3995 3996 3997 3998 3999 4000 4001 4002 4003 4004 4005 4006 4007 4008 4009 4010 4011 4012 4013 4014 4015 4016 4017 4018 4019 4020 4021 4022 4023 4024 4025 4026 4027 4028 4029 4030 4031 4032 4033 4034 4035 4036 4037 4038 4039 4040 4041 4042 4043 4044 4045 4046 4047 4048 4049 4050 4051 4052 4053 4054 4055 4056 4057 4058 4059 4060 4061 4062 4063 4064 4065 4066 4067 4068 4069 4070 4071 4072 4073 4074 4075 4076 4077 4078 4079 4080 4081 4082 4083 4084 4085 4086 4087 4088 4089 4090 4091 4092 4093 4094 4095 4096 4097 4098 4099 4100 4101 4102 4103 4104 4105 4106 4107 4108 4109 4110 4111 4112 4113 4114 4115 4116 4117 4118 4119 4120 4121 4122 4123 4124 4125 4126 4127 4128 4129 4130 4131 4132 4133 4134 4135 4136 4137 4138 4139 4140 4141 4142 4143 4144 4145 4146 4147 4148 4149 4150 4151 4152 4153 4154 4155 4156 4157 4158 4159 4160 4161 4162 4163 4164 4165 4166 4167 4168 4169 4170 4171 4172 4173 4174 4175 4176 4177 4178 4179 4180 4181 4182 4183 4184 4185 4186 4187 4188 4189 4190 4191 4192 4193 4194 4195 4196 4197 4198 4199 4200 4201 4202 4203 4204 4205 4206 4207 4208 4209 4210 4211 4212 4213 4214 4215 4216 4217 4218 4219 4220 4221 4222 4223 4224 4225 4226 4227 4228 4229 4230 4231 4232 4233 4234 4235 4236 4237 4238 4239 4240 4241 4242 4243 4244 4245 4246 4247 4248 4249 4250 4251 4252 4253 4254 4255 4256 4257 4258 4259 4260 4261 4262 4263 4264 4265 4266 4267 4268 4269 4270 4271 4272 4273 4274 4275 4276 4277 4278 4279 4280 4281 4282 4283 4284 4285 4286 4287 4288 4289 4290 4291 4292 4293 4294 4295 4296 4297 4298 4299 4300 4301 4302 4303 4304 4305 4306 4307 4308 4309 4310 4311 4312 4313 4314 4315 4316 4317 4318 4319 4320 4321 4322 4323 4324 4325 4326 4327 4328 4329 4330 4331 4332 4333 4334 4335 4336 4337 4338 4339 4340 4341 4342 4343 4344 4345 4346 4347 4348 4349 4350 4351 4352 4353 4354 4355 4356 4357 4358 4359 4360 4361 4362 4363 4364 4365 4366 4367 4368 4369 4370 4371 4372 4373 4374 4375 4376 4377 4378 4379 4380 4381 4382 4383 4384 4385 4386 4387 4388 4389 4390 4391 4392 4393 4394 4395 4396 4397 4398 4399 4400 4401 4402 4403 4404 4405 4406 4407 4408 4409 4410 4411 4412 4413 4414 4415 4416 4417 4418 4419 4420 4421 4422 4423 4424 4425 4426 4427 4428 4429 4430 4431 4432 4433 4434 4435 4436 4437 4438 4439 4440 4441 4442 4443 4444 4445 4446 4447 4448 4449 4450 4451 4452 4453 4454 4455 4456 4457 4458 4459 4460 4461 4462 4463 4464 4465 4466 4467 4468 4469 4470 4471 4472 4473 4474 4475 4476 4477 4478 4479 4480 4481 4482 4483 4484 4485 4486 4487 4488 4489 4490 4491 4492 4493 4494 4495 4496 4497 4498 4499 4500 4501 4502 4503 4504 4505 4506 4507 4508 4509 4510 4511 4512 4513 4514 4515 4516 4517 4518 4519 4520 4521 4522 4523 4524 4525 4526 4527 4528 4529 4530 4531 4532 4533 4534 4535 4536 4537 4538 4539 4540 4541 4542 4543 4544 4545 4546 4547 4548 4549 4550 4551 4552 4553 4554 4555 4556 4557 4558 4559 4560 4561 4562 4563 4564 4565 4566 4567 4568 4569 4570 4571 4572 4573 4574 4575 4576 4577 4578 4579 4580 4581 4582 4583 4584 4585 4586 4587 4588 4589 4590 4591 4592 4593 4594 4595 4596 4597 4598 4599 4600 4601 4602 4603 4604 4605 4606 4607 4608 4609 4610 4611 4612 4613 4614 4615 4616 4617 4618 4619 4620 4621 4622 4623 4624 4625 4626 4627 4628 4629 4630 4631 4632 4633 4634 4635 4636 4637 4638 4639 4640 4641 4642 4643 4644 4645 4646 4647 4648 4649 4650 4651 4652 4653 4654 4655 4656 4657 4658 4659 4660 4661 4662 4663 4664 4665 4666 4667 4668 4669 4670 4671 4672 4673 4674 4675 4676 4677 4678 4679 4680 4681 4682 4683 4684 4685 4686 4687 4688 4689 4690 4691 4692 4693 4694 4695 4696 4697 4698 4699 4700 4701 4702 4703 4704 4705 4706 4707 4708 4709 4710 4711 4712 4713 4714 4715 4716 4717 4718 4719 4720 4721 4722 4723 4724 4725 4726 4727 4728 4729 4730 4731 4732 4733 4734 4735 4736 4737 4738 4739 4740 4741 4742 4743 4744 4745 4746 4747 4748 4749 4750 4751 4752 4753 4754 4755 4756 4757 4758 4759 4760 4761 4762 4763 4764 4765 4766 4767 4768 4769 4770 4771 4772 4773 4774 4775 4776 4777 4778 4779 4780 4781 4782 4783 4784 4785 4786 4787 4788 4789 4790 4791 4792 4793 4794 4795 4796 4797 4798 4799 4800 4801 4802 4803 4804 4805 4806 4807 4808 4809 4810 4811 4812 4813 4814 4815 4816 4817 4818 4819 4820 4821 4822 4823 4824 4825 4826 4827 4828 4829 4830 4831 4832 4833 4834 4835 4836 4837 4838 4839 4840 4841 4842 4843 4844 4845 4846 4847 4848 4849 4850 4851 4852 4853 4854 4855 4856 4857 4858 4859 4860 4861 4862 4863 4864 4865 4866 4867 4868 4869 4870 4871 4872 4873 4874 4875 4876 4877 4878 4879 4880 4881 4882 4883 4884 4885 4886 4887 4888 4889 4890 4891 4892 4893 4894 4895 4896 4897 4898 4899 4900 4901 4902 4903 4904 4905 4906 4907 4908 4909 4910 4911 4912 4913 4914 4915 4916 4917 4918 4919 4920 4921 4922 4923 4924 4925 4926 4927 4928 4929 4930 4931 4932 4933 4934 4935 4936 4937 4938 4939 4940 4941 4942 4943 4944 4945 4946 4947 4948 4949 4950 4951 4952 4953 4954 4955 4956 4957 4958 4959 4960 4961 4962 4963 4964 4965 4966 4967 4968 4969 4970 4971 4972 4973 4974 4975 4976 4977 4978 4979 4980 4981 4982 4983 4984 4985 4986 4987 4988 4989 4990 4991 4992 4993 4994 4995 4996 4997 4998 4999 5000 5001 5002 5003 5004 5005 5006 5007 5008 5009 5010 5011 5012 5013 5014 5015 5016 5017 5018 5019 5020 5021 5022 5023 5024 5025 5026 5027 5028 5029 5030 5031 5032 5033 5034 5035 5036 5037 5038 5039 5040 5041 5042 5043 5044 5045 5046 5047 5048 5049 5050 5051 5052 5053 5054 5055 5056 5057 5058 5059 5060 5061 5062 5063 5064 5065 5066 5067 5068 5069 5070 5071 5072 5073 5074 5075 5076 5077 5078 5079 5080 5081 5082 5083 5084 5085 5086 5087 5088 5089 5090 5091 5092 5093 5094 5095 5096 5097 5098 5099 5100 5101 5102 5103 5104 5105 5106 5107 5108 5109 5110 5111 5112 5113 5114 5115 5116 5117 5118 5119 5120 5121 5122 5123 5124 5125 5126 5127 5128 5129 5130 5131 5132 5133 5134 5135 5136 5137 5138 5139 5140 5141 5142 5143 5144 5145 5146 5147 5148 5149 5150 5151 5152 5153 5154 5155 5156 5157 5158 5159 5160 5161 5162 5163 5164 5165 5166 5167 5168 5169 5170 5171 5172 5173 5174 5175 5176 5177 5178 5179 5180 5181 5182 5183 5184 5185 5186 5187 5188 5189 5190 5191 5192 5193 5194 5195 5196 5197 5198 5199 5200 5201 5202 5203 5204 5205 5206 5207 5208 5209 5210 5211 5212 5213 5214 5215 5216 5217 5218 5219 5220 5221 5222 5223 5224 5225 5226 5227 5228 5229 5230 5231 5232 5233 5234 5235 5236 5237 5238 5239 5240 5241 5242 5243 5244 5245 5246 5247 5248 5249 5250 5251 5252 5253 5254 5255 5256 5257 5258 5259 5260 5261 5262 5263 5264 5265 5266 5267 5268 5269 5270 5271 5272 5273 5274 5275 5276 5277 5278 5279 5280 5281 5282 5283 5284 5285 5286 5287 5288 5289 5290 5291 5292 5293 5294 5295 5296 5297 5298 5299 5300 5301 5302 5303 5304 5305 5306 5307 5308 5309 5310 5311 5312 5313 5314 5315 5316 5317 5318 5319 5320 5321 5322 5323 5324 5325 5326 5327 5328 5329 5330 5331 5332 5333 5334 5335 5336 5337 5338 5339 5340 5341 5342 5343 5344 5345 5346 5347 5348 5349 5350 5351 5352 5353 5354 5355 5356 5357 5358 5359 5360 5361 5362 5363 5364 5365 5366 5367 5368 5369 5370 5371 5372 5373 5374 5375 5376 5377 5378 5379 5380 5381 5382 5383 5384 5385 5386 5387 5388 5389 5390 5391 5392 5393 5394 5395 5396 5397 5398 5399 5400 5401 5402 5403 5404 5405 5406 5407 5408 5409 5410 5411 5412 5413 5414 5415 5416 5417 5418 5419 5420 5421 5422 5423 5424 5425 5426 5427 5428 5429 5430 5431 5432 5433 5434 5435 5436 5437 5438 5439 5440 5441 5442 5443 5444 5445 5446 5447 5448 5449 5450 5451 5452 5453 5454 5455 5456 5457 5458 5459 5460 5461 5462 5463 5464 5465 5466 5467 5468 5469 5470 5471 5472 5473 5474 5475 5476 5477 5478 5479 5480 5481 5482 5483 5484 5485 5486 5487 5488 5489 5490 5491 5492 5493 5494 5495 5496 5497 5498 5499 5500 5501 5502 5503 5504 5505 5506 5507 5508 5509 5510 5511 5512 5513 5514 5515 5516 5517 5518 5519 5520 5521 5522 5523 5524 5525 5526 5527 5528 5529 5530 5531 5532 5533 5534 5535 5536 5537 5538 5539 5540 5541 5542 5543 5544 5545 5546 5547 5548 5549 5550 5551 5552 5553 5554 5555 5556 5557 5558 5559 5560 5561 5562 5563 5564 5565 5566 5567 5568 5569 5570 5571 5572 5573 5574 5575 5576 5577 5578 5579 5580 5581 5582 5583 5584 5585 5586 5587 5588 5589 5590 5591 5592 5593 5594 5595 5596 5597 5598 5599 5600 5601 5602 5603 5604 5605 5606 5607 5608 5609 5610 5611 5612 5613 5614 5615 5616 5617 5618 5619 5620 5621 5622 5623 5624 5625 5626 5627 5628 5629 5630 5631 5632 5633 5634 5635 5636 5637 5638 5639 5640 5641 5642 5643 5644 5645 5646 5647 5648 5649 5650 5651 5652 5653 5654 5655 5656 5657 5658 5659 5660 5661 5662 5663 5664 5665 5666 5667 5668 5669 5670 5671 5672 5673 5674 5675 5676 5677 5678 5679 5680 5681 5682 5683 5684 5685 5686 5687 5688 5689 5690 5691 5692 5693 5694 5695 5696 5697 5698 5699 5700 5701 5702 5703 5704 5705 5706 5707 5708 5709 5710 5711 5712 5713 5714 5715 5716 5717 5718 5719 5720 5721 5722 5723 5724 5725 5726 5727 5728 5729 5730 5731 5732 5733 5734 5735 5736 5737 5738 5739 5740 5741 5742 5743 5744 5745 5746 5747 5748 5749 5750 5751 5752 5753 5754 5755 5756 5757 5758 5759 5760 5761 5762 5763 5764 5765 5766 5767 5768 5769 5770 5771 5772 5773 5774 5775 5776 5777 5778 5779 5780 5781 5782 5783 5784 5785 5786 5787 5788 5789 5790 5791 5792 5793 5794 5795 5796 5797 5798 5799 5800 5801 5802 5803 5804 5805 5806 5807 5808 5809 5810 5811 5812 5813 5814 5815 5816 5817 5818 5819 5820 5821 5822 5823 5824 5825 5826 5827 5828 5829 5830 5831 5832 5833 5834 5835 5836 5837 5838 5839 5840 5841 5842 5843 5844 5845 5846 5847 5848 5849 5850 5851 5852 5853 5854 5855 5856 5857 5858 5859 5860 5861 5862 5863 5864 5865 5866 5867 5868 5869 5870 5871 5872 5873 5874 5875 5876 5877 5878 5879 5880 5881 5882 5883 5884 5885 5886 5887 5888 5889 5890 5891 5892 5893 5894 5895 5896 5897 5898 5899 5900 5901 5902 5903 5904 5905 5906 5907 5908 5909 5910 5911 5912 5913 5914 5915 5916 5917 5918 5919 5920 5921 5922 5923 5924 5925 5926 5927 5928 5929 5930 5931 5932 5933 5934 5935 5936 5937 5938 5939 5940 5941 5942 5943 5944 5945 5946 5947 5948 5949 5950 5951 5952 5953 5954 5955 5956 5957 5958 5959 5960 5961 5962 5963 5964 5965 5966 5967 5968 5969 5970 5971 5972 5973 5974 5975 5976 5977 5978 5979 5980 5981 5982 5983 5984 5985 5986 5987 5988 5989 5990 5991 5992 5993 5994 5995 5996 5997 5998 5999 6000 6001 6002 6003 6004 6005 6006 6007 6008 6009 6010 6011 6012 6013 6014 6015 6016 6017 6018 6019 6020 6021 6022 6023 6024 6025 6026 6027 6028 6029 6030 6031 6032 6033 6034 6035 6036 6037 6038 6039 6040 6041 6042 6043 6044 6045 6046 6047 6048 6049 6050 6051 6052 6053 6054 6055 6056 6057 6058 6059 6060 6061 6062 6063 6064 6065 6066 6067 6068 6069 6070 6071 6072 6073 6074 6075 6076 6077 6078 6079 6080 6081 6082 6083 6084 6085 6086 6087 6088 6089 6090 6091 6092 6093 6094 6095 6096 6097 6098 6099 6100 6101 6102 6103 6104 6105 6106 6107 6108 6109 6110 6111 6112 6113 6114 6115 6116 6117 6118 6119 6120 6121 6122 6123 6124 6125 6126 6127 6128 6129 6130 6131 6132 6133 6134 6135 6136 6137 6138 6139 6140 6141 6142 6143 6144 6145 6146 6147 6148 6149 6150 6151 6152 6153 6154 6155 6156 6157 6158 6159 6160 6161 6162 6163 6164 6165 6166 6167 6168 6169 6170 6171 6172 6173 6174 6175 6176 6177 6178 6179 6180 6181 6182 6183 6184 6185 6186 6187 6188 6189 6190 6191 6192 6193 6194 6195 6196 6197 6198 6199 6200 6201 6202 6203 6204 6205 6206 6207 6208 6209 6210 6211 6212 6213 6214 6215 6216 6217 6218 6219 6220 6221 6222 6223 6224 6225 6226 6227 6228 6229 6230 6231 6232 6233 6234 6235 6236 6237 6238 6239 6240 6241 6242 6243 6244 6245 6246 6247 6248 6249 6250 6251 6252 6253 6254 6255 6256 6257 6258 6259 6260 6261 6262 6263 6264 6265 6266 6267 6268 6269 6270 6271 6272 6273 6274 6275 6276 6277 6278 6279 6280 6281 6282 6283 6284 6285 6286 6287 6288 6289 6290 6291 6292 6293 6294 6295 6296 6297 6298 6299 6300 6301 6302 6303 6304 6305 6306 6307 6308 6309 6310 6311 6312 6313 6314 6315 6316 6317 6318 6319 6320 6321 6322 6323 6324 6325 6326 6327 6328 6329 6330 6331 6332 6333 6334 6335 6336 6337 6338 6339 6340 6341 6342 6343 6344 6345 6346 6347 6348 6349 6350 6351 6352 6353 6354 6355 6356 6357 6358 6359 6360 6361 6362 6363 6364 6365 6366 6367 6368 6369 6370 6371 6372 6373 6374 6375 6376 6377 6378 6379 6380 6381 6382 6383 6384 6385 6386 6387 6388 6389 6390 6391 6392 6393 6394 6395 6396 6397 6398 6399 6400 6401 6402 6403 6404 6405 6406 6407 6408 6409 6410 6411 6412 6413 6414 6415 6416 6417 6418 6419 6420 6421 6422 6423 6424 6425 6426 6427 6428 6429 6430 6431 6432 6433 6434 6435 6436 6437 6438 6439 6440 6441 6442 6443 6444 6445 6446 6447 6448 6449 6450 6451 6452 6453 6454 6455 6456 6457 6458 6459 6460 6461 6462 6463 6464 6465 6466 6467 6468 6469 6470 6471 6472 6473 6474 6475 6476 6477 6478 6479 6480 6481 6482 6483 6484 6485 6486 6487 6488 6489 6490 6491 6492 6493 6494 6495 6496 6497 6498 6499 6500 6501 6502 6503 6504 6505 6506 6507 6508 6509 6510 6511 6512 6513 6514 6515 6516 6517 6518 6519 6520 6521 6522 6523 6524 6525 6526 6527 6528 6529 6530 6531 6532 6533 6534 6535 6536 6537 6538 6539 6540 6541 6542 6543 6544 6545 6546 6547 6548 6549 6550 6551 6552 6553 6554 6555 6556 6557 6558 6559 6560 6561 6562 6563 6564 6565 6566 6567 6568 6569 6570 6571 6572 6573 6574 6575 6576 6577 6578 6579 6580 6581 6582 6583 6584 6585 6586 6587 6588 6589 6590 6591 6592 6593 6594 6595 6596 6597 6598 6599 6600 6601 6602 6603 6604 6605 6606 6607 6608 6609 6610 6611 6612 6613 6614 6615 6616 6617 6618 6619 6620 6621 6622 6623 6624 6625 6626 6627 6628 6629 6630 6631 6632 6633 6634 6635 6636 6637 6638 6639 6640 6641 6642 6643 6644 6645 6646 6647 6648 6649 6650 6651 6652 6653 6654 6655 6656 6657 6658 6659 6660 6661 6662 6663 6664 6665 6666 6667 6668 6669 6670 6671 6672 6673 6674 6675 6676 6677 6678 6679 6680 6681 6682 6683 6684 6685 6686 6687 6688 6689 6690 6691 6692 6693 6694 6695 6696 6697 6698 6699 6700 6701 6702 6703 6704 6705 6706 6707 6708 6709 6710 6711 6712 6713 6714 6715 6716 6717 6718 6719 6720 6721 6722 6723 6724 6725 6726 6727 6728 6729 6730 6731 6732 6733 6734 6735 6736 6737 6738 6739 6740 6741 6742 6743 6744 6745 6746 6747 6748 6749 6750 6751 6752 6753 6754 6755 6756 6757 6758 6759 6760 6761 6762 6763 6764 6765 6766 6767 6768 6769 6770 6771 6772 6773 6774 6775 6776 6777 6778 6779 6780 6781 6782 6783 6784 6785 6786 6787 6788 6789 6790 6791 6792 6793 6794 6795 6796 6797 6798 6799 6800 6801 6802 6803 6804 6805 6806 6807 6808 6809 6810 6811 6812 6813 6814 6815 6816 6817 6818 6819 6820 6821 6822 6823 6824 6825 6826 6827 6828 6829 6830 6831 6832 6833 6834 6835 6836 6837 6838 6839 6840 6841 6842 6843 6844 6845 6846 6847 6848 6849 6850 6851 6852 6853 6854 6855 6856 6857 6858 6859 6860 6861 6862 6863 6864 6865 6866 6867 6868 6869 6870 6871 6872 6873 6874 6875 6876 6877 6878 6879 6880 6881 6882 6883 6884 6885 6886 6887 6888 6889 6890 6891 6892 6893 6894 6895 6896 6897 6898 6899 6900 6901 6902 6903 6904 6905 6906 6907 6908 6909 6910 6911 6912 6913 6914 6915 6916 6917 6918 6919 6920 6921 6922 6923 6924 6925 6926 6927 6928 6929 6930 6931 6932 6933 6934 6935 6936 6937 6938 6939 6940 6941 6942 6943 6944 6945 6946 6947 6948 6949 6950 6951 6952 6953 6954 6955 6956 6957 6958 6959 6960 6961 6962 6963 6964 6965 6966 6967 6968 6969 6970 6971 6972 6973 6974 6975 6976 6977 6978 6979 6980 6981 6982 6983 6984 6985 6986 6987 6988 6989 6990 6991 6992 6993 6994 6995 6996 6997 6998 6999 7000 7001 7002 7003 7004 7005 7006 7007 7008 7009 7010 7011 7012 7013 7014 7015 7016 7017 7018 7019 7020 7021 7022 7023 7024 7025 7026 7027 7028 7029 7030 7031 7032 7033 7034 7035 7036 7037 7038 7039 7040 7041 7042 7043 7044 7045 7046 7047 7048 7049 7050 7051 7052 7053 7054 7055 7056 7057 7058 7059 7060 7061 7062 7063 7064 7065 7066 7067 7068 7069 7070 7071 7072 7073 7074 7075 7076 7077 7078 7079 7080 7081 7082 7083 7084 7085 7086 7087 7088 7089 7090 7091 7092 7093 7094 7095 7096 7097 7098 7099 7100 7101 7102 7103 7104 7105 7106 7107 7108 7109 7110 7111 7112 7113 7114 7115 7116 7117 7118 7119 7120 7121 7122 7123 7124 7125 7126 7127 7128 7129 7130 7131 7132 7133 7134 7135 7136 7137 7138 7139 7140 7141 7142 7143 7144 7145 7146 7147 7148 7149 7150 7151 7152 7153 7154 7155 7156 7157 7158 7159 7160 7161 7162 7163 7164 7165 7166 7167 7168 7169 7170 7171 7172 7173 7174 7175 7176 7177 7178 7179 7180 7181 7182 7183 7184 7185 7186 7187 7188 7189 7190 7191 7192 7193 7194 7195 7196 7197 7198 7199 7200 7201 7202 7203 7204 7205 7206 7207 7208 7209 7210 7211 7212 7213 7214 7215 7216 7217 7218 7219 7220 7221 7222 7223 7224 7225 7226 7227 7228 7229 7230 7231 7232 7233 7234 7235 7236 7237 7238 7239 7240 7241 7242 7243 7244 7245 7246 7247 7248 7249 7250 7251 7252 7253 7254 7255 7256 7257 7258 7259 7260 7261 7262 7263 7264 7265 7266 7267 7268 7269 7270 7271 7272 7273 7274 7275 7276 7277 7278 7279 7280 7281 7282 7283 7284 7285 7286 7287 7288 7289 7290 7291 7292 7293 7294 7295 7296 7297 7298 7299 7300 7301 7302 7303 7304 7305 7306 7307 7308 7309 7310 7311 7312 7313 7314 7315 7316 7317 7318 7319 7320 7321 7322 7323 7324 7325 7326 7327 7328 7329 7330 7331 7332 7333 7334 7335 7336 7337 7338 7339 7340 7341 7342 7343 7344 7345 7346 7347 7348 7349 7350 7351 7352 7353 7354 7355 7356 7357 7358 7359 7360 7361 7362 7363 7364 7365 7366 7367 7368 7369 7370 7371 7372 7373 7374 7375 7376 7377 7378 7379 7380 7381 7382 7383 7384 7385 7386 7387 7388 7389 7390 7391 7392 7393 7394 7395 7396 7397 7398 7399 7400 7401 7402 7403 7404 7405 7406 7407 7408 7409 7410 7411 7412 7413 7414 7415 7416 7417 7418 7419 7420 7421 7422 7423 7424 7425 7426 7427 7428 7429 7430 7431 7432 7433 7434 7435 7436 7437 7438 7439 7440 7441 7442 7443 7444 7445 7446 7447 7448 7449 7450 7451 7452 7453 7454 7455 7456 7457 7458 7459 7460 7461 7462 7463 7464 7465 7466 7467 7468 7469 7470 7471 7472 7473 7474 7475 7476 7477 7478 7479 7480 7481 7482 7483 7484 7485 7486 7487 7488 7489 7490 7491 7492 7493 7494 7495 7496 7497 7498 7499 7500 7501 7502 7503 7504 7505 7506 7507 7508 7509 7510 7511 7512 7513 7514 7515 7516 7517 7518 7519 7520 7521 7522 7523 7524 7525 7526 7527 7528 7529 7530 7531 7532 7533 7534 7535 7536 7537 7538 7539 7540 7541 7542 7543 7544 7545 7546 7547 7548 7549 7550 7551 7552 7553 7554 7555 7556 7557 7558 7559 7560 7561 7562 7563 7564 7565 7566 7567 7568 7569 7570 7571 7572 7573 7574 7575 7576 7577 7578 7579 7580 7581 7582 7583 7584 7585 7586 7587 7588 7589 7590 7591 7592 7593 7594 7595 7596 7597 7598 7599 7600 7601 7602 7603 7604 7605 7606 7607 7608 7609 7610 7611 7612 7613 7614 7615 7616 7617 7618 7619 7620 7621 7622 7623 7624 7625 7626 7627 7628 7629 7630 7631 7632 7633 7634 7635 7636 7637 7638 7639 7640 7641 7642 7643 7644 7645 7646 7647 7648 7649 7650 7651 7652 7653 7654 7655 7656 7657 7658 7659 7660 7661 7662 7663 7664 7665 7666 7667 7668 7669 7670 7671 7672 7673 7674 7675 7676 7677 7678 7679 7680 7681 7682 7683 7684 7685 7686 7687 7688 7689 7690 7691 7692 7693 7694 7695 7696 7697 7698 7699 7700 7701 7702 7703 7704 7705 7706 7707 7708 7709 7710 7711 7712 7713 7714 7715 7716 7717 7718 7719 7720 7721 7722 7723 7724 7725 7726 7727 7728 7729 7730 7731 7732 7733 7734 7735 7736 7737 7738 7739 7740 7741 7742 7743 7744 7745 7746 7747 7748 7749 7750 7751 7752 7753 7754 7755 7756 7757 7758 7759 7760 7761 7762 7763 7764 7765 7766 7767 7768 7769 7770 7771 7772 7773 7774 7775 7776 7777 7778 7779 7780 7781 7782 7783 7784 7785 7786 7787 7788 7789 7790 7791 7792 7793 7794 7795 7796 7797 7798 7799 7800 7801 7802 7803 7804 7805 7806 7807 7808 7809 7810 7811 7812 7813 7814 7815 7816 7817 7818 7819 7820 7821 7822 7823 7824 7825 7826 7827 7828 7829 7830 7831 7832 7833 7834 7835 7836 7837 7838 7839 7840 7841 7842 7843 7844 7845 7846 7847 7848 7849 7850 7851 7852 7853 7854 7855 7856 7857 7858 7859 7860 7861 7862 7863 7864 7865 7866 7867 7868 7869 7870 7871 7872 7873 7874 7875 7876 7877 7878 7879 7880 7881 7882 7883 7884 7885 7886 7887 7888 7889 7890 7891 7892 7893 7894 7895 7896 7897 7898 7899 7900 7901 7902 7903 7904 7905 7906 7907 7908 7909 7910 7911 7912 7913 7914 7915 7916 7917 7918 7919 7920 7921 7922 7923 7924 7925 7926 7927 7928 7929 7930 7931 7932 7933 7934 7935 7936 7937 7938 7939 7940 7941 7942 7943 7944 7945 7946 7947 7948 7949 7950 7951 7952 7953 7954 7955 7956 7957 7958 7959 7960 7961 7962 7963 7964 7965 7966 7967 7968 7969 7970 7971 7972 7973 7974 7975 7976 7977 7978 7979 7980 7981 7982 7983 7984 7985 7986 7987 7988 7989 7990 7991 7992 7993 7994 7995 7996 7997 7998 7999 8000 8001 8002 8003 8004 8005 8006 8007 8008 8009 8010 8011 8012 8013 8014 8015 8016 8017 8018 8019 8020 8021 8022 8023 8024 8025 8026 8027 8028 8029 8030 8031 8032 8033 8034 8035 8036 8037 8038 8039 8040 8041 8042 8043 8044 8045 8046 8047 8048 8049 8050 8051 8052 8053 8054 8055 8056 8057 8058 8059 8060 8061 8062 8063 8064 8065 8066 8067 8068 8069 8070 8071 8072 8073 8074 8075 8076 8077 8078 8079 8080 8081 8082 8083 8084 8085 8086 8087 8088 8089 8090 8091 8092 8093 8094 8095 8096 8097 8098 8099 8100 8101 8102 8103 8104 8105 8106 8107 8108 8109 8110 8111 8112 8113 8114 8115 8116 8117 8118 8119 8120 8121 8122 8123 8124 8125 8126 8127 8128 8129 8130 8131 8132 8133 8134 8135 8136 8137 8138 8139 8140 8141 8142 8143 8144 8145 8146 8147 8148 8149 8150 8151 8152 8153 8154 8155 8156 8157 8158 8159 8160 8161 8162 8163 8164 8165 8166 8167 8168 8169 8170 8171 8172 8173 8174 8175 8176 8177 8178 8179 8180 8181 8182 8183 8184 8185 8186 8187 8188 8189 8190 8191 8192 8193 8194 8195 8196 8197 8198 8199 8200 8201 8202 8203 8204 8205 8206 8207 8208 8209 8210 8211 8212 8213 8214 8215 8216 8217 8218 8219 8220 8221 8222 8223 8224 8225 8226 8227 8228 8229 8230 8231 8232 8233 8234 8235 8236 8237 8238 8239 8240 8241 8242 8243 8244 8245 8246 8247 8248 8249 8250 8251 8252 8253 8254 8255 8256 8257 8258 8259 8260 8261 8262 8263 8264 8265 8266 8267 8268 8269 8270 8271 8272 8273 8274 8275 8276 8277 8278 8279 8280 8281 8282 8283 8284 8285 8286 8287 8288 8289 8290 8291 8292 8293 8294 8295 8296 8297 8298 8299 8300 8301 8302 8303 8304 8305 8306 8307 8308 8309 8310 8311 8312 8313 8314 8315 8316 8317 8318 8319 8320 8321 8322 8323 8324 8325 8326 8327 8328 8329 8330 8331 8332 8333 8334 8335 8336 8337 8338 8339 8340 8341 8342 8343 8344 8345 8346 8347 8348 8349 8350 8351 8352 8353 8354 8355 8356 8357 8358 8359 8360 8361 8362 8363 8364 8365 8366 8367 8368 8369 8370 8371 8372 8373 8374 8375 8376 8377 8378 8379 8380 8381 8382 8383 8384 8385 8386 8387 8388 8389 8390 8391 8392 8393 8394 8395 8396 8397 8398 8399 8400 8401 8402 8403 8404 8405 8406 8407 8408 8409 8410 8411 8412 8413 8414 8415 8416 8417 8418 8419 8420 8421 8422 8423 8424 8425 8426 8427 8428 8429 8430 8431 8432 8433 8434 8435 8436 8437 8438 8439 8440 8441 8442 8443 8444 8445 8446 8447 8448 8449 8450 8451 8452 8453 8454 8455 8456 8457 8458 8459 8460 8461 8462 8463 8464 8465 8466 8467 8468 8469 8470 8471 8472 8473 8474 8475 8476 8477 8478 8479 8480 8481 8482 8483 8484 8485 8486 8487 8488 8489 8490 8491 8492 8493 8494 8495 8496 8497 8498 8499 8500 8501 8502 8503 8504 8505 8506 8507 8508 8509 8510 8511 8512 8513 8514 8515 8516 8517 8518 8519 8520 8521 8522 8523 8524 8525 8526 8527 8528 8529 8530 8531 8532 8533 8534 8535 8536 8537 8538 8539 8540 8541 8542 8543 8544 8545 8546 8547 8548 8549 8550 8551 8552 8553 8554 8555 8556 8557 8558 8559 8560 8561 8562 8563 8564 8565 8566 8567 8568 8569 8570 8571 8572 8573 8574 8575 8576 8577 8578 8579 8580 8581 8582 8583 8584 8585 8586 8587 8588 8589 8590 8591 8592 8593 8594 8595 8596 8597 8598 8599 8600 8601 8602 8603 8604 8605 8606 8607 8608 8609 8610 8611 8612 8613 8614 8615 8616 8617 8618 8619 8620 8621 8622 8623 8624 8625 8626 8627 8628 8629 8630 8631 8632 8633 8634 8635 8636 8637 8638 8639 8640 8641 8642 8643 8644 8645 8646 8647 8648 8649 8650 8651 8652 8653 8654 8655 8656 8657 8658 8659 8660 8661 8662 8663 8664 8665 8666 8667 8668 8669 8670 8671 8672 8673 8674 8675 8676 8677 8678 8679 8680 8681 8682 8683 8684 8685 8686 8687 8688 8689 8690 8691 8692 8693 8694 8695 8696 8697 8698 8699 8700 8701 8702 8703 8704 8705 8706 8707 8708 8709 8710 8711 8712 8713 8714 8715 8716 8717 8718 8719 8720 8721 8722 8723 8724 8725 8726 8727 8728 8729 8730 8731 8732 8733 8734 8735 8736 8737 8738 8739 8740 8741 8742 8743 8744 8745 8746 8747 8748 8749 8750 8751 8752 8753 8754 8755 8756 8757 8758 8759 8760 8761 8762 8763 8764 8765 8766 8767 8768 8769 8770 8771 8772 8773 8774 8775 8776 8777 8778 8779 8780 8781 8782 8783 8784 8785 8786 8787 8788 8789 8790 8791 8792 8793 8794 8795 8796 8797 8798 8799 8800 8801 8802 8803 8804 8805 8806 8807 8808 8809 8810 8811 8812 8813 8814 8815 8816 8817 8818 8819 8820 8821 8822 8823 8824 8825 8826 8827 8828 8829 8830 8831 8832 8833 8834 8835 8836 8837 8838 8839 8840 8841 8842 8843 8844 8845 8846 8847 8848 8849 8850 8851 8852 8853 8854 8855 8856 8857 8858 8859 8860 8861 8862 8863 8864 8865 8866 8867 8868 8869 8870 8871 8872 8873 8874 8875 8876 8877 8878 8879 8880 8881 8882 8883 8884 8885 8886 8887 8888 8889 8890 8891 8892 8893 8894 8895 8896 8897 8898 8899 8900 8901 8902 8903 8904 8905 8906 8907 8908 8909 8910 8911 8912 8913 8914 8915 8916 8917 8918 8919 8920 8921 8922 8923 8924 8925 8926 8927 8928 8929 8930 8931 8932 8933 8934 8935 8936 8937 8938 8939 8940 8941 8942 8943 8944 8945 8946 8947 8948 8949 8950 8951 8952 8953 8954 8955 8956 8957 8958 8959 8960 8961 8962 8963 8964 8965 8966 8967 8968 8969 8970 8971 8972 8973 8974 8975 8976 8977 8978 8979 8980 8981 8982 8983 8984 8985 8986 8987 8988 8989 8990 8991 8992 8993 8994 8995 8996 8997 8998 8999 9000 9001 9002 9003 9004 9005 9006 9007 9008 9009 9010 9011 9012 9013 9014 9015 9016 9017 9018 9019 9020 9021 9022 9023 9024 9025 9026 9027 9028 9029 9030 9031 9032 9033 9034 9035 9036 9037 9038 9039 9040 9041 9042 9043 9044 9045 9046 9047 9048 9049 9050 9051 9052 9053 9054 9055 9056 9057 9058 9059 9060 9061 9062 9063 9064 9065 9066 9067 9068 9069 9070 9071 9072 9073 9074 9075 9076 9077 9078 9079 9080 9081 9082 9083 9084 9085 9086 9087 9088 9089 9090 9091 9092 9093 9094 9095 9096 9097 9098 9099 9100 9101 9102 9103 9104 9105 9106 9107 9108 9109 9110 9111 9112 9113 9114 9115 9116 9117 9118 9119 9120 9121 9122 9123 9124 9125 9126 9127 9128 9129 9130 9131 9132 9133 9134 9135 9136 9137 9138 9139 9140 9141 9142 9143 9144 9145 9146 9147 9148 9149 9150 9151 9152 9153 9154 9155 9156 9157 9158 9159 9160 9161 9162 9163 9164 9165 9166 9167 9168 9169 9170 9171 9172 9173 9174 9175 9176 9177 9178 9179 9180 9181 9182 9183 9184 9185 9186 9187 9188 9189 9190 9191 9192 9193 9194 9195 9196 9197 9198 9199 9200 9201 9202 9203 9204 9205 9206 9207 9208 9209 9210 9211 9212 9213 9214 9215 9216 9217 9218 9219 9220 9221 9222 9223 9224 9225 9226 9227 9228 9229 9230 9231 9232 9233 9234 9235 9236 9237 9238 9239 9240 9241 9242 9243 9244 9245 9246 9247 9248 9249 9250 9251 9252 9253 9254 9255 9256 9257 9258 9259 9260 9261 9262 9263 9264 9265 9266 9267 9268 9269 9270 9271 9272 9273 9274 9275 9276 9277 9278 9279 9280 9281 9282 9283 9284 9285 9286 9287 9288 9289 9290 9291 9292 9293 9294 9295 9296 9297 9298 9299 9300 9301 9302 9303 9304 9305 9306 9307 9308 9309 9310 9311 9312 9313 9314 9315 9316 9317 9318 9319 9320 9321 9322 9323 9324 9325 9326 9327 9328 9329 9330 9331 9332 9333 9334 9335 9336 9337 9338 9339 9340 9341 9342 9343 9344 9345 9346 9347 9348 9349 9350 9351 9352 9353 9354 9355 9356 9357 9358 9359 9360 9361 9362 9363 9364 9365 9366 9367 9368 9369 9370 9371 9372 9373 9374 9375 9376 9377 9378 9379 9380 9381 9382 9383 9384 9385 9386 9387 9388 9389 9390 9391 9392 9393 9394 9395 9396 9397 9398 9399 9400 9401 9402 9403 9404 9405 9406 9407 9408 9409 9410 9411 9412 9413 9414 9415 9416 9417 9418 9419 9420 9421 9422 9423 9424 9425 9426 9427 9428 9429 9430 9431 9432 9433 9434 9435 9436 9437 9438 9439 9440 9441 9442 9443 9444 9445 9446 9447 9448 9449 9450 9451 9452 9453 9454 9455 9456 9457 9458 9459 9460 9461 9462 9463 9464 9465 9466 9467 9468 9469 9470 9471 9472 9473 9474 9475 9476 9477 9478 9479 9480 9481 9482 9483 9484 9485 9486 9487 9488 9489 9490 9491 9492 9493 9494 9495 9496 9497 9498 9499 9500 9501 9502 9503 9504 9505 9506 9507 9508 9509 9510 9511 9512 9513 9514 9515 9516 9517 9518 9519 9520 9521 9522 9523 9524 9525 9526 9527 9528 9529 9530 9531 9532 9533 9534 9535 9536 9537 9538 9539 9540 9541 9542 9543 9544 9545 9546 9547 9548 9549 9550 9551 9552 9553 9554 9555 9556 9557 9558 9559 9560 9561 9562 9563 9564 9565 9566 9567 9568 9569 9570 9571 9572 9573 9574 9575 9576 9577 9578 9579 9580 9581 9582 9583 9584 9585 9586 9587 9588 9589 9590 9591 9592 9593 9594 9595 9596 9597 9598 9599 9600 9601 9602 9603 9604 9605 9606 9607 9608 9609 9610 9611 9612 9613 9614 9615 9616 9617 9618 9619 9620 9621 9622 9623 9624 9625 9626 9627 9628 9629 9630 9631 9632 9633 9634 9635 9636 9637 9638 9639 9640 9641 9642 9643 9644 9645 9646 9647 9648 9649 9650 9651 9652 9653 9654 9655 9656 9657 9658 9659 9660 9661 9662 9663 9664 9665 9666 9667 9668 9669 9670 9671 9672 9673 9674 9675 9676 9677 9678 9679 9680 9681 9682 9683 9684 9685 9686 9687 9688 9689 9690 9691 9692 9693 9694 9695 9696 9697 9698 9699 9700 9701 9702 9703 9704 9705 9706 9707 9708 9709 9710 9711 9712 9713 9714 9715 9716 9717 9718 9719 9720 9721 9722 9723 9724 9725 9726 9727 9728 9729 9730 9731 9732 9733 9734 9735 9736 9737 9738 9739 9740 9741 9742 9743 9744 9745 9746 9747 9748 9749 9750 9751 9752 9753 9754 9755 9756 9757 9758 9759 9760 9761 9762 9763 9764 9765 9766 9767 9768 9769 9770 9771 9772 9773 9774 9775 9776 9777 9778 9779 9780 9781 9782 9783 9784 9785 9786 9787 9788 9789 9790 9791 9792 9793 9794 9795 9796 9797 9798 9799 9800 9801 9802 9803 9804 9805 9806 9807 9808 9809 9810 9811 9812 9813 9814 9815 9816 9817 9818 9819 9820 9821 9822 9823 9824 9825 9826 9827 9828 9829 9830 9831 9832 9833 9834 9835 9836 9837 9838 9839 9840 9841 9842 9843 9844 9845 9846 9847 9848 9849 9850 9851 9852 9853 9854 9855 9856 9857 9858 9859 9860 9861 9862 9863 9864 9865 9866 9867 9868 9869 9870 9871 9872 9873 9874 9875 9876 9877 9878 9879 9880 9881 9882 9883 9884 9885 9886 9887 9888 9889 9890 9891 9892 9893 9894 9895 9896 9897 9898 9899 9900 9901 9902 9903 9904 9905 9906 9907 9908 9909 9910 9911 9912 9913 9914 9915 9916 9917 9918 9919 9920 9921 9922 9923 9924 9925 9926 9927 9928 9929 9930 9931 9932 9933 9934 9935 9936 9937 9938 9939 9940 9941 9942 9943 9944 9945 9946 9947 9948 9949 9950 9951 9952 9953 9954 9955 9956 9957 9958 9959 9960 9961 9962 9963 9964 9965 9966 9967 9968 9969 9970 9971 9972 9973 9974 9975 9976 9977 9978 9979 9980 9981 9982 9983 9984 9985 9986 9987 9988 9989 9990 9991 9992 9993 9994 9995 9996 9997 9998 9999 10000 10001 10002 10003 10004 10005 10006 10007 10008 10009 10010 10011 10012 10013 10014 10015 10016 10017 10018 10019 10020 10021 10022 10023 10024 10025 10026 10027 10028 10029 10030 10031 10032 10033 10034 10035 10036 10037 10038 10039 10040 10041 10042 10043 10044 10045 10046 10047 10048 10049 10050 10051 10052 10053 10054 10055 10056 10057 10058 10059 10060 10061 10062 10063 10064 10065 10066 10067 10068 10069 10070 10071 10072 10073 10074 10075 10076 10077 10078 10079 10080 10081 10082 10083 10084 10085 10086 10087 10088 10089 10090 10091 10092 10093 10094 10095 10096 10097 10098 10099 10100 10101 10102 10103 10104 10105 10106 10107 10108 10109 10110 10111 10112 10113 10114 10115 10116 10117 10118 10119 10120 10121 10122 10123 10124 10125 10126 10127 10128 10129 10130 10131 10132 10133 10134 10135 10136 10137 10138 10139 10140 10141 10142 10143 10144 10145 10146 10147 10148 10149 10150 10151 10152 10153 10154 10155 10156 10157 10158 10159 10160 10161 10162 10163 10164 10165 10166 10167 10168 10169 10170 10171 10172 10173 10174 10175 10176 10177 10178 10179 10180 10181 10182 10183 10184 10185 10186 10187 10188 10189 10190 10191 10192 10193 10194 10195 10196 10197 10198 10199 10200 10201 10202 10203 10204 10205 10206 10207 10208 10209 10210 10211 10212 10213 10214 10215 10216 10217 10218 10219 10220 10221 10222 10223 10224 10225 10226 10227 10228 10229 10230 10231 10232 10233 10234 10235 10236 10237 10238 10239 10240 10241 10242 10243 10244 10245 10246 10247 10248 10249 10250 10251 10252 10253 10254 10255 10256 10257 10258 10259 10260 10261 10262 10263 10264 10265 10266 10267 10268 10269 10270 10271 10272 10273 10274 10275 10276 10277 10278 10279 10280 10281 10282 10283 10284 10285 10286 10287 10288 10289 10290 10291 10292 10293 10294 10295 10296 10297 10298 10299 10300 10301 10302 10303 10304 10305 10306 10307 10308 10309 10310 10311 10312 10313 10314 10315 10316 10317 10318 10319 10320 10321 10322 10323 10324 10325 10326 10327 10328 10329 10330 10331 10332 10333 10334 10335 10336 10337 10338 10339 10340 10341 10342 10343 10344 10345 10346 10347 10348 10349 10350 10351 10352 10353 10354 10355 10356 10357 10358 10359 10360 10361 10362 10363 10364 10365 10366 10367 10368 10369 10370 10371 10372 10373 10374 10375 10376 10377 10378 10379 10380 10381 10382 10383 10384 10385 10386 10387 10388 10389 10390 10391 10392 10393 10394 10395 10396 10397 10398 10399 10400 10401 10402 10403 10404 10405 10406 10407 10408 10409 10410 10411 10412 10413 10414 10415 10416 10417 10418 10419 10420 10421 10422 10423 10424 10425 10426 10427 10428 10429 10430 10431 10432 10433 10434 10435 10436 10437 10438 10439 10440 10441 10442 10443 10444 10445 10446 10447 10448 10449 10450 10451 10452 10453 10454 10455 10456 10457 10458 10459 10460 10461 10462 10463 10464 10465 10466 10467 10468 10469 10470 10471 10472 10473 10474 10475 10476 10477 10478 10479 10480 10481 10482 10483 10484 10485 10486 10487 10488 10489 10490 10491 10492 10493 10494 10495 10496 10497 10498 10499 10500 10501 10502 10503 10504 10505 10506 10507 10508 10509 10510 10511 10512 10513 10514 10515 10516 10517 10518 10519 10520 10521 10522 10523 10524 10525 10526 10527 10528 10529 10530 10531 10532 10533 10534 10535 10536 10537 10538 10539 10540 10541 10542 10543 10544 10545 10546 10547 10548 10549 10550 10551 10552 10553 10554 10555 10556 10557 10558 10559 10560 10561 10562 10563 10564 10565 10566 10567 10568 10569 10570 10571 10572 10573 10574 10575 10576 10577 10578 10579 10580 10581 10582 10583 10584 10585 10586 10587 10588 10589 10590 10591 10592 10593 10594 10595 10596 10597 10598 10599 10600 10601 10602 10603 10604 10605 10606 10607 10608 10609 10610 10611 10612 10613 10614 10615 10616 10617 10618 10619 10620 10621 10622 10623 10624 10625 10626 10627 10628 10629 10630 10631 10632 10633 10634 10635 10636 10637 10638 10639 10640 10641 10642 10643 10644 10645 10646 10647 10648 10649 10650 10651 10652 10653 10654 10655 10656 10657 10658 10659 10660 10661 10662 10663 10664 10665 10666 10667 10668 10669 10670 10671 10672 10673 10674 10675 10676 10677 10678 10679 10680 10681 10682 10683 10684 10685 10686 10687 10688 10689 10690 10691 10692 10693 10694 10695 10696 10697 10698 10699 10700 10701 10702 10703 10704 10705 10706 10707 10708 10709 10710 10711 10712 10713 10714 10715 10716 10717 10718 10719 10720 10721 10722 10723 10724 10725 10726 10727 10728 10729 10730 10731 10732 10733 10734 10735 10736 10737 10738 10739 10740 10741 10742 10743 10744 10745 10746 10747 10748 10749 10750 10751 10752 10753 10754 10755 10756 10757 10758 10759 10760 10761 10762 10763 10764 10765 10766 10767 10768 10769 10770 10771 10772 10773 10774 10775 10776 10777 10778 10779 10780 10781 10782 10783 10784 10785 10786 10787 10788 10789 10790 10791 10792 10793 10794 10795 10796 10797 10798 10799 10800 10801 10802 10803 10804 10805 10806 10807 10808 10809 10810 10811 10812 10813 10814 10815 10816 10817 10818 10819 10820 10821 10822 10823 10824 10825 10826 10827 10828 10829 10830 10831 10832 10833 10834 10835 10836 10837 10838 10839 10840 10841 10842 10843 10844 10845 10846 10847 10848 10849 10850 10851 10852 10853 10854 10855 10856 10857 10858 10859 10860 10861 10862 10863 10864 10865 10866 10867 10868 10869 10870 10871 10872 10873 10874 10875 10876 10877 10878 10879 10880 10881 10882 10883 10884 10885 10886 10887 10888 10889 10890 10891 10892 10893 10894 10895 10896 10897 10898 10899 10900 10901 10902 10903 10904 10905 10906 10907 10908 10909 10910 10911 10912 10913 10914 10915 10916 10917 10918 10919 10920 10921 10922 10923 10924 10925 10926 10927 10928 10929 10930 10931 10932 10933 10934 10935 10936 10937 10938 10939 10940 10941 10942 10943 10944 10945 10946 10947 10948 10949 10950 10951 10952 10953 10954 10955 10956 10957 10958 10959 10960 10961 10962 10963 10964 10965 10966 10967 10968 10969 10970 10971 10972 10973 10974 10975 10976 10977 10978 10979 10980 10981 10982 10983 10984 10985 10986 10987 10988 10989 10990 10991 10992 10993 10994 10995 10996 10997 10998 10999 11000 11001 11002 11003 11004 11005 11006 11007 11008 11009 11010 11011 11012 11013 11014 11015 11016 11017 11018 11019 11020 11021 11022 11023 11024 11025 11026 11027 11028 11029 11030 11031 11032 11033 11034 11035 11036 11037 11038 11039 11040 11041 11042 11043 11044 11045 11046 11047 11048 11049 11050 11051 11052 11053 11054 11055 11056 11057 11058 11059 11060 11061 11062 11063 11064 11065 11066 11067 11068 11069 11070 11071 11072 11073 11074 11075 11076 11077 11078 11079 11080 11081 11082 11083 11084 11085 11086 11087 11088 11089 11090 11091 11092 11093 11094 11095 11096 11097 11098 11099 11100 11101 11102 11103 11104 11105 11106 11107 11108 11109 11110 11111 11112 11113 11114 11115 11116 11117 11118 11119 11120 11121 11122 11123 11124 11125 11126 11127 11128 11129 11130 11131 11132 11133 11134 11135 11136 11137 11138 11139 11140 11141 11142 11143 11144 11145 11146 11147 11148 11149 11150 11151 11152 11153 11154 11155 11156 11157 11158 11159 11160 11161 11162 11163 11164 11165 11166 11167 11168 11169 11170 11171 11172 11173 11174 11175 11176 11177 11178 11179 11180 11181 11182 11183 11184 11185 11186 11187 11188 11189 11190 11191 11192 11193 11194 11195 11196 11197 11198 11199 11200 11201 11202 11203 11204 11205 11206 11207 11208 11209 11210 11211 11212 11213 11214 11215 11216 11217 11218 11219 11220 11221 11222 11223 11224 11225 11226 11227 11228 11229 11230 11231 11232 11233 11234 11235 11236 11237 11238 11239 11240 11241 11242 11243 11244 11245 11246 11247 11248 11249 11250 11251 11252 11253 11254 11255 11256 11257 11258 11259 11260 11261 11262 11263 11264 11265 11266 11267 11268 11269 11270 11271 11272 11273 11274 11275 11276 11277 11278 11279 11280 11281 11282 11283 11284 11285 11286 11287 11288 11289 11290 11291 11292 11293 11294 11295 11296 11297 11298 11299 11300 11301 11302 11303 11304 11305 11306 11307 11308 11309 11310 11311 11312 11313 11314 11315 11316 11317 11318 11319 11320 11321 11322 11323 11324 11325 11326 11327 11328 11329 11330 11331 11332 11333 11334 11335 11336 11337 11338 11339 11340 11341 11342 11343 11344 11345 11346 11347 11348 11349 11350 11351 11352 11353 11354 11355 11356 11357 11358 11359 11360 11361 11362 11363 11364 11365 11366 11367 11368 11369 11370 11371 11372 11373 11374 11375 11376 11377 11378 11379 11380 11381 11382 11383 11384 11385 11386 11387 11388 11389 11390 11391 11392 11393 11394 11395 11396 11397 11398 11399 11400 11401 11402 11403 11404 11405 11406 11407 11408 11409 11410 11411 11412 11413 11414 11415 11416 11417 11418 11419 11420 11421 11422 11423 11424 11425 11426 11427 11428 11429 11430 11431 11432 11433 11434 11435 11436 11437 11438 11439 11440 11441 11442 11443 11444 11445 11446 11447 11448 11449 11450 11451 11452 11453 11454 11455 11456 11457 11458 11459 11460 11461 11462 11463 11464 11465 11466 11467 11468 11469 11470 11471 11472 11473 11474 11475 11476 11477 11478 11479 11480 11481 11482 11483 11484 11485 11486 11487 11488 11489 11490 11491 11492 11493 11494 11495 11496 11497 11498 11499 11500 11501 11502 11503 11504 11505 11506 11507 11508 11509 11510 11511 11512 11513 11514 11515 11516 11517 11518 11519 11520 11521 11522 11523 11524 11525 11526 11527 11528 11529 11530 11531 11532 11533 11534 11535 11536 11537 11538 11539 11540 11541 11542 11543 11544 11545 11546 11547 11548 11549 11550 11551 11552 11553 11554 11555 11556 11557 11558 11559 11560 11561 11562 11563 11564 11565 11566 11567 11568 11569 11570 11571 11572 11573 11574 11575 11576 11577 11578 11579 11580 11581 11582 11583 11584 11585 11586 11587 11588 11589 11590 11591 11592 11593 11594 11595 11596 11597 11598 11599 11600 11601 11602 11603 11604 11605 11606 11607 11608 11609 11610 11611 11612 11613 11614 11615 11616 11617 11618 11619 11620 11621 11622 11623 11624 11625 11626 11627 11628 11629 11630 11631 11632 11633 11634 11635 11636 11637 11638 11639 11640 11641 11642 11643 11644 11645 11646 11647 11648 11649 11650 11651 11652 11653 11654 11655 11656 11657 11658 11659 11660 11661 11662 11663 11664 11665 11666 11667 11668 11669 11670 11671 11672 11673 11674 11675 11676 11677 11678 11679 11680 11681 11682 11683 11684 11685 11686 11687 11688 11689 11690 11691 11692 11693 11694 11695 11696 11697 11698 11699 11700 11701 11702 11703 11704 11705 11706 11707 11708 11709 11710 11711 11712 11713 11714 11715 11716 11717 11718 11719 11720 11721 11722 11723 11724 11725 11726 11727 11728 11729 11730 11731 11732 11733 11734 11735 11736 11737 11738 11739 11740 11741 11742 11743 11744 11745 11746 11747 11748 11749 11750 11751 11752 11753 11754 11755 11756 11757 11758 11759 11760 11761 11762 11763 11764 11765 11766 11767 11768 11769 11770 11771 11772 11773 11774 11775 11776 11777 11778 11779 11780 11781 11782 11783 11784 11785 11786 11787 11788 11789 11790 11791 11792 11793 11794 11795 11796 11797 11798 11799 11800 11801 11802 11803 11804 11805 11806 11807 11808 11809 11810 11811 11812 11813 11814 11815 11816 11817 11818 11819 11820 11821 11822 11823 11824 11825 11826 11827 11828 11829 11830 11831 11832 11833 11834 11835 11836 11837 11838 11839 11840 11841 11842 11843 11844 11845 11846 11847 11848 11849 11850 11851 11852 11853 11854 11855 11856 11857 11858 11859 11860 11861 11862 11863 11864 11865 11866 11867 11868 11869 11870 11871 11872 11873 11874 11875 11876 11877 11878 11879 11880 11881 11882 11883 11884 11885 11886 11887 11888 11889 11890 11891 11892 11893 11894 11895 11896 11897 11898 11899 11900 11901 11902 11903 11904 11905 11906 11907 11908 11909 11910 11911 11912 11913 11914 11915 11916 11917 11918 11919 11920 11921 11922 11923 11924 11925 11926 11927 11928 11929 11930 11931 11932 11933 11934 11935 11936 11937 11938 11939 11940 11941 11942 11943 11944 11945 11946 11947 11948 11949 11950 11951 11952 11953 11954 11955 11956 11957 11958 11959 11960 11961 11962 11963 11964 11965 11966 11967 11968 11969 11970 11971 11972 11973 11974 11975 11976 11977 11978 11979 11980 11981 11982 11983 11984 11985 11986 11987 11988 11989 11990 11991 11992 11993 11994 11995 11996 11997 11998 11999 12000 12001 12002 12003 12004 12005 12006 12007 12008 12009 12010 12011 12012 12013 12014 12015 12016 12017 12018 12019 12020 12021 12022 12023 12024 12025 12026 12027 12028 12029 12030 12031 12032 12033 12034 12035 12036 12037 12038 12039 12040 12041 12042 12043 12044 12045 12046 12047 12048 12049 12050 12051 12052 12053 12054 12055 12056 12057 12058 12059 12060 12061 12062 12063 12064 12065 12066 12067 12068 12069 12070 12071 12072 12073 12074 12075 12076 12077 12078 12079 12080 12081 12082 12083 12084 12085 12086 12087 12088 12089 12090 12091 12092 12093 12094 12095 12096 12097 12098 12099 12100 12101 12102 12103 12104 12105 12106 12107 12108 12109 12110 12111 12112 12113 12114 12115 12116 12117 12118 12119 12120 12121 12122 12123 12124 12125 12126 12127 12128 12129 12130 12131 12132 12133 12134 12135 12136 12137 12138 12139 12140 12141 12142 12143 12144 12145 12146 12147 12148 12149 12150 12151 12152 12153 12154 12155 12156 12157 12158 12159 12160 12161 12162 12163 12164 12165 12166 12167 12168 12169 12170 12171 12172 12173 12174 12175 12176 12177 12178 12179 12180 12181 12182 12183 12184 12185 12186 12187 12188 12189 12190 12191 12192 12193 12194 12195 12196 12197 12198 12199 12200 12201 12202 12203 12204 12205 12206 12207 12208 12209 12210 12211 12212 12213 12214 12215 12216 12217 12218 12219 12220 12221 12222 12223 12224 12225 12226 12227 12228 12229 12230 12231 12232 12233 12234 12235 12236 12237 12238 12239 12240 12241 12242 12243 12244 12245 12246 12247 12248 12249 12250 12251 12252 12253 12254 12255 12256 12257 12258 12259 12260 12261 12262 12263 12264 12265 12266 12267 12268 12269 12270 12271 12272 12273 12274 12275 12276 12277 12278 12279 12280 12281 12282 12283 12284 12285 12286 12287 12288 12289 12290 12291 12292 12293 12294 12295 12296 12297 12298 12299 12300 12301 12302 12303 12304 12305 12306 12307 12308 12309 12310 12311 12312 12313 12314 12315 12316 12317 12318 12319 12320 12321 12322 12323 12324 12325 12326 12327 12328 12329 12330 12331 12332 12333 12334 12335 12336 12337 12338 12339 12340 12341 12342 12343 12344 12345 12346 12347 12348 12349 12350 12351 12352 12353 12354 12355 12356 12357 12358 12359 12360 12361 12362 12363 12364 12365 12366 12367 12368 12369 12370 12371 12372 12373 12374 12375 12376 12377 12378 12379 12380 12381 12382 12383 12384 12385 12386 12387 12388 12389 12390 12391 12392 12393 12394 12395 12396 12397 12398 12399 12400 12401 12402 12403 12404 12405 12406 12407 12408 12409 12410 12411 12412 12413 12414 12415 12416 12417 12418 12419 12420 12421 12422 12423 12424 12425 12426 12427 12428 12429 12430 12431 12432 12433 12434 12435 12436 12437 12438 12439 12440 12441 12442 12443 12444 12445 12446 12447 12448 12449 12450 12451 12452 12453 12454 12455 12456 12457 12458 12459 12460 12461 12462 12463 12464 12465 12466 12467 12468 12469 12470 12471 12472 12473 12474 12475 12476 12477 12478 12479 12480 12481 12482 12483 12484 12485 12486 12487 12488 12489 12490 12491 12492 12493 12494 12495 12496 12497 12498 12499 12500 12501 12502 12503 12504 12505 12506 12507 12508 12509 12510 12511 12512 12513 12514 12515 12516 12517 12518 12519 12520 12521 12522 12523 12524 12525 12526 12527 12528 12529 12530 12531 12532 12533 12534 12535 12536 12537 12538 12539 12540 12541 12542 12543 12544 12545 12546 12547 12548 12549 12550 12551 12552 12553 12554 12555 12556 12557 12558 12559 12560 12561 12562 12563 12564 12565 12566 12567 12568 12569 12570 12571 12572 12573 12574 12575 12576 12577 12578 12579 12580 12581 12582 12583 12584 12585 12586 12587 12588 12589 12590 12591 12592 12593 12594 12595 12596 12597 12598 12599 12600 12601 12602 12603 12604 12605 12606 12607 12608 12609 12610 12611 12612 12613 12614 12615 12616 12617 12618 12619 12620 12621 12622 12623 12624 12625 12626 12627 12628 12629 12630 12631 12632 12633 12634 12635 12636 12637 12638 12639 12640 12641 12642 12643 12644 12645 12646 12647 12648 12649 12650 12651 12652 12653 12654 12655 12656 12657 12658 12659 12660 12661 12662 12663 12664 12665 12666 12667 12668 12669 12670 12671 12672 12673 12674 12675 12676 12677 12678 12679 12680 12681 12682 12683 12684 12685 12686 12687 12688 12689 12690 12691 12692 12693 12694 12695 12696 12697 12698 12699 12700 12701 12702 12703 12704 12705 12706 12707 12708 12709 12710 12711 12712 12713 12714 12715 12716 12717 12718 12719 12720 12721 12722 12723 12724 12725 12726 12727 12728 12729 12730 12731 12732 12733 12734 12735 12736 12737 12738 12739 12740 12741 12742 12743 12744 12745 12746 12747 12748 12749 12750 12751 12752 12753 12754 12755 12756 12757 12758 12759 12760 12761 12762 12763 12764 12765 12766 12767 12768 12769 12770 12771 12772 12773 12774 12775 12776 12777 12778 12779 12780 12781 12782 12783 12784 12785 12786 12787 12788 12789 12790 12791 12792 12793 12794 12795 12796 12797 12798 12799 12800 12801 12802 12803 12804 12805 12806 12807 12808 12809 12810 12811 12812 12813 12814 12815 12816 12817 12818 12819 12820 12821 12822 12823 12824 12825 12826 12827 12828 12829 12830 12831 12832 12833 12834 12835 12836 12837 12838 12839 12840 12841 12842 12843 12844 12845 12846 12847 12848 12849 12850 12851 12852 12853 12854 12855 12856 12857 12858 12859 12860 12861 12862 12863 12864 12865 12866 12867 12868 12869 12870 12871 12872 12873 12874 12875 12876 12877 12878 12879 12880 12881 12882 12883 12884 12885 12886 12887 12888 12889 12890 12891 12892 12893 12894 12895 12896 12897 12898 12899 12900 12901 12902 12903 12904 12905 12906 12907 12908 12909 12910 12911 12912 12913 12914 12915 12916 12917 12918 12919 12920 12921 12922 12923 12924 12925 12926 12927 12928 12929 12930 12931 12932 12933 12934 12935 12936 12937 12938 12939 12940 12941 12942 12943 12944 12945 12946 12947 12948 12949 12950 12951 12952 12953 12954 12955 12956 12957 12958 12959 12960 12961 12962 12963 12964 12965 12966 12967 12968 12969 12970 12971 12972 12973 12974 12975 12976 12977 12978 12979 12980 12981 12982 12983 12984 12985 12986 12987 12988 12989 12990 12991 12992 12993 12994 12995 12996 12997 12998 12999 13000 13001 13002 13003 13004 13005 13006 13007 13008 13009 13010 13011 13012 13013 13014 13015 13016 13017 13018 13019 13020 13021 13022 13023 13024 13025 13026 13027 13028 13029 13030 13031 13032 13033 13034 13035 13036 13037 13038 13039 13040 13041 13042 13043 13044 13045 13046 13047 13048 13049 13050 13051 13052 13053 13054 13055 13056 13057 13058 13059 13060 13061 13062 13063 13064 13065 13066 13067 13068 13069 13070 13071 13072 13073 13074 13075 13076 13077 13078 13079 13080 13081 13082 13083 13084 13085 13086 13087 13088 13089 13090 13091 13092 13093 13094 13095 13096 13097 13098 13099 13100 13101 13102 13103 13104 13105 13106 13107 13108 13109 13110 13111 13112 13113 13114 13115 13116 13117 13118 13119 13120 13121 13122 13123 13124 13125 13126 13127 13128 13129 13130 13131 13132 13133 13134 13135 13136 13137 13138 13139 13140 13141 13142 13143 13144 13145 13146 13147 13148 13149 13150 13151 13152 13153 13154 13155 13156 13157 13158 13159 13160 13161 13162 13163 13164 13165 13166 13167 13168 13169 13170 13171 13172 13173 13174 13175 13176 13177 13178 13179 13180 13181 13182 13183 13184 13185 13186 13187 13188 13189 13190 13191 13192 13193 13194 13195 13196 13197 13198 13199 13200 13201 13202 13203 13204 13205 13206 13207 13208 13209 13210 13211 13212 13213 13214 13215 13216 13217 13218 13219 13220 13221 13222 13223 13224 13225 13226 13227 13228 13229 13230 13231 13232 13233 13234 13235 13236 13237 13238 13239 13240 13241 13242 13243 13244 13245 13246 13247 13248 13249 13250 13251 13252 13253 13254 13255 13256 13257 13258 13259 13260 13261 13262 13263 13264 13265 13266 13267 13268 13269 13270 13271 13272 13273 13274 13275 13276 13277 13278 13279 13280 13281 13282 13283 13284 13285 13286 13287 13288 13289 13290 13291 13292 13293 13294 13295 13296 13297 13298 13299 13300 13301 13302 13303 13304 13305 13306 13307 13308 13309 13310 13311 13312 13313 13314 13315 13316 13317 13318 13319 13320 13321 13322 13323 13324 13325 13326 13327 13328 13329 13330 13331 13332 13333 13334 13335 13336 13337 13338 13339 13340 13341 13342 13343 13344 13345 13346 13347 13348 13349 13350 13351 13352 13353 13354 13355 13356 13357 13358 13359 13360 13361 13362 13363 13364 13365 13366 13367 13368 13369 13370 13371 13372 13373 13374 13375 13376 13377 13378 13379 13380 13381 13382 13383 13384 13385 13386 13387 13388 13389 13390 13391 13392 13393 13394 13395 13396 13397 13398 13399 13400 13401 13402 13403 13404 13405 13406 13407 13408 13409 13410 13411 13412 13413 13414 13415 13416 13417 13418 13419 13420 13421 13422 13423 13424 13425 13426 13427 13428 13429 13430 13431 13432 13433 13434 13435 13436 13437 13438 13439 13440 13441 13442 13443 13444 13445 13446 13447 13448 13449 13450 13451 13452 13453 13454 13455 13456 13457 13458 13459 13460 13461 13462 13463 13464 13465 13466 13467 13468 13469 13470 13471 13472 13473 13474 13475 13476 13477 13478 13479 13480 13481 13482 13483 13484 13485 13486 13487 13488 13489 13490 13491 13492 13493 13494 13495 13496 13497 13498 13499 13500 13501 13502 13503 13504 13505 13506 13507 13508 13509 13510 13511 13512 13513 13514 13515 13516 13517 13518 13519 13520 13521 13522 13523 13524 13525 13526 13527 13528 13529 13530 13531 13532 13533 13534 13535 13536 13537 13538 13539 13540 13541 13542 13543 13544 13545 13546 13547 13548 13549 13550 13551 13552 13553 13554 13555 13556 13557 13558 13559 13560 13561 13562 13563 13564 13565 13566 13567 13568 13569 13570 13571 13572 13573 13574 13575 13576 13577 13578 13579 13580 13581 13582 13583 13584 13585 13586 13587 13588 13589 13590 13591 13592 13593 13594 13595 13596 13597 13598 13599 13600 13601 13602 13603 13604 13605 13606 13607 13608 13609 13610 13611 13612 13613 13614 13615 13616 13617 13618 13619 13620 13621 13622 13623 13624 13625 13626 13627 13628 13629 13630 13631 13632 13633 13634 13635 13636 13637 13638 13639 13640 13641 13642 13643 13644 13645 13646 13647 13648 13649 13650 13651 13652 13653 13654 13655 13656 13657 13658 13659 13660 13661 13662 13663 13664 13665 13666 13667 13668 13669 13670 13671 13672 13673 13674 13675 13676 13677 13678 13679 13680 13681 13682 13683 13684 13685 13686 13687 13688 13689 13690 13691 13692 13693 13694 13695 13696 13697 13698 13699 13700 13701 13702 13703 13704 13705 13706 13707 13708 13709 13710 13711 13712 13713 13714 13715 13716 13717 13718 13719 13720 13721 13722 13723 13724 13725 13726 13727 13728 13729 13730 13731 13732 13733 13734 13735 13736 13737 13738 13739 13740 13741 13742 13743 13744 13745 13746 13747 13748 13749 13750 13751 13752 13753 13754 13755 13756 13757 13758 13759 13760 13761 13762 13763 13764 13765 13766 13767 13768 13769 13770 13771 13772 13773 13774 13775 13776 13777 13778 13779 13780 13781 13782 13783 13784 13785 13786 13787 13788 13789 13790 13791 13792 13793 13794 13795 13796 13797 13798 13799 13800 13801 13802 13803 13804 13805 13806 13807 13808 13809 13810 13811 13812 13813 13814 13815 13816 13817 13818 13819 13820 13821 13822 13823 13824 13825 13826 13827 13828 13829 13830 13831 13832 13833 13834 13835 13836 13837 13838 13839 13840 13841 13842 13843 13844 13845 13846 13847 13848 13849 13850 13851 13852 13853 13854 13855 13856 13857 13858 13859 13860 13861 13862 13863 13864 13865 13866 13867 13868 13869 13870 13871 13872 13873 13874 13875 13876 13877 13878 13879 13880 13881 13882 13883 13884 13885 13886 13887 13888 13889 13890 13891 13892 13893 13894 13895 13896 13897 13898 13899 13900 13901 13902 13903 13904 13905 13906 13907 13908 13909 13910 13911 13912 13913 13914 13915 13916 13917 13918 13919 13920 13921 13922 13923 13924 13925 13926 13927 13928 13929 13930 13931 13932 13933 13934 13935 13936 13937 13938 13939 13940 13941 13942 13943 13944 13945 13946 13947 13948 13949 13950 13951 13952 13953 13954 13955 13956 13957 13958 13959 13960 13961 13962 13963 13964 13965 13966 13967 13968 13969 13970 13971 13972 13973 13974 13975 13976 13977 13978 13979 13980 13981 13982 13983 13984 13985 13986 13987 13988 13989 13990 13991 13992 13993 13994 13995 13996 13997 13998 13999 14000 14001 14002 14003 14004 14005 14006 14007 14008 14009 14010 14011 14012 14013 14014 14015 14016 14017 14018 14019 14020 14021 14022 14023 14024 14025 14026 14027 14028 14029 14030 14031 14032 14033 14034 14035 14036 14037 14038 14039 14040 14041 14042 14043 14044 14045 14046 14047 14048 14049 14050 14051 14052 14053 14054 14055 14056 14057 14058 14059 14060 14061 14062 14063 14064 14065 14066 14067 14068 14069 14070 14071 14072 14073 14074 14075 14076 14077 14078 14079 14080 14081 14082 14083 14084 14085 14086 14087 14088 14089 14090 14091 14092 14093 14094 14095 14096 14097 14098 14099 14100 14101 14102 14103 14104 14105 14106 14107 14108 14109 14110 14111 14112 14113 14114 14115 14116 14117 14118 14119 14120 14121 14122 14123 14124 14125 14126 14127 14128 14129 14130 14131 14132 14133 14134 14135 14136 14137 14138 14139 14140 14141 14142 14143 14144 14145 14146 14147 14148 14149 14150 14151 14152 14153 14154 14155 14156 14157 14158 14159 14160 14161 14162 14163 14164 14165 14166 14167 14168 14169 14170 14171 14172 14173 14174 14175 14176 14177 14178 14179 14180 14181 14182 14183 14184 14185 14186 14187 14188 14189 14190 14191 14192 14193 14194 14195 14196 14197 14198 14199 14200 14201 14202 14203 14204 14205 14206 14207 14208 14209 14210 14211 14212 14213 14214 14215 14216 14217 14218 14219 14220 14221 14222 14223 14224 14225 14226 14227 14228 14229 14230 14231 14232 14233 14234 14235 14236 14237 14238 14239 14240 14241 14242 14243 14244 14245 14246 14247 14248 14249 14250 14251 14252 14253 14254 14255 14256 14257 14258 14259 14260 14261 14262 14263 14264 14265 14266 14267 14268 14269 14270 14271 14272 14273 14274 14275 14276 14277 14278 14279 14280 14281 14282 14283 14284 14285 14286 14287 14288 14289 14290 14291 14292 14293 14294 14295 14296 14297 14298 14299 14300 14301 14302 14303 14304 14305 14306 14307 14308 14309 14310 14311 14312 14313 14314 14315 14316 14317 14318 14319 14320 14321 14322 14323 14324 14325 14326 14327 14328 14329 14330 14331 14332 14333 14334 14335 14336 14337 14338 14339 14340 14341 14342 14343 14344 14345 14346 14347 14348 14349 14350 14351 14352 14353 14354 14355 14356 14357 14358 14359 14360 14361 14362 14363 14364 14365 14366 14367 14368 14369 14370 14371 14372 14373 14374 14375 14376 14377 14378 14379 14380 14381 14382 14383 14384 14385 14386 14387 14388 14389 14390 14391 14392 14393 14394 14395 14396 14397 14398 14399 14400 14401 14402 14403 14404 14405 14406 14407 14408 14409 14410 14411 14412 14413 14414 14415 14416 14417 14418 14419 14420 14421 14422 14423 14424 14425 14426 14427 14428 14429 14430 14431 14432 14433 14434 14435 14436 14437 14438 14439 14440 14441 14442 14443 14444 14445 14446 14447 14448 14449 14450 14451 14452 14453 14454 14455 14456 14457 14458 14459 14460 14461 14462 14463 14464 14465 14466 14467 14468 14469 14470 14471 14472 14473 14474 14475 14476 14477 14478 14479 14480 14481 14482 14483 14484 14485 14486 14487 14488 14489 14490 14491 14492 14493 14494 14495 14496 14497 14498 14499 14500 14501 14502 14503 14504 14505 14506 14507 14508 14509 14510 14511 14512 14513 14514 14515 14516 14517 14518 14519 14520 14521 14522 14523 14524 14525 14526 14527 14528 14529 14530 14531 14532 14533 14534 14535 14536 14537 14538 14539 14540 14541 14542 14543 14544 14545 14546 14547 14548 14549 14550 14551 14552 14553 14554 14555 14556 14557 14558 14559 14560 14561 14562 14563 14564 14565 14566 14567 14568 14569 14570 14571 14572 14573 14574 14575 14576 14577 14578 14579 14580 14581 14582 14583 14584 14585 14586 14587 14588 14589 14590 14591 14592 14593 14594 14595 14596 14597 14598 14599 14600 14601 14602 14603 14604 14605 14606 14607 14608 14609 14610 14611 14612 14613 14614 14615 14616 14617 14618 14619 14620 14621 14622 14623 14624 14625 14626 14627 14628 14629 14630 14631 14632 14633 14634 14635 14636 14637 14638 14639 14640 14641 14642 14643 14644 14645 14646 14647 14648 14649 14650 14651 14652 14653 14654 14655 14656 14657 14658 14659 14660 14661 14662 14663 14664 14665 14666 14667 14668 14669 14670 14671 14672 14673 14674 14675 14676 14677 14678 14679 14680 14681 14682 14683 14684 14685 14686 14687 14688 14689 14690 14691 14692 14693 14694 14695 14696 14697 14698 14699 14700 14701 14702 14703 14704 14705 14706 14707 14708 14709 14710 14711 14712 14713 14714 14715 14716 14717 14718 14719 14720 14721 14722 14723 14724 14725 14726 14727 14728 14729 14730 14731 14732 14733 14734 14735 14736 14737 14738 14739 14740 14741 14742 14743 14744 14745 14746 14747 14748 14749 14750 14751 14752 14753 14754 14755 14756 14757 14758 14759 14760 14761 14762 14763 14764 14765 14766 14767 14768 14769 14770 14771 14772 14773 14774 14775 14776 14777 14778 14779 14780 14781 14782 14783 14784 14785 14786 14787 14788 14789 14790 14791 14792 14793 14794 14795 14796 14797 14798 14799 14800 14801 14802 14803 14804 14805 14806 14807 14808 14809 14810 14811 14812 14813 14814 14815 14816 14817 14818 14819 14820 14821 14822 14823 14824 14825 14826 14827 14828 14829 14830 14831 14832 14833 14834 14835 14836 14837 14838 14839 14840 14841 14842 14843 14844 14845 14846 14847 14848 14849 14850 14851 14852 14853 14854 14855 14856 14857 14858 14859 14860 14861 14862 14863 14864 14865 14866 14867 14868 14869 14870 14871 14872 14873 14874 14875 14876 14877 14878 14879 14880 14881 14882 14883 14884 14885 14886 14887 14888 14889 14890 14891 14892 14893 14894 14895 14896 14897 14898 14899 14900 14901 14902 14903 14904 14905 14906 14907 14908 14909 14910 14911 14912 14913 14914 14915 14916 14917 14918 14919 14920 14921 14922 14923 14924 14925 14926 14927 14928 14929 14930 14931 14932 14933 14934 14935 14936 14937 14938 14939 14940 14941 14942 14943 14944 14945 14946 14947 14948 14949 14950 14951 14952 14953 14954 14955 14956 14957 14958 14959 14960 14961 14962 14963 14964 14965 14966 14967 14968 14969 14970 14971 14972 14973 14974 14975 14976 14977 14978 14979 14980 14981 14982 14983 14984 14985 14986 14987 14988 14989 14990 14991 14992 14993 14994 14995 14996 14997 14998 14999 15000 15001 15002 15003 15004 15005 15006 15007 15008 15009 15010 15011 15012 15013 15014 15015 15016 15017 15018 15019 15020 15021 15022 15023 15024 15025 15026 15027 15028 15029 15030 15031 15032 15033 15034 15035 15036 15037 15038 15039 15040 15041 15042 15043 15044 15045 15046 15047 15048 15049 15050 15051 15052 15053 15054 15055 15056 15057 15058 15059 15060 15061 15062 15063 15064 15065 15066 15067 15068 15069 15070 15071 15072 15073 15074 15075 15076 15077 15078 15079 15080 15081 15082 15083 15084 15085 15086 15087 15088 15089 15090 15091 15092 15093 15094 15095 15096 15097 15098 15099 15100 15101 15102 15103 15104 15105 15106 15107 15108 15109 15110 15111 15112 15113 15114 15115 15116 15117 15118 15119 15120 15121 15122 15123 15124 15125 15126 15127 15128 15129 15130 15131 15132 15133 15134 15135 15136 15137 15138 15139 15140 15141 15142 15143 15144 15145 15146 15147 15148 15149 15150 15151 15152 15153 15154 15155 15156 15157 15158 15159 15160 15161 15162 15163 15164 15165 15166 15167 15168 15169 15170 15171 15172 15173 15174 15175 15176 15177 15178 15179 15180 15181 15182 15183 15184 15185 15186 15187 15188 15189 15190 15191 15192 15193 15194 15195 15196 15197 15198 15199 15200 15201 15202 15203 15204 15205 15206 15207 15208 15209 15210 15211 15212 15213 15214 15215 15216 15217 15218 15219 15220 15221 15222 15223 15224 15225 15226 15227 15228 15229 15230 15231 15232 15233 15234 15235 15236 15237 15238 15239 15240 15241 15242 15243 15244 15245 15246 15247 15248 15249 15250 15251 15252 15253 15254 15255 15256 15257 15258 15259 15260 15261 15262 15263 15264 15265 15266 15267 15268 15269 15270 15271 15272 15273 15274 15275 15276 15277 15278 15279 15280 15281 15282 15283 15284 15285 15286 15287 15288 15289 15290 15291 15292 15293 15294 15295 15296 15297 15298 15299 15300 15301 15302 15303 15304 15305 15306 15307 15308 15309 15310 15311 15312 15313 15314 15315 15316 15317 15318 15319 15320 15321 15322 15323 15324 15325 15326 15327 15328 15329 15330 15331 15332 15333 15334 15335 15336 15337 15338 15339 15340 15341 15342 15343 15344 15345 15346 15347 15348 15349 15350 15351 15352 15353 15354 15355 15356 15357 15358 15359 15360 15361 15362 15363 15364 15365 15366 15367 15368 15369 15370 15371 15372 15373 15374 15375 15376 15377 15378 15379 15380 15381 15382 15383 15384 15385 15386 15387 15388 15389 15390 15391 15392 15393 15394 15395 15396 15397 15398 15399 15400 15401 15402 15403 15404 15405 15406 15407 15408 15409 15410 15411 15412 15413 15414 15415 15416 15417 15418 15419 15420 15421 15422 15423 15424 15425 15426 15427 15428 15429 15430 15431 15432 15433 15434 15435 15436 15437 15438 15439 15440 15441 15442 15443 15444 15445 15446 15447 15448 15449 15450 15451 15452 15453 15454 15455 15456 15457 15458 15459 15460 15461 15462 15463 15464 15465 15466 15467 15468 15469 15470 15471 15472 15473 15474 15475 15476 15477 15478 15479 15480 15481 15482 15483 15484 15485 15486 15487 15488 15489 15490 15491 15492 15493 15494 15495 15496 15497 15498 15499 15500 15501 15502 15503 15504 15505 15506 15507 15508 15509 15510 15511 15512 15513 15514 15515 15516 15517 15518 15519 15520 15521 15522 15523 15524 15525 15526 15527 15528 15529 15530 15531 15532 15533 15534 15535 15536 15537 15538 15539 15540 15541 15542 15543 15544 15545 15546 15547 15548 15549 15550 15551 15552 15553 15554 15555 15556 15557 15558 15559 15560 15561 15562 15563 15564 15565 15566 15567 15568 15569 15570 15571 15572 15573 15574 15575 15576 15577 15578 15579 15580 15581 15582 15583 15584 15585 15586 15587 15588 15589 15590 15591 15592 15593 15594 15595 15596 15597 15598 15599 15600 15601 15602 15603 15604 15605 15606 15607 15608 15609 15610 15611 15612 15613 15614 15615 15616 15617 15618 15619 15620 15621 15622 15623 15624 15625 15626 15627 15628 15629 15630 15631 15632 15633 15634 15635 15636 15637 15638 15639 15640 15641 15642 15643 15644 15645 15646 15647 15648 15649 15650 15651 15652 15653 15654 15655 15656 15657 15658 15659 15660 15661 15662 15663 15664 15665 15666 15667 15668 15669 15670 15671 15672 15673 15674 15675 15676 15677 15678 15679 15680 15681 15682 15683 15684 15685 15686 15687 15688 15689 15690 15691 15692 15693 15694 15695 15696 15697 15698 15699 15700 15701 15702 15703 15704 15705 15706 15707 15708 15709 15710 15711 15712 15713 15714 15715 15716 15717 15718 15719 15720 15721 15722 15723 15724 15725 15726 15727 15728 15729 15730 15731 15732 15733 15734 15735 15736 15737 15738 15739 15740 15741 15742 15743 15744 15745 15746 15747 15748 15749 15750 15751 15752 15753 15754 15755 15756 15757 15758 15759 15760 15761 15762 15763 15764 15765 15766 15767 15768 15769 15770 15771 15772 15773 15774 15775 15776 15777 15778 15779 15780 15781 15782 15783 15784 15785 15786 15787 15788 15789 15790 15791 15792 15793 15794 15795 15796 15797 15798 15799 15800 15801 15802 15803 15804 15805 15806 15807 15808 15809 15810 15811 15812 15813 15814 15815 15816 15817 15818 15819 15820 15821 15822 15823 15824 15825 15826 15827 15828 15829 15830 15831 15832 15833 15834 15835 15836 15837 15838 15839 15840 15841 15842 15843 15844 15845 15846 15847 15848 15849 15850 15851 15852 15853 15854 15855 15856 15857 15858 15859 15860 15861 15862 15863 15864 15865 15866 15867 15868 15869 15870 15871 15872 15873 15874 15875 15876 15877 15878 15879 15880 15881 15882 15883 15884 15885 15886 15887 15888 15889 15890 15891 15892 15893 15894 15895 15896 15897 15898 15899 15900 15901 15902 15903 15904 15905 15906 15907 15908 15909 15910 15911 15912 15913 15914 15915 15916 15917 15918 15919 15920 15921 15922 15923 15924 15925 15926 15927 15928 15929 15930 15931 15932 15933 15934 15935 15936 15937 15938 15939 15940 15941 15942 15943 15944 15945 15946 15947 15948 15949 15950 15951 15952 15953 15954 15955 15956 15957 15958 15959 15960 15961 15962 15963 15964 15965 15966 15967 15968 15969 15970 15971 15972 15973 15974 15975 15976 15977 15978 15979 15980 15981 15982 15983 15984 15985 15986 15987 15988 15989 15990 15991 15992 15993 15994 15995 15996 15997 15998 15999 16000 16001 16002 16003 16004 16005 16006 16007 16008 16009 16010 16011 16012 16013 16014 16015 16016 16017 16018 16019 16020 16021 16022 16023 16024 16025 16026 16027 16028 16029 16030 16031 16032 16033 16034 16035 16036 16037 16038 16039 16040 16041 16042 16043 16044 16045 16046 16047 16048 16049 16050 16051 16052 16053 16054 16055 16056 16057 16058 16059 16060 16061 16062 16063 16064 16065 16066 16067 16068 16069 16070 16071 16072 16073 16074 16075 16076 16077 16078 16079 16080 16081 16082 16083 16084 16085 16086 16087 16088 16089 16090 16091 16092 16093 16094 16095 16096 16097 16098 16099 16100 16101 16102 16103 16104 16105 16106 16107 16108 16109 16110 16111 16112 16113 16114 16115 16116 16117 16118 16119 16120 16121 16122 16123 16124 16125 16126 16127 16128 16129 16130 16131 16132 16133 16134 16135 16136 16137 16138 16139 16140 16141 16142 16143 16144 16145 16146 16147 16148 16149 16150 16151 16152 16153 16154 16155 16156 16157 16158 16159 16160 16161 16162 16163 16164 16165 16166 16167 16168 16169 16170 16171 16172 16173 16174 16175 16176 16177 16178 16179 16180 16181 16182 16183 16184 16185 16186 16187 16188 16189 16190 16191 16192 16193 16194 16195 16196 16197 16198 16199 16200 16201 16202 16203 16204 16205 16206 16207 16208 16209 16210 16211 16212 16213 16214 16215 16216 16217 16218 16219 16220 16221 16222 16223 16224 16225 16226 16227 16228 16229 16230 16231 16232 16233 16234 16235 16236 16237 16238 16239 16240 16241 16242 16243 16244 16245 16246 16247 16248 16249 16250 16251 16252 16253 16254 16255 16256 16257 16258 16259 16260 16261 16262 16263 16264 16265 16266 16267 16268 16269 16270 16271 16272 16273 16274 16275 16276 16277 16278 16279 16280 16281 16282 16283 16284 16285 16286 16287 16288 16289 16290 16291 16292 16293 16294 16295 16296 16297 16298 16299 16300 16301 16302 16303 16304 16305 16306 16307 16308 16309 16310 16311 16312 16313 16314 16315 16316 16317 16318 16319 16320 16321 16322 16323 16324 16325 16326 16327 16328 16329 16330 16331 16332 16333 16334 16335 16336 16337 16338 16339 16340 16341 16342 16343 16344 16345 16346 16347 16348 16349 16350 16351 16352 16353 16354 16355 16356 16357 16358 16359 16360 16361 16362 16363 16364 16365 16366 16367 16368 16369 16370 16371 16372 16373 16374 16375 16376 16377 16378 16379 16380 16381 16382 16383 16384 16385 16386 16387 16388 16389 16390 16391 16392 16393 16394 16395 16396 16397 16398 16399 16400 16401 16402 16403 16404 16405 16406 16407 16408 16409 16410 16411 16412 16413 16414 16415 16416 16417 16418 16419 16420 16421 16422 16423 16424 16425 16426 16427 16428 16429 16430 16431 16432 16433 16434 16435 16436 16437 16438 16439 16440 16441 16442 16443 16444 16445 16446 16447 16448 16449 16450 16451 16452 16453 16454 16455 16456 16457 16458 16459 16460 16461 16462 16463 16464 16465 16466 16467 16468 16469 16470 16471 16472 16473 16474 16475 16476 16477 16478 16479 16480 16481 16482 16483 16484 16485 16486 16487 16488 16489 16490 16491 16492 16493 16494 16495 16496 16497 16498 16499 16500 16501 16502 16503 16504 16505 16506 16507 16508 16509 16510 16511 16512 16513 16514 16515 16516 16517 16518 16519 16520 16521 16522 16523 16524 16525 16526 16527 16528 16529 16530 16531 16532 16533 16534 16535 16536 16537 16538 16539 16540 16541 16542 16543 16544 16545 16546 16547 16548 16549 16550 16551 16552 16553 16554 16555 16556 16557 16558 16559 16560 16561 16562 16563 16564 16565 16566 16567 16568 16569 16570 16571 16572 16573 16574 16575 16576 16577 16578 16579 16580 16581 16582 16583 16584 16585 16586 16587 16588 16589 16590 16591 16592 16593 16594 16595 16596 16597 16598 16599 16600 16601 16602 16603 16604 16605 16606 16607 16608 16609 16610 16611 16612 16613 16614 16615 16616 16617 16618 16619 16620 16621 16622 16623 16624 16625 16626 16627 16628 16629 16630 16631 16632 16633 16634 16635 16636 16637 16638 16639 16640 16641 16642 16643 16644 16645 16646 16647 16648 16649 16650 16651 16652 16653 16654 16655 16656 16657 16658 16659 16660 16661 16662 16663 16664 16665 16666 16667 16668 16669 16670 16671 16672 16673 16674 16675 16676 16677 16678 16679 16680 16681 16682 16683 16684 16685 16686 16687 16688 16689 16690 16691 16692 16693 16694 16695 16696 16697 16698 16699 16700 16701 16702 16703 16704 16705 16706 16707 16708 16709 16710 16711 16712 16713 16714 16715 16716 16717 16718 16719 16720 16721 16722 16723 16724 16725 16726 16727 16728 16729 16730 16731 16732 16733 16734 16735 16736 16737 16738 16739 16740 16741 16742 16743 16744 16745 16746 16747 16748 16749 16750 16751 16752 16753 16754 16755 16756 16757 16758 16759 16760 16761 16762 16763 16764 16765 16766 16767 16768 16769 16770 16771 16772 16773 16774 16775 16776 16777 16778 16779 16780 16781 16782 16783 16784 16785 16786 16787 16788 16789 16790 16791 16792 16793 16794 16795 16796 16797 16798 16799 16800 16801 16802 16803 16804 16805 16806 16807 16808 16809 16810 16811 16812 16813 16814 16815 16816 16817 16818 16819 16820 16821 16822 16823 16824 16825 16826 16827 16828 16829 16830 16831 16832 16833 16834 16835 16836 16837 16838 16839 16840 16841 16842 16843 16844 16845 16846 16847 16848 16849 16850 16851 16852 16853 16854 16855 16856 16857 16858 16859 16860 16861 16862 16863 16864 16865 16866 16867 16868 16869 16870 16871 16872 16873 16874 16875 16876 16877 16878 16879 16880 16881 16882 16883 16884 16885 16886 16887 16888 16889 16890 16891 16892 16893 16894 16895 16896 16897 16898 16899 16900 16901 16902 16903 16904 16905 16906 16907 16908 16909 16910 16911 16912 16913 16914 16915 16916 16917 16918 16919 16920 16921 16922 16923 16924 16925 16926 16927 16928 16929 16930 16931 16932 16933 16934 16935 16936 16937 16938 16939 16940 16941 16942 16943 16944 16945 16946 16947 16948 16949 16950 16951 16952 16953 16954 16955 16956 16957 16958 16959 16960 16961 16962 16963 16964 16965 16966 16967 16968 16969 16970 16971 16972 16973 16974 16975 16976 16977 16978 16979 16980 16981 16982 16983 16984 16985 16986 16987 16988 16989 16990 16991 16992 16993 16994 16995 16996 16997 16998 16999 17000 17001 17002 17003 17004 17005 17006 17007 17008 17009 17010 17011 17012 17013 17014 17015 17016 17017 17018 17019 17020 17021 17022 17023 17024 17025 17026 17027 17028 17029 17030 17031 17032 17033 17034 17035 17036 17037 17038 17039 17040 17041 17042 17043 17044 17045 17046 17047 17048 17049 17050 17051 17052 17053 17054 17055 17056 17057 17058 17059 17060 17061 17062 17063 17064 17065 17066 17067 17068 17069 17070 17071 17072 17073 17074 17075 17076 17077 17078 17079 17080 17081 17082 17083 17084 17085 17086 17087 17088 17089 17090 17091 17092 17093 17094 17095 17096 17097 17098 17099 17100 17101 17102 17103 17104 17105 17106 17107 17108 17109 17110 17111 17112 17113 17114 17115 17116 17117 17118 17119 17120 17121 17122 17123 17124 17125 17126 17127 17128 17129 17130 17131 17132 17133 17134 17135 17136 17137 17138 17139 17140 17141 17142 17143 17144 17145 17146 17147 17148 17149 17150 17151 17152 17153 17154 17155 17156 17157 17158 17159 17160 17161 17162 17163 17164 17165 17166 17167 17168 17169 17170 17171 17172 17173 17174 17175 17176 17177 17178 17179 17180 17181 17182 17183 17184 17185 17186 17187 17188 17189 17190 17191 17192 17193 17194 17195 17196 17197 17198 17199 17200 17201 17202 17203 17204 17205 17206 17207 17208 17209 17210 17211 17212 17213 17214 17215 17216 17217 17218 17219 17220 17221 17222 17223 17224 17225 17226 17227 17228 17229 17230 17231 17232 17233 17234 17235 17236 17237 17238 17239 17240 17241 17242 17243 17244 17245 17246 17247 17248 17249 17250 17251 17252 17253 17254 17255 17256 17257 17258 17259 17260 17261 17262 17263 17264 17265 17266 17267 17268 17269 17270 17271 17272 17273 17274 17275 17276 17277 17278 17279 17280 17281 17282 17283 17284 17285 17286 17287 17288 17289 17290 17291 17292 17293 17294 17295 17296 17297 17298 17299 17300 17301 17302 17303 17304 17305 17306 17307 17308 17309 17310 17311 17312 17313 17314 17315 17316 17317 17318 17319 17320 17321 17322 17323 17324 17325 17326 17327 17328 17329 17330 17331 17332 17333 17334 17335 17336 17337 17338 17339 17340 17341 17342 17343 17344 17345 17346 17347 17348 17349 17350 17351 17352 17353 17354 17355 17356 17357 17358 17359 17360 17361 17362 17363 17364 17365 17366 17367 17368 17369 17370 17371 17372 17373 17374 17375 17376 17377 17378 17379 17380 17381 17382 17383 17384 17385 17386 17387 17388 17389 17390 17391 17392 17393 17394 17395 17396 17397 17398 17399 17400 17401 17402 17403 17404 17405 17406 17407 17408 17409 17410 17411 17412 17413 17414 17415 17416 17417 17418 17419 17420 17421 17422 17423 17424 17425 17426 17427 17428 17429 17430 17431 17432 17433 17434 17435 17436 17437 17438 17439 17440 17441 17442 17443 17444 17445 17446 17447 17448 17449 17450 17451 17452 17453 17454 17455 17456 17457 17458 17459 17460 17461 17462 17463 17464 17465 17466 17467 17468 17469 17470 17471 17472 17473 17474 17475 17476 17477 17478 17479 17480 17481 17482 17483 17484 17485 17486 17487 17488 17489 17490 17491 17492 17493 17494 17495 17496 17497 17498 17499 17500 17501 17502 17503 17504 17505 17506 17507 17508 17509 17510 17511 17512 17513 17514 17515 17516 17517 17518 17519 17520 17521 17522 17523 17524 17525 17526 17527 17528 17529 17530 17531 17532 17533 17534 17535 17536 17537 17538 17539 17540 17541 17542 17543 17544 17545 17546 17547 17548 17549 17550 17551 17552 17553 17554 17555 17556 17557 17558 17559 17560 17561 17562 17563 17564 17565 17566 17567 17568 17569 17570 17571 17572 17573 17574 17575 17576 17577 17578 17579 17580 17581 17582 17583 17584 17585 17586 17587 17588 17589 17590 17591 17592 17593 17594 17595 17596 17597 17598 17599 17600 17601 17602 17603 17604 17605 17606 17607 17608 17609 17610 17611 17612 17613 17614 17615 17616 17617 17618 17619 17620 17621 17622 17623 17624 17625 17626 17627 17628 17629 17630 17631 17632 17633 17634 17635 17636 17637 17638 17639 17640 17641 17642 17643 17644 17645 17646 17647 17648 17649 17650 17651 17652 17653 17654 17655 17656 17657 17658 17659 17660 17661 17662 17663 17664 17665 17666 17667 17668 17669 17670 17671 17672 17673 17674 17675 17676 17677 17678 17679 17680 17681 17682 17683 17684 17685 17686 17687 17688 17689 17690 17691 17692 17693 17694 17695 17696 17697 17698 17699 17700 17701 17702 17703 17704 17705 17706 17707 17708 17709 17710 17711 17712 17713 17714 17715 17716 17717 17718 17719 17720 17721 17722 17723 17724 17725 17726 17727 17728 17729 17730 17731 17732 17733 17734 17735 17736 17737 17738 17739 17740 17741 17742 17743 17744 17745 17746 17747 17748 17749 17750 17751 17752 17753 17754 17755 17756 17757 17758 17759 17760 17761 17762 17763 17764 17765 17766 17767 17768 17769 17770 17771 17772 17773 17774 17775 17776 17777 17778 17779 17780 17781 17782 17783 17784 17785 17786 17787 17788 17789 17790 17791 17792 17793 17794 17795 17796 17797 17798 17799 17800 17801 17802 17803 17804 17805 17806 17807 17808 17809 17810 17811 17812 17813 17814 17815 17816 17817 17818 17819 17820 17821 17822 17823 17824 17825 17826 17827 17828 17829 17830 17831 17832 17833 17834 17835 17836 17837 17838 17839 17840 17841 17842 17843 17844 17845 17846 17847 17848 17849 17850 17851 17852 17853 17854 17855 17856 17857 17858 17859 17860 17861 17862 17863 17864 17865 17866 17867 17868 17869 17870 17871 17872 17873 17874 17875 17876 17877 17878 17879 17880 17881 17882 17883 17884 17885 17886 17887 17888 17889 17890 17891 17892 17893 17894 17895 17896 17897 17898 17899 17900 17901 17902 17903 17904 17905 17906 17907 17908 17909 17910 17911 17912 17913 17914 17915 17916 17917 17918 17919 17920 17921 17922 17923 17924 17925 17926 17927 17928 17929 17930 17931 17932 17933 17934 17935 17936 17937 17938 17939 17940 17941 17942 17943 17944 17945 17946 17947 17948 17949 17950 17951 17952 17953 17954 17955 17956 17957 17958 17959 17960 17961 17962 17963 17964 17965 17966 17967 17968 17969 17970 17971 17972 17973 17974 17975 17976 17977 17978 17979 17980 17981 17982 17983 17984 17985 17986 17987 17988 17989 17990 17991 17992 17993 17994 17995 17996 17997 17998 17999 18000 18001 18002 18003 18004 18005 18006 18007 18008 18009 18010 18011 18012 18013 18014 18015 18016 18017 18018 18019 18020 18021 18022 18023 18024 18025 18026 18027 18028 18029 18030 18031 18032 18033 18034 18035 18036 18037 18038 18039 18040 18041 18042 18043 18044 18045 18046 18047 18048 18049 18050 18051 18052 18053 18054 18055 18056 18057 18058 18059 18060 18061 18062 18063 18064 18065 18066 18067 18068 18069 18070 18071 18072 18073 18074 18075 18076 18077 18078 18079 18080 18081 18082 18083 18084 18085 18086 18087 18088 18089 18090 18091 18092 18093 18094 18095 18096 18097 18098 18099 18100 18101 18102 18103 18104 18105 18106 18107 18108 18109 18110 18111 18112 18113 18114 18115 18116 18117 18118 18119 18120 18121 18122 18123 18124 18125 18126 18127 18128 18129 18130 18131 18132 18133 18134 18135 18136 18137 18138 18139 18140 18141 18142 18143 18144 18145 18146 18147 18148 18149 18150 18151 18152 18153 18154 18155 18156 18157 18158 18159 18160 18161 18162 18163 18164 18165 18166 18167 18168 18169 18170 18171 18172 18173 18174 18175 18176 18177 18178 18179 18180 18181 18182 18183 18184 18185 18186 18187 18188 18189 18190 18191 18192 18193 18194 18195 18196 18197 18198 18199 18200 18201 18202 18203 18204 18205 18206 18207 18208 18209 18210 18211 18212 18213 18214 18215 18216 18217 18218 18219 18220 18221 18222 18223 18224 18225 18226 18227 18228 18229 18230 18231 18232 18233 18234 18235 18236 18237 18238 18239 18240 18241 18242 18243 18244 18245 18246 18247 18248 18249 18250 18251 18252 18253 18254 18255 18256 18257 18258 18259 18260 18261 18262 18263 18264 18265 18266 18267 18268 18269 18270 18271 18272 18273 18274 18275 18276 18277 18278 18279 18280 18281 18282 18283 18284 18285 18286 18287 18288 18289 18290 18291 18292 18293 18294 18295 18296 18297 18298 18299 18300 18301 18302 18303 18304 18305 18306 18307 18308 18309 18310 18311 18312 18313 18314 18315 18316 18317 18318 18319 18320 18321 18322 18323 18324 18325 18326 18327 18328 18329 18330 18331 18332 18333 18334 18335 18336 18337 18338 18339 18340 18341 18342 18343 18344 18345 18346 18347 18348 18349 18350 18351 18352 18353 18354 18355 18356 18357 18358 18359 18360 18361 18362 18363 18364 18365 18366 18367 18368 18369 18370 18371 18372 18373 18374 18375 18376 18377 18378 18379 18380 18381 18382 18383 18384 18385 18386 18387 18388 18389 18390 18391 18392 18393 18394 18395 18396 18397 18398 18399 18400 18401 18402 18403 18404 18405 18406 18407 18408 18409 18410 18411 18412 18413 18414 18415 18416 18417 18418 18419 18420 18421 18422 18423 18424 18425 18426 18427 18428 18429 18430 18431 18432 18433 18434 18435 18436 18437 18438 18439 18440 18441 18442 18443 18444 18445 18446 18447 18448 18449 18450 18451 18452 18453 18454 18455 18456 18457 18458 18459 18460 18461 18462 18463 18464 18465 18466 18467 18468 18469 18470 18471 18472 18473 18474 18475 18476 18477 18478 18479 18480 18481 18482 18483 18484 18485 18486 18487 18488 18489 18490 18491 18492 18493 18494 18495 18496 18497 18498 18499 18500 18501 18502 18503 18504 18505 18506 18507 18508 18509 18510 18511 18512 18513 18514 18515 18516 18517 18518 18519 18520 18521 18522 18523 18524 18525 18526 18527 18528 18529 18530 18531 18532 18533 18534 18535 18536 18537 18538 18539 18540 18541 18542 18543 18544 18545 18546 18547 18548 18549 18550 18551 18552 18553 18554 18555 18556 18557 18558 18559 18560 18561 18562 18563 18564 18565 18566 18567 18568 18569 18570 18571 18572 18573 18574 18575 18576 18577 18578 18579 18580 18581 18582 18583 18584 18585 18586 18587 18588 18589 18590 18591 18592 18593 18594 18595 18596 18597 18598 18599 18600 18601 18602 18603 18604 18605 18606 18607 18608 18609 18610 18611 18612 18613 18614 18615 18616 18617 18618 18619 18620 18621 18622 18623 18624 18625 18626 18627 18628 18629 18630 18631 18632 18633 18634 18635 18636 18637 18638 18639 18640 18641 18642 18643 18644 18645 18646 18647 18648 18649 18650 18651 18652 18653 18654 18655 18656 18657 18658 18659 18660 18661 18662 18663 18664 18665 18666 18667 18668 18669 18670 18671 18672 18673 18674 18675 18676 18677 18678 18679 18680 18681 18682 18683 18684 18685 18686 18687 18688 18689 18690 18691 18692 18693 18694 18695 18696 18697 18698 18699 18700 18701 18702 18703 18704 18705 18706 18707 18708 18709 18710 18711 18712 18713 18714 18715 18716 18717 18718 18719 18720 18721 18722 18723 18724 18725 18726 18727 18728 18729 18730 18731 18732 18733 18734 18735 18736 18737 18738 18739 18740 18741 18742 18743 18744 18745 18746 18747 18748 18749 18750 18751 18752 18753 18754 18755 18756 18757 18758 18759 18760 18761 18762 18763 18764 18765 18766 18767 18768 18769 18770 18771 18772 18773 18774 18775 18776 18777 18778 18779 18780 18781 18782 18783 18784 18785 18786 18787 18788 18789 18790 18791 18792 18793 18794 18795 18796 18797 18798 18799 18800 18801 18802 18803 18804 18805 18806 18807 18808 18809 18810 18811 18812 18813 18814 18815 18816 18817 18818 18819 18820 18821 18822 18823 18824 18825 18826 18827 18828 18829 18830 18831 18832 18833 18834 18835 18836 18837 18838 18839 18840 18841 18842 18843 18844 18845 18846 18847 18848 18849 18850 18851 18852 18853 18854 18855 18856 18857 18858 18859 18860 18861 18862 18863 18864 18865 18866 18867 18868 18869 18870 18871 18872 18873 18874 18875 18876 18877 18878 18879 18880 18881 18882 18883 18884 18885 18886 18887 18888 18889 18890 18891 18892 18893 18894 18895 18896 18897 18898 18899 18900 18901 18902 18903 18904 18905 18906 18907 18908 18909 18910 18911 18912 18913 18914 18915 18916 18917 18918 18919 18920 18921 18922 18923 18924 18925 18926 18927 18928 18929 18930 18931 18932 18933 18934 18935 18936 18937 18938 18939 18940 18941 18942 18943 18944 18945 18946 18947 18948 18949 18950 18951 18952 18953 18954 18955 18956 18957 18958 18959 18960 18961 18962 18963 18964 18965 18966 18967 18968 18969 18970 18971 18972 18973 18974 18975 18976 18977 18978 18979 18980 18981 18982 18983 18984 18985 18986 18987 18988 18989 18990 18991 18992 18993 18994 18995 18996 18997 18998 18999 19000 19001 19002 19003 19004 19005 19006 19007 19008 19009 19010 19011 19012 19013 19014 19015 19016 19017 19018 19019 19020 19021 19022 19023 19024 19025 19026 19027 19028 19029 19030 19031 19032 19033 19034 19035 19036 19037 19038 19039 19040 19041 19042 19043 19044 19045 19046 19047 19048 19049 19050 19051 19052 19053 19054 19055 19056 19057 19058 19059 19060 19061 19062 19063 19064 19065 19066 19067 19068 19069 19070 19071 19072 19073 19074 19075 19076 19077 19078 19079 19080 19081 19082 19083 19084 19085 19086 19087 19088 19089 19090 19091 19092 19093 19094 19095 19096 19097 19098 19099 19100 19101 19102 19103 19104 19105 19106 19107 19108 19109 19110 19111 19112 19113 19114 19115 19116 19117 19118 19119 19120 19121 19122 19123 19124 19125 19126 19127 19128 19129 19130 19131 19132 19133 19134 19135 19136 19137 19138 19139 19140 19141 19142 19143 19144 19145 19146 19147 19148 19149 19150 19151 19152 19153 19154 19155 19156 19157 19158 19159 19160 19161 19162 19163 19164 19165 19166 19167 19168 19169 19170 19171 19172 19173 19174 19175 19176 19177 19178 19179 19180 19181 19182 19183 19184 19185 19186 19187 19188 19189 19190 19191 19192 19193 19194 19195 19196 19197 19198 19199 19200 19201 19202 19203 19204 19205 19206 19207 19208 19209 19210 19211 19212 19213 19214 19215 19216 19217 19218 19219 19220 19221 19222 19223 19224 19225 19226 19227 19228 19229 19230 19231 19232 19233 19234 19235 19236 19237 19238 19239 19240 19241 19242 19243 19244 19245 19246 19247 19248 19249 19250 19251 19252 19253 19254 19255 19256 19257 19258 19259 19260 19261 19262 19263 19264 19265 19266 19267 19268 19269 19270 19271 19272 19273 19274 19275 19276 19277 19278 19279 19280 19281 19282 19283 19284 19285 19286 19287 19288 19289 19290 19291 19292 19293 19294 19295 19296 19297 19298 19299 19300 19301 19302 19303 19304 19305 19306 19307 19308 19309 19310 19311 19312 19313 19314 19315 19316 19317 19318 19319 19320 19321 19322 19323 19324 19325 19326 19327 19328 19329 19330 19331 19332 19333 19334 19335 19336 19337 19338 19339 19340 19341 19342 19343 19344 19345 19346 19347 19348 19349 19350 19351 19352 19353 19354 19355 19356 19357 19358 19359 19360 19361 19362 19363 19364 19365 19366 19367 19368 19369 19370 19371 19372 19373 19374 19375 19376 19377 19378 19379 19380 19381 19382 19383 19384 19385 19386 19387 19388 19389 19390 19391 19392 19393 19394 19395 19396 19397 19398 19399 19400 19401 19402 19403 19404 19405 19406 19407 19408 19409 19410 19411 19412 19413 19414 19415 19416 19417 19418 19419 19420 19421 19422 19423 19424 19425 19426 19427 19428 19429 19430 19431 19432 19433 19434 19435 19436 19437 19438 19439 19440 19441 19442 19443 19444 19445 19446 19447 19448 19449 19450 19451 19452 19453 19454 19455 19456 19457 19458 19459 19460 19461 19462 19463 19464 19465 19466 19467 19468 19469 19470 19471 19472 19473 19474 19475 19476 19477 19478 19479 19480 19481 19482 19483 19484 19485 19486 19487 19488 19489 19490 19491 19492 19493 19494 19495 19496 19497 19498 19499 19500 19501 19502 19503 19504 19505 19506 19507 19508 19509 19510 19511 19512 19513 19514 19515 19516 19517 19518 19519 19520 19521 19522 19523 19524 19525 19526 19527 19528 19529 19530 19531 19532 19533 19534 19535 19536 19537 19538 19539 19540 19541 19542 19543 19544 19545 19546 19547 19548 19549 19550 19551 19552 19553 19554 19555 19556 19557 19558 19559 19560 19561 19562 19563 19564 19565 19566 19567 19568 19569 19570 19571 19572 19573 19574 19575 19576 19577 19578 19579 19580 19581 19582 19583 19584 19585 19586 19587 19588 19589 19590 19591 19592 19593 19594 19595 19596 19597 19598 19599 19600 19601 19602 19603 19604 19605 19606 19607 19608 19609 19610 19611 19612 19613 19614 19615 19616 19617 19618 19619 19620 19621 19622 19623 19624 19625 19626 19627 19628 19629 19630 19631 19632 19633 19634 19635 19636 19637 19638 19639 19640 19641 19642 19643 19644 19645 19646 19647 19648 19649 19650 19651 19652 19653 19654 19655 19656 19657 19658 19659 19660 19661 19662 19663 19664 19665 19666 19667 19668 19669 19670 19671 19672 19673 19674 19675 19676 19677 19678 19679 19680 19681 19682 19683 19684 19685 19686 19687 19688 19689 19690 19691 19692 19693 19694 19695 19696 19697 19698 19699 19700 19701 19702 19703 19704 19705 19706 19707 19708 19709 19710 19711 19712 19713 19714 19715 19716 19717 19718 19719 19720 19721 19722 19723 19724 19725 19726 19727 19728 19729 19730 19731 19732 19733 19734 19735 19736 19737 19738 19739 19740 19741 19742 19743 19744 19745 19746 19747 19748 19749 19750 19751 19752 19753 19754 19755 19756 19757 19758 19759 19760 19761 19762 19763 19764 19765 19766 19767 19768 19769 19770 19771 19772 19773 19774 19775 19776 19777 19778 19779 19780 19781 19782 19783 19784 19785 19786 19787 19788 19789 19790 19791 19792 19793 19794 19795 19796 19797 19798 19799 19800 19801 19802 19803 19804 19805 19806 19807 19808 19809 19810 19811 19812 19813 19814 19815 19816 19817 19818 19819 19820 19821 19822 19823 19824 19825 19826 19827 19828 19829 19830 19831 19832 19833 19834 19835 19836 19837 19838 19839 19840 19841 19842 19843 19844 19845 19846 19847 19848 19849 19850 19851 19852 19853 19854 19855 19856 19857 19858 19859 19860 19861 19862 19863 19864 19865 19866 19867 19868 19869 19870 19871 19872 19873 19874 19875 19876 19877 19878 19879 19880 19881 19882 19883 19884 19885 19886 19887 19888 19889 19890 19891 19892 19893 19894 19895 19896 19897 19898 19899 19900 19901 19902 19903 19904 19905 19906 19907 19908 19909 19910 19911 19912 19913 19914 19915 19916 19917 19918 19919 19920 19921 19922 19923 19924 19925 19926 19927 19928 19929 19930 19931 19932 19933 19934 19935 19936 19937 19938 19939 19940 19941 19942 19943 19944 19945 19946 19947 19948 19949 19950 19951 19952 19953 19954 19955 19956 19957 19958 19959 19960 19961 19962 19963 19964 19965 19966 19967 19968 19969 19970 19971 19972 19973 19974 19975 19976 19977 19978 19979 19980 19981 19982 19983 19984 19985 19986 19987 19988 19989 19990 19991 19992 19993 19994 19995 19996 19997 19998 19999 20000 20001 20002 20003 20004 20005 20006 20007 20008 20009 20010 20011 20012 20013 20014 20015 20016 20017 20018 20019 20020 20021 20022 20023 20024 20025 20026 20027 20028 20029 20030 20031 20032 20033 20034 20035 20036 20037 20038 20039 20040 20041 20042 20043 20044 20045 20046 20047 20048 20049 20050 20051 20052 20053 20054 20055 20056 20057 20058 20059 20060 20061 20062 20063 20064 20065 20066 20067 20068 20069 20070 20071 20072 20073 20074 20075 20076 20077 20078 20079 20080 20081 20082 20083 20084 20085 20086 20087 20088 20089 20090 20091 20092 20093 20094 20095 20096 20097 20098 20099 20100 20101 20102 20103 20104 20105 20106 20107 20108 20109 20110 20111 20112 20113 20114 20115 20116 20117 20118 20119 20120 20121 20122 20123 20124 20125 20126 20127 20128 20129 20130 20131 20132 20133 20134 20135 20136 20137 20138 20139 20140 20141 20142 20143 20144 20145 20146 20147 20148 20149 20150 20151 20152 20153 20154 20155 20156 20157 20158 20159 20160 20161 20162 20163 20164 20165 20166 20167 20168 20169 20170 20171 20172 20173 20174 20175 20176 20177 20178 20179 20180 20181 20182 20183 20184 20185 20186 20187 20188 20189 20190 20191 20192 20193 20194 20195 20196 20197 20198 20199 20200 20201 20202 20203 20204 20205 20206 20207 20208 20209 20210 20211 20212 20213 20214 20215 20216 20217 20218 20219 20220 20221 20222 20223 20224 20225 20226 20227 20228 20229 20230 20231 20232 20233 20234 20235 20236 20237 20238 20239 20240 20241 20242 20243 20244 20245 20246 20247 20248 20249 20250 20251 20252 20253 20254 20255 20256 20257 20258 20259 20260 20261 20262 20263 20264 20265 20266 20267 20268 20269 20270 20271 20272 20273 20274 20275 20276 20277 20278 20279 20280 20281 20282 20283 20284 20285 20286 20287 20288 20289 20290 20291 20292 20293 20294 20295 20296 20297 20298 20299 20300 20301 20302 20303 20304 20305 20306 20307 20308 20309 20310 20311 20312 20313 20314 20315 20316 20317 20318 20319 20320 20321 20322 20323 20324 20325 20326 20327 20328 20329 20330 20331 20332 20333 20334 20335 20336 20337 20338 20339 20340 20341 20342 20343 20344 20345 20346 20347 20348 20349 20350 20351 20352 20353 20354 20355 20356 20357 20358 20359 20360 20361 20362 20363 20364 20365 20366 20367 20368 20369 20370 20371 20372 20373 20374 20375 20376 20377 20378 20379 20380 20381 20382 20383 20384 20385 20386 20387 20388 20389 20390 20391 20392 20393 20394 20395 20396 20397 20398 20399 20400 20401 20402 20403 20404 20405 20406 20407 20408 20409 20410 20411 20412 20413 20414 20415 20416 20417 20418 20419 20420 20421 20422 20423 20424 20425 20426 20427 20428 20429 20430 20431 20432 20433 20434 20435 20436 20437 20438 20439 20440 20441 20442 20443 20444 20445 20446 20447 20448 20449 20450 20451 20452 20453 20454 20455 20456 20457 20458 20459 20460 20461 20462 20463 20464 20465 20466 20467 20468 20469 20470 20471 20472 20473 20474 20475 20476 20477 20478 20479 20480 20481 20482 20483 20484 20485 20486 20487 20488 20489 20490 20491 20492 20493 20494 20495 20496 20497 20498 20499 20500 20501 20502 20503 20504 20505 20506 20507 20508 20509 20510 20511 20512 20513 20514 20515 20516 20517 20518 20519 20520 20521 20522 20523 20524 20525 20526 20527 20528 20529 20530 20531 20532 20533 20534 20535 20536 20537 20538 20539 20540 20541 20542 20543 20544 20545 20546 20547 20548 20549 20550 20551 20552 20553 20554 20555 20556 20557 20558 20559 20560 20561 20562 20563 20564 20565 20566 20567 20568 20569 20570 20571 20572 20573 20574 20575 20576 20577 20578 20579 20580 20581 20582 20583 20584 20585 20586 20587 20588 20589 20590 20591 20592 20593 20594 20595 20596 20597 20598 20599 20600 20601 20602 20603 20604 20605 20606 20607 20608 20609 20610 20611 20612 20613 20614 20615 20616 20617 20618 20619 20620 20621 20622 20623 20624 20625 20626 20627 20628 20629 20630 20631 20632 20633 20634 20635 20636 20637 20638 20639 20640 20641 20642 20643 20644 20645 20646 20647 20648 20649 20650 20651 20652 20653 20654 20655 20656 20657 20658 20659 20660 20661 20662 20663 20664 20665 20666 20667 20668 20669 20670 20671 20672 20673 20674 20675 20676 20677 20678 20679 20680 20681 20682 20683 20684 20685 20686 20687 20688 20689 20690 20691 20692 20693 20694 20695 20696 20697 20698 20699 20700 20701 20702 20703 20704 20705 20706 20707 20708 20709 20710 20711 20712 20713 20714 20715 20716 20717 20718 20719 20720 20721 20722 20723 20724 20725 20726 20727 20728 20729 20730 20731 20732 20733 20734 20735 20736 20737 20738 20739 20740 20741 20742 20743 20744 20745 20746 20747 20748 20749 20750 20751 20752 20753 20754 20755 20756 20757 20758 20759 20760 20761 20762 20763 20764 20765 20766 20767 20768 20769 20770 20771 20772 20773 20774 20775 20776 20777 20778 20779 20780 20781 20782 20783 20784 20785 20786 20787 20788 20789 20790 20791 20792 20793 20794 20795 20796 20797 20798 20799 20800 20801 20802 20803 20804 20805 20806 20807 20808 20809 20810 20811 20812 20813 20814 20815 20816 20817 20818 20819 20820 20821 20822 20823 20824 20825 20826 20827 20828 20829 20830 20831 20832 20833 20834 20835 20836 20837 20838 20839 20840 20841 20842 20843 20844 20845 20846 20847 20848 20849 20850 20851 20852 20853 20854 20855 20856 20857 20858 20859 20860 20861 20862 20863 20864 20865 20866 20867 20868 20869 20870 20871 20872 20873 20874 20875 20876 20877 20878 20879 20880 20881 20882 20883 20884 20885 20886 20887 20888 20889 20890 20891 20892 20893 20894 20895 20896 20897 20898 20899 20900 20901 20902 20903 20904 20905 20906 20907 20908 20909 20910 20911 20912 20913 20914 20915 20916 20917 20918 20919 20920 20921 20922 20923 20924 20925 20926 20927 20928 20929 20930 20931 20932 20933 20934 20935 20936 20937 20938 20939 20940 20941 20942 20943 20944 20945 20946 20947 20948 20949 20950 20951 20952 20953 20954 20955 20956 20957 20958 20959 20960 20961 20962 20963 20964 20965 20966 20967 20968 20969 20970 20971 20972 20973 20974 20975 20976 20977 20978 20979 20980 20981 20982 20983 20984 20985 20986 20987 20988 20989 20990 20991 20992 20993 20994 20995 20996 20997 20998 20999 21000 21001 21002 21003 21004 21005 21006 21007 21008 21009 21010 21011 21012 21013 21014 21015 21016 21017 21018 21019 21020 21021 21022 21023 21024 21025 21026 21027 21028 21029 21030 21031 21032 21033 21034 21035 21036 21037 21038 21039 21040 21041 21042 21043 21044 21045 21046 21047 21048 21049 21050 21051 21052 21053 21054 21055 21056 21057 21058 21059 21060 21061 21062 21063 21064 21065 21066 21067 21068 21069 21070 21071 21072 21073 21074 21075 21076 21077 21078 21079 21080 21081 21082 21083 21084 21085 21086 21087 21088 21089 21090 21091 21092 21093 21094 21095 21096 21097 21098 21099 21100 21101 21102 21103 21104 21105 21106 21107 21108 21109 21110 21111 21112 21113 21114 21115 21116 21117 21118 21119 21120 21121 21122 21123 21124 21125 21126 21127 21128 21129 21130 21131 21132 21133 21134 21135 21136 21137 21138 21139 21140 21141 21142 21143 21144 21145 21146 21147 21148 21149 21150 21151 21152 21153 21154 21155 21156 21157 21158 21159 21160 21161 21162 21163 21164 21165 21166 21167 21168 21169 21170 21171 21172 21173 21174 21175 21176 21177 21178 21179 21180 21181 21182 21183 21184 21185 21186 21187 21188 21189 21190 21191 21192 21193 21194 21195 21196 21197 21198 21199 21200 21201 21202 21203 21204 21205 21206 21207 21208 21209 21210 21211 21212 21213 21214 21215 21216 21217 21218 21219 21220 21221 21222 21223 21224 21225 21226 21227 21228 21229 21230 21231 21232 21233 21234 21235 21236 21237 21238 21239 21240 21241 21242 21243 21244 21245 21246 21247 21248 21249 21250 21251 21252 21253 21254 21255 21256 21257 21258 21259 21260 21261 21262 21263 21264 21265 21266 21267 21268 21269 21270 21271 21272 21273 21274 21275 21276 21277 21278 21279 21280 21281 21282 21283 21284 21285 21286 21287 21288 21289 21290 21291 21292 21293 21294 21295 21296 21297 21298 21299 21300 21301 21302 21303 21304 21305 21306 21307 21308 21309 21310 21311 21312 21313 21314 21315 21316 21317 21318 21319 21320 21321 21322 21323 21324 21325 21326 21327 21328 21329 21330 21331 21332 21333 21334 21335 21336 21337 21338 21339 21340 21341 21342 21343 21344 21345 21346 21347 21348 21349 21350 21351 21352 21353 21354 21355 21356 21357 21358 21359 21360 21361 21362 21363 21364 21365 21366 21367 21368 21369 21370 21371 21372 21373 21374 21375 21376 21377 21378 21379 21380 21381 21382 21383 21384 21385 21386 21387 21388 21389 21390 21391 21392 21393 21394 21395 21396 21397 21398 21399 21400 21401 21402 21403 21404 21405 21406 21407 21408 21409 21410 21411 21412 21413 21414 21415 21416 21417 21418 21419 21420 21421 21422 21423 21424 21425 21426 21427 21428 21429 21430 21431 21432 21433 21434 21435 21436 21437 21438 21439 21440 21441 21442 21443 21444 21445 21446 21447 21448 21449 21450 21451 21452 21453 21454 21455 21456 21457 21458 21459 21460 21461 21462 21463 21464 21465 21466 21467 21468 21469 21470 21471 21472 21473 21474 21475 21476 21477 21478 21479 21480 21481 21482 21483 21484 21485 21486 21487 21488 21489 21490 21491 21492 21493 21494 21495 21496 21497 21498 21499 21500 21501 21502 21503 21504 21505 21506 21507 21508 21509 21510 21511 21512 21513 21514 21515 21516 21517 21518 21519 21520 21521 21522 21523 21524 21525 21526 21527 21528 21529 21530 21531 21532 21533 21534 21535 21536 21537 21538 21539 21540 21541 21542 21543 21544 21545 21546 21547 21548 21549 21550 21551 21552 21553 21554 21555 21556 21557 21558 21559 21560 21561 21562 21563 21564 21565 21566 21567 21568 21569 21570 21571 21572 21573 21574 21575 21576 21577 21578 21579 21580 21581 21582 21583 21584 21585 21586 21587 21588 21589 21590 21591 21592 21593 21594 21595 21596 21597 21598 21599 21600 21601 21602 21603 21604 21605 21606 21607 21608 21609 21610 21611 21612 21613 21614 21615 21616 21617 21618 21619 21620 21621 21622 21623 21624 21625 21626 21627 21628 21629 21630 21631 21632 21633 21634 21635 21636 21637 21638 21639 21640 21641 21642 21643 21644 21645 21646 21647 21648 21649 21650 21651 21652 21653 21654 21655 21656 21657 21658 21659 21660 21661 21662 21663 21664 21665 21666 21667 21668 21669 21670 21671 21672 21673 21674 21675 21676 21677 21678 21679 21680 21681 21682 21683 21684 21685 21686 21687 21688 21689 21690 21691 21692 21693 21694 21695 21696 21697 21698 21699 21700 21701 21702 21703 21704 21705 21706 21707 21708 21709 21710 21711 21712 21713 21714 21715 21716 21717 21718 21719 21720 21721 21722 21723 21724 21725 21726 21727 21728 21729 21730 21731 21732 21733 21734 21735 21736 21737 21738 21739 21740 21741 21742 21743 21744 21745 21746 21747 21748 21749 21750 21751 21752 21753 21754 21755 21756 21757 21758 21759 21760 21761 21762 21763 21764 21765 21766 21767 21768 21769 21770 21771 21772 21773 21774 21775 21776 21777 21778 21779 21780 21781 21782 21783 21784 21785 21786 21787 21788 21789 21790 21791 21792 21793 21794 21795 21796 21797 21798 21799 21800 21801 21802 21803 21804 21805 21806 21807 21808 21809 21810 21811 21812 21813 21814 21815 21816 21817 21818 21819 21820 21821 21822 21823 21824 21825 21826 21827 21828 21829 21830 21831 21832 21833 21834 21835 21836 21837 21838 21839 21840 21841 21842 21843 21844 21845 21846 21847 21848 21849 21850 21851 21852 21853 21854 21855 21856 21857 21858 21859 21860 21861 21862 21863 21864 21865 21866 21867 21868 21869 21870 21871 21872 21873 21874 21875 21876 21877 21878 21879 21880 21881 21882 21883 21884 21885 21886 21887 21888 21889 21890 21891 21892 21893 21894 21895 21896 21897 21898 21899 21900 21901 21902 21903 21904 21905 21906 21907 21908 21909 21910 21911 21912 21913 21914 21915 21916 21917 21918 21919 21920 21921 21922 21923 21924 21925 21926 21927 21928 21929 21930 21931 21932 21933 21934 21935 21936 21937 21938 21939 21940 21941 21942 21943 21944 21945 21946 21947 21948 21949 21950 21951 21952 21953 21954 21955 21956 21957 21958 21959 21960 21961 21962 21963 21964 21965 21966 21967 21968 21969 21970 21971 21972 21973 21974 21975 21976 21977 21978 21979 21980 21981 21982 21983 21984 21985 21986 21987 21988 21989 21990 21991 21992 21993 21994 21995 21996 21997 21998 21999 22000 22001 22002 22003 22004 22005 22006 22007 22008 22009 22010 22011 22012 22013 22014 22015 22016 22017 22018 22019 22020 22021 22022 22023 22024 22025 22026 22027 22028 22029 22030 22031 22032 22033 22034 22035 22036 22037 22038 22039 22040 22041 22042 22043 22044 22045 22046 22047 22048 22049 22050 22051 22052 22053 22054 22055 22056 22057 22058 22059 22060 22061 22062 22063 22064 22065 22066 22067 22068 22069 22070 22071 22072 22073 22074 22075 22076 22077 22078 22079 22080 22081 22082 22083 22084 22085 22086 22087 22088 22089 22090 22091 22092 22093 22094 22095 22096 22097 22098 22099 22100 22101 22102 22103 22104 22105 22106 22107 22108 22109 22110 22111 22112 22113 22114 22115 22116 22117 22118 22119 22120 22121 22122 22123 22124 22125 22126 22127 22128 22129 22130 22131 22132 22133 22134 22135 22136 22137 22138 22139 22140 22141 22142 22143 22144 22145 22146 22147 22148 22149 22150 22151 22152 22153 22154 22155 22156 22157 22158 22159 22160 22161 22162 22163 22164 22165 22166 22167 22168 22169 22170 22171 22172 22173 22174 22175 22176 22177 22178 22179 22180 22181 22182 22183 22184 22185 22186 22187 22188 22189 22190 22191 22192 22193 22194 22195 22196 22197 22198 22199 22200 22201 22202 22203 22204 22205 22206 22207 22208 22209 22210 22211 22212 22213 22214 22215 22216 22217 22218 22219 22220 22221 22222 22223 22224 22225 22226 22227 22228 22229 22230 22231 22232 22233 22234 22235 22236 22237 22238 22239 22240 22241 22242 22243 22244 22245 22246 22247 22248 22249 22250 22251 22252 22253 22254 22255 22256 22257 22258 22259 22260 22261 22262 22263 22264 22265 22266 22267 22268 22269 22270 22271 22272 22273 22274 22275 22276 22277 22278 22279 22280 22281 22282 22283 22284 22285 22286 22287 22288 22289 22290 22291 22292 22293 22294 22295 22296 22297 22298 22299 22300 22301 22302 22303 22304 22305 22306 22307 22308 22309 22310 22311 22312 22313 22314 22315 22316 22317 22318 22319 22320 22321 22322 22323 22324 22325 22326 22327 22328 22329 22330 22331 22332 22333 22334 22335 22336 22337 22338 22339 22340 22341 22342 22343 22344 22345 22346 22347 22348 22349 22350 22351 22352 22353 22354 22355 22356 22357 22358 22359 22360 22361 22362 22363 22364 22365 22366 22367 22368 22369 22370 22371 22372 22373 22374 22375 22376 22377 22378 22379 22380 22381 22382 22383 22384 22385 22386 22387 22388 22389 22390 22391 22392 22393 22394 22395 22396 22397 22398 22399 22400 22401 22402 22403 22404 22405 22406 22407 22408 22409 22410 22411 22412 22413 22414 22415 22416 22417 22418 22419 22420 22421 22422 22423 22424 22425 22426 22427 22428 22429 22430 22431 22432 22433 22434 22435 22436 22437 22438 22439 22440 22441 22442 22443 22444 22445 22446 22447 22448 22449 22450 22451 22452 22453 22454 22455 22456 22457 22458 22459 22460 22461 22462 22463 22464 22465 22466 22467 22468 22469 22470 22471 22472 22473 22474 22475 22476 22477 22478 22479 22480 22481 22482 22483 22484 22485 22486 22487 22488 22489 22490 22491 22492 22493 22494 22495 22496 22497 22498 22499 22500 22501 22502 22503 22504 22505 22506 22507 22508 22509 22510 22511 22512 22513 22514 22515 22516 22517 22518 22519 22520 22521 22522 22523 22524 22525 22526 22527 22528 22529 22530 22531 22532 22533 22534 22535 22536 22537 22538 22539 22540 22541 22542 22543 22544 22545 22546 22547 22548 22549 22550 22551 22552 22553 22554 22555 22556 22557 22558 22559 22560 22561 22562 22563 22564 22565 22566 22567 22568 22569 22570 22571 22572 22573 22574 22575 22576 22577 22578 22579 22580 22581 22582 22583 22584 22585 22586 22587 22588 22589 22590 22591 22592 22593 22594 22595 22596 22597 22598 22599 22600 22601 22602 22603 22604 22605 22606 22607 22608 22609 22610 22611 22612 22613 22614 22615 22616 22617 22618 22619 22620 22621 22622 22623 22624 22625 22626 22627 22628 22629 22630 22631 22632 22633 22634 22635 22636 22637 22638 22639 22640 22641 22642 22643 22644 22645 22646 22647 22648 22649 22650 22651 22652 22653 22654 22655 22656 22657 22658 22659 22660 22661 22662 22663 22664 22665 22666 22667 22668 22669 22670 22671 22672 22673 22674 22675 22676 22677 22678 22679 22680 22681 22682 22683 22684 22685 22686 22687 22688 22689 22690 22691 22692 22693 22694 22695 22696 22697 22698 22699 22700 22701 22702 22703 22704 22705 22706 22707 22708 22709 22710 22711 22712 22713 22714 22715 22716 22717 22718 22719 22720 22721 22722 22723 22724 22725 22726 22727 22728 22729 22730 22731 22732 22733 22734 22735 22736 22737 22738 22739 22740 22741 22742 22743 22744 22745 22746 22747 22748 22749 22750 22751 22752 22753 22754 22755 22756 22757 22758 22759 22760 22761 22762 22763 22764 22765 22766 22767 22768 22769 22770 22771 22772 22773 22774 22775 22776 22777 22778 22779 22780 22781 22782 22783 22784 22785 22786 22787 22788 22789 22790 22791 22792 22793 22794 22795 22796 22797 22798 22799 22800 22801 22802 22803 22804 22805 22806 22807 22808 22809 22810 22811 22812 22813 22814 22815 22816 22817 22818 22819 22820 22821 22822 22823 22824 22825 22826 22827 22828 22829 22830 22831 22832 22833 22834 22835 22836 22837 22838 22839 22840 22841 22842 22843 22844 22845 22846 22847 22848 22849 22850 22851 22852 22853 22854 22855 22856 22857 22858 22859 22860 22861 22862 22863 22864 22865 22866 22867 22868 22869 22870 22871 22872 22873 22874 22875 22876 22877 22878 22879 22880 22881 22882 22883 22884 22885 22886 22887 22888 22889 22890 22891 22892 22893 22894 22895 22896 22897 22898 22899 22900 22901 22902 22903 22904 22905 22906 22907 22908 22909 22910 22911 22912 22913 22914 22915 22916 22917 22918 22919 22920 22921 22922 22923 22924 22925 22926 22927 22928 22929 22930 22931 22932 22933 22934 22935 22936 22937 22938 22939 22940 22941 22942 22943 22944 22945 22946 22947 22948 22949 22950 22951 22952 22953 22954 22955 22956 22957 22958 22959 22960 22961 22962 22963 22964 22965 22966 22967 22968 22969 22970 22971 22972 22973 22974 22975 22976 22977 22978 22979 22980 22981 22982 22983 22984 22985 22986 22987 22988 22989 22990 22991 22992 22993 22994 22995 22996 22997 22998 22999 23000 23001 23002 23003 23004 23005 23006 23007 23008 23009 23010 23011 23012 23013 23014 23015 23016 23017 23018 23019 23020 23021 23022 23023 23024 23025 23026 23027 23028 23029 23030 23031 23032 23033 23034 23035 23036 23037 23038 23039 23040 23041 23042 23043 23044 23045 23046 23047 23048 23049 23050 23051 23052 23053 23054 23055 23056 23057 23058 23059 23060 23061 23062 23063 23064 23065 23066 23067 23068 23069 23070 23071 23072 23073 23074 23075 23076 23077 23078 23079 23080 23081 23082 23083 23084 23085 23086 23087 23088 23089 23090 23091 23092 23093 23094 23095 23096 23097 23098 23099 23100 23101 23102 23103 23104 23105 23106 23107 23108 23109 23110 23111 23112 23113 23114 23115 23116 23117 23118 23119 23120 23121 23122 23123 23124 23125 23126 23127 23128 23129 23130 23131 23132 23133 23134 23135 23136 23137 23138 23139 23140 23141 23142 23143 23144 23145 23146 23147 23148 23149 23150 23151 23152 23153 23154 23155 23156 23157 23158 23159 23160 23161 23162 23163 23164 23165 23166 23167 23168 23169 23170 23171 23172 23173 23174 23175 23176 23177 23178 23179 23180 23181 23182 23183 23184 23185 23186 23187 23188 23189 23190 23191 23192 23193 23194 23195 23196 23197 23198 23199 23200 23201 23202 23203 23204 23205 23206 23207 23208 23209 23210 23211 23212 23213 23214 23215 23216 23217 23218 23219 23220 23221 23222 23223 23224 23225 23226 23227 23228 23229 23230 23231 23232 23233 23234 23235 23236 23237 23238 23239 23240 23241 23242 23243 23244 23245 23246 23247 23248 23249 23250 23251 23252 23253 23254 23255 23256 23257 23258 23259 23260 23261 23262 23263 23264 23265 23266 23267 23268 23269 23270 23271 23272 23273 23274 23275 23276 23277 23278 23279 23280 23281 23282 23283 23284 23285 23286 23287 23288 23289 23290 23291 23292 23293 23294 23295 23296 23297 23298 23299 23300 23301 23302 23303 23304 23305 23306 23307 23308 23309 23310 23311 23312 23313 23314 23315 23316 23317 23318 23319 23320 23321 23322 23323 23324 23325 23326 23327 23328 23329 23330 23331 23332 23333 23334 23335 23336 23337 23338 23339 23340 23341 23342 23343 23344 23345 23346 23347 23348 23349 23350 23351 23352 23353 23354 23355 23356 23357 23358 23359 23360 23361 23362 23363 23364 23365 23366 23367 23368 23369 23370 23371 23372 23373 23374 23375 23376 23377 23378 23379 23380 23381 23382 23383 23384 23385 23386 23387 23388 23389 23390 23391 23392 23393 23394 23395 23396 23397 23398 23399 23400 23401 23402 23403 23404 23405 23406 23407 23408 23409 23410 23411 23412 23413 23414 23415 23416 23417 23418 23419 23420 23421 23422 23423 23424 23425 23426 23427 23428 23429 23430 23431 23432 23433 23434 23435 23436 23437 23438 23439 23440 23441 23442 23443 23444 23445 23446 23447 23448 23449 23450 23451 23452 23453 23454 23455 23456 23457 23458 23459 23460 23461 23462 23463 23464 23465 23466 23467 23468 23469 23470 23471 23472 23473 23474 23475 23476 23477 23478 23479 23480 23481 23482 23483 23484 23485 23486 23487 23488 23489 23490 23491 23492 23493 23494 23495 23496 23497 23498 23499 23500 23501 23502 23503 23504 23505 23506 23507 23508 23509 23510 23511 23512 23513 23514 23515 23516 23517 23518 23519 23520 23521 23522 23523 23524 23525 23526 23527 23528 23529 23530 23531 23532 23533 23534 23535 23536 23537 23538 23539 23540 23541 23542 23543 23544 23545 23546 23547 23548 23549 23550 23551 23552 23553 23554 23555 23556 23557 23558 23559 23560 23561 23562 23563 23564 23565 23566 23567 23568 23569 23570 23571 23572 23573 23574 23575 23576 23577 23578 23579 23580 23581 23582 23583 23584 23585 23586 23587 23588 23589 23590 23591 23592 23593 23594 23595 23596 23597 23598 23599 23600 23601 23602 23603 23604 23605 23606 23607 23608 23609 23610 23611 23612 23613 23614 23615 23616 23617 23618 23619 23620 23621 23622 23623 23624 23625 23626 23627 23628 23629 23630 23631 23632 23633 23634 23635 23636 23637 23638 23639 23640 23641 23642 23643 23644 23645 23646 23647 23648 23649 23650 23651 23652 23653 23654 23655 23656 23657 23658 23659 23660 23661 23662 23663 23664 23665 23666 23667 23668 23669 23670 23671 23672 23673 23674 23675 23676 23677 23678 23679 23680 23681 23682 23683 23684 23685 23686 23687 23688 23689 23690 23691 23692 23693 23694 23695 23696 23697 23698 23699 23700 23701 23702 23703 23704 23705 23706 23707 23708 23709 23710 23711 23712 23713 23714 23715 23716 23717 23718 23719 23720 23721 23722 23723 23724 23725 23726 23727 23728 23729 23730 23731 23732 23733 23734 23735 23736 23737 23738 23739 23740 23741 23742 23743 23744 23745 23746 23747 23748 23749 23750 23751 23752 23753 23754 23755 23756 23757 23758 23759 23760 23761 23762 23763 23764 23765 23766 23767 23768 23769 23770 23771 23772 23773 23774 23775 23776 23777 23778 23779 23780 23781 23782 23783 23784 23785 23786 23787 23788 23789 23790 23791 23792 23793 23794 23795 23796 23797 23798 23799 23800 23801 23802 23803 23804 23805 23806 23807 23808 23809 23810 23811 23812 23813 23814 23815 23816 23817 23818 23819 23820 23821 23822 23823 23824 23825 23826 23827 23828 23829 23830 23831 23832 23833 23834 23835 23836 23837 23838 23839 23840 23841 23842 23843 23844 23845 23846 23847 23848 23849 23850 23851 23852 23853 23854 23855 23856 23857 23858 23859 23860 23861 23862 23863 23864 23865 23866 23867 23868 23869 23870 23871 23872 23873 23874 23875 23876 23877 23878 23879 23880 23881 23882 23883 23884 23885 23886 23887 23888 23889 23890 23891 23892 23893 23894 23895 23896 23897 23898 23899 23900 23901 23902 23903 23904 23905 23906 23907 23908 23909 23910 23911 23912 23913 23914 23915 23916 23917 23918 23919 23920 23921 23922 23923 23924 23925 23926 23927 23928 23929 23930 23931 23932 23933 23934 23935 23936 23937 23938 23939 23940 23941 23942 23943 23944 23945 23946 23947 23948 23949 23950 23951 23952 23953 23954 23955 23956 23957 23958 23959 23960 23961 23962 23963 23964 23965 23966 23967 23968 23969 23970 23971 23972 23973 23974 23975 23976 23977 23978 23979 23980 23981 23982 23983 23984 23985 23986 23987 23988 23989 23990 23991 23992 23993 23994 23995 23996 23997 23998 23999 24000 24001 24002 24003 24004 24005 24006 24007 24008 24009 24010 24011 24012 24013 24014 24015 24016 24017 24018 24019 24020 24021 24022 24023 24024 24025 24026 24027 24028 24029 24030 24031 24032 24033 24034 24035 24036 24037 24038 24039 24040 24041 24042 24043 24044 24045 24046 24047 24048 24049 24050 24051 24052 24053 24054 24055 24056 24057 24058 24059 24060 24061 24062 24063 24064 24065 24066 24067 24068 24069 24070 24071 24072 24073 24074 24075 24076 24077 24078 24079 24080 24081 24082 24083 24084 24085 24086 24087 24088 24089 24090 24091 24092 24093 24094 24095 24096 24097 24098 24099 24100 24101 24102 24103 24104 24105 24106 24107 24108 24109 24110 24111 24112 24113 24114 24115 24116 24117 24118 24119 24120 24121 24122 24123 24124 24125 24126 24127 24128 24129 24130 24131 24132 24133 24134 24135 24136 24137 24138 24139 24140 24141 24142 24143 24144 24145 24146 24147 24148 24149 24150 24151 24152 24153 24154 24155 24156 24157 24158 24159 24160 24161 24162 24163 24164 24165 24166 24167 24168 24169 24170 24171 24172 24173 24174 24175 24176 24177 24178 24179 24180 24181 24182 24183 24184 24185 24186 24187 24188 24189 24190 24191 24192 24193 24194 24195 24196 24197 24198 24199 24200 24201 24202 24203 24204 24205 24206 24207 24208 24209 24210 24211 24212 24213 24214 24215 24216 24217 24218 24219 24220 24221 24222 24223 24224 24225 24226 24227 24228 24229 24230 24231 24232 24233 24234 24235 24236 24237 24238 24239 24240 24241 24242 24243 24244 24245 24246 24247 24248 24249 24250 24251 24252 24253 24254 24255 24256 24257 24258 24259 24260 24261 24262 24263 24264 24265 24266 24267 24268 24269 24270 24271 24272 24273 24274 24275 24276 24277 24278 24279 24280 24281 24282 24283 24284 24285 24286 24287 24288 24289 24290 24291 24292 24293 24294 24295 24296 24297 24298 24299 24300 24301 24302 24303 24304 24305 24306 24307 24308 24309 24310 24311 24312 24313 24314 24315 24316 24317 24318 24319 24320 24321 24322 24323 24324 24325 24326 24327 24328 24329 24330 24331 24332 24333 24334 24335 24336 24337 24338 24339 24340 24341 24342 24343 24344 24345 24346 24347 24348 24349 24350 24351 24352 24353 24354 24355 24356 24357 24358 24359 24360 24361 24362 24363 24364 24365 24366 24367 24368 24369 24370 24371 24372 24373 24374 24375 24376 24377 24378 24379 24380 24381 24382 24383 24384 24385 24386 24387 24388 24389 24390 24391 24392 24393 24394 24395 24396 24397 24398 24399 24400 24401 24402 24403 24404 24405 24406 24407 24408 24409 24410 24411 24412 24413 24414 24415 24416 24417 24418 24419 24420 24421 24422 24423 24424 24425 24426 24427 24428 24429 24430 24431 24432 24433 24434 24435 24436 24437 24438 24439 24440 24441 24442 24443 24444 24445 24446 24447 24448 24449 24450 24451 24452 24453 24454 24455 24456 24457 24458 24459 24460 24461 24462 24463 24464 24465 24466 24467 24468 24469 24470 24471 24472 24473 24474 24475 24476 24477 24478 24479 24480 24481 24482 24483 24484 24485 24486 24487 24488 24489 24490 24491 24492 24493 24494 24495 24496 24497 24498 24499 24500 24501 24502 24503 24504 24505 24506 24507 24508 24509 24510 24511 24512 24513 24514 24515 24516 24517 24518 24519 24520 24521 24522 24523 24524 24525 24526 24527 24528 24529 24530 24531 24532 24533 24534 24535 24536 24537 24538 24539 24540 24541 24542 24543 24544 24545 24546 24547 24548 24549 24550 24551 24552 24553 24554 24555 24556 24557 24558 24559 24560 24561 24562 24563 24564 24565 24566 24567 24568 24569 24570 24571 24572 24573 24574 24575 24576 24577 24578 24579 24580 24581 24582 24583 24584 24585 24586 24587 24588 24589 24590 24591 24592 24593 24594 24595 24596 24597 24598 24599 24600 24601 24602 24603 24604 24605 24606 24607 24608 24609 24610 24611 24612 24613 24614 24615 24616 24617 24618 24619 24620 24621 24622 24623 24624 24625 24626 24627 24628 24629 24630 24631 24632 24633 24634 24635 24636 24637 24638 24639 24640 24641 24642 24643 24644 24645 24646 24647 24648 24649 24650 24651 24652 24653 24654 24655 24656 24657 24658 24659 24660 24661 24662 24663 24664 24665 24666 24667 24668 24669 24670 24671 24672 24673 24674 24675 24676 24677 24678 24679 24680 24681 24682 24683 24684 24685 24686 24687 24688 24689 24690 24691 24692 24693 24694 24695 24696 24697 24698 24699 24700 24701 24702 24703 24704 24705 24706 24707 24708 24709 24710 24711 24712 24713 24714 24715 24716 24717 24718 24719 24720 24721 24722 24723 24724 24725 24726 24727 24728 24729 24730 24731 24732 24733 24734 24735 24736 24737 24738 24739 24740 24741 24742 24743 24744 24745 24746 24747 24748 24749 24750 24751 24752 24753 24754 24755 24756 24757 24758 24759 24760 24761 24762 24763 24764 24765 24766 24767 24768 24769 24770 24771 24772 24773 24774 24775 24776 24777 24778 24779 24780 24781 24782 24783 24784 24785 24786 24787 24788 24789 24790 24791 24792 24793 24794 24795 24796 24797 24798 24799 24800 24801 24802 24803 24804 24805 24806 24807 24808 24809 24810 24811 24812 24813 24814 24815 24816 24817 24818 24819 24820 24821 24822 24823 24824 24825 24826 24827 24828 24829 24830 24831 24832 24833 24834 24835 24836 24837 24838 24839 24840 24841 24842 24843 24844 24845 24846 24847 24848 24849 24850 24851 24852 24853 24854 24855 24856 24857 24858 24859 24860 24861 24862 24863 24864 24865 24866 24867 24868 24869 24870 24871 24872 24873 24874 24875 24876 24877 24878 24879 24880 24881 24882 24883 24884 24885 24886 24887 24888 24889 24890 24891 24892 24893 24894 24895 24896 24897 24898 24899 24900 24901 24902 24903 24904 24905 24906 24907 24908 24909 24910 24911 24912 24913 24914 24915 24916 24917 24918 24919 24920 24921 24922 24923 24924 24925 24926 24927 24928 24929 24930 24931 24932 24933 24934 24935 24936 24937 24938 24939 24940 24941 24942 24943 24944 24945 24946 24947 24948 24949 24950 24951 24952 24953 24954 24955 24956 24957 24958 24959 24960 24961 24962 24963 24964 24965 24966 24967 24968 24969 24970 24971 24972 24973 24974 24975 24976 24977 24978 24979 24980 24981 24982 24983 24984 24985 24986 24987 24988 24989 24990 24991 24992 24993 24994 24995 24996 24997 24998 24999 25000 25001 25002 25003 25004 25005 25006 25007 25008 25009 25010 25011 25012 25013 25014 25015 25016 25017 25018 25019 25020 25021 25022 25023 25024 25025 25026 25027 25028 25029 25030 25031 25032 25033 25034 25035 25036 25037 25038 25039 25040 25041 25042 25043 25044 25045 25046 25047 25048 25049 25050 25051 25052 25053 25054 25055 25056 25057 25058 25059 25060 25061 25062 25063 25064 25065 25066 25067 25068 25069 25070 25071 25072 25073 25074 25075 25076 25077 25078 25079 25080 25081 25082 25083 25084 25085 25086 25087 25088 25089 25090 25091 25092 25093 25094 25095 25096 25097 25098 25099 25100 25101 25102 25103 25104 25105 25106 25107 25108 25109 25110 25111 25112 25113 25114 25115 25116 25117 25118 25119 25120 25121 25122 25123 25124 25125 25126 25127 25128 25129 25130 25131 25132 25133 25134 25135 25136 25137 25138 25139 25140 25141 25142 25143 25144 25145 25146 25147 25148 25149 25150 25151 25152 25153 25154 25155 25156 25157 25158 25159 25160 25161 25162 25163 25164 25165 25166 25167 25168 25169 25170 25171 25172 25173 25174 25175 25176 25177 25178 25179 25180 25181 25182 25183 25184 25185 25186 25187 25188 25189 25190 25191 25192 25193 25194 25195 25196 25197 25198 25199 25200 25201 25202 25203 25204 25205 25206 25207 25208 25209 25210 25211 25212 25213 25214 25215 25216 25217 25218 25219 25220 25221 25222 25223 25224 25225 25226 25227 25228 25229 25230 25231 25232 25233 25234 25235 25236 25237 25238 25239 25240 25241 25242 25243 25244 25245 25246 25247 25248 25249 25250 25251 25252 25253 25254 25255 25256 25257 25258 25259 25260 25261 25262 25263 25264 25265 25266 25267 25268 25269 25270 25271 25272 25273 25274 25275 25276 25277 25278 25279 25280 25281 25282 25283 25284 25285 25286 25287 25288 25289 25290 25291 25292 25293 25294 25295 25296 25297 25298 25299 25300 25301 25302 25303 25304 25305 25306 25307 25308 25309 25310 25311 25312 25313 25314 25315 25316 25317 25318 25319 25320 25321 25322 25323 25324 25325 25326 25327 25328 25329 25330 25331 25332 25333 25334 25335 25336 25337 25338 25339 25340 25341 25342 25343 25344 25345 25346 25347 25348 25349 25350 25351 25352 25353 25354 25355 25356 25357 25358 25359 25360 25361 25362 25363 25364 25365 25366 25367 25368 25369 25370 25371 25372 25373 25374 25375 25376 25377 25378 25379 25380 25381 25382 25383 25384 25385 25386 25387 25388 25389 25390 25391 25392 25393 25394 25395 25396 25397 25398 25399 25400 25401 25402 25403 25404 25405 25406 25407 25408 25409 25410 25411 25412 25413 25414 25415 25416 25417 25418 25419 25420 25421 25422 25423 25424 25425 25426 25427 25428 25429 25430 25431 25432 25433 25434 25435 25436 25437 25438 25439 25440 25441 25442 25443 25444 25445 25446 25447 25448 25449 25450 25451 25452 25453 25454 25455 25456 25457 25458 25459 25460 25461 25462 25463 25464 25465 25466 25467 25468 25469 25470 25471 25472 25473 25474 25475 25476 25477 25478 25479 25480 25481 25482 25483 25484 25485 25486 25487 25488 25489 25490 25491 25492 25493 25494 25495 25496 25497 25498 25499 25500 25501 25502 25503 25504 25505 25506 25507 25508 25509 25510 25511 25512 25513 25514 25515 25516 25517 25518 25519 25520 25521 25522 25523 25524 25525 25526 25527 25528 25529 25530 25531 25532 25533 25534 25535 25536 25537 25538 25539 25540 25541 25542 25543 25544 25545 25546 25547 25548 25549 25550 25551 25552 25553 25554 25555 25556 25557 25558 25559 25560 25561 25562 25563 25564 25565 25566 25567 25568 25569 25570 25571 25572 25573 25574 25575 25576 25577 25578 25579 25580 25581 25582 25583 25584 25585 25586 25587 25588 25589 25590 25591 25592 25593 25594 25595 25596 25597 25598 25599 25600 25601 25602 25603 25604 25605 25606 25607 25608 25609 25610 25611 25612 25613 25614 25615 25616 25617 25618 25619 25620 25621 25622 25623 25624 25625 25626 25627 25628 25629 25630 25631 25632 25633 25634 25635 25636 25637 25638 25639 25640 25641 25642 25643 25644 25645 25646 25647 25648 25649 25650 25651 25652 25653 25654 25655 25656 25657 25658 25659 25660 25661 25662 25663 25664 25665 25666 25667 25668 25669 25670 25671 25672 25673 25674 25675 25676 25677 25678 25679 25680 25681 25682 25683 25684 25685 25686 25687 25688 25689 25690 25691 25692 25693 25694 25695 25696 25697 25698 25699 25700 25701 25702 25703 25704 25705 25706 25707 25708 25709 25710 25711 25712 25713 25714 25715 25716 25717 25718 25719 25720 25721 25722 25723 25724 25725 25726 25727 25728 25729 25730 25731 25732 25733 25734 25735 25736 25737 25738 25739 25740 25741 25742 25743 25744 25745 25746 25747 25748 25749 25750 25751 25752 25753 25754 25755 25756 25757 25758 25759 25760 25761 25762 25763 25764 25765 25766 25767 25768 25769 25770 25771 25772 25773 25774 25775 25776 25777 25778 25779 25780 25781 25782 25783 25784 25785 25786 25787 25788 25789 25790 25791 25792 25793 25794 25795 25796 25797 25798 25799 25800 25801 25802 25803 25804 25805 25806 25807 25808 25809 25810 25811 25812 25813 25814 25815 25816 25817 25818 25819 25820 25821 25822 25823 25824 25825 25826 25827 25828 25829 25830 25831 25832 25833 25834 25835 25836 25837 25838 25839 25840 25841 25842 25843 25844 25845 25846 25847 25848 25849 25850 25851 25852 25853 25854 25855 25856 25857 25858 25859 25860 25861 25862 25863 25864 25865 25866 25867 25868 25869 25870 25871 25872 25873 25874 25875 25876 25877 25878 25879 25880 25881 25882 25883 25884 25885 25886 25887 25888 25889 25890 25891 25892 25893 25894 25895 25896 25897 25898 25899 25900 25901 25902 25903 25904 25905 25906 25907 25908 25909 25910 25911 25912 25913 25914 25915 25916 25917 25918 25919 25920 25921 25922 25923 25924 25925 25926 25927 25928 25929 25930 25931 25932 25933 25934 25935 25936 25937 25938 25939 25940 25941 25942 25943 25944 25945 25946 25947 25948 25949 25950 25951 25952 25953 25954 25955 25956 25957 25958 25959 25960 25961 25962 25963 25964 25965 25966 25967 25968 25969 25970 25971 25972 25973 25974 25975 25976 25977 25978 25979 25980 25981 25982 25983 25984 25985 25986 25987 25988 25989 25990 25991 25992 25993 25994 25995 25996 25997 25998 25999 26000 26001 26002 26003 26004 26005 26006 26007 26008 26009 26010 26011 26012 26013 26014 26015 26016 26017 26018 26019 26020 26021 26022 26023 26024 26025 26026 26027 26028 26029 26030 26031 26032 26033 26034 26035 26036 26037 26038 26039 26040 26041 26042 26043 26044 26045 26046 26047 26048 26049 26050 26051 26052 26053 26054 26055 26056 26057 26058 26059 26060 26061 26062 26063 26064 26065 26066 26067 26068 26069 26070 26071 26072 26073 26074 26075 26076 26077 26078 26079 26080 26081 26082 26083 26084 26085 26086 26087 26088 26089 26090 26091 26092 26093 26094 26095 26096 26097 26098 26099 26100 26101 26102 26103 26104 26105 26106 26107 26108 26109 26110 26111 26112 26113 26114 26115 26116 26117 26118 26119 26120 26121 26122 26123 26124 26125 26126 26127 26128 26129 26130 26131 26132 26133 26134 26135 26136 26137 26138 26139 26140 26141 26142 26143 26144 26145 26146 26147 26148 26149 26150 26151 26152 26153 26154 26155 26156 26157 26158 26159 26160 26161 26162 26163 26164 26165 26166 26167 26168 26169 26170 26171 26172 26173 26174 26175 26176 26177 26178 26179 26180 26181 26182 26183 26184 26185 26186 26187 26188 26189 26190 26191 26192 26193 26194 26195 26196 26197 26198 26199 26200 26201 26202 26203 26204 26205 26206 26207 26208 26209 26210 26211 26212 26213 26214 26215 26216 26217 26218 26219 26220 26221 26222 26223 26224 26225 26226 26227 26228 26229 26230 26231 26232 26233 26234 26235 26236 26237 26238 26239 26240 26241 26242 26243 26244 26245 26246 26247 26248 26249 26250 26251 26252 26253 26254 26255 26256 26257 26258 26259 26260 26261 26262 26263 26264 26265 26266 26267 26268 26269 26270 26271 26272 26273 26274 26275 26276 26277 26278 26279 26280 26281 26282 26283 26284 26285 26286 26287 26288 26289 26290 26291 26292 26293 26294 26295 26296 26297 26298 26299 26300 26301 26302 26303 26304 26305 26306 26307 26308 26309 26310 26311 26312 26313 26314 26315 26316 26317 26318 26319 26320 26321 26322 26323 26324 26325 26326 26327 26328 26329 26330 26331 26332 26333 26334 26335 26336 26337 26338 26339 26340 26341 26342 26343 26344 26345 26346 26347 26348 26349 26350 26351 26352 26353 26354 26355 26356 26357 26358 26359 26360 26361 26362 26363 26364 26365 26366 26367 26368 26369 26370 26371 26372 26373 26374 26375 26376 26377 26378 26379 26380 26381 26382 26383 26384 26385 26386 26387 26388 26389 26390 26391 26392 26393 26394 26395 26396 26397 26398 26399 26400 26401 26402 26403 26404 26405 26406 26407 26408 26409 26410 26411 26412 26413 26414 26415 26416 26417 26418 26419 26420 26421 26422 26423 26424 26425 26426 26427 26428 26429 26430 26431 26432 26433 26434 26435 26436 26437 26438 26439 26440 26441 26442 26443 26444 26445 26446 26447 26448 26449 26450 26451 26452 26453 26454 26455 26456 26457 26458 26459 26460 26461 26462 26463 26464 26465 26466 26467 26468 26469 26470 26471 26472 26473 26474 26475 26476 26477 26478 26479 26480 26481 26482 26483 26484 26485 26486 26487 26488 26489 26490 26491 26492 26493 26494 26495 26496 26497 26498 26499 26500 26501 26502 26503 26504 26505 26506 26507 26508 26509 26510 26511 26512 26513 26514 26515 26516 26517 26518 26519 26520 26521 26522 26523 26524 26525 26526 26527 26528 26529 26530 26531 26532 26533 26534 26535 26536 26537 26538 26539 26540 26541 26542 26543 26544 26545 26546 26547 26548 26549 26550 26551 26552 26553 26554 26555 26556 26557 26558 26559 26560 26561 26562 26563 26564 26565 26566 26567 26568 26569 26570 26571 26572 26573 26574 26575 26576 26577 26578 26579 26580 26581 26582 26583 26584 26585 26586 26587 26588 26589 26590 26591 26592 26593 26594 26595 26596 26597 26598 26599 26600 26601 26602 26603 26604 26605 26606 26607 26608 26609 26610 26611 26612 26613 26614 26615 26616 26617 26618 26619 26620 26621 26622 26623 26624 26625 26626 26627 26628 26629 26630 26631 26632 26633 26634 26635 26636 26637 26638 26639 26640 26641 26642 26643 26644 26645 26646 26647 26648 26649 26650 26651 26652 26653 26654 26655 26656 26657 26658 26659 26660 26661 26662 26663 26664 26665 26666 26667 26668 26669 26670 26671 26672 26673 26674 26675 26676 26677 26678 26679 26680 26681 26682 26683 26684 26685 26686 26687 26688 26689 26690 26691 26692 26693 26694 26695 26696 26697 26698 26699 26700 26701 26702 26703 26704 26705 26706 26707 26708 26709 26710 26711 26712 26713 26714 26715 26716 26717 26718 26719 26720 26721 26722 26723 26724 26725 26726 26727 26728 26729 26730 26731 26732 26733 26734 26735 26736 26737 26738 26739 26740 26741 26742 26743 26744 26745 26746 26747 26748 26749 26750 26751 26752 26753 26754 26755 26756 26757 26758 26759 26760 26761 26762 26763 26764 26765 26766 26767 26768 26769 26770 26771 26772 26773 26774 26775 26776 26777 26778 26779 26780 26781 26782 26783 26784 26785 26786 26787 26788 26789 26790 26791 26792 26793 26794 26795 26796 26797 26798 26799 26800 26801 26802 26803 26804 26805 26806 26807 26808 26809 26810 26811 26812 26813 26814 26815 26816 26817 26818 26819 26820 26821 26822 26823 26824 26825 26826 26827 26828 26829 26830 26831 26832 26833 26834 26835 26836 26837 26838 26839 26840 26841 26842 26843 26844 26845 26846 26847 26848 26849 26850 26851 26852 26853 26854 26855 26856 26857 26858 26859 26860 26861 26862 26863 26864 26865 26866 26867 26868 26869 26870 26871 26872 26873 26874 26875 26876 26877 26878 26879 26880 26881 26882 26883 26884 26885 26886 26887 26888 26889 26890 26891 26892 26893 26894 26895 26896 26897 26898 26899 26900 26901 26902 26903 26904 26905 26906 26907 26908 26909 26910 26911 26912 26913 26914 26915 26916 26917 26918 26919 26920 26921 26922 26923 26924 26925 26926 26927 26928 26929 26930 26931 26932 26933 26934 26935 26936 26937 26938 26939 26940 26941 26942 26943 26944 26945 26946 26947 26948 26949 26950 26951 26952 26953 26954 26955 26956 26957 26958 26959 26960 26961 26962 26963 26964 26965 26966 26967 26968 26969 26970 26971 26972 26973 26974 26975 26976 26977 26978 26979 26980 26981 26982 26983 26984 26985 26986 26987 26988 26989 26990 26991 26992 26993 26994 26995 26996 26997 26998 26999 27000 27001 27002 27003 27004 27005 27006 27007 27008 27009 27010 27011 27012 27013 27014 27015 27016 27017 27018 27019 27020 27021 27022 27023 27024 27025 27026 27027 27028 27029 27030 27031 27032 27033 27034 27035 27036 27037 27038 27039 27040 27041 27042 27043 27044 27045 27046 27047 27048 27049 27050 27051 27052 27053 27054 27055 27056 27057 27058 27059 27060 27061 27062 27063 27064 27065 27066 27067 27068 27069 27070 27071 27072 27073 27074 27075 27076 27077 27078 27079 27080 27081 27082 27083 27084 27085 27086 27087 27088 27089 27090 27091 27092 27093 27094 27095 27096 27097 27098 27099 27100 27101 27102 27103 27104 27105 27106 27107 27108 27109 27110 27111 27112 27113 27114 27115 27116 27117 27118 27119 27120 27121 27122 27123 27124 27125 27126 27127 27128 27129 27130 27131 27132 27133 27134 27135 27136 27137 27138 27139 27140 27141 27142 27143 27144 27145 27146 27147 27148 27149 27150 27151 27152 27153 27154 27155 27156 27157 27158 27159 27160 27161 27162 27163 27164 27165 27166 27167 27168 27169 27170 27171 27172 27173 27174 27175 27176 27177 27178 27179 27180 27181 27182 27183 27184 27185 27186 27187 27188 27189 27190 27191 27192 27193 27194 27195 27196 27197 27198 27199 27200 27201 27202 27203 27204 27205 27206 27207 27208 27209 27210 27211 27212 27213 27214 27215 27216 27217 27218 27219 27220 27221 27222 27223 27224 27225 27226 27227 27228 27229 27230 27231 27232 27233 27234 27235 27236 27237 27238 27239 27240 27241 27242 27243 27244 27245 27246 27247 27248 27249 27250 27251 27252 27253 27254 27255 27256 27257 27258 27259 27260 27261 27262 27263 27264 27265 27266 27267 27268 27269 27270 27271 27272 27273 27274 27275 27276 27277 27278 27279 27280 27281 27282 27283 27284 27285 27286 27287 27288 27289 27290 27291 27292 27293 27294 27295 27296 27297 27298 27299 27300 27301 27302 27303 27304 27305 27306 27307 27308 27309 27310 27311 27312 27313 27314 27315 27316 27317 27318 27319 27320 27321 27322 27323 27324 27325 27326 27327 27328 27329 27330 27331 27332 27333 27334 27335 27336 27337 27338 27339 27340 27341 27342 27343 27344 27345 27346 27347 27348 27349 27350 27351 27352 27353 27354 27355 27356 27357 27358 27359 27360 27361 27362 27363 27364 27365 27366 27367 27368 27369 27370 27371 27372 27373 27374 27375 27376 27377 27378 27379 27380 27381 27382 27383 27384 27385 27386 27387 27388 27389 27390 27391 27392 27393 27394 27395 27396 27397 27398 27399 27400 27401 27402 27403 27404 27405 27406 27407 27408 27409 27410 27411 27412 27413 27414 27415 27416 27417 27418 27419 27420 27421 27422 27423 27424 27425 27426 27427 27428 27429 27430 27431 27432 27433 27434 27435 27436 27437 27438 27439 27440 27441 27442 27443 27444 27445 27446 27447 27448 27449 27450 27451 27452 27453 27454 27455 27456 27457 27458 27459 27460 27461 27462 27463 27464 27465 27466 27467 27468 27469 27470 27471 27472 27473 27474 27475 27476 27477 27478 27479 27480 27481 27482 27483 27484 27485 27486 27487 27488 27489 27490 27491 27492 27493 27494 27495 27496 27497 27498 27499 27500 27501 27502 27503 27504 27505 27506 27507 27508 27509 27510 27511 27512 27513 27514 27515 27516 27517 27518 27519 27520 27521 27522 27523 27524 27525 27526 27527 27528 27529 27530 27531 27532 27533 27534 27535 27536 27537 27538 27539 27540 27541 27542 27543 27544 27545 27546 27547 27548 27549 27550 27551 27552 27553 27554 27555 27556 27557 27558 27559 27560 27561 27562 27563 27564 27565 27566 27567 27568 27569 27570 27571 27572 27573 27574 27575 27576 27577 27578 27579 27580 27581 27582 27583 27584 27585 27586 27587 27588 27589 27590 27591 27592 27593 27594 27595 27596 27597 27598 27599 27600 27601 27602 27603 27604 27605 27606 27607 27608 27609 27610 27611 27612 27613 27614 27615 27616 27617 27618 27619 27620 27621 27622 27623 27624 27625 27626 27627 27628 27629 27630 27631 27632 27633 27634 27635 27636 27637 27638 27639 27640 27641 27642 27643 27644 27645 27646 27647 27648 27649 27650 27651 27652 27653 27654 27655 27656 27657 27658 27659 27660 27661 27662 27663 27664 27665 27666 27667 27668 27669 27670 27671 27672 27673 27674 27675 27676 27677 27678 27679 27680 27681 27682 27683 27684 27685 27686 27687 27688 27689 27690 27691 27692 27693 27694 27695 27696 27697 27698 27699 27700 27701 27702 27703 27704 27705 27706 27707 27708 27709 27710 27711 27712 27713 27714 27715 27716 27717 27718 27719 27720 27721 27722 27723 27724 27725 27726 27727 27728 27729 27730 27731 27732 27733 27734 27735 27736 27737 27738 27739 27740 27741 27742 27743 27744 27745 27746 27747 27748 27749 27750 27751 27752 27753 27754 27755 27756 27757 27758 27759 27760 27761 27762 27763 27764 27765 27766 27767 27768 27769 27770 27771 27772 27773 27774 27775 27776 27777 27778 27779 27780 27781 27782 27783 27784 27785 27786 27787 27788 27789 27790 27791 27792 27793 27794 27795 27796 27797 27798 27799 27800 27801 27802 27803 27804 27805 27806 27807 27808 27809 27810 27811 27812 27813 27814 27815 27816 27817 27818 27819 27820 27821 27822 27823 27824 27825 27826 27827 27828 27829 27830 27831 27832 27833 27834 27835 27836 27837 27838 27839 27840 27841 27842 27843 27844 27845 27846 27847 27848 27849 27850 27851 27852 27853 27854 27855 27856 27857 27858 27859 27860 27861 27862 27863 27864 27865 27866 27867 27868 27869 27870 27871 27872 27873 27874 27875 27876 27877 27878 27879 27880 27881 27882 27883 27884 27885 27886 27887 27888 27889 27890 27891 27892 27893 27894 27895 27896 27897 27898 27899 27900 27901 27902 27903 27904 27905 27906 27907 27908 27909 27910 27911 27912 27913 27914 27915 27916 27917 27918 27919 27920 27921 27922 27923 27924 27925 27926 27927 27928 27929 27930 27931 27932 27933 27934 27935 27936 27937 27938 27939 27940 27941 27942 27943 27944 27945 27946 27947 27948 27949 27950 27951 27952 27953 27954 27955 27956 27957 27958 27959 27960 27961 27962 27963 27964 27965 27966 27967 27968 27969 27970 27971 27972 27973 27974 27975 27976 27977 27978 27979 27980 27981 27982 27983 27984 27985 27986 27987 27988 27989 27990 27991 27992 27993 27994 27995 27996 27997 27998 27999 28000 28001 28002 28003 28004 28005 28006 28007 28008 28009 28010 28011 28012 28013 28014 28015 28016 28017 28018 28019 28020 28021 28022 28023 28024 28025 28026 28027 28028 28029 28030 28031 28032 28033 28034 28035 28036 28037 28038 28039 28040 28041 28042 28043 28044 28045 28046 28047 28048 28049 28050 28051 28052 28053 28054 28055 28056 28057 28058 28059 28060 28061 28062 28063 28064 28065 28066 28067 28068 28069 28070 28071 28072 28073 28074 28075 28076 28077 28078 28079 28080 28081 28082 28083 28084 28085 28086 28087 28088 28089 28090 28091 28092 28093 28094 28095 28096 28097 28098 28099 28100 28101 28102 28103 28104 28105 28106 28107 28108 28109 28110 28111 28112 28113 28114 28115 28116 28117 28118 28119 28120 28121 28122 28123 28124 28125 28126 28127 28128 28129 28130 28131 28132 28133 28134 28135 28136 28137 28138 28139 28140 28141 28142 28143 28144 28145 28146 28147 28148 28149 28150 28151 28152 28153 28154 28155 28156 28157 28158 28159 28160 28161 28162 28163 28164 28165 28166 28167 28168 28169 28170 28171 28172 28173 28174 28175 28176 28177 28178 28179 28180 28181 28182 28183 28184 28185 28186 28187 28188 28189 28190 28191 28192 28193 28194 28195 28196 28197 28198 28199 28200 28201 28202 28203 28204 28205 28206 28207 28208 28209 28210 28211 28212 28213 28214 28215 28216 28217 28218 28219 28220 28221 28222 28223 28224 28225 28226 28227 28228 28229 28230 28231 28232 28233 28234 28235 28236 28237 28238 28239 28240 28241 28242 28243 28244 28245 28246 28247 28248 28249 28250 28251 28252 28253 28254 28255 28256 28257 28258 28259 28260 28261 28262 28263 28264 28265 28266 28267 28268 28269 28270 28271 28272 28273 28274 28275 28276 28277 28278 28279 28280 28281 28282 28283 28284 28285 28286 28287 28288 28289 28290 28291 28292 28293 28294 28295 28296 28297 28298 28299 28300 28301 28302 28303 28304 28305 28306 28307 28308 28309 28310 28311 28312 28313 28314 28315 28316 28317 28318 28319 28320 28321 28322 28323 28324 28325 28326 28327 28328 28329 28330 28331 28332 28333 28334 28335 28336 28337 28338 28339 28340 28341 28342 28343 28344 28345 28346 28347 28348 28349 28350 28351 28352 28353 28354 28355 28356 28357 28358 28359 28360 28361 28362 28363 28364 28365 28366 28367 28368 28369 28370 28371 28372 28373 28374 28375 28376 28377 28378 28379 28380 28381 28382 28383 28384 28385 28386 28387 28388 28389 28390 28391 28392 28393 28394 28395 28396 28397 28398 28399 28400 28401 28402 28403 28404 28405 28406 28407 28408 28409 28410 28411 28412 28413 28414 28415 28416 28417 28418 28419 28420 28421 28422 28423 28424 28425 28426 28427 28428 28429 28430 28431 28432 28433 28434 28435 28436 28437 28438 28439 28440 28441 28442 28443 28444 28445 28446 28447 28448 28449 28450 28451 28452 28453 28454 28455 28456 28457 28458 28459 28460 28461 28462 28463 28464 28465 28466 28467 28468 28469 28470 28471 28472 28473 28474 28475 28476 28477 28478 28479 28480 28481 28482 28483 28484 28485 28486 28487 28488 28489 28490 28491 28492 28493 28494 28495 28496 28497 28498 28499 28500 28501 28502 28503 28504 28505 28506 28507 28508 28509 28510 28511 28512 28513 28514 28515 28516 28517 28518 28519 28520 28521 28522 28523 28524 28525 28526 28527 28528 28529 28530 28531 28532 28533 28534 28535 28536 28537 28538 28539 28540 28541 28542 28543 28544 28545 28546 28547 28548 28549 28550 28551 28552 28553 28554 28555 28556 28557 28558 28559 28560 28561 28562 28563 28564 28565 28566 28567 28568 28569 28570 28571 28572 28573 28574 28575 28576 28577 28578 28579 28580 28581 28582 28583 28584 28585 28586 28587 28588 28589 28590 28591 28592 28593 28594 28595 28596 28597 28598 28599 28600 28601 28602 28603 28604 28605 28606 28607 28608 28609 28610 28611 28612 28613 28614 28615 28616 28617 28618 28619 28620 28621 28622 28623 28624 28625 28626 28627 28628 28629 28630 28631 28632 28633 28634 28635 28636 28637 28638 28639 28640 28641 28642 28643 28644 28645 28646 28647 28648 28649 28650 28651 28652 28653 28654 28655 28656 28657 28658 28659 28660 28661 28662 28663 28664 28665 28666 28667 28668 28669 28670 28671 28672 28673 28674 28675 28676 28677 28678 28679 28680 28681 28682 28683 28684 28685 28686 28687 28688 28689 28690 28691 28692 28693 28694 28695 28696 28697 28698 28699 28700 28701 28702 28703 28704 28705 28706 28707 28708 28709 28710 28711 28712 28713 28714 28715 28716 28717 28718 28719 28720 28721 28722 28723 28724 28725 28726 28727 28728 28729 28730 28731 28732 28733 28734 28735 28736 28737 28738 28739 28740 28741 28742 28743 28744 28745 28746 28747 28748 28749 28750 28751 28752 28753 28754 28755 28756 28757 28758 28759 28760 28761 28762 28763 28764 28765 28766 28767 28768 28769 28770 28771 28772 28773 28774 28775 28776 28777 28778 28779 28780 28781 28782 28783 28784 28785 28786 28787 28788 28789 28790 28791 28792 28793 28794 28795 28796 28797 28798 28799 28800 28801 28802 28803 28804 28805 28806 28807 28808 28809 28810 28811 28812 28813 28814 28815 28816 28817 28818 28819 28820 28821 28822 28823 28824 28825 28826 28827 28828 28829 28830 28831 28832 28833 28834 28835 28836 28837 28838 28839 28840 28841 28842 28843 28844 28845 28846 28847 28848 28849 28850 28851 28852 28853 28854 28855 28856 28857 28858 28859 28860 28861 28862 28863 28864 28865 28866 28867 28868 28869 28870 28871 28872 28873 28874 28875 28876 28877 28878 28879 28880 28881 28882 28883 28884 28885 28886 28887 28888 28889 28890 28891 28892 28893 28894 28895 28896 28897 28898 28899 28900 28901 28902 28903 28904 28905 28906 28907 28908 28909 28910 28911 28912 28913 28914 28915 28916 28917 28918 28919 28920 28921 28922 28923 28924 28925 28926 28927 28928 28929 28930 28931 28932 28933 28934 28935 28936 28937 28938 28939 28940 28941 28942 28943 28944 28945 28946 28947 28948 28949 28950 28951 28952 28953 28954 28955 28956 28957 28958 28959 28960 28961 28962 28963 28964 28965 28966 28967 28968 28969 28970 28971 28972 28973 28974 28975 28976 28977 28978 28979 28980 28981 28982 28983 28984 28985 28986 28987 28988 28989 28990 28991 28992 28993 28994 28995 28996 28997 28998 28999 29000 29001 29002 29003 29004 29005 29006 29007 29008 29009 29010 29011 29012 29013 29014 29015 29016 29017 29018 29019 29020 29021 29022 29023 29024 29025 29026 29027 29028 29029 29030 29031 29032 29033 29034 29035 29036 29037 29038 29039 29040 29041 29042 29043 29044 29045 29046 29047 29048 29049 29050 29051 29052 29053 29054 29055 29056 29057 29058 29059 29060 29061 29062 29063 29064 29065 29066 29067 29068 29069 29070 29071 29072 29073 29074 29075 29076 29077 29078 29079 29080 29081 29082 29083 29084 29085 29086 29087 29088 29089 29090 29091 29092 29093 29094 29095 29096 29097 29098 29099 29100 29101 29102 29103 29104 29105 29106 29107 29108 29109 29110 29111 29112 29113 29114 29115 29116 29117 29118 29119 29120 29121 29122 29123 29124 29125 29126 29127 29128 29129 29130 29131 29132 29133 29134 29135 29136 29137 29138 29139 29140 29141 29142 29143 29144 29145 29146 29147 29148 29149 29150 29151 29152 29153 29154 29155 29156 29157 29158 29159 29160 29161 29162 29163 29164 29165 29166 29167 29168 29169 29170 29171 29172 29173 29174 29175 29176 29177 29178 29179 29180 29181 29182 29183 29184 29185 29186 29187 29188 29189 29190 29191 29192 29193 29194 29195 29196 29197 29198 29199 29200 29201 29202 29203 29204 29205 29206 29207 29208 29209 29210 29211 29212 29213 29214 29215 29216 29217 29218 29219 29220 29221 29222 29223 29224 29225 29226 29227 29228 29229 29230 29231 29232 29233 29234 29235 29236 29237 29238 29239 29240 29241 29242 29243 29244 29245 29246 29247 29248 29249 29250 29251 29252 29253 29254 29255 29256 29257 29258 29259 29260 29261 29262 29263 29264 29265 29266 29267 29268 29269 29270 29271 29272 29273 29274 29275 29276 29277 29278 29279 29280 29281 29282 29283 29284 29285 29286 29287 29288 29289 29290 29291 29292 29293 29294 29295 29296 29297 29298 29299 29300 29301 29302 29303 29304 29305 29306 29307 29308 29309 29310 29311 29312 29313 29314 29315 29316 29317 29318 29319 29320 29321 29322 29323 29324 29325 29326 29327 29328 29329 29330 29331 29332 29333 29334 29335 29336 29337 29338 29339 29340 29341 29342 29343 29344 29345 29346 29347 29348 29349 29350 29351 29352 29353 29354 29355 29356 29357 29358 29359 29360 29361 29362 29363 29364 29365 29366 29367 29368 29369 29370 29371 29372 29373 29374 29375 29376 29377 29378 29379 29380 29381 29382 29383 29384 29385 29386 29387 29388 29389 29390 29391 29392 29393 29394 29395 29396 29397 29398 29399 29400 29401 29402 29403 29404 29405 29406 29407 29408 29409 29410 29411 29412 29413 29414 29415 29416 29417 29418 29419 29420 29421 29422 29423 29424 29425 29426 29427 29428 29429 29430 29431 29432 29433 29434 29435 29436 29437 29438 29439 29440 29441 29442 29443 29444 29445 29446 29447 29448 29449 29450 29451 29452 29453 29454 29455 29456 29457 29458 29459 29460 29461 29462 29463 29464 29465 29466 29467 29468 29469 29470 29471 29472 29473 29474 29475 29476 29477 29478 29479 29480 29481 29482 29483 29484 29485 29486 29487 29488 29489 29490 29491 29492 29493 29494 29495 29496 29497 29498 29499 29500 29501 29502 29503 29504 29505 29506 29507 29508 29509 29510 29511 29512 29513 29514 29515 29516 29517 29518 29519 29520 29521 29522 29523 29524 29525 29526 29527 29528 29529 29530 29531 29532 29533 29534 29535 29536 29537 29538 29539 29540 29541 29542 29543 29544 29545 29546 29547 29548 29549 29550 29551 29552 29553 29554 29555 29556 29557 29558 29559 29560 29561 29562 29563 29564 29565 29566 29567 29568 29569 29570 29571 29572 29573 29574 29575 29576 29577 29578 29579 29580 29581 29582 29583 29584 29585 29586 29587 29588 29589 29590 29591 29592 29593 29594 29595 29596 29597 29598 29599 29600 29601 29602 29603 29604 29605 29606 29607 29608 29609 29610 29611 29612 29613 29614 29615 29616 29617 29618 29619 29620 29621 29622 29623 29624 29625 29626 29627 29628 29629 29630 29631 29632 29633 29634 29635 29636 29637 29638 29639 29640 29641 29642 29643 29644 29645 29646 29647 29648 29649 29650 29651 29652 29653 29654 29655 29656 29657 29658 29659 29660 29661 29662 29663 29664 29665 29666 29667 29668 29669 29670 29671 29672 29673 29674 29675 29676 29677 29678 29679 29680 29681 29682 29683 29684 29685 29686 29687 29688 29689 29690 29691 29692 29693 29694 29695 29696 29697 29698 29699 29700 29701 29702 29703 29704 29705 29706 29707 29708 29709 29710 29711 29712 29713 29714 29715 29716 29717 29718 29719 29720 29721 29722 29723 29724 29725 29726 29727 29728 29729 29730 29731 29732 29733 29734 29735 29736 29737 29738 29739 29740 29741 29742 29743 29744 29745 29746 29747 29748 29749 29750 29751 29752 29753 29754 29755 29756 29757 29758 29759 29760 29761 29762 29763 29764 29765 29766 29767 29768 29769 29770 29771 29772 29773 29774 29775 29776 29777 29778 29779 29780 29781 29782 29783 29784 29785 29786 29787 29788 29789 29790 29791 29792 29793 29794 29795 29796 29797 29798 29799 29800 29801 29802 29803 29804 29805 29806 29807 29808 29809 29810 29811 29812 29813 29814 29815 29816 29817 29818 29819 29820 29821 29822 29823 29824 29825 29826 29827 29828 29829 29830 29831 29832 29833 29834 29835 29836 29837 29838 29839 29840 29841 29842 29843 29844 29845 29846 29847 29848 29849 29850 29851 29852 29853 29854 29855 29856 29857 29858 29859 29860 29861 29862 29863 29864 29865 29866 29867 29868 29869 29870 29871 29872 29873 29874 29875 29876 29877 29878 29879 29880 29881 29882 29883 29884 29885 29886 29887 29888 29889 29890 29891 29892 29893 29894 29895 29896 29897 29898 29899 29900 29901 29902 29903 29904 29905 29906 29907 29908 29909 29910 29911 29912 29913 29914 29915 29916 29917 29918 29919 29920 29921 29922 29923 29924 29925 29926 29927 29928 29929 29930 29931 29932 29933 29934 29935 29936 29937 29938 29939 29940 29941 29942 29943 29944 29945 29946 29947 29948 29949 29950 29951 29952 29953 29954 29955 29956 29957 29958 29959 29960 29961 29962 29963 29964 29965 29966 29967 29968 29969 29970 29971 29972 29973 29974 29975 29976 29977 29978 29979 29980 29981 29982 29983 29984 29985 29986 29987 29988 29989 29990 29991 29992 29993 29994 29995 29996 29997 29998 29999 30000 30001 30002 30003 30004 30005 30006 30007 30008 30009 30010 30011 30012 30013 30014 30015 30016 30017 30018 30019 30020 30021 30022 30023 30024 30025 30026 30027 30028 30029 30030 30031 30032 30033 30034 30035 30036 30037 30038 30039 30040 30041 30042 30043 30044 30045 30046 30047 30048 30049 30050 30051 30052 30053 30054 30055 30056 30057 30058 30059 30060 30061 30062 30063 30064 30065 30066 30067 30068 30069 30070 30071 30072 30073 30074 30075 30076 30077 30078 30079 30080 30081 30082 30083 30084 30085 30086 30087 30088 30089 30090 30091 30092 30093 30094 30095 30096 30097 30098 30099 30100 30101 30102 30103 30104 30105 30106 30107 30108 30109 30110 30111 30112 30113 30114 30115 30116 30117 30118 30119 30120 30121 30122 30123 30124 30125 30126 30127 30128 30129 30130 30131 30132 30133 30134 30135 30136 30137 30138 30139 30140 30141 30142 30143 30144 30145 30146 30147 30148 30149 30150 30151 30152 30153 30154 30155 30156 30157 30158 30159 30160 30161 30162 30163 30164 30165 30166 30167 30168 30169 30170 30171 30172 30173 30174 30175 30176 30177 30178 30179 30180 30181 30182 30183 30184 30185 30186 30187 30188 30189 30190 30191 30192 30193 30194 30195 30196 30197 30198 30199 30200 30201 30202 30203 30204 30205 30206 30207 30208 30209 30210 30211 30212 30213 30214 30215 30216 30217 30218 30219 30220 30221 30222 30223 30224 30225 30226 30227 30228 30229 30230 30231 30232 30233 30234 30235 30236 30237 30238 30239 30240 30241 30242 30243 30244 30245 30246 30247 30248 30249 30250 30251 30252 30253 30254 30255 30256 30257 30258 30259 30260 30261 30262 30263 30264 30265 30266 30267 30268 30269 30270 30271 30272 30273 30274 30275 30276 30277 30278 30279 30280 30281 30282 30283 30284 30285 30286 30287 30288 30289 30290 30291 30292 30293 30294 30295 30296 30297 30298 30299 30300 30301 30302 30303 30304 30305 30306 30307 30308 30309 30310 30311 30312 30313 30314 30315 30316 30317 30318 30319 30320 30321 30322 30323 30324 30325 30326 30327 30328 30329 30330 30331 30332 30333 30334 30335 30336 30337 30338 30339 30340 30341 30342 30343 30344 30345 30346 30347 30348 30349 30350 30351 30352 30353 30354 30355 30356 30357 30358 30359 30360 30361 30362 30363 30364 30365 30366 30367 30368 30369 30370 30371 30372 30373 30374 30375 30376 30377 30378 30379 30380 30381 30382 30383 30384 30385 30386 30387 30388 30389 30390 30391 30392 30393 30394 30395 30396 30397 30398 30399 30400 30401 30402 30403 30404 30405 30406 30407 30408 30409 30410 30411 30412 30413 30414 30415 30416 30417 30418 30419 30420 30421 30422 30423 30424 30425 30426 30427 30428 30429 30430 30431 30432 30433 30434 30435 30436 30437 30438 30439 30440 30441 30442 30443 30444 30445 30446 30447 30448 30449 30450 30451 30452 30453 30454 30455 30456 30457 30458 30459 30460 30461 30462 30463 30464 30465 30466 30467 30468 30469 30470 30471 30472 30473 30474 30475 30476 30477 30478 30479 30480 30481 30482 30483 30484 30485 30486 30487 30488 30489 30490 30491 30492 30493 30494 30495 30496 30497 30498 30499 30500 30501 30502 30503 30504 30505 30506 30507 30508 30509 30510 30511 30512 30513 30514 30515 30516 30517 30518 30519 30520 30521 30522 30523 30524 30525 30526 30527 30528 30529 30530 30531 30532 30533 30534 30535 30536 30537 30538 30539 30540 30541 30542 30543 30544 30545 30546 30547 30548 30549 30550 30551 30552 30553 30554 30555 30556 30557 30558 30559 30560 30561 30562 30563 30564 30565 30566 30567 30568 30569 30570 30571 30572 30573 30574 30575 30576 30577 30578 30579 30580 30581 30582 30583 30584 30585 30586 30587 30588 30589 30590 30591 30592 30593 30594 30595 30596 30597 30598 30599 30600 30601 30602 30603 30604 30605 30606 30607 30608 30609 30610 30611 30612 30613 30614 30615 30616 30617 30618 30619 30620 30621 30622 30623 30624 30625 30626 30627 30628 30629 30630 30631 30632 30633 30634 30635 30636 30637 30638 30639 30640 30641 30642 30643 30644 30645 30646 30647 30648 30649 30650 30651 30652 30653 30654 30655 30656 30657 30658 30659 30660 30661 30662 30663 30664 30665 30666 30667 30668 30669 30670 30671 30672 30673 30674 30675 30676 30677 30678 30679 30680 30681 30682 30683 30684 30685 30686 30687 30688 30689 30690 30691 30692 30693 30694 30695 30696 30697 30698 30699 30700 30701 30702 30703 30704 30705 30706 30707 30708 30709 30710 30711 30712 30713 30714 30715 30716 30717 30718 30719 30720 30721 30722 30723 30724 30725 30726 30727 30728 30729 30730 30731 30732 30733 30734 30735 30736 30737 30738 30739 30740 30741 30742 30743 30744 30745 30746 30747 30748 30749 30750 30751 30752 30753 30754 30755 30756 30757 30758 30759 30760 30761 30762 30763 30764 30765 30766 30767 30768 30769 30770 30771 30772 30773 30774 30775 30776 30777 30778 30779 30780 30781 30782 30783 30784 30785 30786 30787 30788 30789 30790 30791 30792 30793 30794 30795 30796 30797 30798 30799 30800 30801 30802 30803 30804 30805 30806 30807 30808 30809 30810 30811 30812 30813 30814 30815 30816 30817 30818 30819 30820 30821 30822 30823 30824 30825 30826 30827 30828 30829 30830 30831 30832 30833 30834 30835 30836 30837 30838 30839 30840 30841 30842 30843 30844 30845 30846 30847 30848 30849 30850 30851 30852 30853 30854 30855 30856 30857 30858 30859 30860 30861 30862 30863 30864 30865 30866 30867 30868 30869 30870 30871 30872 30873 30874 30875 30876 30877 30878 30879 30880 30881 30882 30883 30884 30885 30886 30887 30888 30889 30890 30891 30892 30893 30894 30895 30896 30897 30898 30899 30900 30901 30902 30903 30904 30905 30906 30907 30908 30909 30910 30911 30912 30913 30914 30915 30916 30917 30918 30919 30920 30921 30922 30923 30924 30925 30926 30927 30928 30929 30930 30931 30932 30933 30934 30935 30936 30937 30938 30939 30940 30941 30942 30943 30944 30945 30946 30947 30948 30949 30950 30951 30952 30953 30954 30955 30956 30957 30958 30959 30960 30961 30962 30963 30964 30965 30966 30967 30968 30969 30970 30971 30972 30973 30974 30975 30976 30977 30978 30979 30980 30981 30982 30983 30984 30985 30986 30987 30988 30989 30990 30991 30992 30993 30994 30995 30996 30997 30998 30999 31000 31001 31002 31003 31004 31005 31006 31007 31008 31009 31010 31011 31012 31013 31014 31015 31016 31017 31018 31019 31020 31021 31022 31023 31024 31025 31026 31027 31028 31029 31030 31031 31032 31033 31034 31035 31036 31037 31038 31039 31040 31041 31042 31043 31044 31045 31046 31047 31048 31049 31050 31051 31052 31053 31054 31055 31056 31057 31058 31059 31060 31061 31062 31063 31064 31065 31066 31067 31068 31069 31070 31071 31072 31073 31074 31075 31076 31077 31078 31079 31080 31081 31082 31083 31084 31085 31086 31087 31088 31089 31090 31091 31092 31093 31094 31095 31096 31097 31098 31099 31100 31101 31102 31103 31104 31105 31106 31107 31108 31109 31110 31111 31112 31113 31114 31115 31116 31117 31118 31119 31120 31121 31122 31123 31124 31125 31126 31127 31128 31129 31130 31131 31132 31133 31134 31135 31136 31137 31138 31139 31140 31141 31142 31143 31144 31145 31146 31147 31148 31149 31150 31151 31152 31153 31154 31155 31156 31157 31158 31159 31160 31161 31162 31163 31164 31165 31166 31167 31168 31169 31170 31171 31172 31173 31174 31175 31176 31177 31178 31179 31180 31181 31182 31183 31184 31185 31186 31187 31188 31189 31190 31191 31192 31193 31194 31195 31196 31197 31198 31199 31200 31201 31202 31203 31204 31205 31206 31207 31208 31209 31210 31211 31212 31213 31214 31215 31216 31217 31218 31219 31220 31221 31222 31223 31224 31225 31226 31227 31228 31229 31230 31231 31232 31233 31234 31235 31236 31237 31238 31239 31240 31241 31242 31243 31244 31245 31246 31247 31248 31249 31250 31251 31252 31253 31254 31255 31256 31257 31258 31259 31260 31261 31262 31263 31264 31265 31266 31267 31268 31269 31270 31271 31272 31273 31274 31275 31276 31277 31278 31279 31280 31281 31282 31283 31284 31285 31286 31287 31288 31289 31290 31291 31292 31293 31294 31295 31296 31297 31298 31299 31300 31301 31302 31303 31304 31305 31306 31307 31308 31309 31310 31311 31312 31313 31314 31315 31316 31317 31318 31319 31320 31321 31322 31323 31324 31325 31326 31327 31328 31329 31330 31331 31332 31333 31334 31335 31336 31337 31338 31339 31340 31341 31342 31343 31344 31345 31346 31347 31348 31349 31350 31351 31352 31353 31354 31355 31356 31357 31358 31359 31360 31361 31362 31363 31364 31365 31366 31367 31368 31369 31370 31371 31372 31373 31374 31375 31376 31377 31378 31379 31380 31381 31382 31383 31384 31385 31386 31387 31388 31389 31390 31391 31392 31393 31394 31395 31396 31397 31398 31399 31400 31401 31402 31403 31404 31405 31406 31407 31408 31409 31410 31411 31412 31413 31414 31415 31416 31417 31418 31419 31420 31421 31422 31423 31424 31425 31426 31427 31428 31429 31430 31431 31432 31433 31434 31435 31436 31437 31438 31439 31440 31441 31442 31443 31444 31445 31446 31447 31448 31449 31450 31451 31452 31453 31454 31455 31456 31457 31458 31459 31460 31461 31462 31463 31464 31465 31466 31467 31468 31469 31470 31471 31472 31473 31474 31475 31476 31477 31478 31479 31480 31481 31482 31483 31484 31485 31486 31487 31488 31489 31490 31491 31492 31493 31494 31495 31496 31497 31498 31499 31500 31501 31502 31503 31504 31505 31506 31507 31508 31509 31510 31511 31512 31513 31514 31515 31516 31517 31518 31519 31520 31521 31522 31523 31524 31525 31526 31527 31528 31529 31530 31531 31532 31533 31534 31535 31536 31537 31538 31539 31540 31541 31542 31543 31544 31545 31546 31547 31548 31549 31550 31551 31552 31553 31554 31555 31556 31557 31558 31559 31560 31561 31562 31563 31564 31565 31566 31567 31568 31569 31570 31571 31572 31573 31574 31575 31576 31577 31578 31579 31580 31581 31582 31583 31584 31585 31586 31587 31588 31589 31590 31591 31592 31593 31594 31595 31596 31597 31598 31599 31600 31601 31602 31603 31604 31605 31606 31607 31608 31609 31610 31611 31612 31613 31614 31615 31616 31617 31618 31619 31620 31621 31622 31623 31624 31625 31626 31627 31628 31629 31630 31631 31632 31633 31634 31635 31636 31637 31638 31639 31640 31641 31642 31643 31644 31645 31646 31647 31648 31649 31650 31651 31652 31653 31654 31655 31656 31657 31658 31659 31660 31661 31662 31663 31664 31665 31666 31667 31668 31669 31670 31671 31672 31673 31674 31675 31676 31677 31678 31679 31680 31681 31682 31683 31684 31685 31686 31687 31688 31689 31690 31691 31692 31693 31694 31695 31696 31697 31698 31699 31700 31701 31702 31703 31704 31705 31706 31707 31708 31709 31710 31711 31712 31713 31714 31715 31716 31717 31718 31719 31720 31721 31722 31723 31724 31725 31726 31727 31728 31729 31730 31731 31732 31733 31734 31735 31736 31737 31738 31739 31740 31741 31742 31743 31744 31745 31746 31747 31748 31749 31750 31751 31752 31753 31754 31755 31756 31757 31758 31759 31760 31761 31762 31763 31764 31765 31766 31767 31768 31769 31770 31771 31772 31773 31774 31775 31776 31777 31778 31779 31780 31781 31782 31783 31784 31785 31786 31787 31788 31789 31790 31791 31792 31793 31794 31795 31796 31797 31798 31799 31800 31801 31802 31803 31804 31805 31806 31807 31808 31809 31810 31811 31812 31813 31814 31815 31816 31817 31818 31819 31820 31821 31822 31823 31824 31825 31826 31827 31828 31829 31830 31831 31832 31833 31834 31835 31836 31837 31838 31839 31840 31841 31842 31843 31844 31845 31846 31847 31848 31849 31850 31851 31852 31853 31854 31855 31856 31857 31858 31859 31860 31861 31862 31863 31864 31865 31866 31867 31868 31869 31870 31871 31872 31873 31874 31875 31876 31877 31878 31879 31880 31881 31882 31883 31884 31885 31886 31887 31888 31889 31890 31891 31892 31893 31894 31895 31896 31897 31898 31899 31900 31901 31902 31903 31904 31905 31906 31907 31908 31909 31910 31911 31912 31913 31914 31915 31916 31917 31918 31919 31920 31921 31922 31923 31924 31925 31926 31927 31928 31929 31930 31931 31932 31933 31934 31935 31936 31937 31938 31939 31940 31941 31942 31943 31944 31945 31946 31947 31948 31949 31950 31951 31952 31953 31954 31955 31956 31957 31958 31959 31960 31961 31962 31963 31964 31965 31966 31967 31968 31969 31970 31971 31972 31973 31974 31975 31976 31977 31978 31979 31980 31981 31982 31983 31984 31985 31986 31987 31988 31989 31990 31991 31992 31993 31994 31995 31996 31997 31998 31999 32000 32001 32002 32003 32004 32005 32006 32007 32008 32009 32010 32011 32012 32013 32014 32015 32016 32017 32018 32019 32020 32021 32022 32023 32024 32025 32026 32027 32028 32029 32030 32031 32032 32033 32034 32035 32036 32037 32038 32039 32040 32041 32042 32043 32044 32045 32046 32047 32048 32049 32050 32051 32052 32053 32054 32055 32056 32057 32058 32059 32060 32061 32062 32063 32064 32065 32066 32067 32068 32069 32070 32071 32072 32073 32074 32075 32076 32077 32078 32079 32080 32081 32082 32083 32084 32085 32086 32087 32088 32089 32090 32091 32092 32093 32094 32095 32096 32097 32098 32099 32100 32101 32102 32103 32104 32105 32106 32107 32108 32109 32110 32111 32112 32113 32114 32115 32116 32117 32118 32119 32120 32121 32122 32123 32124 32125 32126 32127 32128 32129 32130 32131 32132 32133 32134 32135 32136 32137 32138 32139 32140 32141 32142 32143 32144 32145 32146 32147 32148 32149 32150 32151 32152 32153 32154 32155 32156 32157 32158 32159 32160 32161 32162 32163 32164 32165 32166 32167 32168 32169 32170 32171 32172 32173 32174 32175 32176 32177 32178 32179 32180 32181 32182 32183 32184 32185 32186 32187 32188 32189 32190 32191 32192 32193 32194 32195 32196 32197 32198 32199 32200 32201 32202 32203 32204 32205 32206 32207 32208 32209 32210 32211 32212 32213 32214 32215 32216 32217 32218 32219 32220 32221 32222 32223 32224 32225 32226 32227 32228 32229 32230 32231 32232 32233 32234 32235 32236 32237 32238 32239 32240 32241 32242 32243 32244 32245 32246 32247 32248 32249 32250 32251 32252 32253 32254 32255 32256 32257 32258 32259 32260 32261 32262 32263 32264 32265 32266 32267 32268 32269 32270 32271 32272 32273 32274 32275 32276 32277 32278 32279 32280 32281 32282 32283 32284 32285 32286 32287 32288 32289 32290 32291 32292 32293 32294 32295 32296 32297 32298 32299 32300 32301 32302 32303 32304 32305 32306 32307 32308 32309 32310 32311 32312 32313 32314 32315 32316 32317 32318 32319 32320 32321 32322 32323 32324 32325 32326 32327 32328 32329 32330 32331 32332 32333 32334 32335 32336 32337 32338 32339 32340 32341 32342 32343 32344 32345 32346 32347 32348 32349 32350 32351 32352 32353 32354 32355 32356 32357 32358 32359 32360 32361 32362 32363 32364 32365 32366 32367 32368 32369 32370 32371 32372 32373 32374 32375 32376 32377 32378 32379 32380 32381 32382 32383 32384 32385 32386 32387 32388 32389 32390 32391 32392 32393 32394 32395 32396 32397 32398 32399 32400 32401 32402 32403 32404 32405 32406 32407 32408 32409 32410 32411 32412 32413 32414 32415 32416 32417 32418 32419 32420 32421 32422 32423 32424 32425 32426 32427 32428 32429 32430 32431 32432 32433 32434 32435 32436 32437 32438 32439 32440 32441 32442 32443 32444 32445 32446 32447 32448 32449 32450 32451 32452 32453 32454 32455 32456 32457 32458 32459 32460 32461 32462 32463 32464 32465 32466 32467 32468 32469 32470 32471 32472 32473 32474 32475 32476 32477 32478 32479 32480 32481 32482 32483 32484 32485 32486 32487 32488 32489 32490 32491 32492 32493 32494 32495 32496 32497 32498 32499 32500 32501 32502 32503 32504 32505 32506 32507 32508 32509 32510 32511 32512 32513 32514 32515 32516 32517 32518 32519 32520 32521 32522 32523 32524 32525 32526 32527 32528 32529 32530 32531 32532 32533 32534 32535 32536 32537 32538 32539 32540 32541 32542 32543 32544 32545 32546 32547 32548 32549 32550 32551 32552 32553 32554 32555 32556 32557 32558 32559 32560 32561 32562 32563 32564 32565 32566 32567 32568 32569 32570 32571 32572 32573 32574 32575 32576 32577 32578 32579 32580 32581 32582 32583 32584 32585 32586 32587 32588 32589 32590 32591 32592 32593 32594 32595 32596 32597 32598 32599 32600 32601 32602 32603 32604 32605 32606 32607 32608 32609 32610 32611 32612 32613 32614 32615 32616 32617 32618 32619 32620 32621 32622 32623 32624 32625 32626 32627 32628 32629 32630 32631 32632 32633 32634 32635 32636 32637 32638 32639 32640 32641 32642 32643 32644 32645 32646 32647 32648 32649 32650 32651 32652 32653 32654 32655 32656 32657 32658 32659 32660 32661 32662 32663 32664 32665 32666 32667 32668 32669 32670 32671 32672 32673 32674 32675 32676 32677 32678 32679 32680 32681 32682 32683 32684 32685 32686 32687 32688 32689 32690 32691 32692 32693 32694 32695 32696 32697 32698 32699 32700 32701 32702 32703 32704 32705 32706 32707 32708 32709 32710 32711 32712 32713 32714 32715 32716 32717 32718 32719 32720 32721 32722 32723 32724 32725 32726 32727 32728 32729 32730 32731 32732 32733 32734 32735 32736 32737 32738 32739 32740 32741 32742 32743 32744 32745 32746 32747 32748 32749 32750 32751 32752 32753 32754 32755 32756 32757 32758 32759 32760 32761 32762 32763 32764 32765 32766 32767 32768 32769 32770 32771 32772 32773 32774 32775 32776 32777 32778 32779 32780 32781 32782 32783 32784 32785 32786 32787 32788 32789 32790 32791 32792 32793 32794 32795 32796 32797 32798 32799 32800 32801 32802 32803 32804 32805 32806 32807 32808 32809 32810 32811 32812 32813 32814 32815 32816 32817 32818 32819 32820 32821 32822 32823 32824 32825 32826 32827 32828 32829 32830 32831 32832 32833 32834 32835 32836 32837 32838 32839 32840 32841 32842 32843 32844 32845 32846 32847 32848 32849 32850 32851 32852 32853 32854 32855 32856 32857 32858 32859 32860 32861 32862 32863 32864 32865 32866 32867 32868 32869 32870 32871 32872 32873 32874 32875 32876 32877 32878 32879 32880 32881 32882 32883 32884 32885 32886 32887 32888 32889 32890 32891 32892 32893 32894 32895 32896 32897 32898 32899 32900 32901 32902 32903 32904 32905 32906 32907 32908 32909 32910 32911 32912 32913 32914 32915 32916 32917 32918 32919 32920 32921 32922 32923 32924 32925 32926 32927 32928 32929 32930 32931 32932 32933 32934 32935 32936 32937 32938 32939 32940 32941 32942 32943 32944 32945 32946 32947 32948 32949 32950 32951 32952 32953 32954 32955 32956 32957 32958 32959 32960 32961 32962 32963 32964 32965 32966 32967 32968 32969 32970 32971 32972 32973 32974 32975 32976 32977 32978 32979 32980 32981 32982 32983 32984 32985 32986 32987 32988 32989 32990 32991 32992 32993 32994 32995 32996 32997 32998 32999 33000 33001 33002 33003 33004 33005 33006 33007 33008 33009 33010 33011 33012 33013 33014 33015 33016 33017 33018 33019 33020 33021 33022 33023 33024 33025 33026 33027 33028 33029 33030 33031 33032 33033 33034 33035 33036 33037 33038 33039 33040 33041 33042 33043 33044 33045 33046 33047 33048 33049 33050 33051 33052 33053 33054 33055 33056 33057 33058 33059 33060 33061 33062 33063 33064 33065 33066 33067 33068 33069 33070 33071 33072 33073 33074 33075 33076 33077 33078 33079 33080 33081 33082 33083 33084 33085 33086 33087 33088 33089 33090 33091 33092 33093 33094 33095 33096 33097 33098 33099 33100 33101 33102 33103 33104 33105 33106 33107 33108 33109 33110 33111 33112 33113 33114 33115 33116 33117 33118 33119 33120 33121 33122 33123 33124 33125 33126 33127 33128 33129 33130 33131 33132 33133 33134 33135 33136 33137 33138 33139 33140 33141 33142 33143 33144 33145 33146 33147 33148 33149 33150 33151 33152 33153 33154 33155 33156 33157 33158 33159 33160 33161 33162 33163 33164 33165 33166 33167 33168 33169 33170 33171 33172 33173 33174 33175 33176 33177 33178 33179 33180 33181 33182 33183 33184 33185 33186 33187 33188 33189 33190 33191 33192 33193 33194 33195 33196 33197 33198 33199 33200 33201 33202 33203 33204 33205 33206 33207 33208 33209 33210 33211 33212 33213 33214 33215 33216 33217 33218 33219 33220 33221 33222 33223 33224 33225 33226 33227 33228 33229 33230 33231 33232 33233 33234 33235 33236 33237 33238 33239 33240 33241 33242 33243 33244 33245 33246 33247 33248 33249 33250 33251 33252 33253 33254 33255 33256 33257 33258 33259 33260 33261 33262 33263 33264 33265 33266 33267 33268 33269 33270 33271 33272 33273 33274 33275 33276 33277 33278 33279 33280 33281 33282 33283 33284 33285 33286 33287 33288 33289 33290 33291 33292 33293 33294 33295 33296 33297 33298 33299 33300 33301 33302 33303 33304 33305 33306 33307 33308 33309 33310 33311 33312 33313 33314 33315 33316 33317 33318 33319 33320 33321 33322 33323 33324 33325 33326 33327 33328 33329 33330 33331 33332 33333 33334 33335 33336 33337 33338 33339 33340 33341 33342 33343 33344 33345 33346 33347 33348 33349 33350 33351 33352 33353 33354 33355 33356 33357 33358 33359 33360 33361 33362 33363 33364 33365 33366 33367 33368 33369 33370 33371 33372 33373 33374 33375 33376 33377 33378 33379 33380 33381 33382 33383 33384 33385 33386 33387 33388 33389 33390 33391 33392 33393 33394 33395 33396 33397 33398 33399 33400 33401 33402 33403 33404 33405 33406 33407 33408 33409 33410 33411 33412 33413 33414 33415 33416 33417 33418 33419 33420 33421 33422 33423 33424 33425 33426 33427 33428 33429 33430 33431 33432 33433 33434 33435 33436 33437 33438 33439 33440 33441 33442 33443 33444 33445 33446 33447 33448 33449 33450 33451 33452 33453 33454 33455 33456 33457 33458 33459 33460 33461 33462 33463 33464 33465 33466 33467 33468 33469 33470 33471 33472 33473 33474 33475 33476 33477 33478 33479 33480 33481 33482 33483 33484 33485 33486 33487 33488 33489 33490 33491 33492 33493 33494 33495 33496 33497 33498 33499 33500 33501 33502 33503 33504 33505 33506 33507 33508 33509 33510 33511 33512 33513 33514 33515 33516 33517 33518 33519 33520 33521 33522 33523 33524 33525 33526 33527 33528 33529 33530 33531 33532 33533 33534 33535 33536 33537 33538 33539 33540 33541 33542 33543 33544 33545 33546 33547 33548 33549 33550 33551 33552 33553 33554 33555 33556 33557 33558 33559 33560 33561 33562 33563 33564 33565 33566 33567 33568 33569 33570 33571 33572 33573 33574 33575 33576 33577 33578 33579 33580 33581 33582 33583 33584 33585 33586 33587 33588 33589 33590 33591 33592 33593 33594 33595 33596 33597 33598 33599 33600 33601 33602 33603 33604 33605 33606 33607 33608 33609 33610 33611 33612 33613 33614 33615 33616 33617 33618 33619 33620 33621 33622 33623 33624 33625 33626 33627 33628 33629 33630 33631 33632 33633 33634 33635 33636 33637 33638 33639 33640 33641 33642 33643 33644 33645 33646 33647 33648 33649 33650 33651 33652 33653 33654 33655 33656 33657 33658 33659 33660 33661 33662 33663 33664 33665 33666 33667 33668 33669 33670 33671 33672 33673 33674 33675 33676 33677 33678 33679 33680 33681 33682 33683 33684 33685 33686 33687 33688 33689 33690 33691 33692 33693 33694 33695 33696 33697 33698 33699 33700 33701 33702 33703 33704 33705 33706 33707 33708 33709 33710 33711 33712 33713 33714 33715 33716 33717 33718 33719 33720 33721 33722 33723 33724 33725 33726 33727 33728 33729 33730 33731 33732 33733 33734 33735 33736 33737 33738 33739 33740 33741 33742 33743 33744 33745 33746 33747 33748 33749 33750 33751 33752 33753 33754 33755 33756 33757 33758 33759 33760 33761 33762 33763 33764 33765 33766 33767 33768 33769 33770 33771 33772 33773 33774 33775 33776 33777 33778 33779 33780 33781 33782 33783 33784 33785 33786 33787 33788 33789 33790 33791 33792 33793 33794 33795 33796 33797 33798 33799 33800 33801 33802 33803 33804 33805 33806 33807 33808 33809 33810 33811 33812 33813 33814 33815 33816 33817 33818 33819 33820 33821 33822 33823 33824 33825 33826 33827 33828 33829 33830 33831 33832 33833 33834 33835 33836 33837 33838 33839 33840 33841 33842 33843 33844 33845 33846 33847 33848 33849 33850 33851 33852 33853 33854 33855 33856 33857 33858 33859 33860 33861 33862 33863 33864 33865 33866 33867 33868 33869 33870 33871 33872 33873 33874 33875 33876 33877 33878 33879 33880 33881 33882 33883 33884 33885 33886 33887 33888 33889 33890 33891 33892 33893 33894 33895 33896 33897 33898 33899 33900 33901 33902 33903 33904 33905 33906 33907 33908 33909 33910 33911 33912 33913 33914 33915 33916 33917 33918 33919 33920 33921 33922 33923 33924 33925 33926 33927 33928 33929 33930 33931 33932 33933 33934 33935 33936 33937 33938 33939 33940 33941 33942 33943 33944 33945 33946 33947 33948 33949 33950 33951 33952 33953 33954 33955 33956 33957 33958 33959 33960 33961 33962 33963 33964 33965 33966 33967 33968 33969 33970 33971 33972 33973 33974 33975 33976 33977 33978 33979 33980 33981 33982 33983 33984 33985 33986 33987 33988 33989 33990 33991 33992 33993 33994 33995 33996 33997 33998 33999 34000 34001 34002 34003 34004 34005 34006 34007 34008 34009 34010 34011 34012 34013 34014 34015 34016 34017 34018 34019 34020 34021 34022 34023 34024 34025 34026 34027 34028 34029 34030 34031 34032 34033 34034 34035 34036 34037 34038 34039 34040 34041 34042 34043 34044 34045 34046 34047 34048 34049 34050 34051 34052 34053 34054 34055 34056 34057 34058 34059 34060 34061 34062 34063 34064 34065 34066 34067 34068 34069 34070 34071 34072 34073 34074 34075 34076 34077 34078 34079 34080 34081 34082 34083 34084 34085 34086 34087 34088 34089 34090 34091 34092 34093 34094 34095 34096 34097 34098 34099 34100 34101 34102 34103 34104 34105 34106 34107 34108 34109 34110 34111 34112 34113 34114 34115 34116 34117 34118 34119 34120 34121 34122 34123 34124 34125 34126 34127 34128 34129 34130 34131 34132 34133 34134 34135 34136 34137 34138 34139 34140 34141 34142 34143 34144 34145 34146 34147 34148 34149 34150 34151 34152 34153 34154 34155 34156 34157 34158 34159 34160 34161 34162 34163 34164 34165 34166 34167 34168 34169 34170 34171 34172 34173 34174 34175 34176 34177 34178 34179 34180 34181 34182 34183 34184 34185 34186 34187 34188 34189 34190 34191 34192 34193 34194 34195 34196 34197 34198 34199 34200 34201 34202 34203 34204 34205 34206 34207 34208 34209 34210 34211 34212 34213 34214 34215 34216 34217 34218 34219 34220 34221 34222 34223 34224 34225 34226 34227 34228 34229 34230 34231 34232 34233 34234 34235 34236 34237 34238 34239 34240 34241 34242 34243 34244 34245 34246 34247 34248 34249 34250 34251 34252 34253 34254 34255 34256 34257 34258 34259 34260 34261 34262 34263 34264 34265 34266 34267 34268 34269 34270 34271 34272 34273 34274 34275 34276 34277 34278 34279 34280 34281 34282 34283 34284 34285 34286 34287 34288 34289 34290 34291 34292 34293 34294 34295 34296 34297 34298 34299 34300 34301 34302 34303 34304 34305 34306 34307 34308 34309 34310 34311 34312 34313 34314 34315 34316 34317 34318 34319 34320 34321 34322 34323 34324 34325 34326 34327 34328 34329 34330 34331 34332 34333 34334 34335 34336 34337 34338 34339 34340 34341 34342 34343 34344 34345 34346 34347 34348 34349 34350 34351 34352 34353 34354 34355 34356 34357 34358 34359 34360 34361 34362 34363 34364 34365 34366 34367 34368 34369 34370 34371 34372 34373 34374 34375 34376 34377 34378 34379 34380 34381 34382 34383 34384 34385 34386 34387 34388 34389 34390 34391 34392 34393 34394 34395 34396 34397 34398 34399 34400 34401 34402 34403 34404 34405 34406 34407 34408 34409 34410 34411 34412 34413 34414 34415 34416 34417 34418 34419 34420 34421 34422 34423 34424 34425 34426 34427 34428 34429 34430 34431 34432 34433 34434 34435 34436 34437 34438 34439 34440 34441 34442 34443 34444 34445 34446 34447 34448 34449 34450 34451 34452 34453 34454 34455 34456 34457 34458 34459 34460 34461 34462 34463 34464 34465 34466 34467 34468 34469 34470 34471 34472 34473 34474 34475 34476 34477 34478 34479 34480 34481 34482 34483 34484 34485 34486 34487 34488 34489 34490 34491 34492 34493 34494 34495 34496 34497 34498 34499 34500 34501 34502 34503 34504 34505 34506 34507 34508 34509 34510 34511 34512 34513 34514 34515 34516 34517 34518 34519 34520 34521 34522 34523 34524 34525 34526 34527 34528 34529 34530 34531 34532 34533 34534 34535 34536 34537 34538 34539 34540 34541 34542 34543 34544 34545 34546 34547 34548 34549 34550 34551 34552 34553 34554 34555 34556 34557 34558 34559 34560 34561 34562 34563 34564 34565 34566 34567 34568 34569 34570 34571 34572 34573 34574 34575 34576 34577 34578 34579 34580 34581 34582 34583 34584 34585 34586 34587 34588 34589 34590 34591 34592 34593 34594 34595 34596 34597 34598 34599 34600 34601 34602 34603 34604 34605 34606 34607 34608 34609 34610 34611 34612 34613 34614 34615 34616 34617 34618 34619 34620 34621 34622 34623 34624 34625 34626 34627 34628 34629 34630 34631 34632 34633 34634 34635 34636 34637 34638 34639 34640 34641 34642 34643 34644 34645 34646 34647 34648 34649 34650 34651 34652 34653 34654 34655 34656 34657 34658 34659 34660 34661 34662 34663 34664 34665 34666 34667 34668 34669 34670 34671 34672 34673 34674 34675 34676 34677 34678 34679 34680 34681 34682 34683 34684 34685 34686 34687 34688 34689 34690 34691 34692 34693 34694 34695 34696 34697 34698 34699 34700 34701 34702 34703 34704 34705 34706 34707 34708 34709 34710 34711 34712 34713 34714 34715 34716 34717 34718 34719 34720 34721 34722 34723 34724 34725 34726 34727 34728 34729 34730 34731 34732 34733 34734 34735 34736 34737 34738 34739 34740 34741 34742 34743 34744 34745 34746 34747 34748 34749 34750 34751 34752 34753 34754 34755 34756 34757 34758 34759 34760 34761 34762 34763 34764 34765 34766 34767 34768 34769 34770 34771 34772 34773 34774 34775 34776 34777 34778 34779 34780 34781 34782 34783 34784 34785 34786 34787 34788 34789 34790 34791 34792 34793 34794 34795 34796 34797 34798 34799 34800 34801 34802 34803 34804 34805 34806 34807 34808 34809 34810 34811 34812 34813 34814 34815 34816 34817 34818 34819 34820 34821 34822 34823 34824 34825 34826 34827 34828 34829 34830 34831 34832 34833 34834 34835 34836 34837 34838 34839 34840 34841 34842 34843 34844 34845 34846 34847 34848 34849 34850 34851 34852 34853 34854 34855 34856 34857 34858 34859 34860 34861 34862 34863 34864 34865 34866 34867 34868 34869 34870 34871 34872 34873 34874 34875 34876 34877 34878 34879 34880 34881 34882 34883 34884 34885 34886 34887 34888 34889 34890 34891 34892 34893 34894 34895 34896 34897 34898 34899 34900 34901 34902 34903 34904 34905 34906 34907 34908 34909 34910 34911 34912 34913 34914 34915 34916 34917 34918 34919 34920 34921 34922 34923 34924 34925 34926 34927 34928 34929 34930 34931 34932 34933 34934 34935 34936 34937 34938 34939 34940 34941 34942 34943 34944 34945 34946 34947 34948 34949 34950 34951 34952 34953 34954 34955 34956 34957 34958 34959 34960 34961 34962 34963 34964 34965 34966 34967 34968 34969 34970 34971 34972 34973 34974 34975 34976 34977 34978 34979 34980 34981 34982 34983 34984 34985 34986 34987 34988 34989 34990 34991 34992 34993 34994 34995 34996 34997 34998 34999 35000 35001 35002 35003 35004 35005 35006 35007 35008 35009 35010 35011 35012 35013 35014 35015 35016 35017 35018 35019 35020 35021 35022 35023 35024 35025 35026 35027 35028 35029 35030 35031 35032 35033 35034 35035 35036 35037 35038 35039 35040 35041 35042 35043 35044 35045 35046 35047 35048 35049 35050 35051 35052 35053 35054 35055 35056 35057 35058 35059 35060 35061 35062 35063 35064 35065 35066 35067 35068 35069 35070 35071 35072 35073 35074 35075 35076 35077 35078 35079 35080 35081 35082 35083 35084 35085 35086 35087 35088 35089 35090 35091 35092 35093 35094 35095 35096 35097 35098 35099 35100 35101 35102 35103 35104 35105 35106 35107 35108 35109 35110 35111 35112 35113 35114 35115 35116 35117 35118 35119 35120 35121 35122 35123 35124 35125 35126 35127 35128 35129 35130 35131 35132 35133 35134 35135 35136 35137 35138 35139 35140 35141 35142 35143 35144 35145 35146 35147 35148 35149 35150 35151 35152 35153 35154 35155 35156 35157 35158 35159 35160 35161 35162 35163 35164 35165 35166 35167 35168 35169 35170 35171 35172 35173 35174 35175 35176 35177 35178 35179 35180 35181 35182 35183 35184 35185 35186 35187 35188 35189 35190 35191 35192 35193 35194 35195 35196 35197 35198 35199 35200 35201 35202 35203 35204 35205 35206 35207 35208 35209 35210 35211 35212 35213 35214 35215 35216 35217 35218 35219 35220 35221 35222 35223 35224 35225 35226 35227 35228 35229 35230 35231 35232 35233 35234 35235 35236 35237 35238 35239 35240 35241 35242 35243 35244 35245 35246 35247 35248 35249 35250 35251 35252 35253 35254 35255 35256 35257 35258 35259 35260 35261 35262 35263 35264 35265 35266 35267 35268 35269 35270 35271 35272 35273 35274 35275 35276 35277 35278 35279 35280 35281 35282 35283 35284 35285 35286 35287 35288 35289 35290 35291 35292 35293 35294 35295 35296 35297 35298 35299 35300 35301 35302 35303 35304 35305 35306 35307 35308 35309 35310 35311 35312 35313 35314 35315 35316 35317 35318 35319 35320 35321 35322 35323 35324 35325 35326 35327 35328 35329 35330 35331 35332 35333 35334 35335 35336 35337 35338 35339 35340 35341 35342 35343 35344 35345 35346 35347 35348 35349 35350 35351 35352 35353 35354 35355 35356 35357 35358 35359 35360 35361 35362 35363 35364 35365 35366 35367 35368 35369 35370 35371 35372 35373 35374 35375 35376 35377 35378 35379 35380 35381 35382 35383 35384 35385 35386 35387 35388 35389 35390 35391 35392 35393 35394 35395 35396 35397 35398 35399 35400 35401 35402 35403 35404 35405 35406 35407 35408 35409 35410 35411 35412 35413 35414 35415 35416 35417 35418 35419 35420 35421 35422 35423 35424 35425 35426 35427 35428 35429 35430 35431 35432 35433 35434 35435 35436 35437 35438 35439 35440 35441 35442 35443 35444 35445 35446 35447 35448 35449 35450 35451 35452 35453 35454 35455 35456 35457 35458 35459 35460 35461 35462 35463 35464 35465 35466 35467 35468 35469 35470 35471 35472 35473 35474 35475 35476 35477 35478 35479 35480 35481 35482 35483 35484 35485 35486 35487 35488 35489 35490 35491 35492 35493 35494 35495 35496 35497 35498 35499 35500 35501 35502 35503 35504 35505 35506 35507 35508 35509 35510 35511 35512 35513 35514 35515 35516 35517 35518 35519 35520 35521 35522 35523 35524 35525 35526 35527 35528 35529 35530 35531 35532 35533 35534 35535 35536 35537 35538 35539 35540 35541 35542 35543 35544 35545 35546 35547 35548 35549 35550 35551 35552 35553 35554 35555 35556 35557 35558 35559 35560 35561 35562 35563 35564 35565 35566 35567 35568 35569 35570 35571 35572 35573 35574 35575 35576 35577 35578 35579 35580 35581 35582 35583 35584 35585 35586 35587 35588 35589 35590 35591 35592 35593 35594 35595 35596 35597 35598 35599 35600 35601 35602 35603 35604 35605 35606 35607 35608 35609 35610 35611 35612 35613 35614 35615 35616 35617 35618 35619 35620 35621 35622 35623 35624 35625 35626 35627 35628 35629 35630 35631 35632 35633 35634 35635 35636 35637 35638 35639 35640 35641 35642 35643 35644 35645 35646 35647 35648 35649 35650 35651 35652 35653 35654 35655 35656 35657 35658 35659 35660 35661 35662 35663 35664 35665 35666 35667 35668 35669 35670 35671 35672 35673 35674 35675 35676 35677 35678 35679 35680 35681 35682 35683 35684 35685 35686 35687 35688 35689 35690 35691 35692 35693 35694 35695 35696 35697 35698 35699 35700 35701 35702 35703 35704 35705 35706 35707 35708 35709 35710 35711 35712 35713 35714 35715 35716 35717 35718 35719 35720 35721 35722 35723 35724 35725 35726 35727 35728 35729 35730 35731 35732 35733 35734 35735 35736 35737 35738 35739 35740 35741 35742 35743 35744 35745 35746 35747 35748 35749 35750 35751 35752 35753 35754 35755 35756 35757 35758 35759 35760 35761 35762 35763 35764 35765 35766 35767 35768 35769 35770 35771 35772 35773 35774 35775 35776 35777 35778 35779 35780 35781 35782 35783 35784 35785 35786 35787 35788 35789 35790 35791 35792 35793 35794 35795 35796 35797 35798 35799 35800 35801 35802 35803 35804 35805 35806 35807 35808 35809 35810 35811 35812 35813 35814 35815 35816 35817 35818 35819 35820 35821 35822 35823 35824 35825 35826 35827 35828 35829 35830 35831 35832 35833 35834 35835 35836 35837 35838 35839 35840 35841 35842 35843 35844 35845 35846 35847 35848 35849 35850 35851 35852 35853 35854 35855 35856 35857 35858 35859 35860 35861 35862 35863 35864 35865 35866 35867 35868 35869 35870 35871 35872 35873 35874 35875 35876 35877 35878 35879 35880 35881 35882 35883 35884 35885 35886 35887 35888 35889 35890 35891 35892 35893 35894 35895 35896 35897 35898 35899 35900 35901 35902 35903 35904 35905 35906 35907 35908 35909 35910 35911 35912 35913 35914 35915 35916 35917 35918 35919 35920 35921 35922 35923 35924 35925 35926 35927 35928 35929 35930 35931 35932 35933 35934 35935 35936 35937 35938 35939 35940 35941 35942 35943 35944 35945 35946 35947 35948 35949 35950 35951 35952 35953 35954 35955 35956 35957 35958 35959 35960 35961 35962 35963 35964 35965 35966 35967 35968 35969 35970 35971 35972 35973 35974 35975 35976 35977 35978 35979 35980 35981 35982 35983 35984 35985 35986 35987 35988 35989 35990 35991 35992 35993 35994 35995 35996 35997 35998 35999 36000 36001 36002 36003 36004 36005 36006 36007 36008 36009 36010 36011 36012 36013 36014 36015 36016 36017 36018 36019 36020 36021 36022 36023 36024 36025 36026 36027 36028 36029 36030 36031 36032 36033 36034 36035 36036 36037 36038 36039 36040 36041 36042 36043 36044 36045 36046 36047 36048 36049 36050 36051 36052 36053 36054 36055 36056 36057 36058 36059 36060 36061 36062 36063 36064 36065 36066 36067 36068 36069 36070 36071 36072 36073 36074 36075 36076 36077 36078 36079 36080 36081 36082 36083 36084 36085 36086 36087 36088 36089 36090 36091 36092 36093 36094 36095 36096 36097 36098 36099 36100 36101 36102 36103 36104 36105 36106 36107 36108 36109 36110 36111 36112 36113 36114 36115 36116 36117 36118 36119 36120 36121 36122 36123 36124 36125 36126 36127 36128 36129 36130 36131 36132 36133 36134 36135 36136 36137 36138 36139 36140 36141 36142 36143 36144 36145 36146 36147 36148 36149 36150 36151 36152 36153 36154 36155 36156 36157 36158 36159 36160 36161 36162 36163 36164 36165 36166 36167 36168 36169 36170 36171 36172 36173 36174 36175 36176 36177 36178 36179 36180 36181 36182 36183 36184 36185 36186 36187 36188 36189 36190 36191 36192 36193 36194 36195 36196 36197 36198 36199 36200 36201 36202 36203 36204 36205 36206 36207 36208 36209 36210 36211 36212 36213 36214 36215 36216 36217 36218 36219 36220 36221 36222 36223 36224 36225 36226 36227 36228 36229 36230 36231 36232 36233 36234 36235 36236 36237 36238 36239 36240 36241 36242 36243 36244 36245 36246 36247 36248 36249 36250 36251 36252 36253 36254 36255 36256 36257 36258 36259 36260 36261 36262 36263 36264 36265 36266 36267 36268 36269 36270 36271 36272 36273 36274 36275 36276 36277 36278 36279 36280 36281 36282 36283 36284 36285 36286 36287 36288 36289 36290 36291 36292 36293 36294 36295 36296 36297 36298 36299 36300 36301 36302 36303 36304 36305 36306 36307 36308 36309 36310 36311 36312 36313 36314 36315 36316 36317 36318 36319 36320 36321 36322 36323 36324 36325 36326 36327 36328 36329 36330 36331 36332 36333 36334 36335 36336 36337 36338 36339 36340 36341 36342 36343 36344 36345 36346 36347 36348 36349 36350 36351 36352 36353 36354 36355 36356 36357 36358 36359 36360 36361 36362 36363 36364 36365 36366 36367 36368 36369 36370 36371 36372 36373 36374 36375 36376 36377 36378 36379 36380 36381 36382 36383 36384 36385 36386 36387 36388 36389 36390 36391 36392 36393 36394 36395 36396 36397 36398 36399 36400 36401 36402 36403 36404 36405 36406 36407 36408 36409 36410 36411 36412 36413 36414 36415 36416 36417 36418 36419 36420 36421 36422 36423 36424 36425 36426 36427 36428 36429 36430 36431 36432 36433 36434 36435 36436 36437 36438 36439 36440 36441 36442 36443 36444 36445 36446 36447 36448 36449 36450 36451 36452 36453 36454 36455 36456 36457 36458 36459 36460 36461 36462 36463 36464 36465 36466 36467 36468 36469 36470 36471 36472 36473 36474 36475 36476 36477 36478 36479 36480 36481 36482 36483 36484 36485 36486 36487 36488 36489 36490 36491 36492 36493 36494 36495 36496 36497 36498 36499 36500 36501 36502 36503 36504 36505 36506 36507 36508 36509 36510 36511 36512 36513 36514 36515 36516 36517 36518 36519 36520 36521 36522 36523 36524 36525 36526 36527 36528 36529 36530 36531 36532 36533 36534 36535 36536 36537 36538 36539 36540 36541 36542 36543 36544 36545 36546 36547 36548 36549 36550 36551 36552 36553 36554 36555 36556 36557 36558 36559 36560 36561 36562 36563 36564 36565 36566 36567 36568 36569 36570 36571 36572 36573 36574 36575 36576 36577 36578 36579 36580 36581 36582 36583 36584 36585 36586 36587 36588 36589 36590 36591 36592 36593 36594 36595 36596 36597 36598 36599 36600 36601 36602 36603 36604 36605 36606 36607 36608 36609 36610 36611 36612 36613 36614 36615 36616 36617 36618 36619 36620 36621 36622 36623 36624 36625 36626 36627 36628 36629 36630 36631 36632 36633 36634 36635 36636 36637 36638 36639 36640 36641 36642 36643 36644 36645 36646 36647 36648 36649 36650 36651 36652 36653 36654 36655 36656 36657 36658 36659 36660 36661 36662 36663 36664 36665 36666 36667 36668 36669 36670 36671 36672 36673 36674 36675 36676 36677 36678 36679 36680 36681 36682 36683 36684 36685 36686 36687 36688 36689 36690 36691 36692 36693 36694 36695 36696 36697 36698 36699 36700 36701 36702 36703 36704 36705 36706 36707 36708 36709 36710 36711 36712 36713 36714 36715 36716 36717 36718 36719 36720 36721 36722 36723 36724 36725 36726 36727 36728 36729 36730 36731 36732 36733 36734 36735 36736 36737 36738 36739 36740 36741 36742 36743 36744 36745 36746 36747 36748 36749 36750 36751 36752 36753 36754 36755 36756 36757 36758 36759 36760 36761 36762 36763 36764 36765 36766 36767 36768 36769 36770 36771 36772 36773 36774 36775 36776 36777 36778 36779 36780 36781 36782 36783 36784 36785 36786 36787 36788 36789 36790 36791 36792 36793 36794 36795 36796 36797 36798 36799 36800 36801 36802 36803 36804 36805 36806 36807 36808 36809 36810 36811 36812 36813 36814 36815 36816 36817 36818 36819 36820 36821 36822 36823 36824 36825 36826 36827 36828 36829 36830 36831 36832 36833 36834 36835 36836 36837 36838 36839 36840 36841 36842 36843 36844 36845 36846 36847 36848 36849 36850 36851 36852 36853 36854 36855 36856 36857 36858 36859 36860 36861 36862 36863 36864 36865 36866 36867 36868 36869 36870 36871 36872 36873 36874 36875 36876 36877 36878 36879 36880 36881 36882 36883 36884 36885 36886 36887 36888 36889 36890 36891 36892 36893 36894 36895 36896 36897 36898 36899 36900 36901 36902 36903 36904 36905 36906 36907 36908 36909 36910 36911 36912 36913 36914 36915 36916 36917 36918 36919 36920 36921 36922 36923 36924 36925 36926 36927 36928 36929 36930 36931 36932 36933 36934 36935 36936 36937 36938 36939 36940 36941 36942 36943 36944 36945 36946 36947 36948 36949 36950 36951 36952 36953 36954 36955 36956 36957 36958 36959 36960 36961 36962 36963 36964 36965 36966 36967 36968 36969 36970 36971 36972 36973 36974
# clock.test --
#
#	This test file covers the 'clock' command that manipulates time.
#
# This file contains a collection of tests for one or more of the Tcl
# built-in commands. Sourcing this file into Tcl runs the tests and
# generates output for errors.  No output means no errors were found.
#
# Copyright (c) 2004 by Kevin B. Kenny.  All rights reserved.
#
# See the file "license.terms" for information on usage and redistribution
# of this file, and for a DISCLAIMER OF ALL WARRANTIES.

if {[lsearch [namespace children] ::tcltest] == -1} {
    package require tcltest 2
    namespace import -force ::tcltest::*
}

if {[testConstraint win]} {
    if {[catch {
	    ::tcltest::loadTestedCommands
	    package require registry
	}]} {
	namespace eval ::tcl::clock {variable NoRegistry {}}
    }
}

package require msgcat 1.4

testConstraint detroit \
    [expr {![catch {clock format 0 -timezone :America/Detroit -format %z}]}]
testConstraint y2038 \
    [expr {[clock format 2158894800 -format %z -timezone :America/Detroit] eq {-0400}}]

# TEST PLAN

# clock-1:
#	[clock format] - tests of bad and empty arguments 
#
# clock-2 
#	formatting of year, month and day of month
#
# clock-3
#	formatting of fiscal year, fiscal week and day of week.
#
# clock-4
#	formatting of time of day.
#
# clock-5
#	handling of Daylight Saving Time in a known locale, formatting of
#	%z and %Z
#
# clock-6
#	input conversion - seconds
#
# clock-7
#	input conversion - Julian Day
#
# clock-8
#	input conversion - ccyymmdd
#
# clock-9
#	input conversion - ccyymmdd (test that %s and %J take precedence)
#
# clock-10
#	input conversion - ccyyddd
#
# clock-11
#	input conversion - relative precedence of ccyyddd and ccyymmdd
#	(tests the 'rightmost field' comparison)
#
# clock-12
#	input conversion - ccyyWwwd
#
# clock-13
#	input conversion - ccyyWwwd (test that %s and %J take precedence,
#	and that invalid days are rejected).
#
# clock-14
#	input conversion - yymmdd
#
# clock-15
#	precedence - yymmdd
#
# clock-16
#	input conversion and precedence - yyddd
#
# clock-17
#	input conversion - yyWwwd
#
# clock-18
#	precedence - yyWwwd
#
# clock-19
#	input conversion - mmdd
#
# clock-20
#	precedence - mmdd
#
# clock-21
#	input conversion and precedence - ddd
#
# clock-22
#	input conversion - Wwwd
#
# clock-23
#	precedence - Wwwd
#
# clock-24
#	input conversion - naked day of month
#
# clock-25
#	precedence - naked day of month
#
# clock-26
#	input conversion - naked day of week
#
# clock-27
#	precedence - day of week
#
# clock-28
#	scan with empty -format is midnight of base date
#
# clock-29
#	scanning of all time-of-day formats
#
# clock-30
#	[clock add]
#
# clock-31
#	Use of -locale system on Windows
#
# clock-32
#	Handling of the Julian-Gregorian transition
#
# clock-33
#	Legacy tests - [clock clicks]
#
# clock-34
#	Legacy tests - [clock scan] without -format
#
# clock-35
#	Legacy tests - [clock seconds]
#
# clock-36
#	Legacy tests - [clock scan] with 'next monthname'
#
# clock-37
#	Test that -gmt does not affect the value of %s
#
# clock-38
#	Regression test to verify that changes in TZ work
#	both east and west of Greenwich


# Note that all code between comments '# BEGIN' and '# END' is
# autogenerated by 'tools/makeTestCases.tcl'.  DO NOT EDIT CODE BETWEEN
# '# BEGIN' and '# END'.

# Define a fictitious locale, 'en_US_roman', for formatting of clock
# strings with localized numerics and eras.  This locale will be used
# in testing the 'clock' command.

namespace eval ::tcl::clock {
    ::msgcat::mcmset en_US_roman {
	LOCALE_ERAS {
	    {-62164627200 {} 0}
	    {-59008867200 c 100}
	    {-55853107200 cc 200}
	    {-52697347200 ccc 300}
	    {-49541587200 cd 400}
	    {-46385827200 d 500}
	    {-43230067200 dc 600}
	    {-40074307200 dcc 700}
	    {-36918547200 dccc 800}
	    {-33762787200 cm 900}
	    {-30607027200 m 1000}
	    {-27451267200 mc 1100}
	    {-24295507200 mcc 1200}
	    {-21139747200 mccc 1300}
	    {-17983987200 mcd 1400}
	    {-14828227200 md 1500}
	    {-11672467200 mdc 1600}
	    {-8516707200 mdcc 1700}
	    {-5364662400 mdccc 1800}
	    {-2208988800 mcm 1900}
	    {946684800 mm 2000}
	}
	LOCALE_NUMERALS {
	    ? i ii iii iv v vi vii viii ix
	    x xi xii xiii xiv xv xvi xvii xviii xix
	    xx xxi xxii xxiii xxiv xxv xxvi xxvii xxviii xxix
	    xxx xxxi xxxii xxxiii xxxiv xxxv xxxvi xxxvii xxxviii xxxix
	    xl xli xlii xliii xliv xlv xlvi xlvii xlviii xlix
	    l li lii liii liv lv lvi lvii lviii lix
	    lx lxi lxii lxiii lxiv lxv lxvi lxvii lxviii lxix
	    lxx lxxi lxxii lxxiii lxxiv lxxv lxxvi lxxvii lxxviii lxxix
	    lxxx lxxxi lxxxii lxxxiii lxxxiv lxxxv lxxxvi lxxxvii lxxxviii 
	    lxxxix
	    xc xci xcii xciii xciv xcv xcvi xcvii xcviii xcix
	    c
	}
	DATE_FORMAT {%m/%d/%Y}
	TIME_FORMAT {%H:%M:%S}
	DATE_TIME_FORMAT {%x %X}
	LOCALE_DATE_FORMAT {die %Od mensis %Om annoque %EY}
	LOCALE_TIME_FORMAT {%OH h %OM m %OS s}
	LOCALE_DATE_TIME_FORMAT {%Ex %EX}
	BCE {Before Christ}
	CE {Anno Domini}
    }
}

#----------------------------------------------------------------------
#
# The tests for the Windows platform are careful *not* to muck with
# the system registry.  Instead, the 'registry' command is overridden
# in the '::tcl::clock' namespace.
#
#----------------------------------------------------------------------

namespace eval ::testClock {
    namespace export registry
    set reg \
	[dict create \
	     HKEY_CURRENT_USER\\Control\ Panel\\International \
	     [dict create \
		  locale 0409 \
		  sShortDate dd-MMM-yyyy \
		  sLongDate "'the' dd''' day of' MMMM yyyy" \
		  sTimeFormat "h:mm:ss tt"] \
	     HKEY_LOCAL_MACHINE\\System\\CurrentControlSet\\Control\\TimeZoneInformation \
	     [dict create \
		  Bias 300 \
		  StandardBias 0 \
		  DaylightBias -60 \
		  StandardStart \x00\x00\x0b\x00\x01\x00\x02\x00\x00\x00\x00\x00\x00\x00\x00\x00 \
		  DaylightStart \x00\x00\x03\x00\x02\x00\x02\x00\x00\x00\x00\x00\x00\x00\x00\x00]]
}


proc ::testClock::registry { cmd path key } {
    variable reg
    if { $cmd ne {get} } {
	return -code error "test case attempts to write/query the registry"
    }
    if { ![dict exists $reg $path $key] } {
	return -code error "test case attempts to read unknown registry entry $path $key"
    }
    return [dict get $reg $path $key]
}

# Test some of the basics of [clock format]

test clock-1.0 "clock format - wrong # args" {
    list [catch {clock format} msg] $msg $::errorCode
} {1 {wrong # args: should be "clock format clockval ?-format string? ?-gmt boolean? ?-locale LOCALE? ?-timezone ZONE?"} {CLOCK wrongNumArgs}}

test clock-1.1 "clock format - bad time" {
    list [catch {clock format foo} msg] $msg
} {1 {expected integer but got "foo"}}

test clock-1.2 "clock format - bad gmt val" {
    list [catch {clock format 0 -gmt foo} msg] $msg
} {1 {expected boolean value but got "foo"}}

test clock-1.3 "clock format - empty val" {
    clock format 0 -gmt 1 -format ""
} {}

test clock-1.4 "clock format - bad flag" {*}{
    -body {
    list [catch {clock format 0 -oops badflag} msg] $msg $::errorCode
    } 
    -match glob
    -result {1 {bad option "-oops": must be -format, -gmt, -locale, or -timezone} {CLOCK badOption -oops}}
}

test clock-1.5 "clock format - bad timezone" {
    list [catch {clock format 0 -format "%s" -timezone :NOWHERE} msg] $msg $::errorCode
} {1 {time zone ":NOWHERE" not found} {CLOCK badTimeZone :NOWHERE}}

test clock-1.6 "clock format - gmt + timezone" {
    list [catch {clock format 0 -timezone :GMT -gmt true} msg] $msg $::errorCode
} {1 {cannot use -gmt and -timezone in same call} {CLOCK gmtWithTimezone}}

test clock-1.7 "clock format - option abbreviations" {
    clock format 0 -g true -f "%Y-%m-%d"
} 1970-01-01

# BEGIN testcases2

# Test formatting of Gregorian year, month, day, all formats
# Formats tested: %b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y %EY

test clock-2.1 {conversion of 1872-01-01} {
    clock format -3092556304 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Jan January 01/01/1872 12:34:56 die i mensis i annoque mdccclxxii xii h xxxiv m lvi s 18 mdccc 01 i  1 i Jan 001 2404794 01 i  1 01/01/1872 die i mensis i annoque mdccclxxii 72 lxxii 1872}
test clock-2.2 {conversion of 1872-01-31} {
    clock format -3089964304 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Jan January 01/31/1872 12:34:56 die xxxi mensis i annoque mdccclxxii xii h xxxiv m lvi s 18 mdccc 31 xxxi 31 xxxi Jan 031 2404824 01 i  1 01/31/1872 die xxxi mensis i annoque mdccclxxii 72 lxxii 1872}
test clock-2.3 {conversion of 1872-02-01} {
    clock format -3089877904 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Feb February 02/01/1872 12:34:56 die i mensis ii annoque mdccclxxii xii h xxxiv m lvi s 18 mdccc 01 i  1 i Feb 032 2404825 02 ii  2 02/01/1872 die i mensis ii annoque mdccclxxii 72 lxxii 1872}
test clock-2.4 {conversion of 1872-02-29} {
    clock format -3087458704 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Feb February 02/29/1872 12:34:56 die xxix mensis ii annoque mdccclxxii xii h xxxiv m lvi s 18 mdccc 29 xxix 29 xxix Feb 060 2404853 02 ii  2 02/29/1872 die xxix mensis ii annoque mdccclxxii 72 lxxii 1872}
test clock-2.5 {conversion of 1872-03-01} {
    clock format -3087372304 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Mar March 03/01/1872 12:34:56 die i mensis iii annoque mdccclxxii xii h xxxiv m lvi s 18 mdccc 01 i  1 i Mar 061 2404854 03 iii  3 03/01/1872 die i mensis iii annoque mdccclxxii 72 lxxii 1872}
test clock-2.6 {conversion of 1872-03-31} {
    clock format -3084780304 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Mar March 03/31/1872 12:34:56 die xxxi mensis iii annoque mdccclxxii xii h xxxiv m lvi s 18 mdccc 31 xxxi 31 xxxi Mar 091 2404884 03 iii  3 03/31/1872 die xxxi mensis iii annoque mdccclxxii 72 lxxii 1872}
test clock-2.7 {conversion of 1872-04-01} {
    clock format -3084693904 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Apr April 04/01/1872 12:34:56 die i mensis iv annoque mdccclxxii xii h xxxiv m lvi s 18 mdccc 01 i  1 i Apr 092 2404885 04 iv  4 04/01/1872 die i mensis iv annoque mdccclxxii 72 lxxii 1872}
test clock-2.8 {conversion of 1872-04-30} {
    clock format -3082188304 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Apr April 04/30/1872 12:34:56 die xxx mensis iv annoque mdccclxxii xii h xxxiv m lvi s 18 mdccc 30 xxx 30 xxx Apr 121 2404914 04 iv  4 04/30/1872 die xxx mensis iv annoque mdccclxxii 72 lxxii 1872}
test clock-2.9 {conversion of 1872-05-01} {
    clock format -3082101904 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {May May 05/01/1872 12:34:56 die i mensis v annoque mdccclxxii xii h xxxiv m lvi s 18 mdccc 01 i  1 i May 122 2404915 05 v  5 05/01/1872 die i mensis v annoque mdccclxxii 72 lxxii 1872}
test clock-2.10 {conversion of 1872-05-31} {
    clock format -3079509904 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {May May 05/31/1872 12:34:56 die xxxi mensis v annoque mdccclxxii xii h xxxiv m lvi s 18 mdccc 31 xxxi 31 xxxi May 152 2404945 05 v  5 05/31/1872 die xxxi mensis v annoque mdccclxxii 72 lxxii 1872}
test clock-2.11 {conversion of 1872-06-01} {
    clock format -3079423504 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Jun June 06/01/1872 12:34:56 die i mensis vi annoque mdccclxxii xii h xxxiv m lvi s 18 mdccc 01 i  1 i Jun 153 2404946 06 vi  6 06/01/1872 die i mensis vi annoque mdccclxxii 72 lxxii 1872}
test clock-2.12 {conversion of 1872-06-30} {
    clock format -3076917904 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Jun June 06/30/1872 12:34:56 die xxx mensis vi annoque mdccclxxii xii h xxxiv m lvi s 18 mdccc 30 xxx 30 xxx Jun 182 2404975 06 vi  6 06/30/1872 die xxx mensis vi annoque mdccclxxii 72 lxxii 1872}
test clock-2.13 {conversion of 1872-07-01} {
    clock format -3076831504 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Jul July 07/01/1872 12:34:56 die i mensis vii annoque mdccclxxii xii h xxxiv m lvi s 18 mdccc 01 i  1 i Jul 183 2404976 07 vii  7 07/01/1872 die i mensis vii annoque mdccclxxii 72 lxxii 1872}
test clock-2.14 {conversion of 1872-07-31} {
    clock format -3074239504 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Jul July 07/31/1872 12:34:56 die xxxi mensis vii annoque mdccclxxii xii h xxxiv m lvi s 18 mdccc 31 xxxi 31 xxxi Jul 213 2405006 07 vii  7 07/31/1872 die xxxi mensis vii annoque mdccclxxii 72 lxxii 1872}
test clock-2.15 {conversion of 1872-08-01} {
    clock format -3074153104 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Aug August 08/01/1872 12:34:56 die i mensis viii annoque mdccclxxii xii h xxxiv m lvi s 18 mdccc 01 i  1 i Aug 214 2405007 08 viii  8 08/01/1872 die i mensis viii annoque mdccclxxii 72 lxxii 1872}
test clock-2.16 {conversion of 1872-08-31} {
    clock format -3071561104 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Aug August 08/31/1872 12:34:56 die xxxi mensis viii annoque mdccclxxii xii h xxxiv m lvi s 18 mdccc 31 xxxi 31 xxxi Aug 244 2405037 08 viii  8 08/31/1872 die xxxi mensis viii annoque mdccclxxii 72 lxxii 1872}
test clock-2.17 {conversion of 1872-09-01} {
    clock format -3071474704 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Sep September 09/01/1872 12:34:56 die i mensis ix annoque mdccclxxii xii h xxxiv m lvi s 18 mdccc 01 i  1 i Sep 245 2405038 09 ix  9 09/01/1872 die i mensis ix annoque mdccclxxii 72 lxxii 1872}
test clock-2.18 {conversion of 1872-09-30} {
    clock format -3068969104 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Sep September 09/30/1872 12:34:56 die xxx mensis ix annoque mdccclxxii xii h xxxiv m lvi s 18 mdccc 30 xxx 30 xxx Sep 274 2405067 09 ix  9 09/30/1872 die xxx mensis ix annoque mdccclxxii 72 lxxii 1872}
test clock-2.19 {conversion of 1872-10-01} {
    clock format -3068882704 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Oct October 10/01/1872 12:34:56 die i mensis x annoque mdccclxxii xii h xxxiv m lvi s 18 mdccc 01 i  1 i Oct 275 2405068 10 x 10 10/01/1872 die i mensis x annoque mdccclxxii 72 lxxii 1872}
test clock-2.20 {conversion of 1872-10-31} {
    clock format -3066290704 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Oct October 10/31/1872 12:34:56 die xxxi mensis x annoque mdccclxxii xii h xxxiv m lvi s 18 mdccc 31 xxxi 31 xxxi Oct 305 2405098 10 x 10 10/31/1872 die xxxi mensis x annoque mdccclxxii 72 lxxii 1872}
test clock-2.21 {conversion of 1872-11-01} {
    clock format -3066204304 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Nov November 11/01/1872 12:34:56 die i mensis xi annoque mdccclxxii xii h xxxiv m lvi s 18 mdccc 01 i  1 i Nov 306 2405099 11 xi 11 11/01/1872 die i mensis xi annoque mdccclxxii 72 lxxii 1872}
test clock-2.22 {conversion of 1872-11-30} {
    clock format -3063698704 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Nov November 11/30/1872 12:34:56 die xxx mensis xi annoque mdccclxxii xii h xxxiv m lvi s 18 mdccc 30 xxx 30 xxx Nov 335 2405128 11 xi 11 11/30/1872 die xxx mensis xi annoque mdccclxxii 72 lxxii 1872}
test clock-2.23 {conversion of 1872-12-01} {
    clock format -3063612304 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Dec December 12/01/1872 12:34:56 die i mensis xii annoque mdccclxxii xii h xxxiv m lvi s 18 mdccc 01 i  1 i Dec 336 2405129 12 xii 12 12/01/1872 die i mensis xii annoque mdccclxxii 72 lxxii 1872}
test clock-2.24 {conversion of 1872-12-31} {
    clock format -3061020304 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Dec December 12/31/1872 12:34:56 die xxxi mensis xii annoque mdccclxxii xii h xxxiv m lvi s 18 mdccc 31 xxxi 31 xxxi Dec 366 2405159 12 xii 12 12/31/1872 die xxxi mensis xii annoque mdccclxxii 72 lxxii 1872}
test clock-2.25 {conversion of 1873-01-01} {
    clock format -3060933904 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Jan January 01/01/1873 12:34:56 die i mensis i annoque mdccclxxiii xii h xxxiv m lvi s 18 mdccc 01 i  1 i Jan 001 2405160 01 i  1 01/01/1873 die i mensis i annoque mdccclxxiii 73 lxxiii 1873}
test clock-2.26 {conversion of 1873-01-31} {
    clock format -3058341904 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Jan January 01/31/1873 12:34:56 die xxxi mensis i annoque mdccclxxiii xii h xxxiv m lvi s 18 mdccc 31 xxxi 31 xxxi Jan 031 2405190 01 i  1 01/31/1873 die xxxi mensis i annoque mdccclxxiii 73 lxxiii 1873}
test clock-2.27 {conversion of 1873-02-01} {
    clock format -3058255504 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Feb February 02/01/1873 12:34:56 die i mensis ii annoque mdccclxxiii xii h xxxiv m lvi s 18 mdccc 01 i  1 i Feb 032 2405191 02 ii  2 02/01/1873 die i mensis ii annoque mdccclxxiii 73 lxxiii 1873}
test clock-2.28 {conversion of 1873-02-28} {
    clock format -3055922704 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Feb February 02/28/1873 12:34:56 die xxviii mensis ii annoque mdccclxxiii xii h xxxiv m lvi s 18 mdccc 28 xxviii 28 xxviii Feb 059 2405218 02 ii  2 02/28/1873 die xxviii mensis ii annoque mdccclxxiii 73 lxxiii 1873}
test clock-2.29 {conversion of 1873-03-01} {
    clock format -3055836304 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Mar March 03/01/1873 12:34:56 die i mensis iii annoque mdccclxxiii xii h xxxiv m lvi s 18 mdccc 01 i  1 i Mar 060 2405219 03 iii  3 03/01/1873 die i mensis iii annoque mdccclxxiii 73 lxxiii 1873}
test clock-2.30 {conversion of 1873-03-31} {
    clock format -3053244304 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Mar March 03/31/1873 12:34:56 die xxxi mensis iii annoque mdccclxxiii xii h xxxiv m lvi s 18 mdccc 31 xxxi 31 xxxi Mar 090 2405249 03 iii  3 03/31/1873 die xxxi mensis iii annoque mdccclxxiii 73 lxxiii 1873}
test clock-2.31 {conversion of 1873-04-01} {
    clock format -3053157904 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Apr April 04/01/1873 12:34:56 die i mensis iv annoque mdccclxxiii xii h xxxiv m lvi s 18 mdccc 01 i  1 i Apr 091 2405250 04 iv  4 04/01/1873 die i mensis iv annoque mdccclxxiii 73 lxxiii 1873}
test clock-2.32 {conversion of 1873-04-30} {
    clock format -3050652304 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Apr April 04/30/1873 12:34:56 die xxx mensis iv annoque mdccclxxiii xii h xxxiv m lvi s 18 mdccc 30 xxx 30 xxx Apr 120 2405279 04 iv  4 04/30/1873 die xxx mensis iv annoque mdccclxxiii 73 lxxiii 1873}
test clock-2.33 {conversion of 1873-05-01} {
    clock format -3050565904 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {May May 05/01/1873 12:34:56 die i mensis v annoque mdccclxxiii xii h xxxiv m lvi s 18 mdccc 01 i  1 i May 121 2405280 05 v  5 05/01/1873 die i mensis v annoque mdccclxxiii 73 lxxiii 1873}
test clock-2.34 {conversion of 1873-05-31} {
    clock format -3047973904 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {May May 05/31/1873 12:34:56 die xxxi mensis v annoque mdccclxxiii xii h xxxiv m lvi s 18 mdccc 31 xxxi 31 xxxi May 151 2405310 05 v  5 05/31/1873 die xxxi mensis v annoque mdccclxxiii 73 lxxiii 1873}
test clock-2.35 {conversion of 1873-06-01} {
    clock format -3047887504 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Jun June 06/01/1873 12:34:56 die i mensis vi annoque mdccclxxiii xii h xxxiv m lvi s 18 mdccc 01 i  1 i Jun 152 2405311 06 vi  6 06/01/1873 die i mensis vi annoque mdccclxxiii 73 lxxiii 1873}
test clock-2.36 {conversion of 1873-06-30} {
    clock format -3045381904 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Jun June 06/30/1873 12:34:56 die xxx mensis vi annoque mdccclxxiii xii h xxxiv m lvi s 18 mdccc 30 xxx 30 xxx Jun 181 2405340 06 vi  6 06/30/1873 die xxx mensis vi annoque mdccclxxiii 73 lxxiii 1873}
test clock-2.37 {conversion of 1873-07-01} {
    clock format -3045295504 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Jul July 07/01/1873 12:34:56 die i mensis vii annoque mdccclxxiii xii h xxxiv m lvi s 18 mdccc 01 i  1 i Jul 182 2405341 07 vii  7 07/01/1873 die i mensis vii annoque mdccclxxiii 73 lxxiii 1873}
test clock-2.38 {conversion of 1873-07-31} {
    clock format -3042703504 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Jul July 07/31/1873 12:34:56 die xxxi mensis vii annoque mdccclxxiii xii h xxxiv m lvi s 18 mdccc 31 xxxi 31 xxxi Jul 212 2405371 07 vii  7 07/31/1873 die xxxi mensis vii annoque mdccclxxiii 73 lxxiii 1873}
test clock-2.39 {conversion of 1873-08-01} {
    clock format -3042617104 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Aug August 08/01/1873 12:34:56 die i mensis viii annoque mdccclxxiii xii h xxxiv m lvi s 18 mdccc 01 i  1 i Aug 213 2405372 08 viii  8 08/01/1873 die i mensis viii annoque mdccclxxiii 73 lxxiii 1873}
test clock-2.40 {conversion of 1873-08-31} {
    clock format -3040025104 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Aug August 08/31/1873 12:34:56 die xxxi mensis viii annoque mdccclxxiii xii h xxxiv m lvi s 18 mdccc 31 xxxi 31 xxxi Aug 243 2405402 08 viii  8 08/31/1873 die xxxi mensis viii annoque mdccclxxiii 73 lxxiii 1873}
test clock-2.41 {conversion of 1873-09-01} {
    clock format -3039938704 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Sep September 09/01/1873 12:34:56 die i mensis ix annoque mdccclxxiii xii h xxxiv m lvi s 18 mdccc 01 i  1 i Sep 244 2405403 09 ix  9 09/01/1873 die i mensis ix annoque mdccclxxiii 73 lxxiii 1873}
test clock-2.42 {conversion of 1873-09-30} {
    clock format -3037433104 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Sep September 09/30/1873 12:34:56 die xxx mensis ix annoque mdccclxxiii xii h xxxiv m lvi s 18 mdccc 30 xxx 30 xxx Sep 273 2405432 09 ix  9 09/30/1873 die xxx mensis ix annoque mdccclxxiii 73 lxxiii 1873}
test clock-2.43 {conversion of 1873-10-01} {
    clock format -3037346704 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Oct October 10/01/1873 12:34:56 die i mensis x annoque mdccclxxiii xii h xxxiv m lvi s 18 mdccc 01 i  1 i Oct 274 2405433 10 x 10 10/01/1873 die i mensis x annoque mdccclxxiii 73 lxxiii 1873}
test clock-2.44 {conversion of 1873-10-31} {
    clock format -3034754704 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Oct October 10/31/1873 12:34:56 die xxxi mensis x annoque mdccclxxiii xii h xxxiv m lvi s 18 mdccc 31 xxxi 31 xxxi Oct 304 2405463 10 x 10 10/31/1873 die xxxi mensis x annoque mdccclxxiii 73 lxxiii 1873}
test clock-2.45 {conversion of 1873-11-01} {
    clock format -3034668304 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Nov November 11/01/1873 12:34:56 die i mensis xi annoque mdccclxxiii xii h xxxiv m lvi s 18 mdccc 01 i  1 i Nov 305 2405464 11 xi 11 11/01/1873 die i mensis xi annoque mdccclxxiii 73 lxxiii 1873}
test clock-2.46 {conversion of 1873-11-30} {
    clock format -3032162704 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Nov November 11/30/1873 12:34:56 die xxx mensis xi annoque mdccclxxiii xii h xxxiv m lvi s 18 mdccc 30 xxx 30 xxx Nov 334 2405493 11 xi 11 11/30/1873 die xxx mensis xi annoque mdccclxxiii 73 lxxiii 1873}
test clock-2.47 {conversion of 1873-12-01} {
    clock format -3032076304 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Dec December 12/01/1873 12:34:56 die i mensis xii annoque mdccclxxiii xii h xxxiv m lvi s 18 mdccc 01 i  1 i Dec 335 2405494 12 xii 12 12/01/1873 die i mensis xii annoque mdccclxxiii 73 lxxiii 1873}
test clock-2.48 {conversion of 1873-12-31} {
    clock format -3029484304 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Dec December 12/31/1873 12:34:56 die xxxi mensis xii annoque mdccclxxiii xii h xxxiv m lvi s 18 mdccc 31 xxxi 31 xxxi Dec 365 2405524 12 xii 12 12/31/1873 die xxxi mensis xii annoque mdccclxxiii 73 lxxiii 1873}
test clock-2.49 {conversion of 1876-01-01} {
    clock format -2966325904 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Jan January 01/01/1876 12:34:56 die i mensis i annoque mdccclxxvi xii h xxxiv m lvi s 18 mdccc 01 i  1 i Jan 001 2406255 01 i  1 01/01/1876 die i mensis i annoque mdccclxxvi 76 lxxvi 1876}
test clock-2.50 {conversion of 1876-01-31} {
    clock format -2963733904 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Jan January 01/31/1876 12:34:56 die xxxi mensis i annoque mdccclxxvi xii h xxxiv m lvi s 18 mdccc 31 xxxi 31 xxxi Jan 031 2406285 01 i  1 01/31/1876 die xxxi mensis i annoque mdccclxxvi 76 lxxvi 1876}
test clock-2.51 {conversion of 1876-02-01} {
    clock format -2963647504 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Feb February 02/01/1876 12:34:56 die i mensis ii annoque mdccclxxvi xii h xxxiv m lvi s 18 mdccc 01 i  1 i Feb 032 2406286 02 ii  2 02/01/1876 die i mensis ii annoque mdccclxxvi 76 lxxvi 1876}
test clock-2.52 {conversion of 1876-02-29} {
    clock format -2961228304 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Feb February 02/29/1876 12:34:56 die xxix mensis ii annoque mdccclxxvi xii h xxxiv m lvi s 18 mdccc 29 xxix 29 xxix Feb 060 2406314 02 ii  2 02/29/1876 die xxix mensis ii annoque mdccclxxvi 76 lxxvi 1876}
test clock-2.53 {conversion of 1876-03-01} {
    clock format -2961141904 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Mar March 03/01/1876 12:34:56 die i mensis iii annoque mdccclxxvi xii h xxxiv m lvi s 18 mdccc 01 i  1 i Mar 061 2406315 03 iii  3 03/01/1876 die i mensis iii annoque mdccclxxvi 76 lxxvi 1876}
test clock-2.54 {conversion of 1876-03-31} {
    clock format -2958549904 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Mar March 03/31/1876 12:34:56 die xxxi mensis iii annoque mdccclxxvi xii h xxxiv m lvi s 18 mdccc 31 xxxi 31 xxxi Mar 091 2406345 03 iii  3 03/31/1876 die xxxi mensis iii annoque mdccclxxvi 76 lxxvi 1876}
test clock-2.55 {conversion of 1876-04-01} {
    clock format -2958463504 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Apr April 04/01/1876 12:34:56 die i mensis iv annoque mdccclxxvi xii h xxxiv m lvi s 18 mdccc 01 i  1 i Apr 092 2406346 04 iv  4 04/01/1876 die i mensis iv annoque mdccclxxvi 76 lxxvi 1876}
test clock-2.56 {conversion of 1876-04-30} {
    clock format -2955957904 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Apr April 04/30/1876 12:34:56 die xxx mensis iv annoque mdccclxxvi xii h xxxiv m lvi s 18 mdccc 30 xxx 30 xxx Apr 121 2406375 04 iv  4 04/30/1876 die xxx mensis iv annoque mdccclxxvi 76 lxxvi 1876}
test clock-2.57 {conversion of 1876-05-01} {
    clock format -2955871504 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {May May 05/01/1876 12:34:56 die i mensis v annoque mdccclxxvi xii h xxxiv m lvi s 18 mdccc 01 i  1 i May 122 2406376 05 v  5 05/01/1876 die i mensis v annoque mdccclxxvi 76 lxxvi 1876}
test clock-2.58 {conversion of 1876-05-31} {
    clock format -2953279504 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {May May 05/31/1876 12:34:56 die xxxi mensis v annoque mdccclxxvi xii h xxxiv m lvi s 18 mdccc 31 xxxi 31 xxxi May 152 2406406 05 v  5 05/31/1876 die xxxi mensis v annoque mdccclxxvi 76 lxxvi 1876}
test clock-2.59 {conversion of 1876-06-01} {
    clock format -2953193104 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Jun June 06/01/1876 12:34:56 die i mensis vi annoque mdccclxxvi xii h xxxiv m lvi s 18 mdccc 01 i  1 i Jun 153 2406407 06 vi  6 06/01/1876 die i mensis vi annoque mdccclxxvi 76 lxxvi 1876}
test clock-2.60 {conversion of 1876-06-30} {
    clock format -2950687504 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Jun June 06/30/1876 12:34:56 die xxx mensis vi annoque mdccclxxvi xii h xxxiv m lvi s 18 mdccc 30 xxx 30 xxx Jun 182 2406436 06 vi  6 06/30/1876 die xxx mensis vi annoque mdccclxxvi 76 lxxvi 1876}
test clock-2.61 {conversion of 1876-07-01} {
    clock format -2950601104 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Jul July 07/01/1876 12:34:56 die i mensis vii annoque mdccclxxvi xii h xxxiv m lvi s 18 mdccc 01 i  1 i Jul 183 2406437 07 vii  7 07/01/1876 die i mensis vii annoque mdccclxxvi 76 lxxvi 1876}
test clock-2.62 {conversion of 1876-07-31} {
    clock format -2948009104 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Jul July 07/31/1876 12:34:56 die xxxi mensis vii annoque mdccclxxvi xii h xxxiv m lvi s 18 mdccc 31 xxxi 31 xxxi Jul 213 2406467 07 vii  7 07/31/1876 die xxxi mensis vii annoque mdccclxxvi 76 lxxvi 1876}
test clock-2.63 {conversion of 1876-08-01} {
    clock format -2947922704 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Aug August 08/01/1876 12:34:56 die i mensis viii annoque mdccclxxvi xii h xxxiv m lvi s 18 mdccc 01 i  1 i Aug 214 2406468 08 viii  8 08/01/1876 die i mensis viii annoque mdccclxxvi 76 lxxvi 1876}
test clock-2.64 {conversion of 1876-08-31} {
    clock format -2945330704 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Aug August 08/31/1876 12:34:56 die xxxi mensis viii annoque mdccclxxvi xii h xxxiv m lvi s 18 mdccc 31 xxxi 31 xxxi Aug 244 2406498 08 viii  8 08/31/1876 die xxxi mensis viii annoque mdccclxxvi 76 lxxvi 1876}
test clock-2.65 {conversion of 1876-09-01} {
    clock format -2945244304 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Sep September 09/01/1876 12:34:56 die i mensis ix annoque mdccclxxvi xii h xxxiv m lvi s 18 mdccc 01 i  1 i Sep 245 2406499 09 ix  9 09/01/1876 die i mensis ix annoque mdccclxxvi 76 lxxvi 1876}
test clock-2.66 {conversion of 1876-09-30} {
    clock format -2942738704 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Sep September 09/30/1876 12:34:56 die xxx mensis ix annoque mdccclxxvi xii h xxxiv m lvi s 18 mdccc 30 xxx 30 xxx Sep 274 2406528 09 ix  9 09/30/1876 die xxx mensis ix annoque mdccclxxvi 76 lxxvi 1876}
test clock-2.67 {conversion of 1876-10-01} {
    clock format -2942652304 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Oct October 10/01/1876 12:34:56 die i mensis x annoque mdccclxxvi xii h xxxiv m lvi s 18 mdccc 01 i  1 i Oct 275 2406529 10 x 10 10/01/1876 die i mensis x annoque mdccclxxvi 76 lxxvi 1876}
test clock-2.68 {conversion of 1876-10-31} {
    clock format -2940060304 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Oct October 10/31/1876 12:34:56 die xxxi mensis x annoque mdccclxxvi xii h xxxiv m lvi s 18 mdccc 31 xxxi 31 xxxi Oct 305 2406559 10 x 10 10/31/1876 die xxxi mensis x annoque mdccclxxvi 76 lxxvi 1876}
test clock-2.69 {conversion of 1876-11-01} {
    clock format -2939973904 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Nov November 11/01/1876 12:34:56 die i mensis xi annoque mdccclxxvi xii h xxxiv m lvi s 18 mdccc 01 i  1 i Nov 306 2406560 11 xi 11 11/01/1876 die i mensis xi annoque mdccclxxvi 76 lxxvi 1876}
test clock-2.70 {conversion of 1876-11-30} {
    clock format -2937468304 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Nov November 11/30/1876 12:34:56 die xxx mensis xi annoque mdccclxxvi xii h xxxiv m lvi s 18 mdccc 30 xxx 30 xxx Nov 335 2406589 11 xi 11 11/30/1876 die xxx mensis xi annoque mdccclxxvi 76 lxxvi 1876}
test clock-2.71 {conversion of 1876-12-01} {
    clock format -2937381904 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Dec December 12/01/1876 12:34:56 die i mensis xii annoque mdccclxxvi xii h xxxiv m lvi s 18 mdccc 01 i  1 i Dec 336 2406590 12 xii 12 12/01/1876 die i mensis xii annoque mdccclxxvi 76 lxxvi 1876}
test clock-2.72 {conversion of 1876-12-31} {
    clock format -2934789904 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Dec December 12/31/1876 12:34:56 die xxxi mensis xii annoque mdccclxxvi xii h xxxiv m lvi s 18 mdccc 31 xxxi 31 xxxi Dec 366 2406620 12 xii 12 12/31/1876 die xxxi mensis xii annoque mdccclxxvi 76 lxxvi 1876}
test clock-2.73 {conversion of 1877-01-01} {
    clock format -2934703504 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Jan January 01/01/1877 12:34:56 die i mensis i annoque mdccclxxvii xii h xxxiv m lvi s 18 mdccc 01 i  1 i Jan 001 2406621 01 i  1 01/01/1877 die i mensis i annoque mdccclxxvii 77 lxxvii 1877}
test clock-2.74 {conversion of 1877-01-31} {
    clock format -2932111504 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Jan January 01/31/1877 12:34:56 die xxxi mensis i annoque mdccclxxvii xii h xxxiv m lvi s 18 mdccc 31 xxxi 31 xxxi Jan 031 2406651 01 i  1 01/31/1877 die xxxi mensis i annoque mdccclxxvii 77 lxxvii 1877}
test clock-2.75 {conversion of 1877-02-01} {
    clock format -2932025104 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Feb February 02/01/1877 12:34:56 die i mensis ii annoque mdccclxxvii xii h xxxiv m lvi s 18 mdccc 01 i  1 i Feb 032 2406652 02 ii  2 02/01/1877 die i mensis ii annoque mdccclxxvii 77 lxxvii 1877}
test clock-2.76 {conversion of 1877-02-28} {
    clock format -2929692304 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Feb February 02/28/1877 12:34:56 die xxviii mensis ii annoque mdccclxxvii xii h xxxiv m lvi s 18 mdccc 28 xxviii 28 xxviii Feb 059 2406679 02 ii  2 02/28/1877 die xxviii mensis ii annoque mdccclxxvii 77 lxxvii 1877}
test clock-2.77 {conversion of 1877-03-01} {
    clock format -2929605904 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Mar March 03/01/1877 12:34:56 die i mensis iii annoque mdccclxxvii xii h xxxiv m lvi s 18 mdccc 01 i  1 i Mar 060 2406680 03 iii  3 03/01/1877 die i mensis iii annoque mdccclxxvii 77 lxxvii 1877}
test clock-2.78 {conversion of 1877-03-31} {
    clock format -2927013904 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Mar March 03/31/1877 12:34:56 die xxxi mensis iii annoque mdccclxxvii xii h xxxiv m lvi s 18 mdccc 31 xxxi 31 xxxi Mar 090 2406710 03 iii  3 03/31/1877 die xxxi mensis iii annoque mdccclxxvii 77 lxxvii 1877}
test clock-2.79 {conversion of 1877-04-01} {
    clock format -2926927504 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Apr April 04/01/1877 12:34:56 die i mensis iv annoque mdccclxxvii xii h xxxiv m lvi s 18 mdccc 01 i  1 i Apr 091 2406711 04 iv  4 04/01/1877 die i mensis iv annoque mdccclxxvii 77 lxxvii 1877}
test clock-2.80 {conversion of 1877-04-30} {
    clock format -2924421904 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Apr April 04/30/1877 12:34:56 die xxx mensis iv annoque mdccclxxvii xii h xxxiv m lvi s 18 mdccc 30 xxx 30 xxx Apr 120 2406740 04 iv  4 04/30/1877 die xxx mensis iv annoque mdccclxxvii 77 lxxvii 1877}
test clock-2.81 {conversion of 1877-05-01} {
    clock format -2924335504 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {May May 05/01/1877 12:34:56 die i mensis v annoque mdccclxxvii xii h xxxiv m lvi s 18 mdccc 01 i  1 i May 121 2406741 05 v  5 05/01/1877 die i mensis v annoque mdccclxxvii 77 lxxvii 1877}
test clock-2.82 {conversion of 1877-05-31} {
    clock format -2921743504 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {May May 05/31/1877 12:34:56 die xxxi mensis v annoque mdccclxxvii xii h xxxiv m lvi s 18 mdccc 31 xxxi 31 xxxi May 151 2406771 05 v  5 05/31/1877 die xxxi mensis v annoque mdccclxxvii 77 lxxvii 1877}
test clock-2.83 {conversion of 1877-06-01} {
    clock format -2921657104 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Jun June 06/01/1877 12:34:56 die i mensis vi annoque mdccclxxvii xii h xxxiv m lvi s 18 mdccc 01 i  1 i Jun 152 2406772 06 vi  6 06/01/1877 die i mensis vi annoque mdccclxxvii 77 lxxvii 1877}
test clock-2.84 {conversion of 1877-06-30} {
    clock format -2919151504 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Jun June 06/30/1877 12:34:56 die xxx mensis vi annoque mdccclxxvii xii h xxxiv m lvi s 18 mdccc 30 xxx 30 xxx Jun 181 2406801 06 vi  6 06/30/1877 die xxx mensis vi annoque mdccclxxvii 77 lxxvii 1877}
test clock-2.85 {conversion of 1877-07-01} {
    clock format -2919065104 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Jul July 07/01/1877 12:34:56 die i mensis vii annoque mdccclxxvii xii h xxxiv m lvi s 18 mdccc 01 i  1 i Jul 182 2406802 07 vii  7 07/01/1877 die i mensis vii annoque mdccclxxvii 77 lxxvii 1877}
test clock-2.86 {conversion of 1877-07-31} {
    clock format -2916473104 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Jul July 07/31/1877 12:34:56 die xxxi mensis vii annoque mdccclxxvii xii h xxxiv m lvi s 18 mdccc 31 xxxi 31 xxxi Jul 212 2406832 07 vii  7 07/31/1877 die xxxi mensis vii annoque mdccclxxvii 77 lxxvii 1877}
test clock-2.87 {conversion of 1877-08-01} {
    clock format -2916386704 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Aug August 08/01/1877 12:34:56 die i mensis viii annoque mdccclxxvii xii h xxxiv m lvi s 18 mdccc 01 i  1 i Aug 213 2406833 08 viii  8 08/01/1877 die i mensis viii annoque mdccclxxvii 77 lxxvii 1877}
test clock-2.88 {conversion of 1877-08-31} {
    clock format -2913794704 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Aug August 08/31/1877 12:34:56 die xxxi mensis viii annoque mdccclxxvii xii h xxxiv m lvi s 18 mdccc 31 xxxi 31 xxxi Aug 243 2406863 08 viii  8 08/31/1877 die xxxi mensis viii annoque mdccclxxvii 77 lxxvii 1877}
test clock-2.89 {conversion of 1877-09-01} {
    clock format -2913708304 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Sep September 09/01/1877 12:34:56 die i mensis ix annoque mdccclxxvii xii h xxxiv m lvi s 18 mdccc 01 i  1 i Sep 244 2406864 09 ix  9 09/01/1877 die i mensis ix annoque mdccclxxvii 77 lxxvii 1877}
test clock-2.90 {conversion of 1877-09-30} {
    clock format -2911202704 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Sep September 09/30/1877 12:34:56 die xxx mensis ix annoque mdccclxxvii xii h xxxiv m lvi s 18 mdccc 30 xxx 30 xxx Sep 273 2406893 09 ix  9 09/30/1877 die xxx mensis ix annoque mdccclxxvii 77 lxxvii 1877}
test clock-2.91 {conversion of 1877-10-01} {
    clock format -2911116304 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Oct October 10/01/1877 12:34:56 die i mensis x annoque mdccclxxvii xii h xxxiv m lvi s 18 mdccc 01 i  1 i Oct 274 2406894 10 x 10 10/01/1877 die i mensis x annoque mdccclxxvii 77 lxxvii 1877}
test clock-2.92 {conversion of 1877-10-31} {
    clock format -2908524304 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Oct October 10/31/1877 12:34:56 die xxxi mensis x annoque mdccclxxvii xii h xxxiv m lvi s 18 mdccc 31 xxxi 31 xxxi Oct 304 2406924 10 x 10 10/31/1877 die xxxi mensis x annoque mdccclxxvii 77 lxxvii 1877}
test clock-2.93 {conversion of 1877-11-01} {
    clock format -2908437904 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Nov November 11/01/1877 12:34:56 die i mensis xi annoque mdccclxxvii xii h xxxiv m lvi s 18 mdccc 01 i  1 i Nov 305 2406925 11 xi 11 11/01/1877 die i mensis xi annoque mdccclxxvii 77 lxxvii 1877}
test clock-2.94 {conversion of 1877-11-30} {
    clock format -2905932304 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Nov November 11/30/1877 12:34:56 die xxx mensis xi annoque mdccclxxvii xii h xxxiv m lvi s 18 mdccc 30 xxx 30 xxx Nov 334 2406954 11 xi 11 11/30/1877 die xxx mensis xi annoque mdccclxxvii 77 lxxvii 1877}
test clock-2.95 {conversion of 1877-12-01} {
    clock format -2905845904 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Dec December 12/01/1877 12:34:56 die i mensis xii annoque mdccclxxvii xii h xxxiv m lvi s 18 mdccc 01 i  1 i Dec 335 2406955 12 xii 12 12/01/1877 die i mensis xii annoque mdccclxxvii 77 lxxvii 1877}
test clock-2.96 {conversion of 1877-12-31} {
    clock format -2903253904 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Dec December 12/31/1877 12:34:56 die xxxi mensis xii annoque mdccclxxvii xii h xxxiv m lvi s 18 mdccc 31 xxxi 31 xxxi Dec 365 2406985 12 xii 12 12/31/1877 die xxxi mensis xii annoque mdccclxxvii 77 lxxvii 1877}
test clock-2.97 {conversion of 1880-01-01} {
    clock format -2840095504 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Jan January 01/01/1880 12:34:56 die i mensis i annoque mdccclxxx xii h xxxiv m lvi s 18 mdccc 01 i  1 i Jan 001 2407716 01 i  1 01/01/1880 die i mensis i annoque mdccclxxx 80 lxxx 1880}
test clock-2.98 {conversion of 1880-01-31} {
    clock format -2837503504 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Jan January 01/31/1880 12:34:56 die xxxi mensis i annoque mdccclxxx xii h xxxiv m lvi s 18 mdccc 31 xxxi 31 xxxi Jan 031 2407746 01 i  1 01/31/1880 die xxxi mensis i annoque mdccclxxx 80 lxxx 1880}
test clock-2.99 {conversion of 1880-02-01} {
    clock format -2837417104 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Feb February 02/01/1880 12:34:56 die i mensis ii annoque mdccclxxx xii h xxxiv m lvi s 18 mdccc 01 i  1 i Feb 032 2407747 02 ii  2 02/01/1880 die i mensis ii annoque mdccclxxx 80 lxxx 1880}
test clock-2.100 {conversion of 1880-02-29} {
    clock format -2834997904 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Feb February 02/29/1880 12:34:56 die xxix mensis ii annoque mdccclxxx xii h xxxiv m lvi s 18 mdccc 29 xxix 29 xxix Feb 060 2407775 02 ii  2 02/29/1880 die xxix mensis ii annoque mdccclxxx 80 lxxx 1880}
test clock-2.101 {conversion of 1880-03-01} {
    clock format -2834911504 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Mar March 03/01/1880 12:34:56 die i mensis iii annoque mdccclxxx xii h xxxiv m lvi s 18 mdccc 01 i  1 i Mar 061 2407776 03 iii  3 03/01/1880 die i mensis iii annoque mdccclxxx 80 lxxx 1880}
test clock-2.102 {conversion of 1880-03-31} {
    clock format -2832319504 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Mar March 03/31/1880 12:34:56 die xxxi mensis iii annoque mdccclxxx xii h xxxiv m lvi s 18 mdccc 31 xxxi 31 xxxi Mar 091 2407806 03 iii  3 03/31/1880 die xxxi mensis iii annoque mdccclxxx 80 lxxx 1880}
test clock-2.103 {conversion of 1880-04-01} {
    clock format -2832233104 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Apr April 04/01/1880 12:34:56 die i mensis iv annoque mdccclxxx xii h xxxiv m lvi s 18 mdccc 01 i  1 i Apr 092 2407807 04 iv  4 04/01/1880 die i mensis iv annoque mdccclxxx 80 lxxx 1880}
test clock-2.104 {conversion of 1880-04-30} {
    clock format -2829727504 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Apr April 04/30/1880 12:34:56 die xxx mensis iv annoque mdccclxxx xii h xxxiv m lvi s 18 mdccc 30 xxx 30 xxx Apr 121 2407836 04 iv  4 04/30/1880 die xxx mensis iv annoque mdccclxxx 80 lxxx 1880}
test clock-2.105 {conversion of 1880-05-01} {
    clock format -2829641104 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {May May 05/01/1880 12:34:56 die i mensis v annoque mdccclxxx xii h xxxiv m lvi s 18 mdccc 01 i  1 i May 122 2407837 05 v  5 05/01/1880 die i mensis v annoque mdccclxxx 80 lxxx 1880}
test clock-2.106 {conversion of 1880-05-31} {
    clock format -2827049104 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {May May 05/31/1880 12:34:56 die xxxi mensis v annoque mdccclxxx xii h xxxiv m lvi s 18 mdccc 31 xxxi 31 xxxi May 152 2407867 05 v  5 05/31/1880 die xxxi mensis v annoque mdccclxxx 80 lxxx 1880}
test clock-2.107 {conversion of 1880-06-01} {
    clock format -2826962704 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Jun June 06/01/1880 12:34:56 die i mensis vi annoque mdccclxxx xii h xxxiv m lvi s 18 mdccc 01 i  1 i Jun 153 2407868 06 vi  6 06/01/1880 die i mensis vi annoque mdccclxxx 80 lxxx 1880}
test clock-2.108 {conversion of 1880-06-30} {
    clock format -2824457104 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Jun June 06/30/1880 12:34:56 die xxx mensis vi annoque mdccclxxx xii h xxxiv m lvi s 18 mdccc 30 xxx 30 xxx Jun 182 2407897 06 vi  6 06/30/1880 die xxx mensis vi annoque mdccclxxx 80 lxxx 1880}
test clock-2.109 {conversion of 1880-07-01} {
    clock format -2824370704 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Jul July 07/01/1880 12:34:56 die i mensis vii annoque mdccclxxx xii h xxxiv m lvi s 18 mdccc 01 i  1 i Jul 183 2407898 07 vii  7 07/01/1880 die i mensis vii annoque mdccclxxx 80 lxxx 1880}
test clock-2.110 {conversion of 1880-07-31} {
    clock format -2821778704 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Jul July 07/31/1880 12:34:56 die xxxi mensis vii annoque mdccclxxx xii h xxxiv m lvi s 18 mdccc 31 xxxi 31 xxxi Jul 213 2407928 07 vii  7 07/31/1880 die xxxi mensis vii annoque mdccclxxx 80 lxxx 1880}
test clock-2.111 {conversion of 1880-08-01} {
    clock format -2821692304 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Aug August 08/01/1880 12:34:56 die i mensis viii annoque mdccclxxx xii h xxxiv m lvi s 18 mdccc 01 i  1 i Aug 214 2407929 08 viii  8 08/01/1880 die i mensis viii annoque mdccclxxx 80 lxxx 1880}
test clock-2.112 {conversion of 1880-08-31} {
    clock format -2819100304 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Aug August 08/31/1880 12:34:56 die xxxi mensis viii annoque mdccclxxx xii h xxxiv m lvi s 18 mdccc 31 xxxi 31 xxxi Aug 244 2407959 08 viii  8 08/31/1880 die xxxi mensis viii annoque mdccclxxx 80 lxxx 1880}
test clock-2.113 {conversion of 1880-09-01} {
    clock format -2819013904 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Sep September 09/01/1880 12:34:56 die i mensis ix annoque mdccclxxx xii h xxxiv m lvi s 18 mdccc 01 i  1 i Sep 245 2407960 09 ix  9 09/01/1880 die i mensis ix annoque mdccclxxx 80 lxxx 1880}
test clock-2.114 {conversion of 1880-09-30} {
    clock format -2816508304 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Sep September 09/30/1880 12:34:56 die xxx mensis ix annoque mdccclxxx xii h xxxiv m lvi s 18 mdccc 30 xxx 30 xxx Sep 274 2407989 09 ix  9 09/30/1880 die xxx mensis ix annoque mdccclxxx 80 lxxx 1880}
test clock-2.115 {conversion of 1880-10-01} {
    clock format -2816421904 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Oct October 10/01/1880 12:34:56 die i mensis x annoque mdccclxxx xii h xxxiv m lvi s 18 mdccc 01 i  1 i Oct 275 2407990 10 x 10 10/01/1880 die i mensis x annoque mdccclxxx 80 lxxx 1880}
test clock-2.116 {conversion of 1880-10-31} {
    clock format -2813829904 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Oct October 10/31/1880 12:34:56 die xxxi mensis x annoque mdccclxxx xii h xxxiv m lvi s 18 mdccc 31 xxxi 31 xxxi Oct 305 2408020 10 x 10 10/31/1880 die xxxi mensis x annoque mdccclxxx 80 lxxx 1880}
test clock-2.117 {conversion of 1880-11-01} {
    clock format -2813743504 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Nov November 11/01/1880 12:34:56 die i mensis xi annoque mdccclxxx xii h xxxiv m lvi s 18 mdccc 01 i  1 i Nov 306 2408021 11 xi 11 11/01/1880 die i mensis xi annoque mdccclxxx 80 lxxx 1880}
test clock-2.118 {conversion of 1880-11-30} {
    clock format -2811237904 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Nov November 11/30/1880 12:34:56 die xxx mensis xi annoque mdccclxxx xii h xxxiv m lvi s 18 mdccc 30 xxx 30 xxx Nov 335 2408050 11 xi 11 11/30/1880 die xxx mensis xi annoque mdccclxxx 80 lxxx 1880}
test clock-2.119 {conversion of 1880-12-01} {
    clock format -2811151504 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Dec December 12/01/1880 12:34:56 die i mensis xii annoque mdccclxxx xii h xxxiv m lvi s 18 mdccc 01 i  1 i Dec 336 2408051 12 xii 12 12/01/1880 die i mensis xii annoque mdccclxxx 80 lxxx 1880}
test clock-2.120 {conversion of 1880-12-31} {
    clock format -2808559504 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Dec December 12/31/1880 12:34:56 die xxxi mensis xii annoque mdccclxxx xii h xxxiv m lvi s 18 mdccc 31 xxxi 31 xxxi Dec 366 2408081 12 xii 12 12/31/1880 die xxxi mensis xii annoque mdccclxxx 80 lxxx 1880}
test clock-2.121 {conversion of 1881-01-01} {
    clock format -2808473104 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Jan January 01/01/1881 12:34:56 die i mensis i annoque mdccclxxxi xii h xxxiv m lvi s 18 mdccc 01 i  1 i Jan 001 2408082 01 i  1 01/01/1881 die i mensis i annoque mdccclxxxi 81 lxxxi 1881}
test clock-2.122 {conversion of 1881-01-31} {
    clock format -2805881104 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Jan January 01/31/1881 12:34:56 die xxxi mensis i annoque mdccclxxxi xii h xxxiv m lvi s 18 mdccc 31 xxxi 31 xxxi Jan 031 2408112 01 i  1 01/31/1881 die xxxi mensis i annoque mdccclxxxi 81 lxxxi 1881}
test clock-2.123 {conversion of 1881-02-01} {
    clock format -2805794704 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Feb February 02/01/1881 12:34:56 die i mensis ii annoque mdccclxxxi xii h xxxiv m lvi s 18 mdccc 01 i  1 i Feb 032 2408113 02 ii  2 02/01/1881 die i mensis ii annoque mdccclxxxi 81 lxxxi 1881}
test clock-2.124 {conversion of 1881-02-28} {
    clock format -2803461904 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Feb February 02/28/1881 12:34:56 die xxviii mensis ii annoque mdccclxxxi xii h xxxiv m lvi s 18 mdccc 28 xxviii 28 xxviii Feb 059 2408140 02 ii  2 02/28/1881 die xxviii mensis ii annoque mdccclxxxi 81 lxxxi 1881}
test clock-2.125 {conversion of 1881-03-01} {
    clock format -2803375504 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Mar March 03/01/1881 12:34:56 die i mensis iii annoque mdccclxxxi xii h xxxiv m lvi s 18 mdccc 01 i  1 i Mar 060 2408141 03 iii  3 03/01/1881 die i mensis iii annoque mdccclxxxi 81 lxxxi 1881}
test clock-2.126 {conversion of 1881-03-31} {
    clock format -2800783504 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Mar March 03/31/1881 12:34:56 die xxxi mensis iii annoque mdccclxxxi xii h xxxiv m lvi s 18 mdccc 31 xxxi 31 xxxi Mar 090 2408171 03 iii  3 03/31/1881 die xxxi mensis iii annoque mdccclxxxi 81 lxxxi 1881}
test clock-2.127 {conversion of 1881-04-01} {
    clock format -2800697104 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Apr April 04/01/1881 12:34:56 die i mensis iv annoque mdccclxxxi xii h xxxiv m lvi s 18 mdccc 01 i  1 i Apr 091 2408172 04 iv  4 04/01/1881 die i mensis iv annoque mdccclxxxi 81 lxxxi 1881}
test clock-2.128 {conversion of 1881-04-30} {
    clock format -2798191504 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Apr April 04/30/1881 12:34:56 die xxx mensis iv annoque mdccclxxxi xii h xxxiv m lvi s 18 mdccc 30 xxx 30 xxx Apr 120 2408201 04 iv  4 04/30/1881 die xxx mensis iv annoque mdccclxxxi 81 lxxxi 1881}
test clock-2.129 {conversion of 1881-05-01} {
    clock format -2798105104 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {May May 05/01/1881 12:34:56 die i mensis v annoque mdccclxxxi xii h xxxiv m lvi s 18 mdccc 01 i  1 i May 121 2408202 05 v  5 05/01/1881 die i mensis v annoque mdccclxxxi 81 lxxxi 1881}
test clock-2.130 {conversion of 1881-05-31} {
    clock format -2795513104 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {May May 05/31/1881 12:34:56 die xxxi mensis v annoque mdccclxxxi xii h xxxiv m lvi s 18 mdccc 31 xxxi 31 xxxi May 151 2408232 05 v  5 05/31/1881 die xxxi mensis v annoque mdccclxxxi 81 lxxxi 1881}
test clock-2.131 {conversion of 1881-06-01} {
    clock format -2795426704 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Jun June 06/01/1881 12:34:56 die i mensis vi annoque mdccclxxxi xii h xxxiv m lvi s 18 mdccc 01 i  1 i Jun 152 2408233 06 vi  6 06/01/1881 die i mensis vi annoque mdccclxxxi 81 lxxxi 1881}
test clock-2.132 {conversion of 1881-06-30} {
    clock format -2792921104 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Jun June 06/30/1881 12:34:56 die xxx mensis vi annoque mdccclxxxi xii h xxxiv m lvi s 18 mdccc 30 xxx 30 xxx Jun 181 2408262 06 vi  6 06/30/1881 die xxx mensis vi annoque mdccclxxxi 81 lxxxi 1881}
test clock-2.133 {conversion of 1881-07-01} {
    clock format -2792834704 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Jul July 07/01/1881 12:34:56 die i mensis vii annoque mdccclxxxi xii h xxxiv m lvi s 18 mdccc 01 i  1 i Jul 182 2408263 07 vii  7 07/01/1881 die i mensis vii annoque mdccclxxxi 81 lxxxi 1881}
test clock-2.134 {conversion of 1881-07-31} {
    clock format -2790242704 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Jul July 07/31/1881 12:34:56 die xxxi mensis vii annoque mdccclxxxi xii h xxxiv m lvi s 18 mdccc 31 xxxi 31 xxxi Jul 212 2408293 07 vii  7 07/31/1881 die xxxi mensis vii annoque mdccclxxxi 81 lxxxi 1881}
test clock-2.135 {conversion of 1881-08-01} {
    clock format -2790156304 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Aug August 08/01/1881 12:34:56 die i mensis viii annoque mdccclxxxi xii h xxxiv m lvi s 18 mdccc 01 i  1 i Aug 213 2408294 08 viii  8 08/01/1881 die i mensis viii annoque mdccclxxxi 81 lxxxi 1881}
test clock-2.136 {conversion of 1881-08-31} {
    clock format -2787564304 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Aug August 08/31/1881 12:34:56 die xxxi mensis viii annoque mdccclxxxi xii h xxxiv m lvi s 18 mdccc 31 xxxi 31 xxxi Aug 243 2408324 08 viii  8 08/31/1881 die xxxi mensis viii annoque mdccclxxxi 81 lxxxi 1881}
test clock-2.137 {conversion of 1881-09-01} {
    clock format -2787477904 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Sep September 09/01/1881 12:34:56 die i mensis ix annoque mdccclxxxi xii h xxxiv m lvi s 18 mdccc 01 i  1 i Sep 244 2408325 09 ix  9 09/01/1881 die i mensis ix annoque mdccclxxxi 81 lxxxi 1881}
test clock-2.138 {conversion of 1881-09-30} {
    clock format -2784972304 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Sep September 09/30/1881 12:34:56 die xxx mensis ix annoque mdccclxxxi xii h xxxiv m lvi s 18 mdccc 30 xxx 30 xxx Sep 273 2408354 09 ix  9 09/30/1881 die xxx mensis ix annoque mdccclxxxi 81 lxxxi 1881}
test clock-2.139 {conversion of 1881-10-01} {
    clock format -2784885904 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Oct October 10/01/1881 12:34:56 die i mensis x annoque mdccclxxxi xii h xxxiv m lvi s 18 mdccc 01 i  1 i Oct 274 2408355 10 x 10 10/01/1881 die i mensis x annoque mdccclxxxi 81 lxxxi 1881}
test clock-2.140 {conversion of 1881-10-31} {
    clock format -2782293904 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Oct October 10/31/1881 12:34:56 die xxxi mensis x annoque mdccclxxxi xii h xxxiv m lvi s 18 mdccc 31 xxxi 31 xxxi Oct 304 2408385 10 x 10 10/31/1881 die xxxi mensis x annoque mdccclxxxi 81 lxxxi 1881}
test clock-2.141 {conversion of 1881-11-01} {
    clock format -2782207504 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Nov November 11/01/1881 12:34:56 die i mensis xi annoque mdccclxxxi xii h xxxiv m lvi s 18 mdccc 01 i  1 i Nov 305 2408386 11 xi 11 11/01/1881 die i mensis xi annoque mdccclxxxi 81 lxxxi 1881}
test clock-2.142 {conversion of 1881-11-30} {
    clock format -2779701904 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Nov November 11/30/1881 12:34:56 die xxx mensis xi annoque mdccclxxxi xii h xxxiv m lvi s 18 mdccc 30 xxx 30 xxx Nov 334 2408415 11 xi 11 11/30/1881 die xxx mensis xi annoque mdccclxxxi 81 lxxxi 1881}
test clock-2.143 {conversion of 1881-12-01} {
    clock format -2779615504 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Dec December 12/01/1881 12:34:56 die i mensis xii annoque mdccclxxxi xii h xxxiv m lvi s 18 mdccc 01 i  1 i Dec 335 2408416 12 xii 12 12/01/1881 die i mensis xii annoque mdccclxxxi 81 lxxxi 1881}
test clock-2.144 {conversion of 1881-12-31} {
    clock format -2777023504 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Dec December 12/31/1881 12:34:56 die xxxi mensis xii annoque mdccclxxxi xii h xxxiv m lvi s 18 mdccc 31 xxxi 31 xxxi Dec 365 2408446 12 xii 12 12/31/1881 die xxxi mensis xii annoque mdccclxxxi 81 lxxxi 1881}
test clock-2.145 {conversion of 1884-01-01} {
    clock format -2713865104 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Jan January 01/01/1884 12:34:56 die i mensis i annoque mdccclxxxiv xii h xxxiv m lvi s 18 mdccc 01 i  1 i Jan 001 2409177 01 i  1 01/01/1884 die i mensis i annoque mdccclxxxiv 84 lxxxiv 1884}
test clock-2.146 {conversion of 1884-01-31} {
    clock format -2711273104 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Jan January 01/31/1884 12:34:56 die xxxi mensis i annoque mdccclxxxiv xii h xxxiv m lvi s 18 mdccc 31 xxxi 31 xxxi Jan 031 2409207 01 i  1 01/31/1884 die xxxi mensis i annoque mdccclxxxiv 84 lxxxiv 1884}
test clock-2.147 {conversion of 1884-02-01} {
    clock format -2711186704 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Feb February 02/01/1884 12:34:56 die i mensis ii annoque mdccclxxxiv xii h xxxiv m lvi s 18 mdccc 01 i  1 i Feb 032 2409208 02 ii  2 02/01/1884 die i mensis ii annoque mdccclxxxiv 84 lxxxiv 1884}
test clock-2.148 {conversion of 1884-02-29} {
    clock format -2708767504 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Feb February 02/29/1884 12:34:56 die xxix mensis ii annoque mdccclxxxiv xii h xxxiv m lvi s 18 mdccc 29 xxix 29 xxix Feb 060 2409236 02 ii  2 02/29/1884 die xxix mensis ii annoque mdccclxxxiv 84 lxxxiv 1884}
test clock-2.149 {conversion of 1884-03-01} {
    clock format -2708681104 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Mar March 03/01/1884 12:34:56 die i mensis iii annoque mdccclxxxiv xii h xxxiv m lvi s 18 mdccc 01 i  1 i Mar 061 2409237 03 iii  3 03/01/1884 die i mensis iii annoque mdccclxxxiv 84 lxxxiv 1884}
test clock-2.150 {conversion of 1884-03-31} {
    clock format -2706089104 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Mar March 03/31/1884 12:34:56 die xxxi mensis iii annoque mdccclxxxiv xii h xxxiv m lvi s 18 mdccc 31 xxxi 31 xxxi Mar 091 2409267 03 iii  3 03/31/1884 die xxxi mensis iii annoque mdccclxxxiv 84 lxxxiv 1884}
test clock-2.151 {conversion of 1884-04-01} {
    clock format -2706002704 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Apr April 04/01/1884 12:34:56 die i mensis iv annoque mdccclxxxiv xii h xxxiv m lvi s 18 mdccc 01 i  1 i Apr 092 2409268 04 iv  4 04/01/1884 die i mensis iv annoque mdccclxxxiv 84 lxxxiv 1884}
test clock-2.152 {conversion of 1884-04-30} {
    clock format -2703497104 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Apr April 04/30/1884 12:34:56 die xxx mensis iv annoque mdccclxxxiv xii h xxxiv m lvi s 18 mdccc 30 xxx 30 xxx Apr 121 2409297 04 iv  4 04/30/1884 die xxx mensis iv annoque mdccclxxxiv 84 lxxxiv 1884}
test clock-2.153 {conversion of 1884-05-01} {
    clock format -2703410704 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {May May 05/01/1884 12:34:56 die i mensis v annoque mdccclxxxiv xii h xxxiv m lvi s 18 mdccc 01 i  1 i May 122 2409298 05 v  5 05/01/1884 die i mensis v annoque mdccclxxxiv 84 lxxxiv 1884}
test clock-2.154 {conversion of 1884-05-31} {
    clock format -2700818704 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {May May 05/31/1884 12:34:56 die xxxi mensis v annoque mdccclxxxiv xii h xxxiv m lvi s 18 mdccc 31 xxxi 31 xxxi May 152 2409328 05 v  5 05/31/1884 die xxxi mensis v annoque mdccclxxxiv 84 lxxxiv 1884}
test clock-2.155 {conversion of 1884-06-01} {
    clock format -2700732304 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Jun June 06/01/1884 12:34:56 die i mensis vi annoque mdccclxxxiv xii h xxxiv m lvi s 18 mdccc 01 i  1 i Jun 153 2409329 06 vi  6 06/01/1884 die i mensis vi annoque mdccclxxxiv 84 lxxxiv 1884}
test clock-2.156 {conversion of 1884-06-30} {
    clock format -2698226704 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Jun June 06/30/1884 12:34:56 die xxx mensis vi annoque mdccclxxxiv xii h xxxiv m lvi s 18 mdccc 30 xxx 30 xxx Jun 182 2409358 06 vi  6 06/30/1884 die xxx mensis vi annoque mdccclxxxiv 84 lxxxiv 1884}
test clock-2.157 {conversion of 1884-07-01} {
    clock format -2698140304 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Jul July 07/01/1884 12:34:56 die i mensis vii annoque mdccclxxxiv xii h xxxiv m lvi s 18 mdccc 01 i  1 i Jul 183 2409359 07 vii  7 07/01/1884 die i mensis vii annoque mdccclxxxiv 84 lxxxiv 1884}
test clock-2.158 {conversion of 1884-07-31} {
    clock format -2695548304 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Jul July 07/31/1884 12:34:56 die xxxi mensis vii annoque mdccclxxxiv xii h xxxiv m lvi s 18 mdccc 31 xxxi 31 xxxi Jul 213 2409389 07 vii  7 07/31/1884 die xxxi mensis vii annoque mdccclxxxiv 84 lxxxiv 1884}
test clock-2.159 {conversion of 1884-08-01} {
    clock format -2695461904 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Aug August 08/01/1884 12:34:56 die i mensis viii annoque mdccclxxxiv xii h xxxiv m lvi s 18 mdccc 01 i  1 i Aug 214 2409390 08 viii  8 08/01/1884 die i mensis viii annoque mdccclxxxiv 84 lxxxiv 1884}
test clock-2.160 {conversion of 1884-08-31} {
    clock format -2692869904 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Aug August 08/31/1884 12:34:56 die xxxi mensis viii annoque mdccclxxxiv xii h xxxiv m lvi s 18 mdccc 31 xxxi 31 xxxi Aug 244 2409420 08 viii  8 08/31/1884 die xxxi mensis viii annoque mdccclxxxiv 84 lxxxiv 1884}
test clock-2.161 {conversion of 1884-09-01} {
    clock format -2692783504 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Sep September 09/01/1884 12:34:56 die i mensis ix annoque mdccclxxxiv xii h xxxiv m lvi s 18 mdccc 01 i  1 i Sep 245 2409421 09 ix  9 09/01/1884 die i mensis ix annoque mdccclxxxiv 84 lxxxiv 1884}
test clock-2.162 {conversion of 1884-09-30} {
    clock format -2690277904 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Sep September 09/30/1884 12:34:56 die xxx mensis ix annoque mdccclxxxiv xii h xxxiv m lvi s 18 mdccc 30 xxx 30 xxx Sep 274 2409450 09 ix  9 09/30/1884 die xxx mensis ix annoque mdccclxxxiv 84 lxxxiv 1884}
test clock-2.163 {conversion of 1884-10-01} {
    clock format -2690191504 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Oct October 10/01/1884 12:34:56 die i mensis x annoque mdccclxxxiv xii h xxxiv m lvi s 18 mdccc 01 i  1 i Oct 275 2409451 10 x 10 10/01/1884 die i mensis x annoque mdccclxxxiv 84 lxxxiv 1884}
test clock-2.164 {conversion of 1884-10-31} {
    clock format -2687599504 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Oct October 10/31/1884 12:34:56 die xxxi mensis x annoque mdccclxxxiv xii h xxxiv m lvi s 18 mdccc 31 xxxi 31 xxxi Oct 305 2409481 10 x 10 10/31/1884 die xxxi mensis x annoque mdccclxxxiv 84 lxxxiv 1884}
test clock-2.165 {conversion of 1884-11-01} {
    clock format -2687513104 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Nov November 11/01/1884 12:34:56 die i mensis xi annoque mdccclxxxiv xii h xxxiv m lvi s 18 mdccc 01 i  1 i Nov 306 2409482 11 xi 11 11/01/1884 die i mensis xi annoque mdccclxxxiv 84 lxxxiv 1884}
test clock-2.166 {conversion of 1884-11-30} {
    clock format -2685007504 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Nov November 11/30/1884 12:34:56 die xxx mensis xi annoque mdccclxxxiv xii h xxxiv m lvi s 18 mdccc 30 xxx 30 xxx Nov 335 2409511 11 xi 11 11/30/1884 die xxx mensis xi annoque mdccclxxxiv 84 lxxxiv 1884}
test clock-2.167 {conversion of 1884-12-01} {
    clock format -2684921104 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Dec December 12/01/1884 12:34:56 die i mensis xii annoque mdccclxxxiv xii h xxxiv m lvi s 18 mdccc 01 i  1 i Dec 336 2409512 12 xii 12 12/01/1884 die i mensis xii annoque mdccclxxxiv 84 lxxxiv 1884}
test clock-2.168 {conversion of 1884-12-31} {
    clock format -2682329104 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Dec December 12/31/1884 12:34:56 die xxxi mensis xii annoque mdccclxxxiv xii h xxxiv m lvi s 18 mdccc 31 xxxi 31 xxxi Dec 366 2409542 12 xii 12 12/31/1884 die xxxi mensis xii annoque mdccclxxxiv 84 lxxxiv 1884}
test clock-2.169 {conversion of 1885-01-01} {
    clock format -2682242704 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Jan January 01/01/1885 12:34:56 die i mensis i annoque mdccclxxxv xii h xxxiv m lvi s 18 mdccc 01 i  1 i Jan 001 2409543 01 i  1 01/01/1885 die i mensis i annoque mdccclxxxv 85 lxxxv 1885}
test clock-2.170 {conversion of 1885-01-31} {
    clock format -2679650704 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Jan January 01/31/1885 12:34:56 die xxxi mensis i annoque mdccclxxxv xii h xxxiv m lvi s 18 mdccc 31 xxxi 31 xxxi Jan 031 2409573 01 i  1 01/31/1885 die xxxi mensis i annoque mdccclxxxv 85 lxxxv 1885}
test clock-2.171 {conversion of 1885-02-01} {
    clock format -2679564304 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Feb February 02/01/1885 12:34:56 die i mensis ii annoque mdccclxxxv xii h xxxiv m lvi s 18 mdccc 01 i  1 i Feb 032 2409574 02 ii  2 02/01/1885 die i mensis ii annoque mdccclxxxv 85 lxxxv 1885}
test clock-2.172 {conversion of 1885-02-28} {
    clock format -2677231504 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Feb February 02/28/1885 12:34:56 die xxviii mensis ii annoque mdccclxxxv xii h xxxiv m lvi s 18 mdccc 28 xxviii 28 xxviii Feb 059 2409601 02 ii  2 02/28/1885 die xxviii mensis ii annoque mdccclxxxv 85 lxxxv 1885}
test clock-2.173 {conversion of 1885-03-01} {
    clock format -2677145104 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Mar March 03/01/1885 12:34:56 die i mensis iii annoque mdccclxxxv xii h xxxiv m lvi s 18 mdccc 01 i  1 i Mar 060 2409602 03 iii  3 03/01/1885 die i mensis iii annoque mdccclxxxv 85 lxxxv 1885}
test clock-2.174 {conversion of 1885-03-31} {
    clock format -2674553104 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Mar March 03/31/1885 12:34:56 die xxxi mensis iii annoque mdccclxxxv xii h xxxiv m lvi s 18 mdccc 31 xxxi 31 xxxi Mar 090 2409632 03 iii  3 03/31/1885 die xxxi mensis iii annoque mdccclxxxv 85 lxxxv 1885}
test clock-2.175 {conversion of 1885-04-01} {
    clock format -2674466704 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Apr April 04/01/1885 12:34:56 die i mensis iv annoque mdccclxxxv xii h xxxiv m lvi s 18 mdccc 01 i  1 i Apr 091 2409633 04 iv  4 04/01/1885 die i mensis iv annoque mdccclxxxv 85 lxxxv 1885}
test clock-2.176 {conversion of 1885-04-30} {
    clock format -2671961104 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Apr April 04/30/1885 12:34:56 die xxx mensis iv annoque mdccclxxxv xii h xxxiv m lvi s 18 mdccc 30 xxx 30 xxx Apr 120 2409662 04 iv  4 04/30/1885 die xxx mensis iv annoque mdccclxxxv 85 lxxxv 1885}
test clock-2.177 {conversion of 1885-05-01} {
    clock format -2671874704 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {May May 05/01/1885 12:34:56 die i mensis v annoque mdccclxxxv xii h xxxiv m lvi s 18 mdccc 01 i  1 i May 121 2409663 05 v  5 05/01/1885 die i mensis v annoque mdccclxxxv 85 lxxxv 1885}
test clock-2.178 {conversion of 1885-05-31} {
    clock format -2669282704 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {May May 05/31/1885 12:34:56 die xxxi mensis v annoque mdccclxxxv xii h xxxiv m lvi s 18 mdccc 31 xxxi 31 xxxi May 151 2409693 05 v  5 05/31/1885 die xxxi mensis v annoque mdccclxxxv 85 lxxxv 1885}
test clock-2.179 {conversion of 1885-06-01} {
    clock format -2669196304 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Jun June 06/01/1885 12:34:56 die i mensis vi annoque mdccclxxxv xii h xxxiv m lvi s 18 mdccc 01 i  1 i Jun 152 2409694 06 vi  6 06/01/1885 die i mensis vi annoque mdccclxxxv 85 lxxxv 1885}
test clock-2.180 {conversion of 1885-06-30} {
    clock format -2666690704 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Jun June 06/30/1885 12:34:56 die xxx mensis vi annoque mdccclxxxv xii h xxxiv m lvi s 18 mdccc 30 xxx 30 xxx Jun 181 2409723 06 vi  6 06/30/1885 die xxx mensis vi annoque mdccclxxxv 85 lxxxv 1885}
test clock-2.181 {conversion of 1885-07-01} {
    clock format -2666604304 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Jul July 07/01/1885 12:34:56 die i mensis vii annoque mdccclxxxv xii h xxxiv m lvi s 18 mdccc 01 i  1 i Jul 182 2409724 07 vii  7 07/01/1885 die i mensis vii annoque mdccclxxxv 85 lxxxv 1885}
test clock-2.182 {conversion of 1885-07-31} {
    clock format -2664012304 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Jul July 07/31/1885 12:34:56 die xxxi mensis vii annoque mdccclxxxv xii h xxxiv m lvi s 18 mdccc 31 xxxi 31 xxxi Jul 212 2409754 07 vii  7 07/31/1885 die xxxi mensis vii annoque mdccclxxxv 85 lxxxv 1885}
test clock-2.183 {conversion of 1885-08-01} {
    clock format -2663925904 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Aug August 08/01/1885 12:34:56 die i mensis viii annoque mdccclxxxv xii h xxxiv m lvi s 18 mdccc 01 i  1 i Aug 213 2409755 08 viii  8 08/01/1885 die i mensis viii annoque mdccclxxxv 85 lxxxv 1885}
test clock-2.184 {conversion of 1885-08-31} {
    clock format -2661333904 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Aug August 08/31/1885 12:34:56 die xxxi mensis viii annoque mdccclxxxv xii h xxxiv m lvi s 18 mdccc 31 xxxi 31 xxxi Aug 243 2409785 08 viii  8 08/31/1885 die xxxi mensis viii annoque mdccclxxxv 85 lxxxv 1885}
test clock-2.185 {conversion of 1885-09-01} {
    clock format -2661247504 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Sep September 09/01/1885 12:34:56 die i mensis ix annoque mdccclxxxv xii h xxxiv m lvi s 18 mdccc 01 i  1 i Sep 244 2409786 09 ix  9 09/01/1885 die i mensis ix annoque mdccclxxxv 85 lxxxv 1885}
test clock-2.186 {conversion of 1885-09-30} {
    clock format -2658741904 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Sep September 09/30/1885 12:34:56 die xxx mensis ix annoque mdccclxxxv xii h xxxiv m lvi s 18 mdccc 30 xxx 30 xxx Sep 273 2409815 09 ix  9 09/30/1885 die xxx mensis ix annoque mdccclxxxv 85 lxxxv 1885}
test clock-2.187 {conversion of 1885-10-01} {
    clock format -2658655504 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Oct October 10/01/1885 12:34:56 die i mensis x annoque mdccclxxxv xii h xxxiv m lvi s 18 mdccc 01 i  1 i Oct 274 2409816 10 x 10 10/01/1885 die i mensis x annoque mdccclxxxv 85 lxxxv 1885}
test clock-2.188 {conversion of 1885-10-31} {
    clock format -2656063504 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Oct October 10/31/1885 12:34:56 die xxxi mensis x annoque mdccclxxxv xii h xxxiv m lvi s 18 mdccc 31 xxxi 31 xxxi Oct 304 2409846 10 x 10 10/31/1885 die xxxi mensis x annoque mdccclxxxv 85 lxxxv 1885}
test clock-2.189 {conversion of 1885-11-01} {
    clock format -2655977104 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Nov November 11/01/1885 12:34:56 die i mensis xi annoque mdccclxxxv xii h xxxiv m lvi s 18 mdccc 01 i  1 i Nov 305 2409847 11 xi 11 11/01/1885 die i mensis xi annoque mdccclxxxv 85 lxxxv 1885}
test clock-2.190 {conversion of 1885-11-30} {
    clock format -2653471504 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Nov November 11/30/1885 12:34:56 die xxx mensis xi annoque mdccclxxxv xii h xxxiv m lvi s 18 mdccc 30 xxx 30 xxx Nov 334 2409876 11 xi 11 11/30/1885 die xxx mensis xi annoque mdccclxxxv 85 lxxxv 1885}
test clock-2.191 {conversion of 1885-12-01} {
    clock format -2653385104 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Dec December 12/01/1885 12:34:56 die i mensis xii annoque mdccclxxxv xii h xxxiv m lvi s 18 mdccc 01 i  1 i Dec 335 2409877 12 xii 12 12/01/1885 die i mensis xii annoque mdccclxxxv 85 lxxxv 1885}
test clock-2.192 {conversion of 1885-12-31} {
    clock format -2650793104 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Dec December 12/31/1885 12:34:56 die xxxi mensis xii annoque mdccclxxxv xii h xxxiv m lvi s 18 mdccc 31 xxxi 31 xxxi Dec 365 2409907 12 xii 12 12/31/1885 die xxxi mensis xii annoque mdccclxxxv 85 lxxxv 1885}
test clock-2.193 {conversion of 1888-01-01} {
    clock format -2587634704 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Jan January 01/01/1888 12:34:56 die i mensis i annoque mdccclxxxviii xii h xxxiv m lvi s 18 mdccc 01 i  1 i Jan 001 2410638 01 i  1 01/01/1888 die i mensis i annoque mdccclxxxviii 88 lxxxviii 1888}
test clock-2.194 {conversion of 1888-01-31} {
    clock format -2585042704 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Jan January 01/31/1888 12:34:56 die xxxi mensis i annoque mdccclxxxviii xii h xxxiv m lvi s 18 mdccc 31 xxxi 31 xxxi Jan 031 2410668 01 i  1 01/31/1888 die xxxi mensis i annoque mdccclxxxviii 88 lxxxviii 1888}
test clock-2.195 {conversion of 1888-02-01} {
    clock format -2584956304 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Feb February 02/01/1888 12:34:56 die i mensis ii annoque mdccclxxxviii xii h xxxiv m lvi s 18 mdccc 01 i  1 i Feb 032 2410669 02 ii  2 02/01/1888 die i mensis ii annoque mdccclxxxviii 88 lxxxviii 1888}
test clock-2.196 {conversion of 1888-02-29} {
    clock format -2582537104 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Feb February 02/29/1888 12:34:56 die xxix mensis ii annoque mdccclxxxviii xii h xxxiv m lvi s 18 mdccc 29 xxix 29 xxix Feb 060 2410697 02 ii  2 02/29/1888 die xxix mensis ii annoque mdccclxxxviii 88 lxxxviii 1888}
test clock-2.197 {conversion of 1888-03-01} {
    clock format -2582450704 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Mar March 03/01/1888 12:34:56 die i mensis iii annoque mdccclxxxviii xii h xxxiv m lvi s 18 mdccc 01 i  1 i Mar 061 2410698 03 iii  3 03/01/1888 die i mensis iii annoque mdccclxxxviii 88 lxxxviii 1888}
test clock-2.198 {conversion of 1888-03-31} {
    clock format -2579858704 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Mar March 03/31/1888 12:34:56 die xxxi mensis iii annoque mdccclxxxviii xii h xxxiv m lvi s 18 mdccc 31 xxxi 31 xxxi Mar 091 2410728 03 iii  3 03/31/1888 die xxxi mensis iii annoque mdccclxxxviii 88 lxxxviii 1888}
test clock-2.199 {conversion of 1888-04-01} {
    clock format -2579772304 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Apr April 04/01/1888 12:34:56 die i mensis iv annoque mdccclxxxviii xii h xxxiv m lvi s 18 mdccc 01 i  1 i Apr 092 2410729 04 iv  4 04/01/1888 die i mensis iv annoque mdccclxxxviii 88 lxxxviii 1888}
test clock-2.200 {conversion of 1888-04-30} {
    clock format -2577266704 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Apr April 04/30/1888 12:34:56 die xxx mensis iv annoque mdccclxxxviii xii h xxxiv m lvi s 18 mdccc 30 xxx 30 xxx Apr 121 2410758 04 iv  4 04/30/1888 die xxx mensis iv annoque mdccclxxxviii 88 lxxxviii 1888}
test clock-2.201 {conversion of 1888-05-01} {
    clock format -2577180304 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {May May 05/01/1888 12:34:56 die i mensis v annoque mdccclxxxviii xii h xxxiv m lvi s 18 mdccc 01 i  1 i May 122 2410759 05 v  5 05/01/1888 die i mensis v annoque mdccclxxxviii 88 lxxxviii 1888}
test clock-2.202 {conversion of 1888-05-31} {
    clock format -2574588304 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {May May 05/31/1888 12:34:56 die xxxi mensis v annoque mdccclxxxviii xii h xxxiv m lvi s 18 mdccc 31 xxxi 31 xxxi May 152 2410789 05 v  5 05/31/1888 die xxxi mensis v annoque mdccclxxxviii 88 lxxxviii 1888}
test clock-2.203 {conversion of 1888-06-01} {
    clock format -2574501904 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Jun June 06/01/1888 12:34:56 die i mensis vi annoque mdccclxxxviii xii h xxxiv m lvi s 18 mdccc 01 i  1 i Jun 153 2410790 06 vi  6 06/01/1888 die i mensis vi annoque mdccclxxxviii 88 lxxxviii 1888}
test clock-2.204 {conversion of 1888-06-30} {
    clock format -2571996304 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Jun June 06/30/1888 12:34:56 die xxx mensis vi annoque mdccclxxxviii xii h xxxiv m lvi s 18 mdccc 30 xxx 30 xxx Jun 182 2410819 06 vi  6 06/30/1888 die xxx mensis vi annoque mdccclxxxviii 88 lxxxviii 1888}
test clock-2.205 {conversion of 1888-07-01} {
    clock format -2571909904 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Jul July 07/01/1888 12:34:56 die i mensis vii annoque mdccclxxxviii xii h xxxiv m lvi s 18 mdccc 01 i  1 i Jul 183 2410820 07 vii  7 07/01/1888 die i mensis vii annoque mdccclxxxviii 88 lxxxviii 1888}
test clock-2.206 {conversion of 1888-07-31} {
    clock format -2569317904 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Jul July 07/31/1888 12:34:56 die xxxi mensis vii annoque mdccclxxxviii xii h xxxiv m lvi s 18 mdccc 31 xxxi 31 xxxi Jul 213 2410850 07 vii  7 07/31/1888 die xxxi mensis vii annoque mdccclxxxviii 88 lxxxviii 1888}
test clock-2.207 {conversion of 1888-08-01} {
    clock format -2569231504 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Aug August 08/01/1888 12:34:56 die i mensis viii annoque mdccclxxxviii xii h xxxiv m lvi s 18 mdccc 01 i  1 i Aug 214 2410851 08 viii  8 08/01/1888 die i mensis viii annoque mdccclxxxviii 88 lxxxviii 1888}
test clock-2.208 {conversion of 1888-08-31} {
    clock format -2566639504 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Aug August 08/31/1888 12:34:56 die xxxi mensis viii annoque mdccclxxxviii xii h xxxiv m lvi s 18 mdccc 31 xxxi 31 xxxi Aug 244 2410881 08 viii  8 08/31/1888 die xxxi mensis viii annoque mdccclxxxviii 88 lxxxviii 1888}
test clock-2.209 {conversion of 1888-09-01} {
    clock format -2566553104 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Sep September 09/01/1888 12:34:56 die i mensis ix annoque mdccclxxxviii xii h xxxiv m lvi s 18 mdccc 01 i  1 i Sep 245 2410882 09 ix  9 09/01/1888 die i mensis ix annoque mdccclxxxviii 88 lxxxviii 1888}
test clock-2.210 {conversion of 1888-09-30} {
    clock format -2564047504 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Sep September 09/30/1888 12:34:56 die xxx mensis ix annoque mdccclxxxviii xii h xxxiv m lvi s 18 mdccc 30 xxx 30 xxx Sep 274 2410911 09 ix  9 09/30/1888 die xxx mensis ix annoque mdccclxxxviii 88 lxxxviii 1888}
test clock-2.211 {conversion of 1888-10-01} {
    clock format -2563961104 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Oct October 10/01/1888 12:34:56 die i mensis x annoque mdccclxxxviii xii h xxxiv m lvi s 18 mdccc 01 i  1 i Oct 275 2410912 10 x 10 10/01/1888 die i mensis x annoque mdccclxxxviii 88 lxxxviii 1888}
test clock-2.212 {conversion of 1888-10-31} {
    clock format -2561369104 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Oct October 10/31/1888 12:34:56 die xxxi mensis x annoque mdccclxxxviii xii h xxxiv m lvi s 18 mdccc 31 xxxi 31 xxxi Oct 305 2410942 10 x 10 10/31/1888 die xxxi mensis x annoque mdccclxxxviii 88 lxxxviii 1888}
test clock-2.213 {conversion of 1888-11-01} {
    clock format -2561282704 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Nov November 11/01/1888 12:34:56 die i mensis xi annoque mdccclxxxviii xii h xxxiv m lvi s 18 mdccc 01 i  1 i Nov 306 2410943 11 xi 11 11/01/1888 die i mensis xi annoque mdccclxxxviii 88 lxxxviii 1888}
test clock-2.214 {conversion of 1888-11-30} {
    clock format -2558777104 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Nov November 11/30/1888 12:34:56 die xxx mensis xi annoque mdccclxxxviii xii h xxxiv m lvi s 18 mdccc 30 xxx 30 xxx Nov 335 2410972 11 xi 11 11/30/1888 die xxx mensis xi annoque mdccclxxxviii 88 lxxxviii 1888}
test clock-2.215 {conversion of 1888-12-01} {
    clock format -2558690704 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Dec December 12/01/1888 12:34:56 die i mensis xii annoque mdccclxxxviii xii h xxxiv m lvi s 18 mdccc 01 i  1 i Dec 336 2410973 12 xii 12 12/01/1888 die i mensis xii annoque mdccclxxxviii 88 lxxxviii 1888}
test clock-2.216 {conversion of 1888-12-31} {
    clock format -2556098704 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Dec December 12/31/1888 12:34:56 die xxxi mensis xii annoque mdccclxxxviii xii h xxxiv m lvi s 18 mdccc 31 xxxi 31 xxxi Dec 366 2411003 12 xii 12 12/31/1888 die xxxi mensis xii annoque mdccclxxxviii 88 lxxxviii 1888}
test clock-2.217 {conversion of 1889-01-01} {
    clock format -2556012304 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Jan January 01/01/1889 12:34:56 die i mensis i annoque mdccclxxxix xii h xxxiv m lvi s 18 mdccc 01 i  1 i Jan 001 2411004 01 i  1 01/01/1889 die i mensis i annoque mdccclxxxix 89 lxxxix 1889}
test clock-2.218 {conversion of 1889-01-31} {
    clock format -2553420304 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Jan January 01/31/1889 12:34:56 die xxxi mensis i annoque mdccclxxxix xii h xxxiv m lvi s 18 mdccc 31 xxxi 31 xxxi Jan 031 2411034 01 i  1 01/31/1889 die xxxi mensis i annoque mdccclxxxix 89 lxxxix 1889}
test clock-2.219 {conversion of 1889-02-01} {
    clock format -2553333904 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Feb February 02/01/1889 12:34:56 die i mensis ii annoque mdccclxxxix xii h xxxiv m lvi s 18 mdccc 01 i  1 i Feb 032 2411035 02 ii  2 02/01/1889 die i mensis ii annoque mdccclxxxix 89 lxxxix 1889}
test clock-2.220 {conversion of 1889-02-28} {
    clock format -2551001104 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Feb February 02/28/1889 12:34:56 die xxviii mensis ii annoque mdccclxxxix xii h xxxiv m lvi s 18 mdccc 28 xxviii 28 xxviii Feb 059 2411062 02 ii  2 02/28/1889 die xxviii mensis ii annoque mdccclxxxix 89 lxxxix 1889}
test clock-2.221 {conversion of 1889-03-01} {
    clock format -2550914704 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Mar March 03/01/1889 12:34:56 die i mensis iii annoque mdccclxxxix xii h xxxiv m lvi s 18 mdccc 01 i  1 i Mar 060 2411063 03 iii  3 03/01/1889 die i mensis iii annoque mdccclxxxix 89 lxxxix 1889}
test clock-2.222 {conversion of 1889-03-31} {
    clock format -2548322704 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Mar March 03/31/1889 12:34:56 die xxxi mensis iii annoque mdccclxxxix xii h xxxiv m lvi s 18 mdccc 31 xxxi 31 xxxi Mar 090 2411093 03 iii  3 03/31/1889 die xxxi mensis iii annoque mdccclxxxix 89 lxxxix 1889}
test clock-2.223 {conversion of 1889-04-01} {
    clock format -2548236304 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Apr April 04/01/1889 12:34:56 die i mensis iv annoque mdccclxxxix xii h xxxiv m lvi s 18 mdccc 01 i  1 i Apr 091 2411094 04 iv  4 04/01/1889 die i mensis iv annoque mdccclxxxix 89 lxxxix 1889}
test clock-2.224 {conversion of 1889-04-30} {
    clock format -2545730704 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Apr April 04/30/1889 12:34:56 die xxx mensis iv annoque mdccclxxxix xii h xxxiv m lvi s 18 mdccc 30 xxx 30 xxx Apr 120 2411123 04 iv  4 04/30/1889 die xxx mensis iv annoque mdccclxxxix 89 lxxxix 1889}
test clock-2.225 {conversion of 1889-05-01} {
    clock format -2545644304 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {May May 05/01/1889 12:34:56 die i mensis v annoque mdccclxxxix xii h xxxiv m lvi s 18 mdccc 01 i  1 i May 121 2411124 05 v  5 05/01/1889 die i mensis v annoque mdccclxxxix 89 lxxxix 1889}
test clock-2.226 {conversion of 1889-05-31} {
    clock format -2543052304 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {May May 05/31/1889 12:34:56 die xxxi mensis v annoque mdccclxxxix xii h xxxiv m lvi s 18 mdccc 31 xxxi 31 xxxi May 151 2411154 05 v  5 05/31/1889 die xxxi mensis v annoque mdccclxxxix 89 lxxxix 1889}
test clock-2.227 {conversion of 1889-06-01} {
    clock format -2542965904 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Jun June 06/01/1889 12:34:56 die i mensis vi annoque mdccclxxxix xii h xxxiv m lvi s 18 mdccc 01 i  1 i Jun 152 2411155 06 vi  6 06/01/1889 die i mensis vi annoque mdccclxxxix 89 lxxxix 1889}
test clock-2.228 {conversion of 1889-06-30} {
    clock format -2540460304 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Jun June 06/30/1889 12:34:56 die xxx mensis vi annoque mdccclxxxix xii h xxxiv m lvi s 18 mdccc 30 xxx 30 xxx Jun 181 2411184 06 vi  6 06/30/1889 die xxx mensis vi annoque mdccclxxxix 89 lxxxix 1889}
test clock-2.229 {conversion of 1889-07-01} {
    clock format -2540373904 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Jul July 07/01/1889 12:34:56 die i mensis vii annoque mdccclxxxix xii h xxxiv m lvi s 18 mdccc 01 i  1 i Jul 182 2411185 07 vii  7 07/01/1889 die i mensis vii annoque mdccclxxxix 89 lxxxix 1889}
test clock-2.230 {conversion of 1889-07-31} {
    clock format -2537781904 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Jul July 07/31/1889 12:34:56 die xxxi mensis vii annoque mdccclxxxix xii h xxxiv m lvi s 18 mdccc 31 xxxi 31 xxxi Jul 212 2411215 07 vii  7 07/31/1889 die xxxi mensis vii annoque mdccclxxxix 89 lxxxix 1889}
test clock-2.231 {conversion of 1889-08-01} {
    clock format -2537695504 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Aug August 08/01/1889 12:34:56 die i mensis viii annoque mdccclxxxix xii h xxxiv m lvi s 18 mdccc 01 i  1 i Aug 213 2411216 08 viii  8 08/01/1889 die i mensis viii annoque mdccclxxxix 89 lxxxix 1889}
test clock-2.232 {conversion of 1889-08-31} {
    clock format -2535103504 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Aug August 08/31/1889 12:34:56 die xxxi mensis viii annoque mdccclxxxix xii h xxxiv m lvi s 18 mdccc 31 xxxi 31 xxxi Aug 243 2411246 08 viii  8 08/31/1889 die xxxi mensis viii annoque mdccclxxxix 89 lxxxix 1889}
test clock-2.233 {conversion of 1889-09-01} {
    clock format -2535017104 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Sep September 09/01/1889 12:34:56 die i mensis ix annoque mdccclxxxix xii h xxxiv m lvi s 18 mdccc 01 i  1 i Sep 244 2411247 09 ix  9 09/01/1889 die i mensis ix annoque mdccclxxxix 89 lxxxix 1889}
test clock-2.234 {conversion of 1889-09-30} {
    clock format -2532511504 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Sep September 09/30/1889 12:34:56 die xxx mensis ix annoque mdccclxxxix xii h xxxiv m lvi s 18 mdccc 30 xxx 30 xxx Sep 273 2411276 09 ix  9 09/30/1889 die xxx mensis ix annoque mdccclxxxix 89 lxxxix 1889}
test clock-2.235 {conversion of 1889-10-01} {
    clock format -2532425104 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Oct October 10/01/1889 12:34:56 die i mensis x annoque mdccclxxxix xii h xxxiv m lvi s 18 mdccc 01 i  1 i Oct 274 2411277 10 x 10 10/01/1889 die i mensis x annoque mdccclxxxix 89 lxxxix 1889}
test clock-2.236 {conversion of 1889-10-31} {
    clock format -2529833104 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Oct October 10/31/1889 12:34:56 die xxxi mensis x annoque mdccclxxxix xii h xxxiv m lvi s 18 mdccc 31 xxxi 31 xxxi Oct 304 2411307 10 x 10 10/31/1889 die xxxi mensis x annoque mdccclxxxix 89 lxxxix 1889}
test clock-2.237 {conversion of 1889-11-01} {
    clock format -2529746704 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Nov November 11/01/1889 12:34:56 die i mensis xi annoque mdccclxxxix xii h xxxiv m lvi s 18 mdccc 01 i  1 i Nov 305 2411308 11 xi 11 11/01/1889 die i mensis xi annoque mdccclxxxix 89 lxxxix 1889}
test clock-2.238 {conversion of 1889-11-30} {
    clock format -2527241104 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Nov November 11/30/1889 12:34:56 die xxx mensis xi annoque mdccclxxxix xii h xxxiv m lvi s 18 mdccc 30 xxx 30 xxx Nov 334 2411337 11 xi 11 11/30/1889 die xxx mensis xi annoque mdccclxxxix 89 lxxxix 1889}
test clock-2.239 {conversion of 1889-12-01} {
    clock format -2527154704 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Dec December 12/01/1889 12:34:56 die i mensis xii annoque mdccclxxxix xii h xxxiv m lvi s 18 mdccc 01 i  1 i Dec 335 2411338 12 xii 12 12/01/1889 die i mensis xii annoque mdccclxxxix 89 lxxxix 1889}
test clock-2.240 {conversion of 1889-12-31} {
    clock format -2524562704 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Dec December 12/31/1889 12:34:56 die xxxi mensis xii annoque mdccclxxxix xii h xxxiv m lvi s 18 mdccc 31 xxxi 31 xxxi Dec 365 2411368 12 xii 12 12/31/1889 die xxxi mensis xii annoque mdccclxxxix 89 lxxxix 1889}
test clock-2.241 {conversion of 1890-01-01} {
    clock format -2524476304 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Jan January 01/01/1890 12:34:56 die i mensis i annoque mdcccxc xii h xxxiv m lvi s 18 mdccc 01 i  1 i Jan 001 2411369 01 i  1 01/01/1890 die i mensis i annoque mdcccxc 90 xc 1890}
test clock-2.242 {conversion of 1890-01-31} {
    clock format -2521884304 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Jan January 01/31/1890 12:34:56 die xxxi mensis i annoque mdcccxc xii h xxxiv m lvi s 18 mdccc 31 xxxi 31 xxxi Jan 031 2411399 01 i  1 01/31/1890 die xxxi mensis i annoque mdcccxc 90 xc 1890}
test clock-2.243 {conversion of 1890-02-01} {
    clock format -2521797904 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Feb February 02/01/1890 12:34:56 die i mensis ii annoque mdcccxc xii h xxxiv m lvi s 18 mdccc 01 i  1 i Feb 032 2411400 02 ii  2 02/01/1890 die i mensis ii annoque mdcccxc 90 xc 1890}
test clock-2.244 {conversion of 1890-02-28} {
    clock format -2519465104 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Feb February 02/28/1890 12:34:56 die xxviii mensis ii annoque mdcccxc xii h xxxiv m lvi s 18 mdccc 28 xxviii 28 xxviii Feb 059 2411427 02 ii  2 02/28/1890 die xxviii mensis ii annoque mdcccxc 90 xc 1890}
test clock-2.245 {conversion of 1890-03-01} {
    clock format -2519378704 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Mar March 03/01/1890 12:34:56 die i mensis iii annoque mdcccxc xii h xxxiv m lvi s 18 mdccc 01 i  1 i Mar 060 2411428 03 iii  3 03/01/1890 die i mensis iii annoque mdcccxc 90 xc 1890}
test clock-2.246 {conversion of 1890-03-31} {
    clock format -2516786704 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Mar March 03/31/1890 12:34:56 die xxxi mensis iii annoque mdcccxc xii h xxxiv m lvi s 18 mdccc 31 xxxi 31 xxxi Mar 090 2411458 03 iii  3 03/31/1890 die xxxi mensis iii annoque mdcccxc 90 xc 1890}
test clock-2.247 {conversion of 1890-04-01} {
    clock format -2516700304 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Apr April 04/01/1890 12:34:56 die i mensis iv annoque mdcccxc xii h xxxiv m lvi s 18 mdccc 01 i  1 i Apr 091 2411459 04 iv  4 04/01/1890 die i mensis iv annoque mdcccxc 90 xc 1890}
test clock-2.248 {conversion of 1890-04-30} {
    clock format -2514194704 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Apr April 04/30/1890 12:34:56 die xxx mensis iv annoque mdcccxc xii h xxxiv m lvi s 18 mdccc 30 xxx 30 xxx Apr 120 2411488 04 iv  4 04/30/1890 die xxx mensis iv annoque mdcccxc 90 xc 1890}
test clock-2.249 {conversion of 1890-05-01} {
    clock format -2514108304 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {May May 05/01/1890 12:34:56 die i mensis v annoque mdcccxc xii h xxxiv m lvi s 18 mdccc 01 i  1 i May 121 2411489 05 v  5 05/01/1890 die i mensis v annoque mdcccxc 90 xc 1890}
test clock-2.250 {conversion of 1890-05-31} {
    clock format -2511516304 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {May May 05/31/1890 12:34:56 die xxxi mensis v annoque mdcccxc xii h xxxiv m lvi s 18 mdccc 31 xxxi 31 xxxi May 151 2411519 05 v  5 05/31/1890 die xxxi mensis v annoque mdcccxc 90 xc 1890}
test clock-2.251 {conversion of 1890-06-01} {
    clock format -2511429904 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Jun June 06/01/1890 12:34:56 die i mensis vi annoque mdcccxc xii h xxxiv m lvi s 18 mdccc 01 i  1 i Jun 152 2411520 06 vi  6 06/01/1890 die i mensis vi annoque mdcccxc 90 xc 1890}
test clock-2.252 {conversion of 1890-06-30} {
    clock format -2508924304 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Jun June 06/30/1890 12:34:56 die xxx mensis vi annoque mdcccxc xii h xxxiv m lvi s 18 mdccc 30 xxx 30 xxx Jun 181 2411549 06 vi  6 06/30/1890 die xxx mensis vi annoque mdcccxc 90 xc 1890}
test clock-2.253 {conversion of 1890-07-01} {
    clock format -2508837904 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Jul July 07/01/1890 12:34:56 die i mensis vii annoque mdcccxc xii h xxxiv m lvi s 18 mdccc 01 i  1 i Jul 182 2411550 07 vii  7 07/01/1890 die i mensis vii annoque mdcccxc 90 xc 1890}
test clock-2.254 {conversion of 1890-07-31} {
    clock format -2506245904 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Jul July 07/31/1890 12:34:56 die xxxi mensis vii annoque mdcccxc xii h xxxiv m lvi s 18 mdccc 31 xxxi 31 xxxi Jul 212 2411580 07 vii  7 07/31/1890 die xxxi mensis vii annoque mdcccxc 90 xc 1890}
test clock-2.255 {conversion of 1890-08-01} {
    clock format -2506159504 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Aug August 08/01/1890 12:34:56 die i mensis viii annoque mdcccxc xii h xxxiv m lvi s 18 mdccc 01 i  1 i Aug 213 2411581 08 viii  8 08/01/1890 die i mensis viii annoque mdcccxc 90 xc 1890}
test clock-2.256 {conversion of 1890-08-31} {
    clock format -2503567504 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Aug August 08/31/1890 12:34:56 die xxxi mensis viii annoque mdcccxc xii h xxxiv m lvi s 18 mdccc 31 xxxi 31 xxxi Aug 243 2411611 08 viii  8 08/31/1890 die xxxi mensis viii annoque mdcccxc 90 xc 1890}
test clock-2.257 {conversion of 1890-09-01} {
    clock format -2503481104 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Sep September 09/01/1890 12:34:56 die i mensis ix annoque mdcccxc xii h xxxiv m lvi s 18 mdccc 01 i  1 i Sep 244 2411612 09 ix  9 09/01/1890 die i mensis ix annoque mdcccxc 90 xc 1890}
test clock-2.258 {conversion of 1890-09-30} {
    clock format -2500975504 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Sep September 09/30/1890 12:34:56 die xxx mensis ix annoque mdcccxc xii h xxxiv m lvi s 18 mdccc 30 xxx 30 xxx Sep 273 2411641 09 ix  9 09/30/1890 die xxx mensis ix annoque mdcccxc 90 xc 1890}
test clock-2.259 {conversion of 1890-10-01} {
    clock format -2500889104 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Oct October 10/01/1890 12:34:56 die i mensis x annoque mdcccxc xii h xxxiv m lvi s 18 mdccc 01 i  1 i Oct 274 2411642 10 x 10 10/01/1890 die i mensis x annoque mdcccxc 90 xc 1890}
test clock-2.260 {conversion of 1890-10-31} {
    clock format -2498297104 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Oct October 10/31/1890 12:34:56 die xxxi mensis x annoque mdcccxc xii h xxxiv m lvi s 18 mdccc 31 xxxi 31 xxxi Oct 304 2411672 10 x 10 10/31/1890 die xxxi mensis x annoque mdcccxc 90 xc 1890}
test clock-2.261 {conversion of 1890-11-01} {
    clock format -2498210704 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Nov November 11/01/1890 12:34:56 die i mensis xi annoque mdcccxc xii h xxxiv m lvi s 18 mdccc 01 i  1 i Nov 305 2411673 11 xi 11 11/01/1890 die i mensis xi annoque mdcccxc 90 xc 1890}
test clock-2.262 {conversion of 1890-11-30} {
    clock format -2495705104 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Nov November 11/30/1890 12:34:56 die xxx mensis xi annoque mdcccxc xii h xxxiv m lvi s 18 mdccc 30 xxx 30 xxx Nov 334 2411702 11 xi 11 11/30/1890 die xxx mensis xi annoque mdcccxc 90 xc 1890}
test clock-2.263 {conversion of 1890-12-01} {
    clock format -2495618704 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Dec December 12/01/1890 12:34:56 die i mensis xii annoque mdcccxc xii h xxxiv m lvi s 18 mdccc 01 i  1 i Dec 335 2411703 12 xii 12 12/01/1890 die i mensis xii annoque mdcccxc 90 xc 1890}
test clock-2.264 {conversion of 1890-12-31} {
    clock format -2493026704 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Dec December 12/31/1890 12:34:56 die xxxi mensis xii annoque mdcccxc xii h xxxiv m lvi s 18 mdccc 31 xxxi 31 xxxi Dec 365 2411733 12 xii 12 12/31/1890 die xxxi mensis xii annoque mdcccxc 90 xc 1890}
test clock-2.265 {conversion of 1891-01-01} {
    clock format -2492940304 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Jan January 01/01/1891 12:34:56 die i mensis i annoque mdcccxci xii h xxxiv m lvi s 18 mdccc 01 i  1 i Jan 001 2411734 01 i  1 01/01/1891 die i mensis i annoque mdcccxci 91 xci 1891}
test clock-2.266 {conversion of 1891-01-31} {
    clock format -2490348304 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Jan January 01/31/1891 12:34:56 die xxxi mensis i annoque mdcccxci xii h xxxiv m lvi s 18 mdccc 31 xxxi 31 xxxi Jan 031 2411764 01 i  1 01/31/1891 die xxxi mensis i annoque mdcccxci 91 xci 1891}
test clock-2.267 {conversion of 1891-02-01} {
    clock format -2490261904 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Feb February 02/01/1891 12:34:56 die i mensis ii annoque mdcccxci xii h xxxiv m lvi s 18 mdccc 01 i  1 i Feb 032 2411765 02 ii  2 02/01/1891 die i mensis ii annoque mdcccxci 91 xci 1891}
test clock-2.268 {conversion of 1891-02-28} {
    clock format -2487929104 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Feb February 02/28/1891 12:34:56 die xxviii mensis ii annoque mdcccxci xii h xxxiv m lvi s 18 mdccc 28 xxviii 28 xxviii Feb 059 2411792 02 ii  2 02/28/1891 die xxviii mensis ii annoque mdcccxci 91 xci 1891}
test clock-2.269 {conversion of 1891-03-01} {
    clock format -2487842704 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Mar March 03/01/1891 12:34:56 die i mensis iii annoque mdcccxci xii h xxxiv m lvi s 18 mdccc 01 i  1 i Mar 060 2411793 03 iii  3 03/01/1891 die i mensis iii annoque mdcccxci 91 xci 1891}
test clock-2.270 {conversion of 1891-03-31} {
    clock format -2485250704 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Mar March 03/31/1891 12:34:56 die xxxi mensis iii annoque mdcccxci xii h xxxiv m lvi s 18 mdccc 31 xxxi 31 xxxi Mar 090 2411823 03 iii  3 03/31/1891 die xxxi mensis iii annoque mdcccxci 91 xci 1891}
test clock-2.271 {conversion of 1891-04-01} {
    clock format -2485164304 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Apr April 04/01/1891 12:34:56 die i mensis iv annoque mdcccxci xii h xxxiv m lvi s 18 mdccc 01 i  1 i Apr 091 2411824 04 iv  4 04/01/1891 die i mensis iv annoque mdcccxci 91 xci 1891}
test clock-2.272 {conversion of 1891-04-30} {
    clock format -2482658704 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Apr April 04/30/1891 12:34:56 die xxx mensis iv annoque mdcccxci xii h xxxiv m lvi s 18 mdccc 30 xxx 30 xxx Apr 120 2411853 04 iv  4 04/30/1891 die xxx mensis iv annoque mdcccxci 91 xci 1891}
test clock-2.273 {conversion of 1891-05-01} {
    clock format -2482572304 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {May May 05/01/1891 12:34:56 die i mensis v annoque mdcccxci xii h xxxiv m lvi s 18 mdccc 01 i  1 i May 121 2411854 05 v  5 05/01/1891 die i mensis v annoque mdcccxci 91 xci 1891}
test clock-2.274 {conversion of 1891-05-31} {
    clock format -2479980304 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {May May 05/31/1891 12:34:56 die xxxi mensis v annoque mdcccxci xii h xxxiv m lvi s 18 mdccc 31 xxxi 31 xxxi May 151 2411884 05 v  5 05/31/1891 die xxxi mensis v annoque mdcccxci 91 xci 1891}
test clock-2.275 {conversion of 1891-06-01} {
    clock format -2479893904 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Jun June 06/01/1891 12:34:56 die i mensis vi annoque mdcccxci xii h xxxiv m lvi s 18 mdccc 01 i  1 i Jun 152 2411885 06 vi  6 06/01/1891 die i mensis vi annoque mdcccxci 91 xci 1891}
test clock-2.276 {conversion of 1891-06-30} {
    clock format -2477388304 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Jun June 06/30/1891 12:34:56 die xxx mensis vi annoque mdcccxci xii h xxxiv m lvi s 18 mdccc 30 xxx 30 xxx Jun 181 2411914 06 vi  6 06/30/1891 die xxx mensis vi annoque mdcccxci 91 xci 1891}
test clock-2.277 {conversion of 1891-07-01} {
    clock format -2477301904 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Jul July 07/01/1891 12:34:56 die i mensis vii annoque mdcccxci xii h xxxiv m lvi s 18 mdccc 01 i  1 i Jul 182 2411915 07 vii  7 07/01/1891 die i mensis vii annoque mdcccxci 91 xci 1891}
test clock-2.278 {conversion of 1891-07-31} {
    clock format -2474709904 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Jul July 07/31/1891 12:34:56 die xxxi mensis vii annoque mdcccxci xii h xxxiv m lvi s 18 mdccc 31 xxxi 31 xxxi Jul 212 2411945 07 vii  7 07/31/1891 die xxxi mensis vii annoque mdcccxci 91 xci 1891}
test clock-2.279 {conversion of 1891-08-01} {
    clock format -2474623504 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Aug August 08/01/1891 12:34:56 die i mensis viii annoque mdcccxci xii h xxxiv m lvi s 18 mdccc 01 i  1 i Aug 213 2411946 08 viii  8 08/01/1891 die i mensis viii annoque mdcccxci 91 xci 1891}
test clock-2.280 {conversion of 1891-08-31} {
    clock format -2472031504 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Aug August 08/31/1891 12:34:56 die xxxi mensis viii annoque mdcccxci xii h xxxiv m lvi s 18 mdccc 31 xxxi 31 xxxi Aug 243 2411976 08 viii  8 08/31/1891 die xxxi mensis viii annoque mdcccxci 91 xci 1891}
test clock-2.281 {conversion of 1891-09-01} {
    clock format -2471945104 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Sep September 09/01/1891 12:34:56 die i mensis ix annoque mdcccxci xii h xxxiv m lvi s 18 mdccc 01 i  1 i Sep 244 2411977 09 ix  9 09/01/1891 die i mensis ix annoque mdcccxci 91 xci 1891}
test clock-2.282 {conversion of 1891-09-30} {
    clock format -2469439504 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Sep September 09/30/1891 12:34:56 die xxx mensis ix annoque mdcccxci xii h xxxiv m lvi s 18 mdccc 30 xxx 30 xxx Sep 273 2412006 09 ix  9 09/30/1891 die xxx mensis ix annoque mdcccxci 91 xci 1891}
test clock-2.283 {conversion of 1891-10-01} {
    clock format -2469353104 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Oct October 10/01/1891 12:34:56 die i mensis x annoque mdcccxci xii h xxxiv m lvi s 18 mdccc 01 i  1 i Oct 274 2412007 10 x 10 10/01/1891 die i mensis x annoque mdcccxci 91 xci 1891}
test clock-2.284 {conversion of 1891-10-31} {
    clock format -2466761104 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Oct October 10/31/1891 12:34:56 die xxxi mensis x annoque mdcccxci xii h xxxiv m lvi s 18 mdccc 31 xxxi 31 xxxi Oct 304 2412037 10 x 10 10/31/1891 die xxxi mensis x annoque mdcccxci 91 xci 1891}
test clock-2.285 {conversion of 1891-11-01} {
    clock format -2466674704 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Nov November 11/01/1891 12:34:56 die i mensis xi annoque mdcccxci xii h xxxiv m lvi s 18 mdccc 01 i  1 i Nov 305 2412038 11 xi 11 11/01/1891 die i mensis xi annoque mdcccxci 91 xci 1891}
test clock-2.286 {conversion of 1891-11-30} {
    clock format -2464169104 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Nov November 11/30/1891 12:34:56 die xxx mensis xi annoque mdcccxci xii h xxxiv m lvi s 18 mdccc 30 xxx 30 xxx Nov 334 2412067 11 xi 11 11/30/1891 die xxx mensis xi annoque mdcccxci 91 xci 1891}
test clock-2.287 {conversion of 1891-12-01} {
    clock format -2464082704 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Dec December 12/01/1891 12:34:56 die i mensis xii annoque mdcccxci xii h xxxiv m lvi s 18 mdccc 01 i  1 i Dec 335 2412068 12 xii 12 12/01/1891 die i mensis xii annoque mdcccxci 91 xci 1891}
test clock-2.288 {conversion of 1891-12-31} {
    clock format -2461490704 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Dec December 12/31/1891 12:34:56 die xxxi mensis xii annoque mdcccxci xii h xxxiv m lvi s 18 mdccc 31 xxxi 31 xxxi Dec 365 2412098 12 xii 12 12/31/1891 die xxxi mensis xii annoque mdcccxci 91 xci 1891}
test clock-2.289 {conversion of 1892-01-01} {
    clock format -2461404304 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Jan January 01/01/1892 12:34:56 die i mensis i annoque mdcccxcii xii h xxxiv m lvi s 18 mdccc 01 i  1 i Jan 001 2412099 01 i  1 01/01/1892 die i mensis i annoque mdcccxcii 92 xcii 1892}
test clock-2.290 {conversion of 1892-01-31} {
    clock format -2458812304 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Jan January 01/31/1892 12:34:56 die xxxi mensis i annoque mdcccxcii xii h xxxiv m lvi s 18 mdccc 31 xxxi 31 xxxi Jan 031 2412129 01 i  1 01/31/1892 die xxxi mensis i annoque mdcccxcii 92 xcii 1892}
test clock-2.291 {conversion of 1892-02-01} {
    clock format -2458725904 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Feb February 02/01/1892 12:34:56 die i mensis ii annoque mdcccxcii xii h xxxiv m lvi s 18 mdccc 01 i  1 i Feb 032 2412130 02 ii  2 02/01/1892 die i mensis ii annoque mdcccxcii 92 xcii 1892}
test clock-2.292 {conversion of 1892-02-29} {
    clock format -2456306704 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Feb February 02/29/1892 12:34:56 die xxix mensis ii annoque mdcccxcii xii h xxxiv m lvi s 18 mdccc 29 xxix 29 xxix Feb 060 2412158 02 ii  2 02/29/1892 die xxix mensis ii annoque mdcccxcii 92 xcii 1892}
test clock-2.293 {conversion of 1892-03-01} {
    clock format -2456220304 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Mar March 03/01/1892 12:34:56 die i mensis iii annoque mdcccxcii xii h xxxiv m lvi s 18 mdccc 01 i  1 i Mar 061 2412159 03 iii  3 03/01/1892 die i mensis iii annoque mdcccxcii 92 xcii 1892}
test clock-2.294 {conversion of 1892-03-31} {
    clock format -2453628304 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Mar March 03/31/1892 12:34:56 die xxxi mensis iii annoque mdcccxcii xii h xxxiv m lvi s 18 mdccc 31 xxxi 31 xxxi Mar 091 2412189 03 iii  3 03/31/1892 die xxxi mensis iii annoque mdcccxcii 92 xcii 1892}
test clock-2.295 {conversion of 1892-04-01} {
    clock format -2453541904 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Apr April 04/01/1892 12:34:56 die i mensis iv annoque mdcccxcii xii h xxxiv m lvi s 18 mdccc 01 i  1 i Apr 092 2412190 04 iv  4 04/01/1892 die i mensis iv annoque mdcccxcii 92 xcii 1892}
test clock-2.296 {conversion of 1892-04-30} {
    clock format -2451036304 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Apr April 04/30/1892 12:34:56 die xxx mensis iv annoque mdcccxcii xii h xxxiv m lvi s 18 mdccc 30 xxx 30 xxx Apr 121 2412219 04 iv  4 04/30/1892 die xxx mensis iv annoque mdcccxcii 92 xcii 1892}
test clock-2.297 {conversion of 1892-05-01} {
    clock format -2450949904 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {May May 05/01/1892 12:34:56 die i mensis v annoque mdcccxcii xii h xxxiv m lvi s 18 mdccc 01 i  1 i May 122 2412220 05 v  5 05/01/1892 die i mensis v annoque mdcccxcii 92 xcii 1892}
test clock-2.298 {conversion of 1892-05-31} {
    clock format -2448357904 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {May May 05/31/1892 12:34:56 die xxxi mensis v annoque mdcccxcii xii h xxxiv m lvi s 18 mdccc 31 xxxi 31 xxxi May 152 2412250 05 v  5 05/31/1892 die xxxi mensis v annoque mdcccxcii 92 xcii 1892}
test clock-2.299 {conversion of 1892-06-01} {
    clock format -2448271504 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Jun June 06/01/1892 12:34:56 die i mensis vi annoque mdcccxcii xii h xxxiv m lvi s 18 mdccc 01 i  1 i Jun 153 2412251 06 vi  6 06/01/1892 die i mensis vi annoque mdcccxcii 92 xcii 1892}
test clock-2.300 {conversion of 1892-06-30} {
    clock format -2445765904 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Jun June 06/30/1892 12:34:56 die xxx mensis vi annoque mdcccxcii xii h xxxiv m lvi s 18 mdccc 30 xxx 30 xxx Jun 182 2412280 06 vi  6 06/30/1892 die xxx mensis vi annoque mdcccxcii 92 xcii 1892}
test clock-2.301 {conversion of 1892-07-01} {
    clock format -2445679504 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Jul July 07/01/1892 12:34:56 die i mensis vii annoque mdcccxcii xii h xxxiv m lvi s 18 mdccc 01 i  1 i Jul 183 2412281 07 vii  7 07/01/1892 die i mensis vii annoque mdcccxcii 92 xcii 1892}
test clock-2.302 {conversion of 1892-07-31} {
    clock format -2443087504 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Jul July 07/31/1892 12:34:56 die xxxi mensis vii annoque mdcccxcii xii h xxxiv m lvi s 18 mdccc 31 xxxi 31 xxxi Jul 213 2412311 07 vii  7 07/31/1892 die xxxi mensis vii annoque mdcccxcii 92 xcii 1892}
test clock-2.303 {conversion of 1892-08-01} {
    clock format -2443001104 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Aug August 08/01/1892 12:34:56 die i mensis viii annoque mdcccxcii xii h xxxiv m lvi s 18 mdccc 01 i  1 i Aug 214 2412312 08 viii  8 08/01/1892 die i mensis viii annoque mdcccxcii 92 xcii 1892}
test clock-2.304 {conversion of 1892-08-31} {
    clock format -2440409104 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Aug August 08/31/1892 12:34:56 die xxxi mensis viii annoque mdcccxcii xii h xxxiv m lvi s 18 mdccc 31 xxxi 31 xxxi Aug 244 2412342 08 viii  8 08/31/1892 die xxxi mensis viii annoque mdcccxcii 92 xcii 1892}
test clock-2.305 {conversion of 1892-09-01} {
    clock format -2440322704 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Sep September 09/01/1892 12:34:56 die i mensis ix annoque mdcccxcii xii h xxxiv m lvi s 18 mdccc 01 i  1 i Sep 245 2412343 09 ix  9 09/01/1892 die i mensis ix annoque mdcccxcii 92 xcii 1892}
test clock-2.306 {conversion of 1892-09-30} {
    clock format -2437817104 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Sep September 09/30/1892 12:34:56 die xxx mensis ix annoque mdcccxcii xii h xxxiv m lvi s 18 mdccc 30 xxx 30 xxx Sep 274 2412372 09 ix  9 09/30/1892 die xxx mensis ix annoque mdcccxcii 92 xcii 1892}
test clock-2.307 {conversion of 1892-10-01} {
    clock format -2437730704 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Oct October 10/01/1892 12:34:56 die i mensis x annoque mdcccxcii xii h xxxiv m lvi s 18 mdccc 01 i  1 i Oct 275 2412373 10 x 10 10/01/1892 die i mensis x annoque mdcccxcii 92 xcii 1892}
test clock-2.308 {conversion of 1892-10-31} {
    clock format -2435138704 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Oct October 10/31/1892 12:34:56 die xxxi mensis x annoque mdcccxcii xii h xxxiv m lvi s 18 mdccc 31 xxxi 31 xxxi Oct 305 2412403 10 x 10 10/31/1892 die xxxi mensis x annoque mdcccxcii 92 xcii 1892}
test clock-2.309 {conversion of 1892-11-01} {
    clock format -2435052304 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Nov November 11/01/1892 12:34:56 die i mensis xi annoque mdcccxcii xii h xxxiv m lvi s 18 mdccc 01 i  1 i Nov 306 2412404 11 xi 11 11/01/1892 die i mensis xi annoque mdcccxcii 92 xcii 1892}
test clock-2.310 {conversion of 1892-11-30} {
    clock format -2432546704 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Nov November 11/30/1892 12:34:56 die xxx mensis xi annoque mdcccxcii xii h xxxiv m lvi s 18 mdccc 30 xxx 30 xxx Nov 335 2412433 11 xi 11 11/30/1892 die xxx mensis xi annoque mdcccxcii 92 xcii 1892}
test clock-2.311 {conversion of 1892-12-01} {
    clock format -2432460304 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Dec December 12/01/1892 12:34:56 die i mensis xii annoque mdcccxcii xii h xxxiv m lvi s 18 mdccc 01 i  1 i Dec 336 2412434 12 xii 12 12/01/1892 die i mensis xii annoque mdcccxcii 92 xcii 1892}
test clock-2.312 {conversion of 1892-12-31} {
    clock format -2429868304 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Dec December 12/31/1892 12:34:56 die xxxi mensis xii annoque mdcccxcii xii h xxxiv m lvi s 18 mdccc 31 xxxi 31 xxxi Dec 366 2412464 12 xii 12 12/31/1892 die xxxi mensis xii annoque mdcccxcii 92 xcii 1892}
test clock-2.313 {conversion of 1893-01-01} {
    clock format -2429781904 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Jan January 01/01/1893 12:34:56 die i mensis i annoque mdcccxciii xii h xxxiv m lvi s 18 mdccc 01 i  1 i Jan 001 2412465 01 i  1 01/01/1893 die i mensis i annoque mdcccxciii 93 xciii 1893}
test clock-2.314 {conversion of 1893-01-31} {
    clock format -2427189904 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Jan January 01/31/1893 12:34:56 die xxxi mensis i annoque mdcccxciii xii h xxxiv m lvi s 18 mdccc 31 xxxi 31 xxxi Jan 031 2412495 01 i  1 01/31/1893 die xxxi mensis i annoque mdcccxciii 93 xciii 1893}
test clock-2.315 {conversion of 1893-02-01} {
    clock format -2427103504 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Feb February 02/01/1893 12:34:56 die i mensis ii annoque mdcccxciii xii h xxxiv m lvi s 18 mdccc 01 i  1 i Feb 032 2412496 02 ii  2 02/01/1893 die i mensis ii annoque mdcccxciii 93 xciii 1893}
test clock-2.316 {conversion of 1893-02-28} {
    clock format -2424770704 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Feb February 02/28/1893 12:34:56 die xxviii mensis ii annoque mdcccxciii xii h xxxiv m lvi s 18 mdccc 28 xxviii 28 xxviii Feb 059 2412523 02 ii  2 02/28/1893 die xxviii mensis ii annoque mdcccxciii 93 xciii 1893}
test clock-2.317 {conversion of 1893-03-01} {
    clock format -2424684304 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Mar March 03/01/1893 12:34:56 die i mensis iii annoque mdcccxciii xii h xxxiv m lvi s 18 mdccc 01 i  1 i Mar 060 2412524 03 iii  3 03/01/1893 die i mensis iii annoque mdcccxciii 93 xciii 1893}
test clock-2.318 {conversion of 1893-03-31} {
    clock format -2422092304 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Mar March 03/31/1893 12:34:56 die xxxi mensis iii annoque mdcccxciii xii h xxxiv m lvi s 18 mdccc 31 xxxi 31 xxxi Mar 090 2412554 03 iii  3 03/31/1893 die xxxi mensis iii annoque mdcccxciii 93 xciii 1893}
test clock-2.319 {conversion of 1893-04-01} {
    clock format -2422005904 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Apr April 04/01/1893 12:34:56 die i mensis iv annoque mdcccxciii xii h xxxiv m lvi s 18 mdccc 01 i  1 i Apr 091 2412555 04 iv  4 04/01/1893 die i mensis iv annoque mdcccxciii 93 xciii 1893}
test clock-2.320 {conversion of 1893-04-30} {
    clock format -2419500304 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Apr April 04/30/1893 12:34:56 die xxx mensis iv annoque mdcccxciii xii h xxxiv m lvi s 18 mdccc 30 xxx 30 xxx Apr 120 2412584 04 iv  4 04/30/1893 die xxx mensis iv annoque mdcccxciii 93 xciii 1893}
test clock-2.321 {conversion of 1893-05-01} {
    clock format -2419413904 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {May May 05/01/1893 12:34:56 die i mensis v annoque mdcccxciii xii h xxxiv m lvi s 18 mdccc 01 i  1 i May 121 2412585 05 v  5 05/01/1893 die i mensis v annoque mdcccxciii 93 xciii 1893}
test clock-2.322 {conversion of 1893-05-31} {
    clock format -2416821904 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {May May 05/31/1893 12:34:56 die xxxi mensis v annoque mdcccxciii xii h xxxiv m lvi s 18 mdccc 31 xxxi 31 xxxi May 151 2412615 05 v  5 05/31/1893 die xxxi mensis v annoque mdcccxciii 93 xciii 1893}
test clock-2.323 {conversion of 1893-06-01} {
    clock format -2416735504 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Jun June 06/01/1893 12:34:56 die i mensis vi annoque mdcccxciii xii h xxxiv m lvi s 18 mdccc 01 i  1 i Jun 152 2412616 06 vi  6 06/01/1893 die i mensis vi annoque mdcccxciii 93 xciii 1893}
test clock-2.324 {conversion of 1893-06-30} {
    clock format -2414229904 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Jun June 06/30/1893 12:34:56 die xxx mensis vi annoque mdcccxciii xii h xxxiv m lvi s 18 mdccc 30 xxx 30 xxx Jun 181 2412645 06 vi  6 06/30/1893 die xxx mensis vi annoque mdcccxciii 93 xciii 1893}
test clock-2.325 {conversion of 1893-07-01} {
    clock format -2414143504 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Jul July 07/01/1893 12:34:56 die i mensis vii annoque mdcccxciii xii h xxxiv m lvi s 18 mdccc 01 i  1 i Jul 182 2412646 07 vii  7 07/01/1893 die i mensis vii annoque mdcccxciii 93 xciii 1893}
test clock-2.326 {conversion of 1893-07-31} {
    clock format -2411551504 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Jul July 07/31/1893 12:34:56 die xxxi mensis vii annoque mdcccxciii xii h xxxiv m lvi s 18 mdccc 31 xxxi 31 xxxi Jul 212 2412676 07 vii  7 07/31/1893 die xxxi mensis vii annoque mdcccxciii 93 xciii 1893}
test clock-2.327 {conversion of 1893-08-01} {
    clock format -2411465104 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Aug August 08/01/1893 12:34:56 die i mensis viii annoque mdcccxciii xii h xxxiv m lvi s 18 mdccc 01 i  1 i Aug 213 2412677 08 viii  8 08/01/1893 die i mensis viii annoque mdcccxciii 93 xciii 1893}
test clock-2.328 {conversion of 1893-08-31} {
    clock format -2408873104 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Aug August 08/31/1893 12:34:56 die xxxi mensis viii annoque mdcccxciii xii h xxxiv m lvi s 18 mdccc 31 xxxi 31 xxxi Aug 243 2412707 08 viii  8 08/31/1893 die xxxi mensis viii annoque mdcccxciii 93 xciii 1893}
test clock-2.329 {conversion of 1893-09-01} {
    clock format -2408786704 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Sep September 09/01/1893 12:34:56 die i mensis ix annoque mdcccxciii xii h xxxiv m lvi s 18 mdccc 01 i  1 i Sep 244 2412708 09 ix  9 09/01/1893 die i mensis ix annoque mdcccxciii 93 xciii 1893}
test clock-2.330 {conversion of 1893-09-30} {
    clock format -2406281104 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Sep September 09/30/1893 12:34:56 die xxx mensis ix annoque mdcccxciii xii h xxxiv m lvi s 18 mdccc 30 xxx 30 xxx Sep 273 2412737 09 ix  9 09/30/1893 die xxx mensis ix annoque mdcccxciii 93 xciii 1893}
test clock-2.331 {conversion of 1893-10-01} {
    clock format -2406194704 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Oct October 10/01/1893 12:34:56 die i mensis x annoque mdcccxciii xii h xxxiv m lvi s 18 mdccc 01 i  1 i Oct 274 2412738 10 x 10 10/01/1893 die i mensis x annoque mdcccxciii 93 xciii 1893}
test clock-2.332 {conversion of 1893-10-31} {
    clock format -2403602704 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Oct October 10/31/1893 12:34:56 die xxxi mensis x annoque mdcccxciii xii h xxxiv m lvi s 18 mdccc 31 xxxi 31 xxxi Oct 304 2412768 10 x 10 10/31/1893 die xxxi mensis x annoque mdcccxciii 93 xciii 1893}
test clock-2.333 {conversion of 1893-11-01} {
    clock format -2403516304 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Nov November 11/01/1893 12:34:56 die i mensis xi annoque mdcccxciii xii h xxxiv m lvi s 18 mdccc 01 i  1 i Nov 305 2412769 11 xi 11 11/01/1893 die i mensis xi annoque mdcccxciii 93 xciii 1893}
test clock-2.334 {conversion of 1893-11-30} {
    clock format -2401010704 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Nov November 11/30/1893 12:34:56 die xxx mensis xi annoque mdcccxciii xii h xxxiv m lvi s 18 mdccc 30 xxx 30 xxx Nov 334 2412798 11 xi 11 11/30/1893 die xxx mensis xi annoque mdcccxciii 93 xciii 1893}
test clock-2.335 {conversion of 1893-12-01} {
    clock format -2400924304 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Dec December 12/01/1893 12:34:56 die i mensis xii annoque mdcccxciii xii h xxxiv m lvi s 18 mdccc 01 i  1 i Dec 335 2412799 12 xii 12 12/01/1893 die i mensis xii annoque mdcccxciii 93 xciii 1893}
test clock-2.336 {conversion of 1893-12-31} {
    clock format -2398332304 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Dec December 12/31/1893 12:34:56 die xxxi mensis xii annoque mdcccxciii xii h xxxiv m lvi s 18 mdccc 31 xxxi 31 xxxi Dec 365 2412829 12 xii 12 12/31/1893 die xxxi mensis xii annoque mdcccxciii 93 xciii 1893}
test clock-2.337 {conversion of 1894-01-01} {
    clock format -2398245904 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Jan January 01/01/1894 12:34:56 die i mensis i annoque mdcccxciv xii h xxxiv m lvi s 18 mdccc 01 i  1 i Jan 001 2412830 01 i  1 01/01/1894 die i mensis i annoque mdcccxciv 94 xciv 1894}
test clock-2.338 {conversion of 1894-01-31} {
    clock format -2395653904 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Jan January 01/31/1894 12:34:56 die xxxi mensis i annoque mdcccxciv xii h xxxiv m lvi s 18 mdccc 31 xxxi 31 xxxi Jan 031 2412860 01 i  1 01/31/1894 die xxxi mensis i annoque mdcccxciv 94 xciv 1894}
test clock-2.339 {conversion of 1894-02-01} {
    clock format -2395567504 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Feb February 02/01/1894 12:34:56 die i mensis ii annoque mdcccxciv xii h xxxiv m lvi s 18 mdccc 01 i  1 i Feb 032 2412861 02 ii  2 02/01/1894 die i mensis ii annoque mdcccxciv 94 xciv 1894}
test clock-2.340 {conversion of 1894-02-28} {
    clock format -2393234704 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Feb February 02/28/1894 12:34:56 die xxviii mensis ii annoque mdcccxciv xii h xxxiv m lvi s 18 mdccc 28 xxviii 28 xxviii Feb 059 2412888 02 ii  2 02/28/1894 die xxviii mensis ii annoque mdcccxciv 94 xciv 1894}
test clock-2.341 {conversion of 1894-03-01} {
    clock format -2393148304 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Mar March 03/01/1894 12:34:56 die i mensis iii annoque mdcccxciv xii h xxxiv m lvi s 18 mdccc 01 i  1 i Mar 060 2412889 03 iii  3 03/01/1894 die i mensis iii annoque mdcccxciv 94 xciv 1894}
test clock-2.342 {conversion of 1894-03-31} {
    clock format -2390556304 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Mar March 03/31/1894 12:34:56 die xxxi mensis iii annoque mdcccxciv xii h xxxiv m lvi s 18 mdccc 31 xxxi 31 xxxi Mar 090 2412919 03 iii  3 03/31/1894 die xxxi mensis iii annoque mdcccxciv 94 xciv 1894}
test clock-2.343 {conversion of 1894-04-01} {
    clock format -2390469904 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Apr April 04/01/1894 12:34:56 die i mensis iv annoque mdcccxciv xii h xxxiv m lvi s 18 mdccc 01 i  1 i Apr 091 2412920 04 iv  4 04/01/1894 die i mensis iv annoque mdcccxciv 94 xciv 1894}
test clock-2.344 {conversion of 1894-04-30} {
    clock format -2387964304 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Apr April 04/30/1894 12:34:56 die xxx mensis iv annoque mdcccxciv xii h xxxiv m lvi s 18 mdccc 30 xxx 30 xxx Apr 120 2412949 04 iv  4 04/30/1894 die xxx mensis iv annoque mdcccxciv 94 xciv 1894}
test clock-2.345 {conversion of 1894-05-01} {
    clock format -2387877904 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {May May 05/01/1894 12:34:56 die i mensis v annoque mdcccxciv xii h xxxiv m lvi s 18 mdccc 01 i  1 i May 121 2412950 05 v  5 05/01/1894 die i mensis v annoque mdcccxciv 94 xciv 1894}
test clock-2.346 {conversion of 1894-05-31} {
    clock format -2385285904 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {May May 05/31/1894 12:34:56 die xxxi mensis v annoque mdcccxciv xii h xxxiv m lvi s 18 mdccc 31 xxxi 31 xxxi May 151 2412980 05 v  5 05/31/1894 die xxxi mensis v annoque mdcccxciv 94 xciv 1894}
test clock-2.347 {conversion of 1894-06-01} {
    clock format -2385199504 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Jun June 06/01/1894 12:34:56 die i mensis vi annoque mdcccxciv xii h xxxiv m lvi s 18 mdccc 01 i  1 i Jun 152 2412981 06 vi  6 06/01/1894 die i mensis vi annoque mdcccxciv 94 xciv 1894}
test clock-2.348 {conversion of 1894-06-30} {
    clock format -2382693904 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Jun June 06/30/1894 12:34:56 die xxx mensis vi annoque mdcccxciv xii h xxxiv m lvi s 18 mdccc 30 xxx 30 xxx Jun 181 2413010 06 vi  6 06/30/1894 die xxx mensis vi annoque mdcccxciv 94 xciv 1894}
test clock-2.349 {conversion of 1894-07-01} {
    clock format -2382607504 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Jul July 07/01/1894 12:34:56 die i mensis vii annoque mdcccxciv xii h xxxiv m lvi s 18 mdccc 01 i  1 i Jul 182 2413011 07 vii  7 07/01/1894 die i mensis vii annoque mdcccxciv 94 xciv 1894}
test clock-2.350 {conversion of 1894-07-31} {
    clock format -2380015504 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Jul July 07/31/1894 12:34:56 die xxxi mensis vii annoque mdcccxciv xii h xxxiv m lvi s 18 mdccc 31 xxxi 31 xxxi Jul 212 2413041 07 vii  7 07/31/1894 die xxxi mensis vii annoque mdcccxciv 94 xciv 1894}
test clock-2.351 {conversion of 1894-08-01} {
    clock format -2379929104 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Aug August 08/01/1894 12:34:56 die i mensis viii annoque mdcccxciv xii h xxxiv m lvi s 18 mdccc 01 i  1 i Aug 213 2413042 08 viii  8 08/01/1894 die i mensis viii annoque mdcccxciv 94 xciv 1894}
test clock-2.352 {conversion of 1894-08-31} {
    clock format -2377337104 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Aug August 08/31/1894 12:34:56 die xxxi mensis viii annoque mdcccxciv xii h xxxiv m lvi s 18 mdccc 31 xxxi 31 xxxi Aug 243 2413072 08 viii  8 08/31/1894 die xxxi mensis viii annoque mdcccxciv 94 xciv 1894}
test clock-2.353 {conversion of 1894-09-01} {
    clock format -2377250704 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Sep September 09/01/1894 12:34:56 die i mensis ix annoque mdcccxciv xii h xxxiv m lvi s 18 mdccc 01 i  1 i Sep 244 2413073 09 ix  9 09/01/1894 die i mensis ix annoque mdcccxciv 94 xciv 1894}
test clock-2.354 {conversion of 1894-09-30} {
    clock format -2374745104 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Sep September 09/30/1894 12:34:56 die xxx mensis ix annoque mdcccxciv xii h xxxiv m lvi s 18 mdccc 30 xxx 30 xxx Sep 273 2413102 09 ix  9 09/30/1894 die xxx mensis ix annoque mdcccxciv 94 xciv 1894}
test clock-2.355 {conversion of 1894-10-01} {
    clock format -2374658704 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Oct October 10/01/1894 12:34:56 die i mensis x annoque mdcccxciv xii h xxxiv m lvi s 18 mdccc 01 i  1 i Oct 274 2413103 10 x 10 10/01/1894 die i mensis x annoque mdcccxciv 94 xciv 1894}
test clock-2.356 {conversion of 1894-10-31} {
    clock format -2372066704 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Oct October 10/31/1894 12:34:56 die xxxi mensis x annoque mdcccxciv xii h xxxiv m lvi s 18 mdccc 31 xxxi 31 xxxi Oct 304 2413133 10 x 10 10/31/1894 die xxxi mensis x annoque mdcccxciv 94 xciv 1894}
test clock-2.357 {conversion of 1894-11-01} {
    clock format -2371980304 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Nov November 11/01/1894 12:34:56 die i mensis xi annoque mdcccxciv xii h xxxiv m lvi s 18 mdccc 01 i  1 i Nov 305 2413134 11 xi 11 11/01/1894 die i mensis xi annoque mdcccxciv 94 xciv 1894}
test clock-2.358 {conversion of 1894-11-30} {
    clock format -2369474704 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Nov November 11/30/1894 12:34:56 die xxx mensis xi annoque mdcccxciv xii h xxxiv m lvi s 18 mdccc 30 xxx 30 xxx Nov 334 2413163 11 xi 11 11/30/1894 die xxx mensis xi annoque mdcccxciv 94 xciv 1894}
test clock-2.359 {conversion of 1894-12-01} {
    clock format -2369388304 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Dec December 12/01/1894 12:34:56 die i mensis xii annoque mdcccxciv xii h xxxiv m lvi s 18 mdccc 01 i  1 i Dec 335 2413164 12 xii 12 12/01/1894 die i mensis xii annoque mdcccxciv 94 xciv 1894}
test clock-2.360 {conversion of 1894-12-31} {
    clock format -2366796304 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Dec December 12/31/1894 12:34:56 die xxxi mensis xii annoque mdcccxciv xii h xxxiv m lvi s 18 mdccc 31 xxxi 31 xxxi Dec 365 2413194 12 xii 12 12/31/1894 die xxxi mensis xii annoque mdcccxciv 94 xciv 1894}
test clock-2.361 {conversion of 1895-01-01} {
    clock format -2366709904 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Jan January 01/01/1895 12:34:56 die i mensis i annoque mdcccxcv xii h xxxiv m lvi s 18 mdccc 01 i  1 i Jan 001 2413195 01 i  1 01/01/1895 die i mensis i annoque mdcccxcv 95 xcv 1895}
test clock-2.362 {conversion of 1895-01-31} {
    clock format -2364117904 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Jan January 01/31/1895 12:34:56 die xxxi mensis i annoque mdcccxcv xii h xxxiv m lvi s 18 mdccc 31 xxxi 31 xxxi Jan 031 2413225 01 i  1 01/31/1895 die xxxi mensis i annoque mdcccxcv 95 xcv 1895}
test clock-2.363 {conversion of 1895-02-01} {
    clock format -2364031504 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Feb February 02/01/1895 12:34:56 die i mensis ii annoque mdcccxcv xii h xxxiv m lvi s 18 mdccc 01 i  1 i Feb 032 2413226 02 ii  2 02/01/1895 die i mensis ii annoque mdcccxcv 95 xcv 1895}
test clock-2.364 {conversion of 1895-02-28} {
    clock format -2361698704 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Feb February 02/28/1895 12:34:56 die xxviii mensis ii annoque mdcccxcv xii h xxxiv m lvi s 18 mdccc 28 xxviii 28 xxviii Feb 059 2413253 02 ii  2 02/28/1895 die xxviii mensis ii annoque mdcccxcv 95 xcv 1895}
test clock-2.365 {conversion of 1895-03-01} {
    clock format -2361612304 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Mar March 03/01/1895 12:34:56 die i mensis iii annoque mdcccxcv xii h xxxiv m lvi s 18 mdccc 01 i  1 i Mar 060 2413254 03 iii  3 03/01/1895 die i mensis iii annoque mdcccxcv 95 xcv 1895}
test clock-2.366 {conversion of 1895-03-31} {
    clock format -2359020304 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Mar March 03/31/1895 12:34:56 die xxxi mensis iii annoque mdcccxcv xii h xxxiv m lvi s 18 mdccc 31 xxxi 31 xxxi Mar 090 2413284 03 iii  3 03/31/1895 die xxxi mensis iii annoque mdcccxcv 95 xcv 1895}
test clock-2.367 {conversion of 1895-04-01} {
    clock format -2358933904 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Apr April 04/01/1895 12:34:56 die i mensis iv annoque mdcccxcv xii h xxxiv m lvi s 18 mdccc 01 i  1 i Apr 091 2413285 04 iv  4 04/01/1895 die i mensis iv annoque mdcccxcv 95 xcv 1895}
test clock-2.368 {conversion of 1895-04-30} {
    clock format -2356428304 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Apr April 04/30/1895 12:34:56 die xxx mensis iv annoque mdcccxcv xii h xxxiv m lvi s 18 mdccc 30 xxx 30 xxx Apr 120 2413314 04 iv  4 04/30/1895 die xxx mensis iv annoque mdcccxcv 95 xcv 1895}
test clock-2.369 {conversion of 1895-05-01} {
    clock format -2356341904 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {May May 05/01/1895 12:34:56 die i mensis v annoque mdcccxcv xii h xxxiv m lvi s 18 mdccc 01 i  1 i May 121 2413315 05 v  5 05/01/1895 die i mensis v annoque mdcccxcv 95 xcv 1895}
test clock-2.370 {conversion of 1895-05-31} {
    clock format -2353749904 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {May May 05/31/1895 12:34:56 die xxxi mensis v annoque mdcccxcv xii h xxxiv m lvi s 18 mdccc 31 xxxi 31 xxxi May 151 2413345 05 v  5 05/31/1895 die xxxi mensis v annoque mdcccxcv 95 xcv 1895}
test clock-2.371 {conversion of 1895-06-01} {
    clock format -2353663504 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Jun June 06/01/1895 12:34:56 die i mensis vi annoque mdcccxcv xii h xxxiv m lvi s 18 mdccc 01 i  1 i Jun 152 2413346 06 vi  6 06/01/1895 die i mensis vi annoque mdcccxcv 95 xcv 1895}
test clock-2.372 {conversion of 1895-06-30} {
    clock format -2351157904 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Jun June 06/30/1895 12:34:56 die xxx mensis vi annoque mdcccxcv xii h xxxiv m lvi s 18 mdccc 30 xxx 30 xxx Jun 181 2413375 06 vi  6 06/30/1895 die xxx mensis vi annoque mdcccxcv 95 xcv 1895}
test clock-2.373 {conversion of 1895-07-01} {
    clock format -2351071504 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Jul July 07/01/1895 12:34:56 die i mensis vii annoque mdcccxcv xii h xxxiv m lvi s 18 mdccc 01 i  1 i Jul 182 2413376 07 vii  7 07/01/1895 die i mensis vii annoque mdcccxcv 95 xcv 1895}
test clock-2.374 {conversion of 1895-07-31} {
    clock format -2348479504 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Jul July 07/31/1895 12:34:56 die xxxi mensis vii annoque mdcccxcv xii h xxxiv m lvi s 18 mdccc 31 xxxi 31 xxxi Jul 212 2413406 07 vii  7 07/31/1895 die xxxi mensis vii annoque mdcccxcv 95 xcv 1895}
test clock-2.375 {conversion of 1895-08-01} {
    clock format -2348393104 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Aug August 08/01/1895 12:34:56 die i mensis viii annoque mdcccxcv xii h xxxiv m lvi s 18 mdccc 01 i  1 i Aug 213 2413407 08 viii  8 08/01/1895 die i mensis viii annoque mdcccxcv 95 xcv 1895}
test clock-2.376 {conversion of 1895-08-31} {
    clock format -2345801104 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Aug August 08/31/1895 12:34:56 die xxxi mensis viii annoque mdcccxcv xii h xxxiv m lvi s 18 mdccc 31 xxxi 31 xxxi Aug 243 2413437 08 viii  8 08/31/1895 die xxxi mensis viii annoque mdcccxcv 95 xcv 1895}
test clock-2.377 {conversion of 1895-09-01} {
    clock format -2345714704 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Sep September 09/01/1895 12:34:56 die i mensis ix annoque mdcccxcv xii h xxxiv m lvi s 18 mdccc 01 i  1 i Sep 244 2413438 09 ix  9 09/01/1895 die i mensis ix annoque mdcccxcv 95 xcv 1895}
test clock-2.378 {conversion of 1895-09-30} {
    clock format -2343209104 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Sep September 09/30/1895 12:34:56 die xxx mensis ix annoque mdcccxcv xii h xxxiv m lvi s 18 mdccc 30 xxx 30 xxx Sep 273 2413467 09 ix  9 09/30/1895 die xxx mensis ix annoque mdcccxcv 95 xcv 1895}
test clock-2.379 {conversion of 1895-10-01} {
    clock format -2343122704 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Oct October 10/01/1895 12:34:56 die i mensis x annoque mdcccxcv xii h xxxiv m lvi s 18 mdccc 01 i  1 i Oct 274 2413468 10 x 10 10/01/1895 die i mensis x annoque mdcccxcv 95 xcv 1895}
test clock-2.380 {conversion of 1895-10-31} {
    clock format -2340530704 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Oct October 10/31/1895 12:34:56 die xxxi mensis x annoque mdcccxcv xii h xxxiv m lvi s 18 mdccc 31 xxxi 31 xxxi Oct 304 2413498 10 x 10 10/31/1895 die xxxi mensis x annoque mdcccxcv 95 xcv 1895}
test clock-2.381 {conversion of 1895-11-01} {
    clock format -2340444304 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Nov November 11/01/1895 12:34:56 die i mensis xi annoque mdcccxcv xii h xxxiv m lvi s 18 mdccc 01 i  1 i Nov 305 2413499 11 xi 11 11/01/1895 die i mensis xi annoque mdcccxcv 95 xcv 1895}
test clock-2.382 {conversion of 1895-11-30} {
    clock format -2337938704 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Nov November 11/30/1895 12:34:56 die xxx mensis xi annoque mdcccxcv xii h xxxiv m lvi s 18 mdccc 30 xxx 30 xxx Nov 334 2413528 11 xi 11 11/30/1895 die xxx mensis xi annoque mdcccxcv 95 xcv 1895}
test clock-2.383 {conversion of 1895-12-01} {
    clock format -2337852304 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Dec December 12/01/1895 12:34:56 die i mensis xii annoque mdcccxcv xii h xxxiv m lvi s 18 mdccc 01 i  1 i Dec 335 2413529 12 xii 12 12/01/1895 die i mensis xii annoque mdcccxcv 95 xcv 1895}
test clock-2.384 {conversion of 1895-12-31} {
    clock format -2335260304 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Dec December 12/31/1895 12:34:56 die xxxi mensis xii annoque mdcccxcv xii h xxxiv m lvi s 18 mdccc 31 xxxi 31 xxxi Dec 365 2413559 12 xii 12 12/31/1895 die xxxi mensis xii annoque mdcccxcv 95 xcv 1895}
test clock-2.385 {conversion of 1896-01-01} {
    clock format -2335173904 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Jan January 01/01/1896 12:34:56 die i mensis i annoque mdcccxcvi xii h xxxiv m lvi s 18 mdccc 01 i  1 i Jan 001 2413560 01 i  1 01/01/1896 die i mensis i annoque mdcccxcvi 96 xcvi 1896}
test clock-2.386 {conversion of 1896-01-31} {
    clock format -2332581904 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Jan January 01/31/1896 12:34:56 die xxxi mensis i annoque mdcccxcvi xii h xxxiv m lvi s 18 mdccc 31 xxxi 31 xxxi Jan 031 2413590 01 i  1 01/31/1896 die xxxi mensis i annoque mdcccxcvi 96 xcvi 1896}
test clock-2.387 {conversion of 1896-02-01} {
    clock format -2332495504 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Feb February 02/01/1896 12:34:56 die i mensis ii annoque mdcccxcvi xii h xxxiv m lvi s 18 mdccc 01 i  1 i Feb 032 2413591 02 ii  2 02/01/1896 die i mensis ii annoque mdcccxcvi 96 xcvi 1896}
test clock-2.388 {conversion of 1896-02-29} {
    clock format -2330076304 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Feb February 02/29/1896 12:34:56 die xxix mensis ii annoque mdcccxcvi xii h xxxiv m lvi s 18 mdccc 29 xxix 29 xxix Feb 060 2413619 02 ii  2 02/29/1896 die xxix mensis ii annoque mdcccxcvi 96 xcvi 1896}
test clock-2.389 {conversion of 1896-03-01} {
    clock format -2329989904 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Mar March 03/01/1896 12:34:56 die i mensis iii annoque mdcccxcvi xii h xxxiv m lvi s 18 mdccc 01 i  1 i Mar 061 2413620 03 iii  3 03/01/1896 die i mensis iii annoque mdcccxcvi 96 xcvi 1896}
test clock-2.390 {conversion of 1896-03-31} {
    clock format -2327397904 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Mar March 03/31/1896 12:34:56 die xxxi mensis iii annoque mdcccxcvi xii h xxxiv m lvi s 18 mdccc 31 xxxi 31 xxxi Mar 091 2413650 03 iii  3 03/31/1896 die xxxi mensis iii annoque mdcccxcvi 96 xcvi 1896}
test clock-2.391 {conversion of 1896-04-01} {
    clock format -2327311504 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Apr April 04/01/1896 12:34:56 die i mensis iv annoque mdcccxcvi xii h xxxiv m lvi s 18 mdccc 01 i  1 i Apr 092 2413651 04 iv  4 04/01/1896 die i mensis iv annoque mdcccxcvi 96 xcvi 1896}
test clock-2.392 {conversion of 1896-04-30} {
    clock format -2324805904 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Apr April 04/30/1896 12:34:56 die xxx mensis iv annoque mdcccxcvi xii h xxxiv m lvi s 18 mdccc 30 xxx 30 xxx Apr 121 2413680 04 iv  4 04/30/1896 die xxx mensis iv annoque mdcccxcvi 96 xcvi 1896}
test clock-2.393 {conversion of 1896-05-01} {
    clock format -2324719504 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {May May 05/01/1896 12:34:56 die i mensis v annoque mdcccxcvi xii h xxxiv m lvi s 18 mdccc 01 i  1 i May 122 2413681 05 v  5 05/01/1896 die i mensis v annoque mdcccxcvi 96 xcvi 1896}
test clock-2.394 {conversion of 1896-05-31} {
    clock format -2322127504 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {May May 05/31/1896 12:34:56 die xxxi mensis v annoque mdcccxcvi xii h xxxiv m lvi s 18 mdccc 31 xxxi 31 xxxi May 152 2413711 05 v  5 05/31/1896 die xxxi mensis v annoque mdcccxcvi 96 xcvi 1896}
test clock-2.395 {conversion of 1896-06-01} {
    clock format -2322041104 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Jun June 06/01/1896 12:34:56 die i mensis vi annoque mdcccxcvi xii h xxxiv m lvi s 18 mdccc 01 i  1 i Jun 153 2413712 06 vi  6 06/01/1896 die i mensis vi annoque mdcccxcvi 96 xcvi 1896}
test clock-2.396 {conversion of 1896-06-30} {
    clock format -2319535504 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Jun June 06/30/1896 12:34:56 die xxx mensis vi annoque mdcccxcvi xii h xxxiv m lvi s 18 mdccc 30 xxx 30 xxx Jun 182 2413741 06 vi  6 06/30/1896 die xxx mensis vi annoque mdcccxcvi 96 xcvi 1896}
test clock-2.397 {conversion of 1896-07-01} {
    clock format -2319449104 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Jul July 07/01/1896 12:34:56 die i mensis vii annoque mdcccxcvi xii h xxxiv m lvi s 18 mdccc 01 i  1 i Jul 183 2413742 07 vii  7 07/01/1896 die i mensis vii annoque mdcccxcvi 96 xcvi 1896}
test clock-2.398 {conversion of 1896-07-31} {
    clock format -2316857104 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Jul July 07/31/1896 12:34:56 die xxxi mensis vii annoque mdcccxcvi xii h xxxiv m lvi s 18 mdccc 31 xxxi 31 xxxi Jul 213 2413772 07 vii  7 07/31/1896 die xxxi mensis vii annoque mdcccxcvi 96 xcvi 1896}
test clock-2.399 {conversion of 1896-08-01} {
    clock format -2316770704 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Aug August 08/01/1896 12:34:56 die i mensis viii annoque mdcccxcvi xii h xxxiv m lvi s 18 mdccc 01 i  1 i Aug 214 2413773 08 viii  8 08/01/1896 die i mensis viii annoque mdcccxcvi 96 xcvi 1896}
test clock-2.400 {conversion of 1896-08-31} {
    clock format -2314178704 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Aug August 08/31/1896 12:34:56 die xxxi mensis viii annoque mdcccxcvi xii h xxxiv m lvi s 18 mdccc 31 xxxi 31 xxxi Aug 244 2413803 08 viii  8 08/31/1896 die xxxi mensis viii annoque mdcccxcvi 96 xcvi 1896}
test clock-2.401 {conversion of 1896-09-01} {
    clock format -2314092304 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Sep September 09/01/1896 12:34:56 die i mensis ix annoque mdcccxcvi xii h xxxiv m lvi s 18 mdccc 01 i  1 i Sep 245 2413804 09 ix  9 09/01/1896 die i mensis ix annoque mdcccxcvi 96 xcvi 1896}
test clock-2.402 {conversion of 1896-09-30} {
    clock format -2311586704 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Sep September 09/30/1896 12:34:56 die xxx mensis ix annoque mdcccxcvi xii h xxxiv m lvi s 18 mdccc 30 xxx 30 xxx Sep 274 2413833 09 ix  9 09/30/1896 die xxx mensis ix annoque mdcccxcvi 96 xcvi 1896}
test clock-2.403 {conversion of 1896-10-01} {
    clock format -2311500304 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Oct October 10/01/1896 12:34:56 die i mensis x annoque mdcccxcvi xii h xxxiv m lvi s 18 mdccc 01 i  1 i Oct 275 2413834 10 x 10 10/01/1896 die i mensis x annoque mdcccxcvi 96 xcvi 1896}
test clock-2.404 {conversion of 1896-10-31} {
    clock format -2308908304 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Oct October 10/31/1896 12:34:56 die xxxi mensis x annoque mdcccxcvi xii h xxxiv m lvi s 18 mdccc 31 xxxi 31 xxxi Oct 305 2413864 10 x 10 10/31/1896 die xxxi mensis x annoque mdcccxcvi 96 xcvi 1896}
test clock-2.405 {conversion of 1896-11-01} {
    clock format -2308821904 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Nov November 11/01/1896 12:34:56 die i mensis xi annoque mdcccxcvi xii h xxxiv m lvi s 18 mdccc 01 i  1 i Nov 306 2413865 11 xi 11 11/01/1896 die i mensis xi annoque mdcccxcvi 96 xcvi 1896}
test clock-2.406 {conversion of 1896-11-30} {
    clock format -2306316304 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Nov November 11/30/1896 12:34:56 die xxx mensis xi annoque mdcccxcvi xii h xxxiv m lvi s 18 mdccc 30 xxx 30 xxx Nov 335 2413894 11 xi 11 11/30/1896 die xxx mensis xi annoque mdcccxcvi 96 xcvi 1896}
test clock-2.407 {conversion of 1896-12-01} {
    clock format -2306229904 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Dec December 12/01/1896 12:34:56 die i mensis xii annoque mdcccxcvi xii h xxxiv m lvi s 18 mdccc 01 i  1 i Dec 336 2413895 12 xii 12 12/01/1896 die i mensis xii annoque mdcccxcvi 96 xcvi 1896}
test clock-2.408 {conversion of 1896-12-31} {
    clock format -2303637904 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Dec December 12/31/1896 12:34:56 die xxxi mensis xii annoque mdcccxcvi xii h xxxiv m lvi s 18 mdccc 31 xxxi 31 xxxi Dec 366 2413925 12 xii 12 12/31/1896 die xxxi mensis xii annoque mdcccxcvi 96 xcvi 1896}
test clock-2.409 {conversion of 1897-01-01} {
    clock format -2303551504 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Jan January 01/01/1897 12:34:56 die i mensis i annoque mdcccxcvii xii h xxxiv m lvi s 18 mdccc 01 i  1 i Jan 001 2413926 01 i  1 01/01/1897 die i mensis i annoque mdcccxcvii 97 xcvii 1897}
test clock-2.410 {conversion of 1897-01-31} {
    clock format -2300959504 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Jan January 01/31/1897 12:34:56 die xxxi mensis i annoque mdcccxcvii xii h xxxiv m lvi s 18 mdccc 31 xxxi 31 xxxi Jan 031 2413956 01 i  1 01/31/1897 die xxxi mensis i annoque mdcccxcvii 97 xcvii 1897}
test clock-2.411 {conversion of 1897-02-01} {
    clock format -2300873104 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Feb February 02/01/1897 12:34:56 die i mensis ii annoque mdcccxcvii xii h xxxiv m lvi s 18 mdccc 01 i  1 i Feb 032 2413957 02 ii  2 02/01/1897 die i mensis ii annoque mdcccxcvii 97 xcvii 1897}
test clock-2.412 {conversion of 1897-02-28} {
    clock format -2298540304 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Feb February 02/28/1897 12:34:56 die xxviii mensis ii annoque mdcccxcvii xii h xxxiv m lvi s 18 mdccc 28 xxviii 28 xxviii Feb 059 2413984 02 ii  2 02/28/1897 die xxviii mensis ii annoque mdcccxcvii 97 xcvii 1897}
test clock-2.413 {conversion of 1897-03-01} {
    clock format -2298453904 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Mar March 03/01/1897 12:34:56 die i mensis iii annoque mdcccxcvii xii h xxxiv m lvi s 18 mdccc 01 i  1 i Mar 060 2413985 03 iii  3 03/01/1897 die i mensis iii annoque mdcccxcvii 97 xcvii 1897}
test clock-2.414 {conversion of 1897-03-31} {
    clock format -2295861904 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Mar March 03/31/1897 12:34:56 die xxxi mensis iii annoque mdcccxcvii xii h xxxiv m lvi s 18 mdccc 31 xxxi 31 xxxi Mar 090 2414015 03 iii  3 03/31/1897 die xxxi mensis iii annoque mdcccxcvii 97 xcvii 1897}
test clock-2.415 {conversion of 1897-04-01} {
    clock format -2295775504 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Apr April 04/01/1897 12:34:56 die i mensis iv annoque mdcccxcvii xii h xxxiv m lvi s 18 mdccc 01 i  1 i Apr 091 2414016 04 iv  4 04/01/1897 die i mensis iv annoque mdcccxcvii 97 xcvii 1897}
test clock-2.416 {conversion of 1897-04-30} {
    clock format -2293269904 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Apr April 04/30/1897 12:34:56 die xxx mensis iv annoque mdcccxcvii xii h xxxiv m lvi s 18 mdccc 30 xxx 30 xxx Apr 120 2414045 04 iv  4 04/30/1897 die xxx mensis iv annoque mdcccxcvii 97 xcvii 1897}
test clock-2.417 {conversion of 1897-05-01} {
    clock format -2293183504 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {May May 05/01/1897 12:34:56 die i mensis v annoque mdcccxcvii xii h xxxiv m lvi s 18 mdccc 01 i  1 i May 121 2414046 05 v  5 05/01/1897 die i mensis v annoque mdcccxcvii 97 xcvii 1897}
test clock-2.418 {conversion of 1897-05-31} {
    clock format -2290591504 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {May May 05/31/1897 12:34:56 die xxxi mensis v annoque mdcccxcvii xii h xxxiv m lvi s 18 mdccc 31 xxxi 31 xxxi May 151 2414076 05 v  5 05/31/1897 die xxxi mensis v annoque mdcccxcvii 97 xcvii 1897}
test clock-2.419 {conversion of 1897-06-01} {
    clock format -2290505104 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Jun June 06/01/1897 12:34:56 die i mensis vi annoque mdcccxcvii xii h xxxiv m lvi s 18 mdccc 01 i  1 i Jun 152 2414077 06 vi  6 06/01/1897 die i mensis vi annoque mdcccxcvii 97 xcvii 1897}
test clock-2.420 {conversion of 1897-06-30} {
    clock format -2287999504 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Jun June 06/30/1897 12:34:56 die xxx mensis vi annoque mdcccxcvii xii h xxxiv m lvi s 18 mdccc 30 xxx 30 xxx Jun 181 2414106 06 vi  6 06/30/1897 die xxx mensis vi annoque mdcccxcvii 97 xcvii 1897}
test clock-2.421 {conversion of 1897-07-01} {
    clock format -2287913104 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Jul July 07/01/1897 12:34:56 die i mensis vii annoque mdcccxcvii xii h xxxiv m lvi s 18 mdccc 01 i  1 i Jul 182 2414107 07 vii  7 07/01/1897 die i mensis vii annoque mdcccxcvii 97 xcvii 1897}
test clock-2.422 {conversion of 1897-07-31} {
    clock format -2285321104 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Jul July 07/31/1897 12:34:56 die xxxi mensis vii annoque mdcccxcvii xii h xxxiv m lvi s 18 mdccc 31 xxxi 31 xxxi Jul 212 2414137 07 vii  7 07/31/1897 die xxxi mensis vii annoque mdcccxcvii 97 xcvii 1897}
test clock-2.423 {conversion of 1897-08-01} {
    clock format -2285234704 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Aug August 08/01/1897 12:34:56 die i mensis viii annoque mdcccxcvii xii h xxxiv m lvi s 18 mdccc 01 i  1 i Aug 213 2414138 08 viii  8 08/01/1897 die i mensis viii annoque mdcccxcvii 97 xcvii 1897}
test clock-2.424 {conversion of 1897-08-31} {
    clock format -2282642704 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Aug August 08/31/1897 12:34:56 die xxxi mensis viii annoque mdcccxcvii xii h xxxiv m lvi s 18 mdccc 31 xxxi 31 xxxi Aug 243 2414168 08 viii  8 08/31/1897 die xxxi mensis viii annoque mdcccxcvii 97 xcvii 1897}
test clock-2.425 {conversion of 1897-09-01} {
    clock format -2282556304 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Sep September 09/01/1897 12:34:56 die i mensis ix annoque mdcccxcvii xii h xxxiv m lvi s 18 mdccc 01 i  1 i Sep 244 2414169 09 ix  9 09/01/1897 die i mensis ix annoque mdcccxcvii 97 xcvii 1897}
test clock-2.426 {conversion of 1897-09-30} {
    clock format -2280050704 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Sep September 09/30/1897 12:34:56 die xxx mensis ix annoque mdcccxcvii xii h xxxiv m lvi s 18 mdccc 30 xxx 30 xxx Sep 273 2414198 09 ix  9 09/30/1897 die xxx mensis ix annoque mdcccxcvii 97 xcvii 1897}
test clock-2.427 {conversion of 1897-10-01} {
    clock format -2279964304 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Oct October 10/01/1897 12:34:56 die i mensis x annoque mdcccxcvii xii h xxxiv m lvi s 18 mdccc 01 i  1 i Oct 274 2414199 10 x 10 10/01/1897 die i mensis x annoque mdcccxcvii 97 xcvii 1897}
test clock-2.428 {conversion of 1897-10-31} {
    clock format -2277372304 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Oct October 10/31/1897 12:34:56 die xxxi mensis x annoque mdcccxcvii xii h xxxiv m lvi s 18 mdccc 31 xxxi 31 xxxi Oct 304 2414229 10 x 10 10/31/1897 die xxxi mensis x annoque mdcccxcvii 97 xcvii 1897}
test clock-2.429 {conversion of 1897-11-01} {
    clock format -2277285904 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Nov November 11/01/1897 12:34:56 die i mensis xi annoque mdcccxcvii xii h xxxiv m lvi s 18 mdccc 01 i  1 i Nov 305 2414230 11 xi 11 11/01/1897 die i mensis xi annoque mdcccxcvii 97 xcvii 1897}
test clock-2.430 {conversion of 1897-11-30} {
    clock format -2274780304 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Nov November 11/30/1897 12:34:56 die xxx mensis xi annoque mdcccxcvii xii h xxxiv m lvi s 18 mdccc 30 xxx 30 xxx Nov 334 2414259 11 xi 11 11/30/1897 die xxx mensis xi annoque mdcccxcvii 97 xcvii 1897}
test clock-2.431 {conversion of 1897-12-01} {
    clock format -2274693904 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Dec December 12/01/1897 12:34:56 die i mensis xii annoque mdcccxcvii xii h xxxiv m lvi s 18 mdccc 01 i  1 i Dec 335 2414260 12 xii 12 12/01/1897 die i mensis xii annoque mdcccxcvii 97 xcvii 1897}
test clock-2.432 {conversion of 1897-12-31} {
    clock format -2272101904 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Dec December 12/31/1897 12:34:56 die xxxi mensis xii annoque mdcccxcvii xii h xxxiv m lvi s 18 mdccc 31 xxxi 31 xxxi Dec 365 2414290 12 xii 12 12/31/1897 die xxxi mensis xii annoque mdcccxcvii 97 xcvii 1897}
test clock-2.433 {conversion of 1898-01-01} {
    clock format -2272015504 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Jan January 01/01/1898 12:34:56 die i mensis i annoque mdcccxcviii xii h xxxiv m lvi s 18 mdccc 01 i  1 i Jan 001 2414291 01 i  1 01/01/1898 die i mensis i annoque mdcccxcviii 98 xcviii 1898}
test clock-2.434 {conversion of 1898-01-31} {
    clock format -2269423504 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Jan January 01/31/1898 12:34:56 die xxxi mensis i annoque mdcccxcviii xii h xxxiv m lvi s 18 mdccc 31 xxxi 31 xxxi Jan 031 2414321 01 i  1 01/31/1898 die xxxi mensis i annoque mdcccxcviii 98 xcviii 1898}
test clock-2.435 {conversion of 1898-02-01} {
    clock format -2269337104 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Feb February 02/01/1898 12:34:56 die i mensis ii annoque mdcccxcviii xii h xxxiv m lvi s 18 mdccc 01 i  1 i Feb 032 2414322 02 ii  2 02/01/1898 die i mensis ii annoque mdcccxcviii 98 xcviii 1898}
test clock-2.436 {conversion of 1898-02-28} {
    clock format -2267004304 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Feb February 02/28/1898 12:34:56 die xxviii mensis ii annoque mdcccxcviii xii h xxxiv m lvi s 18 mdccc 28 xxviii 28 xxviii Feb 059 2414349 02 ii  2 02/28/1898 die xxviii mensis ii annoque mdcccxcviii 98 xcviii 1898}
test clock-2.437 {conversion of 1898-03-01} {
    clock format -2266917904 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Mar March 03/01/1898 12:34:56 die i mensis iii annoque mdcccxcviii xii h xxxiv m lvi s 18 mdccc 01 i  1 i Mar 060 2414350 03 iii  3 03/01/1898 die i mensis iii annoque mdcccxcviii 98 xcviii 1898}
test clock-2.438 {conversion of 1898-03-31} {
    clock format -2264325904 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Mar March 03/31/1898 12:34:56 die xxxi mensis iii annoque mdcccxcviii xii h xxxiv m lvi s 18 mdccc 31 xxxi 31 xxxi Mar 090 2414380 03 iii  3 03/31/1898 die xxxi mensis iii annoque mdcccxcviii 98 xcviii 1898}
test clock-2.439 {conversion of 1898-04-01} {
    clock format -2264239504 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Apr April 04/01/1898 12:34:56 die i mensis iv annoque mdcccxcviii xii h xxxiv m lvi s 18 mdccc 01 i  1 i Apr 091 2414381 04 iv  4 04/01/1898 die i mensis iv annoque mdcccxcviii 98 xcviii 1898}
test clock-2.440 {conversion of 1898-04-30} {
    clock format -2261733904 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Apr April 04/30/1898 12:34:56 die xxx mensis iv annoque mdcccxcviii xii h xxxiv m lvi s 18 mdccc 30 xxx 30 xxx Apr 120 2414410 04 iv  4 04/30/1898 die xxx mensis iv annoque mdcccxcviii 98 xcviii 1898}
test clock-2.441 {conversion of 1898-05-01} {
    clock format -2261647504 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {May May 05/01/1898 12:34:56 die i mensis v annoque mdcccxcviii xii h xxxiv m lvi s 18 mdccc 01 i  1 i May 121 2414411 05 v  5 05/01/1898 die i mensis v annoque mdcccxcviii 98 xcviii 1898}
test clock-2.442 {conversion of 1898-05-31} {
    clock format -2259055504 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {May May 05/31/1898 12:34:56 die xxxi mensis v annoque mdcccxcviii xii h xxxiv m lvi s 18 mdccc 31 xxxi 31 xxxi May 151 2414441 05 v  5 05/31/1898 die xxxi mensis v annoque mdcccxcviii 98 xcviii 1898}
test clock-2.443 {conversion of 1898-06-01} {
    clock format -2258969104 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Jun June 06/01/1898 12:34:56 die i mensis vi annoque mdcccxcviii xii h xxxiv m lvi s 18 mdccc 01 i  1 i Jun 152 2414442 06 vi  6 06/01/1898 die i mensis vi annoque mdcccxcviii 98 xcviii 1898}
test clock-2.444 {conversion of 1898-06-30} {
    clock format -2256463504 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Jun June 06/30/1898 12:34:56 die xxx mensis vi annoque mdcccxcviii xii h xxxiv m lvi s 18 mdccc 30 xxx 30 xxx Jun 181 2414471 06 vi  6 06/30/1898 die xxx mensis vi annoque mdcccxcviii 98 xcviii 1898}
test clock-2.445 {conversion of 1898-07-01} {
    clock format -2256377104 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Jul July 07/01/1898 12:34:56 die i mensis vii annoque mdcccxcviii xii h xxxiv m lvi s 18 mdccc 01 i  1 i Jul 182 2414472 07 vii  7 07/01/1898 die i mensis vii annoque mdcccxcviii 98 xcviii 1898}
test clock-2.446 {conversion of 1898-07-31} {
    clock format -2253785104 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Jul July 07/31/1898 12:34:56 die xxxi mensis vii annoque mdcccxcviii xii h xxxiv m lvi s 18 mdccc 31 xxxi 31 xxxi Jul 212 2414502 07 vii  7 07/31/1898 die xxxi mensis vii annoque mdcccxcviii 98 xcviii 1898}
test clock-2.447 {conversion of 1898-08-01} {
    clock format -2253698704 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Aug August 08/01/1898 12:34:56 die i mensis viii annoque mdcccxcviii xii h xxxiv m lvi s 18 mdccc 01 i  1 i Aug 213 2414503 08 viii  8 08/01/1898 die i mensis viii annoque mdcccxcviii 98 xcviii 1898}
test clock-2.448 {conversion of 1898-08-31} {
    clock format -2251106704 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Aug August 08/31/1898 12:34:56 die xxxi mensis viii annoque mdcccxcviii xii h xxxiv m lvi s 18 mdccc 31 xxxi 31 xxxi Aug 243 2414533 08 viii  8 08/31/1898 die xxxi mensis viii annoque mdcccxcviii 98 xcviii 1898}
test clock-2.449 {conversion of 1898-09-01} {
    clock format -2251020304 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Sep September 09/01/1898 12:34:56 die i mensis ix annoque mdcccxcviii xii h xxxiv m lvi s 18 mdccc 01 i  1 i Sep 244 2414534 09 ix  9 09/01/1898 die i mensis ix annoque mdcccxcviii 98 xcviii 1898}
test clock-2.450 {conversion of 1898-09-30} {
    clock format -2248514704 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Sep September 09/30/1898 12:34:56 die xxx mensis ix annoque mdcccxcviii xii h xxxiv m lvi s 18 mdccc 30 xxx 30 xxx Sep 273 2414563 09 ix  9 09/30/1898 die xxx mensis ix annoque mdcccxcviii 98 xcviii 1898}
test clock-2.451 {conversion of 1898-10-01} {
    clock format -2248428304 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Oct October 10/01/1898 12:34:56 die i mensis x annoque mdcccxcviii xii h xxxiv m lvi s 18 mdccc 01 i  1 i Oct 274 2414564 10 x 10 10/01/1898 die i mensis x annoque mdcccxcviii 98 xcviii 1898}
test clock-2.452 {conversion of 1898-10-31} {
    clock format -2245836304 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Oct October 10/31/1898 12:34:56 die xxxi mensis x annoque mdcccxcviii xii h xxxiv m lvi s 18 mdccc 31 xxxi 31 xxxi Oct 304 2414594 10 x 10 10/31/1898 die xxxi mensis x annoque mdcccxcviii 98 xcviii 1898}
test clock-2.453 {conversion of 1898-11-01} {
    clock format -2245749904 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Nov November 11/01/1898 12:34:56 die i mensis xi annoque mdcccxcviii xii h xxxiv m lvi s 18 mdccc 01 i  1 i Nov 305 2414595 11 xi 11 11/01/1898 die i mensis xi annoque mdcccxcviii 98 xcviii 1898}
test clock-2.454 {conversion of 1898-11-30} {
    clock format -2243244304 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Nov November 11/30/1898 12:34:56 die xxx mensis xi annoque mdcccxcviii xii h xxxiv m lvi s 18 mdccc 30 xxx 30 xxx Nov 334 2414624 11 xi 11 11/30/1898 die xxx mensis xi annoque mdcccxcviii 98 xcviii 1898}
test clock-2.455 {conversion of 1898-12-01} {
    clock format -2243157904 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Dec December 12/01/1898 12:34:56 die i mensis xii annoque mdcccxcviii xii h xxxiv m lvi s 18 mdccc 01 i  1 i Dec 335 2414625 12 xii 12 12/01/1898 die i mensis xii annoque mdcccxcviii 98 xcviii 1898}
test clock-2.456 {conversion of 1898-12-31} {
    clock format -2240565904 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Dec December 12/31/1898 12:34:56 die xxxi mensis xii annoque mdcccxcviii xii h xxxiv m lvi s 18 mdccc 31 xxxi 31 xxxi Dec 365 2414655 12 xii 12 12/31/1898 die xxxi mensis xii annoque mdcccxcviii 98 xcviii 1898}
test clock-2.457 {conversion of 1899-01-01} {
    clock format -2240479504 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Jan January 01/01/1899 12:34:56 die i mensis i annoque mdcccxcix xii h xxxiv m lvi s 18 mdccc 01 i  1 i Jan 001 2414656 01 i  1 01/01/1899 die i mensis i annoque mdcccxcix 99 xcix 1899}
test clock-2.458 {conversion of 1899-01-31} {
    clock format -2237887504 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Jan January 01/31/1899 12:34:56 die xxxi mensis i annoque mdcccxcix xii h xxxiv m lvi s 18 mdccc 31 xxxi 31 xxxi Jan 031 2414686 01 i  1 01/31/1899 die xxxi mensis i annoque mdcccxcix 99 xcix 1899}
test clock-2.459 {conversion of 1899-02-01} {
    clock format -2237801104 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Feb February 02/01/1899 12:34:56 die i mensis ii annoque mdcccxcix xii h xxxiv m lvi s 18 mdccc 01 i  1 i Feb 032 2414687 02 ii  2 02/01/1899 die i mensis ii annoque mdcccxcix 99 xcix 1899}
test clock-2.460 {conversion of 1899-02-28} {
    clock format -2235468304 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Feb February 02/28/1899 12:34:56 die xxviii mensis ii annoque mdcccxcix xii h xxxiv m lvi s 18 mdccc 28 xxviii 28 xxviii Feb 059 2414714 02 ii  2 02/28/1899 die xxviii mensis ii annoque mdcccxcix 99 xcix 1899}
test clock-2.461 {conversion of 1899-03-01} {
    clock format -2235381904 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Mar March 03/01/1899 12:34:56 die i mensis iii annoque mdcccxcix xii h xxxiv m lvi s 18 mdccc 01 i  1 i Mar 060 2414715 03 iii  3 03/01/1899 die i mensis iii annoque mdcccxcix 99 xcix 1899}
test clock-2.462 {conversion of 1899-03-31} {
    clock format -2232789904 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Mar March 03/31/1899 12:34:56 die xxxi mensis iii annoque mdcccxcix xii h xxxiv m lvi s 18 mdccc 31 xxxi 31 xxxi Mar 090 2414745 03 iii  3 03/31/1899 die xxxi mensis iii annoque mdcccxcix 99 xcix 1899}
test clock-2.463 {conversion of 1899-04-01} {
    clock format -2232703504 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Apr April 04/01/1899 12:34:56 die i mensis iv annoque mdcccxcix xii h xxxiv m lvi s 18 mdccc 01 i  1 i Apr 091 2414746 04 iv  4 04/01/1899 die i mensis iv annoque mdcccxcix 99 xcix 1899}
test clock-2.464 {conversion of 1899-04-30} {
    clock format -2230197904 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Apr April 04/30/1899 12:34:56 die xxx mensis iv annoque mdcccxcix xii h xxxiv m lvi s 18 mdccc 30 xxx 30 xxx Apr 120 2414775 04 iv  4 04/30/1899 die xxx mensis iv annoque mdcccxcix 99 xcix 1899}
test clock-2.465 {conversion of 1899-05-01} {
    clock format -2230111504 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {May May 05/01/1899 12:34:56 die i mensis v annoque mdcccxcix xii h xxxiv m lvi s 18 mdccc 01 i  1 i May 121 2414776 05 v  5 05/01/1899 die i mensis v annoque mdcccxcix 99 xcix 1899}
test clock-2.466 {conversion of 1899-05-31} {
    clock format -2227519504 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {May May 05/31/1899 12:34:56 die xxxi mensis v annoque mdcccxcix xii h xxxiv m lvi s 18 mdccc 31 xxxi 31 xxxi May 151 2414806 05 v  5 05/31/1899 die xxxi mensis v annoque mdcccxcix 99 xcix 1899}
test clock-2.467 {conversion of 1899-06-01} {
    clock format -2227433104 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Jun June 06/01/1899 12:34:56 die i mensis vi annoque mdcccxcix xii h xxxiv m lvi s 18 mdccc 01 i  1 i Jun 152 2414807 06 vi  6 06/01/1899 die i mensis vi annoque mdcccxcix 99 xcix 1899}
test clock-2.468 {conversion of 1899-06-30} {
    clock format -2224927504 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Jun June 06/30/1899 12:34:56 die xxx mensis vi annoque mdcccxcix xii h xxxiv m lvi s 18 mdccc 30 xxx 30 xxx Jun 181 2414836 06 vi  6 06/30/1899 die xxx mensis vi annoque mdcccxcix 99 xcix 1899}
test clock-2.469 {conversion of 1899-07-01} {
    clock format -2224841104 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Jul July 07/01/1899 12:34:56 die i mensis vii annoque mdcccxcix xii h xxxiv m lvi s 18 mdccc 01 i  1 i Jul 182 2414837 07 vii  7 07/01/1899 die i mensis vii annoque mdcccxcix 99 xcix 1899}
test clock-2.470 {conversion of 1899-07-31} {
    clock format -2222249104 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Jul July 07/31/1899 12:34:56 die xxxi mensis vii annoque mdcccxcix xii h xxxiv m lvi s 18 mdccc 31 xxxi 31 xxxi Jul 212 2414867 07 vii  7 07/31/1899 die xxxi mensis vii annoque mdcccxcix 99 xcix 1899}
test clock-2.471 {conversion of 1899-08-01} {
    clock format -2222162704 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Aug August 08/01/1899 12:34:56 die i mensis viii annoque mdcccxcix xii h xxxiv m lvi s 18 mdccc 01 i  1 i Aug 213 2414868 08 viii  8 08/01/1899 die i mensis viii annoque mdcccxcix 99 xcix 1899}
test clock-2.472 {conversion of 1899-08-31} {
    clock format -2219570704 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Aug August 08/31/1899 12:34:56 die xxxi mensis viii annoque mdcccxcix xii h xxxiv m lvi s 18 mdccc 31 xxxi 31 xxxi Aug 243 2414898 08 viii  8 08/31/1899 die xxxi mensis viii annoque mdcccxcix 99 xcix 1899}
test clock-2.473 {conversion of 1899-09-01} {
    clock format -2219484304 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Sep September 09/01/1899 12:34:56 die i mensis ix annoque mdcccxcix xii h xxxiv m lvi s 18 mdccc 01 i  1 i Sep 244 2414899 09 ix  9 09/01/1899 die i mensis ix annoque mdcccxcix 99 xcix 1899}
test clock-2.474 {conversion of 1899-09-30} {
    clock format -2216978704 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Sep September 09/30/1899 12:34:56 die xxx mensis ix annoque mdcccxcix xii h xxxiv m lvi s 18 mdccc 30 xxx 30 xxx Sep 273 2414928 09 ix  9 09/30/1899 die xxx mensis ix annoque mdcccxcix 99 xcix 1899}
test clock-2.475 {conversion of 1899-10-01} {
    clock format -2216892304 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Oct October 10/01/1899 12:34:56 die i mensis x annoque mdcccxcix xii h xxxiv m lvi s 18 mdccc 01 i  1 i Oct 274 2414929 10 x 10 10/01/1899 die i mensis x annoque mdcccxcix 99 xcix 1899}
test clock-2.476 {conversion of 1899-10-31} {
    clock format -2214300304 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Oct October 10/31/1899 12:34:56 die xxxi mensis x annoque mdcccxcix xii h xxxiv m lvi s 18 mdccc 31 xxxi 31 xxxi Oct 304 2414959 10 x 10 10/31/1899 die xxxi mensis x annoque mdcccxcix 99 xcix 1899}
test clock-2.477 {conversion of 1899-11-01} {
    clock format -2214213904 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Nov November 11/01/1899 12:34:56 die i mensis xi annoque mdcccxcix xii h xxxiv m lvi s 18 mdccc 01 i  1 i Nov 305 2414960 11 xi 11 11/01/1899 die i mensis xi annoque mdcccxcix 99 xcix 1899}
test clock-2.478 {conversion of 1899-11-30} {
    clock format -2211708304 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Nov November 11/30/1899 12:34:56 die xxx mensis xi annoque mdcccxcix xii h xxxiv m lvi s 18 mdccc 30 xxx 30 xxx Nov 334 2414989 11 xi 11 11/30/1899 die xxx mensis xi annoque mdcccxcix 99 xcix 1899}
test clock-2.479 {conversion of 1899-12-01} {
    clock format -2211621904 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Dec December 12/01/1899 12:34:56 die i mensis xii annoque mdcccxcix xii h xxxiv m lvi s 18 mdccc 01 i  1 i Dec 335 2414990 12 xii 12 12/01/1899 die i mensis xii annoque mdcccxcix 99 xcix 1899}
test clock-2.480 {conversion of 1899-12-31} {
    clock format -2209029904 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Dec December 12/31/1899 12:34:56 die xxxi mensis xii annoque mdcccxcix xii h xxxiv m lvi s 18 mdccc 31 xxxi 31 xxxi Dec 365 2415020 12 xii 12 12/31/1899 die xxxi mensis xii annoque mdcccxcix 99 xcix 1899}
test clock-2.481 {conversion of 1900-01-01} {
    clock format -2208943504 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Jan January 01/01/1900 12:34:56 die i mensis i annoque mcm? xii h xxxiv m lvi s 19 mcm 01 i  1 i Jan 001 2415021 01 i  1 01/01/1900 die i mensis i annoque mcm? 00 ? 1900}
test clock-2.482 {conversion of 1900-01-31} {
    clock format -2206351504 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Jan January 01/31/1900 12:34:56 die xxxi mensis i annoque mcm? xii h xxxiv m lvi s 19 mcm 31 xxxi 31 xxxi Jan 031 2415051 01 i  1 01/31/1900 die xxxi mensis i annoque mcm? 00 ? 1900}
test clock-2.483 {conversion of 1900-02-01} {
    clock format -2206265104 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Feb February 02/01/1900 12:34:56 die i mensis ii annoque mcm? xii h xxxiv m lvi s 19 mcm 01 i  1 i Feb 032 2415052 02 ii  2 02/01/1900 die i mensis ii annoque mcm? 00 ? 1900}
test clock-2.484 {conversion of 1900-02-28} {
    clock format -2203932304 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Feb February 02/28/1900 12:34:56 die xxviii mensis ii annoque mcm? xii h xxxiv m lvi s 19 mcm 28 xxviii 28 xxviii Feb 059 2415079 02 ii  2 02/28/1900 die xxviii mensis ii annoque mcm? 00 ? 1900}
test clock-2.485 {conversion of 1900-03-01} {
    clock format -2203845904 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Mar March 03/01/1900 12:34:56 die i mensis iii annoque mcm? xii h xxxiv m lvi s 19 mcm 01 i  1 i Mar 060 2415080 03 iii  3 03/01/1900 die i mensis iii annoque mcm? 00 ? 1900}
test clock-2.486 {conversion of 1900-03-31} {
    clock format -2201253904 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Mar March 03/31/1900 12:34:56 die xxxi mensis iii annoque mcm? xii h xxxiv m lvi s 19 mcm 31 xxxi 31 xxxi Mar 090 2415110 03 iii  3 03/31/1900 die xxxi mensis iii annoque mcm? 00 ? 1900}
test clock-2.487 {conversion of 1900-04-01} {
    clock format -2201167504 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Apr April 04/01/1900 12:34:56 die i mensis iv annoque mcm? xii h xxxiv m lvi s 19 mcm 01 i  1 i Apr 091 2415111 04 iv  4 04/01/1900 die i mensis iv annoque mcm? 00 ? 1900}
test clock-2.488 {conversion of 1900-04-30} {
    clock format -2198661904 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Apr April 04/30/1900 12:34:56 die xxx mensis iv annoque mcm? xii h xxxiv m lvi s 19 mcm 30 xxx 30 xxx Apr 120 2415140 04 iv  4 04/30/1900 die xxx mensis iv annoque mcm? 00 ? 1900}
test clock-2.489 {conversion of 1900-05-01} {
    clock format -2198575504 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {May May 05/01/1900 12:34:56 die i mensis v annoque mcm? xii h xxxiv m lvi s 19 mcm 01 i  1 i May 121 2415141 05 v  5 05/01/1900 die i mensis v annoque mcm? 00 ? 1900}
test clock-2.490 {conversion of 1900-05-31} {
    clock format -2195983504 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {May May 05/31/1900 12:34:56 die xxxi mensis v annoque mcm? xii h xxxiv m lvi s 19 mcm 31 xxxi 31 xxxi May 151 2415171 05 v  5 05/31/1900 die xxxi mensis v annoque mcm? 00 ? 1900}
test clock-2.491 {conversion of 1900-06-01} {
    clock format -2195897104 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Jun June 06/01/1900 12:34:56 die i mensis vi annoque mcm? xii h xxxiv m lvi s 19 mcm 01 i  1 i Jun 152 2415172 06 vi  6 06/01/1900 die i mensis vi annoque mcm? 00 ? 1900}
test clock-2.492 {conversion of 1900-06-30} {
    clock format -2193391504 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Jun June 06/30/1900 12:34:56 die xxx mensis vi annoque mcm? xii h xxxiv m lvi s 19 mcm 30 xxx 30 xxx Jun 181 2415201 06 vi  6 06/30/1900 die xxx mensis vi annoque mcm? 00 ? 1900}
test clock-2.493 {conversion of 1900-07-01} {
    clock format -2193305104 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Jul July 07/01/1900 12:34:56 die i mensis vii annoque mcm? xii h xxxiv m lvi s 19 mcm 01 i  1 i Jul 182 2415202 07 vii  7 07/01/1900 die i mensis vii annoque mcm? 00 ? 1900}
test clock-2.494 {conversion of 1900-07-31} {
    clock format -2190713104 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Jul July 07/31/1900 12:34:56 die xxxi mensis vii annoque mcm? xii h xxxiv m lvi s 19 mcm 31 xxxi 31 xxxi Jul 212 2415232 07 vii  7 07/31/1900 die xxxi mensis vii annoque mcm? 00 ? 1900}
test clock-2.495 {conversion of 1900-08-01} {
    clock format -2190626704 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Aug August 08/01/1900 12:34:56 die i mensis viii annoque mcm? xii h xxxiv m lvi s 19 mcm 01 i  1 i Aug 213 2415233 08 viii  8 08/01/1900 die i mensis viii annoque mcm? 00 ? 1900}
test clock-2.496 {conversion of 1900-08-31} {
    clock format -2188034704 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Aug August 08/31/1900 12:34:56 die xxxi mensis viii annoque mcm? xii h xxxiv m lvi s 19 mcm 31 xxxi 31 xxxi Aug 243 2415263 08 viii  8 08/31/1900 die xxxi mensis viii annoque mcm? 00 ? 1900}
test clock-2.497 {conversion of 1900-09-01} {
    clock format -2187948304 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Sep September 09/01/1900 12:34:56 die i mensis ix annoque mcm? xii h xxxiv m lvi s 19 mcm 01 i  1 i Sep 244 2415264 09 ix  9 09/01/1900 die i mensis ix annoque mcm? 00 ? 1900}
test clock-2.498 {conversion of 1900-09-30} {
    clock format -2185442704 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Sep September 09/30/1900 12:34:56 die xxx mensis ix annoque mcm? xii h xxxiv m lvi s 19 mcm 30 xxx 30 xxx Sep 273 2415293 09 ix  9 09/30/1900 die xxx mensis ix annoque mcm? 00 ? 1900}
test clock-2.499 {conversion of 1900-10-01} {
    clock format -2185356304 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Oct October 10/01/1900 12:34:56 die i mensis x annoque mcm? xii h xxxiv m lvi s 19 mcm 01 i  1 i Oct 274 2415294 10 x 10 10/01/1900 die i mensis x annoque mcm? 00 ? 1900}
test clock-2.500 {conversion of 1900-10-31} {
    clock format -2182764304 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Oct October 10/31/1900 12:34:56 die xxxi mensis x annoque mcm? xii h xxxiv m lvi s 19 mcm 31 xxxi 31 xxxi Oct 304 2415324 10 x 10 10/31/1900 die xxxi mensis x annoque mcm? 00 ? 1900}
test clock-2.501 {conversion of 1900-11-01} {
    clock format -2182677904 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Nov November 11/01/1900 12:34:56 die i mensis xi annoque mcm? xii h xxxiv m lvi s 19 mcm 01 i  1 i Nov 305 2415325 11 xi 11 11/01/1900 die i mensis xi annoque mcm? 00 ? 1900}
test clock-2.502 {conversion of 1900-11-30} {
    clock format -2180172304 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Nov November 11/30/1900 12:34:56 die xxx mensis xi annoque mcm? xii h xxxiv m lvi s 19 mcm 30 xxx 30 xxx Nov 334 2415354 11 xi 11 11/30/1900 die xxx mensis xi annoque mcm? 00 ? 1900}
test clock-2.503 {conversion of 1900-12-01} {
    clock format -2180085904 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Dec December 12/01/1900 12:34:56 die i mensis xii annoque mcm? xii h xxxiv m lvi s 19 mcm 01 i  1 i Dec 335 2415355 12 xii 12 12/01/1900 die i mensis xii annoque mcm? 00 ? 1900}
test clock-2.504 {conversion of 1900-12-31} {
    clock format -2177493904 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Dec December 12/31/1900 12:34:56 die xxxi mensis xii annoque mcm? xii h xxxiv m lvi s 19 mcm 31 xxxi 31 xxxi Dec 365 2415385 12 xii 12 12/31/1900 die xxxi mensis xii annoque mcm? 00 ? 1900}
test clock-2.505 {conversion of 1944-01-01} {
    clock format -820495504 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Jan January 01/01/1944 12:34:56 die i mensis i annoque mcmxliv xii h xxxiv m lvi s 19 mcm 01 i  1 i Jan 001 2431091 01 i  1 01/01/1944 die i mensis i annoque mcmxliv 44 xliv 1944}
test clock-2.506 {conversion of 1944-01-31} {
    clock format -817903504 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Jan January 01/31/1944 12:34:56 die xxxi mensis i annoque mcmxliv xii h xxxiv m lvi s 19 mcm 31 xxxi 31 xxxi Jan 031 2431121 01 i  1 01/31/1944 die xxxi mensis i annoque mcmxliv 44 xliv 1944}
test clock-2.507 {conversion of 1944-02-01} {
    clock format -817817104 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Feb February 02/01/1944 12:34:56 die i mensis ii annoque mcmxliv xii h xxxiv m lvi s 19 mcm 01 i  1 i Feb 032 2431122 02 ii  2 02/01/1944 die i mensis ii annoque mcmxliv 44 xliv 1944}
test clock-2.508 {conversion of 1944-02-29} {
    clock format -815397904 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Feb February 02/29/1944 12:34:56 die xxix mensis ii annoque mcmxliv xii h xxxiv m lvi s 19 mcm 29 xxix 29 xxix Feb 060 2431150 02 ii  2 02/29/1944 die xxix mensis ii annoque mcmxliv 44 xliv 1944}
test clock-2.509 {conversion of 1944-03-01} {
    clock format -815311504 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Mar March 03/01/1944 12:34:56 die i mensis iii annoque mcmxliv xii h xxxiv m lvi s 19 mcm 01 i  1 i Mar 061 2431151 03 iii  3 03/01/1944 die i mensis iii annoque mcmxliv 44 xliv 1944}
test clock-2.510 {conversion of 1944-03-31} {
    clock format -812719504 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Mar March 03/31/1944 12:34:56 die xxxi mensis iii annoque mcmxliv xii h xxxiv m lvi s 19 mcm 31 xxxi 31 xxxi Mar 091 2431181 03 iii  3 03/31/1944 die xxxi mensis iii annoque mcmxliv 44 xliv 1944}
test clock-2.511 {conversion of 1944-04-01} {
    clock format -812633104 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Apr April 04/01/1944 12:34:56 die i mensis iv annoque mcmxliv xii h xxxiv m lvi s 19 mcm 01 i  1 i Apr 092 2431182 04 iv  4 04/01/1944 die i mensis iv annoque mcmxliv 44 xliv 1944}
test clock-2.512 {conversion of 1944-04-30} {
    clock format -810127504 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Apr April 04/30/1944 12:34:56 die xxx mensis iv annoque mcmxliv xii h xxxiv m lvi s 19 mcm 30 xxx 30 xxx Apr 121 2431211 04 iv  4 04/30/1944 die xxx mensis iv annoque mcmxliv 44 xliv 1944}
test clock-2.513 {conversion of 1944-05-01} {
    clock format -810041104 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {May May 05/01/1944 12:34:56 die i mensis v annoque mcmxliv xii h xxxiv m lvi s 19 mcm 01 i  1 i May 122 2431212 05 v  5 05/01/1944 die i mensis v annoque mcmxliv 44 xliv 1944}
test clock-2.514 {conversion of 1944-05-31} {
    clock format -807449104 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {May May 05/31/1944 12:34:56 die xxxi mensis v annoque mcmxliv xii h xxxiv m lvi s 19 mcm 31 xxxi 31 xxxi May 152 2431242 05 v  5 05/31/1944 die xxxi mensis v annoque mcmxliv 44 xliv 1944}
test clock-2.515 {conversion of 1944-06-01} {
    clock format -807362704 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Jun June 06/01/1944 12:34:56 die i mensis vi annoque mcmxliv xii h xxxiv m lvi s 19 mcm 01 i  1 i Jun 153 2431243 06 vi  6 06/01/1944 die i mensis vi annoque mcmxliv 44 xliv 1944}
test clock-2.516 {conversion of 1944-06-30} {
    clock format -804857104 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Jun June 06/30/1944 12:34:56 die xxx mensis vi annoque mcmxliv xii h xxxiv m lvi s 19 mcm 30 xxx 30 xxx Jun 182 2431272 06 vi  6 06/30/1944 die xxx mensis vi annoque mcmxliv 44 xliv 1944}
test clock-2.517 {conversion of 1944-07-01} {
    clock format -804770704 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Jul July 07/01/1944 12:34:56 die i mensis vii annoque mcmxliv xii h xxxiv m lvi s 19 mcm 01 i  1 i Jul 183 2431273 07 vii  7 07/01/1944 die i mensis vii annoque mcmxliv 44 xliv 1944}
test clock-2.518 {conversion of 1944-07-31} {
    clock format -802178704 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Jul July 07/31/1944 12:34:56 die xxxi mensis vii annoque mcmxliv xii h xxxiv m lvi s 19 mcm 31 xxxi 31 xxxi Jul 213 2431303 07 vii  7 07/31/1944 die xxxi mensis vii annoque mcmxliv 44 xliv 1944}
test clock-2.519 {conversion of 1944-08-01} {
    clock format -802092304 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Aug August 08/01/1944 12:34:56 die i mensis viii annoque mcmxliv xii h xxxiv m lvi s 19 mcm 01 i  1 i Aug 214 2431304 08 viii  8 08/01/1944 die i mensis viii annoque mcmxliv 44 xliv 1944}
test clock-2.520 {conversion of 1944-08-31} {
    clock format -799500304 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Aug August 08/31/1944 12:34:56 die xxxi mensis viii annoque mcmxliv xii h xxxiv m lvi s 19 mcm 31 xxxi 31 xxxi Aug 244 2431334 08 viii  8 08/31/1944 die xxxi mensis viii annoque mcmxliv 44 xliv 1944}
test clock-2.521 {conversion of 1944-09-01} {
    clock format -799413904 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Sep September 09/01/1944 12:34:56 die i mensis ix annoque mcmxliv xii h xxxiv m lvi s 19 mcm 01 i  1 i Sep 245 2431335 09 ix  9 09/01/1944 die i mensis ix annoque mcmxliv 44 xliv 1944}
test clock-2.522 {conversion of 1944-09-30} {
    clock format -796908304 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Sep September 09/30/1944 12:34:56 die xxx mensis ix annoque mcmxliv xii h xxxiv m lvi s 19 mcm 30 xxx 30 xxx Sep 274 2431364 09 ix  9 09/30/1944 die xxx mensis ix annoque mcmxliv 44 xliv 1944}
test clock-2.523 {conversion of 1944-10-01} {
    clock format -796821904 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Oct October 10/01/1944 12:34:56 die i mensis x annoque mcmxliv xii h xxxiv m lvi s 19 mcm 01 i  1 i Oct 275 2431365 10 x 10 10/01/1944 die i mensis x annoque mcmxliv 44 xliv 1944}
test clock-2.524 {conversion of 1944-10-31} {
    clock format -794229904 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Oct October 10/31/1944 12:34:56 die xxxi mensis x annoque mcmxliv xii h xxxiv m lvi s 19 mcm 31 xxxi 31 xxxi Oct 305 2431395 10 x 10 10/31/1944 die xxxi mensis x annoque mcmxliv 44 xliv 1944}
test clock-2.525 {conversion of 1944-11-01} {
    clock format -794143504 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Nov November 11/01/1944 12:34:56 die i mensis xi annoque mcmxliv xii h xxxiv m lvi s 19 mcm 01 i  1 i Nov 306 2431396 11 xi 11 11/01/1944 die i mensis xi annoque mcmxliv 44 xliv 1944}
test clock-2.526 {conversion of 1944-11-30} {
    clock format -791637904 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Nov November 11/30/1944 12:34:56 die xxx mensis xi annoque mcmxliv xii h xxxiv m lvi s 19 mcm 30 xxx 30 xxx Nov 335 2431425 11 xi 11 11/30/1944 die xxx mensis xi annoque mcmxliv 44 xliv 1944}
test clock-2.527 {conversion of 1944-12-01} {
    clock format -791551504 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Dec December 12/01/1944 12:34:56 die i mensis xii annoque mcmxliv xii h xxxiv m lvi s 19 mcm 01 i  1 i Dec 336 2431426 12 xii 12 12/01/1944 die i mensis xii annoque mcmxliv 44 xliv 1944}
test clock-2.528 {conversion of 1944-12-31} {
    clock format -788959504 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Dec December 12/31/1944 12:34:56 die xxxi mensis xii annoque mcmxliv xii h xxxiv m lvi s 19 mcm 31 xxxi 31 xxxi Dec 366 2431456 12 xii 12 12/31/1944 die xxxi mensis xii annoque mcmxliv 44 xliv 1944}
test clock-2.529 {conversion of 1945-01-01} {
    clock format -788873104 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Jan January 01/01/1945 12:34:56 die i mensis i annoque mcmxlv xii h xxxiv m lvi s 19 mcm 01 i  1 i Jan 001 2431457 01 i  1 01/01/1945 die i mensis i annoque mcmxlv 45 xlv 1945}
test clock-2.530 {conversion of 1945-01-31} {
    clock format -786281104 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Jan January 01/31/1945 12:34:56 die xxxi mensis i annoque mcmxlv xii h xxxiv m lvi s 19 mcm 31 xxxi 31 xxxi Jan 031 2431487 01 i  1 01/31/1945 die xxxi mensis i annoque mcmxlv 45 xlv 1945}
test clock-2.531 {conversion of 1945-02-01} {
    clock format -786194704 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Feb February 02/01/1945 12:34:56 die i mensis ii annoque mcmxlv xii h xxxiv m lvi s 19 mcm 01 i  1 i Feb 032 2431488 02 ii  2 02/01/1945 die i mensis ii annoque mcmxlv 45 xlv 1945}
test clock-2.532 {conversion of 1945-02-28} {
    clock format -783861904 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Feb February 02/28/1945 12:34:56 die xxviii mensis ii annoque mcmxlv xii h xxxiv m lvi s 19 mcm 28 xxviii 28 xxviii Feb 059 2431515 02 ii  2 02/28/1945 die xxviii mensis ii annoque mcmxlv 45 xlv 1945}
test clock-2.533 {conversion of 1945-03-01} {
    clock format -783775504 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Mar March 03/01/1945 12:34:56 die i mensis iii annoque mcmxlv xii h xxxiv m lvi s 19 mcm 01 i  1 i Mar 060 2431516 03 iii  3 03/01/1945 die i mensis iii annoque mcmxlv 45 xlv 1945}
test clock-2.534 {conversion of 1945-03-31} {
    clock format -781183504 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Mar March 03/31/1945 12:34:56 die xxxi mensis iii annoque mcmxlv xii h xxxiv m lvi s 19 mcm 31 xxxi 31 xxxi Mar 090 2431546 03 iii  3 03/31/1945 die xxxi mensis iii annoque mcmxlv 45 xlv 1945}
test clock-2.535 {conversion of 1945-04-01} {
    clock format -781097104 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Apr April 04/01/1945 12:34:56 die i mensis iv annoque mcmxlv xii h xxxiv m lvi s 19 mcm 01 i  1 i Apr 091 2431547 04 iv  4 04/01/1945 die i mensis iv annoque mcmxlv 45 xlv 1945}
test clock-2.536 {conversion of 1945-04-30} {
    clock format -778591504 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Apr April 04/30/1945 12:34:56 die xxx mensis iv annoque mcmxlv xii h xxxiv m lvi s 19 mcm 30 xxx 30 xxx Apr 120 2431576 04 iv  4 04/30/1945 die xxx mensis iv annoque mcmxlv 45 xlv 1945}
test clock-2.537 {conversion of 1945-05-01} {
    clock format -778505104 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {May May 05/01/1945 12:34:56 die i mensis v annoque mcmxlv xii h xxxiv m lvi s 19 mcm 01 i  1 i May 121 2431577 05 v  5 05/01/1945 die i mensis v annoque mcmxlv 45 xlv 1945}
test clock-2.538 {conversion of 1945-05-31} {
    clock format -775913104 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {May May 05/31/1945 12:34:56 die xxxi mensis v annoque mcmxlv xii h xxxiv m lvi s 19 mcm 31 xxxi 31 xxxi May 151 2431607 05 v  5 05/31/1945 die xxxi mensis v annoque mcmxlv 45 xlv 1945}
test clock-2.539 {conversion of 1945-06-01} {
    clock format -775826704 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Jun June 06/01/1945 12:34:56 die i mensis vi annoque mcmxlv xii h xxxiv m lvi s 19 mcm 01 i  1 i Jun 152 2431608 06 vi  6 06/01/1945 die i mensis vi annoque mcmxlv 45 xlv 1945}
test clock-2.540 {conversion of 1945-06-30} {
    clock format -773321104 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Jun June 06/30/1945 12:34:56 die xxx mensis vi annoque mcmxlv xii h xxxiv m lvi s 19 mcm 30 xxx 30 xxx Jun 181 2431637 06 vi  6 06/30/1945 die xxx mensis vi annoque mcmxlv 45 xlv 1945}
test clock-2.541 {conversion of 1945-07-01} {
    clock format -773234704 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Jul July 07/01/1945 12:34:56 die i mensis vii annoque mcmxlv xii h xxxiv m lvi s 19 mcm 01 i  1 i Jul 182 2431638 07 vii  7 07/01/1945 die i mensis vii annoque mcmxlv 45 xlv 1945}
test clock-2.542 {conversion of 1945-07-31} {
    clock format -770642704 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Jul July 07/31/1945 12:34:56 die xxxi mensis vii annoque mcmxlv xii h xxxiv m lvi s 19 mcm 31 xxxi 31 xxxi Jul 212 2431668 07 vii  7 07/31/1945 die xxxi mensis vii annoque mcmxlv 45 xlv 1945}
test clock-2.543 {conversion of 1945-08-01} {
    clock format -770556304 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Aug August 08/01/1945 12:34:56 die i mensis viii annoque mcmxlv xii h xxxiv m lvi s 19 mcm 01 i  1 i Aug 213 2431669 08 viii  8 08/01/1945 die i mensis viii annoque mcmxlv 45 xlv 1945}
test clock-2.544 {conversion of 1945-08-31} {
    clock format -767964304 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Aug August 08/31/1945 12:34:56 die xxxi mensis viii annoque mcmxlv xii h xxxiv m lvi s 19 mcm 31 xxxi 31 xxxi Aug 243 2431699 08 viii  8 08/31/1945 die xxxi mensis viii annoque mcmxlv 45 xlv 1945}
test clock-2.545 {conversion of 1945-09-01} {
    clock format -767877904 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Sep September 09/01/1945 12:34:56 die i mensis ix annoque mcmxlv xii h xxxiv m lvi s 19 mcm 01 i  1 i Sep 244 2431700 09 ix  9 09/01/1945 die i mensis ix annoque mcmxlv 45 xlv 1945}
test clock-2.546 {conversion of 1945-09-30} {
    clock format -765372304 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Sep September 09/30/1945 12:34:56 die xxx mensis ix annoque mcmxlv xii h xxxiv m lvi s 19 mcm 30 xxx 30 xxx Sep 273 2431729 09 ix  9 09/30/1945 die xxx mensis ix annoque mcmxlv 45 xlv 1945}
test clock-2.547 {conversion of 1945-10-01} {
    clock format -765285904 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Oct October 10/01/1945 12:34:56 die i mensis x annoque mcmxlv xii h xxxiv m lvi s 19 mcm 01 i  1 i Oct 274 2431730 10 x 10 10/01/1945 die i mensis x annoque mcmxlv 45 xlv 1945}
test clock-2.548 {conversion of 1945-10-31} {
    clock format -762693904 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Oct October 10/31/1945 12:34:56 die xxxi mensis x annoque mcmxlv xii h xxxiv m lvi s 19 mcm 31 xxxi 31 xxxi Oct 304 2431760 10 x 10 10/31/1945 die xxxi mensis x annoque mcmxlv 45 xlv 1945}
test clock-2.549 {conversion of 1945-11-01} {
    clock format -762607504 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Nov November 11/01/1945 12:34:56 die i mensis xi annoque mcmxlv xii h xxxiv m lvi s 19 mcm 01 i  1 i Nov 305 2431761 11 xi 11 11/01/1945 die i mensis xi annoque mcmxlv 45 xlv 1945}
test clock-2.550 {conversion of 1945-11-30} {
    clock format -760101904 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Nov November 11/30/1945 12:34:56 die xxx mensis xi annoque mcmxlv xii h xxxiv m lvi s 19 mcm 30 xxx 30 xxx Nov 334 2431790 11 xi 11 11/30/1945 die xxx mensis xi annoque mcmxlv 45 xlv 1945}
test clock-2.551 {conversion of 1945-12-01} {
    clock format -760015504 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Dec December 12/01/1945 12:34:56 die i mensis xii annoque mcmxlv xii h xxxiv m lvi s 19 mcm 01 i  1 i Dec 335 2431791 12 xii 12 12/01/1945 die i mensis xii annoque mcmxlv 45 xlv 1945}
test clock-2.552 {conversion of 1945-12-31} {
    clock format -757423504 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Dec December 12/31/1945 12:34:56 die xxxi mensis xii annoque mcmxlv xii h xxxiv m lvi s 19 mcm 31 xxxi 31 xxxi Dec 365 2431821 12 xii 12 12/31/1945 die xxxi mensis xii annoque mcmxlv 45 xlv 1945}
test clock-2.553 {conversion of 1948-01-01} {
    clock format -694265104 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Jan January 01/01/1948 12:34:56 die i mensis i annoque mcmxlviii xii h xxxiv m lvi s 19 mcm 01 i  1 i Jan 001 2432552 01 i  1 01/01/1948 die i mensis i annoque mcmxlviii 48 xlviii 1948}
test clock-2.554 {conversion of 1948-01-31} {
    clock format -691673104 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Jan January 01/31/1948 12:34:56 die xxxi mensis i annoque mcmxlviii xii h xxxiv m lvi s 19 mcm 31 xxxi 31 xxxi Jan 031 2432582 01 i  1 01/31/1948 die xxxi mensis i annoque mcmxlviii 48 xlviii 1948}
test clock-2.555 {conversion of 1948-02-01} {
    clock format -691586704 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Feb February 02/01/1948 12:34:56 die i mensis ii annoque mcmxlviii xii h xxxiv m lvi s 19 mcm 01 i  1 i Feb 032 2432583 02 ii  2 02/01/1948 die i mensis ii annoque mcmxlviii 48 xlviii 1948}
test clock-2.556 {conversion of 1948-02-29} {
    clock format -689167504 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Feb February 02/29/1948 12:34:56 die xxix mensis ii annoque mcmxlviii xii h xxxiv m lvi s 19 mcm 29 xxix 29 xxix Feb 060 2432611 02 ii  2 02/29/1948 die xxix mensis ii annoque mcmxlviii 48 xlviii 1948}
test clock-2.557 {conversion of 1948-03-01} {
    clock format -689081104 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Mar March 03/01/1948 12:34:56 die i mensis iii annoque mcmxlviii xii h xxxiv m lvi s 19 mcm 01 i  1 i Mar 061 2432612 03 iii  3 03/01/1948 die i mensis iii annoque mcmxlviii 48 xlviii 1948}
test clock-2.558 {conversion of 1948-03-31} {
    clock format -686489104 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Mar March 03/31/1948 12:34:56 die xxxi mensis iii annoque mcmxlviii xii h xxxiv m lvi s 19 mcm 31 xxxi 31 xxxi Mar 091 2432642 03 iii  3 03/31/1948 die xxxi mensis iii annoque mcmxlviii 48 xlviii 1948}
test clock-2.559 {conversion of 1948-04-01} {
    clock format -686402704 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Apr April 04/01/1948 12:34:56 die i mensis iv annoque mcmxlviii xii h xxxiv m lvi s 19 mcm 01 i  1 i Apr 092 2432643 04 iv  4 04/01/1948 die i mensis iv annoque mcmxlviii 48 xlviii 1948}
test clock-2.560 {conversion of 1948-04-30} {
    clock format -683897104 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Apr April 04/30/1948 12:34:56 die xxx mensis iv annoque mcmxlviii xii h xxxiv m lvi s 19 mcm 30 xxx 30 xxx Apr 121 2432672 04 iv  4 04/30/1948 die xxx mensis iv annoque mcmxlviii 48 xlviii 1948}
test clock-2.561 {conversion of 1948-05-01} {
    clock format -683810704 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {May May 05/01/1948 12:34:56 die i mensis v annoque mcmxlviii xii h xxxiv m lvi s 19 mcm 01 i  1 i May 122 2432673 05 v  5 05/01/1948 die i mensis v annoque mcmxlviii 48 xlviii 1948}
test clock-2.562 {conversion of 1948-05-31} {
    clock format -681218704 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {May May 05/31/1948 12:34:56 die xxxi mensis v annoque mcmxlviii xii h xxxiv m lvi s 19 mcm 31 xxxi 31 xxxi May 152 2432703 05 v  5 05/31/1948 die xxxi mensis v annoque mcmxlviii 48 xlviii 1948}
test clock-2.563 {conversion of 1948-06-01} {
    clock format -681132304 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Jun June 06/01/1948 12:34:56 die i mensis vi annoque mcmxlviii xii h xxxiv m lvi s 19 mcm 01 i  1 i Jun 153 2432704 06 vi  6 06/01/1948 die i mensis vi annoque mcmxlviii 48 xlviii 1948}
test clock-2.564 {conversion of 1948-06-30} {
    clock format -678626704 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Jun June 06/30/1948 12:34:56 die xxx mensis vi annoque mcmxlviii xii h xxxiv m lvi s 19 mcm 30 xxx 30 xxx Jun 182 2432733 06 vi  6 06/30/1948 die xxx mensis vi annoque mcmxlviii 48 xlviii 1948}
test clock-2.565 {conversion of 1948-07-01} {
    clock format -678540304 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Jul July 07/01/1948 12:34:56 die i mensis vii annoque mcmxlviii xii h xxxiv m lvi s 19 mcm 01 i  1 i Jul 183 2432734 07 vii  7 07/01/1948 die i mensis vii annoque mcmxlviii 48 xlviii 1948}
test clock-2.566 {conversion of 1948-07-31} {
    clock format -675948304 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Jul July 07/31/1948 12:34:56 die xxxi mensis vii annoque mcmxlviii xii h xxxiv m lvi s 19 mcm 31 xxxi 31 xxxi Jul 213 2432764 07 vii  7 07/31/1948 die xxxi mensis vii annoque mcmxlviii 48 xlviii 1948}
test clock-2.567 {conversion of 1948-08-01} {
    clock format -675861904 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Aug August 08/01/1948 12:34:56 die i mensis viii annoque mcmxlviii xii h xxxiv m lvi s 19 mcm 01 i  1 i Aug 214 2432765 08 viii  8 08/01/1948 die i mensis viii annoque mcmxlviii 48 xlviii 1948}
test clock-2.568 {conversion of 1948-08-31} {
    clock format -673269904 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Aug August 08/31/1948 12:34:56 die xxxi mensis viii annoque mcmxlviii xii h xxxiv m lvi s 19 mcm 31 xxxi 31 xxxi Aug 244 2432795 08 viii  8 08/31/1948 die xxxi mensis viii annoque mcmxlviii 48 xlviii 1948}
test clock-2.569 {conversion of 1948-09-01} {
    clock format -673183504 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Sep September 09/01/1948 12:34:56 die i mensis ix annoque mcmxlviii xii h xxxiv m lvi s 19 mcm 01 i  1 i Sep 245 2432796 09 ix  9 09/01/1948 die i mensis ix annoque mcmxlviii 48 xlviii 1948}
test clock-2.570 {conversion of 1948-09-30} {
    clock format -670677904 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Sep September 09/30/1948 12:34:56 die xxx mensis ix annoque mcmxlviii xii h xxxiv m lvi s 19 mcm 30 xxx 30 xxx Sep 274 2432825 09 ix  9 09/30/1948 die xxx mensis ix annoque mcmxlviii 48 xlviii 1948}
test clock-2.571 {conversion of 1948-10-01} {
    clock format -670591504 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Oct October 10/01/1948 12:34:56 die i mensis x annoque mcmxlviii xii h xxxiv m lvi s 19 mcm 01 i  1 i Oct 275 2432826 10 x 10 10/01/1948 die i mensis x annoque mcmxlviii 48 xlviii 1948}
test clock-2.572 {conversion of 1948-10-31} {
    clock format -667999504 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Oct October 10/31/1948 12:34:56 die xxxi mensis x annoque mcmxlviii xii h xxxiv m lvi s 19 mcm 31 xxxi 31 xxxi Oct 305 2432856 10 x 10 10/31/1948 die xxxi mensis x annoque mcmxlviii 48 xlviii 1948}
test clock-2.573 {conversion of 1948-11-01} {
    clock format -667913104 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Nov November 11/01/1948 12:34:56 die i mensis xi annoque mcmxlviii xii h xxxiv m lvi s 19 mcm 01 i  1 i Nov 306 2432857 11 xi 11 11/01/1948 die i mensis xi annoque mcmxlviii 48 xlviii 1948}
test clock-2.574 {conversion of 1948-11-30} {
    clock format -665407504 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Nov November 11/30/1948 12:34:56 die xxx mensis xi annoque mcmxlviii xii h xxxiv m lvi s 19 mcm 30 xxx 30 xxx Nov 335 2432886 11 xi 11 11/30/1948 die xxx mensis xi annoque mcmxlviii 48 xlviii 1948}
test clock-2.575 {conversion of 1948-12-01} {
    clock format -665321104 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Dec December 12/01/1948 12:34:56 die i mensis xii annoque mcmxlviii xii h xxxiv m lvi s 19 mcm 01 i  1 i Dec 336 2432887 12 xii 12 12/01/1948 die i mensis xii annoque mcmxlviii 48 xlviii 1948}
test clock-2.576 {conversion of 1948-12-31} {
    clock format -662729104 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Dec December 12/31/1948 12:34:56 die xxxi mensis xii annoque mcmxlviii xii h xxxiv m lvi s 19 mcm 31 xxxi 31 xxxi Dec 366 2432917 12 xii 12 12/31/1948 die xxxi mensis xii annoque mcmxlviii 48 xlviii 1948}
test clock-2.577 {conversion of 1949-01-01} {
    clock format -662642704 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Jan January 01/01/1949 12:34:56 die i mensis i annoque mcmxlix xii h xxxiv m lvi s 19 mcm 01 i  1 i Jan 001 2432918 01 i  1 01/01/1949 die i mensis i annoque mcmxlix 49 xlix 1949}
test clock-2.578 {conversion of 1949-01-31} {
    clock format -660050704 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Jan January 01/31/1949 12:34:56 die xxxi mensis i annoque mcmxlix xii h xxxiv m lvi s 19 mcm 31 xxxi 31 xxxi Jan 031 2432948 01 i  1 01/31/1949 die xxxi mensis i annoque mcmxlix 49 xlix 1949}
test clock-2.579 {conversion of 1949-02-01} {
    clock format -659964304 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Feb February 02/01/1949 12:34:56 die i mensis ii annoque mcmxlix xii h xxxiv m lvi s 19 mcm 01 i  1 i Feb 032 2432949 02 ii  2 02/01/1949 die i mensis ii annoque mcmxlix 49 xlix 1949}
test clock-2.580 {conversion of 1949-02-28} {
    clock format -657631504 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Feb February 02/28/1949 12:34:56 die xxviii mensis ii annoque mcmxlix xii h xxxiv m lvi s 19 mcm 28 xxviii 28 xxviii Feb 059 2432976 02 ii  2 02/28/1949 die xxviii mensis ii annoque mcmxlix 49 xlix 1949}
test clock-2.581 {conversion of 1949-03-01} {
    clock format -657545104 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Mar March 03/01/1949 12:34:56 die i mensis iii annoque mcmxlix xii h xxxiv m lvi s 19 mcm 01 i  1 i Mar 060 2432977 03 iii  3 03/01/1949 die i mensis iii annoque mcmxlix 49 xlix 1949}
test clock-2.582 {conversion of 1949-03-31} {
    clock format -654953104 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Mar March 03/31/1949 12:34:56 die xxxi mensis iii annoque mcmxlix xii h xxxiv m lvi s 19 mcm 31 xxxi 31 xxxi Mar 090 2433007 03 iii  3 03/31/1949 die xxxi mensis iii annoque mcmxlix 49 xlix 1949}
test clock-2.583 {conversion of 1949-04-01} {
    clock format -654866704 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Apr April 04/01/1949 12:34:56 die i mensis iv annoque mcmxlix xii h xxxiv m lvi s 19 mcm 01 i  1 i Apr 091 2433008 04 iv  4 04/01/1949 die i mensis iv annoque mcmxlix 49 xlix 1949}
test clock-2.584 {conversion of 1949-04-30} {
    clock format -652361104 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Apr April 04/30/1949 12:34:56 die xxx mensis iv annoque mcmxlix xii h xxxiv m lvi s 19 mcm 30 xxx 30 xxx Apr 120 2433037 04 iv  4 04/30/1949 die xxx mensis iv annoque mcmxlix 49 xlix 1949}
test clock-2.585 {conversion of 1949-05-01} {
    clock format -652274704 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {May May 05/01/1949 12:34:56 die i mensis v annoque mcmxlix xii h xxxiv m lvi s 19 mcm 01 i  1 i May 121 2433038 05 v  5 05/01/1949 die i mensis v annoque mcmxlix 49 xlix 1949}
test clock-2.586 {conversion of 1949-05-31} {
    clock format -649682704 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {May May 05/31/1949 12:34:56 die xxxi mensis v annoque mcmxlix xii h xxxiv m lvi s 19 mcm 31 xxxi 31 xxxi May 151 2433068 05 v  5 05/31/1949 die xxxi mensis v annoque mcmxlix 49 xlix 1949}
test clock-2.587 {conversion of 1949-06-01} {
    clock format -649596304 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Jun June 06/01/1949 12:34:56 die i mensis vi annoque mcmxlix xii h xxxiv m lvi s 19 mcm 01 i  1 i Jun 152 2433069 06 vi  6 06/01/1949 die i mensis vi annoque mcmxlix 49 xlix 1949}
test clock-2.588 {conversion of 1949-06-30} {
    clock format -647090704 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Jun June 06/30/1949 12:34:56 die xxx mensis vi annoque mcmxlix xii h xxxiv m lvi s 19 mcm 30 xxx 30 xxx Jun 181 2433098 06 vi  6 06/30/1949 die xxx mensis vi annoque mcmxlix 49 xlix 1949}
test clock-2.589 {conversion of 1949-07-01} {
    clock format -647004304 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Jul July 07/01/1949 12:34:56 die i mensis vii annoque mcmxlix xii h xxxiv m lvi s 19 mcm 01 i  1 i Jul 182 2433099 07 vii  7 07/01/1949 die i mensis vii annoque mcmxlix 49 xlix 1949}
test clock-2.590 {conversion of 1949-07-31} {
    clock format -644412304 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Jul July 07/31/1949 12:34:56 die xxxi mensis vii annoque mcmxlix xii h xxxiv m lvi s 19 mcm 31 xxxi 31 xxxi Jul 212 2433129 07 vii  7 07/31/1949 die xxxi mensis vii annoque mcmxlix 49 xlix 1949}
test clock-2.591 {conversion of 1949-08-01} {
    clock format -644325904 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Aug August 08/01/1949 12:34:56 die i mensis viii annoque mcmxlix xii h xxxiv m lvi s 19 mcm 01 i  1 i Aug 213 2433130 08 viii  8 08/01/1949 die i mensis viii annoque mcmxlix 49 xlix 1949}
test clock-2.592 {conversion of 1949-08-31} {
    clock format -641733904 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Aug August 08/31/1949 12:34:56 die xxxi mensis viii annoque mcmxlix xii h xxxiv m lvi s 19 mcm 31 xxxi 31 xxxi Aug 243 2433160 08 viii  8 08/31/1949 die xxxi mensis viii annoque mcmxlix 49 xlix 1949}
test clock-2.593 {conversion of 1949-09-01} {
    clock format -641647504 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Sep September 09/01/1949 12:34:56 die i mensis ix annoque mcmxlix xii h xxxiv m lvi s 19 mcm 01 i  1 i Sep 244 2433161 09 ix  9 09/01/1949 die i mensis ix annoque mcmxlix 49 xlix 1949}
test clock-2.594 {conversion of 1949-09-30} {
    clock format -639141904 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Sep September 09/30/1949 12:34:56 die xxx mensis ix annoque mcmxlix xii h xxxiv m lvi s 19 mcm 30 xxx 30 xxx Sep 273 2433190 09 ix  9 09/30/1949 die xxx mensis ix annoque mcmxlix 49 xlix 1949}
test clock-2.595 {conversion of 1949-10-01} {
    clock format -639055504 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Oct October 10/01/1949 12:34:56 die i mensis x annoque mcmxlix xii h xxxiv m lvi s 19 mcm 01 i  1 i Oct 274 2433191 10 x 10 10/01/1949 die i mensis x annoque mcmxlix 49 xlix 1949}
test clock-2.596 {conversion of 1949-10-31} {
    clock format -636463504 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Oct October 10/31/1949 12:34:56 die xxxi mensis x annoque mcmxlix xii h xxxiv m lvi s 19 mcm 31 xxxi 31 xxxi Oct 304 2433221 10 x 10 10/31/1949 die xxxi mensis x annoque mcmxlix 49 xlix 1949}
test clock-2.597 {conversion of 1949-11-01} {
    clock format -636377104 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Nov November 11/01/1949 12:34:56 die i mensis xi annoque mcmxlix xii h xxxiv m lvi s 19 mcm 01 i  1 i Nov 305 2433222 11 xi 11 11/01/1949 die i mensis xi annoque mcmxlix 49 xlix 1949}
test clock-2.598 {conversion of 1949-11-30} {
    clock format -633871504 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Nov November 11/30/1949 12:34:56 die xxx mensis xi annoque mcmxlix xii h xxxiv m lvi s 19 mcm 30 xxx 30 xxx Nov 334 2433251 11 xi 11 11/30/1949 die xxx mensis xi annoque mcmxlix 49 xlix 1949}
test clock-2.599 {conversion of 1949-12-01} {
    clock format -633785104 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Dec December 12/01/1949 12:34:56 die i mensis xii annoque mcmxlix xii h xxxiv m lvi s 19 mcm 01 i  1 i Dec 335 2433252 12 xii 12 12/01/1949 die i mensis xii annoque mcmxlix 49 xlix 1949}
test clock-2.600 {conversion of 1949-12-31} {
    clock format -631193104 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Dec December 12/31/1949 12:34:56 die xxxi mensis xii annoque mcmxlix xii h xxxiv m lvi s 19 mcm 31 xxxi 31 xxxi Dec 365 2433282 12 xii 12 12/31/1949 die xxxi mensis xii annoque mcmxlix 49 xlix 1949}
test clock-2.601 {conversion of 1952-01-01} {
    clock format -568034704 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Jan January 01/01/1952 12:34:56 die i mensis i annoque mcmlii xii h xxxiv m lvi s 19 mcm 01 i  1 i Jan 001 2434013 01 i  1 01/01/1952 die i mensis i annoque mcmlii 52 lii 1952}
test clock-2.602 {conversion of 1952-01-31} {
    clock format -565442704 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Jan January 01/31/1952 12:34:56 die xxxi mensis i annoque mcmlii xii h xxxiv m lvi s 19 mcm 31 xxxi 31 xxxi Jan 031 2434043 01 i  1 01/31/1952 die xxxi mensis i annoque mcmlii 52 lii 1952}
test clock-2.603 {conversion of 1952-02-01} {
    clock format -565356304 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Feb February 02/01/1952 12:34:56 die i mensis ii annoque mcmlii xii h xxxiv m lvi s 19 mcm 01 i  1 i Feb 032 2434044 02 ii  2 02/01/1952 die i mensis ii annoque mcmlii 52 lii 1952}
test clock-2.604 {conversion of 1952-02-29} {
    clock format -562937104 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Feb February 02/29/1952 12:34:56 die xxix mensis ii annoque mcmlii xii h xxxiv m lvi s 19 mcm 29 xxix 29 xxix Feb 060 2434072 02 ii  2 02/29/1952 die xxix mensis ii annoque mcmlii 52 lii 1952}
test clock-2.605 {conversion of 1952-03-01} {
    clock format -562850704 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Mar March 03/01/1952 12:34:56 die i mensis iii annoque mcmlii xii h xxxiv m lvi s 19 mcm 01 i  1 i Mar 061 2434073 03 iii  3 03/01/1952 die i mensis iii annoque mcmlii 52 lii 1952}
test clock-2.606 {conversion of 1952-03-31} {
    clock format -560258704 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Mar March 03/31/1952 12:34:56 die xxxi mensis iii annoque mcmlii xii h xxxiv m lvi s 19 mcm 31 xxxi 31 xxxi Mar 091 2434103 03 iii  3 03/31/1952 die xxxi mensis iii annoque mcmlii 52 lii 1952}
test clock-2.607 {conversion of 1952-04-01} {
    clock format -560172304 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Apr April 04/01/1952 12:34:56 die i mensis iv annoque mcmlii xii h xxxiv m lvi s 19 mcm 01 i  1 i Apr 092 2434104 04 iv  4 04/01/1952 die i mensis iv annoque mcmlii 52 lii 1952}
test clock-2.608 {conversion of 1952-04-30} {
    clock format -557666704 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Apr April 04/30/1952 12:34:56 die xxx mensis iv annoque mcmlii xii h xxxiv m lvi s 19 mcm 30 xxx 30 xxx Apr 121 2434133 04 iv  4 04/30/1952 die xxx mensis iv annoque mcmlii 52 lii 1952}
test clock-2.609 {conversion of 1952-05-01} {
    clock format -557580304 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {May May 05/01/1952 12:34:56 die i mensis v annoque mcmlii xii h xxxiv m lvi s 19 mcm 01 i  1 i May 122 2434134 05 v  5 05/01/1952 die i mensis v annoque mcmlii 52 lii 1952}
test clock-2.610 {conversion of 1952-05-31} {
    clock format -554988304 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {May May 05/31/1952 12:34:56 die xxxi mensis v annoque mcmlii xii h xxxiv m lvi s 19 mcm 31 xxxi 31 xxxi May 152 2434164 05 v  5 05/31/1952 die xxxi mensis v annoque mcmlii 52 lii 1952}
test clock-2.611 {conversion of 1952-06-01} {
    clock format -554901904 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Jun June 06/01/1952 12:34:56 die i mensis vi annoque mcmlii xii h xxxiv m lvi s 19 mcm 01 i  1 i Jun 153 2434165 06 vi  6 06/01/1952 die i mensis vi annoque mcmlii 52 lii 1952}
test clock-2.612 {conversion of 1952-06-30} {
    clock format -552396304 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Jun June 06/30/1952 12:34:56 die xxx mensis vi annoque mcmlii xii h xxxiv m lvi s 19 mcm 30 xxx 30 xxx Jun 182 2434194 06 vi  6 06/30/1952 die xxx mensis vi annoque mcmlii 52 lii 1952}
test clock-2.613 {conversion of 1952-07-01} {
    clock format -552309904 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Jul July 07/01/1952 12:34:56 die i mensis vii annoque mcmlii xii h xxxiv m lvi s 19 mcm 01 i  1 i Jul 183 2434195 07 vii  7 07/01/1952 die i mensis vii annoque mcmlii 52 lii 1952}
test clock-2.614 {conversion of 1952-07-31} {
    clock format -549717904 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Jul July 07/31/1952 12:34:56 die xxxi mensis vii annoque mcmlii xii h xxxiv m lvi s 19 mcm 31 xxxi 31 xxxi Jul 213 2434225 07 vii  7 07/31/1952 die xxxi mensis vii annoque mcmlii 52 lii 1952}
test clock-2.615 {conversion of 1952-08-01} {
    clock format -549631504 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Aug August 08/01/1952 12:34:56 die i mensis viii annoque mcmlii xii h xxxiv m lvi s 19 mcm 01 i  1 i Aug 214 2434226 08 viii  8 08/01/1952 die i mensis viii annoque mcmlii 52 lii 1952}
test clock-2.616 {conversion of 1952-08-31} {
    clock format -547039504 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Aug August 08/31/1952 12:34:56 die xxxi mensis viii annoque mcmlii xii h xxxiv m lvi s 19 mcm 31 xxxi 31 xxxi Aug 244 2434256 08 viii  8 08/31/1952 die xxxi mensis viii annoque mcmlii 52 lii 1952}
test clock-2.617 {conversion of 1952-09-01} {
    clock format -546953104 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Sep September 09/01/1952 12:34:56 die i mensis ix annoque mcmlii xii h xxxiv m lvi s 19 mcm 01 i  1 i Sep 245 2434257 09 ix  9 09/01/1952 die i mensis ix annoque mcmlii 52 lii 1952}
test clock-2.618 {conversion of 1952-09-30} {
    clock format -544447504 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Sep September 09/30/1952 12:34:56 die xxx mensis ix annoque mcmlii xii h xxxiv m lvi s 19 mcm 30 xxx 30 xxx Sep 274 2434286 09 ix  9 09/30/1952 die xxx mensis ix annoque mcmlii 52 lii 1952}
test clock-2.619 {conversion of 1952-10-01} {
    clock format -544361104 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Oct October 10/01/1952 12:34:56 die i mensis x annoque mcmlii xii h xxxiv m lvi s 19 mcm 01 i  1 i Oct 275 2434287 10 x 10 10/01/1952 die i mensis x annoque mcmlii 52 lii 1952}
test clock-2.620 {conversion of 1952-10-31} {
    clock format -541769104 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Oct October 10/31/1952 12:34:56 die xxxi mensis x annoque mcmlii xii h xxxiv m lvi s 19 mcm 31 xxxi 31 xxxi Oct 305 2434317 10 x 10 10/31/1952 die xxxi mensis x annoque mcmlii 52 lii 1952}
test clock-2.621 {conversion of 1952-11-01} {
    clock format -541682704 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Nov November 11/01/1952 12:34:56 die i mensis xi annoque mcmlii xii h xxxiv m lvi s 19 mcm 01 i  1 i Nov 306 2434318 11 xi 11 11/01/1952 die i mensis xi annoque mcmlii 52 lii 1952}
test clock-2.622 {conversion of 1952-11-30} {
    clock format -539177104 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Nov November 11/30/1952 12:34:56 die xxx mensis xi annoque mcmlii xii h xxxiv m lvi s 19 mcm 30 xxx 30 xxx Nov 335 2434347 11 xi 11 11/30/1952 die xxx mensis xi annoque mcmlii 52 lii 1952}
test clock-2.623 {conversion of 1952-12-01} {
    clock format -539090704 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Dec December 12/01/1952 12:34:56 die i mensis xii annoque mcmlii xii h xxxiv m lvi s 19 mcm 01 i  1 i Dec 336 2434348 12 xii 12 12/01/1952 die i mensis xii annoque mcmlii 52 lii 1952}
test clock-2.624 {conversion of 1952-12-31} {
    clock format -536498704 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Dec December 12/31/1952 12:34:56 die xxxi mensis xii annoque mcmlii xii h xxxiv m lvi s 19 mcm 31 xxxi 31 xxxi Dec 366 2434378 12 xii 12 12/31/1952 die xxxi mensis xii annoque mcmlii 52 lii 1952}
test clock-2.625 {conversion of 1953-01-01} {
    clock format -536412304 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Jan January 01/01/1953 12:34:56 die i mensis i annoque mcmliii xii h xxxiv m lvi s 19 mcm 01 i  1 i Jan 001 2434379 01 i  1 01/01/1953 die i mensis i annoque mcmliii 53 liii 1953}
test clock-2.626 {conversion of 1953-01-31} {
    clock format -533820304 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Jan January 01/31/1953 12:34:56 die xxxi mensis i annoque mcmliii xii h xxxiv m lvi s 19 mcm 31 xxxi 31 xxxi Jan 031 2434409 01 i  1 01/31/1953 die xxxi mensis i annoque mcmliii 53 liii 1953}
test clock-2.627 {conversion of 1953-02-01} {
    clock format -533733904 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Feb February 02/01/1953 12:34:56 die i mensis ii annoque mcmliii xii h xxxiv m lvi s 19 mcm 01 i  1 i Feb 032 2434410 02 ii  2 02/01/1953 die i mensis ii annoque mcmliii 53 liii 1953}
test clock-2.628 {conversion of 1953-02-28} {
    clock format -531401104 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Feb February 02/28/1953 12:34:56 die xxviii mensis ii annoque mcmliii xii h xxxiv m lvi s 19 mcm 28 xxviii 28 xxviii Feb 059 2434437 02 ii  2 02/28/1953 die xxviii mensis ii annoque mcmliii 53 liii 1953}
test clock-2.629 {conversion of 1953-03-01} {
    clock format -531314704 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Mar March 03/01/1953 12:34:56 die i mensis iii annoque mcmliii xii h xxxiv m lvi s 19 mcm 01 i  1 i Mar 060 2434438 03 iii  3 03/01/1953 die i mensis iii annoque mcmliii 53 liii 1953}
test clock-2.630 {conversion of 1953-03-31} {
    clock format -528722704 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Mar March 03/31/1953 12:34:56 die xxxi mensis iii annoque mcmliii xii h xxxiv m lvi s 19 mcm 31 xxxi 31 xxxi Mar 090 2434468 03 iii  3 03/31/1953 die xxxi mensis iii annoque mcmliii 53 liii 1953}
test clock-2.631 {conversion of 1953-04-01} {
    clock format -528636304 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Apr April 04/01/1953 12:34:56 die i mensis iv annoque mcmliii xii h xxxiv m lvi s 19 mcm 01 i  1 i Apr 091 2434469 04 iv  4 04/01/1953 die i mensis iv annoque mcmliii 53 liii 1953}
test clock-2.632 {conversion of 1953-04-30} {
    clock format -526130704 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Apr April 04/30/1953 12:34:56 die xxx mensis iv annoque mcmliii xii h xxxiv m lvi s 19 mcm 30 xxx 30 xxx Apr 120 2434498 04 iv  4 04/30/1953 die xxx mensis iv annoque mcmliii 53 liii 1953}
test clock-2.633 {conversion of 1953-05-01} {
    clock format -526044304 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {May May 05/01/1953 12:34:56 die i mensis v annoque mcmliii xii h xxxiv m lvi s 19 mcm 01 i  1 i May 121 2434499 05 v  5 05/01/1953 die i mensis v annoque mcmliii 53 liii 1953}
test clock-2.634 {conversion of 1953-05-31} {
    clock format -523452304 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {May May 05/31/1953 12:34:56 die xxxi mensis v annoque mcmliii xii h xxxiv m lvi s 19 mcm 31 xxxi 31 xxxi May 151 2434529 05 v  5 05/31/1953 die xxxi mensis v annoque mcmliii 53 liii 1953}
test clock-2.635 {conversion of 1953-06-01} {
    clock format -523365904 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Jun June 06/01/1953 12:34:56 die i mensis vi annoque mcmliii xii h xxxiv m lvi s 19 mcm 01 i  1 i Jun 152 2434530 06 vi  6 06/01/1953 die i mensis vi annoque mcmliii 53 liii 1953}
test clock-2.636 {conversion of 1953-06-30} {
    clock format -520860304 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Jun June 06/30/1953 12:34:56 die xxx mensis vi annoque mcmliii xii h xxxiv m lvi s 19 mcm 30 xxx 30 xxx Jun 181 2434559 06 vi  6 06/30/1953 die xxx mensis vi annoque mcmliii 53 liii 1953}
test clock-2.637 {conversion of 1953-07-01} {
    clock format -520773904 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Jul July 07/01/1953 12:34:56 die i mensis vii annoque mcmliii xii h xxxiv m lvi s 19 mcm 01 i  1 i Jul 182 2434560 07 vii  7 07/01/1953 die i mensis vii annoque mcmliii 53 liii 1953}
test clock-2.638 {conversion of 1953-07-31} {
    clock format -518181904 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Jul July 07/31/1953 12:34:56 die xxxi mensis vii annoque mcmliii xii h xxxiv m lvi s 19 mcm 31 xxxi 31 xxxi Jul 212 2434590 07 vii  7 07/31/1953 die xxxi mensis vii annoque mcmliii 53 liii 1953}
test clock-2.639 {conversion of 1953-08-01} {
    clock format -518095504 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Aug August 08/01/1953 12:34:56 die i mensis viii annoque mcmliii xii h xxxiv m lvi s 19 mcm 01 i  1 i Aug 213 2434591 08 viii  8 08/01/1953 die i mensis viii annoque mcmliii 53 liii 1953}
test clock-2.640 {conversion of 1953-08-31} {
    clock format -515503504 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Aug August 08/31/1953 12:34:56 die xxxi mensis viii annoque mcmliii xii h xxxiv m lvi s 19 mcm 31 xxxi 31 xxxi Aug 243 2434621 08 viii  8 08/31/1953 die xxxi mensis viii annoque mcmliii 53 liii 1953}
test clock-2.641 {conversion of 1953-09-01} {
    clock format -515417104 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Sep September 09/01/1953 12:34:56 die i mensis ix annoque mcmliii xii h xxxiv m lvi s 19 mcm 01 i  1 i Sep 244 2434622 09 ix  9 09/01/1953 die i mensis ix annoque mcmliii 53 liii 1953}
test clock-2.642 {conversion of 1953-09-30} {
    clock format -512911504 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Sep September 09/30/1953 12:34:56 die xxx mensis ix annoque mcmliii xii h xxxiv m lvi s 19 mcm 30 xxx 30 xxx Sep 273 2434651 09 ix  9 09/30/1953 die xxx mensis ix annoque mcmliii 53 liii 1953}
test clock-2.643 {conversion of 1953-10-01} {
    clock format -512825104 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Oct October 10/01/1953 12:34:56 die i mensis x annoque mcmliii xii h xxxiv m lvi s 19 mcm 01 i  1 i Oct 274 2434652 10 x 10 10/01/1953 die i mensis x annoque mcmliii 53 liii 1953}
test clock-2.644 {conversion of 1953-10-31} {
    clock format -510233104 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Oct October 10/31/1953 12:34:56 die xxxi mensis x annoque mcmliii xii h xxxiv m lvi s 19 mcm 31 xxxi 31 xxxi Oct 304 2434682 10 x 10 10/31/1953 die xxxi mensis x annoque mcmliii 53 liii 1953}
test clock-2.645 {conversion of 1953-11-01} {
    clock format -510146704 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Nov November 11/01/1953 12:34:56 die i mensis xi annoque mcmliii xii h xxxiv m lvi s 19 mcm 01 i  1 i Nov 305 2434683 11 xi 11 11/01/1953 die i mensis xi annoque mcmliii 53 liii 1953}
test clock-2.646 {conversion of 1953-11-30} {
    clock format -507641104 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Nov November 11/30/1953 12:34:56 die xxx mensis xi annoque mcmliii xii h xxxiv m lvi s 19 mcm 30 xxx 30 xxx Nov 334 2434712 11 xi 11 11/30/1953 die xxx mensis xi annoque mcmliii 53 liii 1953}
test clock-2.647 {conversion of 1953-12-01} {
    clock format -507554704 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Dec December 12/01/1953 12:34:56 die i mensis xii annoque mcmliii xii h xxxiv m lvi s 19 mcm 01 i  1 i Dec 335 2434713 12 xii 12 12/01/1953 die i mensis xii annoque mcmliii 53 liii 1953}
test clock-2.648 {conversion of 1953-12-31} {
    clock format -504962704 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Dec December 12/31/1953 12:34:56 die xxxi mensis xii annoque mcmliii xii h xxxiv m lvi s 19 mcm 31 xxxi 31 xxxi Dec 365 2434743 12 xii 12 12/31/1953 die xxxi mensis xii annoque mcmliii 53 liii 1953}
test clock-2.649 {conversion of 1956-01-01} {
    clock format -441804304 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Jan January 01/01/1956 12:34:56 die i mensis i annoque mcmlvi xii h xxxiv m lvi s 19 mcm 01 i  1 i Jan 001 2435474 01 i  1 01/01/1956 die i mensis i annoque mcmlvi 56 lvi 1956}
test clock-2.650 {conversion of 1956-01-31} {
    clock format -439212304 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Jan January 01/31/1956 12:34:56 die xxxi mensis i annoque mcmlvi xii h xxxiv m lvi s 19 mcm 31 xxxi 31 xxxi Jan 031 2435504 01 i  1 01/31/1956 die xxxi mensis i annoque mcmlvi 56 lvi 1956}
test clock-2.651 {conversion of 1956-02-01} {
    clock format -439125904 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Feb February 02/01/1956 12:34:56 die i mensis ii annoque mcmlvi xii h xxxiv m lvi s 19 mcm 01 i  1 i Feb 032 2435505 02 ii  2 02/01/1956 die i mensis ii annoque mcmlvi 56 lvi 1956}
test clock-2.652 {conversion of 1956-02-29} {
    clock format -436706704 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Feb February 02/29/1956 12:34:56 die xxix mensis ii annoque mcmlvi xii h xxxiv m lvi s 19 mcm 29 xxix 29 xxix Feb 060 2435533 02 ii  2 02/29/1956 die xxix mensis ii annoque mcmlvi 56 lvi 1956}
test clock-2.653 {conversion of 1956-03-01} {
    clock format -436620304 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Mar March 03/01/1956 12:34:56 die i mensis iii annoque mcmlvi xii h xxxiv m lvi s 19 mcm 01 i  1 i Mar 061 2435534 03 iii  3 03/01/1956 die i mensis iii annoque mcmlvi 56 lvi 1956}
test clock-2.654 {conversion of 1956-03-31} {
    clock format -434028304 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Mar March 03/31/1956 12:34:56 die xxxi mensis iii annoque mcmlvi xii h xxxiv m lvi s 19 mcm 31 xxxi 31 xxxi Mar 091 2435564 03 iii  3 03/31/1956 die xxxi mensis iii annoque mcmlvi 56 lvi 1956}
test clock-2.655 {conversion of 1956-04-01} {
    clock format -433941904 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Apr April 04/01/1956 12:34:56 die i mensis iv annoque mcmlvi xii h xxxiv m lvi s 19 mcm 01 i  1 i Apr 092 2435565 04 iv  4 04/01/1956 die i mensis iv annoque mcmlvi 56 lvi 1956}
test clock-2.656 {conversion of 1956-04-30} {
    clock format -431436304 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Apr April 04/30/1956 12:34:56 die xxx mensis iv annoque mcmlvi xii h xxxiv m lvi s 19 mcm 30 xxx 30 xxx Apr 121 2435594 04 iv  4 04/30/1956 die xxx mensis iv annoque mcmlvi 56 lvi 1956}
test clock-2.657 {conversion of 1956-05-01} {
    clock format -431349904 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {May May 05/01/1956 12:34:56 die i mensis v annoque mcmlvi xii h xxxiv m lvi s 19 mcm 01 i  1 i May 122 2435595 05 v  5 05/01/1956 die i mensis v annoque mcmlvi 56 lvi 1956}
test clock-2.658 {conversion of 1956-05-31} {
    clock format -428757904 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {May May 05/31/1956 12:34:56 die xxxi mensis v annoque mcmlvi xii h xxxiv m lvi s 19 mcm 31 xxxi 31 xxxi May 152 2435625 05 v  5 05/31/1956 die xxxi mensis v annoque mcmlvi 56 lvi 1956}
test clock-2.659 {conversion of 1956-06-01} {
    clock format -428671504 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Jun June 06/01/1956 12:34:56 die i mensis vi annoque mcmlvi xii h xxxiv m lvi s 19 mcm 01 i  1 i Jun 153 2435626 06 vi  6 06/01/1956 die i mensis vi annoque mcmlvi 56 lvi 1956}
test clock-2.660 {conversion of 1956-06-30} {
    clock format -426165904 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Jun June 06/30/1956 12:34:56 die xxx mensis vi annoque mcmlvi xii h xxxiv m lvi s 19 mcm 30 xxx 30 xxx Jun 182 2435655 06 vi  6 06/30/1956 die xxx mensis vi annoque mcmlvi 56 lvi 1956}
test clock-2.661 {conversion of 1956-07-01} {
    clock format -426079504 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Jul July 07/01/1956 12:34:56 die i mensis vii annoque mcmlvi xii h xxxiv m lvi s 19 mcm 01 i  1 i Jul 183 2435656 07 vii  7 07/01/1956 die i mensis vii annoque mcmlvi 56 lvi 1956}
test clock-2.662 {conversion of 1956-07-31} {
    clock format -423487504 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Jul July 07/31/1956 12:34:56 die xxxi mensis vii annoque mcmlvi xii h xxxiv m lvi s 19 mcm 31 xxxi 31 xxxi Jul 213 2435686 07 vii  7 07/31/1956 die xxxi mensis vii annoque mcmlvi 56 lvi 1956}
test clock-2.663 {conversion of 1956-08-01} {
    clock format -423401104 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Aug August 08/01/1956 12:34:56 die i mensis viii annoque mcmlvi xii h xxxiv m lvi s 19 mcm 01 i  1 i Aug 214 2435687 08 viii  8 08/01/1956 die i mensis viii annoque mcmlvi 56 lvi 1956}
test clock-2.664 {conversion of 1956-08-31} {
    clock format -420809104 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Aug August 08/31/1956 12:34:56 die xxxi mensis viii annoque mcmlvi xii h xxxiv m lvi s 19 mcm 31 xxxi 31 xxxi Aug 244 2435717 08 viii  8 08/31/1956 die xxxi mensis viii annoque mcmlvi 56 lvi 1956}
test clock-2.665 {conversion of 1956-09-01} {
    clock format -420722704 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Sep September 09/01/1956 12:34:56 die i mensis ix annoque mcmlvi xii h xxxiv m lvi s 19 mcm 01 i  1 i Sep 245 2435718 09 ix  9 09/01/1956 die i mensis ix annoque mcmlvi 56 lvi 1956}
test clock-2.666 {conversion of 1956-09-30} {
    clock format -418217104 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Sep September 09/30/1956 12:34:56 die xxx mensis ix annoque mcmlvi xii h xxxiv m lvi s 19 mcm 30 xxx 30 xxx Sep 274 2435747 09 ix  9 09/30/1956 die xxx mensis ix annoque mcmlvi 56 lvi 1956}
test clock-2.667 {conversion of 1956-10-01} {
    clock format -418130704 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Oct October 10/01/1956 12:34:56 die i mensis x annoque mcmlvi xii h xxxiv m lvi s 19 mcm 01 i  1 i Oct 275 2435748 10 x 10 10/01/1956 die i mensis x annoque mcmlvi 56 lvi 1956}
test clock-2.668 {conversion of 1956-10-31} {
    clock format -415538704 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Oct October 10/31/1956 12:34:56 die xxxi mensis x annoque mcmlvi xii h xxxiv m lvi s 19 mcm 31 xxxi 31 xxxi Oct 305 2435778 10 x 10 10/31/1956 die xxxi mensis x annoque mcmlvi 56 lvi 1956}
test clock-2.669 {conversion of 1956-11-01} {
    clock format -415452304 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Nov November 11/01/1956 12:34:56 die i mensis xi annoque mcmlvi xii h xxxiv m lvi s 19 mcm 01 i  1 i Nov 306 2435779 11 xi 11 11/01/1956 die i mensis xi annoque mcmlvi 56 lvi 1956}
test clock-2.670 {conversion of 1956-11-30} {
    clock format -412946704 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Nov November 11/30/1956 12:34:56 die xxx mensis xi annoque mcmlvi xii h xxxiv m lvi s 19 mcm 30 xxx 30 xxx Nov 335 2435808 11 xi 11 11/30/1956 die xxx mensis xi annoque mcmlvi 56 lvi 1956}
test clock-2.671 {conversion of 1956-12-01} {
    clock format -412860304 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Dec December 12/01/1956 12:34:56 die i mensis xii annoque mcmlvi xii h xxxiv m lvi s 19 mcm 01 i  1 i Dec 336 2435809 12 xii 12 12/01/1956 die i mensis xii annoque mcmlvi 56 lvi 1956}
test clock-2.672 {conversion of 1956-12-31} {
    clock format -410268304 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Dec December 12/31/1956 12:34:56 die xxxi mensis xii annoque mcmlvi xii h xxxiv m lvi s 19 mcm 31 xxxi 31 xxxi Dec 366 2435839 12 xii 12 12/31/1956 die xxxi mensis xii annoque mcmlvi 56 lvi 1956}
test clock-2.673 {conversion of 1957-01-01} {
    clock format -410181904 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Jan January 01/01/1957 12:34:56 die i mensis i annoque mcmlvii xii h xxxiv m lvi s 19 mcm 01 i  1 i Jan 001 2435840 01 i  1 01/01/1957 die i mensis i annoque mcmlvii 57 lvii 1957}
test clock-2.674 {conversion of 1957-01-31} {
    clock format -407589904 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Jan January 01/31/1957 12:34:56 die xxxi mensis i annoque mcmlvii xii h xxxiv m lvi s 19 mcm 31 xxxi 31 xxxi Jan 031 2435870 01 i  1 01/31/1957 die xxxi mensis i annoque mcmlvii 57 lvii 1957}
test clock-2.675 {conversion of 1957-02-01} {
    clock format -407503504 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Feb February 02/01/1957 12:34:56 die i mensis ii annoque mcmlvii xii h xxxiv m lvi s 19 mcm 01 i  1 i Feb 032 2435871 02 ii  2 02/01/1957 die i mensis ii annoque mcmlvii 57 lvii 1957}
test clock-2.676 {conversion of 1957-02-28} {
    clock format -405170704 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Feb February 02/28/1957 12:34:56 die xxviii mensis ii annoque mcmlvii xii h xxxiv m lvi s 19 mcm 28 xxviii 28 xxviii Feb 059 2435898 02 ii  2 02/28/1957 die xxviii mensis ii annoque mcmlvii 57 lvii 1957}
test clock-2.677 {conversion of 1957-03-01} {
    clock format -405084304 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Mar March 03/01/1957 12:34:56 die i mensis iii annoque mcmlvii xii h xxxiv m lvi s 19 mcm 01 i  1 i Mar 060 2435899 03 iii  3 03/01/1957 die i mensis iii annoque mcmlvii 57 lvii 1957}
test clock-2.678 {conversion of 1957-03-31} {
    clock format -402492304 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Mar March 03/31/1957 12:34:56 die xxxi mensis iii annoque mcmlvii xii h xxxiv m lvi s 19 mcm 31 xxxi 31 xxxi Mar 090 2435929 03 iii  3 03/31/1957 die xxxi mensis iii annoque mcmlvii 57 lvii 1957}
test clock-2.679 {conversion of 1957-04-01} {
    clock format -402405904 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Apr April 04/01/1957 12:34:56 die i mensis iv annoque mcmlvii xii h xxxiv m lvi s 19 mcm 01 i  1 i Apr 091 2435930 04 iv  4 04/01/1957 die i mensis iv annoque mcmlvii 57 lvii 1957}
test clock-2.680 {conversion of 1957-04-30} {
    clock format -399900304 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Apr April 04/30/1957 12:34:56 die xxx mensis iv annoque mcmlvii xii h xxxiv m lvi s 19 mcm 30 xxx 30 xxx Apr 120 2435959 04 iv  4 04/30/1957 die xxx mensis iv annoque mcmlvii 57 lvii 1957}
test clock-2.681 {conversion of 1957-05-01} {
    clock format -399813904 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {May May 05/01/1957 12:34:56 die i mensis v annoque mcmlvii xii h xxxiv m lvi s 19 mcm 01 i  1 i May 121 2435960 05 v  5 05/01/1957 die i mensis v annoque mcmlvii 57 lvii 1957}
test clock-2.682 {conversion of 1957-05-31} {
    clock format -397221904 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {May May 05/31/1957 12:34:56 die xxxi mensis v annoque mcmlvii xii h xxxiv m lvi s 19 mcm 31 xxxi 31 xxxi May 151 2435990 05 v  5 05/31/1957 die xxxi mensis v annoque mcmlvii 57 lvii 1957}
test clock-2.683 {conversion of 1957-06-01} {
    clock format -397135504 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Jun June 06/01/1957 12:34:56 die i mensis vi annoque mcmlvii xii h xxxiv m lvi s 19 mcm 01 i  1 i Jun 152 2435991 06 vi  6 06/01/1957 die i mensis vi annoque mcmlvii 57 lvii 1957}
test clock-2.684 {conversion of 1957-06-30} {
    clock format -394629904 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Jun June 06/30/1957 12:34:56 die xxx mensis vi annoque mcmlvii xii h xxxiv m lvi s 19 mcm 30 xxx 30 xxx Jun 181 2436020 06 vi  6 06/30/1957 die xxx mensis vi annoque mcmlvii 57 lvii 1957}
test clock-2.685 {conversion of 1957-07-01} {
    clock format -394543504 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Jul July 07/01/1957 12:34:56 die i mensis vii annoque mcmlvii xii h xxxiv m lvi s 19 mcm 01 i  1 i Jul 182 2436021 07 vii  7 07/01/1957 die i mensis vii annoque mcmlvii 57 lvii 1957}
test clock-2.686 {conversion of 1957-07-31} {
    clock format -391951504 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Jul July 07/31/1957 12:34:56 die xxxi mensis vii annoque mcmlvii xii h xxxiv m lvi s 19 mcm 31 xxxi 31 xxxi Jul 212 2436051 07 vii  7 07/31/1957 die xxxi mensis vii annoque mcmlvii 57 lvii 1957}
test clock-2.687 {conversion of 1957-08-01} {
    clock format -391865104 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Aug August 08/01/1957 12:34:56 die i mensis viii annoque mcmlvii xii h xxxiv m lvi s 19 mcm 01 i  1 i Aug 213 2436052 08 viii  8 08/01/1957 die i mensis viii annoque mcmlvii 57 lvii 1957}
test clock-2.688 {conversion of 1957-08-31} {
    clock format -389273104 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Aug August 08/31/1957 12:34:56 die xxxi mensis viii annoque mcmlvii xii h xxxiv m lvi s 19 mcm 31 xxxi 31 xxxi Aug 243 2436082 08 viii  8 08/31/1957 die xxxi mensis viii annoque mcmlvii 57 lvii 1957}
test clock-2.689 {conversion of 1957-09-01} {
    clock format -389186704 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Sep September 09/01/1957 12:34:56 die i mensis ix annoque mcmlvii xii h xxxiv m lvi s 19 mcm 01 i  1 i Sep 244 2436083 09 ix  9 09/01/1957 die i mensis ix annoque mcmlvii 57 lvii 1957}
test clock-2.690 {conversion of 1957-09-30} {
    clock format -386681104 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Sep September 09/30/1957 12:34:56 die xxx mensis ix annoque mcmlvii xii h xxxiv m lvi s 19 mcm 30 xxx 30 xxx Sep 273 2436112 09 ix  9 09/30/1957 die xxx mensis ix annoque mcmlvii 57 lvii 1957}
test clock-2.691 {conversion of 1957-10-01} {
    clock format -386594704 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Oct October 10/01/1957 12:34:56 die i mensis x annoque mcmlvii xii h xxxiv m lvi s 19 mcm 01 i  1 i Oct 274 2436113 10 x 10 10/01/1957 die i mensis x annoque mcmlvii 57 lvii 1957}
test clock-2.692 {conversion of 1957-10-31} {
    clock format -384002704 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Oct October 10/31/1957 12:34:56 die xxxi mensis x annoque mcmlvii xii h xxxiv m lvi s 19 mcm 31 xxxi 31 xxxi Oct 304 2436143 10 x 10 10/31/1957 die xxxi mensis x annoque mcmlvii 57 lvii 1957}
test clock-2.693 {conversion of 1957-11-01} {
    clock format -383916304 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Nov November 11/01/1957 12:34:56 die i mensis xi annoque mcmlvii xii h xxxiv m lvi s 19 mcm 01 i  1 i Nov 305 2436144 11 xi 11 11/01/1957 die i mensis xi annoque mcmlvii 57 lvii 1957}
test clock-2.694 {conversion of 1957-11-30} {
    clock format -381410704 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Nov November 11/30/1957 12:34:56 die xxx mensis xi annoque mcmlvii xii h xxxiv m lvi s 19 mcm 30 xxx 30 xxx Nov 334 2436173 11 xi 11 11/30/1957 die xxx mensis xi annoque mcmlvii 57 lvii 1957}
test clock-2.695 {conversion of 1957-12-01} {
    clock format -381324304 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Dec December 12/01/1957 12:34:56 die i mensis xii annoque mcmlvii xii h xxxiv m lvi s 19 mcm 01 i  1 i Dec 335 2436174 12 xii 12 12/01/1957 die i mensis xii annoque mcmlvii 57 lvii 1957}
test clock-2.696 {conversion of 1957-12-31} {
    clock format -378732304 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Dec December 12/31/1957 12:34:56 die xxxi mensis xii annoque mcmlvii xii h xxxiv m lvi s 19 mcm 31 xxxi 31 xxxi Dec 365 2436204 12 xii 12 12/31/1957 die xxxi mensis xii annoque mcmlvii 57 lvii 1957}
test clock-2.697 {conversion of 1959-01-01} {
    clock format -347109904 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Jan January 01/01/1959 12:34:56 die i mensis i annoque mcmlix xii h xxxiv m lvi s 19 mcm 01 i  1 i Jan 001 2436570 01 i  1 01/01/1959 die i mensis i annoque mcmlix 59 lix 1959}
test clock-2.698 {conversion of 1959-01-31} {
    clock format -344517904 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Jan January 01/31/1959 12:34:56 die xxxi mensis i annoque mcmlix xii h xxxiv m lvi s 19 mcm 31 xxxi 31 xxxi Jan 031 2436600 01 i  1 01/31/1959 die xxxi mensis i annoque mcmlix 59 lix 1959}
test clock-2.699 {conversion of 1959-02-01} {
    clock format -344431504 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Feb February 02/01/1959 12:34:56 die i mensis ii annoque mcmlix xii h xxxiv m lvi s 19 mcm 01 i  1 i Feb 032 2436601 02 ii  2 02/01/1959 die i mensis ii annoque mcmlix 59 lix 1959}
test clock-2.700 {conversion of 1959-02-28} {
    clock format -342098704 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Feb February 02/28/1959 12:34:56 die xxviii mensis ii annoque mcmlix xii h xxxiv m lvi s 19 mcm 28 xxviii 28 xxviii Feb 059 2436628 02 ii  2 02/28/1959 die xxviii mensis ii annoque mcmlix 59 lix 1959}
test clock-2.701 {conversion of 1959-03-01} {
    clock format -342012304 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Mar March 03/01/1959 12:34:56 die i mensis iii annoque mcmlix xii h xxxiv m lvi s 19 mcm 01 i  1 i Mar 060 2436629 03 iii  3 03/01/1959 die i mensis iii annoque mcmlix 59 lix 1959}
test clock-2.702 {conversion of 1959-03-31} {
    clock format -339420304 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Mar March 03/31/1959 12:34:56 die xxxi mensis iii annoque mcmlix xii h xxxiv m lvi s 19 mcm 31 xxxi 31 xxxi Mar 090 2436659 03 iii  3 03/31/1959 die xxxi mensis iii annoque mcmlix 59 lix 1959}
test clock-2.703 {conversion of 1959-04-01} {
    clock format -339333904 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Apr April 04/01/1959 12:34:56 die i mensis iv annoque mcmlix xii h xxxiv m lvi s 19 mcm 01 i  1 i Apr 091 2436660 04 iv  4 04/01/1959 die i mensis iv annoque mcmlix 59 lix 1959}
test clock-2.704 {conversion of 1959-04-30} {
    clock format -336828304 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Apr April 04/30/1959 12:34:56 die xxx mensis iv annoque mcmlix xii h xxxiv m lvi s 19 mcm 30 xxx 30 xxx Apr 120 2436689 04 iv  4 04/30/1959 die xxx mensis iv annoque mcmlix 59 lix 1959}
test clock-2.705 {conversion of 1959-05-01} {
    clock format -336741904 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {May May 05/01/1959 12:34:56 die i mensis v annoque mcmlix xii h xxxiv m lvi s 19 mcm 01 i  1 i May 121 2436690 05 v  5 05/01/1959 die i mensis v annoque mcmlix 59 lix 1959}
test clock-2.706 {conversion of 1959-05-31} {
    clock format -334149904 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {May May 05/31/1959 12:34:56 die xxxi mensis v annoque mcmlix xii h xxxiv m lvi s 19 mcm 31 xxxi 31 xxxi May 151 2436720 05 v  5 05/31/1959 die xxxi mensis v annoque mcmlix 59 lix 1959}
test clock-2.707 {conversion of 1959-06-01} {
    clock format -334063504 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Jun June 06/01/1959 12:34:56 die i mensis vi annoque mcmlix xii h xxxiv m lvi s 19 mcm 01 i  1 i Jun 152 2436721 06 vi  6 06/01/1959 die i mensis vi annoque mcmlix 59 lix 1959}
test clock-2.708 {conversion of 1959-06-30} {
    clock format -331557904 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Jun June 06/30/1959 12:34:56 die xxx mensis vi annoque mcmlix xii h xxxiv m lvi s 19 mcm 30 xxx 30 xxx Jun 181 2436750 06 vi  6 06/30/1959 die xxx mensis vi annoque mcmlix 59 lix 1959}
test clock-2.709 {conversion of 1959-07-01} {
    clock format -331471504 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Jul July 07/01/1959 12:34:56 die i mensis vii annoque mcmlix xii h xxxiv m lvi s 19 mcm 01 i  1 i Jul 182 2436751 07 vii  7 07/01/1959 die i mensis vii annoque mcmlix 59 lix 1959}
test clock-2.710 {conversion of 1959-07-31} {
    clock format -328879504 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Jul July 07/31/1959 12:34:56 die xxxi mensis vii annoque mcmlix xii h xxxiv m lvi s 19 mcm 31 xxxi 31 xxxi Jul 212 2436781 07 vii  7 07/31/1959 die xxxi mensis vii annoque mcmlix 59 lix 1959}
test clock-2.711 {conversion of 1959-08-01} {
    clock format -328793104 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Aug August 08/01/1959 12:34:56 die i mensis viii annoque mcmlix xii h xxxiv m lvi s 19 mcm 01 i  1 i Aug 213 2436782 08 viii  8 08/01/1959 die i mensis viii annoque mcmlix 59 lix 1959}
test clock-2.712 {conversion of 1959-08-31} {
    clock format -326201104 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Aug August 08/31/1959 12:34:56 die xxxi mensis viii annoque mcmlix xii h xxxiv m lvi s 19 mcm 31 xxxi 31 xxxi Aug 243 2436812 08 viii  8 08/31/1959 die xxxi mensis viii annoque mcmlix 59 lix 1959}
test clock-2.713 {conversion of 1959-09-01} {
    clock format -326114704 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Sep September 09/01/1959 12:34:56 die i mensis ix annoque mcmlix xii h xxxiv m lvi s 19 mcm 01 i  1 i Sep 244 2436813 09 ix  9 09/01/1959 die i mensis ix annoque mcmlix 59 lix 1959}
test clock-2.714 {conversion of 1959-09-30} {
    clock format -323609104 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Sep September 09/30/1959 12:34:56 die xxx mensis ix annoque mcmlix xii h xxxiv m lvi s 19 mcm 30 xxx 30 xxx Sep 273 2436842 09 ix  9 09/30/1959 die xxx mensis ix annoque mcmlix 59 lix 1959}
test clock-2.715 {conversion of 1959-10-01} {
    clock format -323522704 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Oct October 10/01/1959 12:34:56 die i mensis x annoque mcmlix xii h xxxiv m lvi s 19 mcm 01 i  1 i Oct 274 2436843 10 x 10 10/01/1959 die i mensis x annoque mcmlix 59 lix 1959}
test clock-2.716 {conversion of 1959-10-31} {
    clock format -320930704 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Oct October 10/31/1959 12:34:56 die xxxi mensis x annoque mcmlix xii h xxxiv m lvi s 19 mcm 31 xxxi 31 xxxi Oct 304 2436873 10 x 10 10/31/1959 die xxxi mensis x annoque mcmlix 59 lix 1959}
test clock-2.717 {conversion of 1959-11-01} {
    clock format -320844304 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Nov November 11/01/1959 12:34:56 die i mensis xi annoque mcmlix xii h xxxiv m lvi s 19 mcm 01 i  1 i Nov 305 2436874 11 xi 11 11/01/1959 die i mensis xi annoque mcmlix 59 lix 1959}
test clock-2.718 {conversion of 1959-11-30} {
    clock format -318338704 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Nov November 11/30/1959 12:34:56 die xxx mensis xi annoque mcmlix xii h xxxiv m lvi s 19 mcm 30 xxx 30 xxx Nov 334 2436903 11 xi 11 11/30/1959 die xxx mensis xi annoque mcmlix 59 lix 1959}
test clock-2.719 {conversion of 1959-12-01} {
    clock format -318252304 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Dec December 12/01/1959 12:34:56 die i mensis xii annoque mcmlix xii h xxxiv m lvi s 19 mcm 01 i  1 i Dec 335 2436904 12 xii 12 12/01/1959 die i mensis xii annoque mcmlix 59 lix 1959}
test clock-2.720 {conversion of 1959-12-31} {
    clock format -315660304 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Dec December 12/31/1959 12:34:56 die xxxi mensis xii annoque mcmlix xii h xxxiv m lvi s 19 mcm 31 xxxi 31 xxxi Dec 365 2436934 12 xii 12 12/31/1959 die xxxi mensis xii annoque mcmlix 59 lix 1959}
test clock-2.721 {conversion of 1960-01-01} {
    clock format -315573904 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Jan January 01/01/1960 12:34:56 die i mensis i annoque mcmlx xii h xxxiv m lvi s 19 mcm 01 i  1 i Jan 001 2436935 01 i  1 01/01/1960 die i mensis i annoque mcmlx 60 lx 1960}
test clock-2.722 {conversion of 1960-01-31} {
    clock format -312981904 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Jan January 01/31/1960 12:34:56 die xxxi mensis i annoque mcmlx xii h xxxiv m lvi s 19 mcm 31 xxxi 31 xxxi Jan 031 2436965 01 i  1 01/31/1960 die xxxi mensis i annoque mcmlx 60 lx 1960}
test clock-2.723 {conversion of 1960-02-01} {
    clock format -312895504 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Feb February 02/01/1960 12:34:56 die i mensis ii annoque mcmlx xii h xxxiv m lvi s 19 mcm 01 i  1 i Feb 032 2436966 02 ii  2 02/01/1960 die i mensis ii annoque mcmlx 60 lx 1960}
test clock-2.724 {conversion of 1960-02-29} {
    clock format -310476304 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Feb February 02/29/1960 12:34:56 die xxix mensis ii annoque mcmlx xii h xxxiv m lvi s 19 mcm 29 xxix 29 xxix Feb 060 2436994 02 ii  2 02/29/1960 die xxix mensis ii annoque mcmlx 60 lx 1960}
test clock-2.725 {conversion of 1960-03-01} {
    clock format -310389904 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Mar March 03/01/1960 12:34:56 die i mensis iii annoque mcmlx xii h xxxiv m lvi s 19 mcm 01 i  1 i Mar 061 2436995 03 iii  3 03/01/1960 die i mensis iii annoque mcmlx 60 lx 1960}
test clock-2.726 {conversion of 1960-03-31} {
    clock format -307797904 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Mar March 03/31/1960 12:34:56 die xxxi mensis iii annoque mcmlx xii h xxxiv m lvi s 19 mcm 31 xxxi 31 xxxi Mar 091 2437025 03 iii  3 03/31/1960 die xxxi mensis iii annoque mcmlx 60 lx 1960}
test clock-2.727 {conversion of 1960-04-01} {
    clock format -307711504 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Apr April 04/01/1960 12:34:56 die i mensis iv annoque mcmlx xii h xxxiv m lvi s 19 mcm 01 i  1 i Apr 092 2437026 04 iv  4 04/01/1960 die i mensis iv annoque mcmlx 60 lx 1960}
test clock-2.728 {conversion of 1960-04-30} {
    clock format -305205904 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Apr April 04/30/1960 12:34:56 die xxx mensis iv annoque mcmlx xii h xxxiv m lvi s 19 mcm 30 xxx 30 xxx Apr 121 2437055 04 iv  4 04/30/1960 die xxx mensis iv annoque mcmlx 60 lx 1960}
test clock-2.729 {conversion of 1960-05-01} {
    clock format -305119504 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {May May 05/01/1960 12:34:56 die i mensis v annoque mcmlx xii h xxxiv m lvi s 19 mcm 01 i  1 i May 122 2437056 05 v  5 05/01/1960 die i mensis v annoque mcmlx 60 lx 1960}
test clock-2.730 {conversion of 1960-05-31} {
    clock format -302527504 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {May May 05/31/1960 12:34:56 die xxxi mensis v annoque mcmlx xii h xxxiv m lvi s 19 mcm 31 xxxi 31 xxxi May 152 2437086 05 v  5 05/31/1960 die xxxi mensis v annoque mcmlx 60 lx 1960}
test clock-2.731 {conversion of 1960-06-01} {
    clock format -302441104 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Jun June 06/01/1960 12:34:56 die i mensis vi annoque mcmlx xii h xxxiv m lvi s 19 mcm 01 i  1 i Jun 153 2437087 06 vi  6 06/01/1960 die i mensis vi annoque mcmlx 60 lx 1960}
test clock-2.732 {conversion of 1960-06-30} {
    clock format -299935504 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Jun June 06/30/1960 12:34:56 die xxx mensis vi annoque mcmlx xii h xxxiv m lvi s 19 mcm 30 xxx 30 xxx Jun 182 2437116 06 vi  6 06/30/1960 die xxx mensis vi annoque mcmlx 60 lx 1960}
test clock-2.733 {conversion of 1960-07-01} {
    clock format -299849104 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Jul July 07/01/1960 12:34:56 die i mensis vii annoque mcmlx xii h xxxiv m lvi s 19 mcm 01 i  1 i Jul 183 2437117 07 vii  7 07/01/1960 die i mensis vii annoque mcmlx 60 lx 1960}
test clock-2.734 {conversion of 1960-07-31} {
    clock format -297257104 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Jul July 07/31/1960 12:34:56 die xxxi mensis vii annoque mcmlx xii h xxxiv m lvi s 19 mcm 31 xxxi 31 xxxi Jul 213 2437147 07 vii  7 07/31/1960 die xxxi mensis vii annoque mcmlx 60 lx 1960}
test clock-2.735 {conversion of 1960-08-01} {
    clock format -297170704 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Aug August 08/01/1960 12:34:56 die i mensis viii annoque mcmlx xii h xxxiv m lvi s 19 mcm 01 i  1 i Aug 214 2437148 08 viii  8 08/01/1960 die i mensis viii annoque mcmlx 60 lx 1960}
test clock-2.736 {conversion of 1960-08-31} {
    clock format -294578704 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Aug August 08/31/1960 12:34:56 die xxxi mensis viii annoque mcmlx xii h xxxiv m lvi s 19 mcm 31 xxxi 31 xxxi Aug 244 2437178 08 viii  8 08/31/1960 die xxxi mensis viii annoque mcmlx 60 lx 1960}
test clock-2.737 {conversion of 1960-09-01} {
    clock format -294492304 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Sep September 09/01/1960 12:34:56 die i mensis ix annoque mcmlx xii h xxxiv m lvi s 19 mcm 01 i  1 i Sep 245 2437179 09 ix  9 09/01/1960 die i mensis ix annoque mcmlx 60 lx 1960}
test clock-2.738 {conversion of 1960-09-30} {
    clock format -291986704 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Sep September 09/30/1960 12:34:56 die xxx mensis ix annoque mcmlx xii h xxxiv m lvi s 19 mcm 30 xxx 30 xxx Sep 274 2437208 09 ix  9 09/30/1960 die xxx mensis ix annoque mcmlx 60 lx 1960}
test clock-2.739 {conversion of 1960-10-01} {
    clock format -291900304 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Oct October 10/01/1960 12:34:56 die i mensis x annoque mcmlx xii h xxxiv m lvi s 19 mcm 01 i  1 i Oct 275 2437209 10 x 10 10/01/1960 die i mensis x annoque mcmlx 60 lx 1960}
test clock-2.740 {conversion of 1960-10-31} {
    clock format -289308304 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Oct October 10/31/1960 12:34:56 die xxxi mensis x annoque mcmlx xii h xxxiv m lvi s 19 mcm 31 xxxi 31 xxxi Oct 305 2437239 10 x 10 10/31/1960 die xxxi mensis x annoque mcmlx 60 lx 1960}
test clock-2.741 {conversion of 1960-11-01} {
    clock format -289221904 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Nov November 11/01/1960 12:34:56 die i mensis xi annoque mcmlx xii h xxxiv m lvi s 19 mcm 01 i  1 i Nov 306 2437240 11 xi 11 11/01/1960 die i mensis xi annoque mcmlx 60 lx 1960}
test clock-2.742 {conversion of 1960-11-30} {
    clock format -286716304 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Nov November 11/30/1960 12:34:56 die xxx mensis xi annoque mcmlx xii h xxxiv m lvi s 19 mcm 30 xxx 30 xxx Nov 335 2437269 11 xi 11 11/30/1960 die xxx mensis xi annoque mcmlx 60 lx 1960}
test clock-2.743 {conversion of 1960-12-01} {
    clock format -286629904 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Dec December 12/01/1960 12:34:56 die i mensis xii annoque mcmlx xii h xxxiv m lvi s 19 mcm 01 i  1 i Dec 336 2437270 12 xii 12 12/01/1960 die i mensis xii annoque mcmlx 60 lx 1960}
test clock-2.744 {conversion of 1960-12-31} {
    clock format -284037904 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Dec December 12/31/1960 12:34:56 die xxxi mensis xii annoque mcmlx xii h xxxiv m lvi s 19 mcm 31 xxxi 31 xxxi Dec 366 2437300 12 xii 12 12/31/1960 die xxxi mensis xii annoque mcmlx 60 lx 1960}
test clock-2.745 {conversion of 1961-01-01} {
    clock format -283951504 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Jan January 01/01/1961 12:34:56 die i mensis i annoque mcmlxi xii h xxxiv m lvi s 19 mcm 01 i  1 i Jan 001 2437301 01 i  1 01/01/1961 die i mensis i annoque mcmlxi 61 lxi 1961}
test clock-2.746 {conversion of 1961-01-31} {
    clock format -281359504 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Jan January 01/31/1961 12:34:56 die xxxi mensis i annoque mcmlxi xii h xxxiv m lvi s 19 mcm 31 xxxi 31 xxxi Jan 031 2437331 01 i  1 01/31/1961 die xxxi mensis i annoque mcmlxi 61 lxi 1961}
test clock-2.747 {conversion of 1961-02-01} {
    clock format -281273104 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Feb February 02/01/1961 12:34:56 die i mensis ii annoque mcmlxi xii h xxxiv m lvi s 19 mcm 01 i  1 i Feb 032 2437332 02 ii  2 02/01/1961 die i mensis ii annoque mcmlxi 61 lxi 1961}
test clock-2.748 {conversion of 1961-02-28} {
    clock format -278940304 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Feb February 02/28/1961 12:34:56 die xxviii mensis ii annoque mcmlxi xii h xxxiv m lvi s 19 mcm 28 xxviii 28 xxviii Feb 059 2437359 02 ii  2 02/28/1961 die xxviii mensis ii annoque mcmlxi 61 lxi 1961}
test clock-2.749 {conversion of 1961-03-01} {
    clock format -278853904 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Mar March 03/01/1961 12:34:56 die i mensis iii annoque mcmlxi xii h xxxiv m lvi s 19 mcm 01 i  1 i Mar 060 2437360 03 iii  3 03/01/1961 die i mensis iii annoque mcmlxi 61 lxi 1961}
test clock-2.750 {conversion of 1961-03-31} {
    clock format -276261904 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Mar March 03/31/1961 12:34:56 die xxxi mensis iii annoque mcmlxi xii h xxxiv m lvi s 19 mcm 31 xxxi 31 xxxi Mar 090 2437390 03 iii  3 03/31/1961 die xxxi mensis iii annoque mcmlxi 61 lxi 1961}
test clock-2.751 {conversion of 1961-04-01} {
    clock format -276175504 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Apr April 04/01/1961 12:34:56 die i mensis iv annoque mcmlxi xii h xxxiv m lvi s 19 mcm 01 i  1 i Apr 091 2437391 04 iv  4 04/01/1961 die i mensis iv annoque mcmlxi 61 lxi 1961}
test clock-2.752 {conversion of 1961-04-30} {
    clock format -273669904 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Apr April 04/30/1961 12:34:56 die xxx mensis iv annoque mcmlxi xii h xxxiv m lvi s 19 mcm 30 xxx 30 xxx Apr 120 2437420 04 iv  4 04/30/1961 die xxx mensis iv annoque mcmlxi 61 lxi 1961}
test clock-2.753 {conversion of 1961-05-01} {
    clock format -273583504 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {May May 05/01/1961 12:34:56 die i mensis v annoque mcmlxi xii h xxxiv m lvi s 19 mcm 01 i  1 i May 121 2437421 05 v  5 05/01/1961 die i mensis v annoque mcmlxi 61 lxi 1961}
test clock-2.754 {conversion of 1961-05-31} {
    clock format -270991504 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {May May 05/31/1961 12:34:56 die xxxi mensis v annoque mcmlxi xii h xxxiv m lvi s 19 mcm 31 xxxi 31 xxxi May 151 2437451 05 v  5 05/31/1961 die xxxi mensis v annoque mcmlxi 61 lxi 1961}
test clock-2.755 {conversion of 1961-06-01} {
    clock format -270905104 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Jun June 06/01/1961 12:34:56 die i mensis vi annoque mcmlxi xii h xxxiv m lvi s 19 mcm 01 i  1 i Jun 152 2437452 06 vi  6 06/01/1961 die i mensis vi annoque mcmlxi 61 lxi 1961}
test clock-2.756 {conversion of 1961-06-30} {
    clock format -268399504 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Jun June 06/30/1961 12:34:56 die xxx mensis vi annoque mcmlxi xii h xxxiv m lvi s 19 mcm 30 xxx 30 xxx Jun 181 2437481 06 vi  6 06/30/1961 die xxx mensis vi annoque mcmlxi 61 lxi 1961}
test clock-2.757 {conversion of 1961-07-01} {
    clock format -268313104 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Jul July 07/01/1961 12:34:56 die i mensis vii annoque mcmlxi xii h xxxiv m lvi s 19 mcm 01 i  1 i Jul 182 2437482 07 vii  7 07/01/1961 die i mensis vii annoque mcmlxi 61 lxi 1961}
test clock-2.758 {conversion of 1961-07-31} {
    clock format -265721104 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Jul July 07/31/1961 12:34:56 die xxxi mensis vii annoque mcmlxi xii h xxxiv m lvi s 19 mcm 31 xxxi 31 xxxi Jul 212 2437512 07 vii  7 07/31/1961 die xxxi mensis vii annoque mcmlxi 61 lxi 1961}
test clock-2.759 {conversion of 1961-08-01} {
    clock format -265634704 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Aug August 08/01/1961 12:34:56 die i mensis viii annoque mcmlxi xii h xxxiv m lvi s 19 mcm 01 i  1 i Aug 213 2437513 08 viii  8 08/01/1961 die i mensis viii annoque mcmlxi 61 lxi 1961}
test clock-2.760 {conversion of 1961-08-31} {
    clock format -263042704 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Aug August 08/31/1961 12:34:56 die xxxi mensis viii annoque mcmlxi xii h xxxiv m lvi s 19 mcm 31 xxxi 31 xxxi Aug 243 2437543 08 viii  8 08/31/1961 die xxxi mensis viii annoque mcmlxi 61 lxi 1961}
test clock-2.761 {conversion of 1961-09-01} {
    clock format -262956304 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Sep September 09/01/1961 12:34:56 die i mensis ix annoque mcmlxi xii h xxxiv m lvi s 19 mcm 01 i  1 i Sep 244 2437544 09 ix  9 09/01/1961 die i mensis ix annoque mcmlxi 61 lxi 1961}
test clock-2.762 {conversion of 1961-09-30} {
    clock format -260450704 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Sep September 09/30/1961 12:34:56 die xxx mensis ix annoque mcmlxi xii h xxxiv m lvi s 19 mcm 30 xxx 30 xxx Sep 273 2437573 09 ix  9 09/30/1961 die xxx mensis ix annoque mcmlxi 61 lxi 1961}
test clock-2.763 {conversion of 1961-10-01} {
    clock format -260364304 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Oct October 10/01/1961 12:34:56 die i mensis x annoque mcmlxi xii h xxxiv m lvi s 19 mcm 01 i  1 i Oct 274 2437574 10 x 10 10/01/1961 die i mensis x annoque mcmlxi 61 lxi 1961}
test clock-2.764 {conversion of 1961-10-31} {
    clock format -257772304 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Oct October 10/31/1961 12:34:56 die xxxi mensis x annoque mcmlxi xii h xxxiv m lvi s 19 mcm 31 xxxi 31 xxxi Oct 304 2437604 10 x 10 10/31/1961 die xxxi mensis x annoque mcmlxi 61 lxi 1961}
test clock-2.765 {conversion of 1961-11-01} {
    clock format -257685904 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Nov November 11/01/1961 12:34:56 die i mensis xi annoque mcmlxi xii h xxxiv m lvi s 19 mcm 01 i  1 i Nov 305 2437605 11 xi 11 11/01/1961 die i mensis xi annoque mcmlxi 61 lxi 1961}
test clock-2.766 {conversion of 1961-11-30} {
    clock format -255180304 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Nov November 11/30/1961 12:34:56 die xxx mensis xi annoque mcmlxi xii h xxxiv m lvi s 19 mcm 30 xxx 30 xxx Nov 334 2437634 11 xi 11 11/30/1961 die xxx mensis xi annoque mcmlxi 61 lxi 1961}
test clock-2.767 {conversion of 1961-12-01} {
    clock format -255093904 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Dec December 12/01/1961 12:34:56 die i mensis xii annoque mcmlxi xii h xxxiv m lvi s 19 mcm 01 i  1 i Dec 335 2437635 12 xii 12 12/01/1961 die i mensis xii annoque mcmlxi 61 lxi 1961}
test clock-2.768 {conversion of 1961-12-31} {
    clock format -252501904 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Dec December 12/31/1961 12:34:56 die xxxi mensis xii annoque mcmlxi xii h xxxiv m lvi s 19 mcm 31 xxxi 31 xxxi Dec 365 2437665 12 xii 12 12/31/1961 die xxxi mensis xii annoque mcmlxi 61 lxi 1961}
test clock-2.769 {conversion of 1962-01-01} {
    clock format -252415504 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Jan January 01/01/1962 12:34:56 die i mensis i annoque mcmlxii xii h xxxiv m lvi s 19 mcm 01 i  1 i Jan 001 2437666 01 i  1 01/01/1962 die i mensis i annoque mcmlxii 62 lxii 1962}
test clock-2.770 {conversion of 1962-01-31} {
    clock format -249823504 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Jan January 01/31/1962 12:34:56 die xxxi mensis i annoque mcmlxii xii h xxxiv m lvi s 19 mcm 31 xxxi 31 xxxi Jan 031 2437696 01 i  1 01/31/1962 die xxxi mensis i annoque mcmlxii 62 lxii 1962}
test clock-2.771 {conversion of 1962-02-01} {
    clock format -249737104 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Feb February 02/01/1962 12:34:56 die i mensis ii annoque mcmlxii xii h xxxiv m lvi s 19 mcm 01 i  1 i Feb 032 2437697 02 ii  2 02/01/1962 die i mensis ii annoque mcmlxii 62 lxii 1962}
test clock-2.772 {conversion of 1962-02-28} {
    clock format -247404304 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Feb February 02/28/1962 12:34:56 die xxviii mensis ii annoque mcmlxii xii h xxxiv m lvi s 19 mcm 28 xxviii 28 xxviii Feb 059 2437724 02 ii  2 02/28/1962 die xxviii mensis ii annoque mcmlxii 62 lxii 1962}
test clock-2.773 {conversion of 1962-03-01} {
    clock format -247317904 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Mar March 03/01/1962 12:34:56 die i mensis iii annoque mcmlxii xii h xxxiv m lvi s 19 mcm 01 i  1 i Mar 060 2437725 03 iii  3 03/01/1962 die i mensis iii annoque mcmlxii 62 lxii 1962}
test clock-2.774 {conversion of 1962-03-31} {
    clock format -244725904 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Mar March 03/31/1962 12:34:56 die xxxi mensis iii annoque mcmlxii xii h xxxiv m lvi s 19 mcm 31 xxxi 31 xxxi Mar 090 2437755 03 iii  3 03/31/1962 die xxxi mensis iii annoque mcmlxii 62 lxii 1962}
test clock-2.775 {conversion of 1962-04-01} {
    clock format -244639504 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Apr April 04/01/1962 12:34:56 die i mensis iv annoque mcmlxii xii h xxxiv m lvi s 19 mcm 01 i  1 i Apr 091 2437756 04 iv  4 04/01/1962 die i mensis iv annoque mcmlxii 62 lxii 1962}
test clock-2.776 {conversion of 1962-04-30} {
    clock format -242133904 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Apr April 04/30/1962 12:34:56 die xxx mensis iv annoque mcmlxii xii h xxxiv m lvi s 19 mcm 30 xxx 30 xxx Apr 120 2437785 04 iv  4 04/30/1962 die xxx mensis iv annoque mcmlxii 62 lxii 1962}
test clock-2.777 {conversion of 1962-05-01} {
    clock format -242047504 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {May May 05/01/1962 12:34:56 die i mensis v annoque mcmlxii xii h xxxiv m lvi s 19 mcm 01 i  1 i May 121 2437786 05 v  5 05/01/1962 die i mensis v annoque mcmlxii 62 lxii 1962}
test clock-2.778 {conversion of 1962-05-31} {
    clock format -239455504 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {May May 05/31/1962 12:34:56 die xxxi mensis v annoque mcmlxii xii h xxxiv m lvi s 19 mcm 31 xxxi 31 xxxi May 151 2437816 05 v  5 05/31/1962 die xxxi mensis v annoque mcmlxii 62 lxii 1962}
test clock-2.779 {conversion of 1962-06-01} {
    clock format -239369104 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Jun June 06/01/1962 12:34:56 die i mensis vi annoque mcmlxii xii h xxxiv m lvi s 19 mcm 01 i  1 i Jun 152 2437817 06 vi  6 06/01/1962 die i mensis vi annoque mcmlxii 62 lxii 1962}
test clock-2.780 {conversion of 1962-06-30} {
    clock format -236863504 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Jun June 06/30/1962 12:34:56 die xxx mensis vi annoque mcmlxii xii h xxxiv m lvi s 19 mcm 30 xxx 30 xxx Jun 181 2437846 06 vi  6 06/30/1962 die xxx mensis vi annoque mcmlxii 62 lxii 1962}
test clock-2.781 {conversion of 1962-07-01} {
    clock format -236777104 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Jul July 07/01/1962 12:34:56 die i mensis vii annoque mcmlxii xii h xxxiv m lvi s 19 mcm 01 i  1 i Jul 182 2437847 07 vii  7 07/01/1962 die i mensis vii annoque mcmlxii 62 lxii 1962}
test clock-2.782 {conversion of 1962-07-31} {
    clock format -234185104 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Jul July 07/31/1962 12:34:56 die xxxi mensis vii annoque mcmlxii xii h xxxiv m lvi s 19 mcm 31 xxxi 31 xxxi Jul 212 2437877 07 vii  7 07/31/1962 die xxxi mensis vii annoque mcmlxii 62 lxii 1962}
test clock-2.783 {conversion of 1962-08-01} {
    clock format -234098704 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Aug August 08/01/1962 12:34:56 die i mensis viii annoque mcmlxii xii h xxxiv m lvi s 19 mcm 01 i  1 i Aug 213 2437878 08 viii  8 08/01/1962 die i mensis viii annoque mcmlxii 62 lxii 1962}
test clock-2.784 {conversion of 1962-08-31} {
    clock format -231506704 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Aug August 08/31/1962 12:34:56 die xxxi mensis viii annoque mcmlxii xii h xxxiv m lvi s 19 mcm 31 xxxi 31 xxxi Aug 243 2437908 08 viii  8 08/31/1962 die xxxi mensis viii annoque mcmlxii 62 lxii 1962}
test clock-2.785 {conversion of 1962-09-01} {
    clock format -231420304 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Sep September 09/01/1962 12:34:56 die i mensis ix annoque mcmlxii xii h xxxiv m lvi s 19 mcm 01 i  1 i Sep 244 2437909 09 ix  9 09/01/1962 die i mensis ix annoque mcmlxii 62 lxii 1962}
test clock-2.786 {conversion of 1962-09-30} {
    clock format -228914704 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Sep September 09/30/1962 12:34:56 die xxx mensis ix annoque mcmlxii xii h xxxiv m lvi s 19 mcm 30 xxx 30 xxx Sep 273 2437938 09 ix  9 09/30/1962 die xxx mensis ix annoque mcmlxii 62 lxii 1962}
test clock-2.787 {conversion of 1962-10-01} {
    clock format -228828304 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Oct October 10/01/1962 12:34:56 die i mensis x annoque mcmlxii xii h xxxiv m lvi s 19 mcm 01 i  1 i Oct 274 2437939 10 x 10 10/01/1962 die i mensis x annoque mcmlxii 62 lxii 1962}
test clock-2.788 {conversion of 1962-10-31} {
    clock format -226236304 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Oct October 10/31/1962 12:34:56 die xxxi mensis x annoque mcmlxii xii h xxxiv m lvi s 19 mcm 31 xxxi 31 xxxi Oct 304 2437969 10 x 10 10/31/1962 die xxxi mensis x annoque mcmlxii 62 lxii 1962}
test clock-2.789 {conversion of 1962-11-01} {
    clock format -226149904 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Nov November 11/01/1962 12:34:56 die i mensis xi annoque mcmlxii xii h xxxiv m lvi s 19 mcm 01 i  1 i Nov 305 2437970 11 xi 11 11/01/1962 die i mensis xi annoque mcmlxii 62 lxii 1962}
test clock-2.790 {conversion of 1962-11-30} {
    clock format -223644304 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Nov November 11/30/1962 12:34:56 die xxx mensis xi annoque mcmlxii xii h xxxiv m lvi s 19 mcm 30 xxx 30 xxx Nov 334 2437999 11 xi 11 11/30/1962 die xxx mensis xi annoque mcmlxii 62 lxii 1962}
test clock-2.791 {conversion of 1962-12-01} {
    clock format -223557904 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Dec December 12/01/1962 12:34:56 die i mensis xii annoque mcmlxii xii h xxxiv m lvi s 19 mcm 01 i  1 i Dec 335 2438000 12 xii 12 12/01/1962 die i mensis xii annoque mcmlxii 62 lxii 1962}
test clock-2.792 {conversion of 1962-12-31} {
    clock format -220965904 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Dec December 12/31/1962 12:34:56 die xxxi mensis xii annoque mcmlxii xii h xxxiv m lvi s 19 mcm 31 xxxi 31 xxxi Dec 365 2438030 12 xii 12 12/31/1962 die xxxi mensis xii annoque mcmlxii 62 lxii 1962}
test clock-2.793 {conversion of 1963-01-01} {
    clock format -220879504 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Jan January 01/01/1963 12:34:56 die i mensis i annoque mcmlxiii xii h xxxiv m lvi s 19 mcm 01 i  1 i Jan 001 2438031 01 i  1 01/01/1963 die i mensis i annoque mcmlxiii 63 lxiii 1963}
test clock-2.794 {conversion of 1963-01-31} {
    clock format -218287504 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Jan January 01/31/1963 12:34:56 die xxxi mensis i annoque mcmlxiii xii h xxxiv m lvi s 19 mcm 31 xxxi 31 xxxi Jan 031 2438061 01 i  1 01/31/1963 die xxxi mensis i annoque mcmlxiii 63 lxiii 1963}
test clock-2.795 {conversion of 1963-02-01} {
    clock format -218201104 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Feb February 02/01/1963 12:34:56 die i mensis ii annoque mcmlxiii xii h xxxiv m lvi s 19 mcm 01 i  1 i Feb 032 2438062 02 ii  2 02/01/1963 die i mensis ii annoque mcmlxiii 63 lxiii 1963}
test clock-2.796 {conversion of 1963-02-28} {
    clock format -215868304 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Feb February 02/28/1963 12:34:56 die xxviii mensis ii annoque mcmlxiii xii h xxxiv m lvi s 19 mcm 28 xxviii 28 xxviii Feb 059 2438089 02 ii  2 02/28/1963 die xxviii mensis ii annoque mcmlxiii 63 lxiii 1963}
test clock-2.797 {conversion of 1963-03-01} {
    clock format -215781904 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Mar March 03/01/1963 12:34:56 die i mensis iii annoque mcmlxiii xii h xxxiv m lvi s 19 mcm 01 i  1 i Mar 060 2438090 03 iii  3 03/01/1963 die i mensis iii annoque mcmlxiii 63 lxiii 1963}
test clock-2.798 {conversion of 1963-03-31} {
    clock format -213189904 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Mar March 03/31/1963 12:34:56 die xxxi mensis iii annoque mcmlxiii xii h xxxiv m lvi s 19 mcm 31 xxxi 31 xxxi Mar 090 2438120 03 iii  3 03/31/1963 die xxxi mensis iii annoque mcmlxiii 63 lxiii 1963}
test clock-2.799 {conversion of 1963-04-01} {
    clock format -213103504 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Apr April 04/01/1963 12:34:56 die i mensis iv annoque mcmlxiii xii h xxxiv m lvi s 19 mcm 01 i  1 i Apr 091 2438121 04 iv  4 04/01/1963 die i mensis iv annoque mcmlxiii 63 lxiii 1963}
test clock-2.800 {conversion of 1963-04-30} {
    clock format -210597904 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Apr April 04/30/1963 12:34:56 die xxx mensis iv annoque mcmlxiii xii h xxxiv m lvi s 19 mcm 30 xxx 30 xxx Apr 120 2438150 04 iv  4 04/30/1963 die xxx mensis iv annoque mcmlxiii 63 lxiii 1963}
test clock-2.801 {conversion of 1963-05-01} {
    clock format -210511504 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {May May 05/01/1963 12:34:56 die i mensis v annoque mcmlxiii xii h xxxiv m lvi s 19 mcm 01 i  1 i May 121 2438151 05 v  5 05/01/1963 die i mensis v annoque mcmlxiii 63 lxiii 1963}
test clock-2.802 {conversion of 1963-05-31} {
    clock format -207919504 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {May May 05/31/1963 12:34:56 die xxxi mensis v annoque mcmlxiii xii h xxxiv m lvi s 19 mcm 31 xxxi 31 xxxi May 151 2438181 05 v  5 05/31/1963 die xxxi mensis v annoque mcmlxiii 63 lxiii 1963}
test clock-2.803 {conversion of 1963-06-01} {
    clock format -207833104 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Jun June 06/01/1963 12:34:56 die i mensis vi annoque mcmlxiii xii h xxxiv m lvi s 19 mcm 01 i  1 i Jun 152 2438182 06 vi  6 06/01/1963 die i mensis vi annoque mcmlxiii 63 lxiii 1963}
test clock-2.804 {conversion of 1963-06-30} {
    clock format -205327504 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Jun June 06/30/1963 12:34:56 die xxx mensis vi annoque mcmlxiii xii h xxxiv m lvi s 19 mcm 30 xxx 30 xxx Jun 181 2438211 06 vi  6 06/30/1963 die xxx mensis vi annoque mcmlxiii 63 lxiii 1963}
test clock-2.805 {conversion of 1963-07-01} {
    clock format -205241104 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Jul July 07/01/1963 12:34:56 die i mensis vii annoque mcmlxiii xii h xxxiv m lvi s 19 mcm 01 i  1 i Jul 182 2438212 07 vii  7 07/01/1963 die i mensis vii annoque mcmlxiii 63 lxiii 1963}
test clock-2.806 {conversion of 1963-07-31} {
    clock format -202649104 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Jul July 07/31/1963 12:34:56 die xxxi mensis vii annoque mcmlxiii xii h xxxiv m lvi s 19 mcm 31 xxxi 31 xxxi Jul 212 2438242 07 vii  7 07/31/1963 die xxxi mensis vii annoque mcmlxiii 63 lxiii 1963}
test clock-2.807 {conversion of 1963-08-01} {
    clock format -202562704 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Aug August 08/01/1963 12:34:56 die i mensis viii annoque mcmlxiii xii h xxxiv m lvi s 19 mcm 01 i  1 i Aug 213 2438243 08 viii  8 08/01/1963 die i mensis viii annoque mcmlxiii 63 lxiii 1963}
test clock-2.808 {conversion of 1963-08-31} {
    clock format -199970704 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Aug August 08/31/1963 12:34:56 die xxxi mensis viii annoque mcmlxiii xii h xxxiv m lvi s 19 mcm 31 xxxi 31 xxxi Aug 243 2438273 08 viii  8 08/31/1963 die xxxi mensis viii annoque mcmlxiii 63 lxiii 1963}
test clock-2.809 {conversion of 1963-09-01} {
    clock format -199884304 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Sep September 09/01/1963 12:34:56 die i mensis ix annoque mcmlxiii xii h xxxiv m lvi s 19 mcm 01 i  1 i Sep 244 2438274 09 ix  9 09/01/1963 die i mensis ix annoque mcmlxiii 63 lxiii 1963}
test clock-2.810 {conversion of 1963-09-30} {
    clock format -197378704 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Sep September 09/30/1963 12:34:56 die xxx mensis ix annoque mcmlxiii xii h xxxiv m lvi s 19 mcm 30 xxx 30 xxx Sep 273 2438303 09 ix  9 09/30/1963 die xxx mensis ix annoque mcmlxiii 63 lxiii 1963}
test clock-2.811 {conversion of 1963-10-01} {
    clock format -197292304 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Oct October 10/01/1963 12:34:56 die i mensis x annoque mcmlxiii xii h xxxiv m lvi s 19 mcm 01 i  1 i Oct 274 2438304 10 x 10 10/01/1963 die i mensis x annoque mcmlxiii 63 lxiii 1963}
test clock-2.812 {conversion of 1963-10-31} {
    clock format -194700304 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Oct October 10/31/1963 12:34:56 die xxxi mensis x annoque mcmlxiii xii h xxxiv m lvi s 19 mcm 31 xxxi 31 xxxi Oct 304 2438334 10 x 10 10/31/1963 die xxxi mensis x annoque mcmlxiii 63 lxiii 1963}
test clock-2.813 {conversion of 1963-11-01} {
    clock format -194613904 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Nov November 11/01/1963 12:34:56 die i mensis xi annoque mcmlxiii xii h xxxiv m lvi s 19 mcm 01 i  1 i Nov 305 2438335 11 xi 11 11/01/1963 die i mensis xi annoque mcmlxiii 63 lxiii 1963}
test clock-2.814 {conversion of 1963-11-30} {
    clock format -192108304 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Nov November 11/30/1963 12:34:56 die xxx mensis xi annoque mcmlxiii xii h xxxiv m lvi s 19 mcm 30 xxx 30 xxx Nov 334 2438364 11 xi 11 11/30/1963 die xxx mensis xi annoque mcmlxiii 63 lxiii 1963}
test clock-2.815 {conversion of 1963-12-01} {
    clock format -192021904 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Dec December 12/01/1963 12:34:56 die i mensis xii annoque mcmlxiii xii h xxxiv m lvi s 19 mcm 01 i  1 i Dec 335 2438365 12 xii 12 12/01/1963 die i mensis xii annoque mcmlxiii 63 lxiii 1963}
test clock-2.816 {conversion of 1963-12-31} {
    clock format -189429904 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Dec December 12/31/1963 12:34:56 die xxxi mensis xii annoque mcmlxiii xii h xxxiv m lvi s 19 mcm 31 xxxi 31 xxxi Dec 365 2438395 12 xii 12 12/31/1963 die xxxi mensis xii annoque mcmlxiii 63 lxiii 1963}
test clock-2.817 {conversion of 1964-01-01} {
    clock format -189343504 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Jan January 01/01/1964 12:34:56 die i mensis i annoque mcmlxiv xii h xxxiv m lvi s 19 mcm 01 i  1 i Jan 001 2438396 01 i  1 01/01/1964 die i mensis i annoque mcmlxiv 64 lxiv 1964}
test clock-2.818 {conversion of 1964-01-31} {
    clock format -186751504 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Jan January 01/31/1964 12:34:56 die xxxi mensis i annoque mcmlxiv xii h xxxiv m lvi s 19 mcm 31 xxxi 31 xxxi Jan 031 2438426 01 i  1 01/31/1964 die xxxi mensis i annoque mcmlxiv 64 lxiv 1964}
test clock-2.819 {conversion of 1964-02-01} {
    clock format -186665104 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Feb February 02/01/1964 12:34:56 die i mensis ii annoque mcmlxiv xii h xxxiv m lvi s 19 mcm 01 i  1 i Feb 032 2438427 02 ii  2 02/01/1964 die i mensis ii annoque mcmlxiv 64 lxiv 1964}
test clock-2.820 {conversion of 1964-02-29} {
    clock format -184245904 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Feb February 02/29/1964 12:34:56 die xxix mensis ii annoque mcmlxiv xii h xxxiv m lvi s 19 mcm 29 xxix 29 xxix Feb 060 2438455 02 ii  2 02/29/1964 die xxix mensis ii annoque mcmlxiv 64 lxiv 1964}
test clock-2.821 {conversion of 1964-03-01} {
    clock format -184159504 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Mar March 03/01/1964 12:34:56 die i mensis iii annoque mcmlxiv xii h xxxiv m lvi s 19 mcm 01 i  1 i Mar 061 2438456 03 iii  3 03/01/1964 die i mensis iii annoque mcmlxiv 64 lxiv 1964}
test clock-2.822 {conversion of 1964-03-31} {
    clock format -181567504 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Mar March 03/31/1964 12:34:56 die xxxi mensis iii annoque mcmlxiv xii h xxxiv m lvi s 19 mcm 31 xxxi 31 xxxi Mar 091 2438486 03 iii  3 03/31/1964 die xxxi mensis iii annoque mcmlxiv 64 lxiv 1964}
test clock-2.823 {conversion of 1964-04-01} {
    clock format -181481104 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Apr April 04/01/1964 12:34:56 die i mensis iv annoque mcmlxiv xii h xxxiv m lvi s 19 mcm 01 i  1 i Apr 092 2438487 04 iv  4 04/01/1964 die i mensis iv annoque mcmlxiv 64 lxiv 1964}
test clock-2.824 {conversion of 1964-04-30} {
    clock format -178975504 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Apr April 04/30/1964 12:34:56 die xxx mensis iv annoque mcmlxiv xii h xxxiv m lvi s 19 mcm 30 xxx 30 xxx Apr 121 2438516 04 iv  4 04/30/1964 die xxx mensis iv annoque mcmlxiv 64 lxiv 1964}
test clock-2.825 {conversion of 1964-05-01} {
    clock format -178889104 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {May May 05/01/1964 12:34:56 die i mensis v annoque mcmlxiv xii h xxxiv m lvi s 19 mcm 01 i  1 i May 122 2438517 05 v  5 05/01/1964 die i mensis v annoque mcmlxiv 64 lxiv 1964}
test clock-2.826 {conversion of 1964-05-31} {
    clock format -176297104 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {May May 05/31/1964 12:34:56 die xxxi mensis v annoque mcmlxiv xii h xxxiv m lvi s 19 mcm 31 xxxi 31 xxxi May 152 2438547 05 v  5 05/31/1964 die xxxi mensis v annoque mcmlxiv 64 lxiv 1964}
test clock-2.827 {conversion of 1964-06-01} {
    clock format -176210704 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Jun June 06/01/1964 12:34:56 die i mensis vi annoque mcmlxiv xii h xxxiv m lvi s 19 mcm 01 i  1 i Jun 153 2438548 06 vi  6 06/01/1964 die i mensis vi annoque mcmlxiv 64 lxiv 1964}
test clock-2.828 {conversion of 1964-06-30} {
    clock format -173705104 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Jun June 06/30/1964 12:34:56 die xxx mensis vi annoque mcmlxiv xii h xxxiv m lvi s 19 mcm 30 xxx 30 xxx Jun 182 2438577 06 vi  6 06/30/1964 die xxx mensis vi annoque mcmlxiv 64 lxiv 1964}
test clock-2.829 {conversion of 1964-07-01} {
    clock format -173618704 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Jul July 07/01/1964 12:34:56 die i mensis vii annoque mcmlxiv xii h xxxiv m lvi s 19 mcm 01 i  1 i Jul 183 2438578 07 vii  7 07/01/1964 die i mensis vii annoque mcmlxiv 64 lxiv 1964}
test clock-2.830 {conversion of 1964-07-31} {
    clock format -171026704 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Jul July 07/31/1964 12:34:56 die xxxi mensis vii annoque mcmlxiv xii h xxxiv m lvi s 19 mcm 31 xxxi 31 xxxi Jul 213 2438608 07 vii  7 07/31/1964 die xxxi mensis vii annoque mcmlxiv 64 lxiv 1964}
test clock-2.831 {conversion of 1964-08-01} {
    clock format -170940304 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Aug August 08/01/1964 12:34:56 die i mensis viii annoque mcmlxiv xii h xxxiv m lvi s 19 mcm 01 i  1 i Aug 214 2438609 08 viii  8 08/01/1964 die i mensis viii annoque mcmlxiv 64 lxiv 1964}
test clock-2.832 {conversion of 1964-08-31} {
    clock format -168348304 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Aug August 08/31/1964 12:34:56 die xxxi mensis viii annoque mcmlxiv xii h xxxiv m lvi s 19 mcm 31 xxxi 31 xxxi Aug 244 2438639 08 viii  8 08/31/1964 die xxxi mensis viii annoque mcmlxiv 64 lxiv 1964}
test clock-2.833 {conversion of 1964-09-01} {
    clock format -168261904 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Sep September 09/01/1964 12:34:56 die i mensis ix annoque mcmlxiv xii h xxxiv m lvi s 19 mcm 01 i  1 i Sep 245 2438640 09 ix  9 09/01/1964 die i mensis ix annoque mcmlxiv 64 lxiv 1964}
test clock-2.834 {conversion of 1964-09-30} {
    clock format -165756304 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Sep September 09/30/1964 12:34:56 die xxx mensis ix annoque mcmlxiv xii h xxxiv m lvi s 19 mcm 30 xxx 30 xxx Sep 274 2438669 09 ix  9 09/30/1964 die xxx mensis ix annoque mcmlxiv 64 lxiv 1964}
test clock-2.835 {conversion of 1964-10-01} {
    clock format -165669904 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Oct October 10/01/1964 12:34:56 die i mensis x annoque mcmlxiv xii h xxxiv m lvi s 19 mcm 01 i  1 i Oct 275 2438670 10 x 10 10/01/1964 die i mensis x annoque mcmlxiv 64 lxiv 1964}
test clock-2.836 {conversion of 1964-10-31} {
    clock format -163077904 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Oct October 10/31/1964 12:34:56 die xxxi mensis x annoque mcmlxiv xii h xxxiv m lvi s 19 mcm 31 xxxi 31 xxxi Oct 305 2438700 10 x 10 10/31/1964 die xxxi mensis x annoque mcmlxiv 64 lxiv 1964}
test clock-2.837 {conversion of 1964-11-01} {
    clock format -162991504 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Nov November 11/01/1964 12:34:56 die i mensis xi annoque mcmlxiv xii h xxxiv m lvi s 19 mcm 01 i  1 i Nov 306 2438701 11 xi 11 11/01/1964 die i mensis xi annoque mcmlxiv 64 lxiv 1964}
test clock-2.838 {conversion of 1964-11-30} {
    clock format -160485904 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Nov November 11/30/1964 12:34:56 die xxx mensis xi annoque mcmlxiv xii h xxxiv m lvi s 19 mcm 30 xxx 30 xxx Nov 335 2438730 11 xi 11 11/30/1964 die xxx mensis xi annoque mcmlxiv 64 lxiv 1964}
test clock-2.839 {conversion of 1964-12-01} {
    clock format -160399504 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Dec December 12/01/1964 12:34:56 die i mensis xii annoque mcmlxiv xii h xxxiv m lvi s 19 mcm 01 i  1 i Dec 336 2438731 12 xii 12 12/01/1964 die i mensis xii annoque mcmlxiv 64 lxiv 1964}
test clock-2.840 {conversion of 1964-12-31} {
    clock format -157807504 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Dec December 12/31/1964 12:34:56 die xxxi mensis xii annoque mcmlxiv xii h xxxiv m lvi s 19 mcm 31 xxxi 31 xxxi Dec 366 2438761 12 xii 12 12/31/1964 die xxxi mensis xii annoque mcmlxiv 64 lxiv 1964}
test clock-2.841 {conversion of 1965-01-01} {
    clock format -157721104 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Jan January 01/01/1965 12:34:56 die i mensis i annoque mcmlxv xii h xxxiv m lvi s 19 mcm 01 i  1 i Jan 001 2438762 01 i  1 01/01/1965 die i mensis i annoque mcmlxv 65 lxv 1965}
test clock-2.842 {conversion of 1965-01-31} {
    clock format -155129104 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Jan January 01/31/1965 12:34:56 die xxxi mensis i annoque mcmlxv xii h xxxiv m lvi s 19 mcm 31 xxxi 31 xxxi Jan 031 2438792 01 i  1 01/31/1965 die xxxi mensis i annoque mcmlxv 65 lxv 1965}
test clock-2.843 {conversion of 1965-02-01} {
    clock format -155042704 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Feb February 02/01/1965 12:34:56 die i mensis ii annoque mcmlxv xii h xxxiv m lvi s 19 mcm 01 i  1 i Feb 032 2438793 02 ii  2 02/01/1965 die i mensis ii annoque mcmlxv 65 lxv 1965}
test clock-2.844 {conversion of 1965-02-28} {
    clock format -152709904 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Feb February 02/28/1965 12:34:56 die xxviii mensis ii annoque mcmlxv xii h xxxiv m lvi s 19 mcm 28 xxviii 28 xxviii Feb 059 2438820 02 ii  2 02/28/1965 die xxviii mensis ii annoque mcmlxv 65 lxv 1965}
test clock-2.845 {conversion of 1965-03-01} {
    clock format -152623504 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Mar March 03/01/1965 12:34:56 die i mensis iii annoque mcmlxv xii h xxxiv m lvi s 19 mcm 01 i  1 i Mar 060 2438821 03 iii  3 03/01/1965 die i mensis iii annoque mcmlxv 65 lxv 1965}
test clock-2.846 {conversion of 1965-03-31} {
    clock format -150031504 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Mar March 03/31/1965 12:34:56 die xxxi mensis iii annoque mcmlxv xii h xxxiv m lvi s 19 mcm 31 xxxi 31 xxxi Mar 090 2438851 03 iii  3 03/31/1965 die xxxi mensis iii annoque mcmlxv 65 lxv 1965}
test clock-2.847 {conversion of 1965-04-01} {
    clock format -149945104 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Apr April 04/01/1965 12:34:56 die i mensis iv annoque mcmlxv xii h xxxiv m lvi s 19 mcm 01 i  1 i Apr 091 2438852 04 iv  4 04/01/1965 die i mensis iv annoque mcmlxv 65 lxv 1965}
test clock-2.848 {conversion of 1965-04-30} {
    clock format -147439504 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Apr April 04/30/1965 12:34:56 die xxx mensis iv annoque mcmlxv xii h xxxiv m lvi s 19 mcm 30 xxx 30 xxx Apr 120 2438881 04 iv  4 04/30/1965 die xxx mensis iv annoque mcmlxv 65 lxv 1965}
test clock-2.849 {conversion of 1965-05-01} {
    clock format -147353104 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {May May 05/01/1965 12:34:56 die i mensis v annoque mcmlxv xii h xxxiv m lvi s 19 mcm 01 i  1 i May 121 2438882 05 v  5 05/01/1965 die i mensis v annoque mcmlxv 65 lxv 1965}
test clock-2.850 {conversion of 1965-05-31} {
    clock format -144761104 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {May May 05/31/1965 12:34:56 die xxxi mensis v annoque mcmlxv xii h xxxiv m lvi s 19 mcm 31 xxxi 31 xxxi May 151 2438912 05 v  5 05/31/1965 die xxxi mensis v annoque mcmlxv 65 lxv 1965}
test clock-2.851 {conversion of 1965-06-01} {
    clock format -144674704 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Jun June 06/01/1965 12:34:56 die i mensis vi annoque mcmlxv xii h xxxiv m lvi s 19 mcm 01 i  1 i Jun 152 2438913 06 vi  6 06/01/1965 die i mensis vi annoque mcmlxv 65 lxv 1965}
test clock-2.852 {conversion of 1965-06-30} {
    clock format -142169104 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Jun June 06/30/1965 12:34:56 die xxx mensis vi annoque mcmlxv xii h xxxiv m lvi s 19 mcm 30 xxx 30 xxx Jun 181 2438942 06 vi  6 06/30/1965 die xxx mensis vi annoque mcmlxv 65 lxv 1965}
test clock-2.853 {conversion of 1965-07-01} {
    clock format -142082704 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Jul July 07/01/1965 12:34:56 die i mensis vii annoque mcmlxv xii h xxxiv m lvi s 19 mcm 01 i  1 i Jul 182 2438943 07 vii  7 07/01/1965 die i mensis vii annoque mcmlxv 65 lxv 1965}
test clock-2.854 {conversion of 1965-07-31} {
    clock format -139490704 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Jul July 07/31/1965 12:34:56 die xxxi mensis vii annoque mcmlxv xii h xxxiv m lvi s 19 mcm 31 xxxi 31 xxxi Jul 212 2438973 07 vii  7 07/31/1965 die xxxi mensis vii annoque mcmlxv 65 lxv 1965}
test clock-2.855 {conversion of 1965-08-01} {
    clock format -139404304 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Aug August 08/01/1965 12:34:56 die i mensis viii annoque mcmlxv xii h xxxiv m lvi s 19 mcm 01 i  1 i Aug 213 2438974 08 viii  8 08/01/1965 die i mensis viii annoque mcmlxv 65 lxv 1965}
test clock-2.856 {conversion of 1965-08-31} {
    clock format -136812304 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Aug August 08/31/1965 12:34:56 die xxxi mensis viii annoque mcmlxv xii h xxxiv m lvi s 19 mcm 31 xxxi 31 xxxi Aug 243 2439004 08 viii  8 08/31/1965 die xxxi mensis viii annoque mcmlxv 65 lxv 1965}
test clock-2.857 {conversion of 1965-09-01} {
    clock format -136725904 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Sep September 09/01/1965 12:34:56 die i mensis ix annoque mcmlxv xii h xxxiv m lvi s 19 mcm 01 i  1 i Sep 244 2439005 09 ix  9 09/01/1965 die i mensis ix annoque mcmlxv 65 lxv 1965}
test clock-2.858 {conversion of 1965-09-30} {
    clock format -134220304 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Sep September 09/30/1965 12:34:56 die xxx mensis ix annoque mcmlxv xii h xxxiv m lvi s 19 mcm 30 xxx 30 xxx Sep 273 2439034 09 ix  9 09/30/1965 die xxx mensis ix annoque mcmlxv 65 lxv 1965}
test clock-2.859 {conversion of 1965-10-01} {
    clock format -134133904 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Oct October 10/01/1965 12:34:56 die i mensis x annoque mcmlxv xii h xxxiv m lvi s 19 mcm 01 i  1 i Oct 274 2439035 10 x 10 10/01/1965 die i mensis x annoque mcmlxv 65 lxv 1965}
test clock-2.860 {conversion of 1965-10-31} {
    clock format -131541904 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Oct October 10/31/1965 12:34:56 die xxxi mensis x annoque mcmlxv xii h xxxiv m lvi s 19 mcm 31 xxxi 31 xxxi Oct 304 2439065 10 x 10 10/31/1965 die xxxi mensis x annoque mcmlxv 65 lxv 1965}
test clock-2.861 {conversion of 1965-11-01} {
    clock format -131455504 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Nov November 11/01/1965 12:34:56 die i mensis xi annoque mcmlxv xii h xxxiv m lvi s 19 mcm 01 i  1 i Nov 305 2439066 11 xi 11 11/01/1965 die i mensis xi annoque mcmlxv 65 lxv 1965}
test clock-2.862 {conversion of 1965-11-30} {
    clock format -128949904 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Nov November 11/30/1965 12:34:56 die xxx mensis xi annoque mcmlxv xii h xxxiv m lvi s 19 mcm 30 xxx 30 xxx Nov 334 2439095 11 xi 11 11/30/1965 die xxx mensis xi annoque mcmlxv 65 lxv 1965}
test clock-2.863 {conversion of 1965-12-01} {
    clock format -128863504 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Dec December 12/01/1965 12:34:56 die i mensis xii annoque mcmlxv xii h xxxiv m lvi s 19 mcm 01 i  1 i Dec 335 2439096 12 xii 12 12/01/1965 die i mensis xii annoque mcmlxv 65 lxv 1965}
test clock-2.864 {conversion of 1965-12-31} {
    clock format -126271504 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Dec December 12/31/1965 12:34:56 die xxxi mensis xii annoque mcmlxv xii h xxxiv m lvi s 19 mcm 31 xxxi 31 xxxi Dec 365 2439126 12 xii 12 12/31/1965 die xxxi mensis xii annoque mcmlxv 65 lxv 1965}
test clock-2.865 {conversion of 1966-01-01} {
    clock format -126185104 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Jan January 01/01/1966 12:34:56 die i mensis i annoque mcmlxvi xii h xxxiv m lvi s 19 mcm 01 i  1 i Jan 001 2439127 01 i  1 01/01/1966 die i mensis i annoque mcmlxvi 66 lxvi 1966}
test clock-2.866 {conversion of 1966-01-31} {
    clock format -123593104 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Jan January 01/31/1966 12:34:56 die xxxi mensis i annoque mcmlxvi xii h xxxiv m lvi s 19 mcm 31 xxxi 31 xxxi Jan 031 2439157 01 i  1 01/31/1966 die xxxi mensis i annoque mcmlxvi 66 lxvi 1966}
test clock-2.867 {conversion of 1966-02-01} {
    clock format -123506704 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Feb February 02/01/1966 12:34:56 die i mensis ii annoque mcmlxvi xii h xxxiv m lvi s 19 mcm 01 i  1 i Feb 032 2439158 02 ii  2 02/01/1966 die i mensis ii annoque mcmlxvi 66 lxvi 1966}
test clock-2.868 {conversion of 1966-02-28} {
    clock format -121173904 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Feb February 02/28/1966 12:34:56 die xxviii mensis ii annoque mcmlxvi xii h xxxiv m lvi s 19 mcm 28 xxviii 28 xxviii Feb 059 2439185 02 ii  2 02/28/1966 die xxviii mensis ii annoque mcmlxvi 66 lxvi 1966}
test clock-2.869 {conversion of 1966-03-01} {
    clock format -121087504 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Mar March 03/01/1966 12:34:56 die i mensis iii annoque mcmlxvi xii h xxxiv m lvi s 19 mcm 01 i  1 i Mar 060 2439186 03 iii  3 03/01/1966 die i mensis iii annoque mcmlxvi 66 lxvi 1966}
test clock-2.870 {conversion of 1966-03-31} {
    clock format -118495504 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Mar March 03/31/1966 12:34:56 die xxxi mensis iii annoque mcmlxvi xii h xxxiv m lvi s 19 mcm 31 xxxi 31 xxxi Mar 090 2439216 03 iii  3 03/31/1966 die xxxi mensis iii annoque mcmlxvi 66 lxvi 1966}
test clock-2.871 {conversion of 1966-04-01} {
    clock format -118409104 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Apr April 04/01/1966 12:34:56 die i mensis iv annoque mcmlxvi xii h xxxiv m lvi s 19 mcm 01 i  1 i Apr 091 2439217 04 iv  4 04/01/1966 die i mensis iv annoque mcmlxvi 66 lxvi 1966}
test clock-2.872 {conversion of 1966-04-30} {
    clock format -115903504 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Apr April 04/30/1966 12:34:56 die xxx mensis iv annoque mcmlxvi xii h xxxiv m lvi s 19 mcm 30 xxx 30 xxx Apr 120 2439246 04 iv  4 04/30/1966 die xxx mensis iv annoque mcmlxvi 66 lxvi 1966}
test clock-2.873 {conversion of 1966-05-01} {
    clock format -115817104 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {May May 05/01/1966 12:34:56 die i mensis v annoque mcmlxvi xii h xxxiv m lvi s 19 mcm 01 i  1 i May 121 2439247 05 v  5 05/01/1966 die i mensis v annoque mcmlxvi 66 lxvi 1966}
test clock-2.874 {conversion of 1966-05-31} {
    clock format -113225104 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {May May 05/31/1966 12:34:56 die xxxi mensis v annoque mcmlxvi xii h xxxiv m lvi s 19 mcm 31 xxxi 31 xxxi May 151 2439277 05 v  5 05/31/1966 die xxxi mensis v annoque mcmlxvi 66 lxvi 1966}
test clock-2.875 {conversion of 1966-06-01} {
    clock format -113138704 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Jun June 06/01/1966 12:34:56 die i mensis vi annoque mcmlxvi xii h xxxiv m lvi s 19 mcm 01 i  1 i Jun 152 2439278 06 vi  6 06/01/1966 die i mensis vi annoque mcmlxvi 66 lxvi 1966}
test clock-2.876 {conversion of 1966-06-30} {
    clock format -110633104 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Jun June 06/30/1966 12:34:56 die xxx mensis vi annoque mcmlxvi xii h xxxiv m lvi s 19 mcm 30 xxx 30 xxx Jun 181 2439307 06 vi  6 06/30/1966 die xxx mensis vi annoque mcmlxvi 66 lxvi 1966}
test clock-2.877 {conversion of 1966-07-01} {
    clock format -110546704 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Jul July 07/01/1966 12:34:56 die i mensis vii annoque mcmlxvi xii h xxxiv m lvi s 19 mcm 01 i  1 i Jul 182 2439308 07 vii  7 07/01/1966 die i mensis vii annoque mcmlxvi 66 lxvi 1966}
test clock-2.878 {conversion of 1966-07-31} {
    clock format -107954704 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Jul July 07/31/1966 12:34:56 die xxxi mensis vii annoque mcmlxvi xii h xxxiv m lvi s 19 mcm 31 xxxi 31 xxxi Jul 212 2439338 07 vii  7 07/31/1966 die xxxi mensis vii annoque mcmlxvi 66 lxvi 1966}
test clock-2.879 {conversion of 1966-08-01} {
    clock format -107868304 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Aug August 08/01/1966 12:34:56 die i mensis viii annoque mcmlxvi xii h xxxiv m lvi s 19 mcm 01 i  1 i Aug 213 2439339 08 viii  8 08/01/1966 die i mensis viii annoque mcmlxvi 66 lxvi 1966}
test clock-2.880 {conversion of 1966-08-31} {
    clock format -105276304 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Aug August 08/31/1966 12:34:56 die xxxi mensis viii annoque mcmlxvi xii h xxxiv m lvi s 19 mcm 31 xxxi 31 xxxi Aug 243 2439369 08 viii  8 08/31/1966 die xxxi mensis viii annoque mcmlxvi 66 lxvi 1966}
test clock-2.881 {conversion of 1966-09-01} {
    clock format -105189904 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Sep September 09/01/1966 12:34:56 die i mensis ix annoque mcmlxvi xii h xxxiv m lvi s 19 mcm 01 i  1 i Sep 244 2439370 09 ix  9 09/01/1966 die i mensis ix annoque mcmlxvi 66 lxvi 1966}
test clock-2.882 {conversion of 1966-09-30} {
    clock format -102684304 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Sep September 09/30/1966 12:34:56 die xxx mensis ix annoque mcmlxvi xii h xxxiv m lvi s 19 mcm 30 xxx 30 xxx Sep 273 2439399 09 ix  9 09/30/1966 die xxx mensis ix annoque mcmlxvi 66 lxvi 1966}
test clock-2.883 {conversion of 1966-10-01} {
    clock format -102597904 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Oct October 10/01/1966 12:34:56 die i mensis x annoque mcmlxvi xii h xxxiv m lvi s 19 mcm 01 i  1 i Oct 274 2439400 10 x 10 10/01/1966 die i mensis x annoque mcmlxvi 66 lxvi 1966}
test clock-2.884 {conversion of 1966-10-31} {
    clock format -100005904 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Oct October 10/31/1966 12:34:56 die xxxi mensis x annoque mcmlxvi xii h xxxiv m lvi s 19 mcm 31 xxxi 31 xxxi Oct 304 2439430 10 x 10 10/31/1966 die xxxi mensis x annoque mcmlxvi 66 lxvi 1966}
test clock-2.885 {conversion of 1966-11-01} {
    clock format -99919504 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Nov November 11/01/1966 12:34:56 die i mensis xi annoque mcmlxvi xii h xxxiv m lvi s 19 mcm 01 i  1 i Nov 305 2439431 11 xi 11 11/01/1966 die i mensis xi annoque mcmlxvi 66 lxvi 1966}
test clock-2.886 {conversion of 1966-11-30} {
    clock format -97413904 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Nov November 11/30/1966 12:34:56 die xxx mensis xi annoque mcmlxvi xii h xxxiv m lvi s 19 mcm 30 xxx 30 xxx Nov 334 2439460 11 xi 11 11/30/1966 die xxx mensis xi annoque mcmlxvi 66 lxvi 1966}
test clock-2.887 {conversion of 1966-12-01} {
    clock format -97327504 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Dec December 12/01/1966 12:34:56 die i mensis xii annoque mcmlxvi xii h xxxiv m lvi s 19 mcm 01 i  1 i Dec 335 2439461 12 xii 12 12/01/1966 die i mensis xii annoque mcmlxvi 66 lxvi 1966}
test clock-2.888 {conversion of 1966-12-31} {
    clock format -94735504 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Dec December 12/31/1966 12:34:56 die xxxi mensis xii annoque mcmlxvi xii h xxxiv m lvi s 19 mcm 31 xxxi 31 xxxi Dec 365 2439491 12 xii 12 12/31/1966 die xxxi mensis xii annoque mcmlxvi 66 lxvi 1966}
test clock-2.889 {conversion of 1967-01-01} {
    clock format -94649104 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Jan January 01/01/1967 12:34:56 die i mensis i annoque mcmlxvii xii h xxxiv m lvi s 19 mcm 01 i  1 i Jan 001 2439492 01 i  1 01/01/1967 die i mensis i annoque mcmlxvii 67 lxvii 1967}
test clock-2.890 {conversion of 1967-01-31} {
    clock format -92057104 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Jan January 01/31/1967 12:34:56 die xxxi mensis i annoque mcmlxvii xii h xxxiv m lvi s 19 mcm 31 xxxi 31 xxxi Jan 031 2439522 01 i  1 01/31/1967 die xxxi mensis i annoque mcmlxvii 67 lxvii 1967}
test clock-2.891 {conversion of 1967-02-01} {
    clock format -91970704 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Feb February 02/01/1967 12:34:56 die i mensis ii annoque mcmlxvii xii h xxxiv m lvi s 19 mcm 01 i  1 i Feb 032 2439523 02 ii  2 02/01/1967 die i mensis ii annoque mcmlxvii 67 lxvii 1967}
test clock-2.892 {conversion of 1967-02-28} {
    clock format -89637904 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Feb February 02/28/1967 12:34:56 die xxviii mensis ii annoque mcmlxvii xii h xxxiv m lvi s 19 mcm 28 xxviii 28 xxviii Feb 059 2439550 02 ii  2 02/28/1967 die xxviii mensis ii annoque mcmlxvii 67 lxvii 1967}
test clock-2.893 {conversion of 1967-03-01} {
    clock format -89551504 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Mar March 03/01/1967 12:34:56 die i mensis iii annoque mcmlxvii xii h xxxiv m lvi s 19 mcm 01 i  1 i Mar 060 2439551 03 iii  3 03/01/1967 die i mensis iii annoque mcmlxvii 67 lxvii 1967}
test clock-2.894 {conversion of 1967-03-31} {
    clock format -86959504 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Mar March 03/31/1967 12:34:56 die xxxi mensis iii annoque mcmlxvii xii h xxxiv m lvi s 19 mcm 31 xxxi 31 xxxi Mar 090 2439581 03 iii  3 03/31/1967 die xxxi mensis iii annoque mcmlxvii 67 lxvii 1967}
test clock-2.895 {conversion of 1967-04-01} {
    clock format -86873104 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Apr April 04/01/1967 12:34:56 die i mensis iv annoque mcmlxvii xii h xxxiv m lvi s 19 mcm 01 i  1 i Apr 091 2439582 04 iv  4 04/01/1967 die i mensis iv annoque mcmlxvii 67 lxvii 1967}
test clock-2.896 {conversion of 1967-04-30} {
    clock format -84367504 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Apr April 04/30/1967 12:34:56 die xxx mensis iv annoque mcmlxvii xii h xxxiv m lvi s 19 mcm 30 xxx 30 xxx Apr 120 2439611 04 iv  4 04/30/1967 die xxx mensis iv annoque mcmlxvii 67 lxvii 1967}
test clock-2.897 {conversion of 1967-05-01} {
    clock format -84281104 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {May May 05/01/1967 12:34:56 die i mensis v annoque mcmlxvii xii h xxxiv m lvi s 19 mcm 01 i  1 i May 121 2439612 05 v  5 05/01/1967 die i mensis v annoque mcmlxvii 67 lxvii 1967}
test clock-2.898 {conversion of 1967-05-31} {
    clock format -81689104 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {May May 05/31/1967 12:34:56 die xxxi mensis v annoque mcmlxvii xii h xxxiv m lvi s 19 mcm 31 xxxi 31 xxxi May 151 2439642 05 v  5 05/31/1967 die xxxi mensis v annoque mcmlxvii 67 lxvii 1967}
test clock-2.899 {conversion of 1967-06-01} {
    clock format -81602704 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Jun June 06/01/1967 12:34:56 die i mensis vi annoque mcmlxvii xii h xxxiv m lvi s 19 mcm 01 i  1 i Jun 152 2439643 06 vi  6 06/01/1967 die i mensis vi annoque mcmlxvii 67 lxvii 1967}
test clock-2.900 {conversion of 1967-06-30} {
    clock format -79097104 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Jun June 06/30/1967 12:34:56 die xxx mensis vi annoque mcmlxvii xii h xxxiv m lvi s 19 mcm 30 xxx 30 xxx Jun 181 2439672 06 vi  6 06/30/1967 die xxx mensis vi annoque mcmlxvii 67 lxvii 1967}
test clock-2.901 {conversion of 1967-07-01} {
    clock format -79010704 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Jul July 07/01/1967 12:34:56 die i mensis vii annoque mcmlxvii xii h xxxiv m lvi s 19 mcm 01 i  1 i Jul 182 2439673 07 vii  7 07/01/1967 die i mensis vii annoque mcmlxvii 67 lxvii 1967}
test clock-2.902 {conversion of 1967-07-31} {
    clock format -76418704 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Jul July 07/31/1967 12:34:56 die xxxi mensis vii annoque mcmlxvii xii h xxxiv m lvi s 19 mcm 31 xxxi 31 xxxi Jul 212 2439703 07 vii  7 07/31/1967 die xxxi mensis vii annoque mcmlxvii 67 lxvii 1967}
test clock-2.903 {conversion of 1967-08-01} {
    clock format -76332304 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Aug August 08/01/1967 12:34:56 die i mensis viii annoque mcmlxvii xii h xxxiv m lvi s 19 mcm 01 i  1 i Aug 213 2439704 08 viii  8 08/01/1967 die i mensis viii annoque mcmlxvii 67 lxvii 1967}
test clock-2.904 {conversion of 1967-08-31} {
    clock format -73740304 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Aug August 08/31/1967 12:34:56 die xxxi mensis viii annoque mcmlxvii xii h xxxiv m lvi s 19 mcm 31 xxxi 31 xxxi Aug 243 2439734 08 viii  8 08/31/1967 die xxxi mensis viii annoque mcmlxvii 67 lxvii 1967}
test clock-2.905 {conversion of 1967-09-01} {
    clock format -73653904 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Sep September 09/01/1967 12:34:56 die i mensis ix annoque mcmlxvii xii h xxxiv m lvi s 19 mcm 01 i  1 i Sep 244 2439735 09 ix  9 09/01/1967 die i mensis ix annoque mcmlxvii 67 lxvii 1967}
test clock-2.906 {conversion of 1967-09-30} {
    clock format -71148304 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Sep September 09/30/1967 12:34:56 die xxx mensis ix annoque mcmlxvii xii h xxxiv m lvi s 19 mcm 30 xxx 30 xxx Sep 273 2439764 09 ix  9 09/30/1967 die xxx mensis ix annoque mcmlxvii 67 lxvii 1967}
test clock-2.907 {conversion of 1967-10-01} {
    clock format -71061904 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Oct October 10/01/1967 12:34:56 die i mensis x annoque mcmlxvii xii h xxxiv m lvi s 19 mcm 01 i  1 i Oct 274 2439765 10 x 10 10/01/1967 die i mensis x annoque mcmlxvii 67 lxvii 1967}
test clock-2.908 {conversion of 1967-10-31} {
    clock format -68469904 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Oct October 10/31/1967 12:34:56 die xxxi mensis x annoque mcmlxvii xii h xxxiv m lvi s 19 mcm 31 xxxi 31 xxxi Oct 304 2439795 10 x 10 10/31/1967 die xxxi mensis x annoque mcmlxvii 67 lxvii 1967}
test clock-2.909 {conversion of 1967-11-01} {
    clock format -68383504 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Nov November 11/01/1967 12:34:56 die i mensis xi annoque mcmlxvii xii h xxxiv m lvi s 19 mcm 01 i  1 i Nov 305 2439796 11 xi 11 11/01/1967 die i mensis xi annoque mcmlxvii 67 lxvii 1967}
test clock-2.910 {conversion of 1967-11-30} {
    clock format -65877904 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Nov November 11/30/1967 12:34:56 die xxx mensis xi annoque mcmlxvii xii h xxxiv m lvi s 19 mcm 30 xxx 30 xxx Nov 334 2439825 11 xi 11 11/30/1967 die xxx mensis xi annoque mcmlxvii 67 lxvii 1967}
test clock-2.911 {conversion of 1967-12-01} {
    clock format -65791504 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Dec December 12/01/1967 12:34:56 die i mensis xii annoque mcmlxvii xii h xxxiv m lvi s 19 mcm 01 i  1 i Dec 335 2439826 12 xii 12 12/01/1967 die i mensis xii annoque mcmlxvii 67 lxvii 1967}
test clock-2.912 {conversion of 1967-12-31} {
    clock format -63199504 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Dec December 12/31/1967 12:34:56 die xxxi mensis xii annoque mcmlxvii xii h xxxiv m lvi s 19 mcm 31 xxxi 31 xxxi Dec 365 2439856 12 xii 12 12/31/1967 die xxxi mensis xii annoque mcmlxvii 67 lxvii 1967}
test clock-2.913 {conversion of 1968-01-01} {
    clock format -63113104 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Jan January 01/01/1968 12:34:56 die i mensis i annoque mcmlxviii xii h xxxiv m lvi s 19 mcm 01 i  1 i Jan 001 2439857 01 i  1 01/01/1968 die i mensis i annoque mcmlxviii 68 lxviii 1968}
test clock-2.914 {conversion of 1968-01-31} {
    clock format -60521104 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Jan January 01/31/1968 12:34:56 die xxxi mensis i annoque mcmlxviii xii h xxxiv m lvi s 19 mcm 31 xxxi 31 xxxi Jan 031 2439887 01 i  1 01/31/1968 die xxxi mensis i annoque mcmlxviii 68 lxviii 1968}
test clock-2.915 {conversion of 1968-02-01} {
    clock format -60434704 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Feb February 02/01/1968 12:34:56 die i mensis ii annoque mcmlxviii xii h xxxiv m lvi s 19 mcm 01 i  1 i Feb 032 2439888 02 ii  2 02/01/1968 die i mensis ii annoque mcmlxviii 68 lxviii 1968}
test clock-2.916 {conversion of 1968-02-29} {
    clock format -58015504 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Feb February 02/29/1968 12:34:56 die xxix mensis ii annoque mcmlxviii xii h xxxiv m lvi s 19 mcm 29 xxix 29 xxix Feb 060 2439916 02 ii  2 02/29/1968 die xxix mensis ii annoque mcmlxviii 68 lxviii 1968}
test clock-2.917 {conversion of 1968-03-01} {
    clock format -57929104 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Mar March 03/01/1968 12:34:56 die i mensis iii annoque mcmlxviii xii h xxxiv m lvi s 19 mcm 01 i  1 i Mar 061 2439917 03 iii  3 03/01/1968 die i mensis iii annoque mcmlxviii 68 lxviii 1968}
test clock-2.918 {conversion of 1968-03-31} {
    clock format -55337104 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Mar March 03/31/1968 12:34:56 die xxxi mensis iii annoque mcmlxviii xii h xxxiv m lvi s 19 mcm 31 xxxi 31 xxxi Mar 091 2439947 03 iii  3 03/31/1968 die xxxi mensis iii annoque mcmlxviii 68 lxviii 1968}
test clock-2.919 {conversion of 1968-04-01} {
    clock format -55250704 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Apr April 04/01/1968 12:34:56 die i mensis iv annoque mcmlxviii xii h xxxiv m lvi s 19 mcm 01 i  1 i Apr 092 2439948 04 iv  4 04/01/1968 die i mensis iv annoque mcmlxviii 68 lxviii 1968}
test clock-2.920 {conversion of 1968-04-30} {
    clock format -52745104 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Apr April 04/30/1968 12:34:56 die xxx mensis iv annoque mcmlxviii xii h xxxiv m lvi s 19 mcm 30 xxx 30 xxx Apr 121 2439977 04 iv  4 04/30/1968 die xxx mensis iv annoque mcmlxviii 68 lxviii 1968}
test clock-2.921 {conversion of 1968-05-01} {
    clock format -52658704 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {May May 05/01/1968 12:34:56 die i mensis v annoque mcmlxviii xii h xxxiv m lvi s 19 mcm 01 i  1 i May 122 2439978 05 v  5 05/01/1968 die i mensis v annoque mcmlxviii 68 lxviii 1968}
test clock-2.922 {conversion of 1968-05-31} {
    clock format -50066704 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {May May 05/31/1968 12:34:56 die xxxi mensis v annoque mcmlxviii xii h xxxiv m lvi s 19 mcm 31 xxxi 31 xxxi May 152 2440008 05 v  5 05/31/1968 die xxxi mensis v annoque mcmlxviii 68 lxviii 1968}
test clock-2.923 {conversion of 1968-06-01} {
    clock format -49980304 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Jun June 06/01/1968 12:34:56 die i mensis vi annoque mcmlxviii xii h xxxiv m lvi s 19 mcm 01 i  1 i Jun 153 2440009 06 vi  6 06/01/1968 die i mensis vi annoque mcmlxviii 68 lxviii 1968}
test clock-2.924 {conversion of 1968-06-30} {
    clock format -47474704 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Jun June 06/30/1968 12:34:56 die xxx mensis vi annoque mcmlxviii xii h xxxiv m lvi s 19 mcm 30 xxx 30 xxx Jun 182 2440038 06 vi  6 06/30/1968 die xxx mensis vi annoque mcmlxviii 68 lxviii 1968}
test clock-2.925 {conversion of 1968-07-01} {
    clock format -47388304 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Jul July 07/01/1968 12:34:56 die i mensis vii annoque mcmlxviii xii h xxxiv m lvi s 19 mcm 01 i  1 i Jul 183 2440039 07 vii  7 07/01/1968 die i mensis vii annoque mcmlxviii 68 lxviii 1968}
test clock-2.926 {conversion of 1968-07-31} {
    clock format -44796304 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Jul July 07/31/1968 12:34:56 die xxxi mensis vii annoque mcmlxviii xii h xxxiv m lvi s 19 mcm 31 xxxi 31 xxxi Jul 213 2440069 07 vii  7 07/31/1968 die xxxi mensis vii annoque mcmlxviii 68 lxviii 1968}
test clock-2.927 {conversion of 1968-08-01} {
    clock format -44709904 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Aug August 08/01/1968 12:34:56 die i mensis viii annoque mcmlxviii xii h xxxiv m lvi s 19 mcm 01 i  1 i Aug 214 2440070 08 viii  8 08/01/1968 die i mensis viii annoque mcmlxviii 68 lxviii 1968}
test clock-2.928 {conversion of 1968-08-31} {
    clock format -42117904 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Aug August 08/31/1968 12:34:56 die xxxi mensis viii annoque mcmlxviii xii h xxxiv m lvi s 19 mcm 31 xxxi 31 xxxi Aug 244 2440100 08 viii  8 08/31/1968 die xxxi mensis viii annoque mcmlxviii 68 lxviii 1968}
test clock-2.929 {conversion of 1968-09-01} {
    clock format -42031504 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Sep September 09/01/1968 12:34:56 die i mensis ix annoque mcmlxviii xii h xxxiv m lvi s 19 mcm 01 i  1 i Sep 245 2440101 09 ix  9 09/01/1968 die i mensis ix annoque mcmlxviii 68 lxviii 1968}
test clock-2.930 {conversion of 1968-09-30} {
    clock format -39525904 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Sep September 09/30/1968 12:34:56 die xxx mensis ix annoque mcmlxviii xii h xxxiv m lvi s 19 mcm 30 xxx 30 xxx Sep 274 2440130 09 ix  9 09/30/1968 die xxx mensis ix annoque mcmlxviii 68 lxviii 1968}
test clock-2.931 {conversion of 1968-10-01} {
    clock format -39439504 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Oct October 10/01/1968 12:34:56 die i mensis x annoque mcmlxviii xii h xxxiv m lvi s 19 mcm 01 i  1 i Oct 275 2440131 10 x 10 10/01/1968 die i mensis x annoque mcmlxviii 68 lxviii 1968}
test clock-2.932 {conversion of 1968-10-31} {
    clock format -36847504 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Oct October 10/31/1968 12:34:56 die xxxi mensis x annoque mcmlxviii xii h xxxiv m lvi s 19 mcm 31 xxxi 31 xxxi Oct 305 2440161 10 x 10 10/31/1968 die xxxi mensis x annoque mcmlxviii 68 lxviii 1968}
test clock-2.933 {conversion of 1968-11-01} {
    clock format -36761104 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Nov November 11/01/1968 12:34:56 die i mensis xi annoque mcmlxviii xii h xxxiv m lvi s 19 mcm 01 i  1 i Nov 306 2440162 11 xi 11 11/01/1968 die i mensis xi annoque mcmlxviii 68 lxviii 1968}
test clock-2.934 {conversion of 1968-11-30} {
    clock format -34255504 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Nov November 11/30/1968 12:34:56 die xxx mensis xi annoque mcmlxviii xii h xxxiv m lvi s 19 mcm 30 xxx 30 xxx Nov 335 2440191 11 xi 11 11/30/1968 die xxx mensis xi annoque mcmlxviii 68 lxviii 1968}
test clock-2.935 {conversion of 1968-12-01} {
    clock format -34169104 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Dec December 12/01/1968 12:34:56 die i mensis xii annoque mcmlxviii xii h xxxiv m lvi s 19 mcm 01 i  1 i Dec 336 2440192 12 xii 12 12/01/1968 die i mensis xii annoque mcmlxviii 68 lxviii 1968}
test clock-2.936 {conversion of 1968-12-31} {
    clock format -31577104 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Dec December 12/31/1968 12:34:56 die xxxi mensis xii annoque mcmlxviii xii h xxxiv m lvi s 19 mcm 31 xxxi 31 xxxi Dec 366 2440222 12 xii 12 12/31/1968 die xxxi mensis xii annoque mcmlxviii 68 lxviii 1968}
test clock-2.937 {conversion of 1969-01-01} {
    clock format -31490704 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Jan January 01/01/1969 12:34:56 die i mensis i annoque mcmlxix xii h xxxiv m lvi s 19 mcm 01 i  1 i Jan 001 2440223 01 i  1 01/01/1969 die i mensis i annoque mcmlxix 69 lxix 1969}
test clock-2.938 {conversion of 1969-01-31} {
    clock format -28898704 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Jan January 01/31/1969 12:34:56 die xxxi mensis i annoque mcmlxix xii h xxxiv m lvi s 19 mcm 31 xxxi 31 xxxi Jan 031 2440253 01 i  1 01/31/1969 die xxxi mensis i annoque mcmlxix 69 lxix 1969}
test clock-2.939 {conversion of 1969-02-01} {
    clock format -28812304 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Feb February 02/01/1969 12:34:56 die i mensis ii annoque mcmlxix xii h xxxiv m lvi s 19 mcm 01 i  1 i Feb 032 2440254 02 ii  2 02/01/1969 die i mensis ii annoque mcmlxix 69 lxix 1969}
test clock-2.940 {conversion of 1969-02-28} {
    clock format -26479504 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Feb February 02/28/1969 12:34:56 die xxviii mensis ii annoque mcmlxix xii h xxxiv m lvi s 19 mcm 28 xxviii 28 xxviii Feb 059 2440281 02 ii  2 02/28/1969 die xxviii mensis ii annoque mcmlxix 69 lxix 1969}
test clock-2.941 {conversion of 1969-03-01} {
    clock format -26393104 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Mar March 03/01/1969 12:34:56 die i mensis iii annoque mcmlxix xii h xxxiv m lvi s 19 mcm 01 i  1 i Mar 060 2440282 03 iii  3 03/01/1969 die i mensis iii annoque mcmlxix 69 lxix 1969}
test clock-2.942 {conversion of 1969-03-31} {
    clock format -23801104 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Mar March 03/31/1969 12:34:56 die xxxi mensis iii annoque mcmlxix xii h xxxiv m lvi s 19 mcm 31 xxxi 31 xxxi Mar 090 2440312 03 iii  3 03/31/1969 die xxxi mensis iii annoque mcmlxix 69 lxix 1969}
test clock-2.943 {conversion of 1969-04-01} {
    clock format -23714704 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Apr April 04/01/1969 12:34:56 die i mensis iv annoque mcmlxix xii h xxxiv m lvi s 19 mcm 01 i  1 i Apr 091 2440313 04 iv  4 04/01/1969 die i mensis iv annoque mcmlxix 69 lxix 1969}
test clock-2.944 {conversion of 1969-04-30} {
    clock format -21209104 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Apr April 04/30/1969 12:34:56 die xxx mensis iv annoque mcmlxix xii h xxxiv m lvi s 19 mcm 30 xxx 30 xxx Apr 120 2440342 04 iv  4 04/30/1969 die xxx mensis iv annoque mcmlxix 69 lxix 1969}
test clock-2.945 {conversion of 1969-05-01} {
    clock format -21122704 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {May May 05/01/1969 12:34:56 die i mensis v annoque mcmlxix xii h xxxiv m lvi s 19 mcm 01 i  1 i May 121 2440343 05 v  5 05/01/1969 die i mensis v annoque mcmlxix 69 lxix 1969}
test clock-2.946 {conversion of 1969-05-31} {
    clock format -18530704 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {May May 05/31/1969 12:34:56 die xxxi mensis v annoque mcmlxix xii h xxxiv m lvi s 19 mcm 31 xxxi 31 xxxi May 151 2440373 05 v  5 05/31/1969 die xxxi mensis v annoque mcmlxix 69 lxix 1969}
test clock-2.947 {conversion of 1969-06-01} {
    clock format -18444304 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Jun June 06/01/1969 12:34:56 die i mensis vi annoque mcmlxix xii h xxxiv m lvi s 19 mcm 01 i  1 i Jun 152 2440374 06 vi  6 06/01/1969 die i mensis vi annoque mcmlxix 69 lxix 1969}
test clock-2.948 {conversion of 1969-06-30} {
    clock format -15938704 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Jun June 06/30/1969 12:34:56 die xxx mensis vi annoque mcmlxix xii h xxxiv m lvi s 19 mcm 30 xxx 30 xxx Jun 181 2440403 06 vi  6 06/30/1969 die xxx mensis vi annoque mcmlxix 69 lxix 1969}
test clock-2.949 {conversion of 1969-07-01} {
    clock format -15852304 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Jul July 07/01/1969 12:34:56 die i mensis vii annoque mcmlxix xii h xxxiv m lvi s 19 mcm 01 i  1 i Jul 182 2440404 07 vii  7 07/01/1969 die i mensis vii annoque mcmlxix 69 lxix 1969}
test clock-2.950 {conversion of 1969-07-31} {
    clock format -13260304 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Jul July 07/31/1969 12:34:56 die xxxi mensis vii annoque mcmlxix xii h xxxiv m lvi s 19 mcm 31 xxxi 31 xxxi Jul 212 2440434 07 vii  7 07/31/1969 die xxxi mensis vii annoque mcmlxix 69 lxix 1969}
test clock-2.951 {conversion of 1969-08-01} {
    clock format -13173904 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Aug August 08/01/1969 12:34:56 die i mensis viii annoque mcmlxix xii h xxxiv m lvi s 19 mcm 01 i  1 i Aug 213 2440435 08 viii  8 08/01/1969 die i mensis viii annoque mcmlxix 69 lxix 1969}
test clock-2.952 {conversion of 1969-08-31} {
    clock format -10581904 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Aug August 08/31/1969 12:34:56 die xxxi mensis viii annoque mcmlxix xii h xxxiv m lvi s 19 mcm 31 xxxi 31 xxxi Aug 243 2440465 08 viii  8 08/31/1969 die xxxi mensis viii annoque mcmlxix 69 lxix 1969}
test clock-2.953 {conversion of 1969-09-01} {
    clock format -10495504 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Sep September 09/01/1969 12:34:56 die i mensis ix annoque mcmlxix xii h xxxiv m lvi s 19 mcm 01 i  1 i Sep 244 2440466 09 ix  9 09/01/1969 die i mensis ix annoque mcmlxix 69 lxix 1969}
test clock-2.954 {conversion of 1969-09-30} {
    clock format -7989904 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Sep September 09/30/1969 12:34:56 die xxx mensis ix annoque mcmlxix xii h xxxiv m lvi s 19 mcm 30 xxx 30 xxx Sep 273 2440495 09 ix  9 09/30/1969 die xxx mensis ix annoque mcmlxix 69 lxix 1969}
test clock-2.955 {conversion of 1969-10-01} {
    clock format -7903504 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Oct October 10/01/1969 12:34:56 die i mensis x annoque mcmlxix xii h xxxiv m lvi s 19 mcm 01 i  1 i Oct 274 2440496 10 x 10 10/01/1969 die i mensis x annoque mcmlxix 69 lxix 1969}
test clock-2.956 {conversion of 1969-10-31} {
    clock format -5311504 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Oct October 10/31/1969 12:34:56 die xxxi mensis x annoque mcmlxix xii h xxxiv m lvi s 19 mcm 31 xxxi 31 xxxi Oct 304 2440526 10 x 10 10/31/1969 die xxxi mensis x annoque mcmlxix 69 lxix 1969}
test clock-2.957 {conversion of 1969-11-01} {
    clock format -5225104 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Nov November 11/01/1969 12:34:56 die i mensis xi annoque mcmlxix xii h xxxiv m lvi s 19 mcm 01 i  1 i Nov 305 2440527 11 xi 11 11/01/1969 die i mensis xi annoque mcmlxix 69 lxix 1969}
test clock-2.958 {conversion of 1969-11-30} {
    clock format -2719504 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Nov November 11/30/1969 12:34:56 die xxx mensis xi annoque mcmlxix xii h xxxiv m lvi s 19 mcm 30 xxx 30 xxx Nov 334 2440556 11 xi 11 11/30/1969 die xxx mensis xi annoque mcmlxix 69 lxix 1969}
test clock-2.959 {conversion of 1969-12-01} {
    clock format -2633104 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Dec December 12/01/1969 12:34:56 die i mensis xii annoque mcmlxix xii h xxxiv m lvi s 19 mcm 01 i  1 i Dec 335 2440557 12 xii 12 12/01/1969 die i mensis xii annoque mcmlxix 69 lxix 1969}
test clock-2.960 {conversion of 1969-12-31} {
    clock format -41104 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Dec December 12/31/1969 12:34:56 die xxxi mensis xii annoque mcmlxix xii h xxxiv m lvi s 19 mcm 31 xxxi 31 xxxi Dec 365 2440587 12 xii 12 12/31/1969 die xxxi mensis xii annoque mcmlxix 69 lxix 1969}
test clock-2.961 {conversion of 1970-01-01} {
    clock format 45296 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Jan January 01/01/1970 12:34:56 die i mensis i annoque mcmlxx xii h xxxiv m lvi s 19 mcm 01 i  1 i Jan 001 2440588 01 i  1 01/01/1970 die i mensis i annoque mcmlxx 70 lxx 1970}
test clock-2.962 {conversion of 1970-01-31} {
    clock format 2637296 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Jan January 01/31/1970 12:34:56 die xxxi mensis i annoque mcmlxx xii h xxxiv m lvi s 19 mcm 31 xxxi 31 xxxi Jan 031 2440618 01 i  1 01/31/1970 die xxxi mensis i annoque mcmlxx 70 lxx 1970}
test clock-2.963 {conversion of 1970-02-01} {
    clock format 2723696 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Feb February 02/01/1970 12:34:56 die i mensis ii annoque mcmlxx xii h xxxiv m lvi s 19 mcm 01 i  1 i Feb 032 2440619 02 ii  2 02/01/1970 die i mensis ii annoque mcmlxx 70 lxx 1970}
test clock-2.964 {conversion of 1970-02-28} {
    clock format 5056496 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Feb February 02/28/1970 12:34:56 die xxviii mensis ii annoque mcmlxx xii h xxxiv m lvi s 19 mcm 28 xxviii 28 xxviii Feb 059 2440646 02 ii  2 02/28/1970 die xxviii mensis ii annoque mcmlxx 70 lxx 1970}
test clock-2.965 {conversion of 1970-03-01} {
    clock format 5142896 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Mar March 03/01/1970 12:34:56 die i mensis iii annoque mcmlxx xii h xxxiv m lvi s 19 mcm 01 i  1 i Mar 060 2440647 03 iii  3 03/01/1970 die i mensis iii annoque mcmlxx 70 lxx 1970}
test clock-2.966 {conversion of 1970-03-31} {
    clock format 7734896 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Mar March 03/31/1970 12:34:56 die xxxi mensis iii annoque mcmlxx xii h xxxiv m lvi s 19 mcm 31 xxxi 31 xxxi Mar 090 2440677 03 iii  3 03/31/1970 die xxxi mensis iii annoque mcmlxx 70 lxx 1970}
test clock-2.967 {conversion of 1970-04-01} {
    clock format 7821296 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Apr April 04/01/1970 12:34:56 die i mensis iv annoque mcmlxx xii h xxxiv m lvi s 19 mcm 01 i  1 i Apr 091 2440678 04 iv  4 04/01/1970 die i mensis iv annoque mcmlxx 70 lxx 1970}
test clock-2.968 {conversion of 1970-04-30} {
    clock format 10326896 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Apr April 04/30/1970 12:34:56 die xxx mensis iv annoque mcmlxx xii h xxxiv m lvi s 19 mcm 30 xxx 30 xxx Apr 120 2440707 04 iv  4 04/30/1970 die xxx mensis iv annoque mcmlxx 70 lxx 1970}
test clock-2.969 {conversion of 1970-05-01} {
    clock format 10413296 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {May May 05/01/1970 12:34:56 die i mensis v annoque mcmlxx xii h xxxiv m lvi s 19 mcm 01 i  1 i May 121 2440708 05 v  5 05/01/1970 die i mensis v annoque mcmlxx 70 lxx 1970}
test clock-2.970 {conversion of 1970-05-31} {
    clock format 13005296 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {May May 05/31/1970 12:34:56 die xxxi mensis v annoque mcmlxx xii h xxxiv m lvi s 19 mcm 31 xxxi 31 xxxi May 151 2440738 05 v  5 05/31/1970 die xxxi mensis v annoque mcmlxx 70 lxx 1970}
test clock-2.971 {conversion of 1970-06-01} {
    clock format 13091696 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Jun June 06/01/1970 12:34:56 die i mensis vi annoque mcmlxx xii h xxxiv m lvi s 19 mcm 01 i  1 i Jun 152 2440739 06 vi  6 06/01/1970 die i mensis vi annoque mcmlxx 70 lxx 1970}
test clock-2.972 {conversion of 1970-06-30} {
    clock format 15597296 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Jun June 06/30/1970 12:34:56 die xxx mensis vi annoque mcmlxx xii h xxxiv m lvi s 19 mcm 30 xxx 30 xxx Jun 181 2440768 06 vi  6 06/30/1970 die xxx mensis vi annoque mcmlxx 70 lxx 1970}
test clock-2.973 {conversion of 1970-07-01} {
    clock format 15683696 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Jul July 07/01/1970 12:34:56 die i mensis vii annoque mcmlxx xii h xxxiv m lvi s 19 mcm 01 i  1 i Jul 182 2440769 07 vii  7 07/01/1970 die i mensis vii annoque mcmlxx 70 lxx 1970}
test clock-2.974 {conversion of 1970-07-31} {
    clock format 18275696 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Jul July 07/31/1970 12:34:56 die xxxi mensis vii annoque mcmlxx xii h xxxiv m lvi s 19 mcm 31 xxxi 31 xxxi Jul 212 2440799 07 vii  7 07/31/1970 die xxxi mensis vii annoque mcmlxx 70 lxx 1970}
test clock-2.975 {conversion of 1970-08-01} {
    clock format 18362096 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Aug August 08/01/1970 12:34:56 die i mensis viii annoque mcmlxx xii h xxxiv m lvi s 19 mcm 01 i  1 i Aug 213 2440800 08 viii  8 08/01/1970 die i mensis viii annoque mcmlxx 70 lxx 1970}
test clock-2.976 {conversion of 1970-08-31} {
    clock format 20954096 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Aug August 08/31/1970 12:34:56 die xxxi mensis viii annoque mcmlxx xii h xxxiv m lvi s 19 mcm 31 xxxi 31 xxxi Aug 243 2440830 08 viii  8 08/31/1970 die xxxi mensis viii annoque mcmlxx 70 lxx 1970}
test clock-2.977 {conversion of 1970-09-01} {
    clock format 21040496 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Sep September 09/01/1970 12:34:56 die i mensis ix annoque mcmlxx xii h xxxiv m lvi s 19 mcm 01 i  1 i Sep 244 2440831 09 ix  9 09/01/1970 die i mensis ix annoque mcmlxx 70 lxx 1970}
test clock-2.978 {conversion of 1970-09-30} {
    clock format 23546096 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Sep September 09/30/1970 12:34:56 die xxx mensis ix annoque mcmlxx xii h xxxiv m lvi s 19 mcm 30 xxx 30 xxx Sep 273 2440860 09 ix  9 09/30/1970 die xxx mensis ix annoque mcmlxx 70 lxx 1970}
test clock-2.979 {conversion of 1970-10-01} {
    clock format 23632496 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Oct October 10/01/1970 12:34:56 die i mensis x annoque mcmlxx xii h xxxiv m lvi s 19 mcm 01 i  1 i Oct 274 2440861 10 x 10 10/01/1970 die i mensis x annoque mcmlxx 70 lxx 1970}
test clock-2.980 {conversion of 1970-10-31} {
    clock format 26224496 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Oct October 10/31/1970 12:34:56 die xxxi mensis x annoque mcmlxx xii h xxxiv m lvi s 19 mcm 31 xxxi 31 xxxi Oct 304 2440891 10 x 10 10/31/1970 die xxxi mensis x annoque mcmlxx 70 lxx 1970}
test clock-2.981 {conversion of 1970-11-01} {
    clock format 26310896 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Nov November 11/01/1970 12:34:56 die i mensis xi annoque mcmlxx xii h xxxiv m lvi s 19 mcm 01 i  1 i Nov 305 2440892 11 xi 11 11/01/1970 die i mensis xi annoque mcmlxx 70 lxx 1970}
test clock-2.982 {conversion of 1970-11-30} {
    clock format 28816496 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Nov November 11/30/1970 12:34:56 die xxx mensis xi annoque mcmlxx xii h xxxiv m lvi s 19 mcm 30 xxx 30 xxx Nov 334 2440921 11 xi 11 11/30/1970 die xxx mensis xi annoque mcmlxx 70 lxx 1970}
test clock-2.983 {conversion of 1970-12-01} {
    clock format 28902896 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Dec December 12/01/1970 12:34:56 die i mensis xii annoque mcmlxx xii h xxxiv m lvi s 19 mcm 01 i  1 i Dec 335 2440922 12 xii 12 12/01/1970 die i mensis xii annoque mcmlxx 70 lxx 1970}
test clock-2.984 {conversion of 1970-12-31} {
    clock format 31494896 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Dec December 12/31/1970 12:34:56 die xxxi mensis xii annoque mcmlxx xii h xxxiv m lvi s 19 mcm 31 xxxi 31 xxxi Dec 365 2440952 12 xii 12 12/31/1970 die xxxi mensis xii annoque mcmlxx 70 lxx 1970}
test clock-2.985 {conversion of 1971-01-01} {
    clock format 31581296 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Jan January 01/01/1971 12:34:56 die i mensis i annoque mcmlxxi xii h xxxiv m lvi s 19 mcm 01 i  1 i Jan 001 2440953 01 i  1 01/01/1971 die i mensis i annoque mcmlxxi 71 lxxi 1971}
test clock-2.986 {conversion of 1971-01-31} {
    clock format 34173296 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Jan January 01/31/1971 12:34:56 die xxxi mensis i annoque mcmlxxi xii h xxxiv m lvi s 19 mcm 31 xxxi 31 xxxi Jan 031 2440983 01 i  1 01/31/1971 die xxxi mensis i annoque mcmlxxi 71 lxxi 1971}
test clock-2.987 {conversion of 1971-02-01} {
    clock format 34259696 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Feb February 02/01/1971 12:34:56 die i mensis ii annoque mcmlxxi xii h xxxiv m lvi s 19 mcm 01 i  1 i Feb 032 2440984 02 ii  2 02/01/1971 die i mensis ii annoque mcmlxxi 71 lxxi 1971}
test clock-2.988 {conversion of 1971-02-28} {
    clock format 36592496 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Feb February 02/28/1971 12:34:56 die xxviii mensis ii annoque mcmlxxi xii h xxxiv m lvi s 19 mcm 28 xxviii 28 xxviii Feb 059 2441011 02 ii  2 02/28/1971 die xxviii mensis ii annoque mcmlxxi 71 lxxi 1971}
test clock-2.989 {conversion of 1971-03-01} {
    clock format 36678896 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Mar March 03/01/1971 12:34:56 die i mensis iii annoque mcmlxxi xii h xxxiv m lvi s 19 mcm 01 i  1 i Mar 060 2441012 03 iii  3 03/01/1971 die i mensis iii annoque mcmlxxi 71 lxxi 1971}
test clock-2.990 {conversion of 1971-03-31} {
    clock format 39270896 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Mar March 03/31/1971 12:34:56 die xxxi mensis iii annoque mcmlxxi xii h xxxiv m lvi s 19 mcm 31 xxxi 31 xxxi Mar 090 2441042 03 iii  3 03/31/1971 die xxxi mensis iii annoque mcmlxxi 71 lxxi 1971}
test clock-2.991 {conversion of 1971-04-01} {
    clock format 39357296 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Apr April 04/01/1971 12:34:56 die i mensis iv annoque mcmlxxi xii h xxxiv m lvi s 19 mcm 01 i  1 i Apr 091 2441043 04 iv  4 04/01/1971 die i mensis iv annoque mcmlxxi 71 lxxi 1971}
test clock-2.992 {conversion of 1971-04-30} {
    clock format 41862896 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Apr April 04/30/1971 12:34:56 die xxx mensis iv annoque mcmlxxi xii h xxxiv m lvi s 19 mcm 30 xxx 30 xxx Apr 120 2441072 04 iv  4 04/30/1971 die xxx mensis iv annoque mcmlxxi 71 lxxi 1971}
test clock-2.993 {conversion of 1971-05-01} {
    clock format 41949296 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {May May 05/01/1971 12:34:56 die i mensis v annoque mcmlxxi xii h xxxiv m lvi s 19 mcm 01 i  1 i May 121 2441073 05 v  5 05/01/1971 die i mensis v annoque mcmlxxi 71 lxxi 1971}
test clock-2.994 {conversion of 1971-05-31} {
    clock format 44541296 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {May May 05/31/1971 12:34:56 die xxxi mensis v annoque mcmlxxi xii h xxxiv m lvi s 19 mcm 31 xxxi 31 xxxi May 151 2441103 05 v  5 05/31/1971 die xxxi mensis v annoque mcmlxxi 71 lxxi 1971}
test clock-2.995 {conversion of 1971-06-01} {
    clock format 44627696 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Jun June 06/01/1971 12:34:56 die i mensis vi annoque mcmlxxi xii h xxxiv m lvi s 19 mcm 01 i  1 i Jun 152 2441104 06 vi  6 06/01/1971 die i mensis vi annoque mcmlxxi 71 lxxi 1971}
test clock-2.996 {conversion of 1971-06-30} {
    clock format 47133296 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Jun June 06/30/1971 12:34:56 die xxx mensis vi annoque mcmlxxi xii h xxxiv m lvi s 19 mcm 30 xxx 30 xxx Jun 181 2441133 06 vi  6 06/30/1971 die xxx mensis vi annoque mcmlxxi 71 lxxi 1971}
test clock-2.997 {conversion of 1971-07-01} {
    clock format 47219696 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Jul July 07/01/1971 12:34:56 die i mensis vii annoque mcmlxxi xii h xxxiv m lvi s 19 mcm 01 i  1 i Jul 182 2441134 07 vii  7 07/01/1971 die i mensis vii annoque mcmlxxi 71 lxxi 1971}
test clock-2.998 {conversion of 1971-07-31} {
    clock format 49811696 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Jul July 07/31/1971 12:34:56 die xxxi mensis vii annoque mcmlxxi xii h xxxiv m lvi s 19 mcm 31 xxxi 31 xxxi Jul 212 2441164 07 vii  7 07/31/1971 die xxxi mensis vii annoque mcmlxxi 71 lxxi 1971}
test clock-2.999 {conversion of 1971-08-01} {
    clock format 49898096 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Aug August 08/01/1971 12:34:56 die i mensis viii annoque mcmlxxi xii h xxxiv m lvi s 19 mcm 01 i  1 i Aug 213 2441165 08 viii  8 08/01/1971 die i mensis viii annoque mcmlxxi 71 lxxi 1971}
test clock-2.1000 {conversion of 1971-08-31} {
    clock format 52490096 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Aug August 08/31/1971 12:34:56 die xxxi mensis viii annoque mcmlxxi xii h xxxiv m lvi s 19 mcm 31 xxxi 31 xxxi Aug 243 2441195 08 viii  8 08/31/1971 die xxxi mensis viii annoque mcmlxxi 71 lxxi 1971}
test clock-2.1001 {conversion of 1971-09-01} {
    clock format 52576496 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Sep September 09/01/1971 12:34:56 die i mensis ix annoque mcmlxxi xii h xxxiv m lvi s 19 mcm 01 i  1 i Sep 244 2441196 09 ix  9 09/01/1971 die i mensis ix annoque mcmlxxi 71 lxxi 1971}
test clock-2.1002 {conversion of 1971-09-30} {
    clock format 55082096 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Sep September 09/30/1971 12:34:56 die xxx mensis ix annoque mcmlxxi xii h xxxiv m lvi s 19 mcm 30 xxx 30 xxx Sep 273 2441225 09 ix  9 09/30/1971 die xxx mensis ix annoque mcmlxxi 71 lxxi 1971}
test clock-2.1003 {conversion of 1971-10-01} {
    clock format 55168496 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Oct October 10/01/1971 12:34:56 die i mensis x annoque mcmlxxi xii h xxxiv m lvi s 19 mcm 01 i  1 i Oct 274 2441226 10 x 10 10/01/1971 die i mensis x annoque mcmlxxi 71 lxxi 1971}
test clock-2.1004 {conversion of 1971-10-31} {
    clock format 57760496 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Oct October 10/31/1971 12:34:56 die xxxi mensis x annoque mcmlxxi xii h xxxiv m lvi s 19 mcm 31 xxxi 31 xxxi Oct 304 2441256 10 x 10 10/31/1971 die xxxi mensis x annoque mcmlxxi 71 lxxi 1971}
test clock-2.1005 {conversion of 1971-11-01} {
    clock format 57846896 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Nov November 11/01/1971 12:34:56 die i mensis xi annoque mcmlxxi xii h xxxiv m lvi s 19 mcm 01 i  1 i Nov 305 2441257 11 xi 11 11/01/1971 die i mensis xi annoque mcmlxxi 71 lxxi 1971}
test clock-2.1006 {conversion of 1971-11-30} {
    clock format 60352496 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Nov November 11/30/1971 12:34:56 die xxx mensis xi annoque mcmlxxi xii h xxxiv m lvi s 19 mcm 30 xxx 30 xxx Nov 334 2441286 11 xi 11 11/30/1971 die xxx mensis xi annoque mcmlxxi 71 lxxi 1971}
test clock-2.1007 {conversion of 1971-12-01} {
    clock format 60438896 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Dec December 12/01/1971 12:34:56 die i mensis xii annoque mcmlxxi xii h xxxiv m lvi s 19 mcm 01 i  1 i Dec 335 2441287 12 xii 12 12/01/1971 die i mensis xii annoque mcmlxxi 71 lxxi 1971}
test clock-2.1008 {conversion of 1971-12-31} {
    clock format 63030896 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Dec December 12/31/1971 12:34:56 die xxxi mensis xii annoque mcmlxxi xii h xxxiv m lvi s 19 mcm 31 xxxi 31 xxxi Dec 365 2441317 12 xii 12 12/31/1971 die xxxi mensis xii annoque mcmlxxi 71 lxxi 1971}
test clock-2.1009 {conversion of 1972-01-01} {
    clock format 63117296 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Jan January 01/01/1972 12:34:56 die i mensis i annoque mcmlxxii xii h xxxiv m lvi s 19 mcm 01 i  1 i Jan 001 2441318 01 i  1 01/01/1972 die i mensis i annoque mcmlxxii 72 lxxii 1972}
test clock-2.1010 {conversion of 1972-01-31} {
    clock format 65709296 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Jan January 01/31/1972 12:34:56 die xxxi mensis i annoque mcmlxxii xii h xxxiv m lvi s 19 mcm 31 xxxi 31 xxxi Jan 031 2441348 01 i  1 01/31/1972 die xxxi mensis i annoque mcmlxxii 72 lxxii 1972}
test clock-2.1011 {conversion of 1972-02-01} {
    clock format 65795696 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Feb February 02/01/1972 12:34:56 die i mensis ii annoque mcmlxxii xii h xxxiv m lvi s 19 mcm 01 i  1 i Feb 032 2441349 02 ii  2 02/01/1972 die i mensis ii annoque mcmlxxii 72 lxxii 1972}
test clock-2.1012 {conversion of 1972-02-29} {
    clock format 68214896 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Feb February 02/29/1972 12:34:56 die xxix mensis ii annoque mcmlxxii xii h xxxiv m lvi s 19 mcm 29 xxix 29 xxix Feb 060 2441377 02 ii  2 02/29/1972 die xxix mensis ii annoque mcmlxxii 72 lxxii 1972}
test clock-2.1013 {conversion of 1972-03-01} {
    clock format 68301296 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Mar March 03/01/1972 12:34:56 die i mensis iii annoque mcmlxxii xii h xxxiv m lvi s 19 mcm 01 i  1 i Mar 061 2441378 03 iii  3 03/01/1972 die i mensis iii annoque mcmlxxii 72 lxxii 1972}
test clock-2.1014 {conversion of 1972-03-31} {
    clock format 70893296 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Mar March 03/31/1972 12:34:56 die xxxi mensis iii annoque mcmlxxii xii h xxxiv m lvi s 19 mcm 31 xxxi 31 xxxi Mar 091 2441408 03 iii  3 03/31/1972 die xxxi mensis iii annoque mcmlxxii 72 lxxii 1972}
test clock-2.1015 {conversion of 1972-04-01} {
    clock format 70979696 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Apr April 04/01/1972 12:34:56 die i mensis iv annoque mcmlxxii xii h xxxiv m lvi s 19 mcm 01 i  1 i Apr 092 2441409 04 iv  4 04/01/1972 die i mensis iv annoque mcmlxxii 72 lxxii 1972}
test clock-2.1016 {conversion of 1972-04-30} {
    clock format 73485296 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Apr April 04/30/1972 12:34:56 die xxx mensis iv annoque mcmlxxii xii h xxxiv m lvi s 19 mcm 30 xxx 30 xxx Apr 121 2441438 04 iv  4 04/30/1972 die xxx mensis iv annoque mcmlxxii 72 lxxii 1972}
test clock-2.1017 {conversion of 1972-05-01} {
    clock format 73571696 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {May May 05/01/1972 12:34:56 die i mensis v annoque mcmlxxii xii h xxxiv m lvi s 19 mcm 01 i  1 i May 122 2441439 05 v  5 05/01/1972 die i mensis v annoque mcmlxxii 72 lxxii 1972}
test clock-2.1018 {conversion of 1972-05-31} {
    clock format 76163696 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {May May 05/31/1972 12:34:56 die xxxi mensis v annoque mcmlxxii xii h xxxiv m lvi s 19 mcm 31 xxxi 31 xxxi May 152 2441469 05 v  5 05/31/1972 die xxxi mensis v annoque mcmlxxii 72 lxxii 1972}
test clock-2.1019 {conversion of 1972-06-01} {
    clock format 76250096 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Jun June 06/01/1972 12:34:56 die i mensis vi annoque mcmlxxii xii h xxxiv m lvi s 19 mcm 01 i  1 i Jun 153 2441470 06 vi  6 06/01/1972 die i mensis vi annoque mcmlxxii 72 lxxii 1972}
test clock-2.1020 {conversion of 1972-06-30} {
    clock format 78755696 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Jun June 06/30/1972 12:34:56 die xxx mensis vi annoque mcmlxxii xii h xxxiv m lvi s 19 mcm 30 xxx 30 xxx Jun 182 2441499 06 vi  6 06/30/1972 die xxx mensis vi annoque mcmlxxii 72 lxxii 1972}
test clock-2.1021 {conversion of 1972-07-01} {
    clock format 78842096 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Jul July 07/01/1972 12:34:56 die i mensis vii annoque mcmlxxii xii h xxxiv m lvi s 19 mcm 01 i  1 i Jul 183 2441500 07 vii  7 07/01/1972 die i mensis vii annoque mcmlxxii 72 lxxii 1972}
test clock-2.1022 {conversion of 1972-07-31} {
    clock format 81434096 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Jul July 07/31/1972 12:34:56 die xxxi mensis vii annoque mcmlxxii xii h xxxiv m lvi s 19 mcm 31 xxxi 31 xxxi Jul 213 2441530 07 vii  7 07/31/1972 die xxxi mensis vii annoque mcmlxxii 72 lxxii 1972}
test clock-2.1023 {conversion of 1972-08-01} {
    clock format 81520496 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Aug August 08/01/1972 12:34:56 die i mensis viii annoque mcmlxxii xii h xxxiv m lvi s 19 mcm 01 i  1 i Aug 214 2441531 08 viii  8 08/01/1972 die i mensis viii annoque mcmlxxii 72 lxxii 1972}
test clock-2.1024 {conversion of 1972-08-31} {
    clock format 84112496 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Aug August 08/31/1972 12:34:56 die xxxi mensis viii annoque mcmlxxii xii h xxxiv m lvi s 19 mcm 31 xxxi 31 xxxi Aug 244 2441561 08 viii  8 08/31/1972 die xxxi mensis viii annoque mcmlxxii 72 lxxii 1972}
test clock-2.1025 {conversion of 1972-09-01} {
    clock format 84198896 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Sep September 09/01/1972 12:34:56 die i mensis ix annoque mcmlxxii xii h xxxiv m lvi s 19 mcm 01 i  1 i Sep 245 2441562 09 ix  9 09/01/1972 die i mensis ix annoque mcmlxxii 72 lxxii 1972}
test clock-2.1026 {conversion of 1972-09-30} {
    clock format 86704496 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Sep September 09/30/1972 12:34:56 die xxx mensis ix annoque mcmlxxii xii h xxxiv m lvi s 19 mcm 30 xxx 30 xxx Sep 274 2441591 09 ix  9 09/30/1972 die xxx mensis ix annoque mcmlxxii 72 lxxii 1972}
test clock-2.1027 {conversion of 1972-10-01} {
    clock format 86790896 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Oct October 10/01/1972 12:34:56 die i mensis x annoque mcmlxxii xii h xxxiv m lvi s 19 mcm 01 i  1 i Oct 275 2441592 10 x 10 10/01/1972 die i mensis x annoque mcmlxxii 72 lxxii 1972}
test clock-2.1028 {conversion of 1972-10-31} {
    clock format 89382896 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Oct October 10/31/1972 12:34:56 die xxxi mensis x annoque mcmlxxii xii h xxxiv m lvi s 19 mcm 31 xxxi 31 xxxi Oct 305 2441622 10 x 10 10/31/1972 die xxxi mensis x annoque mcmlxxii 72 lxxii 1972}
test clock-2.1029 {conversion of 1972-11-01} {
    clock format 89469296 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Nov November 11/01/1972 12:34:56 die i mensis xi annoque mcmlxxii xii h xxxiv m lvi s 19 mcm 01 i  1 i Nov 306 2441623 11 xi 11 11/01/1972 die i mensis xi annoque mcmlxxii 72 lxxii 1972}
test clock-2.1030 {conversion of 1972-11-30} {
    clock format 91974896 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Nov November 11/30/1972 12:34:56 die xxx mensis xi annoque mcmlxxii xii h xxxiv m lvi s 19 mcm 30 xxx 30 xxx Nov 335 2441652 11 xi 11 11/30/1972 die xxx mensis xi annoque mcmlxxii 72 lxxii 1972}
test clock-2.1031 {conversion of 1972-12-01} {
    clock format 92061296 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Dec December 12/01/1972 12:34:56 die i mensis xii annoque mcmlxxii xii h xxxiv m lvi s 19 mcm 01 i  1 i Dec 336 2441653 12 xii 12 12/01/1972 die i mensis xii annoque mcmlxxii 72 lxxii 1972}
test clock-2.1032 {conversion of 1972-12-31} {
    clock format 94653296 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Dec December 12/31/1972 12:34:56 die xxxi mensis xii annoque mcmlxxii xii h xxxiv m lvi s 19 mcm 31 xxxi 31 xxxi Dec 366 2441683 12 xii 12 12/31/1972 die xxxi mensis xii annoque mcmlxxii 72 lxxii 1972}
test clock-2.1033 {conversion of 1973-01-01} {
    clock format 94739696 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Jan January 01/01/1973 12:34:56 die i mensis i annoque mcmlxxiii xii h xxxiv m lvi s 19 mcm 01 i  1 i Jan 001 2441684 01 i  1 01/01/1973 die i mensis i annoque mcmlxxiii 73 lxxiii 1973}
test clock-2.1034 {conversion of 1973-01-31} {
    clock format 97331696 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Jan January 01/31/1973 12:34:56 die xxxi mensis i annoque mcmlxxiii xii h xxxiv m lvi s 19 mcm 31 xxxi 31 xxxi Jan 031 2441714 01 i  1 01/31/1973 die xxxi mensis i annoque mcmlxxiii 73 lxxiii 1973}
test clock-2.1035 {conversion of 1973-02-01} {
    clock format 97418096 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Feb February 02/01/1973 12:34:56 die i mensis ii annoque mcmlxxiii xii h xxxiv m lvi s 19 mcm 01 i  1 i Feb 032 2441715 02 ii  2 02/01/1973 die i mensis ii annoque mcmlxxiii 73 lxxiii 1973}
test clock-2.1036 {conversion of 1973-02-28} {
    clock format 99750896 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Feb February 02/28/1973 12:34:56 die xxviii mensis ii annoque mcmlxxiii xii h xxxiv m lvi s 19 mcm 28 xxviii 28 xxviii Feb 059 2441742 02 ii  2 02/28/1973 die xxviii mensis ii annoque mcmlxxiii 73 lxxiii 1973}
test clock-2.1037 {conversion of 1973-03-01} {
    clock format 99837296 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Mar March 03/01/1973 12:34:56 die i mensis iii annoque mcmlxxiii xii h xxxiv m lvi s 19 mcm 01 i  1 i Mar 060 2441743 03 iii  3 03/01/1973 die i mensis iii annoque mcmlxxiii 73 lxxiii 1973}
test clock-2.1038 {conversion of 1973-03-31} {
    clock format 102429296 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Mar March 03/31/1973 12:34:56 die xxxi mensis iii annoque mcmlxxiii xii h xxxiv m lvi s 19 mcm 31 xxxi 31 xxxi Mar 090 2441773 03 iii  3 03/31/1973 die xxxi mensis iii annoque mcmlxxiii 73 lxxiii 1973}
test clock-2.1039 {conversion of 1973-04-01} {
    clock format 102515696 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Apr April 04/01/1973 12:34:56 die i mensis iv annoque mcmlxxiii xii h xxxiv m lvi s 19 mcm 01 i  1 i Apr 091 2441774 04 iv  4 04/01/1973 die i mensis iv annoque mcmlxxiii 73 lxxiii 1973}
test clock-2.1040 {conversion of 1973-04-30} {
    clock format 105021296 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Apr April 04/30/1973 12:34:56 die xxx mensis iv annoque mcmlxxiii xii h xxxiv m lvi s 19 mcm 30 xxx 30 xxx Apr 120 2441803 04 iv  4 04/30/1973 die xxx mensis iv annoque mcmlxxiii 73 lxxiii 1973}
test clock-2.1041 {conversion of 1973-05-01} {
    clock format 105107696 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {May May 05/01/1973 12:34:56 die i mensis v annoque mcmlxxiii xii h xxxiv m lvi s 19 mcm 01 i  1 i May 121 2441804 05 v  5 05/01/1973 die i mensis v annoque mcmlxxiii 73 lxxiii 1973}
test clock-2.1042 {conversion of 1973-05-31} {
    clock format 107699696 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {May May 05/31/1973 12:34:56 die xxxi mensis v annoque mcmlxxiii xii h xxxiv m lvi s 19 mcm 31 xxxi 31 xxxi May 151 2441834 05 v  5 05/31/1973 die xxxi mensis v annoque mcmlxxiii 73 lxxiii 1973}
test clock-2.1043 {conversion of 1973-06-01} {
    clock format 107786096 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Jun June 06/01/1973 12:34:56 die i mensis vi annoque mcmlxxiii xii h xxxiv m lvi s 19 mcm 01 i  1 i Jun 152 2441835 06 vi  6 06/01/1973 die i mensis vi annoque mcmlxxiii 73 lxxiii 1973}
test clock-2.1044 {conversion of 1973-06-30} {
    clock format 110291696 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Jun June 06/30/1973 12:34:56 die xxx mensis vi annoque mcmlxxiii xii h xxxiv m lvi s 19 mcm 30 xxx 30 xxx Jun 181 2441864 06 vi  6 06/30/1973 die xxx mensis vi annoque mcmlxxiii 73 lxxiii 1973}
test clock-2.1045 {conversion of 1973-07-01} {
    clock format 110378096 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Jul July 07/01/1973 12:34:56 die i mensis vii annoque mcmlxxiii xii h xxxiv m lvi s 19 mcm 01 i  1 i Jul 182 2441865 07 vii  7 07/01/1973 die i mensis vii annoque mcmlxxiii 73 lxxiii 1973}
test clock-2.1046 {conversion of 1973-07-31} {
    clock format 112970096 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Jul July 07/31/1973 12:34:56 die xxxi mensis vii annoque mcmlxxiii xii h xxxiv m lvi s 19 mcm 31 xxxi 31 xxxi Jul 212 2441895 07 vii  7 07/31/1973 die xxxi mensis vii annoque mcmlxxiii 73 lxxiii 1973}
test clock-2.1047 {conversion of 1973-08-01} {
    clock format 113056496 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Aug August 08/01/1973 12:34:56 die i mensis viii annoque mcmlxxiii xii h xxxiv m lvi s 19 mcm 01 i  1 i Aug 213 2441896 08 viii  8 08/01/1973 die i mensis viii annoque mcmlxxiii 73 lxxiii 1973}
test clock-2.1048 {conversion of 1973-08-31} {
    clock format 115648496 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Aug August 08/31/1973 12:34:56 die xxxi mensis viii annoque mcmlxxiii xii h xxxiv m lvi s 19 mcm 31 xxxi 31 xxxi Aug 243 2441926 08 viii  8 08/31/1973 die xxxi mensis viii annoque mcmlxxiii 73 lxxiii 1973}
test clock-2.1049 {conversion of 1973-09-01} {
    clock format 115734896 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Sep September 09/01/1973 12:34:56 die i mensis ix annoque mcmlxxiii xii h xxxiv m lvi s 19 mcm 01 i  1 i Sep 244 2441927 09 ix  9 09/01/1973 die i mensis ix annoque mcmlxxiii 73 lxxiii 1973}
test clock-2.1050 {conversion of 1973-09-30} {
    clock format 118240496 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Sep September 09/30/1973 12:34:56 die xxx mensis ix annoque mcmlxxiii xii h xxxiv m lvi s 19 mcm 30 xxx 30 xxx Sep 273 2441956 09 ix  9 09/30/1973 die xxx mensis ix annoque mcmlxxiii 73 lxxiii 1973}
test clock-2.1051 {conversion of 1973-10-01} {
    clock format 118326896 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Oct October 10/01/1973 12:34:56 die i mensis x annoque mcmlxxiii xii h xxxiv m lvi s 19 mcm 01 i  1 i Oct 274 2441957 10 x 10 10/01/1973 die i mensis x annoque mcmlxxiii 73 lxxiii 1973}
test clock-2.1052 {conversion of 1973-10-31} {
    clock format 120918896 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Oct October 10/31/1973 12:34:56 die xxxi mensis x annoque mcmlxxiii xii h xxxiv m lvi s 19 mcm 31 xxxi 31 xxxi Oct 304 2441987 10 x 10 10/31/1973 die xxxi mensis x annoque mcmlxxiii 73 lxxiii 1973}
test clock-2.1053 {conversion of 1973-11-01} {
    clock format 121005296 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Nov November 11/01/1973 12:34:56 die i mensis xi annoque mcmlxxiii xii h xxxiv m lvi s 19 mcm 01 i  1 i Nov 305 2441988 11 xi 11 11/01/1973 die i mensis xi annoque mcmlxxiii 73 lxxiii 1973}
test clock-2.1054 {conversion of 1973-11-30} {
    clock format 123510896 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Nov November 11/30/1973 12:34:56 die xxx mensis xi annoque mcmlxxiii xii h xxxiv m lvi s 19 mcm 30 xxx 30 xxx Nov 334 2442017 11 xi 11 11/30/1973 die xxx mensis xi annoque mcmlxxiii 73 lxxiii 1973}
test clock-2.1055 {conversion of 1973-12-01} {
    clock format 123597296 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Dec December 12/01/1973 12:34:56 die i mensis xii annoque mcmlxxiii xii h xxxiv m lvi s 19 mcm 01 i  1 i Dec 335 2442018 12 xii 12 12/01/1973 die i mensis xii annoque mcmlxxiii 73 lxxiii 1973}
test clock-2.1056 {conversion of 1973-12-31} {
    clock format 126189296 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Dec December 12/31/1973 12:34:56 die xxxi mensis xii annoque mcmlxxiii xii h xxxiv m lvi s 19 mcm 31 xxxi 31 xxxi Dec 365 2442048 12 xii 12 12/31/1973 die xxxi mensis xii annoque mcmlxxiii 73 lxxiii 1973}
test clock-2.1057 {conversion of 1974-01-01} {
    clock format 126275696 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Jan January 01/01/1974 12:34:56 die i mensis i annoque mcmlxxiv xii h xxxiv m lvi s 19 mcm 01 i  1 i Jan 001 2442049 01 i  1 01/01/1974 die i mensis i annoque mcmlxxiv 74 lxxiv 1974}
test clock-2.1058 {conversion of 1974-01-31} {
    clock format 128867696 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Jan January 01/31/1974 12:34:56 die xxxi mensis i annoque mcmlxxiv xii h xxxiv m lvi s 19 mcm 31 xxxi 31 xxxi Jan 031 2442079 01 i  1 01/31/1974 die xxxi mensis i annoque mcmlxxiv 74 lxxiv 1974}
test clock-2.1059 {conversion of 1974-02-01} {
    clock format 128954096 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Feb February 02/01/1974 12:34:56 die i mensis ii annoque mcmlxxiv xii h xxxiv m lvi s 19 mcm 01 i  1 i Feb 032 2442080 02 ii  2 02/01/1974 die i mensis ii annoque mcmlxxiv 74 lxxiv 1974}
test clock-2.1060 {conversion of 1974-02-28} {
    clock format 131286896 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Feb February 02/28/1974 12:34:56 die xxviii mensis ii annoque mcmlxxiv xii h xxxiv m lvi s 19 mcm 28 xxviii 28 xxviii Feb 059 2442107 02 ii  2 02/28/1974 die xxviii mensis ii annoque mcmlxxiv 74 lxxiv 1974}
test clock-2.1061 {conversion of 1974-03-01} {
    clock format 131373296 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Mar March 03/01/1974 12:34:56 die i mensis iii annoque mcmlxxiv xii h xxxiv m lvi s 19 mcm 01 i  1 i Mar 060 2442108 03 iii  3 03/01/1974 die i mensis iii annoque mcmlxxiv 74 lxxiv 1974}
test clock-2.1062 {conversion of 1974-03-31} {
    clock format 133965296 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Mar March 03/31/1974 12:34:56 die xxxi mensis iii annoque mcmlxxiv xii h xxxiv m lvi s 19 mcm 31 xxxi 31 xxxi Mar 090 2442138 03 iii  3 03/31/1974 die xxxi mensis iii annoque mcmlxxiv 74 lxxiv 1974}
test clock-2.1063 {conversion of 1974-04-01} {
    clock format 134051696 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Apr April 04/01/1974 12:34:56 die i mensis iv annoque mcmlxxiv xii h xxxiv m lvi s 19 mcm 01 i  1 i Apr 091 2442139 04 iv  4 04/01/1974 die i mensis iv annoque mcmlxxiv 74 lxxiv 1974}
test clock-2.1064 {conversion of 1974-04-30} {
    clock format 136557296 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Apr April 04/30/1974 12:34:56 die xxx mensis iv annoque mcmlxxiv xii h xxxiv m lvi s 19 mcm 30 xxx 30 xxx Apr 120 2442168 04 iv  4 04/30/1974 die xxx mensis iv annoque mcmlxxiv 74 lxxiv 1974}
test clock-2.1065 {conversion of 1974-05-01} {
    clock format 136643696 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {May May 05/01/1974 12:34:56 die i mensis v annoque mcmlxxiv xii h xxxiv m lvi s 19 mcm 01 i  1 i May 121 2442169 05 v  5 05/01/1974 die i mensis v annoque mcmlxxiv 74 lxxiv 1974}
test clock-2.1066 {conversion of 1974-05-31} {
    clock format 139235696 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {May May 05/31/1974 12:34:56 die xxxi mensis v annoque mcmlxxiv xii h xxxiv m lvi s 19 mcm 31 xxxi 31 xxxi May 151 2442199 05 v  5 05/31/1974 die xxxi mensis v annoque mcmlxxiv 74 lxxiv 1974}
test clock-2.1067 {conversion of 1974-06-01} {
    clock format 139322096 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Jun June 06/01/1974 12:34:56 die i mensis vi annoque mcmlxxiv xii h xxxiv m lvi s 19 mcm 01 i  1 i Jun 152 2442200 06 vi  6 06/01/1974 die i mensis vi annoque mcmlxxiv 74 lxxiv 1974}
test clock-2.1068 {conversion of 1974-06-30} {
    clock format 141827696 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Jun June 06/30/1974 12:34:56 die xxx mensis vi annoque mcmlxxiv xii h xxxiv m lvi s 19 mcm 30 xxx 30 xxx Jun 181 2442229 06 vi  6 06/30/1974 die xxx mensis vi annoque mcmlxxiv 74 lxxiv 1974}
test clock-2.1069 {conversion of 1974-07-01} {
    clock format 141914096 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Jul July 07/01/1974 12:34:56 die i mensis vii annoque mcmlxxiv xii h xxxiv m lvi s 19 mcm 01 i  1 i Jul 182 2442230 07 vii  7 07/01/1974 die i mensis vii annoque mcmlxxiv 74 lxxiv 1974}
test clock-2.1070 {conversion of 1974-07-31} {
    clock format 144506096 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Jul July 07/31/1974 12:34:56 die xxxi mensis vii annoque mcmlxxiv xii h xxxiv m lvi s 19 mcm 31 xxxi 31 xxxi Jul 212 2442260 07 vii  7 07/31/1974 die xxxi mensis vii annoque mcmlxxiv 74 lxxiv 1974}
test clock-2.1071 {conversion of 1974-08-01} {
    clock format 144592496 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Aug August 08/01/1974 12:34:56 die i mensis viii annoque mcmlxxiv xii h xxxiv m lvi s 19 mcm 01 i  1 i Aug 213 2442261 08 viii  8 08/01/1974 die i mensis viii annoque mcmlxxiv 74 lxxiv 1974}
test clock-2.1072 {conversion of 1974-08-31} {
    clock format 147184496 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Aug August 08/31/1974 12:34:56 die xxxi mensis viii annoque mcmlxxiv xii h xxxiv m lvi s 19 mcm 31 xxxi 31 xxxi Aug 243 2442291 08 viii  8 08/31/1974 die xxxi mensis viii annoque mcmlxxiv 74 lxxiv 1974}
test clock-2.1073 {conversion of 1974-09-01} {
    clock format 147270896 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Sep September 09/01/1974 12:34:56 die i mensis ix annoque mcmlxxiv xii h xxxiv m lvi s 19 mcm 01 i  1 i Sep 244 2442292 09 ix  9 09/01/1974 die i mensis ix annoque mcmlxxiv 74 lxxiv 1974}
test clock-2.1074 {conversion of 1974-09-30} {
    clock format 149776496 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Sep September 09/30/1974 12:34:56 die xxx mensis ix annoque mcmlxxiv xii h xxxiv m lvi s 19 mcm 30 xxx 30 xxx Sep 273 2442321 09 ix  9 09/30/1974 die xxx mensis ix annoque mcmlxxiv 74 lxxiv 1974}
test clock-2.1075 {conversion of 1974-10-01} {
    clock format 149862896 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Oct October 10/01/1974 12:34:56 die i mensis x annoque mcmlxxiv xii h xxxiv m lvi s 19 mcm 01 i  1 i Oct 274 2442322 10 x 10 10/01/1974 die i mensis x annoque mcmlxxiv 74 lxxiv 1974}
test clock-2.1076 {conversion of 1974-10-31} {
    clock format 152454896 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Oct October 10/31/1974 12:34:56 die xxxi mensis x annoque mcmlxxiv xii h xxxiv m lvi s 19 mcm 31 xxxi 31 xxxi Oct 304 2442352 10 x 10 10/31/1974 die xxxi mensis x annoque mcmlxxiv 74 lxxiv 1974}
test clock-2.1077 {conversion of 1974-11-01} {
    clock format 152541296 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Nov November 11/01/1974 12:34:56 die i mensis xi annoque mcmlxxiv xii h xxxiv m lvi s 19 mcm 01 i  1 i Nov 305 2442353 11 xi 11 11/01/1974 die i mensis xi annoque mcmlxxiv 74 lxxiv 1974}
test clock-2.1078 {conversion of 1974-11-30} {
    clock format 155046896 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Nov November 11/30/1974 12:34:56 die xxx mensis xi annoque mcmlxxiv xii h xxxiv m lvi s 19 mcm 30 xxx 30 xxx Nov 334 2442382 11 xi 11 11/30/1974 die xxx mensis xi annoque mcmlxxiv 74 lxxiv 1974}
test clock-2.1079 {conversion of 1974-12-01} {
    clock format 155133296 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Dec December 12/01/1974 12:34:56 die i mensis xii annoque mcmlxxiv xii h xxxiv m lvi s 19 mcm 01 i  1 i Dec 335 2442383 12 xii 12 12/01/1974 die i mensis xii annoque mcmlxxiv 74 lxxiv 1974}
test clock-2.1080 {conversion of 1974-12-31} {
    clock format 157725296 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Dec December 12/31/1974 12:34:56 die xxxi mensis xii annoque mcmlxxiv xii h xxxiv m lvi s 19 mcm 31 xxxi 31 xxxi Dec 365 2442413 12 xii 12 12/31/1974 die xxxi mensis xii annoque mcmlxxiv 74 lxxiv 1974}
test clock-2.1081 {conversion of 1975-01-01} {
    clock format 157811696 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Jan January 01/01/1975 12:34:56 die i mensis i annoque mcmlxxv xii h xxxiv m lvi s 19 mcm 01 i  1 i Jan 001 2442414 01 i  1 01/01/1975 die i mensis i annoque mcmlxxv 75 lxxv 1975}
test clock-2.1082 {conversion of 1975-01-31} {
    clock format 160403696 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Jan January 01/31/1975 12:34:56 die xxxi mensis i annoque mcmlxxv xii h xxxiv m lvi s 19 mcm 31 xxxi 31 xxxi Jan 031 2442444 01 i  1 01/31/1975 die xxxi mensis i annoque mcmlxxv 75 lxxv 1975}
test clock-2.1083 {conversion of 1975-02-01} {
    clock format 160490096 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Feb February 02/01/1975 12:34:56 die i mensis ii annoque mcmlxxv xii h xxxiv m lvi s 19 mcm 01 i  1 i Feb 032 2442445 02 ii  2 02/01/1975 die i mensis ii annoque mcmlxxv 75 lxxv 1975}
test clock-2.1084 {conversion of 1975-02-28} {
    clock format 162822896 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Feb February 02/28/1975 12:34:56 die xxviii mensis ii annoque mcmlxxv xii h xxxiv m lvi s 19 mcm 28 xxviii 28 xxviii Feb 059 2442472 02 ii  2 02/28/1975 die xxviii mensis ii annoque mcmlxxv 75 lxxv 1975}
test clock-2.1085 {conversion of 1975-03-01} {
    clock format 162909296 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Mar March 03/01/1975 12:34:56 die i mensis iii annoque mcmlxxv xii h xxxiv m lvi s 19 mcm 01 i  1 i Mar 060 2442473 03 iii  3 03/01/1975 die i mensis iii annoque mcmlxxv 75 lxxv 1975}
test clock-2.1086 {conversion of 1975-03-31} {
    clock format 165501296 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Mar March 03/31/1975 12:34:56 die xxxi mensis iii annoque mcmlxxv xii h xxxiv m lvi s 19 mcm 31 xxxi 31 xxxi Mar 090 2442503 03 iii  3 03/31/1975 die xxxi mensis iii annoque mcmlxxv 75 lxxv 1975}
test clock-2.1087 {conversion of 1975-04-01} {
    clock format 165587696 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Apr April 04/01/1975 12:34:56 die i mensis iv annoque mcmlxxv xii h xxxiv m lvi s 19 mcm 01 i  1 i Apr 091 2442504 04 iv  4 04/01/1975 die i mensis iv annoque mcmlxxv 75 lxxv 1975}
test clock-2.1088 {conversion of 1975-04-30} {
    clock format 168093296 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Apr April 04/30/1975 12:34:56 die xxx mensis iv annoque mcmlxxv xii h xxxiv m lvi s 19 mcm 30 xxx 30 xxx Apr 120 2442533 04 iv  4 04/30/1975 die xxx mensis iv annoque mcmlxxv 75 lxxv 1975}
test clock-2.1089 {conversion of 1975-05-01} {
    clock format 168179696 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {May May 05/01/1975 12:34:56 die i mensis v annoque mcmlxxv xii h xxxiv m lvi s 19 mcm 01 i  1 i May 121 2442534 05 v  5 05/01/1975 die i mensis v annoque mcmlxxv 75 lxxv 1975}
test clock-2.1090 {conversion of 1975-05-31} {
    clock format 170771696 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {May May 05/31/1975 12:34:56 die xxxi mensis v annoque mcmlxxv xii h xxxiv m lvi s 19 mcm 31 xxxi 31 xxxi May 151 2442564 05 v  5 05/31/1975 die xxxi mensis v annoque mcmlxxv 75 lxxv 1975}
test clock-2.1091 {conversion of 1975-06-01} {
    clock format 170858096 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Jun June 06/01/1975 12:34:56 die i mensis vi annoque mcmlxxv xii h xxxiv m lvi s 19 mcm 01 i  1 i Jun 152 2442565 06 vi  6 06/01/1975 die i mensis vi annoque mcmlxxv 75 lxxv 1975}
test clock-2.1092 {conversion of 1975-06-30} {
    clock format 173363696 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Jun June 06/30/1975 12:34:56 die xxx mensis vi annoque mcmlxxv xii h xxxiv m lvi s 19 mcm 30 xxx 30 xxx Jun 181 2442594 06 vi  6 06/30/1975 die xxx mensis vi annoque mcmlxxv 75 lxxv 1975}
test clock-2.1093 {conversion of 1975-07-01} {
    clock format 173450096 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Jul July 07/01/1975 12:34:56 die i mensis vii annoque mcmlxxv xii h xxxiv m lvi s 19 mcm 01 i  1 i Jul 182 2442595 07 vii  7 07/01/1975 die i mensis vii annoque mcmlxxv 75 lxxv 1975}
test clock-2.1094 {conversion of 1975-07-31} {
    clock format 176042096 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Jul July 07/31/1975 12:34:56 die xxxi mensis vii annoque mcmlxxv xii h xxxiv m lvi s 19 mcm 31 xxxi 31 xxxi Jul 212 2442625 07 vii  7 07/31/1975 die xxxi mensis vii annoque mcmlxxv 75 lxxv 1975}
test clock-2.1095 {conversion of 1975-08-01} {
    clock format 176128496 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Aug August 08/01/1975 12:34:56 die i mensis viii annoque mcmlxxv xii h xxxiv m lvi s 19 mcm 01 i  1 i Aug 213 2442626 08 viii  8 08/01/1975 die i mensis viii annoque mcmlxxv 75 lxxv 1975}
test clock-2.1096 {conversion of 1975-08-31} {
    clock format 178720496 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Aug August 08/31/1975 12:34:56 die xxxi mensis viii annoque mcmlxxv xii h xxxiv m lvi s 19 mcm 31 xxxi 31 xxxi Aug 243 2442656 08 viii  8 08/31/1975 die xxxi mensis viii annoque mcmlxxv 75 lxxv 1975}
test clock-2.1097 {conversion of 1975-09-01} {
    clock format 178806896 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Sep September 09/01/1975 12:34:56 die i mensis ix annoque mcmlxxv xii h xxxiv m lvi s 19 mcm 01 i  1 i Sep 244 2442657 09 ix  9 09/01/1975 die i mensis ix annoque mcmlxxv 75 lxxv 1975}
test clock-2.1098 {conversion of 1975-09-30} {
    clock format 181312496 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Sep September 09/30/1975 12:34:56 die xxx mensis ix annoque mcmlxxv xii h xxxiv m lvi s 19 mcm 30 xxx 30 xxx Sep 273 2442686 09 ix  9 09/30/1975 die xxx mensis ix annoque mcmlxxv 75 lxxv 1975}
test clock-2.1099 {conversion of 1975-10-01} {
    clock format 181398896 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Oct October 10/01/1975 12:34:56 die i mensis x annoque mcmlxxv xii h xxxiv m lvi s 19 mcm 01 i  1 i Oct 274 2442687 10 x 10 10/01/1975 die i mensis x annoque mcmlxxv 75 lxxv 1975}
test clock-2.1100 {conversion of 1975-10-31} {
    clock format 183990896 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Oct October 10/31/1975 12:34:56 die xxxi mensis x annoque mcmlxxv xii h xxxiv m lvi s 19 mcm 31 xxxi 31 xxxi Oct 304 2442717 10 x 10 10/31/1975 die xxxi mensis x annoque mcmlxxv 75 lxxv 1975}
test clock-2.1101 {conversion of 1975-11-01} {
    clock format 184077296 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Nov November 11/01/1975 12:34:56 die i mensis xi annoque mcmlxxv xii h xxxiv m lvi s 19 mcm 01 i  1 i Nov 305 2442718 11 xi 11 11/01/1975 die i mensis xi annoque mcmlxxv 75 lxxv 1975}
test clock-2.1102 {conversion of 1975-11-30} {
    clock format 186582896 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Nov November 11/30/1975 12:34:56 die xxx mensis xi annoque mcmlxxv xii h xxxiv m lvi s 19 mcm 30 xxx 30 xxx Nov 334 2442747 11 xi 11 11/30/1975 die xxx mensis xi annoque mcmlxxv 75 lxxv 1975}
test clock-2.1103 {conversion of 1975-12-01} {
    clock format 186669296 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Dec December 12/01/1975 12:34:56 die i mensis xii annoque mcmlxxv xii h xxxiv m lvi s 19 mcm 01 i  1 i Dec 335 2442748 12 xii 12 12/01/1975 die i mensis xii annoque mcmlxxv 75 lxxv 1975}
test clock-2.1104 {conversion of 1975-12-31} {
    clock format 189261296 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Dec December 12/31/1975 12:34:56 die xxxi mensis xii annoque mcmlxxv xii h xxxiv m lvi s 19 mcm 31 xxxi 31 xxxi Dec 365 2442778 12 xii 12 12/31/1975 die xxxi mensis xii annoque mcmlxxv 75 lxxv 1975}
test clock-2.1105 {conversion of 1976-01-01} {
    clock format 189347696 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Jan January 01/01/1976 12:34:56 die i mensis i annoque mcmlxxvi xii h xxxiv m lvi s 19 mcm 01 i  1 i Jan 001 2442779 01 i  1 01/01/1976 die i mensis i annoque mcmlxxvi 76 lxxvi 1976}
test clock-2.1106 {conversion of 1976-01-31} {
    clock format 191939696 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Jan January 01/31/1976 12:34:56 die xxxi mensis i annoque mcmlxxvi xii h xxxiv m lvi s 19 mcm 31 xxxi 31 xxxi Jan 031 2442809 01 i  1 01/31/1976 die xxxi mensis i annoque mcmlxxvi 76 lxxvi 1976}
test clock-2.1107 {conversion of 1976-02-01} {
    clock format 192026096 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Feb February 02/01/1976 12:34:56 die i mensis ii annoque mcmlxxvi xii h xxxiv m lvi s 19 mcm 01 i  1 i Feb 032 2442810 02 ii  2 02/01/1976 die i mensis ii annoque mcmlxxvi 76 lxxvi 1976}
test clock-2.1108 {conversion of 1976-02-29} {
    clock format 194445296 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Feb February 02/29/1976 12:34:56 die xxix mensis ii annoque mcmlxxvi xii h xxxiv m lvi s 19 mcm 29 xxix 29 xxix Feb 060 2442838 02 ii  2 02/29/1976 die xxix mensis ii annoque mcmlxxvi 76 lxxvi 1976}
test clock-2.1109 {conversion of 1976-03-01} {
    clock format 194531696 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Mar March 03/01/1976 12:34:56 die i mensis iii annoque mcmlxxvi xii h xxxiv m lvi s 19 mcm 01 i  1 i Mar 061 2442839 03 iii  3 03/01/1976 die i mensis iii annoque mcmlxxvi 76 lxxvi 1976}
test clock-2.1110 {conversion of 1976-03-31} {
    clock format 197123696 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Mar March 03/31/1976 12:34:56 die xxxi mensis iii annoque mcmlxxvi xii h xxxiv m lvi s 19 mcm 31 xxxi 31 xxxi Mar 091 2442869 03 iii  3 03/31/1976 die xxxi mensis iii annoque mcmlxxvi 76 lxxvi 1976}
test clock-2.1111 {conversion of 1976-04-01} {
    clock format 197210096 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Apr April 04/01/1976 12:34:56 die i mensis iv annoque mcmlxxvi xii h xxxiv m lvi s 19 mcm 01 i  1 i Apr 092 2442870 04 iv  4 04/01/1976 die i mensis iv annoque mcmlxxvi 76 lxxvi 1976}
test clock-2.1112 {conversion of 1976-04-30} {
    clock format 199715696 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Apr April 04/30/1976 12:34:56 die xxx mensis iv annoque mcmlxxvi xii h xxxiv m lvi s 19 mcm 30 xxx 30 xxx Apr 121 2442899 04 iv  4 04/30/1976 die xxx mensis iv annoque mcmlxxvi 76 lxxvi 1976}
test clock-2.1113 {conversion of 1976-05-01} {
    clock format 199802096 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {May May 05/01/1976 12:34:56 die i mensis v annoque mcmlxxvi xii h xxxiv m lvi s 19 mcm 01 i  1 i May 122 2442900 05 v  5 05/01/1976 die i mensis v annoque mcmlxxvi 76 lxxvi 1976}
test clock-2.1114 {conversion of 1976-05-31} {
    clock format 202394096 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {May May 05/31/1976 12:34:56 die xxxi mensis v annoque mcmlxxvi xii h xxxiv m lvi s 19 mcm 31 xxxi 31 xxxi May 152 2442930 05 v  5 05/31/1976 die xxxi mensis v annoque mcmlxxvi 76 lxxvi 1976}
test clock-2.1115 {conversion of 1976-06-01} {
    clock format 202480496 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Jun June 06/01/1976 12:34:56 die i mensis vi annoque mcmlxxvi xii h xxxiv m lvi s 19 mcm 01 i  1 i Jun 153 2442931 06 vi  6 06/01/1976 die i mensis vi annoque mcmlxxvi 76 lxxvi 1976}
test clock-2.1116 {conversion of 1976-06-30} {
    clock format 204986096 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Jun June 06/30/1976 12:34:56 die xxx mensis vi annoque mcmlxxvi xii h xxxiv m lvi s 19 mcm 30 xxx 30 xxx Jun 182 2442960 06 vi  6 06/30/1976 die xxx mensis vi annoque mcmlxxvi 76 lxxvi 1976}
test clock-2.1117 {conversion of 1976-07-01} {
    clock format 205072496 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Jul July 07/01/1976 12:34:56 die i mensis vii annoque mcmlxxvi xii h xxxiv m lvi s 19 mcm 01 i  1 i Jul 183 2442961 07 vii  7 07/01/1976 die i mensis vii annoque mcmlxxvi 76 lxxvi 1976}
test clock-2.1118 {conversion of 1976-07-31} {
    clock format 207664496 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Jul July 07/31/1976 12:34:56 die xxxi mensis vii annoque mcmlxxvi xii h xxxiv m lvi s 19 mcm 31 xxxi 31 xxxi Jul 213 2442991 07 vii  7 07/31/1976 die xxxi mensis vii annoque mcmlxxvi 76 lxxvi 1976}
test clock-2.1119 {conversion of 1976-08-01} {
    clock format 207750896 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Aug August 08/01/1976 12:34:56 die i mensis viii annoque mcmlxxvi xii h xxxiv m lvi s 19 mcm 01 i  1 i Aug 214 2442992 08 viii  8 08/01/1976 die i mensis viii annoque mcmlxxvi 76 lxxvi 1976}
test clock-2.1120 {conversion of 1976-08-31} {
    clock format 210342896 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Aug August 08/31/1976 12:34:56 die xxxi mensis viii annoque mcmlxxvi xii h xxxiv m lvi s 19 mcm 31 xxxi 31 xxxi Aug 244 2443022 08 viii  8 08/31/1976 die xxxi mensis viii annoque mcmlxxvi 76 lxxvi 1976}
test clock-2.1121 {conversion of 1976-09-01} {
    clock format 210429296 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Sep September 09/01/1976 12:34:56 die i mensis ix annoque mcmlxxvi xii h xxxiv m lvi s 19 mcm 01 i  1 i Sep 245 2443023 09 ix  9 09/01/1976 die i mensis ix annoque mcmlxxvi 76 lxxvi 1976}
test clock-2.1122 {conversion of 1976-09-30} {
    clock format 212934896 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Sep September 09/30/1976 12:34:56 die xxx mensis ix annoque mcmlxxvi xii h xxxiv m lvi s 19 mcm 30 xxx 30 xxx Sep 274 2443052 09 ix  9 09/30/1976 die xxx mensis ix annoque mcmlxxvi 76 lxxvi 1976}
test clock-2.1123 {conversion of 1976-10-01} {
    clock format 213021296 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Oct October 10/01/1976 12:34:56 die i mensis x annoque mcmlxxvi xii h xxxiv m lvi s 19 mcm 01 i  1 i Oct 275 2443053 10 x 10 10/01/1976 die i mensis x annoque mcmlxxvi 76 lxxvi 1976}
test clock-2.1124 {conversion of 1976-10-31} {
    clock format 215613296 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Oct October 10/31/1976 12:34:56 die xxxi mensis x annoque mcmlxxvi xii h xxxiv m lvi s 19 mcm 31 xxxi 31 xxxi Oct 305 2443083 10 x 10 10/31/1976 die xxxi mensis x annoque mcmlxxvi 76 lxxvi 1976}
test clock-2.1125 {conversion of 1976-11-01} {
    clock format 215699696 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Nov November 11/01/1976 12:34:56 die i mensis xi annoque mcmlxxvi xii h xxxiv m lvi s 19 mcm 01 i  1 i Nov 306 2443084 11 xi 11 11/01/1976 die i mensis xi annoque mcmlxxvi 76 lxxvi 1976}
test clock-2.1126 {conversion of 1976-11-30} {
    clock format 218205296 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Nov November 11/30/1976 12:34:56 die xxx mensis xi annoque mcmlxxvi xii h xxxiv m lvi s 19 mcm 30 xxx 30 xxx Nov 335 2443113 11 xi 11 11/30/1976 die xxx mensis xi annoque mcmlxxvi 76 lxxvi 1976}
test clock-2.1127 {conversion of 1976-12-01} {
    clock format 218291696 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Dec December 12/01/1976 12:34:56 die i mensis xii annoque mcmlxxvi xii h xxxiv m lvi s 19 mcm 01 i  1 i Dec 336 2443114 12 xii 12 12/01/1976 die i mensis xii annoque mcmlxxvi 76 lxxvi 1976}
test clock-2.1128 {conversion of 1976-12-31} {
    clock format 220883696 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Dec December 12/31/1976 12:34:56 die xxxi mensis xii annoque mcmlxxvi xii h xxxiv m lvi s 19 mcm 31 xxxi 31 xxxi Dec 366 2443144 12 xii 12 12/31/1976 die xxxi mensis xii annoque mcmlxxvi 76 lxxvi 1976}
test clock-2.1129 {conversion of 1977-01-01} {
    clock format 220970096 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Jan January 01/01/1977 12:34:56 die i mensis i annoque mcmlxxvii xii h xxxiv m lvi s 19 mcm 01 i  1 i Jan 001 2443145 01 i  1 01/01/1977 die i mensis i annoque mcmlxxvii 77 lxxvii 1977}
test clock-2.1130 {conversion of 1977-01-31} {
    clock format 223562096 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Jan January 01/31/1977 12:34:56 die xxxi mensis i annoque mcmlxxvii xii h xxxiv m lvi s 19 mcm 31 xxxi 31 xxxi Jan 031 2443175 01 i  1 01/31/1977 die xxxi mensis i annoque mcmlxxvii 77 lxxvii 1977}
test clock-2.1131 {conversion of 1977-02-01} {
    clock format 223648496 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Feb February 02/01/1977 12:34:56 die i mensis ii annoque mcmlxxvii xii h xxxiv m lvi s 19 mcm 01 i  1 i Feb 032 2443176 02 ii  2 02/01/1977 die i mensis ii annoque mcmlxxvii 77 lxxvii 1977}
test clock-2.1132 {conversion of 1977-02-28} {
    clock format 225981296 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Feb February 02/28/1977 12:34:56 die xxviii mensis ii annoque mcmlxxvii xii h xxxiv m lvi s 19 mcm 28 xxviii 28 xxviii Feb 059 2443203 02 ii  2 02/28/1977 die xxviii mensis ii annoque mcmlxxvii 77 lxxvii 1977}
test clock-2.1133 {conversion of 1977-03-01} {
    clock format 226067696 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Mar March 03/01/1977 12:34:56 die i mensis iii annoque mcmlxxvii xii h xxxiv m lvi s 19 mcm 01 i  1 i Mar 060 2443204 03 iii  3 03/01/1977 die i mensis iii annoque mcmlxxvii 77 lxxvii 1977}
test clock-2.1134 {conversion of 1977-03-31} {
    clock format 228659696 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Mar March 03/31/1977 12:34:56 die xxxi mensis iii annoque mcmlxxvii xii h xxxiv m lvi s 19 mcm 31 xxxi 31 xxxi Mar 090 2443234 03 iii  3 03/31/1977 die xxxi mensis iii annoque mcmlxxvii 77 lxxvii 1977}
test clock-2.1135 {conversion of 1977-04-01} {
    clock format 228746096 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Apr April 04/01/1977 12:34:56 die i mensis iv annoque mcmlxxvii xii h xxxiv m lvi s 19 mcm 01 i  1 i Apr 091 2443235 04 iv  4 04/01/1977 die i mensis iv annoque mcmlxxvii 77 lxxvii 1977}
test clock-2.1136 {conversion of 1977-04-30} {
    clock format 231251696 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Apr April 04/30/1977 12:34:56 die xxx mensis iv annoque mcmlxxvii xii h xxxiv m lvi s 19 mcm 30 xxx 30 xxx Apr 120 2443264 04 iv  4 04/30/1977 die xxx mensis iv annoque mcmlxxvii 77 lxxvii 1977}
test clock-2.1137 {conversion of 1977-05-01} {
    clock format 231338096 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {May May 05/01/1977 12:34:56 die i mensis v annoque mcmlxxvii xii h xxxiv m lvi s 19 mcm 01 i  1 i May 121 2443265 05 v  5 05/01/1977 die i mensis v annoque mcmlxxvii 77 lxxvii 1977}
test clock-2.1138 {conversion of 1977-05-31} {
    clock format 233930096 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {May May 05/31/1977 12:34:56 die xxxi mensis v annoque mcmlxxvii xii h xxxiv m lvi s 19 mcm 31 xxxi 31 xxxi May 151 2443295 05 v  5 05/31/1977 die xxxi mensis v annoque mcmlxxvii 77 lxxvii 1977}
test clock-2.1139 {conversion of 1977-06-01} {
    clock format 234016496 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Jun June 06/01/1977 12:34:56 die i mensis vi annoque mcmlxxvii xii h xxxiv m lvi s 19 mcm 01 i  1 i Jun 152 2443296 06 vi  6 06/01/1977 die i mensis vi annoque mcmlxxvii 77 lxxvii 1977}
test clock-2.1140 {conversion of 1977-06-30} {
    clock format 236522096 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Jun June 06/30/1977 12:34:56 die xxx mensis vi annoque mcmlxxvii xii h xxxiv m lvi s 19 mcm 30 xxx 30 xxx Jun 181 2443325 06 vi  6 06/30/1977 die xxx mensis vi annoque mcmlxxvii 77 lxxvii 1977}
test clock-2.1141 {conversion of 1977-07-01} {
    clock format 236608496 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Jul July 07/01/1977 12:34:56 die i mensis vii annoque mcmlxxvii xii h xxxiv m lvi s 19 mcm 01 i  1 i Jul 182 2443326 07 vii  7 07/01/1977 die i mensis vii annoque mcmlxxvii 77 lxxvii 1977}
test clock-2.1142 {conversion of 1977-07-31} {
    clock format 239200496 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Jul July 07/31/1977 12:34:56 die xxxi mensis vii annoque mcmlxxvii xii h xxxiv m lvi s 19 mcm 31 xxxi 31 xxxi Jul 212 2443356 07 vii  7 07/31/1977 die xxxi mensis vii annoque mcmlxxvii 77 lxxvii 1977}
test clock-2.1143 {conversion of 1977-08-01} {
    clock format 239286896 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Aug August 08/01/1977 12:34:56 die i mensis viii annoque mcmlxxvii xii h xxxiv m lvi s 19 mcm 01 i  1 i Aug 213 2443357 08 viii  8 08/01/1977 die i mensis viii annoque mcmlxxvii 77 lxxvii 1977}
test clock-2.1144 {conversion of 1977-08-31} {
    clock format 241878896 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Aug August 08/31/1977 12:34:56 die xxxi mensis viii annoque mcmlxxvii xii h xxxiv m lvi s 19 mcm 31 xxxi 31 xxxi Aug 243 2443387 08 viii  8 08/31/1977 die xxxi mensis viii annoque mcmlxxvii 77 lxxvii 1977}
test clock-2.1145 {conversion of 1977-09-01} {
    clock format 241965296 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Sep September 09/01/1977 12:34:56 die i mensis ix annoque mcmlxxvii xii h xxxiv m lvi s 19 mcm 01 i  1 i Sep 244 2443388 09 ix  9 09/01/1977 die i mensis ix annoque mcmlxxvii 77 lxxvii 1977}
test clock-2.1146 {conversion of 1977-09-30} {
    clock format 244470896 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Sep September 09/30/1977 12:34:56 die xxx mensis ix annoque mcmlxxvii xii h xxxiv m lvi s 19 mcm 30 xxx 30 xxx Sep 273 2443417 09 ix  9 09/30/1977 die xxx mensis ix annoque mcmlxxvii 77 lxxvii 1977}
test clock-2.1147 {conversion of 1977-10-01} {
    clock format 244557296 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Oct October 10/01/1977 12:34:56 die i mensis x annoque mcmlxxvii xii h xxxiv m lvi s 19 mcm 01 i  1 i Oct 274 2443418 10 x 10 10/01/1977 die i mensis x annoque mcmlxxvii 77 lxxvii 1977}
test clock-2.1148 {conversion of 1977-10-31} {
    clock format 247149296 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Oct October 10/31/1977 12:34:56 die xxxi mensis x annoque mcmlxxvii xii h xxxiv m lvi s 19 mcm 31 xxxi 31 xxxi Oct 304 2443448 10 x 10 10/31/1977 die xxxi mensis x annoque mcmlxxvii 77 lxxvii 1977}
test clock-2.1149 {conversion of 1977-11-01} {
    clock format 247235696 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Nov November 11/01/1977 12:34:56 die i mensis xi annoque mcmlxxvii xii h xxxiv m lvi s 19 mcm 01 i  1 i Nov 305 2443449 11 xi 11 11/01/1977 die i mensis xi annoque mcmlxxvii 77 lxxvii 1977}
test clock-2.1150 {conversion of 1977-11-30} {
    clock format 249741296 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Nov November 11/30/1977 12:34:56 die xxx mensis xi annoque mcmlxxvii xii h xxxiv m lvi s 19 mcm 30 xxx 30 xxx Nov 334 2443478 11 xi 11 11/30/1977 die xxx mensis xi annoque mcmlxxvii 77 lxxvii 1977}
test clock-2.1151 {conversion of 1977-12-01} {
    clock format 249827696 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Dec December 12/01/1977 12:34:56 die i mensis xii annoque mcmlxxvii xii h xxxiv m lvi s 19 mcm 01 i  1 i Dec 335 2443479 12 xii 12 12/01/1977 die i mensis xii annoque mcmlxxvii 77 lxxvii 1977}
test clock-2.1152 {conversion of 1977-12-31} {
    clock format 252419696 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Dec December 12/31/1977 12:34:56 die xxxi mensis xii annoque mcmlxxvii xii h xxxiv m lvi s 19 mcm 31 xxxi 31 xxxi Dec 365 2443509 12 xii 12 12/31/1977 die xxxi mensis xii annoque mcmlxxvii 77 lxxvii 1977}
test clock-2.1153 {conversion of 1978-01-01} {
    clock format 252506096 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Jan January 01/01/1978 12:34:56 die i mensis i annoque mcmlxxviii xii h xxxiv m lvi s 19 mcm 01 i  1 i Jan 001 2443510 01 i  1 01/01/1978 die i mensis i annoque mcmlxxviii 78 lxxviii 1978}
test clock-2.1154 {conversion of 1978-01-31} {
    clock format 255098096 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Jan January 01/31/1978 12:34:56 die xxxi mensis i annoque mcmlxxviii xii h xxxiv m lvi s 19 mcm 31 xxxi 31 xxxi Jan 031 2443540 01 i  1 01/31/1978 die xxxi mensis i annoque mcmlxxviii 78 lxxviii 1978}
test clock-2.1155 {conversion of 1978-02-01} {
    clock format 255184496 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Feb February 02/01/1978 12:34:56 die i mensis ii annoque mcmlxxviii xii h xxxiv m lvi s 19 mcm 01 i  1 i Feb 032 2443541 02 ii  2 02/01/1978 die i mensis ii annoque mcmlxxviii 78 lxxviii 1978}
test clock-2.1156 {conversion of 1978-02-28} {
    clock format 257517296 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Feb February 02/28/1978 12:34:56 die xxviii mensis ii annoque mcmlxxviii xii h xxxiv m lvi s 19 mcm 28 xxviii 28 xxviii Feb 059 2443568 02 ii  2 02/28/1978 die xxviii mensis ii annoque mcmlxxviii 78 lxxviii 1978}
test clock-2.1157 {conversion of 1978-03-01} {
    clock format 257603696 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Mar March 03/01/1978 12:34:56 die i mensis iii annoque mcmlxxviii xii h xxxiv m lvi s 19 mcm 01 i  1 i Mar 060 2443569 03 iii  3 03/01/1978 die i mensis iii annoque mcmlxxviii 78 lxxviii 1978}
test clock-2.1158 {conversion of 1978-03-31} {
    clock format 260195696 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Mar March 03/31/1978 12:34:56 die xxxi mensis iii annoque mcmlxxviii xii h xxxiv m lvi s 19 mcm 31 xxxi 31 xxxi Mar 090 2443599 03 iii  3 03/31/1978 die xxxi mensis iii annoque mcmlxxviii 78 lxxviii 1978}
test clock-2.1159 {conversion of 1978-04-01} {
    clock format 260282096 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Apr April 04/01/1978 12:34:56 die i mensis iv annoque mcmlxxviii xii h xxxiv m lvi s 19 mcm 01 i  1 i Apr 091 2443600 04 iv  4 04/01/1978 die i mensis iv annoque mcmlxxviii 78 lxxviii 1978}
test clock-2.1160 {conversion of 1978-04-30} {
    clock format 262787696 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Apr April 04/30/1978 12:34:56 die xxx mensis iv annoque mcmlxxviii xii h xxxiv m lvi s 19 mcm 30 xxx 30 xxx Apr 120 2443629 04 iv  4 04/30/1978 die xxx mensis iv annoque mcmlxxviii 78 lxxviii 1978}
test clock-2.1161 {conversion of 1978-05-01} {
    clock format 262874096 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {May May 05/01/1978 12:34:56 die i mensis v annoque mcmlxxviii xii h xxxiv m lvi s 19 mcm 01 i  1 i May 121 2443630 05 v  5 05/01/1978 die i mensis v annoque mcmlxxviii 78 lxxviii 1978}
test clock-2.1162 {conversion of 1978-05-31} {
    clock format 265466096 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {May May 05/31/1978 12:34:56 die xxxi mensis v annoque mcmlxxviii xii h xxxiv m lvi s 19 mcm 31 xxxi 31 xxxi May 151 2443660 05 v  5 05/31/1978 die xxxi mensis v annoque mcmlxxviii 78 lxxviii 1978}
test clock-2.1163 {conversion of 1978-06-01} {
    clock format 265552496 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Jun June 06/01/1978 12:34:56 die i mensis vi annoque mcmlxxviii xii h xxxiv m lvi s 19 mcm 01 i  1 i Jun 152 2443661 06 vi  6 06/01/1978 die i mensis vi annoque mcmlxxviii 78 lxxviii 1978}
test clock-2.1164 {conversion of 1978-06-30} {
    clock format 268058096 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Jun June 06/30/1978 12:34:56 die xxx mensis vi annoque mcmlxxviii xii h xxxiv m lvi s 19 mcm 30 xxx 30 xxx Jun 181 2443690 06 vi  6 06/30/1978 die xxx mensis vi annoque mcmlxxviii 78 lxxviii 1978}
test clock-2.1165 {conversion of 1978-07-01} {
    clock format 268144496 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Jul July 07/01/1978 12:34:56 die i mensis vii annoque mcmlxxviii xii h xxxiv m lvi s 19 mcm 01 i  1 i Jul 182 2443691 07 vii  7 07/01/1978 die i mensis vii annoque mcmlxxviii 78 lxxviii 1978}
test clock-2.1166 {conversion of 1978-07-31} {
    clock format 270736496 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Jul July 07/31/1978 12:34:56 die xxxi mensis vii annoque mcmlxxviii xii h xxxiv m lvi s 19 mcm 31 xxxi 31 xxxi Jul 212 2443721 07 vii  7 07/31/1978 die xxxi mensis vii annoque mcmlxxviii 78 lxxviii 1978}
test clock-2.1167 {conversion of 1978-08-01} {
    clock format 270822896 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Aug August 08/01/1978 12:34:56 die i mensis viii annoque mcmlxxviii xii h xxxiv m lvi s 19 mcm 01 i  1 i Aug 213 2443722 08 viii  8 08/01/1978 die i mensis viii annoque mcmlxxviii 78 lxxviii 1978}
test clock-2.1168 {conversion of 1978-08-31} {
    clock format 273414896 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Aug August 08/31/1978 12:34:56 die xxxi mensis viii annoque mcmlxxviii xii h xxxiv m lvi s 19 mcm 31 xxxi 31 xxxi Aug 243 2443752 08 viii  8 08/31/1978 die xxxi mensis viii annoque mcmlxxviii 78 lxxviii 1978}
test clock-2.1169 {conversion of 1978-09-01} {
    clock format 273501296 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Sep September 09/01/1978 12:34:56 die i mensis ix annoque mcmlxxviii xii h xxxiv m lvi s 19 mcm 01 i  1 i Sep 244 2443753 09 ix  9 09/01/1978 die i mensis ix annoque mcmlxxviii 78 lxxviii 1978}
test clock-2.1170 {conversion of 1978-09-30} {
    clock format 276006896 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Sep September 09/30/1978 12:34:56 die xxx mensis ix annoque mcmlxxviii xii h xxxiv m lvi s 19 mcm 30 xxx 30 xxx Sep 273 2443782 09 ix  9 09/30/1978 die xxx mensis ix annoque mcmlxxviii 78 lxxviii 1978}
test clock-2.1171 {conversion of 1978-10-01} {
    clock format 276093296 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Oct October 10/01/1978 12:34:56 die i mensis x annoque mcmlxxviii xii h xxxiv m lvi s 19 mcm 01 i  1 i Oct 274 2443783 10 x 10 10/01/1978 die i mensis x annoque mcmlxxviii 78 lxxviii 1978}
test clock-2.1172 {conversion of 1978-10-31} {
    clock format 278685296 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Oct October 10/31/1978 12:34:56 die xxxi mensis x annoque mcmlxxviii xii h xxxiv m lvi s 19 mcm 31 xxxi 31 xxxi Oct 304 2443813 10 x 10 10/31/1978 die xxxi mensis x annoque mcmlxxviii 78 lxxviii 1978}
test clock-2.1173 {conversion of 1978-11-01} {
    clock format 278771696 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Nov November 11/01/1978 12:34:56 die i mensis xi annoque mcmlxxviii xii h xxxiv m lvi s 19 mcm 01 i  1 i Nov 305 2443814 11 xi 11 11/01/1978 die i mensis xi annoque mcmlxxviii 78 lxxviii 1978}
test clock-2.1174 {conversion of 1978-11-30} {
    clock format 281277296 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Nov November 11/30/1978 12:34:56 die xxx mensis xi annoque mcmlxxviii xii h xxxiv m lvi s 19 mcm 30 xxx 30 xxx Nov 334 2443843 11 xi 11 11/30/1978 die xxx mensis xi annoque mcmlxxviii 78 lxxviii 1978}
test clock-2.1175 {conversion of 1978-12-01} {
    clock format 281363696 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Dec December 12/01/1978 12:34:56 die i mensis xii annoque mcmlxxviii xii h xxxiv m lvi s 19 mcm 01 i  1 i Dec 335 2443844 12 xii 12 12/01/1978 die i mensis xii annoque mcmlxxviii 78 lxxviii 1978}
test clock-2.1176 {conversion of 1978-12-31} {
    clock format 283955696 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Dec December 12/31/1978 12:34:56 die xxxi mensis xii annoque mcmlxxviii xii h xxxiv m lvi s 19 mcm 31 xxxi 31 xxxi Dec 365 2443874 12 xii 12 12/31/1978 die xxxi mensis xii annoque mcmlxxviii 78 lxxviii 1978}
test clock-2.1177 {conversion of 1979-01-01} {
    clock format 284042096 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Jan January 01/01/1979 12:34:56 die i mensis i annoque mcmlxxix xii h xxxiv m lvi s 19 mcm 01 i  1 i Jan 001 2443875 01 i  1 01/01/1979 die i mensis i annoque mcmlxxix 79 lxxix 1979}
test clock-2.1178 {conversion of 1979-01-31} {
    clock format 286634096 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Jan January 01/31/1979 12:34:56 die xxxi mensis i annoque mcmlxxix xii h xxxiv m lvi s 19 mcm 31 xxxi 31 xxxi Jan 031 2443905 01 i  1 01/31/1979 die xxxi mensis i annoque mcmlxxix 79 lxxix 1979}
test clock-2.1179 {conversion of 1979-02-01} {
    clock format 286720496 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Feb February 02/01/1979 12:34:56 die i mensis ii annoque mcmlxxix xii h xxxiv m lvi s 19 mcm 01 i  1 i Feb 032 2443906 02 ii  2 02/01/1979 die i mensis ii annoque mcmlxxix 79 lxxix 1979}
test clock-2.1180 {conversion of 1979-02-28} {
    clock format 289053296 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Feb February 02/28/1979 12:34:56 die xxviii mensis ii annoque mcmlxxix xii h xxxiv m lvi s 19 mcm 28 xxviii 28 xxviii Feb 059 2443933 02 ii  2 02/28/1979 die xxviii mensis ii annoque mcmlxxix 79 lxxix 1979}
test clock-2.1181 {conversion of 1979-03-01} {
    clock format 289139696 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Mar March 03/01/1979 12:34:56 die i mensis iii annoque mcmlxxix xii h xxxiv m lvi s 19 mcm 01 i  1 i Mar 060 2443934 03 iii  3 03/01/1979 die i mensis iii annoque mcmlxxix 79 lxxix 1979}
test clock-2.1182 {conversion of 1979-03-31} {
    clock format 291731696 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Mar March 03/31/1979 12:34:56 die xxxi mensis iii annoque mcmlxxix xii h xxxiv m lvi s 19 mcm 31 xxxi 31 xxxi Mar 090 2443964 03 iii  3 03/31/1979 die xxxi mensis iii annoque mcmlxxix 79 lxxix 1979}
test clock-2.1183 {conversion of 1979-04-01} {
    clock format 291818096 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Apr April 04/01/1979 12:34:56 die i mensis iv annoque mcmlxxix xii h xxxiv m lvi s 19 mcm 01 i  1 i Apr 091 2443965 04 iv  4 04/01/1979 die i mensis iv annoque mcmlxxix 79 lxxix 1979}
test clock-2.1184 {conversion of 1979-04-30} {
    clock format 294323696 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Apr April 04/30/1979 12:34:56 die xxx mensis iv annoque mcmlxxix xii h xxxiv m lvi s 19 mcm 30 xxx 30 xxx Apr 120 2443994 04 iv  4 04/30/1979 die xxx mensis iv annoque mcmlxxix 79 lxxix 1979}
test clock-2.1185 {conversion of 1979-05-01} {
    clock format 294410096 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {May May 05/01/1979 12:34:56 die i mensis v annoque mcmlxxix xii h xxxiv m lvi s 19 mcm 01 i  1 i May 121 2443995 05 v  5 05/01/1979 die i mensis v annoque mcmlxxix 79 lxxix 1979}
test clock-2.1186 {conversion of 1979-05-31} {
    clock format 297002096 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {May May 05/31/1979 12:34:56 die xxxi mensis v annoque mcmlxxix xii h xxxiv m lvi s 19 mcm 31 xxxi 31 xxxi May 151 2444025 05 v  5 05/31/1979 die xxxi mensis v annoque mcmlxxix 79 lxxix 1979}
test clock-2.1187 {conversion of 1979-06-01} {
    clock format 297088496 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Jun June 06/01/1979 12:34:56 die i mensis vi annoque mcmlxxix xii h xxxiv m lvi s 19 mcm 01 i  1 i Jun 152 2444026 06 vi  6 06/01/1979 die i mensis vi annoque mcmlxxix 79 lxxix 1979}
test clock-2.1188 {conversion of 1979-06-30} {
    clock format 299594096 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Jun June 06/30/1979 12:34:56 die xxx mensis vi annoque mcmlxxix xii h xxxiv m lvi s 19 mcm 30 xxx 30 xxx Jun 181 2444055 06 vi  6 06/30/1979 die xxx mensis vi annoque mcmlxxix 79 lxxix 1979}
test clock-2.1189 {conversion of 1979-07-01} {
    clock format 299680496 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Jul July 07/01/1979 12:34:56 die i mensis vii annoque mcmlxxix xii h xxxiv m lvi s 19 mcm 01 i  1 i Jul 182 2444056 07 vii  7 07/01/1979 die i mensis vii annoque mcmlxxix 79 lxxix 1979}
test clock-2.1190 {conversion of 1979-07-31} {
    clock format 302272496 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Jul July 07/31/1979 12:34:56 die xxxi mensis vii annoque mcmlxxix xii h xxxiv m lvi s 19 mcm 31 xxxi 31 xxxi Jul 212 2444086 07 vii  7 07/31/1979 die xxxi mensis vii annoque mcmlxxix 79 lxxix 1979}
test clock-2.1191 {conversion of 1979-08-01} {
    clock format 302358896 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Aug August 08/01/1979 12:34:56 die i mensis viii annoque mcmlxxix xii h xxxiv m lvi s 19 mcm 01 i  1 i Aug 213 2444087 08 viii  8 08/01/1979 die i mensis viii annoque mcmlxxix 79 lxxix 1979}
test clock-2.1192 {conversion of 1979-08-31} {
    clock format 304950896 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Aug August 08/31/1979 12:34:56 die xxxi mensis viii annoque mcmlxxix xii h xxxiv m lvi s 19 mcm 31 xxxi 31 xxxi Aug 243 2444117 08 viii  8 08/31/1979 die xxxi mensis viii annoque mcmlxxix 79 lxxix 1979}
test clock-2.1193 {conversion of 1979-09-01} {
    clock format 305037296 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Sep September 09/01/1979 12:34:56 die i mensis ix annoque mcmlxxix xii h xxxiv m lvi s 19 mcm 01 i  1 i Sep 244 2444118 09 ix  9 09/01/1979 die i mensis ix annoque mcmlxxix 79 lxxix 1979}
test clock-2.1194 {conversion of 1979-09-30} {
    clock format 307542896 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Sep September 09/30/1979 12:34:56 die xxx mensis ix annoque mcmlxxix xii h xxxiv m lvi s 19 mcm 30 xxx 30 xxx Sep 273 2444147 09 ix  9 09/30/1979 die xxx mensis ix annoque mcmlxxix 79 lxxix 1979}
test clock-2.1195 {conversion of 1979-10-01} {
    clock format 307629296 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Oct October 10/01/1979 12:34:56 die i mensis x annoque mcmlxxix xii h xxxiv m lvi s 19 mcm 01 i  1 i Oct 274 2444148 10 x 10 10/01/1979 die i mensis x annoque mcmlxxix 79 lxxix 1979}
test clock-2.1196 {conversion of 1979-10-31} {
    clock format 310221296 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Oct October 10/31/1979 12:34:56 die xxxi mensis x annoque mcmlxxix xii h xxxiv m lvi s 19 mcm 31 xxxi 31 xxxi Oct 304 2444178 10 x 10 10/31/1979 die xxxi mensis x annoque mcmlxxix 79 lxxix 1979}
test clock-2.1197 {conversion of 1979-11-01} {
    clock format 310307696 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Nov November 11/01/1979 12:34:56 die i mensis xi annoque mcmlxxix xii h xxxiv m lvi s 19 mcm 01 i  1 i Nov 305 2444179 11 xi 11 11/01/1979 die i mensis xi annoque mcmlxxix 79 lxxix 1979}
test clock-2.1198 {conversion of 1979-11-30} {
    clock format 312813296 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Nov November 11/30/1979 12:34:56 die xxx mensis xi annoque mcmlxxix xii h xxxiv m lvi s 19 mcm 30 xxx 30 xxx Nov 334 2444208 11 xi 11 11/30/1979 die xxx mensis xi annoque mcmlxxix 79 lxxix 1979}
test clock-2.1199 {conversion of 1979-12-01} {
    clock format 312899696 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Dec December 12/01/1979 12:34:56 die i mensis xii annoque mcmlxxix xii h xxxiv m lvi s 19 mcm 01 i  1 i Dec 335 2444209 12 xii 12 12/01/1979 die i mensis xii annoque mcmlxxix 79 lxxix 1979}
test clock-2.1200 {conversion of 1979-12-31} {
    clock format 315491696 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Dec December 12/31/1979 12:34:56 die xxxi mensis xii annoque mcmlxxix xii h xxxiv m lvi s 19 mcm 31 xxxi 31 xxxi Dec 365 2444239 12 xii 12 12/31/1979 die xxxi mensis xii annoque mcmlxxix 79 lxxix 1979}
test clock-2.1201 {conversion of 1980-01-01} {
    clock format 315578096 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Jan January 01/01/1980 12:34:56 die i mensis i annoque mcmlxxx xii h xxxiv m lvi s 19 mcm 01 i  1 i Jan 001 2444240 01 i  1 01/01/1980 die i mensis i annoque mcmlxxx 80 lxxx 1980}
test clock-2.1202 {conversion of 1980-01-31} {
    clock format 318170096 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Jan January 01/31/1980 12:34:56 die xxxi mensis i annoque mcmlxxx xii h xxxiv m lvi s 19 mcm 31 xxxi 31 xxxi Jan 031 2444270 01 i  1 01/31/1980 die xxxi mensis i annoque mcmlxxx 80 lxxx 1980}
test clock-2.1203 {conversion of 1980-02-01} {
    clock format 318256496 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Feb February 02/01/1980 12:34:56 die i mensis ii annoque mcmlxxx xii h xxxiv m lvi s 19 mcm 01 i  1 i Feb 032 2444271 02 ii  2 02/01/1980 die i mensis ii annoque mcmlxxx 80 lxxx 1980}
test clock-2.1204 {conversion of 1980-02-29} {
    clock format 320675696 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Feb February 02/29/1980 12:34:56 die xxix mensis ii annoque mcmlxxx xii h xxxiv m lvi s 19 mcm 29 xxix 29 xxix Feb 060 2444299 02 ii  2 02/29/1980 die xxix mensis ii annoque mcmlxxx 80 lxxx 1980}
test clock-2.1205 {conversion of 1980-03-01} {
    clock format 320762096 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Mar March 03/01/1980 12:34:56 die i mensis iii annoque mcmlxxx xii h xxxiv m lvi s 19 mcm 01 i  1 i Mar 061 2444300 03 iii  3 03/01/1980 die i mensis iii annoque mcmlxxx 80 lxxx 1980}
test clock-2.1206 {conversion of 1980-03-31} {
    clock format 323354096 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Mar March 03/31/1980 12:34:56 die xxxi mensis iii annoque mcmlxxx xii h xxxiv m lvi s 19 mcm 31 xxxi 31 xxxi Mar 091 2444330 03 iii  3 03/31/1980 die xxxi mensis iii annoque mcmlxxx 80 lxxx 1980}
test clock-2.1207 {conversion of 1980-04-01} {
    clock format 323440496 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Apr April 04/01/1980 12:34:56 die i mensis iv annoque mcmlxxx xii h xxxiv m lvi s 19 mcm 01 i  1 i Apr 092 2444331 04 iv  4 04/01/1980 die i mensis iv annoque mcmlxxx 80 lxxx 1980}
test clock-2.1208 {conversion of 1980-04-30} {
    clock format 325946096 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Apr April 04/30/1980 12:34:56 die xxx mensis iv annoque mcmlxxx xii h xxxiv m lvi s 19 mcm 30 xxx 30 xxx Apr 121 2444360 04 iv  4 04/30/1980 die xxx mensis iv annoque mcmlxxx 80 lxxx 1980}
test clock-2.1209 {conversion of 1980-05-01} {
    clock format 326032496 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {May May 05/01/1980 12:34:56 die i mensis v annoque mcmlxxx xii h xxxiv m lvi s 19 mcm 01 i  1 i May 122 2444361 05 v  5 05/01/1980 die i mensis v annoque mcmlxxx 80 lxxx 1980}
test clock-2.1210 {conversion of 1980-05-31} {
    clock format 328624496 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {May May 05/31/1980 12:34:56 die xxxi mensis v annoque mcmlxxx xii h xxxiv m lvi s 19 mcm 31 xxxi 31 xxxi May 152 2444391 05 v  5 05/31/1980 die xxxi mensis v annoque mcmlxxx 80 lxxx 1980}
test clock-2.1211 {conversion of 1980-06-01} {
    clock format 328710896 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Jun June 06/01/1980 12:34:56 die i mensis vi annoque mcmlxxx xii h xxxiv m lvi s 19 mcm 01 i  1 i Jun 153 2444392 06 vi  6 06/01/1980 die i mensis vi annoque mcmlxxx 80 lxxx 1980}
test clock-2.1212 {conversion of 1980-06-30} {
    clock format 331216496 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Jun June 06/30/1980 12:34:56 die xxx mensis vi annoque mcmlxxx xii h xxxiv m lvi s 19 mcm 30 xxx 30 xxx Jun 182 2444421 06 vi  6 06/30/1980 die xxx mensis vi annoque mcmlxxx 80 lxxx 1980}
test clock-2.1213 {conversion of 1980-07-01} {
    clock format 331302896 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Jul July 07/01/1980 12:34:56 die i mensis vii annoque mcmlxxx xii h xxxiv m lvi s 19 mcm 01 i  1 i Jul 183 2444422 07 vii  7 07/01/1980 die i mensis vii annoque mcmlxxx 80 lxxx 1980}
test clock-2.1214 {conversion of 1980-07-31} {
    clock format 333894896 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Jul July 07/31/1980 12:34:56 die xxxi mensis vii annoque mcmlxxx xii h xxxiv m lvi s 19 mcm 31 xxxi 31 xxxi Jul 213 2444452 07 vii  7 07/31/1980 die xxxi mensis vii annoque mcmlxxx 80 lxxx 1980}
test clock-2.1215 {conversion of 1980-08-01} {
    clock format 333981296 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Aug August 08/01/1980 12:34:56 die i mensis viii annoque mcmlxxx xii h xxxiv m lvi s 19 mcm 01 i  1 i Aug 214 2444453 08 viii  8 08/01/1980 die i mensis viii annoque mcmlxxx 80 lxxx 1980}
test clock-2.1216 {conversion of 1980-08-31} {
    clock format 336573296 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Aug August 08/31/1980 12:34:56 die xxxi mensis viii annoque mcmlxxx xii h xxxiv m lvi s 19 mcm 31 xxxi 31 xxxi Aug 244 2444483 08 viii  8 08/31/1980 die xxxi mensis viii annoque mcmlxxx 80 lxxx 1980}
test clock-2.1217 {conversion of 1980-09-01} {
    clock format 336659696 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Sep September 09/01/1980 12:34:56 die i mensis ix annoque mcmlxxx xii h xxxiv m lvi s 19 mcm 01 i  1 i Sep 245 2444484 09 ix  9 09/01/1980 die i mensis ix annoque mcmlxxx 80 lxxx 1980}
test clock-2.1218 {conversion of 1980-09-30} {
    clock format 339165296 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Sep September 09/30/1980 12:34:56 die xxx mensis ix annoque mcmlxxx xii h xxxiv m lvi s 19 mcm 30 xxx 30 xxx Sep 274 2444513 09 ix  9 09/30/1980 die xxx mensis ix annoque mcmlxxx 80 lxxx 1980}
test clock-2.1219 {conversion of 1980-10-01} {
    clock format 339251696 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Oct October 10/01/1980 12:34:56 die i mensis x annoque mcmlxxx xii h xxxiv m lvi s 19 mcm 01 i  1 i Oct 275 2444514 10 x 10 10/01/1980 die i mensis x annoque mcmlxxx 80 lxxx 1980}
test clock-2.1220 {conversion of 1980-10-31} {
    clock format 341843696 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Oct October 10/31/1980 12:34:56 die xxxi mensis x annoque mcmlxxx xii h xxxiv m lvi s 19 mcm 31 xxxi 31 xxxi Oct 305 2444544 10 x 10 10/31/1980 die xxxi mensis x annoque mcmlxxx 80 lxxx 1980}
test clock-2.1221 {conversion of 1980-11-01} {
    clock format 341930096 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Nov November 11/01/1980 12:34:56 die i mensis xi annoque mcmlxxx xii h xxxiv m lvi s 19 mcm 01 i  1 i Nov 306 2444545 11 xi 11 11/01/1980 die i mensis xi annoque mcmlxxx 80 lxxx 1980}
test clock-2.1222 {conversion of 1980-11-30} {
    clock format 344435696 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Nov November 11/30/1980 12:34:56 die xxx mensis xi annoque mcmlxxx xii h xxxiv m lvi s 19 mcm 30 xxx 30 xxx Nov 335 2444574 11 xi 11 11/30/1980 die xxx mensis xi annoque mcmlxxx 80 lxxx 1980}
test clock-2.1223 {conversion of 1980-12-01} {
    clock format 344522096 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Dec December 12/01/1980 12:34:56 die i mensis xii annoque mcmlxxx xii h xxxiv m lvi s 19 mcm 01 i  1 i Dec 336 2444575 12 xii 12 12/01/1980 die i mensis xii annoque mcmlxxx 80 lxxx 1980}
test clock-2.1224 {conversion of 1980-12-31} {
    clock format 347114096 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Dec December 12/31/1980 12:34:56 die xxxi mensis xii annoque mcmlxxx xii h xxxiv m lvi s 19 mcm 31 xxxi 31 xxxi Dec 366 2444605 12 xii 12 12/31/1980 die xxxi mensis xii annoque mcmlxxx 80 lxxx 1980}
test clock-2.1225 {conversion of 1981-01-01} {
    clock format 347200496 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Jan January 01/01/1981 12:34:56 die i mensis i annoque mcmlxxxi xii h xxxiv m lvi s 19 mcm 01 i  1 i Jan 001 2444606 01 i  1 01/01/1981 die i mensis i annoque mcmlxxxi 81 lxxxi 1981}
test clock-2.1226 {conversion of 1981-01-31} {
    clock format 349792496 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Jan January 01/31/1981 12:34:56 die xxxi mensis i annoque mcmlxxxi xii h xxxiv m lvi s 19 mcm 31 xxxi 31 xxxi Jan 031 2444636 01 i  1 01/31/1981 die xxxi mensis i annoque mcmlxxxi 81 lxxxi 1981}
test clock-2.1227 {conversion of 1981-02-01} {
    clock format 349878896 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Feb February 02/01/1981 12:34:56 die i mensis ii annoque mcmlxxxi xii h xxxiv m lvi s 19 mcm 01 i  1 i Feb 032 2444637 02 ii  2 02/01/1981 die i mensis ii annoque mcmlxxxi 81 lxxxi 1981}
test clock-2.1228 {conversion of 1981-02-28} {
    clock format 352211696 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Feb February 02/28/1981 12:34:56 die xxviii mensis ii annoque mcmlxxxi xii h xxxiv m lvi s 19 mcm 28 xxviii 28 xxviii Feb 059 2444664 02 ii  2 02/28/1981 die xxviii mensis ii annoque mcmlxxxi 81 lxxxi 1981}
test clock-2.1229 {conversion of 1981-03-01} {
    clock format 352298096 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Mar March 03/01/1981 12:34:56 die i mensis iii annoque mcmlxxxi xii h xxxiv m lvi s 19 mcm 01 i  1 i Mar 060 2444665 03 iii  3 03/01/1981 die i mensis iii annoque mcmlxxxi 81 lxxxi 1981}
test clock-2.1230 {conversion of 1981-03-31} {
    clock format 354890096 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Mar March 03/31/1981 12:34:56 die xxxi mensis iii annoque mcmlxxxi xii h xxxiv m lvi s 19 mcm 31 xxxi 31 xxxi Mar 090 2444695 03 iii  3 03/31/1981 die xxxi mensis iii annoque mcmlxxxi 81 lxxxi 1981}
test clock-2.1231 {conversion of 1981-04-01} {
    clock format 354976496 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Apr April 04/01/1981 12:34:56 die i mensis iv annoque mcmlxxxi xii h xxxiv m lvi s 19 mcm 01 i  1 i Apr 091 2444696 04 iv  4 04/01/1981 die i mensis iv annoque mcmlxxxi 81 lxxxi 1981}
test clock-2.1232 {conversion of 1981-04-30} {
    clock format 357482096 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Apr April 04/30/1981 12:34:56 die xxx mensis iv annoque mcmlxxxi xii h xxxiv m lvi s 19 mcm 30 xxx 30 xxx Apr 120 2444725 04 iv  4 04/30/1981 die xxx mensis iv annoque mcmlxxxi 81 lxxxi 1981}
test clock-2.1233 {conversion of 1981-05-01} {
    clock format 357568496 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {May May 05/01/1981 12:34:56 die i mensis v annoque mcmlxxxi xii h xxxiv m lvi s 19 mcm 01 i  1 i May 121 2444726 05 v  5 05/01/1981 die i mensis v annoque mcmlxxxi 81 lxxxi 1981}
test clock-2.1234 {conversion of 1981-05-31} {
    clock format 360160496 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {May May 05/31/1981 12:34:56 die xxxi mensis v annoque mcmlxxxi xii h xxxiv m lvi s 19 mcm 31 xxxi 31 xxxi May 151 2444756 05 v  5 05/31/1981 die xxxi mensis v annoque mcmlxxxi 81 lxxxi 1981}
test clock-2.1235 {conversion of 1981-06-01} {
    clock format 360246896 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Jun June 06/01/1981 12:34:56 die i mensis vi annoque mcmlxxxi xii h xxxiv m lvi s 19 mcm 01 i  1 i Jun 152 2444757 06 vi  6 06/01/1981 die i mensis vi annoque mcmlxxxi 81 lxxxi 1981}
test clock-2.1236 {conversion of 1981-06-30} {
    clock format 362752496 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Jun June 06/30/1981 12:34:56 die xxx mensis vi annoque mcmlxxxi xii h xxxiv m lvi s 19 mcm 30 xxx 30 xxx Jun 181 2444786 06 vi  6 06/30/1981 die xxx mensis vi annoque mcmlxxxi 81 lxxxi 1981}
test clock-2.1237 {conversion of 1981-07-01} {
    clock format 362838896 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Jul July 07/01/1981 12:34:56 die i mensis vii annoque mcmlxxxi xii h xxxiv m lvi s 19 mcm 01 i  1 i Jul 182 2444787 07 vii  7 07/01/1981 die i mensis vii annoque mcmlxxxi 81 lxxxi 1981}
test clock-2.1238 {conversion of 1981-07-31} {
    clock format 365430896 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Jul July 07/31/1981 12:34:56 die xxxi mensis vii annoque mcmlxxxi xii h xxxiv m lvi s 19 mcm 31 xxxi 31 xxxi Jul 212 2444817 07 vii  7 07/31/1981 die xxxi mensis vii annoque mcmlxxxi 81 lxxxi 1981}
test clock-2.1239 {conversion of 1981-08-01} {
    clock format 365517296 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Aug August 08/01/1981 12:34:56 die i mensis viii annoque mcmlxxxi xii h xxxiv m lvi s 19 mcm 01 i  1 i Aug 213 2444818 08 viii  8 08/01/1981 die i mensis viii annoque mcmlxxxi 81 lxxxi 1981}
test clock-2.1240 {conversion of 1981-08-31} {
    clock format 368109296 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Aug August 08/31/1981 12:34:56 die xxxi mensis viii annoque mcmlxxxi xii h xxxiv m lvi s 19 mcm 31 xxxi 31 xxxi Aug 243 2444848 08 viii  8 08/31/1981 die xxxi mensis viii annoque mcmlxxxi 81 lxxxi 1981}
test clock-2.1241 {conversion of 1981-09-01} {
    clock format 368195696 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Sep September 09/01/1981 12:34:56 die i mensis ix annoque mcmlxxxi xii h xxxiv m lvi s 19 mcm 01 i  1 i Sep 244 2444849 09 ix  9 09/01/1981 die i mensis ix annoque mcmlxxxi 81 lxxxi 1981}
test clock-2.1242 {conversion of 1981-09-30} {
    clock format 370701296 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Sep September 09/30/1981 12:34:56 die xxx mensis ix annoque mcmlxxxi xii h xxxiv m lvi s 19 mcm 30 xxx 30 xxx Sep 273 2444878 09 ix  9 09/30/1981 die xxx mensis ix annoque mcmlxxxi 81 lxxxi 1981}
test clock-2.1243 {conversion of 1981-10-01} {
    clock format 370787696 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Oct October 10/01/1981 12:34:56 die i mensis x annoque mcmlxxxi xii h xxxiv m lvi s 19 mcm 01 i  1 i Oct 274 2444879 10 x 10 10/01/1981 die i mensis x annoque mcmlxxxi 81 lxxxi 1981}
test clock-2.1244 {conversion of 1981-10-31} {
    clock format 373379696 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Oct October 10/31/1981 12:34:56 die xxxi mensis x annoque mcmlxxxi xii h xxxiv m lvi s 19 mcm 31 xxxi 31 xxxi Oct 304 2444909 10 x 10 10/31/1981 die xxxi mensis x annoque mcmlxxxi 81 lxxxi 1981}
test clock-2.1245 {conversion of 1981-11-01} {
    clock format 373466096 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Nov November 11/01/1981 12:34:56 die i mensis xi annoque mcmlxxxi xii h xxxiv m lvi s 19 mcm 01 i  1 i Nov 305 2444910 11 xi 11 11/01/1981 die i mensis xi annoque mcmlxxxi 81 lxxxi 1981}
test clock-2.1246 {conversion of 1981-11-30} {
    clock format 375971696 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Nov November 11/30/1981 12:34:56 die xxx mensis xi annoque mcmlxxxi xii h xxxiv m lvi s 19 mcm 30 xxx 30 xxx Nov 334 2444939 11 xi 11 11/30/1981 die xxx mensis xi annoque mcmlxxxi 81 lxxxi 1981}
test clock-2.1247 {conversion of 1981-12-01} {
    clock format 376058096 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Dec December 12/01/1981 12:34:56 die i mensis xii annoque mcmlxxxi xii h xxxiv m lvi s 19 mcm 01 i  1 i Dec 335 2444940 12 xii 12 12/01/1981 die i mensis xii annoque mcmlxxxi 81 lxxxi 1981}
test clock-2.1248 {conversion of 1981-12-31} {
    clock format 378650096 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Dec December 12/31/1981 12:34:56 die xxxi mensis xii annoque mcmlxxxi xii h xxxiv m lvi s 19 mcm 31 xxxi 31 xxxi Dec 365 2444970 12 xii 12 12/31/1981 die xxxi mensis xii annoque mcmlxxxi 81 lxxxi 1981}
test clock-2.1249 {conversion of 1984-01-01} {
    clock format 441808496 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Jan January 01/01/1984 12:34:56 die i mensis i annoque mcmlxxxiv xii h xxxiv m lvi s 19 mcm 01 i  1 i Jan 001 2445701 01 i  1 01/01/1984 die i mensis i annoque mcmlxxxiv 84 lxxxiv 1984}
test clock-2.1250 {conversion of 1984-01-31} {
    clock format 444400496 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Jan January 01/31/1984 12:34:56 die xxxi mensis i annoque mcmlxxxiv xii h xxxiv m lvi s 19 mcm 31 xxxi 31 xxxi Jan 031 2445731 01 i  1 01/31/1984 die xxxi mensis i annoque mcmlxxxiv 84 lxxxiv 1984}
test clock-2.1251 {conversion of 1984-02-01} {
    clock format 444486896 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Feb February 02/01/1984 12:34:56 die i mensis ii annoque mcmlxxxiv xii h xxxiv m lvi s 19 mcm 01 i  1 i Feb 032 2445732 02 ii  2 02/01/1984 die i mensis ii annoque mcmlxxxiv 84 lxxxiv 1984}
test clock-2.1252 {conversion of 1984-02-29} {
    clock format 446906096 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Feb February 02/29/1984 12:34:56 die xxix mensis ii annoque mcmlxxxiv xii h xxxiv m lvi s 19 mcm 29 xxix 29 xxix Feb 060 2445760 02 ii  2 02/29/1984 die xxix mensis ii annoque mcmlxxxiv 84 lxxxiv 1984}
test clock-2.1253 {conversion of 1984-03-01} {
    clock format 446992496 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Mar March 03/01/1984 12:34:56 die i mensis iii annoque mcmlxxxiv xii h xxxiv m lvi s 19 mcm 01 i  1 i Mar 061 2445761 03 iii  3 03/01/1984 die i mensis iii annoque mcmlxxxiv 84 lxxxiv 1984}
test clock-2.1254 {conversion of 1984-03-31} {
    clock format 449584496 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Mar March 03/31/1984 12:34:56 die xxxi mensis iii annoque mcmlxxxiv xii h xxxiv m lvi s 19 mcm 31 xxxi 31 xxxi Mar 091 2445791 03 iii  3 03/31/1984 die xxxi mensis iii annoque mcmlxxxiv 84 lxxxiv 1984}
test clock-2.1255 {conversion of 1984-04-01} {
    clock format 449670896 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Apr April 04/01/1984 12:34:56 die i mensis iv annoque mcmlxxxiv xii h xxxiv m lvi s 19 mcm 01 i  1 i Apr 092 2445792 04 iv  4 04/01/1984 die i mensis iv annoque mcmlxxxiv 84 lxxxiv 1984}
test clock-2.1256 {conversion of 1984-04-30} {
    clock format 452176496 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Apr April 04/30/1984 12:34:56 die xxx mensis iv annoque mcmlxxxiv xii h xxxiv m lvi s 19 mcm 30 xxx 30 xxx Apr 121 2445821 04 iv  4 04/30/1984 die xxx mensis iv annoque mcmlxxxiv 84 lxxxiv 1984}
test clock-2.1257 {conversion of 1984-05-01} {
    clock format 452262896 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {May May 05/01/1984 12:34:56 die i mensis v annoque mcmlxxxiv xii h xxxiv m lvi s 19 mcm 01 i  1 i May 122 2445822 05 v  5 05/01/1984 die i mensis v annoque mcmlxxxiv 84 lxxxiv 1984}
test clock-2.1258 {conversion of 1984-05-31} {
    clock format 454854896 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {May May 05/31/1984 12:34:56 die xxxi mensis v annoque mcmlxxxiv xii h xxxiv m lvi s 19 mcm 31 xxxi 31 xxxi May 152 2445852 05 v  5 05/31/1984 die xxxi mensis v annoque mcmlxxxiv 84 lxxxiv 1984}
test clock-2.1259 {conversion of 1984-06-01} {
    clock format 454941296 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Jun June 06/01/1984 12:34:56 die i mensis vi annoque mcmlxxxiv xii h xxxiv m lvi s 19 mcm 01 i  1 i Jun 153 2445853 06 vi  6 06/01/1984 die i mensis vi annoque mcmlxxxiv 84 lxxxiv 1984}
test clock-2.1260 {conversion of 1984-06-30} {
    clock format 457446896 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Jun June 06/30/1984 12:34:56 die xxx mensis vi annoque mcmlxxxiv xii h xxxiv m lvi s 19 mcm 30 xxx 30 xxx Jun 182 2445882 06 vi  6 06/30/1984 die xxx mensis vi annoque mcmlxxxiv 84 lxxxiv 1984}
test clock-2.1261 {conversion of 1984-07-01} {
    clock format 457533296 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Jul July 07/01/1984 12:34:56 die i mensis vii annoque mcmlxxxiv xii h xxxiv m lvi s 19 mcm 01 i  1 i Jul 183 2445883 07 vii  7 07/01/1984 die i mensis vii annoque mcmlxxxiv 84 lxxxiv 1984}
test clock-2.1262 {conversion of 1984-07-31} {
    clock format 460125296 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Jul July 07/31/1984 12:34:56 die xxxi mensis vii annoque mcmlxxxiv xii h xxxiv m lvi s 19 mcm 31 xxxi 31 xxxi Jul 213 2445913 07 vii  7 07/31/1984 die xxxi mensis vii annoque mcmlxxxiv 84 lxxxiv 1984}
test clock-2.1263 {conversion of 1984-08-01} {
    clock format 460211696 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Aug August 08/01/1984 12:34:56 die i mensis viii annoque mcmlxxxiv xii h xxxiv m lvi s 19 mcm 01 i  1 i Aug 214 2445914 08 viii  8 08/01/1984 die i mensis viii annoque mcmlxxxiv 84 lxxxiv 1984}
test clock-2.1264 {conversion of 1984-08-31} {
    clock format 462803696 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Aug August 08/31/1984 12:34:56 die xxxi mensis viii annoque mcmlxxxiv xii h xxxiv m lvi s 19 mcm 31 xxxi 31 xxxi Aug 244 2445944 08 viii  8 08/31/1984 die xxxi mensis viii annoque mcmlxxxiv 84 lxxxiv 1984}
test clock-2.1265 {conversion of 1984-09-01} {
    clock format 462890096 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Sep September 09/01/1984 12:34:56 die i mensis ix annoque mcmlxxxiv xii h xxxiv m lvi s 19 mcm 01 i  1 i Sep 245 2445945 09 ix  9 09/01/1984 die i mensis ix annoque mcmlxxxiv 84 lxxxiv 1984}
test clock-2.1266 {conversion of 1984-09-30} {
    clock format 465395696 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Sep September 09/30/1984 12:34:56 die xxx mensis ix annoque mcmlxxxiv xii h xxxiv m lvi s 19 mcm 30 xxx 30 xxx Sep 274 2445974 09 ix  9 09/30/1984 die xxx mensis ix annoque mcmlxxxiv 84 lxxxiv 1984}
test clock-2.1267 {conversion of 1984-10-01} {
    clock format 465482096 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Oct October 10/01/1984 12:34:56 die i mensis x annoque mcmlxxxiv xii h xxxiv m lvi s 19 mcm 01 i  1 i Oct 275 2445975 10 x 10 10/01/1984 die i mensis x annoque mcmlxxxiv 84 lxxxiv 1984}
test clock-2.1268 {conversion of 1984-10-31} {
    clock format 468074096 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Oct October 10/31/1984 12:34:56 die xxxi mensis x annoque mcmlxxxiv xii h xxxiv m lvi s 19 mcm 31 xxxi 31 xxxi Oct 305 2446005 10 x 10 10/31/1984 die xxxi mensis x annoque mcmlxxxiv 84 lxxxiv 1984}
test clock-2.1269 {conversion of 1984-11-01} {
    clock format 468160496 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Nov November 11/01/1984 12:34:56 die i mensis xi annoque mcmlxxxiv xii h xxxiv m lvi s 19 mcm 01 i  1 i Nov 306 2446006 11 xi 11 11/01/1984 die i mensis xi annoque mcmlxxxiv 84 lxxxiv 1984}
test clock-2.1270 {conversion of 1984-11-30} {
    clock format 470666096 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Nov November 11/30/1984 12:34:56 die xxx mensis xi annoque mcmlxxxiv xii h xxxiv m lvi s 19 mcm 30 xxx 30 xxx Nov 335 2446035 11 xi 11 11/30/1984 die xxx mensis xi annoque mcmlxxxiv 84 lxxxiv 1984}
test clock-2.1271 {conversion of 1984-12-01} {
    clock format 470752496 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Dec December 12/01/1984 12:34:56 die i mensis xii annoque mcmlxxxiv xii h xxxiv m lvi s 19 mcm 01 i  1 i Dec 336 2446036 12 xii 12 12/01/1984 die i mensis xii annoque mcmlxxxiv 84 lxxxiv 1984}
test clock-2.1272 {conversion of 1984-12-31} {
    clock format 473344496 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Dec December 12/31/1984 12:34:56 die xxxi mensis xii annoque mcmlxxxiv xii h xxxiv m lvi s 19 mcm 31 xxxi 31 xxxi Dec 366 2446066 12 xii 12 12/31/1984 die xxxi mensis xii annoque mcmlxxxiv 84 lxxxiv 1984}
test clock-2.1273 {conversion of 1985-01-01} {
    clock format 473430896 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Jan January 01/01/1985 12:34:56 die i mensis i annoque mcmlxxxv xii h xxxiv m lvi s 19 mcm 01 i  1 i Jan 001 2446067 01 i  1 01/01/1985 die i mensis i annoque mcmlxxxv 85 lxxxv 1985}
test clock-2.1274 {conversion of 1985-01-31} {
    clock format 476022896 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Jan January 01/31/1985 12:34:56 die xxxi mensis i annoque mcmlxxxv xii h xxxiv m lvi s 19 mcm 31 xxxi 31 xxxi Jan 031 2446097 01 i  1 01/31/1985 die xxxi mensis i annoque mcmlxxxv 85 lxxxv 1985}
test clock-2.1275 {conversion of 1985-02-01} {
    clock format 476109296 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Feb February 02/01/1985 12:34:56 die i mensis ii annoque mcmlxxxv xii h xxxiv m lvi s 19 mcm 01 i  1 i Feb 032 2446098 02 ii  2 02/01/1985 die i mensis ii annoque mcmlxxxv 85 lxxxv 1985}
test clock-2.1276 {conversion of 1985-02-28} {
    clock format 478442096 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Feb February 02/28/1985 12:34:56 die xxviii mensis ii annoque mcmlxxxv xii h xxxiv m lvi s 19 mcm 28 xxviii 28 xxviii Feb 059 2446125 02 ii  2 02/28/1985 die xxviii mensis ii annoque mcmlxxxv 85 lxxxv 1985}
test clock-2.1277 {conversion of 1985-03-01} {
    clock format 478528496 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Mar March 03/01/1985 12:34:56 die i mensis iii annoque mcmlxxxv xii h xxxiv m lvi s 19 mcm 01 i  1 i Mar 060 2446126 03 iii  3 03/01/1985 die i mensis iii annoque mcmlxxxv 85 lxxxv 1985}
test clock-2.1278 {conversion of 1985-03-31} {
    clock format 481120496 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Mar March 03/31/1985 12:34:56 die xxxi mensis iii annoque mcmlxxxv xii h xxxiv m lvi s 19 mcm 31 xxxi 31 xxxi Mar 090 2446156 03 iii  3 03/31/1985 die xxxi mensis iii annoque mcmlxxxv 85 lxxxv 1985}
test clock-2.1279 {conversion of 1985-04-01} {
    clock format 481206896 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Apr April 04/01/1985 12:34:56 die i mensis iv annoque mcmlxxxv xii h xxxiv m lvi s 19 mcm 01 i  1 i Apr 091 2446157 04 iv  4 04/01/1985 die i mensis iv annoque mcmlxxxv 85 lxxxv 1985}
test clock-2.1280 {conversion of 1985-04-30} {
    clock format 483712496 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Apr April 04/30/1985 12:34:56 die xxx mensis iv annoque mcmlxxxv xii h xxxiv m lvi s 19 mcm 30 xxx 30 xxx Apr 120 2446186 04 iv  4 04/30/1985 die xxx mensis iv annoque mcmlxxxv 85 lxxxv 1985}
test clock-2.1281 {conversion of 1985-05-01} {
    clock format 483798896 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {May May 05/01/1985 12:34:56 die i mensis v annoque mcmlxxxv xii h xxxiv m lvi s 19 mcm 01 i  1 i May 121 2446187 05 v  5 05/01/1985 die i mensis v annoque mcmlxxxv 85 lxxxv 1985}
test clock-2.1282 {conversion of 1985-05-31} {
    clock format 486390896 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {May May 05/31/1985 12:34:56 die xxxi mensis v annoque mcmlxxxv xii h xxxiv m lvi s 19 mcm 31 xxxi 31 xxxi May 151 2446217 05 v  5 05/31/1985 die xxxi mensis v annoque mcmlxxxv 85 lxxxv 1985}
test clock-2.1283 {conversion of 1985-06-01} {
    clock format 486477296 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Jun June 06/01/1985 12:34:56 die i mensis vi annoque mcmlxxxv xii h xxxiv m lvi s 19 mcm 01 i  1 i Jun 152 2446218 06 vi  6 06/01/1985 die i mensis vi annoque mcmlxxxv 85 lxxxv 1985}
test clock-2.1284 {conversion of 1985-06-30} {
    clock format 488982896 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Jun June 06/30/1985 12:34:56 die xxx mensis vi annoque mcmlxxxv xii h xxxiv m lvi s 19 mcm 30 xxx 30 xxx Jun 181 2446247 06 vi  6 06/30/1985 die xxx mensis vi annoque mcmlxxxv 85 lxxxv 1985}
test clock-2.1285 {conversion of 1985-07-01} {
    clock format 489069296 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Jul July 07/01/1985 12:34:56 die i mensis vii annoque mcmlxxxv xii h xxxiv m lvi s 19 mcm 01 i  1 i Jul 182 2446248 07 vii  7 07/01/1985 die i mensis vii annoque mcmlxxxv 85 lxxxv 1985}
test clock-2.1286 {conversion of 1985-07-31} {
    clock format 491661296 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Jul July 07/31/1985 12:34:56 die xxxi mensis vii annoque mcmlxxxv xii h xxxiv m lvi s 19 mcm 31 xxxi 31 xxxi Jul 212 2446278 07 vii  7 07/31/1985 die xxxi mensis vii annoque mcmlxxxv 85 lxxxv 1985}
test clock-2.1287 {conversion of 1985-08-01} {
    clock format 491747696 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Aug August 08/01/1985 12:34:56 die i mensis viii annoque mcmlxxxv xii h xxxiv m lvi s 19 mcm 01 i  1 i Aug 213 2446279 08 viii  8 08/01/1985 die i mensis viii annoque mcmlxxxv 85 lxxxv 1985}
test clock-2.1288 {conversion of 1985-08-31} {
    clock format 494339696 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Aug August 08/31/1985 12:34:56 die xxxi mensis viii annoque mcmlxxxv xii h xxxiv m lvi s 19 mcm 31 xxxi 31 xxxi Aug 243 2446309 08 viii  8 08/31/1985 die xxxi mensis viii annoque mcmlxxxv 85 lxxxv 1985}
test clock-2.1289 {conversion of 1985-09-01} {
    clock format 494426096 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Sep September 09/01/1985 12:34:56 die i mensis ix annoque mcmlxxxv xii h xxxiv m lvi s 19 mcm 01 i  1 i Sep 244 2446310 09 ix  9 09/01/1985 die i mensis ix annoque mcmlxxxv 85 lxxxv 1985}
test clock-2.1290 {conversion of 1985-09-30} {
    clock format 496931696 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Sep September 09/30/1985 12:34:56 die xxx mensis ix annoque mcmlxxxv xii h xxxiv m lvi s 19 mcm 30 xxx 30 xxx Sep 273 2446339 09 ix  9 09/30/1985 die xxx mensis ix annoque mcmlxxxv 85 lxxxv 1985}
test clock-2.1291 {conversion of 1985-10-01} {
    clock format 497018096 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Oct October 10/01/1985 12:34:56 die i mensis x annoque mcmlxxxv xii h xxxiv m lvi s 19 mcm 01 i  1 i Oct 274 2446340 10 x 10 10/01/1985 die i mensis x annoque mcmlxxxv 85 lxxxv 1985}
test clock-2.1292 {conversion of 1985-10-31} {
    clock format 499610096 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Oct October 10/31/1985 12:34:56 die xxxi mensis x annoque mcmlxxxv xii h xxxiv m lvi s 19 mcm 31 xxxi 31 xxxi Oct 304 2446370 10 x 10 10/31/1985 die xxxi mensis x annoque mcmlxxxv 85 lxxxv 1985}
test clock-2.1293 {conversion of 1985-11-01} {
    clock format 499696496 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Nov November 11/01/1985 12:34:56 die i mensis xi annoque mcmlxxxv xii h xxxiv m lvi s 19 mcm 01 i  1 i Nov 305 2446371 11 xi 11 11/01/1985 die i mensis xi annoque mcmlxxxv 85 lxxxv 1985}
test clock-2.1294 {conversion of 1985-11-30} {
    clock format 502202096 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Nov November 11/30/1985 12:34:56 die xxx mensis xi annoque mcmlxxxv xii h xxxiv m lvi s 19 mcm 30 xxx 30 xxx Nov 334 2446400 11 xi 11 11/30/1985 die xxx mensis xi annoque mcmlxxxv 85 lxxxv 1985}
test clock-2.1295 {conversion of 1985-12-01} {
    clock format 502288496 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Dec December 12/01/1985 12:34:56 die i mensis xii annoque mcmlxxxv xii h xxxiv m lvi s 19 mcm 01 i  1 i Dec 335 2446401 12 xii 12 12/01/1985 die i mensis xii annoque mcmlxxxv 85 lxxxv 1985}
test clock-2.1296 {conversion of 1985-12-31} {
    clock format 504880496 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Dec December 12/31/1985 12:34:56 die xxxi mensis xii annoque mcmlxxxv xii h xxxiv m lvi s 19 mcm 31 xxxi 31 xxxi Dec 365 2446431 12 xii 12 12/31/1985 die xxxi mensis xii annoque mcmlxxxv 85 lxxxv 1985}
test clock-2.1297 {conversion of 1988-01-01} {
    clock format 568038896 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Jan January 01/01/1988 12:34:56 die i mensis i annoque mcmlxxxviii xii h xxxiv m lvi s 19 mcm 01 i  1 i Jan 001 2447162 01 i  1 01/01/1988 die i mensis i annoque mcmlxxxviii 88 lxxxviii 1988}
test clock-2.1298 {conversion of 1988-01-31} {
    clock format 570630896 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Jan January 01/31/1988 12:34:56 die xxxi mensis i annoque mcmlxxxviii xii h xxxiv m lvi s 19 mcm 31 xxxi 31 xxxi Jan 031 2447192 01 i  1 01/31/1988 die xxxi mensis i annoque mcmlxxxviii 88 lxxxviii 1988}
test clock-2.1299 {conversion of 1988-02-01} {
    clock format 570717296 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Feb February 02/01/1988 12:34:56 die i mensis ii annoque mcmlxxxviii xii h xxxiv m lvi s 19 mcm 01 i  1 i Feb 032 2447193 02 ii  2 02/01/1988 die i mensis ii annoque mcmlxxxviii 88 lxxxviii 1988}
test clock-2.1300 {conversion of 1988-02-29} {
    clock format 573136496 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Feb February 02/29/1988 12:34:56 die xxix mensis ii annoque mcmlxxxviii xii h xxxiv m lvi s 19 mcm 29 xxix 29 xxix Feb 060 2447221 02 ii  2 02/29/1988 die xxix mensis ii annoque mcmlxxxviii 88 lxxxviii 1988}
test clock-2.1301 {conversion of 1988-03-01} {
    clock format 573222896 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Mar March 03/01/1988 12:34:56 die i mensis iii annoque mcmlxxxviii xii h xxxiv m lvi s 19 mcm 01 i  1 i Mar 061 2447222 03 iii  3 03/01/1988 die i mensis iii annoque mcmlxxxviii 88 lxxxviii 1988}
test clock-2.1302 {conversion of 1988-03-31} {
    clock format 575814896 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Mar March 03/31/1988 12:34:56 die xxxi mensis iii annoque mcmlxxxviii xii h xxxiv m lvi s 19 mcm 31 xxxi 31 xxxi Mar 091 2447252 03 iii  3 03/31/1988 die xxxi mensis iii annoque mcmlxxxviii 88 lxxxviii 1988}
test clock-2.1303 {conversion of 1988-04-01} {
    clock format 575901296 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Apr April 04/01/1988 12:34:56 die i mensis iv annoque mcmlxxxviii xii h xxxiv m lvi s 19 mcm 01 i  1 i Apr 092 2447253 04 iv  4 04/01/1988 die i mensis iv annoque mcmlxxxviii 88 lxxxviii 1988}
test clock-2.1304 {conversion of 1988-04-30} {
    clock format 578406896 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Apr April 04/30/1988 12:34:56 die xxx mensis iv annoque mcmlxxxviii xii h xxxiv m lvi s 19 mcm 30 xxx 30 xxx Apr 121 2447282 04 iv  4 04/30/1988 die xxx mensis iv annoque mcmlxxxviii 88 lxxxviii 1988}
test clock-2.1305 {conversion of 1988-05-01} {
    clock format 578493296 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {May May 05/01/1988 12:34:56 die i mensis v annoque mcmlxxxviii xii h xxxiv m lvi s 19 mcm 01 i  1 i May 122 2447283 05 v  5 05/01/1988 die i mensis v annoque mcmlxxxviii 88 lxxxviii 1988}
test clock-2.1306 {conversion of 1988-05-31} {
    clock format 581085296 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {May May 05/31/1988 12:34:56 die xxxi mensis v annoque mcmlxxxviii xii h xxxiv m lvi s 19 mcm 31 xxxi 31 xxxi May 152 2447313 05 v  5 05/31/1988 die xxxi mensis v annoque mcmlxxxviii 88 lxxxviii 1988}
test clock-2.1307 {conversion of 1988-06-01} {
    clock format 581171696 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Jun June 06/01/1988 12:34:56 die i mensis vi annoque mcmlxxxviii xii h xxxiv m lvi s 19 mcm 01 i  1 i Jun 153 2447314 06 vi  6 06/01/1988 die i mensis vi annoque mcmlxxxviii 88 lxxxviii 1988}
test clock-2.1308 {conversion of 1988-06-30} {
    clock format 583677296 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Jun June 06/30/1988 12:34:56 die xxx mensis vi annoque mcmlxxxviii xii h xxxiv m lvi s 19 mcm 30 xxx 30 xxx Jun 182 2447343 06 vi  6 06/30/1988 die xxx mensis vi annoque mcmlxxxviii 88 lxxxviii 1988}
test clock-2.1309 {conversion of 1988-07-01} {
    clock format 583763696 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Jul July 07/01/1988 12:34:56 die i mensis vii annoque mcmlxxxviii xii h xxxiv m lvi s 19 mcm 01 i  1 i Jul 183 2447344 07 vii  7 07/01/1988 die i mensis vii annoque mcmlxxxviii 88 lxxxviii 1988}
test clock-2.1310 {conversion of 1988-07-31} {
    clock format 586355696 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Jul July 07/31/1988 12:34:56 die xxxi mensis vii annoque mcmlxxxviii xii h xxxiv m lvi s 19 mcm 31 xxxi 31 xxxi Jul 213 2447374 07 vii  7 07/31/1988 die xxxi mensis vii annoque mcmlxxxviii 88 lxxxviii 1988}
test clock-2.1311 {conversion of 1988-08-01} {
    clock format 586442096 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Aug August 08/01/1988 12:34:56 die i mensis viii annoque mcmlxxxviii xii h xxxiv m lvi s 19 mcm 01 i  1 i Aug 214 2447375 08 viii  8 08/01/1988 die i mensis viii annoque mcmlxxxviii 88 lxxxviii 1988}
test clock-2.1312 {conversion of 1988-08-31} {
    clock format 589034096 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Aug August 08/31/1988 12:34:56 die xxxi mensis viii annoque mcmlxxxviii xii h xxxiv m lvi s 19 mcm 31 xxxi 31 xxxi Aug 244 2447405 08 viii  8 08/31/1988 die xxxi mensis viii annoque mcmlxxxviii 88 lxxxviii 1988}
test clock-2.1313 {conversion of 1988-09-01} {
    clock format 589120496 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Sep September 09/01/1988 12:34:56 die i mensis ix annoque mcmlxxxviii xii h xxxiv m lvi s 19 mcm 01 i  1 i Sep 245 2447406 09 ix  9 09/01/1988 die i mensis ix annoque mcmlxxxviii 88 lxxxviii 1988}
test clock-2.1314 {conversion of 1988-09-30} {
    clock format 591626096 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Sep September 09/30/1988 12:34:56 die xxx mensis ix annoque mcmlxxxviii xii h xxxiv m lvi s 19 mcm 30 xxx 30 xxx Sep 274 2447435 09 ix  9 09/30/1988 die xxx mensis ix annoque mcmlxxxviii 88 lxxxviii 1988}
test clock-2.1315 {conversion of 1988-10-01} {
    clock format 591712496 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Oct October 10/01/1988 12:34:56 die i mensis x annoque mcmlxxxviii xii h xxxiv m lvi s 19 mcm 01 i  1 i Oct 275 2447436 10 x 10 10/01/1988 die i mensis x annoque mcmlxxxviii 88 lxxxviii 1988}
test clock-2.1316 {conversion of 1988-10-31} {
    clock format 594304496 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Oct October 10/31/1988 12:34:56 die xxxi mensis x annoque mcmlxxxviii xii h xxxiv m lvi s 19 mcm 31 xxxi 31 xxxi Oct 305 2447466 10 x 10 10/31/1988 die xxxi mensis x annoque mcmlxxxviii 88 lxxxviii 1988}
test clock-2.1317 {conversion of 1988-11-01} {
    clock format 594390896 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Nov November 11/01/1988 12:34:56 die i mensis xi annoque mcmlxxxviii xii h xxxiv m lvi s 19 mcm 01 i  1 i Nov 306 2447467 11 xi 11 11/01/1988 die i mensis xi annoque mcmlxxxviii 88 lxxxviii 1988}
test clock-2.1318 {conversion of 1988-11-30} {
    clock format 596896496 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Nov November 11/30/1988 12:34:56 die xxx mensis xi annoque mcmlxxxviii xii h xxxiv m lvi s 19 mcm 30 xxx 30 xxx Nov 335 2447496 11 xi 11 11/30/1988 die xxx mensis xi annoque mcmlxxxviii 88 lxxxviii 1988}
test clock-2.1319 {conversion of 1988-12-01} {
    clock format 596982896 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Dec December 12/01/1988 12:34:56 die i mensis xii annoque mcmlxxxviii xii h xxxiv m lvi s 19 mcm 01 i  1 i Dec 336 2447497 12 xii 12 12/01/1988 die i mensis xii annoque mcmlxxxviii 88 lxxxviii 1988}
test clock-2.1320 {conversion of 1988-12-31} {
    clock format 599574896 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Dec December 12/31/1988 12:34:56 die xxxi mensis xii annoque mcmlxxxviii xii h xxxiv m lvi s 19 mcm 31 xxxi 31 xxxi Dec 366 2447527 12 xii 12 12/31/1988 die xxxi mensis xii annoque mcmlxxxviii 88 lxxxviii 1988}
test clock-2.1321 {conversion of 1989-01-01} {
    clock format 599661296 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Jan January 01/01/1989 12:34:56 die i mensis i annoque mcmlxxxix xii h xxxiv m lvi s 19 mcm 01 i  1 i Jan 001 2447528 01 i  1 01/01/1989 die i mensis i annoque mcmlxxxix 89 lxxxix 1989}
test clock-2.1322 {conversion of 1989-01-31} {
    clock format 602253296 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Jan January 01/31/1989 12:34:56 die xxxi mensis i annoque mcmlxxxix xii h xxxiv m lvi s 19 mcm 31 xxxi 31 xxxi Jan 031 2447558 01 i  1 01/31/1989 die xxxi mensis i annoque mcmlxxxix 89 lxxxix 1989}
test clock-2.1323 {conversion of 1989-02-01} {
    clock format 602339696 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Feb February 02/01/1989 12:34:56 die i mensis ii annoque mcmlxxxix xii h xxxiv m lvi s 19 mcm 01 i  1 i Feb 032 2447559 02 ii  2 02/01/1989 die i mensis ii annoque mcmlxxxix 89 lxxxix 1989}
test clock-2.1324 {conversion of 1989-02-28} {
    clock format 604672496 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Feb February 02/28/1989 12:34:56 die xxviii mensis ii annoque mcmlxxxix xii h xxxiv m lvi s 19 mcm 28 xxviii 28 xxviii Feb 059 2447586 02 ii  2 02/28/1989 die xxviii mensis ii annoque mcmlxxxix 89 lxxxix 1989}
test clock-2.1325 {conversion of 1989-03-01} {
    clock format 604758896 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Mar March 03/01/1989 12:34:56 die i mensis iii annoque mcmlxxxix xii h xxxiv m lvi s 19 mcm 01 i  1 i Mar 060 2447587 03 iii  3 03/01/1989 die i mensis iii annoque mcmlxxxix 89 lxxxix 1989}
test clock-2.1326 {conversion of 1989-03-31} {
    clock format 607350896 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Mar March 03/31/1989 12:34:56 die xxxi mensis iii annoque mcmlxxxix xii h xxxiv m lvi s 19 mcm 31 xxxi 31 xxxi Mar 090 2447617 03 iii  3 03/31/1989 die xxxi mensis iii annoque mcmlxxxix 89 lxxxix 1989}
test clock-2.1327 {conversion of 1989-04-01} {
    clock format 607437296 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Apr April 04/01/1989 12:34:56 die i mensis iv annoque mcmlxxxix xii h xxxiv m lvi s 19 mcm 01 i  1 i Apr 091 2447618 04 iv  4 04/01/1989 die i mensis iv annoque mcmlxxxix 89 lxxxix 1989}
test clock-2.1328 {conversion of 1989-04-30} {
    clock format 609942896 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Apr April 04/30/1989 12:34:56 die xxx mensis iv annoque mcmlxxxix xii h xxxiv m lvi s 19 mcm 30 xxx 30 xxx Apr 120 2447647 04 iv  4 04/30/1989 die xxx mensis iv annoque mcmlxxxix 89 lxxxix 1989}
test clock-2.1329 {conversion of 1989-05-01} {
    clock format 610029296 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {May May 05/01/1989 12:34:56 die i mensis v annoque mcmlxxxix xii h xxxiv m lvi s 19 mcm 01 i  1 i May 121 2447648 05 v  5 05/01/1989 die i mensis v annoque mcmlxxxix 89 lxxxix 1989}
test clock-2.1330 {conversion of 1989-05-31} {
    clock format 612621296 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {May May 05/31/1989 12:34:56 die xxxi mensis v annoque mcmlxxxix xii h xxxiv m lvi s 19 mcm 31 xxxi 31 xxxi May 151 2447678 05 v  5 05/31/1989 die xxxi mensis v annoque mcmlxxxix 89 lxxxix 1989}
test clock-2.1331 {conversion of 1989-06-01} {
    clock format 612707696 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Jun June 06/01/1989 12:34:56 die i mensis vi annoque mcmlxxxix xii h xxxiv m lvi s 19 mcm 01 i  1 i Jun 152 2447679 06 vi  6 06/01/1989 die i mensis vi annoque mcmlxxxix 89 lxxxix 1989}
test clock-2.1332 {conversion of 1989-06-30} {
    clock format 615213296 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Jun June 06/30/1989 12:34:56 die xxx mensis vi annoque mcmlxxxix xii h xxxiv m lvi s 19 mcm 30 xxx 30 xxx Jun 181 2447708 06 vi  6 06/30/1989 die xxx mensis vi annoque mcmlxxxix 89 lxxxix 1989}
test clock-2.1333 {conversion of 1989-07-01} {
    clock format 615299696 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Jul July 07/01/1989 12:34:56 die i mensis vii annoque mcmlxxxix xii h xxxiv m lvi s 19 mcm 01 i  1 i Jul 182 2447709 07 vii  7 07/01/1989 die i mensis vii annoque mcmlxxxix 89 lxxxix 1989}
test clock-2.1334 {conversion of 1989-07-31} {
    clock format 617891696 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Jul July 07/31/1989 12:34:56 die xxxi mensis vii annoque mcmlxxxix xii h xxxiv m lvi s 19 mcm 31 xxxi 31 xxxi Jul 212 2447739 07 vii  7 07/31/1989 die xxxi mensis vii annoque mcmlxxxix 89 lxxxix 1989}
test clock-2.1335 {conversion of 1989-08-01} {
    clock format 617978096 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Aug August 08/01/1989 12:34:56 die i mensis viii annoque mcmlxxxix xii h xxxiv m lvi s 19 mcm 01 i  1 i Aug 213 2447740 08 viii  8 08/01/1989 die i mensis viii annoque mcmlxxxix 89 lxxxix 1989}
test clock-2.1336 {conversion of 1989-08-31} {
    clock format 620570096 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Aug August 08/31/1989 12:34:56 die xxxi mensis viii annoque mcmlxxxix xii h xxxiv m lvi s 19 mcm 31 xxxi 31 xxxi Aug 243 2447770 08 viii  8 08/31/1989 die xxxi mensis viii annoque mcmlxxxix 89 lxxxix 1989}
test clock-2.1337 {conversion of 1989-09-01} {
    clock format 620656496 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Sep September 09/01/1989 12:34:56 die i mensis ix annoque mcmlxxxix xii h xxxiv m lvi s 19 mcm 01 i  1 i Sep 244 2447771 09 ix  9 09/01/1989 die i mensis ix annoque mcmlxxxix 89 lxxxix 1989}
test clock-2.1338 {conversion of 1989-09-30} {
    clock format 623162096 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Sep September 09/30/1989 12:34:56 die xxx mensis ix annoque mcmlxxxix xii h xxxiv m lvi s 19 mcm 30 xxx 30 xxx Sep 273 2447800 09 ix  9 09/30/1989 die xxx mensis ix annoque mcmlxxxix 89 lxxxix 1989}
test clock-2.1339 {conversion of 1989-10-01} {
    clock format 623248496 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Oct October 10/01/1989 12:34:56 die i mensis x annoque mcmlxxxix xii h xxxiv m lvi s 19 mcm 01 i  1 i Oct 274 2447801 10 x 10 10/01/1989 die i mensis x annoque mcmlxxxix 89 lxxxix 1989}
test clock-2.1340 {conversion of 1989-10-31} {
    clock format 625840496 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Oct October 10/31/1989 12:34:56 die xxxi mensis x annoque mcmlxxxix xii h xxxiv m lvi s 19 mcm 31 xxxi 31 xxxi Oct 304 2447831 10 x 10 10/31/1989 die xxxi mensis x annoque mcmlxxxix 89 lxxxix 1989}
test clock-2.1341 {conversion of 1989-11-01} {
    clock format 625926896 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Nov November 11/01/1989 12:34:56 die i mensis xi annoque mcmlxxxix xii h xxxiv m lvi s 19 mcm 01 i  1 i Nov 305 2447832 11 xi 11 11/01/1989 die i mensis xi annoque mcmlxxxix 89 lxxxix 1989}
test clock-2.1342 {conversion of 1989-11-30} {
    clock format 628432496 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Nov November 11/30/1989 12:34:56 die xxx mensis xi annoque mcmlxxxix xii h xxxiv m lvi s 19 mcm 30 xxx 30 xxx Nov 334 2447861 11 xi 11 11/30/1989 die xxx mensis xi annoque mcmlxxxix 89 lxxxix 1989}
test clock-2.1343 {conversion of 1989-12-01} {
    clock format 628518896 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Dec December 12/01/1989 12:34:56 die i mensis xii annoque mcmlxxxix xii h xxxiv m lvi s 19 mcm 01 i  1 i Dec 335 2447862 12 xii 12 12/01/1989 die i mensis xii annoque mcmlxxxix 89 lxxxix 1989}
test clock-2.1344 {conversion of 1989-12-31} {
    clock format 631110896 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Dec December 12/31/1989 12:34:56 die xxxi mensis xii annoque mcmlxxxix xii h xxxiv m lvi s 19 mcm 31 xxxi 31 xxxi Dec 365 2447892 12 xii 12 12/31/1989 die xxxi mensis xii annoque mcmlxxxix 89 lxxxix 1989}
test clock-2.1345 {conversion of 1992-01-01} {
    clock format 694269296 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Jan January 01/01/1992 12:34:56 die i mensis i annoque mcmxcii xii h xxxiv m lvi s 19 mcm 01 i  1 i Jan 001 2448623 01 i  1 01/01/1992 die i mensis i annoque mcmxcii 92 xcii 1992}
test clock-2.1346 {conversion of 1992-01-31} {
    clock format 696861296 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Jan January 01/31/1992 12:34:56 die xxxi mensis i annoque mcmxcii xii h xxxiv m lvi s 19 mcm 31 xxxi 31 xxxi Jan 031 2448653 01 i  1 01/31/1992 die xxxi mensis i annoque mcmxcii 92 xcii 1992}
test clock-2.1347 {conversion of 1992-02-01} {
    clock format 696947696 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Feb February 02/01/1992 12:34:56 die i mensis ii annoque mcmxcii xii h xxxiv m lvi s 19 mcm 01 i  1 i Feb 032 2448654 02 ii  2 02/01/1992 die i mensis ii annoque mcmxcii 92 xcii 1992}
test clock-2.1348 {conversion of 1992-02-29} {
    clock format 699366896 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Feb February 02/29/1992 12:34:56 die xxix mensis ii annoque mcmxcii xii h xxxiv m lvi s 19 mcm 29 xxix 29 xxix Feb 060 2448682 02 ii  2 02/29/1992 die xxix mensis ii annoque mcmxcii 92 xcii 1992}
test clock-2.1349 {conversion of 1992-03-01} {
    clock format 699453296 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Mar March 03/01/1992 12:34:56 die i mensis iii annoque mcmxcii xii h xxxiv m lvi s 19 mcm 01 i  1 i Mar 061 2448683 03 iii  3 03/01/1992 die i mensis iii annoque mcmxcii 92 xcii 1992}
test clock-2.1350 {conversion of 1992-03-31} {
    clock format 702045296 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Mar March 03/31/1992 12:34:56 die xxxi mensis iii annoque mcmxcii xii h xxxiv m lvi s 19 mcm 31 xxxi 31 xxxi Mar 091 2448713 03 iii  3 03/31/1992 die xxxi mensis iii annoque mcmxcii 92 xcii 1992}
test clock-2.1351 {conversion of 1992-04-01} {
    clock format 702131696 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Apr April 04/01/1992 12:34:56 die i mensis iv annoque mcmxcii xii h xxxiv m lvi s 19 mcm 01 i  1 i Apr 092 2448714 04 iv  4 04/01/1992 die i mensis iv annoque mcmxcii 92 xcii 1992}
test clock-2.1352 {conversion of 1992-04-30} {
    clock format 704637296 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Apr April 04/30/1992 12:34:56 die xxx mensis iv annoque mcmxcii xii h xxxiv m lvi s 19 mcm 30 xxx 30 xxx Apr 121 2448743 04 iv  4 04/30/1992 die xxx mensis iv annoque mcmxcii 92 xcii 1992}
test clock-2.1353 {conversion of 1992-05-01} {
    clock format 704723696 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {May May 05/01/1992 12:34:56 die i mensis v annoque mcmxcii xii h xxxiv m lvi s 19 mcm 01 i  1 i May 122 2448744 05 v  5 05/01/1992 die i mensis v annoque mcmxcii 92 xcii 1992}
test clock-2.1354 {conversion of 1992-05-31} {
    clock format 707315696 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {May May 05/31/1992 12:34:56 die xxxi mensis v annoque mcmxcii xii h xxxiv m lvi s 19 mcm 31 xxxi 31 xxxi May 152 2448774 05 v  5 05/31/1992 die xxxi mensis v annoque mcmxcii 92 xcii 1992}
test clock-2.1355 {conversion of 1992-06-01} {
    clock format 707402096 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Jun June 06/01/1992 12:34:56 die i mensis vi annoque mcmxcii xii h xxxiv m lvi s 19 mcm 01 i  1 i Jun 153 2448775 06 vi  6 06/01/1992 die i mensis vi annoque mcmxcii 92 xcii 1992}
test clock-2.1356 {conversion of 1992-06-30} {
    clock format 709907696 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Jun June 06/30/1992 12:34:56 die xxx mensis vi annoque mcmxcii xii h xxxiv m lvi s 19 mcm 30 xxx 30 xxx Jun 182 2448804 06 vi  6 06/30/1992 die xxx mensis vi annoque mcmxcii 92 xcii 1992}
test clock-2.1357 {conversion of 1992-07-01} {
    clock format 709994096 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Jul July 07/01/1992 12:34:56 die i mensis vii annoque mcmxcii xii h xxxiv m lvi s 19 mcm 01 i  1 i Jul 183 2448805 07 vii  7 07/01/1992 die i mensis vii annoque mcmxcii 92 xcii 1992}
test clock-2.1358 {conversion of 1992-07-31} {
    clock format 712586096 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Jul July 07/31/1992 12:34:56 die xxxi mensis vii annoque mcmxcii xii h xxxiv m lvi s 19 mcm 31 xxxi 31 xxxi Jul 213 2448835 07 vii  7 07/31/1992 die xxxi mensis vii annoque mcmxcii 92 xcii 1992}
test clock-2.1359 {conversion of 1992-08-01} {
    clock format 712672496 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Aug August 08/01/1992 12:34:56 die i mensis viii annoque mcmxcii xii h xxxiv m lvi s 19 mcm 01 i  1 i Aug 214 2448836 08 viii  8 08/01/1992 die i mensis viii annoque mcmxcii 92 xcii 1992}
test clock-2.1360 {conversion of 1992-08-31} {
    clock format 715264496 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Aug August 08/31/1992 12:34:56 die xxxi mensis viii annoque mcmxcii xii h xxxiv m lvi s 19 mcm 31 xxxi 31 xxxi Aug 244 2448866 08 viii  8 08/31/1992 die xxxi mensis viii annoque mcmxcii 92 xcii 1992}
test clock-2.1361 {conversion of 1992-09-01} {
    clock format 715350896 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Sep September 09/01/1992 12:34:56 die i mensis ix annoque mcmxcii xii h xxxiv m lvi s 19 mcm 01 i  1 i Sep 245 2448867 09 ix  9 09/01/1992 die i mensis ix annoque mcmxcii 92 xcii 1992}
test clock-2.1362 {conversion of 1992-09-30} {
    clock format 717856496 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Sep September 09/30/1992 12:34:56 die xxx mensis ix annoque mcmxcii xii h xxxiv m lvi s 19 mcm 30 xxx 30 xxx Sep 274 2448896 09 ix  9 09/30/1992 die xxx mensis ix annoque mcmxcii 92 xcii 1992}
test clock-2.1363 {conversion of 1992-10-01} {
    clock format 717942896 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Oct October 10/01/1992 12:34:56 die i mensis x annoque mcmxcii xii h xxxiv m lvi s 19 mcm 01 i  1 i Oct 275 2448897 10 x 10 10/01/1992 die i mensis x annoque mcmxcii 92 xcii 1992}
test clock-2.1364 {conversion of 1992-10-31} {
    clock format 720534896 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Oct October 10/31/1992 12:34:56 die xxxi mensis x annoque mcmxcii xii h xxxiv m lvi s 19 mcm 31 xxxi 31 xxxi Oct 305 2448927 10 x 10 10/31/1992 die xxxi mensis x annoque mcmxcii 92 xcii 1992}
test clock-2.1365 {conversion of 1992-11-01} {
    clock format 720621296 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Nov November 11/01/1992 12:34:56 die i mensis xi annoque mcmxcii xii h xxxiv m lvi s 19 mcm 01 i  1 i Nov 306 2448928 11 xi 11 11/01/1992 die i mensis xi annoque mcmxcii 92 xcii 1992}
test clock-2.1366 {conversion of 1992-11-30} {
    clock format 723126896 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Nov November 11/30/1992 12:34:56 die xxx mensis xi annoque mcmxcii xii h xxxiv m lvi s 19 mcm 30 xxx 30 xxx Nov 335 2448957 11 xi 11 11/30/1992 die xxx mensis xi annoque mcmxcii 92 xcii 1992}
test clock-2.1367 {conversion of 1992-12-01} {
    clock format 723213296 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Dec December 12/01/1992 12:34:56 die i mensis xii annoque mcmxcii xii h xxxiv m lvi s 19 mcm 01 i  1 i Dec 336 2448958 12 xii 12 12/01/1992 die i mensis xii annoque mcmxcii 92 xcii 1992}
test clock-2.1368 {conversion of 1992-12-31} {
    clock format 725805296 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Dec December 12/31/1992 12:34:56 die xxxi mensis xii annoque mcmxcii xii h xxxiv m lvi s 19 mcm 31 xxxi 31 xxxi Dec 366 2448988 12 xii 12 12/31/1992 die xxxi mensis xii annoque mcmxcii 92 xcii 1992}
test clock-2.1369 {conversion of 1993-01-01} {
    clock format 725891696 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Jan January 01/01/1993 12:34:56 die i mensis i annoque mcmxciii xii h xxxiv m lvi s 19 mcm 01 i  1 i Jan 001 2448989 01 i  1 01/01/1993 die i mensis i annoque mcmxciii 93 xciii 1993}
test clock-2.1370 {conversion of 1993-01-31} {
    clock format 728483696 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Jan January 01/31/1993 12:34:56 die xxxi mensis i annoque mcmxciii xii h xxxiv m lvi s 19 mcm 31 xxxi 31 xxxi Jan 031 2449019 01 i  1 01/31/1993 die xxxi mensis i annoque mcmxciii 93 xciii 1993}
test clock-2.1371 {conversion of 1993-02-01} {
    clock format 728570096 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Feb February 02/01/1993 12:34:56 die i mensis ii annoque mcmxciii xii h xxxiv m lvi s 19 mcm 01 i  1 i Feb 032 2449020 02 ii  2 02/01/1993 die i mensis ii annoque mcmxciii 93 xciii 1993}
test clock-2.1372 {conversion of 1993-02-28} {
    clock format 730902896 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Feb February 02/28/1993 12:34:56 die xxviii mensis ii annoque mcmxciii xii h xxxiv m lvi s 19 mcm 28 xxviii 28 xxviii Feb 059 2449047 02 ii  2 02/28/1993 die xxviii mensis ii annoque mcmxciii 93 xciii 1993}
test clock-2.1373 {conversion of 1993-03-01} {
    clock format 730989296 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Mar March 03/01/1993 12:34:56 die i mensis iii annoque mcmxciii xii h xxxiv m lvi s 19 mcm 01 i  1 i Mar 060 2449048 03 iii  3 03/01/1993 die i mensis iii annoque mcmxciii 93 xciii 1993}
test clock-2.1374 {conversion of 1993-03-31} {
    clock format 733581296 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Mar March 03/31/1993 12:34:56 die xxxi mensis iii annoque mcmxciii xii h xxxiv m lvi s 19 mcm 31 xxxi 31 xxxi Mar 090 2449078 03 iii  3 03/31/1993 die xxxi mensis iii annoque mcmxciii 93 xciii 1993}
test clock-2.1375 {conversion of 1993-04-01} {
    clock format 733667696 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Apr April 04/01/1993 12:34:56 die i mensis iv annoque mcmxciii xii h xxxiv m lvi s 19 mcm 01 i  1 i Apr 091 2449079 04 iv  4 04/01/1993 die i mensis iv annoque mcmxciii 93 xciii 1993}
test clock-2.1376 {conversion of 1993-04-30} {
    clock format 736173296 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Apr April 04/30/1993 12:34:56 die xxx mensis iv annoque mcmxciii xii h xxxiv m lvi s 19 mcm 30 xxx 30 xxx Apr 120 2449108 04 iv  4 04/30/1993 die xxx mensis iv annoque mcmxciii 93 xciii 1993}
test clock-2.1377 {conversion of 1993-05-01} {
    clock format 736259696 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {May May 05/01/1993 12:34:56 die i mensis v annoque mcmxciii xii h xxxiv m lvi s 19 mcm 01 i  1 i May 121 2449109 05 v  5 05/01/1993 die i mensis v annoque mcmxciii 93 xciii 1993}
test clock-2.1378 {conversion of 1993-05-31} {
    clock format 738851696 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {May May 05/31/1993 12:34:56 die xxxi mensis v annoque mcmxciii xii h xxxiv m lvi s 19 mcm 31 xxxi 31 xxxi May 151 2449139 05 v  5 05/31/1993 die xxxi mensis v annoque mcmxciii 93 xciii 1993}
test clock-2.1379 {conversion of 1993-06-01} {
    clock format 738938096 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Jun June 06/01/1993 12:34:56 die i mensis vi annoque mcmxciii xii h xxxiv m lvi s 19 mcm 01 i  1 i Jun 152 2449140 06 vi  6 06/01/1993 die i mensis vi annoque mcmxciii 93 xciii 1993}
test clock-2.1380 {conversion of 1993-06-30} {
    clock format 741443696 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Jun June 06/30/1993 12:34:56 die xxx mensis vi annoque mcmxciii xii h xxxiv m lvi s 19 mcm 30 xxx 30 xxx Jun 181 2449169 06 vi  6 06/30/1993 die xxx mensis vi annoque mcmxciii 93 xciii 1993}
test clock-2.1381 {conversion of 1993-07-01} {
    clock format 741530096 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Jul July 07/01/1993 12:34:56 die i mensis vii annoque mcmxciii xii h xxxiv m lvi s 19 mcm 01 i  1 i Jul 182 2449170 07 vii  7 07/01/1993 die i mensis vii annoque mcmxciii 93 xciii 1993}
test clock-2.1382 {conversion of 1993-07-31} {
    clock format 744122096 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Jul July 07/31/1993 12:34:56 die xxxi mensis vii annoque mcmxciii xii h xxxiv m lvi s 19 mcm 31 xxxi 31 xxxi Jul 212 2449200 07 vii  7 07/31/1993 die xxxi mensis vii annoque mcmxciii 93 xciii 1993}
test clock-2.1383 {conversion of 1993-08-01} {
    clock format 744208496 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Aug August 08/01/1993 12:34:56 die i mensis viii annoque mcmxciii xii h xxxiv m lvi s 19 mcm 01 i  1 i Aug 213 2449201 08 viii  8 08/01/1993 die i mensis viii annoque mcmxciii 93 xciii 1993}
test clock-2.1384 {conversion of 1993-08-31} {
    clock format 746800496 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Aug August 08/31/1993 12:34:56 die xxxi mensis viii annoque mcmxciii xii h xxxiv m lvi s 19 mcm 31 xxxi 31 xxxi Aug 243 2449231 08 viii  8 08/31/1993 die xxxi mensis viii annoque mcmxciii 93 xciii 1993}
test clock-2.1385 {conversion of 1993-09-01} {
    clock format 746886896 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Sep September 09/01/1993 12:34:56 die i mensis ix annoque mcmxciii xii h xxxiv m lvi s 19 mcm 01 i  1 i Sep 244 2449232 09 ix  9 09/01/1993 die i mensis ix annoque mcmxciii 93 xciii 1993}
test clock-2.1386 {conversion of 1993-09-30} {
    clock format 749392496 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Sep September 09/30/1993 12:34:56 die xxx mensis ix annoque mcmxciii xii h xxxiv m lvi s 19 mcm 30 xxx 30 xxx Sep 273 2449261 09 ix  9 09/30/1993 die xxx mensis ix annoque mcmxciii 93 xciii 1993}
test clock-2.1387 {conversion of 1993-10-01} {
    clock format 749478896 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Oct October 10/01/1993 12:34:56 die i mensis x annoque mcmxciii xii h xxxiv m lvi s 19 mcm 01 i  1 i Oct 274 2449262 10 x 10 10/01/1993 die i mensis x annoque mcmxciii 93 xciii 1993}
test clock-2.1388 {conversion of 1993-10-31} {
    clock format 752070896 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Oct October 10/31/1993 12:34:56 die xxxi mensis x annoque mcmxciii xii h xxxiv m lvi s 19 mcm 31 xxxi 31 xxxi Oct 304 2449292 10 x 10 10/31/1993 die xxxi mensis x annoque mcmxciii 93 xciii 1993}
test clock-2.1389 {conversion of 1993-11-01} {
    clock format 752157296 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Nov November 11/01/1993 12:34:56 die i mensis xi annoque mcmxciii xii h xxxiv m lvi s 19 mcm 01 i  1 i Nov 305 2449293 11 xi 11 11/01/1993 die i mensis xi annoque mcmxciii 93 xciii 1993}
test clock-2.1390 {conversion of 1993-11-30} {
    clock format 754662896 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Nov November 11/30/1993 12:34:56 die xxx mensis xi annoque mcmxciii xii h xxxiv m lvi s 19 mcm 30 xxx 30 xxx Nov 334 2449322 11 xi 11 11/30/1993 die xxx mensis xi annoque mcmxciii 93 xciii 1993}
test clock-2.1391 {conversion of 1993-12-01} {
    clock format 754749296 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Dec December 12/01/1993 12:34:56 die i mensis xii annoque mcmxciii xii h xxxiv m lvi s 19 mcm 01 i  1 i Dec 335 2449323 12 xii 12 12/01/1993 die i mensis xii annoque mcmxciii 93 xciii 1993}
test clock-2.1392 {conversion of 1993-12-31} {
    clock format 757341296 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Dec December 12/31/1993 12:34:56 die xxxi mensis xii annoque mcmxciii xii h xxxiv m lvi s 19 mcm 31 xxxi 31 xxxi Dec 365 2449353 12 xii 12 12/31/1993 die xxxi mensis xii annoque mcmxciii 93 xciii 1993}
test clock-2.1393 {conversion of 1996-01-01} {
    clock format 820499696 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Jan January 01/01/1996 12:34:56 die i mensis i annoque mcmxcvi xii h xxxiv m lvi s 19 mcm 01 i  1 i Jan 001 2450084 01 i  1 01/01/1996 die i mensis i annoque mcmxcvi 96 xcvi 1996}
test clock-2.1394 {conversion of 1996-01-31} {
    clock format 823091696 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Jan January 01/31/1996 12:34:56 die xxxi mensis i annoque mcmxcvi xii h xxxiv m lvi s 19 mcm 31 xxxi 31 xxxi Jan 031 2450114 01 i  1 01/31/1996 die xxxi mensis i annoque mcmxcvi 96 xcvi 1996}
test clock-2.1395 {conversion of 1996-02-01} {
    clock format 823178096 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Feb February 02/01/1996 12:34:56 die i mensis ii annoque mcmxcvi xii h xxxiv m lvi s 19 mcm 01 i  1 i Feb 032 2450115 02 ii  2 02/01/1996 die i mensis ii annoque mcmxcvi 96 xcvi 1996}
test clock-2.1396 {conversion of 1996-02-29} {
    clock format 825597296 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Feb February 02/29/1996 12:34:56 die xxix mensis ii annoque mcmxcvi xii h xxxiv m lvi s 19 mcm 29 xxix 29 xxix Feb 060 2450143 02 ii  2 02/29/1996 die xxix mensis ii annoque mcmxcvi 96 xcvi 1996}
test clock-2.1397 {conversion of 1996-03-01} {
    clock format 825683696 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Mar March 03/01/1996 12:34:56 die i mensis iii annoque mcmxcvi xii h xxxiv m lvi s 19 mcm 01 i  1 i Mar 061 2450144 03 iii  3 03/01/1996 die i mensis iii annoque mcmxcvi 96 xcvi 1996}
test clock-2.1398 {conversion of 1996-03-31} {
    clock format 828275696 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Mar March 03/31/1996 12:34:56 die xxxi mensis iii annoque mcmxcvi xii h xxxiv m lvi s 19 mcm 31 xxxi 31 xxxi Mar 091 2450174 03 iii  3 03/31/1996 die xxxi mensis iii annoque mcmxcvi 96 xcvi 1996}
test clock-2.1399 {conversion of 1996-04-01} {
    clock format 828362096 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Apr April 04/01/1996 12:34:56 die i mensis iv annoque mcmxcvi xii h xxxiv m lvi s 19 mcm 01 i  1 i Apr 092 2450175 04 iv  4 04/01/1996 die i mensis iv annoque mcmxcvi 96 xcvi 1996}
test clock-2.1400 {conversion of 1996-04-30} {
    clock format 830867696 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Apr April 04/30/1996 12:34:56 die xxx mensis iv annoque mcmxcvi xii h xxxiv m lvi s 19 mcm 30 xxx 30 xxx Apr 121 2450204 04 iv  4 04/30/1996 die xxx mensis iv annoque mcmxcvi 96 xcvi 1996}
test clock-2.1401 {conversion of 1996-05-01} {
    clock format 830954096 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {May May 05/01/1996 12:34:56 die i mensis v annoque mcmxcvi xii h xxxiv m lvi s 19 mcm 01 i  1 i May 122 2450205 05 v  5 05/01/1996 die i mensis v annoque mcmxcvi 96 xcvi 1996}
test clock-2.1402 {conversion of 1996-05-31} {
    clock format 833546096 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {May May 05/31/1996 12:34:56 die xxxi mensis v annoque mcmxcvi xii h xxxiv m lvi s 19 mcm 31 xxxi 31 xxxi May 152 2450235 05 v  5 05/31/1996 die xxxi mensis v annoque mcmxcvi 96 xcvi 1996}
test clock-2.1403 {conversion of 1996-06-01} {
    clock format 833632496 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Jun June 06/01/1996 12:34:56 die i mensis vi annoque mcmxcvi xii h xxxiv m lvi s 19 mcm 01 i  1 i Jun 153 2450236 06 vi  6 06/01/1996 die i mensis vi annoque mcmxcvi 96 xcvi 1996}
test clock-2.1404 {conversion of 1996-06-30} {
    clock format 836138096 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Jun June 06/30/1996 12:34:56 die xxx mensis vi annoque mcmxcvi xii h xxxiv m lvi s 19 mcm 30 xxx 30 xxx Jun 182 2450265 06 vi  6 06/30/1996 die xxx mensis vi annoque mcmxcvi 96 xcvi 1996}
test clock-2.1405 {conversion of 1996-07-01} {
    clock format 836224496 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Jul July 07/01/1996 12:34:56 die i mensis vii annoque mcmxcvi xii h xxxiv m lvi s 19 mcm 01 i  1 i Jul 183 2450266 07 vii  7 07/01/1996 die i mensis vii annoque mcmxcvi 96 xcvi 1996}
test clock-2.1406 {conversion of 1996-07-31} {
    clock format 838816496 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Jul July 07/31/1996 12:34:56 die xxxi mensis vii annoque mcmxcvi xii h xxxiv m lvi s 19 mcm 31 xxxi 31 xxxi Jul 213 2450296 07 vii  7 07/31/1996 die xxxi mensis vii annoque mcmxcvi 96 xcvi 1996}
test clock-2.1407 {conversion of 1996-08-01} {
    clock format 838902896 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Aug August 08/01/1996 12:34:56 die i mensis viii annoque mcmxcvi xii h xxxiv m lvi s 19 mcm 01 i  1 i Aug 214 2450297 08 viii  8 08/01/1996 die i mensis viii annoque mcmxcvi 96 xcvi 1996}
test clock-2.1408 {conversion of 1996-08-31} {
    clock format 841494896 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Aug August 08/31/1996 12:34:56 die xxxi mensis viii annoque mcmxcvi xii h xxxiv m lvi s 19 mcm 31 xxxi 31 xxxi Aug 244 2450327 08 viii  8 08/31/1996 die xxxi mensis viii annoque mcmxcvi 96 xcvi 1996}
test clock-2.1409 {conversion of 1996-09-01} {
    clock format 841581296 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Sep September 09/01/1996 12:34:56 die i mensis ix annoque mcmxcvi xii h xxxiv m lvi s 19 mcm 01 i  1 i Sep 245 2450328 09 ix  9 09/01/1996 die i mensis ix annoque mcmxcvi 96 xcvi 1996}
test clock-2.1410 {conversion of 1996-09-30} {
    clock format 844086896 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Sep September 09/30/1996 12:34:56 die xxx mensis ix annoque mcmxcvi xii h xxxiv m lvi s 19 mcm 30 xxx 30 xxx Sep 274 2450357 09 ix  9 09/30/1996 die xxx mensis ix annoque mcmxcvi 96 xcvi 1996}
test clock-2.1411 {conversion of 1996-10-01} {
    clock format 844173296 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Oct October 10/01/1996 12:34:56 die i mensis x annoque mcmxcvi xii h xxxiv m lvi s 19 mcm 01 i  1 i Oct 275 2450358 10 x 10 10/01/1996 die i mensis x annoque mcmxcvi 96 xcvi 1996}
test clock-2.1412 {conversion of 1996-10-31} {
    clock format 846765296 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Oct October 10/31/1996 12:34:56 die xxxi mensis x annoque mcmxcvi xii h xxxiv m lvi s 19 mcm 31 xxxi 31 xxxi Oct 305 2450388 10 x 10 10/31/1996 die xxxi mensis x annoque mcmxcvi 96 xcvi 1996}
test clock-2.1413 {conversion of 1996-11-01} {
    clock format 846851696 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Nov November 11/01/1996 12:34:56 die i mensis xi annoque mcmxcvi xii h xxxiv m lvi s 19 mcm 01 i  1 i Nov 306 2450389 11 xi 11 11/01/1996 die i mensis xi annoque mcmxcvi 96 xcvi 1996}
test clock-2.1414 {conversion of 1996-11-30} {
    clock format 849357296 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Nov November 11/30/1996 12:34:56 die xxx mensis xi annoque mcmxcvi xii h xxxiv m lvi s 19 mcm 30 xxx 30 xxx Nov 335 2450418 11 xi 11 11/30/1996 die xxx mensis xi annoque mcmxcvi 96 xcvi 1996}
test clock-2.1415 {conversion of 1996-12-01} {
    clock format 849443696 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Dec December 12/01/1996 12:34:56 die i mensis xii annoque mcmxcvi xii h xxxiv m lvi s 19 mcm 01 i  1 i Dec 336 2450419 12 xii 12 12/01/1996 die i mensis xii annoque mcmxcvi 96 xcvi 1996}
test clock-2.1416 {conversion of 1996-12-31} {
    clock format 852035696 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Dec December 12/31/1996 12:34:56 die xxxi mensis xii annoque mcmxcvi xii h xxxiv m lvi s 19 mcm 31 xxxi 31 xxxi Dec 366 2450449 12 xii 12 12/31/1996 die xxxi mensis xii annoque mcmxcvi 96 xcvi 1996}
test clock-2.1417 {conversion of 1997-01-01} {
    clock format 852122096 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Jan January 01/01/1997 12:34:56 die i mensis i annoque mcmxcvii xii h xxxiv m lvi s 19 mcm 01 i  1 i Jan 001 2450450 01 i  1 01/01/1997 die i mensis i annoque mcmxcvii 97 xcvii 1997}
test clock-2.1418 {conversion of 1997-01-31} {
    clock format 854714096 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Jan January 01/31/1997 12:34:56 die xxxi mensis i annoque mcmxcvii xii h xxxiv m lvi s 19 mcm 31 xxxi 31 xxxi Jan 031 2450480 01 i  1 01/31/1997 die xxxi mensis i annoque mcmxcvii 97 xcvii 1997}
test clock-2.1419 {conversion of 1997-02-01} {
    clock format 854800496 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Feb February 02/01/1997 12:34:56 die i mensis ii annoque mcmxcvii xii h xxxiv m lvi s 19 mcm 01 i  1 i Feb 032 2450481 02 ii  2 02/01/1997 die i mensis ii annoque mcmxcvii 97 xcvii 1997}
test clock-2.1420 {conversion of 1997-02-28} {
    clock format 857133296 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Feb February 02/28/1997 12:34:56 die xxviii mensis ii annoque mcmxcvii xii h xxxiv m lvi s 19 mcm 28 xxviii 28 xxviii Feb 059 2450508 02 ii  2 02/28/1997 die xxviii mensis ii annoque mcmxcvii 97 xcvii 1997}
test clock-2.1421 {conversion of 1997-03-01} {
    clock format 857219696 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Mar March 03/01/1997 12:34:56 die i mensis iii annoque mcmxcvii xii h xxxiv m lvi s 19 mcm 01 i  1 i Mar 060 2450509 03 iii  3 03/01/1997 die i mensis iii annoque mcmxcvii 97 xcvii 1997}
test clock-2.1422 {conversion of 1997-03-31} {
    clock format 859811696 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Mar March 03/31/1997 12:34:56 die xxxi mensis iii annoque mcmxcvii xii h xxxiv m lvi s 19 mcm 31 xxxi 31 xxxi Mar 090 2450539 03 iii  3 03/31/1997 die xxxi mensis iii annoque mcmxcvii 97 xcvii 1997}
test clock-2.1423 {conversion of 1997-04-01} {
    clock format 859898096 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Apr April 04/01/1997 12:34:56 die i mensis iv annoque mcmxcvii xii h xxxiv m lvi s 19 mcm 01 i  1 i Apr 091 2450540 04 iv  4 04/01/1997 die i mensis iv annoque mcmxcvii 97 xcvii 1997}
test clock-2.1424 {conversion of 1997-04-30} {
    clock format 862403696 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Apr April 04/30/1997 12:34:56 die xxx mensis iv annoque mcmxcvii xii h xxxiv m lvi s 19 mcm 30 xxx 30 xxx Apr 120 2450569 04 iv  4 04/30/1997 die xxx mensis iv annoque mcmxcvii 97 xcvii 1997}
test clock-2.1425 {conversion of 1997-05-01} {
    clock format 862490096 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {May May 05/01/1997 12:34:56 die i mensis v annoque mcmxcvii xii h xxxiv m lvi s 19 mcm 01 i  1 i May 121 2450570 05 v  5 05/01/1997 die i mensis v annoque mcmxcvii 97 xcvii 1997}
test clock-2.1426 {conversion of 1997-05-31} {
    clock format 865082096 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {May May 05/31/1997 12:34:56 die xxxi mensis v annoque mcmxcvii xii h xxxiv m lvi s 19 mcm 31 xxxi 31 xxxi May 151 2450600 05 v  5 05/31/1997 die xxxi mensis v annoque mcmxcvii 97 xcvii 1997}
test clock-2.1427 {conversion of 1997-06-01} {
    clock format 865168496 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Jun June 06/01/1997 12:34:56 die i mensis vi annoque mcmxcvii xii h xxxiv m lvi s 19 mcm 01 i  1 i Jun 152 2450601 06 vi  6 06/01/1997 die i mensis vi annoque mcmxcvii 97 xcvii 1997}
test clock-2.1428 {conversion of 1997-06-30} {
    clock format 867674096 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Jun June 06/30/1997 12:34:56 die xxx mensis vi annoque mcmxcvii xii h xxxiv m lvi s 19 mcm 30 xxx 30 xxx Jun 181 2450630 06 vi  6 06/30/1997 die xxx mensis vi annoque mcmxcvii 97 xcvii 1997}
test clock-2.1429 {conversion of 1997-07-01} {
    clock format 867760496 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Jul July 07/01/1997 12:34:56 die i mensis vii annoque mcmxcvii xii h xxxiv m lvi s 19 mcm 01 i  1 i Jul 182 2450631 07 vii  7 07/01/1997 die i mensis vii annoque mcmxcvii 97 xcvii 1997}
test clock-2.1430 {conversion of 1997-07-31} {
    clock format 870352496 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Jul July 07/31/1997 12:34:56 die xxxi mensis vii annoque mcmxcvii xii h xxxiv m lvi s 19 mcm 31 xxxi 31 xxxi Jul 212 2450661 07 vii  7 07/31/1997 die xxxi mensis vii annoque mcmxcvii 97 xcvii 1997}
test clock-2.1431 {conversion of 1997-08-01} {
    clock format 870438896 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Aug August 08/01/1997 12:34:56 die i mensis viii annoque mcmxcvii xii h xxxiv m lvi s 19 mcm 01 i  1 i Aug 213 2450662 08 viii  8 08/01/1997 die i mensis viii annoque mcmxcvii 97 xcvii 1997}
test clock-2.1432 {conversion of 1997-08-31} {
    clock format 873030896 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Aug August 08/31/1997 12:34:56 die xxxi mensis viii annoque mcmxcvii xii h xxxiv m lvi s 19 mcm 31 xxxi 31 xxxi Aug 243 2450692 08 viii  8 08/31/1997 die xxxi mensis viii annoque mcmxcvii 97 xcvii 1997}
test clock-2.1433 {conversion of 1997-09-01} {
    clock format 873117296 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Sep September 09/01/1997 12:34:56 die i mensis ix annoque mcmxcvii xii h xxxiv m lvi s 19 mcm 01 i  1 i Sep 244 2450693 09 ix  9 09/01/1997 die i mensis ix annoque mcmxcvii 97 xcvii 1997}
test clock-2.1434 {conversion of 1997-09-30} {
    clock format 875622896 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Sep September 09/30/1997 12:34:56 die xxx mensis ix annoque mcmxcvii xii h xxxiv m lvi s 19 mcm 30 xxx 30 xxx Sep 273 2450722 09 ix  9 09/30/1997 die xxx mensis ix annoque mcmxcvii 97 xcvii 1997}
test clock-2.1435 {conversion of 1997-10-01} {
    clock format 875709296 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Oct October 10/01/1997 12:34:56 die i mensis x annoque mcmxcvii xii h xxxiv m lvi s 19 mcm 01 i  1 i Oct 274 2450723 10 x 10 10/01/1997 die i mensis x annoque mcmxcvii 97 xcvii 1997}
test clock-2.1436 {conversion of 1997-10-31} {
    clock format 878301296 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Oct October 10/31/1997 12:34:56 die xxxi mensis x annoque mcmxcvii xii h xxxiv m lvi s 19 mcm 31 xxxi 31 xxxi Oct 304 2450753 10 x 10 10/31/1997 die xxxi mensis x annoque mcmxcvii 97 xcvii 1997}
test clock-2.1437 {conversion of 1997-11-01} {
    clock format 878387696 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Nov November 11/01/1997 12:34:56 die i mensis xi annoque mcmxcvii xii h xxxiv m lvi s 19 mcm 01 i  1 i Nov 305 2450754 11 xi 11 11/01/1997 die i mensis xi annoque mcmxcvii 97 xcvii 1997}
test clock-2.1438 {conversion of 1997-11-30} {
    clock format 880893296 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Nov November 11/30/1997 12:34:56 die xxx mensis xi annoque mcmxcvii xii h xxxiv m lvi s 19 mcm 30 xxx 30 xxx Nov 334 2450783 11 xi 11 11/30/1997 die xxx mensis xi annoque mcmxcvii 97 xcvii 1997}
test clock-2.1439 {conversion of 1997-12-01} {
    clock format 880979696 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Dec December 12/01/1997 12:34:56 die i mensis xii annoque mcmxcvii xii h xxxiv m lvi s 19 mcm 01 i  1 i Dec 335 2450784 12 xii 12 12/01/1997 die i mensis xii annoque mcmxcvii 97 xcvii 1997}
test clock-2.1440 {conversion of 1997-12-31} {
    clock format 883571696 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Dec December 12/31/1997 12:34:56 die xxxi mensis xii annoque mcmxcvii xii h xxxiv m lvi s 19 mcm 31 xxxi 31 xxxi Dec 365 2450814 12 xii 12 12/31/1997 die xxxi mensis xii annoque mcmxcvii 97 xcvii 1997}
test clock-2.1441 {conversion of 2000-01-01} {
    clock format 946730096 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Jan January 01/01/2000 12:34:56 die i mensis i annoque mm? xii h xxxiv m lvi s 20 mm 01 i  1 i Jan 001 2451545 01 i  1 01/01/2000 die i mensis i annoque mm? 00 ? 2000}
test clock-2.1442 {conversion of 2000-01-31} {
    clock format 949322096 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Jan January 01/31/2000 12:34:56 die xxxi mensis i annoque mm? xii h xxxiv m lvi s 20 mm 31 xxxi 31 xxxi Jan 031 2451575 01 i  1 01/31/2000 die xxxi mensis i annoque mm? 00 ? 2000}
test clock-2.1443 {conversion of 2000-02-01} {
    clock format 949408496 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Feb February 02/01/2000 12:34:56 die i mensis ii annoque mm? xii h xxxiv m lvi s 20 mm 01 i  1 i Feb 032 2451576 02 ii  2 02/01/2000 die i mensis ii annoque mm? 00 ? 2000}
test clock-2.1444 {conversion of 2000-02-29} {
    clock format 951827696 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Feb February 02/29/2000 12:34:56 die xxix mensis ii annoque mm? xii h xxxiv m lvi s 20 mm 29 xxix 29 xxix Feb 060 2451604 02 ii  2 02/29/2000 die xxix mensis ii annoque mm? 00 ? 2000}
test clock-2.1445 {conversion of 2000-03-01} {
    clock format 951914096 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Mar March 03/01/2000 12:34:56 die i mensis iii annoque mm? xii h xxxiv m lvi s 20 mm 01 i  1 i Mar 061 2451605 03 iii  3 03/01/2000 die i mensis iii annoque mm? 00 ? 2000}
test clock-2.1446 {conversion of 2000-03-31} {
    clock format 954506096 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Mar March 03/31/2000 12:34:56 die xxxi mensis iii annoque mm? xii h xxxiv m lvi s 20 mm 31 xxxi 31 xxxi Mar 091 2451635 03 iii  3 03/31/2000 die xxxi mensis iii annoque mm? 00 ? 2000}
test clock-2.1447 {conversion of 2000-04-01} {
    clock format 954592496 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Apr April 04/01/2000 12:34:56 die i mensis iv annoque mm? xii h xxxiv m lvi s 20 mm 01 i  1 i Apr 092 2451636 04 iv  4 04/01/2000 die i mensis iv annoque mm? 00 ? 2000}
test clock-2.1448 {conversion of 2000-04-30} {
    clock format 957098096 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Apr April 04/30/2000 12:34:56 die xxx mensis iv annoque mm? xii h xxxiv m lvi s 20 mm 30 xxx 30 xxx Apr 121 2451665 04 iv  4 04/30/2000 die xxx mensis iv annoque mm? 00 ? 2000}
test clock-2.1449 {conversion of 2000-05-01} {
    clock format 957184496 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {May May 05/01/2000 12:34:56 die i mensis v annoque mm? xii h xxxiv m lvi s 20 mm 01 i  1 i May 122 2451666 05 v  5 05/01/2000 die i mensis v annoque mm? 00 ? 2000}
test clock-2.1450 {conversion of 2000-05-31} {
    clock format 959776496 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {May May 05/31/2000 12:34:56 die xxxi mensis v annoque mm? xii h xxxiv m lvi s 20 mm 31 xxxi 31 xxxi May 152 2451696 05 v  5 05/31/2000 die xxxi mensis v annoque mm? 00 ? 2000}
test clock-2.1451 {conversion of 2000-06-01} {
    clock format 959862896 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Jun June 06/01/2000 12:34:56 die i mensis vi annoque mm? xii h xxxiv m lvi s 20 mm 01 i  1 i Jun 153 2451697 06 vi  6 06/01/2000 die i mensis vi annoque mm? 00 ? 2000}
test clock-2.1452 {conversion of 2000-06-30} {
    clock format 962368496 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Jun June 06/30/2000 12:34:56 die xxx mensis vi annoque mm? xii h xxxiv m lvi s 20 mm 30 xxx 30 xxx Jun 182 2451726 06 vi  6 06/30/2000 die xxx mensis vi annoque mm? 00 ? 2000}
test clock-2.1453 {conversion of 2000-07-01} {
    clock format 962454896 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Jul July 07/01/2000 12:34:56 die i mensis vii annoque mm? xii h xxxiv m lvi s 20 mm 01 i  1 i Jul 183 2451727 07 vii  7 07/01/2000 die i mensis vii annoque mm? 00 ? 2000}
test clock-2.1454 {conversion of 2000-07-31} {
    clock format 965046896 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Jul July 07/31/2000 12:34:56 die xxxi mensis vii annoque mm? xii h xxxiv m lvi s 20 mm 31 xxxi 31 xxxi Jul 213 2451757 07 vii  7 07/31/2000 die xxxi mensis vii annoque mm? 00 ? 2000}
test clock-2.1455 {conversion of 2000-08-01} {
    clock format 965133296 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Aug August 08/01/2000 12:34:56 die i mensis viii annoque mm? xii h xxxiv m lvi s 20 mm 01 i  1 i Aug 214 2451758 08 viii  8 08/01/2000 die i mensis viii annoque mm? 00 ? 2000}
test clock-2.1456 {conversion of 2000-08-31} {
    clock format 967725296 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Aug August 08/31/2000 12:34:56 die xxxi mensis viii annoque mm? xii h xxxiv m lvi s 20 mm 31 xxxi 31 xxxi Aug 244 2451788 08 viii  8 08/31/2000 die xxxi mensis viii annoque mm? 00 ? 2000}
test clock-2.1457 {conversion of 2000-09-01} {
    clock format 967811696 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Sep September 09/01/2000 12:34:56 die i mensis ix annoque mm? xii h xxxiv m lvi s 20 mm 01 i  1 i Sep 245 2451789 09 ix  9 09/01/2000 die i mensis ix annoque mm? 00 ? 2000}
test clock-2.1458 {conversion of 2000-09-30} {
    clock format 970317296 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Sep September 09/30/2000 12:34:56 die xxx mensis ix annoque mm? xii h xxxiv m lvi s 20 mm 30 xxx 30 xxx Sep 274 2451818 09 ix  9 09/30/2000 die xxx mensis ix annoque mm? 00 ? 2000}
test clock-2.1459 {conversion of 2000-10-01} {
    clock format 970403696 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Oct October 10/01/2000 12:34:56 die i mensis x annoque mm? xii h xxxiv m lvi s 20 mm 01 i  1 i Oct 275 2451819 10 x 10 10/01/2000 die i mensis x annoque mm? 00 ? 2000}
test clock-2.1460 {conversion of 2000-10-31} {
    clock format 972995696 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Oct October 10/31/2000 12:34:56 die xxxi mensis x annoque mm? xii h xxxiv m lvi s 20 mm 31 xxxi 31 xxxi Oct 305 2451849 10 x 10 10/31/2000 die xxxi mensis x annoque mm? 00 ? 2000}
test clock-2.1461 {conversion of 2000-11-01} {
    clock format 973082096 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Nov November 11/01/2000 12:34:56 die i mensis xi annoque mm? xii h xxxiv m lvi s 20 mm 01 i  1 i Nov 306 2451850 11 xi 11 11/01/2000 die i mensis xi annoque mm? 00 ? 2000}
test clock-2.1462 {conversion of 2000-11-30} {
    clock format 975587696 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Nov November 11/30/2000 12:34:56 die xxx mensis xi annoque mm? xii h xxxiv m lvi s 20 mm 30 xxx 30 xxx Nov 335 2451879 11 xi 11 11/30/2000 die xxx mensis xi annoque mm? 00 ? 2000}
test clock-2.1463 {conversion of 2000-12-01} {
    clock format 975674096 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Dec December 12/01/2000 12:34:56 die i mensis xii annoque mm? xii h xxxiv m lvi s 20 mm 01 i  1 i Dec 336 2451880 12 xii 12 12/01/2000 die i mensis xii annoque mm? 00 ? 2000}
test clock-2.1464 {conversion of 2000-12-31} {
    clock format 978266096 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Dec December 12/31/2000 12:34:56 die xxxi mensis xii annoque mm? xii h xxxiv m lvi s 20 mm 31 xxxi 31 xxxi Dec 366 2451910 12 xii 12 12/31/2000 die xxxi mensis xii annoque mm? 00 ? 2000}
test clock-2.1465 {conversion of 2001-01-01} {
    clock format 978352496 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Jan January 01/01/2001 12:34:56 die i mensis i annoque mmi xii h xxxiv m lvi s 20 mm 01 i  1 i Jan 001 2451911 01 i  1 01/01/2001 die i mensis i annoque mmi 01 i 2001}
test clock-2.1466 {conversion of 2001-01-31} {
    clock format 980944496 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Jan January 01/31/2001 12:34:56 die xxxi mensis i annoque mmi xii h xxxiv m lvi s 20 mm 31 xxxi 31 xxxi Jan 031 2451941 01 i  1 01/31/2001 die xxxi mensis i annoque mmi 01 i 2001}
test clock-2.1467 {conversion of 2001-02-01} {
    clock format 981030896 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Feb February 02/01/2001 12:34:56 die i mensis ii annoque mmi xii h xxxiv m lvi s 20 mm 01 i  1 i Feb 032 2451942 02 ii  2 02/01/2001 die i mensis ii annoque mmi 01 i 2001}
test clock-2.1468 {conversion of 2001-02-28} {
    clock format 983363696 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Feb February 02/28/2001 12:34:56 die xxviii mensis ii annoque mmi xii h xxxiv m lvi s 20 mm 28 xxviii 28 xxviii Feb 059 2451969 02 ii  2 02/28/2001 die xxviii mensis ii annoque mmi 01 i 2001}
test clock-2.1469 {conversion of 2001-03-01} {
    clock format 983450096 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Mar March 03/01/2001 12:34:56 die i mensis iii annoque mmi xii h xxxiv m lvi s 20 mm 01 i  1 i Mar 060 2451970 03 iii  3 03/01/2001 die i mensis iii annoque mmi 01 i 2001}
test clock-2.1470 {conversion of 2001-03-31} {
    clock format 986042096 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Mar March 03/31/2001 12:34:56 die xxxi mensis iii annoque mmi xii h xxxiv m lvi s 20 mm 31 xxxi 31 xxxi Mar 090 2452000 03 iii  3 03/31/2001 die xxxi mensis iii annoque mmi 01 i 2001}
test clock-2.1471 {conversion of 2001-04-01} {
    clock format 986128496 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Apr April 04/01/2001 12:34:56 die i mensis iv annoque mmi xii h xxxiv m lvi s 20 mm 01 i  1 i Apr 091 2452001 04 iv  4 04/01/2001 die i mensis iv annoque mmi 01 i 2001}
test clock-2.1472 {conversion of 2001-04-30} {
    clock format 988634096 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Apr April 04/30/2001 12:34:56 die xxx mensis iv annoque mmi xii h xxxiv m lvi s 20 mm 30 xxx 30 xxx Apr 120 2452030 04 iv  4 04/30/2001 die xxx mensis iv annoque mmi 01 i 2001}
test clock-2.1473 {conversion of 2001-05-01} {
    clock format 988720496 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {May May 05/01/2001 12:34:56 die i mensis v annoque mmi xii h xxxiv m lvi s 20 mm 01 i  1 i May 121 2452031 05 v  5 05/01/2001 die i mensis v annoque mmi 01 i 2001}
test clock-2.1474 {conversion of 2001-05-31} {
    clock format 991312496 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {May May 05/31/2001 12:34:56 die xxxi mensis v annoque mmi xii h xxxiv m lvi s 20 mm 31 xxxi 31 xxxi May 151 2452061 05 v  5 05/31/2001 die xxxi mensis v annoque mmi 01 i 2001}
test clock-2.1475 {conversion of 2001-06-01} {
    clock format 991398896 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Jun June 06/01/2001 12:34:56 die i mensis vi annoque mmi xii h xxxiv m lvi s 20 mm 01 i  1 i Jun 152 2452062 06 vi  6 06/01/2001 die i mensis vi annoque mmi 01 i 2001}
test clock-2.1476 {conversion of 2001-06-30} {
    clock format 993904496 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Jun June 06/30/2001 12:34:56 die xxx mensis vi annoque mmi xii h xxxiv m lvi s 20 mm 30 xxx 30 xxx Jun 181 2452091 06 vi  6 06/30/2001 die xxx mensis vi annoque mmi 01 i 2001}
test clock-2.1477 {conversion of 2001-07-01} {
    clock format 993990896 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Jul July 07/01/2001 12:34:56 die i mensis vii annoque mmi xii h xxxiv m lvi s 20 mm 01 i  1 i Jul 182 2452092 07 vii  7 07/01/2001 die i mensis vii annoque mmi 01 i 2001}
test clock-2.1478 {conversion of 2001-07-31} {
    clock format 996582896 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Jul July 07/31/2001 12:34:56 die xxxi mensis vii annoque mmi xii h xxxiv m lvi s 20 mm 31 xxxi 31 xxxi Jul 212 2452122 07 vii  7 07/31/2001 die xxxi mensis vii annoque mmi 01 i 2001}
test clock-2.1479 {conversion of 2001-08-01} {
    clock format 996669296 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Aug August 08/01/2001 12:34:56 die i mensis viii annoque mmi xii h xxxiv m lvi s 20 mm 01 i  1 i Aug 213 2452123 08 viii  8 08/01/2001 die i mensis viii annoque mmi 01 i 2001}
test clock-2.1480 {conversion of 2001-08-31} {
    clock format 999261296 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Aug August 08/31/2001 12:34:56 die xxxi mensis viii annoque mmi xii h xxxiv m lvi s 20 mm 31 xxxi 31 xxxi Aug 243 2452153 08 viii  8 08/31/2001 die xxxi mensis viii annoque mmi 01 i 2001}
test clock-2.1481 {conversion of 2001-09-01} {
    clock format 999347696 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Sep September 09/01/2001 12:34:56 die i mensis ix annoque mmi xii h xxxiv m lvi s 20 mm 01 i  1 i Sep 244 2452154 09 ix  9 09/01/2001 die i mensis ix annoque mmi 01 i 2001}
test clock-2.1482 {conversion of 2001-09-30} {
    clock format 1001853296 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Sep September 09/30/2001 12:34:56 die xxx mensis ix annoque mmi xii h xxxiv m lvi s 20 mm 30 xxx 30 xxx Sep 273 2452183 09 ix  9 09/30/2001 die xxx mensis ix annoque mmi 01 i 2001}
test clock-2.1483 {conversion of 2001-10-01} {
    clock format 1001939696 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Oct October 10/01/2001 12:34:56 die i mensis x annoque mmi xii h xxxiv m lvi s 20 mm 01 i  1 i Oct 274 2452184 10 x 10 10/01/2001 die i mensis x annoque mmi 01 i 2001}
test clock-2.1484 {conversion of 2001-10-31} {
    clock format 1004531696 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Oct October 10/31/2001 12:34:56 die xxxi mensis x annoque mmi xii h xxxiv m lvi s 20 mm 31 xxxi 31 xxxi Oct 304 2452214 10 x 10 10/31/2001 die xxxi mensis x annoque mmi 01 i 2001}
test clock-2.1485 {conversion of 2001-11-01} {
    clock format 1004618096 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Nov November 11/01/2001 12:34:56 die i mensis xi annoque mmi xii h xxxiv m lvi s 20 mm 01 i  1 i Nov 305 2452215 11 xi 11 11/01/2001 die i mensis xi annoque mmi 01 i 2001}
test clock-2.1486 {conversion of 2001-11-30} {
    clock format 1007123696 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Nov November 11/30/2001 12:34:56 die xxx mensis xi annoque mmi xii h xxxiv m lvi s 20 mm 30 xxx 30 xxx Nov 334 2452244 11 xi 11 11/30/2001 die xxx mensis xi annoque mmi 01 i 2001}
test clock-2.1487 {conversion of 2001-12-01} {
    clock format 1007210096 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Dec December 12/01/2001 12:34:56 die i mensis xii annoque mmi xii h xxxiv m lvi s 20 mm 01 i  1 i Dec 335 2452245 12 xii 12 12/01/2001 die i mensis xii annoque mmi 01 i 2001}
test clock-2.1488 {conversion of 2001-12-31} {
    clock format 1009802096 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Dec December 12/31/2001 12:34:56 die xxxi mensis xii annoque mmi xii h xxxiv m lvi s 20 mm 31 xxxi 31 xxxi Dec 365 2452275 12 xii 12 12/31/2001 die xxxi mensis xii annoque mmi 01 i 2001}
test clock-2.1489 {conversion of 2002-01-01} {
    clock format 1009888496 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Jan January 01/01/2002 12:34:56 die i mensis i annoque mmii xii h xxxiv m lvi s 20 mm 01 i  1 i Jan 001 2452276 01 i  1 01/01/2002 die i mensis i annoque mmii 02 ii 2002}
test clock-2.1490 {conversion of 2002-01-31} {
    clock format 1012480496 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Jan January 01/31/2002 12:34:56 die xxxi mensis i annoque mmii xii h xxxiv m lvi s 20 mm 31 xxxi 31 xxxi Jan 031 2452306 01 i  1 01/31/2002 die xxxi mensis i annoque mmii 02 ii 2002}
test clock-2.1491 {conversion of 2002-02-01} {
    clock format 1012566896 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Feb February 02/01/2002 12:34:56 die i mensis ii annoque mmii xii h xxxiv m lvi s 20 mm 01 i  1 i Feb 032 2452307 02 ii  2 02/01/2002 die i mensis ii annoque mmii 02 ii 2002}
test clock-2.1492 {conversion of 2002-02-28} {
    clock format 1014899696 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Feb February 02/28/2002 12:34:56 die xxviii mensis ii annoque mmii xii h xxxiv m lvi s 20 mm 28 xxviii 28 xxviii Feb 059 2452334 02 ii  2 02/28/2002 die xxviii mensis ii annoque mmii 02 ii 2002}
test clock-2.1493 {conversion of 2002-03-01} {
    clock format 1014986096 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Mar March 03/01/2002 12:34:56 die i mensis iii annoque mmii xii h xxxiv m lvi s 20 mm 01 i  1 i Mar 060 2452335 03 iii  3 03/01/2002 die i mensis iii annoque mmii 02 ii 2002}
test clock-2.1494 {conversion of 2002-03-31} {
    clock format 1017578096 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Mar March 03/31/2002 12:34:56 die xxxi mensis iii annoque mmii xii h xxxiv m lvi s 20 mm 31 xxxi 31 xxxi Mar 090 2452365 03 iii  3 03/31/2002 die xxxi mensis iii annoque mmii 02 ii 2002}
test clock-2.1495 {conversion of 2002-04-01} {
    clock format 1017664496 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Apr April 04/01/2002 12:34:56 die i mensis iv annoque mmii xii h xxxiv m lvi s 20 mm 01 i  1 i Apr 091 2452366 04 iv  4 04/01/2002 die i mensis iv annoque mmii 02 ii 2002}
test clock-2.1496 {conversion of 2002-04-30} {
    clock format 1020170096 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Apr April 04/30/2002 12:34:56 die xxx mensis iv annoque mmii xii h xxxiv m lvi s 20 mm 30 xxx 30 xxx Apr 120 2452395 04 iv  4 04/30/2002 die xxx mensis iv annoque mmii 02 ii 2002}
test clock-2.1497 {conversion of 2002-05-01} {
    clock format 1020256496 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {May May 05/01/2002 12:34:56 die i mensis v annoque mmii xii h xxxiv m lvi s 20 mm 01 i  1 i May 121 2452396 05 v  5 05/01/2002 die i mensis v annoque mmii 02 ii 2002}
test clock-2.1498 {conversion of 2002-05-31} {
    clock format 1022848496 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {May May 05/31/2002 12:34:56 die xxxi mensis v annoque mmii xii h xxxiv m lvi s 20 mm 31 xxxi 31 xxxi May 151 2452426 05 v  5 05/31/2002 die xxxi mensis v annoque mmii 02 ii 2002}
test clock-2.1499 {conversion of 2002-06-01} {
    clock format 1022934896 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Jun June 06/01/2002 12:34:56 die i mensis vi annoque mmii xii h xxxiv m lvi s 20 mm 01 i  1 i Jun 152 2452427 06 vi  6 06/01/2002 die i mensis vi annoque mmii 02 ii 2002}
test clock-2.1500 {conversion of 2002-06-30} {
    clock format 1025440496 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Jun June 06/30/2002 12:34:56 die xxx mensis vi annoque mmii xii h xxxiv m lvi s 20 mm 30 xxx 30 xxx Jun 181 2452456 06 vi  6 06/30/2002 die xxx mensis vi annoque mmii 02 ii 2002}
test clock-2.1501 {conversion of 2002-07-01} {
    clock format 1025526896 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Jul July 07/01/2002 12:34:56 die i mensis vii annoque mmii xii h xxxiv m lvi s 20 mm 01 i  1 i Jul 182 2452457 07 vii  7 07/01/2002 die i mensis vii annoque mmii 02 ii 2002}
test clock-2.1502 {conversion of 2002-07-31} {
    clock format 1028118896 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Jul July 07/31/2002 12:34:56 die xxxi mensis vii annoque mmii xii h xxxiv m lvi s 20 mm 31 xxxi 31 xxxi Jul 212 2452487 07 vii  7 07/31/2002 die xxxi mensis vii annoque mmii 02 ii 2002}
test clock-2.1503 {conversion of 2002-08-01} {
    clock format 1028205296 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Aug August 08/01/2002 12:34:56 die i mensis viii annoque mmii xii h xxxiv m lvi s 20 mm 01 i  1 i Aug 213 2452488 08 viii  8 08/01/2002 die i mensis viii annoque mmii 02 ii 2002}
test clock-2.1504 {conversion of 2002-08-31} {
    clock format 1030797296 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Aug August 08/31/2002 12:34:56 die xxxi mensis viii annoque mmii xii h xxxiv m lvi s 20 mm 31 xxxi 31 xxxi Aug 243 2452518 08 viii  8 08/31/2002 die xxxi mensis viii annoque mmii 02 ii 2002}
test clock-2.1505 {conversion of 2002-09-01} {
    clock format 1030883696 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Sep September 09/01/2002 12:34:56 die i mensis ix annoque mmii xii h xxxiv m lvi s 20 mm 01 i  1 i Sep 244 2452519 09 ix  9 09/01/2002 die i mensis ix annoque mmii 02 ii 2002}
test clock-2.1506 {conversion of 2002-09-30} {
    clock format 1033389296 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Sep September 09/30/2002 12:34:56 die xxx mensis ix annoque mmii xii h xxxiv m lvi s 20 mm 30 xxx 30 xxx Sep 273 2452548 09 ix  9 09/30/2002 die xxx mensis ix annoque mmii 02 ii 2002}
test clock-2.1507 {conversion of 2002-10-01} {
    clock format 1033475696 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Oct October 10/01/2002 12:34:56 die i mensis x annoque mmii xii h xxxiv m lvi s 20 mm 01 i  1 i Oct 274 2452549 10 x 10 10/01/2002 die i mensis x annoque mmii 02 ii 2002}
test clock-2.1508 {conversion of 2002-10-31} {
    clock format 1036067696 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Oct October 10/31/2002 12:34:56 die xxxi mensis x annoque mmii xii h xxxiv m lvi s 20 mm 31 xxxi 31 xxxi Oct 304 2452579 10 x 10 10/31/2002 die xxxi mensis x annoque mmii 02 ii 2002}
test clock-2.1509 {conversion of 2002-11-01} {
    clock format 1036154096 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Nov November 11/01/2002 12:34:56 die i mensis xi annoque mmii xii h xxxiv m lvi s 20 mm 01 i  1 i Nov 305 2452580 11 xi 11 11/01/2002 die i mensis xi annoque mmii 02 ii 2002}
test clock-2.1510 {conversion of 2002-11-30} {
    clock format 1038659696 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Nov November 11/30/2002 12:34:56 die xxx mensis xi annoque mmii xii h xxxiv m lvi s 20 mm 30 xxx 30 xxx Nov 334 2452609 11 xi 11 11/30/2002 die xxx mensis xi annoque mmii 02 ii 2002}
test clock-2.1511 {conversion of 2002-12-01} {
    clock format 1038746096 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Dec December 12/01/2002 12:34:56 die i mensis xii annoque mmii xii h xxxiv m lvi s 20 mm 01 i  1 i Dec 335 2452610 12 xii 12 12/01/2002 die i mensis xii annoque mmii 02 ii 2002}
test clock-2.1512 {conversion of 2002-12-31} {
    clock format 1041338096 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Dec December 12/31/2002 12:34:56 die xxxi mensis xii annoque mmii xii h xxxiv m lvi s 20 mm 31 xxxi 31 xxxi Dec 365 2452640 12 xii 12 12/31/2002 die xxxi mensis xii annoque mmii 02 ii 2002}
test clock-2.1513 {conversion of 2003-01-01} {
    clock format 1041424496 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Jan January 01/01/2003 12:34:56 die i mensis i annoque mmiii xii h xxxiv m lvi s 20 mm 01 i  1 i Jan 001 2452641 01 i  1 01/01/2003 die i mensis i annoque mmiii 03 iii 2003}
test clock-2.1514 {conversion of 2003-01-31} {
    clock format 1044016496 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Jan January 01/31/2003 12:34:56 die xxxi mensis i annoque mmiii xii h xxxiv m lvi s 20 mm 31 xxxi 31 xxxi Jan 031 2452671 01 i  1 01/31/2003 die xxxi mensis i annoque mmiii 03 iii 2003}
test clock-2.1515 {conversion of 2003-02-01} {
    clock format 1044102896 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Feb February 02/01/2003 12:34:56 die i mensis ii annoque mmiii xii h xxxiv m lvi s 20 mm 01 i  1 i Feb 032 2452672 02 ii  2 02/01/2003 die i mensis ii annoque mmiii 03 iii 2003}
test clock-2.1516 {conversion of 2003-02-28} {
    clock format 1046435696 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Feb February 02/28/2003 12:34:56 die xxviii mensis ii annoque mmiii xii h xxxiv m lvi s 20 mm 28 xxviii 28 xxviii Feb 059 2452699 02 ii  2 02/28/2003 die xxviii mensis ii annoque mmiii 03 iii 2003}
test clock-2.1517 {conversion of 2003-03-01} {
    clock format 1046522096 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Mar March 03/01/2003 12:34:56 die i mensis iii annoque mmiii xii h xxxiv m lvi s 20 mm 01 i  1 i Mar 060 2452700 03 iii  3 03/01/2003 die i mensis iii annoque mmiii 03 iii 2003}
test clock-2.1518 {conversion of 2003-03-31} {
    clock format 1049114096 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Mar March 03/31/2003 12:34:56 die xxxi mensis iii annoque mmiii xii h xxxiv m lvi s 20 mm 31 xxxi 31 xxxi Mar 090 2452730 03 iii  3 03/31/2003 die xxxi mensis iii annoque mmiii 03 iii 2003}
test clock-2.1519 {conversion of 2003-04-01} {
    clock format 1049200496 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Apr April 04/01/2003 12:34:56 die i mensis iv annoque mmiii xii h xxxiv m lvi s 20 mm 01 i  1 i Apr 091 2452731 04 iv  4 04/01/2003 die i mensis iv annoque mmiii 03 iii 2003}
test clock-2.1520 {conversion of 2003-04-30} {
    clock format 1051706096 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Apr April 04/30/2003 12:34:56 die xxx mensis iv annoque mmiii xii h xxxiv m lvi s 20 mm 30 xxx 30 xxx Apr 120 2452760 04 iv  4 04/30/2003 die xxx mensis iv annoque mmiii 03 iii 2003}
test clock-2.1521 {conversion of 2003-05-01} {
    clock format 1051792496 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {May May 05/01/2003 12:34:56 die i mensis v annoque mmiii xii h xxxiv m lvi s 20 mm 01 i  1 i May 121 2452761 05 v  5 05/01/2003 die i mensis v annoque mmiii 03 iii 2003}
test clock-2.1522 {conversion of 2003-05-31} {
    clock format 1054384496 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {May May 05/31/2003 12:34:56 die xxxi mensis v annoque mmiii xii h xxxiv m lvi s 20 mm 31 xxxi 31 xxxi May 151 2452791 05 v  5 05/31/2003 die xxxi mensis v annoque mmiii 03 iii 2003}
test clock-2.1523 {conversion of 2003-06-01} {
    clock format 1054470896 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Jun June 06/01/2003 12:34:56 die i mensis vi annoque mmiii xii h xxxiv m lvi s 20 mm 01 i  1 i Jun 152 2452792 06 vi  6 06/01/2003 die i mensis vi annoque mmiii 03 iii 2003}
test clock-2.1524 {conversion of 2003-06-30} {
    clock format 1056976496 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Jun June 06/30/2003 12:34:56 die xxx mensis vi annoque mmiii xii h xxxiv m lvi s 20 mm 30 xxx 30 xxx Jun 181 2452821 06 vi  6 06/30/2003 die xxx mensis vi annoque mmiii 03 iii 2003}
test clock-2.1525 {conversion of 2003-07-01} {
    clock format 1057062896 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Jul July 07/01/2003 12:34:56 die i mensis vii annoque mmiii xii h xxxiv m lvi s 20 mm 01 i  1 i Jul 182 2452822 07 vii  7 07/01/2003 die i mensis vii annoque mmiii 03 iii 2003}
test clock-2.1526 {conversion of 2003-07-31} {
    clock format 1059654896 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Jul July 07/31/2003 12:34:56 die xxxi mensis vii annoque mmiii xii h xxxiv m lvi s 20 mm 31 xxxi 31 xxxi Jul 212 2452852 07 vii  7 07/31/2003 die xxxi mensis vii annoque mmiii 03 iii 2003}
test clock-2.1527 {conversion of 2003-08-01} {
    clock format 1059741296 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Aug August 08/01/2003 12:34:56 die i mensis viii annoque mmiii xii h xxxiv m lvi s 20 mm 01 i  1 i Aug 213 2452853 08 viii  8 08/01/2003 die i mensis viii annoque mmiii 03 iii 2003}
test clock-2.1528 {conversion of 2003-08-31} {
    clock format 1062333296 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Aug August 08/31/2003 12:34:56 die xxxi mensis viii annoque mmiii xii h xxxiv m lvi s 20 mm 31 xxxi 31 xxxi Aug 243 2452883 08 viii  8 08/31/2003 die xxxi mensis viii annoque mmiii 03 iii 2003}
test clock-2.1529 {conversion of 2003-09-01} {
    clock format 1062419696 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Sep September 09/01/2003 12:34:56 die i mensis ix annoque mmiii xii h xxxiv m lvi s 20 mm 01 i  1 i Sep 244 2452884 09 ix  9 09/01/2003 die i mensis ix annoque mmiii 03 iii 2003}
test clock-2.1530 {conversion of 2003-09-30} {
    clock format 1064925296 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Sep September 09/30/2003 12:34:56 die xxx mensis ix annoque mmiii xii h xxxiv m lvi s 20 mm 30 xxx 30 xxx Sep 273 2452913 09 ix  9 09/30/2003 die xxx mensis ix annoque mmiii 03 iii 2003}
test clock-2.1531 {conversion of 2003-10-01} {
    clock format 1065011696 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Oct October 10/01/2003 12:34:56 die i mensis x annoque mmiii xii h xxxiv m lvi s 20 mm 01 i  1 i Oct 274 2452914 10 x 10 10/01/2003 die i mensis x annoque mmiii 03 iii 2003}
test clock-2.1532 {conversion of 2003-10-31} {
    clock format 1067603696 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Oct October 10/31/2003 12:34:56 die xxxi mensis x annoque mmiii xii h xxxiv m lvi s 20 mm 31 xxxi 31 xxxi Oct 304 2452944 10 x 10 10/31/2003 die xxxi mensis x annoque mmiii 03 iii 2003}
test clock-2.1533 {conversion of 2003-11-01} {
    clock format 1067690096 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Nov November 11/01/2003 12:34:56 die i mensis xi annoque mmiii xii h xxxiv m lvi s 20 mm 01 i  1 i Nov 305 2452945 11 xi 11 11/01/2003 die i mensis xi annoque mmiii 03 iii 2003}
test clock-2.1534 {conversion of 2003-11-30} {
    clock format 1070195696 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Nov November 11/30/2003 12:34:56 die xxx mensis xi annoque mmiii xii h xxxiv m lvi s 20 mm 30 xxx 30 xxx Nov 334 2452974 11 xi 11 11/30/2003 die xxx mensis xi annoque mmiii 03 iii 2003}
test clock-2.1535 {conversion of 2003-12-01} {
    clock format 1070282096 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Dec December 12/01/2003 12:34:56 die i mensis xii annoque mmiii xii h xxxiv m lvi s 20 mm 01 i  1 i Dec 335 2452975 12 xii 12 12/01/2003 die i mensis xii annoque mmiii 03 iii 2003}
test clock-2.1536 {conversion of 2003-12-31} {
    clock format 1072874096 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Dec December 12/31/2003 12:34:56 die xxxi mensis xii annoque mmiii xii h xxxiv m lvi s 20 mm 31 xxxi 31 xxxi Dec 365 2453005 12 xii 12 12/31/2003 die xxxi mensis xii annoque mmiii 03 iii 2003}
test clock-2.1537 {conversion of 2004-01-01} {
    clock format 1072960496 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Jan January 01/01/2004 12:34:56 die i mensis i annoque mmiv xii h xxxiv m lvi s 20 mm 01 i  1 i Jan 001 2453006 01 i  1 01/01/2004 die i mensis i annoque mmiv 04 iv 2004}
test clock-2.1538 {conversion of 2004-01-31} {
    clock format 1075552496 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Jan January 01/31/2004 12:34:56 die xxxi mensis i annoque mmiv xii h xxxiv m lvi s 20 mm 31 xxxi 31 xxxi Jan 031 2453036 01 i  1 01/31/2004 die xxxi mensis i annoque mmiv 04 iv 2004}
test clock-2.1539 {conversion of 2004-02-01} {
    clock format 1075638896 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Feb February 02/01/2004 12:34:56 die i mensis ii annoque mmiv xii h xxxiv m lvi s 20 mm 01 i  1 i Feb 032 2453037 02 ii  2 02/01/2004 die i mensis ii annoque mmiv 04 iv 2004}
test clock-2.1540 {conversion of 2004-02-29} {
    clock format 1078058096 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Feb February 02/29/2004 12:34:56 die xxix mensis ii annoque mmiv xii h xxxiv m lvi s 20 mm 29 xxix 29 xxix Feb 060 2453065 02 ii  2 02/29/2004 die xxix mensis ii annoque mmiv 04 iv 2004}
test clock-2.1541 {conversion of 2004-03-01} {
    clock format 1078144496 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Mar March 03/01/2004 12:34:56 die i mensis iii annoque mmiv xii h xxxiv m lvi s 20 mm 01 i  1 i Mar 061 2453066 03 iii  3 03/01/2004 die i mensis iii annoque mmiv 04 iv 2004}
test clock-2.1542 {conversion of 2004-03-31} {
    clock format 1080736496 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Mar March 03/31/2004 12:34:56 die xxxi mensis iii annoque mmiv xii h xxxiv m lvi s 20 mm 31 xxxi 31 xxxi Mar 091 2453096 03 iii  3 03/31/2004 die xxxi mensis iii annoque mmiv 04 iv 2004}
test clock-2.1543 {conversion of 2004-04-01} {
    clock format 1080822896 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Apr April 04/01/2004 12:34:56 die i mensis iv annoque mmiv xii h xxxiv m lvi s 20 mm 01 i  1 i Apr 092 2453097 04 iv  4 04/01/2004 die i mensis iv annoque mmiv 04 iv 2004}
test clock-2.1544 {conversion of 2004-04-30} {
    clock format 1083328496 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Apr April 04/30/2004 12:34:56 die xxx mensis iv annoque mmiv xii h xxxiv m lvi s 20 mm 30 xxx 30 xxx Apr 121 2453126 04 iv  4 04/30/2004 die xxx mensis iv annoque mmiv 04 iv 2004}
test clock-2.1545 {conversion of 2004-05-01} {
    clock format 1083414896 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {May May 05/01/2004 12:34:56 die i mensis v annoque mmiv xii h xxxiv m lvi s 20 mm 01 i  1 i May 122 2453127 05 v  5 05/01/2004 die i mensis v annoque mmiv 04 iv 2004}
test clock-2.1546 {conversion of 2004-05-31} {
    clock format 1086006896 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {May May 05/31/2004 12:34:56 die xxxi mensis v annoque mmiv xii h xxxiv m lvi s 20 mm 31 xxxi 31 xxxi May 152 2453157 05 v  5 05/31/2004 die xxxi mensis v annoque mmiv 04 iv 2004}
test clock-2.1547 {conversion of 2004-06-01} {
    clock format 1086093296 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Jun June 06/01/2004 12:34:56 die i mensis vi annoque mmiv xii h xxxiv m lvi s 20 mm 01 i  1 i Jun 153 2453158 06 vi  6 06/01/2004 die i mensis vi annoque mmiv 04 iv 2004}
test clock-2.1548 {conversion of 2004-06-30} {
    clock format 1088598896 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Jun June 06/30/2004 12:34:56 die xxx mensis vi annoque mmiv xii h xxxiv m lvi s 20 mm 30 xxx 30 xxx Jun 182 2453187 06 vi  6 06/30/2004 die xxx mensis vi annoque mmiv 04 iv 2004}
test clock-2.1549 {conversion of 2004-07-01} {
    clock format 1088685296 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Jul July 07/01/2004 12:34:56 die i mensis vii annoque mmiv xii h xxxiv m lvi s 20 mm 01 i  1 i Jul 183 2453188 07 vii  7 07/01/2004 die i mensis vii annoque mmiv 04 iv 2004}
test clock-2.1550 {conversion of 2004-07-31} {
    clock format 1091277296 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Jul July 07/31/2004 12:34:56 die xxxi mensis vii annoque mmiv xii h xxxiv m lvi s 20 mm 31 xxxi 31 xxxi Jul 213 2453218 07 vii  7 07/31/2004 die xxxi mensis vii annoque mmiv 04 iv 2004}
test clock-2.1551 {conversion of 2004-08-01} {
    clock format 1091363696 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Aug August 08/01/2004 12:34:56 die i mensis viii annoque mmiv xii h xxxiv m lvi s 20 mm 01 i  1 i Aug 214 2453219 08 viii  8 08/01/2004 die i mensis viii annoque mmiv 04 iv 2004}
test clock-2.1552 {conversion of 2004-08-31} {
    clock format 1093955696 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Aug August 08/31/2004 12:34:56 die xxxi mensis viii annoque mmiv xii h xxxiv m lvi s 20 mm 31 xxxi 31 xxxi Aug 244 2453249 08 viii  8 08/31/2004 die xxxi mensis viii annoque mmiv 04 iv 2004}
test clock-2.1553 {conversion of 2004-09-01} {
    clock format 1094042096 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Sep September 09/01/2004 12:34:56 die i mensis ix annoque mmiv xii h xxxiv m lvi s 20 mm 01 i  1 i Sep 245 2453250 09 ix  9 09/01/2004 die i mensis ix annoque mmiv 04 iv 2004}
test clock-2.1554 {conversion of 2004-09-30} {
    clock format 1096547696 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Sep September 09/30/2004 12:34:56 die xxx mensis ix annoque mmiv xii h xxxiv m lvi s 20 mm 30 xxx 30 xxx Sep 274 2453279 09 ix  9 09/30/2004 die xxx mensis ix annoque mmiv 04 iv 2004}
test clock-2.1555 {conversion of 2004-10-01} {
    clock format 1096634096 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Oct October 10/01/2004 12:34:56 die i mensis x annoque mmiv xii h xxxiv m lvi s 20 mm 01 i  1 i Oct 275 2453280 10 x 10 10/01/2004 die i mensis x annoque mmiv 04 iv 2004}
test clock-2.1556 {conversion of 2004-10-31} {
    clock format 1099226096 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Oct October 10/31/2004 12:34:56 die xxxi mensis x annoque mmiv xii h xxxiv m lvi s 20 mm 31 xxxi 31 xxxi Oct 305 2453310 10 x 10 10/31/2004 die xxxi mensis x annoque mmiv 04 iv 2004}
test clock-2.1557 {conversion of 2004-11-01} {
    clock format 1099312496 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Nov November 11/01/2004 12:34:56 die i mensis xi annoque mmiv xii h xxxiv m lvi s 20 mm 01 i  1 i Nov 306 2453311 11 xi 11 11/01/2004 die i mensis xi annoque mmiv 04 iv 2004}
test clock-2.1558 {conversion of 2004-11-30} {
    clock format 1101818096 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Nov November 11/30/2004 12:34:56 die xxx mensis xi annoque mmiv xii h xxxiv m lvi s 20 mm 30 xxx 30 xxx Nov 335 2453340 11 xi 11 11/30/2004 die xxx mensis xi annoque mmiv 04 iv 2004}
test clock-2.1559 {conversion of 2004-12-01} {
    clock format 1101904496 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Dec December 12/01/2004 12:34:56 die i mensis xii annoque mmiv xii h xxxiv m lvi s 20 mm 01 i  1 i Dec 336 2453341 12 xii 12 12/01/2004 die i mensis xii annoque mmiv 04 iv 2004}
test clock-2.1560 {conversion of 2004-12-31} {
    clock format 1104496496 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Dec December 12/31/2004 12:34:56 die xxxi mensis xii annoque mmiv xii h xxxiv m lvi s 20 mm 31 xxxi 31 xxxi Dec 366 2453371 12 xii 12 12/31/2004 die xxxi mensis xii annoque mmiv 04 iv 2004}
test clock-2.1561 {conversion of 2005-01-01} {
    clock format 1104582896 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Jan January 01/01/2005 12:34:56 die i mensis i annoque mmv xii h xxxiv m lvi s 20 mm 01 i  1 i Jan 001 2453372 01 i  1 01/01/2005 die i mensis i annoque mmv 05 v 2005}
test clock-2.1562 {conversion of 2005-01-31} {
    clock format 1107174896 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Jan January 01/31/2005 12:34:56 die xxxi mensis i annoque mmv xii h xxxiv m lvi s 20 mm 31 xxxi 31 xxxi Jan 031 2453402 01 i  1 01/31/2005 die xxxi mensis i annoque mmv 05 v 2005}
test clock-2.1563 {conversion of 2005-02-01} {
    clock format 1107261296 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Feb February 02/01/2005 12:34:56 die i mensis ii annoque mmv xii h xxxiv m lvi s 20 mm 01 i  1 i Feb 032 2453403 02 ii  2 02/01/2005 die i mensis ii annoque mmv 05 v 2005}
test clock-2.1564 {conversion of 2005-02-28} {
    clock format 1109594096 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Feb February 02/28/2005 12:34:56 die xxviii mensis ii annoque mmv xii h xxxiv m lvi s 20 mm 28 xxviii 28 xxviii Feb 059 2453430 02 ii  2 02/28/2005 die xxviii mensis ii annoque mmv 05 v 2005}
test clock-2.1565 {conversion of 2005-03-01} {
    clock format 1109680496 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Mar March 03/01/2005 12:34:56 die i mensis iii annoque mmv xii h xxxiv m lvi s 20 mm 01 i  1 i Mar 060 2453431 03 iii  3 03/01/2005 die i mensis iii annoque mmv 05 v 2005}
test clock-2.1566 {conversion of 2005-03-31} {
    clock format 1112272496 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Mar March 03/31/2005 12:34:56 die xxxi mensis iii annoque mmv xii h xxxiv m lvi s 20 mm 31 xxxi 31 xxxi Mar 090 2453461 03 iii  3 03/31/2005 die xxxi mensis iii annoque mmv 05 v 2005}
test clock-2.1567 {conversion of 2005-04-01} {
    clock format 1112358896 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Apr April 04/01/2005 12:34:56 die i mensis iv annoque mmv xii h xxxiv m lvi s 20 mm 01 i  1 i Apr 091 2453462 04 iv  4 04/01/2005 die i mensis iv annoque mmv 05 v 2005}
test clock-2.1568 {conversion of 2005-04-30} {
    clock format 1114864496 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Apr April 04/30/2005 12:34:56 die xxx mensis iv annoque mmv xii h xxxiv m lvi s 20 mm 30 xxx 30 xxx Apr 120 2453491 04 iv  4 04/30/2005 die xxx mensis iv annoque mmv 05 v 2005}
test clock-2.1569 {conversion of 2005-05-01} {
    clock format 1114950896 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {May May 05/01/2005 12:34:56 die i mensis v annoque mmv xii h xxxiv m lvi s 20 mm 01 i  1 i May 121 2453492 05 v  5 05/01/2005 die i mensis v annoque mmv 05 v 2005}
test clock-2.1570 {conversion of 2005-05-31} {
    clock format 1117542896 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {May May 05/31/2005 12:34:56 die xxxi mensis v annoque mmv xii h xxxiv m lvi s 20 mm 31 xxxi 31 xxxi May 151 2453522 05 v  5 05/31/2005 die xxxi mensis v annoque mmv 05 v 2005}
test clock-2.1571 {conversion of 2005-06-01} {
    clock format 1117629296 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Jun June 06/01/2005 12:34:56 die i mensis vi annoque mmv xii h xxxiv m lvi s 20 mm 01 i  1 i Jun 152 2453523 06 vi  6 06/01/2005 die i mensis vi annoque mmv 05 v 2005}
test clock-2.1572 {conversion of 2005-06-30} {
    clock format 1120134896 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Jun June 06/30/2005 12:34:56 die xxx mensis vi annoque mmv xii h xxxiv m lvi s 20 mm 30 xxx 30 xxx Jun 181 2453552 06 vi  6 06/30/2005 die xxx mensis vi annoque mmv 05 v 2005}
test clock-2.1573 {conversion of 2005-07-01} {
    clock format 1120221296 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Jul July 07/01/2005 12:34:56 die i mensis vii annoque mmv xii h xxxiv m lvi s 20 mm 01 i  1 i Jul 182 2453553 07 vii  7 07/01/2005 die i mensis vii annoque mmv 05 v 2005}
test clock-2.1574 {conversion of 2005-07-31} {
    clock format 1122813296 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Jul July 07/31/2005 12:34:56 die xxxi mensis vii annoque mmv xii h xxxiv m lvi s 20 mm 31 xxxi 31 xxxi Jul 212 2453583 07 vii  7 07/31/2005 die xxxi mensis vii annoque mmv 05 v 2005}
test clock-2.1575 {conversion of 2005-08-01} {
    clock format 1122899696 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Aug August 08/01/2005 12:34:56 die i mensis viii annoque mmv xii h xxxiv m lvi s 20 mm 01 i  1 i Aug 213 2453584 08 viii  8 08/01/2005 die i mensis viii annoque mmv 05 v 2005}
test clock-2.1576 {conversion of 2005-08-31} {
    clock format 1125491696 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Aug August 08/31/2005 12:34:56 die xxxi mensis viii annoque mmv xii h xxxiv m lvi s 20 mm 31 xxxi 31 xxxi Aug 243 2453614 08 viii  8 08/31/2005 die xxxi mensis viii annoque mmv 05 v 2005}
test clock-2.1577 {conversion of 2005-09-01} {
    clock format 1125578096 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Sep September 09/01/2005 12:34:56 die i mensis ix annoque mmv xii h xxxiv m lvi s 20 mm 01 i  1 i Sep 244 2453615 09 ix  9 09/01/2005 die i mensis ix annoque mmv 05 v 2005}
test clock-2.1578 {conversion of 2005-09-30} {
    clock format 1128083696 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Sep September 09/30/2005 12:34:56 die xxx mensis ix annoque mmv xii h xxxiv m lvi s 20 mm 30 xxx 30 xxx Sep 273 2453644 09 ix  9 09/30/2005 die xxx mensis ix annoque mmv 05 v 2005}
test clock-2.1579 {conversion of 2005-10-01} {
    clock format 1128170096 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Oct October 10/01/2005 12:34:56 die i mensis x annoque mmv xii h xxxiv m lvi s 20 mm 01 i  1 i Oct 274 2453645 10 x 10 10/01/2005 die i mensis x annoque mmv 05 v 2005}
test clock-2.1580 {conversion of 2005-10-31} {
    clock format 1130762096 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Oct October 10/31/2005 12:34:56 die xxxi mensis x annoque mmv xii h xxxiv m lvi s 20 mm 31 xxxi 31 xxxi Oct 304 2453675 10 x 10 10/31/2005 die xxxi mensis x annoque mmv 05 v 2005}
test clock-2.1581 {conversion of 2005-11-01} {
    clock format 1130848496 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Nov November 11/01/2005 12:34:56 die i mensis xi annoque mmv xii h xxxiv m lvi s 20 mm 01 i  1 i Nov 305 2453676 11 xi 11 11/01/2005 die i mensis xi annoque mmv 05 v 2005}
test clock-2.1582 {conversion of 2005-11-30} {
    clock format 1133354096 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Nov November 11/30/2005 12:34:56 die xxx mensis xi annoque mmv xii h xxxiv m lvi s 20 mm 30 xxx 30 xxx Nov 334 2453705 11 xi 11 11/30/2005 die xxx mensis xi annoque mmv 05 v 2005}
test clock-2.1583 {conversion of 2005-12-01} {
    clock format 1133440496 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Dec December 12/01/2005 12:34:56 die i mensis xii annoque mmv xii h xxxiv m lvi s 20 mm 01 i  1 i Dec 335 2453706 12 xii 12 12/01/2005 die i mensis xii annoque mmv 05 v 2005}
test clock-2.1584 {conversion of 2005-12-31} {
    clock format 1136032496 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Dec December 12/31/2005 12:34:56 die xxxi mensis xii annoque mmv xii h xxxiv m lvi s 20 mm 31 xxxi 31 xxxi Dec 365 2453736 12 xii 12 12/31/2005 die xxxi mensis xii annoque mmv 05 v 2005}
test clock-2.1585 {conversion of 2006-01-01} {
    clock format 1136118896 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Jan January 01/01/2006 12:34:56 die i mensis i annoque mmvi xii h xxxiv m lvi s 20 mm 01 i  1 i Jan 001 2453737 01 i  1 01/01/2006 die i mensis i annoque mmvi 06 vi 2006}
test clock-2.1586 {conversion of 2006-01-31} {
    clock format 1138710896 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Jan January 01/31/2006 12:34:56 die xxxi mensis i annoque mmvi xii h xxxiv m lvi s 20 mm 31 xxxi 31 xxxi Jan 031 2453767 01 i  1 01/31/2006 die xxxi mensis i annoque mmvi 06 vi 2006}
test clock-2.1587 {conversion of 2006-02-01} {
    clock format 1138797296 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Feb February 02/01/2006 12:34:56 die i mensis ii annoque mmvi xii h xxxiv m lvi s 20 mm 01 i  1 i Feb 032 2453768 02 ii  2 02/01/2006 die i mensis ii annoque mmvi 06 vi 2006}
test clock-2.1588 {conversion of 2006-02-28} {
    clock format 1141130096 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Feb February 02/28/2006 12:34:56 die xxviii mensis ii annoque mmvi xii h xxxiv m lvi s 20 mm 28 xxviii 28 xxviii Feb 059 2453795 02 ii  2 02/28/2006 die xxviii mensis ii annoque mmvi 06 vi 2006}
test clock-2.1589 {conversion of 2006-03-01} {
    clock format 1141216496 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Mar March 03/01/2006 12:34:56 die i mensis iii annoque mmvi xii h xxxiv m lvi s 20 mm 01 i  1 i Mar 060 2453796 03 iii  3 03/01/2006 die i mensis iii annoque mmvi 06 vi 2006}
test clock-2.1590 {conversion of 2006-03-31} {
    clock format 1143808496 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Mar March 03/31/2006 12:34:56 die xxxi mensis iii annoque mmvi xii h xxxiv m lvi s 20 mm 31 xxxi 31 xxxi Mar 090 2453826 03 iii  3 03/31/2006 die xxxi mensis iii annoque mmvi 06 vi 2006}
test clock-2.1591 {conversion of 2006-04-01} {
    clock format 1143894896 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Apr April 04/01/2006 12:34:56 die i mensis iv annoque mmvi xii h xxxiv m lvi s 20 mm 01 i  1 i Apr 091 2453827 04 iv  4 04/01/2006 die i mensis iv annoque mmvi 06 vi 2006}
test clock-2.1592 {conversion of 2006-04-30} {
    clock format 1146400496 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Apr April 04/30/2006 12:34:56 die xxx mensis iv annoque mmvi xii h xxxiv m lvi s 20 mm 30 xxx 30 xxx Apr 120 2453856 04 iv  4 04/30/2006 die xxx mensis iv annoque mmvi 06 vi 2006}
test clock-2.1593 {conversion of 2006-05-01} {
    clock format 1146486896 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {May May 05/01/2006 12:34:56 die i mensis v annoque mmvi xii h xxxiv m lvi s 20 mm 01 i  1 i May 121 2453857 05 v  5 05/01/2006 die i mensis v annoque mmvi 06 vi 2006}
test clock-2.1594 {conversion of 2006-05-31} {
    clock format 1149078896 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {May May 05/31/2006 12:34:56 die xxxi mensis v annoque mmvi xii h xxxiv m lvi s 20 mm 31 xxxi 31 xxxi May 151 2453887 05 v  5 05/31/2006 die xxxi mensis v annoque mmvi 06 vi 2006}
test clock-2.1595 {conversion of 2006-06-01} {
    clock format 1149165296 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Jun June 06/01/2006 12:34:56 die i mensis vi annoque mmvi xii h xxxiv m lvi s 20 mm 01 i  1 i Jun 152 2453888 06 vi  6 06/01/2006 die i mensis vi annoque mmvi 06 vi 2006}
test clock-2.1596 {conversion of 2006-06-30} {
    clock format 1151670896 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Jun June 06/30/2006 12:34:56 die xxx mensis vi annoque mmvi xii h xxxiv m lvi s 20 mm 30 xxx 30 xxx Jun 181 2453917 06 vi  6 06/30/2006 die xxx mensis vi annoque mmvi 06 vi 2006}
test clock-2.1597 {conversion of 2006-07-01} {
    clock format 1151757296 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Jul July 07/01/2006 12:34:56 die i mensis vii annoque mmvi xii h xxxiv m lvi s 20 mm 01 i  1 i Jul 182 2453918 07 vii  7 07/01/2006 die i mensis vii annoque mmvi 06 vi 2006}
test clock-2.1598 {conversion of 2006-07-31} {
    clock format 1154349296 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Jul July 07/31/2006 12:34:56 die xxxi mensis vii annoque mmvi xii h xxxiv m lvi s 20 mm 31 xxxi 31 xxxi Jul 212 2453948 07 vii  7 07/31/2006 die xxxi mensis vii annoque mmvi 06 vi 2006}
test clock-2.1599 {conversion of 2006-08-01} {
    clock format 1154435696 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Aug August 08/01/2006 12:34:56 die i mensis viii annoque mmvi xii h xxxiv m lvi s 20 mm 01 i  1 i Aug 213 2453949 08 viii  8 08/01/2006 die i mensis viii annoque mmvi 06 vi 2006}
test clock-2.1600 {conversion of 2006-08-31} {
    clock format 1157027696 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Aug August 08/31/2006 12:34:56 die xxxi mensis viii annoque mmvi xii h xxxiv m lvi s 20 mm 31 xxxi 31 xxxi Aug 243 2453979 08 viii  8 08/31/2006 die xxxi mensis viii annoque mmvi 06 vi 2006}
test clock-2.1601 {conversion of 2006-09-01} {
    clock format 1157114096 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Sep September 09/01/2006 12:34:56 die i mensis ix annoque mmvi xii h xxxiv m lvi s 20 mm 01 i  1 i Sep 244 2453980 09 ix  9 09/01/2006 die i mensis ix annoque mmvi 06 vi 2006}
test clock-2.1602 {conversion of 2006-09-30} {
    clock format 1159619696 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Sep September 09/30/2006 12:34:56 die xxx mensis ix annoque mmvi xii h xxxiv m lvi s 20 mm 30 xxx 30 xxx Sep 273 2454009 09 ix  9 09/30/2006 die xxx mensis ix annoque mmvi 06 vi 2006}
test clock-2.1603 {conversion of 2006-10-01} {
    clock format 1159706096 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Oct October 10/01/2006 12:34:56 die i mensis x annoque mmvi xii h xxxiv m lvi s 20 mm 01 i  1 i Oct 274 2454010 10 x 10 10/01/2006 die i mensis x annoque mmvi 06 vi 2006}
test clock-2.1604 {conversion of 2006-10-31} {
    clock format 1162298096 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Oct October 10/31/2006 12:34:56 die xxxi mensis x annoque mmvi xii h xxxiv m lvi s 20 mm 31 xxxi 31 xxxi Oct 304 2454040 10 x 10 10/31/2006 die xxxi mensis x annoque mmvi 06 vi 2006}
test clock-2.1605 {conversion of 2006-11-01} {
    clock format 1162384496 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Nov November 11/01/2006 12:34:56 die i mensis xi annoque mmvi xii h xxxiv m lvi s 20 mm 01 i  1 i Nov 305 2454041 11 xi 11 11/01/2006 die i mensis xi annoque mmvi 06 vi 2006}
test clock-2.1606 {conversion of 2006-11-30} {
    clock format 1164890096 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Nov November 11/30/2006 12:34:56 die xxx mensis xi annoque mmvi xii h xxxiv m lvi s 20 mm 30 xxx 30 xxx Nov 334 2454070 11 xi 11 11/30/2006 die xxx mensis xi annoque mmvi 06 vi 2006}
test clock-2.1607 {conversion of 2006-12-01} {
    clock format 1164976496 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Dec December 12/01/2006 12:34:56 die i mensis xii annoque mmvi xii h xxxiv m lvi s 20 mm 01 i  1 i Dec 335 2454071 12 xii 12 12/01/2006 die i mensis xii annoque mmvi 06 vi 2006}
test clock-2.1608 {conversion of 2006-12-31} {
    clock format 1167568496 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Dec December 12/31/2006 12:34:56 die xxxi mensis xii annoque mmvi xii h xxxiv m lvi s 20 mm 31 xxxi 31 xxxi Dec 365 2454101 12 xii 12 12/31/2006 die xxxi mensis xii annoque mmvi 06 vi 2006}
test clock-2.1609 {conversion of 2007-01-01} {
    clock format 1167654896 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Jan January 01/01/2007 12:34:56 die i mensis i annoque mmvii xii h xxxiv m lvi s 20 mm 01 i  1 i Jan 001 2454102 01 i  1 01/01/2007 die i mensis i annoque mmvii 07 vii 2007}
test clock-2.1610 {conversion of 2007-01-31} {
    clock format 1170246896 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Jan January 01/31/2007 12:34:56 die xxxi mensis i annoque mmvii xii h xxxiv m lvi s 20 mm 31 xxxi 31 xxxi Jan 031 2454132 01 i  1 01/31/2007 die xxxi mensis i annoque mmvii 07 vii 2007}
test clock-2.1611 {conversion of 2007-02-01} {
    clock format 1170333296 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Feb February 02/01/2007 12:34:56 die i mensis ii annoque mmvii xii h xxxiv m lvi s 20 mm 01 i  1 i Feb 032 2454133 02 ii  2 02/01/2007 die i mensis ii annoque mmvii 07 vii 2007}
test clock-2.1612 {conversion of 2007-02-28} {
    clock format 1172666096 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Feb February 02/28/2007 12:34:56 die xxviii mensis ii annoque mmvii xii h xxxiv m lvi s 20 mm 28 xxviii 28 xxviii Feb 059 2454160 02 ii  2 02/28/2007 die xxviii mensis ii annoque mmvii 07 vii 2007}
test clock-2.1613 {conversion of 2007-03-01} {
    clock format 1172752496 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Mar March 03/01/2007 12:34:56 die i mensis iii annoque mmvii xii h xxxiv m lvi s 20 mm 01 i  1 i Mar 060 2454161 03 iii  3 03/01/2007 die i mensis iii annoque mmvii 07 vii 2007}
test clock-2.1614 {conversion of 2007-03-31} {
    clock format 1175344496 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Mar March 03/31/2007 12:34:56 die xxxi mensis iii annoque mmvii xii h xxxiv m lvi s 20 mm 31 xxxi 31 xxxi Mar 090 2454191 03 iii  3 03/31/2007 die xxxi mensis iii annoque mmvii 07 vii 2007}
test clock-2.1615 {conversion of 2007-04-01} {
    clock format 1175430896 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Apr April 04/01/2007 12:34:56 die i mensis iv annoque mmvii xii h xxxiv m lvi s 20 mm 01 i  1 i Apr 091 2454192 04 iv  4 04/01/2007 die i mensis iv annoque mmvii 07 vii 2007}
test clock-2.1616 {conversion of 2007-04-30} {
    clock format 1177936496 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Apr April 04/30/2007 12:34:56 die xxx mensis iv annoque mmvii xii h xxxiv m lvi s 20 mm 30 xxx 30 xxx Apr 120 2454221 04 iv  4 04/30/2007 die xxx mensis iv annoque mmvii 07 vii 2007}
test clock-2.1617 {conversion of 2007-05-01} {
    clock format 1178022896 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {May May 05/01/2007 12:34:56 die i mensis v annoque mmvii xii h xxxiv m lvi s 20 mm 01 i  1 i May 121 2454222 05 v  5 05/01/2007 die i mensis v annoque mmvii 07 vii 2007}
test clock-2.1618 {conversion of 2007-05-31} {
    clock format 1180614896 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {May May 05/31/2007 12:34:56 die xxxi mensis v annoque mmvii xii h xxxiv m lvi s 20 mm 31 xxxi 31 xxxi May 151 2454252 05 v  5 05/31/2007 die xxxi mensis v annoque mmvii 07 vii 2007}
test clock-2.1619 {conversion of 2007-06-01} {
    clock format 1180701296 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Jun June 06/01/2007 12:34:56 die i mensis vi annoque mmvii xii h xxxiv m lvi s 20 mm 01 i  1 i Jun 152 2454253 06 vi  6 06/01/2007 die i mensis vi annoque mmvii 07 vii 2007}
test clock-2.1620 {conversion of 2007-06-30} {
    clock format 1183206896 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Jun June 06/30/2007 12:34:56 die xxx mensis vi annoque mmvii xii h xxxiv m lvi s 20 mm 30 xxx 30 xxx Jun 181 2454282 06 vi  6 06/30/2007 die xxx mensis vi annoque mmvii 07 vii 2007}
test clock-2.1621 {conversion of 2007-07-01} {
    clock format 1183293296 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Jul July 07/01/2007 12:34:56 die i mensis vii annoque mmvii xii h xxxiv m lvi s 20 mm 01 i  1 i Jul 182 2454283 07 vii  7 07/01/2007 die i mensis vii annoque mmvii 07 vii 2007}
test clock-2.1622 {conversion of 2007-07-31} {
    clock format 1185885296 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Jul July 07/31/2007 12:34:56 die xxxi mensis vii annoque mmvii xii h xxxiv m lvi s 20 mm 31 xxxi 31 xxxi Jul 212 2454313 07 vii  7 07/31/2007 die xxxi mensis vii annoque mmvii 07 vii 2007}
test clock-2.1623 {conversion of 2007-08-01} {
    clock format 1185971696 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Aug August 08/01/2007 12:34:56 die i mensis viii annoque mmvii xii h xxxiv m lvi s 20 mm 01 i  1 i Aug 213 2454314 08 viii  8 08/01/2007 die i mensis viii annoque mmvii 07 vii 2007}
test clock-2.1624 {conversion of 2007-08-31} {
    clock format 1188563696 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Aug August 08/31/2007 12:34:56 die xxxi mensis viii annoque mmvii xii h xxxiv m lvi s 20 mm 31 xxxi 31 xxxi Aug 243 2454344 08 viii  8 08/31/2007 die xxxi mensis viii annoque mmvii 07 vii 2007}
test clock-2.1625 {conversion of 2007-09-01} {
    clock format 1188650096 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Sep September 09/01/2007 12:34:56 die i mensis ix annoque mmvii xii h xxxiv m lvi s 20 mm 01 i  1 i Sep 244 2454345 09 ix  9 09/01/2007 die i mensis ix annoque mmvii 07 vii 2007}
test clock-2.1626 {conversion of 2007-09-30} {
    clock format 1191155696 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Sep September 09/30/2007 12:34:56 die xxx mensis ix annoque mmvii xii h xxxiv m lvi s 20 mm 30 xxx 30 xxx Sep 273 2454374 09 ix  9 09/30/2007 die xxx mensis ix annoque mmvii 07 vii 2007}
test clock-2.1627 {conversion of 2007-10-01} {
    clock format 1191242096 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Oct October 10/01/2007 12:34:56 die i mensis x annoque mmvii xii h xxxiv m lvi s 20 mm 01 i  1 i Oct 274 2454375 10 x 10 10/01/2007 die i mensis x annoque mmvii 07 vii 2007}
test clock-2.1628 {conversion of 2007-10-31} {
    clock format 1193834096 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Oct October 10/31/2007 12:34:56 die xxxi mensis x annoque mmvii xii h xxxiv m lvi s 20 mm 31 xxxi 31 xxxi Oct 304 2454405 10 x 10 10/31/2007 die xxxi mensis x annoque mmvii 07 vii 2007}
test clock-2.1629 {conversion of 2007-11-01} {
    clock format 1193920496 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Nov November 11/01/2007 12:34:56 die i mensis xi annoque mmvii xii h xxxiv m lvi s 20 mm 01 i  1 i Nov 305 2454406 11 xi 11 11/01/2007 die i mensis xi annoque mmvii 07 vii 2007}
test clock-2.1630 {conversion of 2007-11-30} {
    clock format 1196426096 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Nov November 11/30/2007 12:34:56 die xxx mensis xi annoque mmvii xii h xxxiv m lvi s 20 mm 30 xxx 30 xxx Nov 334 2454435 11 xi 11 11/30/2007 die xxx mensis xi annoque mmvii 07 vii 2007}
test clock-2.1631 {conversion of 2007-12-01} {
    clock format 1196512496 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Dec December 12/01/2007 12:34:56 die i mensis xii annoque mmvii xii h xxxiv m lvi s 20 mm 01 i  1 i Dec 335 2454436 12 xii 12 12/01/2007 die i mensis xii annoque mmvii 07 vii 2007}
test clock-2.1632 {conversion of 2007-12-31} {
    clock format 1199104496 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Dec December 12/31/2007 12:34:56 die xxxi mensis xii annoque mmvii xii h xxxiv m lvi s 20 mm 31 xxxi 31 xxxi Dec 365 2454466 12 xii 12 12/31/2007 die xxxi mensis xii annoque mmvii 07 vii 2007}
test clock-2.1633 {conversion of 2008-01-01} {
    clock format 1199190896 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Jan January 01/01/2008 12:34:56 die i mensis i annoque mmviii xii h xxxiv m lvi s 20 mm 01 i  1 i Jan 001 2454467 01 i  1 01/01/2008 die i mensis i annoque mmviii 08 viii 2008}
test clock-2.1634 {conversion of 2008-01-31} {
    clock format 1201782896 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Jan January 01/31/2008 12:34:56 die xxxi mensis i annoque mmviii xii h xxxiv m lvi s 20 mm 31 xxxi 31 xxxi Jan 031 2454497 01 i  1 01/31/2008 die xxxi mensis i annoque mmviii 08 viii 2008}
test clock-2.1635 {conversion of 2008-02-01} {
    clock format 1201869296 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Feb February 02/01/2008 12:34:56 die i mensis ii annoque mmviii xii h xxxiv m lvi s 20 mm 01 i  1 i Feb 032 2454498 02 ii  2 02/01/2008 die i mensis ii annoque mmviii 08 viii 2008}
test clock-2.1636 {conversion of 2008-02-29} {
    clock format 1204288496 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Feb February 02/29/2008 12:34:56 die xxix mensis ii annoque mmviii xii h xxxiv m lvi s 20 mm 29 xxix 29 xxix Feb 060 2454526 02 ii  2 02/29/2008 die xxix mensis ii annoque mmviii 08 viii 2008}
test clock-2.1637 {conversion of 2008-03-01} {
    clock format 1204374896 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Mar March 03/01/2008 12:34:56 die i mensis iii annoque mmviii xii h xxxiv m lvi s 20 mm 01 i  1 i Mar 061 2454527 03 iii  3 03/01/2008 die i mensis iii annoque mmviii 08 viii 2008}
test clock-2.1638 {conversion of 2008-03-31} {
    clock format 1206966896 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Mar March 03/31/2008 12:34:56 die xxxi mensis iii annoque mmviii xii h xxxiv m lvi s 20 mm 31 xxxi 31 xxxi Mar 091 2454557 03 iii  3 03/31/2008 die xxxi mensis iii annoque mmviii 08 viii 2008}
test clock-2.1639 {conversion of 2008-04-01} {
    clock format 1207053296 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Apr April 04/01/2008 12:34:56 die i mensis iv annoque mmviii xii h xxxiv m lvi s 20 mm 01 i  1 i Apr 092 2454558 04 iv  4 04/01/2008 die i mensis iv annoque mmviii 08 viii 2008}
test clock-2.1640 {conversion of 2008-04-30} {
    clock format 1209558896 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Apr April 04/30/2008 12:34:56 die xxx mensis iv annoque mmviii xii h xxxiv m lvi s 20 mm 30 xxx 30 xxx Apr 121 2454587 04 iv  4 04/30/2008 die xxx mensis iv annoque mmviii 08 viii 2008}
test clock-2.1641 {conversion of 2008-05-01} {
    clock format 1209645296 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {May May 05/01/2008 12:34:56 die i mensis v annoque mmviii xii h xxxiv m lvi s 20 mm 01 i  1 i May 122 2454588 05 v  5 05/01/2008 die i mensis v annoque mmviii 08 viii 2008}
test clock-2.1642 {conversion of 2008-05-31} {
    clock format 1212237296 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {May May 05/31/2008 12:34:56 die xxxi mensis v annoque mmviii xii h xxxiv m lvi s 20 mm 31 xxxi 31 xxxi May 152 2454618 05 v  5 05/31/2008 die xxxi mensis v annoque mmviii 08 viii 2008}
test clock-2.1643 {conversion of 2008-06-01} {
    clock format 1212323696 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Jun June 06/01/2008 12:34:56 die i mensis vi annoque mmviii xii h xxxiv m lvi s 20 mm 01 i  1 i Jun 153 2454619 06 vi  6 06/01/2008 die i mensis vi annoque mmviii 08 viii 2008}
test clock-2.1644 {conversion of 2008-06-30} {
    clock format 1214829296 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Jun June 06/30/2008 12:34:56 die xxx mensis vi annoque mmviii xii h xxxiv m lvi s 20 mm 30 xxx 30 xxx Jun 182 2454648 06 vi  6 06/30/2008 die xxx mensis vi annoque mmviii 08 viii 2008}
test clock-2.1645 {conversion of 2008-07-01} {
    clock format 1214915696 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Jul July 07/01/2008 12:34:56 die i mensis vii annoque mmviii xii h xxxiv m lvi s 20 mm 01 i  1 i Jul 183 2454649 07 vii  7 07/01/2008 die i mensis vii annoque mmviii 08 viii 2008}
test clock-2.1646 {conversion of 2008-07-31} {
    clock format 1217507696 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Jul July 07/31/2008 12:34:56 die xxxi mensis vii annoque mmviii xii h xxxiv m lvi s 20 mm 31 xxxi 31 xxxi Jul 213 2454679 07 vii  7 07/31/2008 die xxxi mensis vii annoque mmviii 08 viii 2008}
test clock-2.1647 {conversion of 2008-08-01} {
    clock format 1217594096 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Aug August 08/01/2008 12:34:56 die i mensis viii annoque mmviii xii h xxxiv m lvi s 20 mm 01 i  1 i Aug 214 2454680 08 viii  8 08/01/2008 die i mensis viii annoque mmviii 08 viii 2008}
test clock-2.1648 {conversion of 2008-08-31} {
    clock format 1220186096 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Aug August 08/31/2008 12:34:56 die xxxi mensis viii annoque mmviii xii h xxxiv m lvi s 20 mm 31 xxxi 31 xxxi Aug 244 2454710 08 viii  8 08/31/2008 die xxxi mensis viii annoque mmviii 08 viii 2008}
test clock-2.1649 {conversion of 2008-09-01} {
    clock format 1220272496 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Sep September 09/01/2008 12:34:56 die i mensis ix annoque mmviii xii h xxxiv m lvi s 20 mm 01 i  1 i Sep 245 2454711 09 ix  9 09/01/2008 die i mensis ix annoque mmviii 08 viii 2008}
test clock-2.1650 {conversion of 2008-09-30} {
    clock format 1222778096 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Sep September 09/30/2008 12:34:56 die xxx mensis ix annoque mmviii xii h xxxiv m lvi s 20 mm 30 xxx 30 xxx Sep 274 2454740 09 ix  9 09/30/2008 die xxx mensis ix annoque mmviii 08 viii 2008}
test clock-2.1651 {conversion of 2008-10-01} {
    clock format 1222864496 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Oct October 10/01/2008 12:34:56 die i mensis x annoque mmviii xii h xxxiv m lvi s 20 mm 01 i  1 i Oct 275 2454741 10 x 10 10/01/2008 die i mensis x annoque mmviii 08 viii 2008}
test clock-2.1652 {conversion of 2008-10-31} {
    clock format 1225456496 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Oct October 10/31/2008 12:34:56 die xxxi mensis x annoque mmviii xii h xxxiv m lvi s 20 mm 31 xxxi 31 xxxi Oct 305 2454771 10 x 10 10/31/2008 die xxxi mensis x annoque mmviii 08 viii 2008}
test clock-2.1653 {conversion of 2008-11-01} {
    clock format 1225542896 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Nov November 11/01/2008 12:34:56 die i mensis xi annoque mmviii xii h xxxiv m lvi s 20 mm 01 i  1 i Nov 306 2454772 11 xi 11 11/01/2008 die i mensis xi annoque mmviii 08 viii 2008}
test clock-2.1654 {conversion of 2008-11-30} {
    clock format 1228048496 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Nov November 11/30/2008 12:34:56 die xxx mensis xi annoque mmviii xii h xxxiv m lvi s 20 mm 30 xxx 30 xxx Nov 335 2454801 11 xi 11 11/30/2008 die xxx mensis xi annoque mmviii 08 viii 2008}
test clock-2.1655 {conversion of 2008-12-01} {
    clock format 1228134896 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Dec December 12/01/2008 12:34:56 die i mensis xii annoque mmviii xii h xxxiv m lvi s 20 mm 01 i  1 i Dec 336 2454802 12 xii 12 12/01/2008 die i mensis xii annoque mmviii 08 viii 2008}
test clock-2.1656 {conversion of 2008-12-31} {
    clock format 1230726896 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Dec December 12/31/2008 12:34:56 die xxxi mensis xii annoque mmviii xii h xxxiv m lvi s 20 mm 31 xxxi 31 xxxi Dec 366 2454832 12 xii 12 12/31/2008 die xxxi mensis xii annoque mmviii 08 viii 2008}
test clock-2.1657 {conversion of 2009-01-01} {
    clock format 1230813296 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Jan January 01/01/2009 12:34:56 die i mensis i annoque mmix xii h xxxiv m lvi s 20 mm 01 i  1 i Jan 001 2454833 01 i  1 01/01/2009 die i mensis i annoque mmix 09 ix 2009}
test clock-2.1658 {conversion of 2009-01-31} {
    clock format 1233405296 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Jan January 01/31/2009 12:34:56 die xxxi mensis i annoque mmix xii h xxxiv m lvi s 20 mm 31 xxxi 31 xxxi Jan 031 2454863 01 i  1 01/31/2009 die xxxi mensis i annoque mmix 09 ix 2009}
test clock-2.1659 {conversion of 2009-02-01} {
    clock format 1233491696 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Feb February 02/01/2009 12:34:56 die i mensis ii annoque mmix xii h xxxiv m lvi s 20 mm 01 i  1 i Feb 032 2454864 02 ii  2 02/01/2009 die i mensis ii annoque mmix 09 ix 2009}
test clock-2.1660 {conversion of 2009-02-28} {
    clock format 1235824496 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Feb February 02/28/2009 12:34:56 die xxviii mensis ii annoque mmix xii h xxxiv m lvi s 20 mm 28 xxviii 28 xxviii Feb 059 2454891 02 ii  2 02/28/2009 die xxviii mensis ii annoque mmix 09 ix 2009}
test clock-2.1661 {conversion of 2009-03-01} {
    clock format 1235910896 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Mar March 03/01/2009 12:34:56 die i mensis iii annoque mmix xii h xxxiv m lvi s 20 mm 01 i  1 i Mar 060 2454892 03 iii  3 03/01/2009 die i mensis iii annoque mmix 09 ix 2009}
test clock-2.1662 {conversion of 2009-03-31} {
    clock format 1238502896 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Mar March 03/31/2009 12:34:56 die xxxi mensis iii annoque mmix xii h xxxiv m lvi s 20 mm 31 xxxi 31 xxxi Mar 090 2454922 03 iii  3 03/31/2009 die xxxi mensis iii annoque mmix 09 ix 2009}
test clock-2.1663 {conversion of 2009-04-01} {
    clock format 1238589296 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Apr April 04/01/2009 12:34:56 die i mensis iv annoque mmix xii h xxxiv m lvi s 20 mm 01 i  1 i Apr 091 2454923 04 iv  4 04/01/2009 die i mensis iv annoque mmix 09 ix 2009}
test clock-2.1664 {conversion of 2009-04-30} {
    clock format 1241094896 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Apr April 04/30/2009 12:34:56 die xxx mensis iv annoque mmix xii h xxxiv m lvi s 20 mm 30 xxx 30 xxx Apr 120 2454952 04 iv  4 04/30/2009 die xxx mensis iv annoque mmix 09 ix 2009}
test clock-2.1665 {conversion of 2009-05-01} {
    clock format 1241181296 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {May May 05/01/2009 12:34:56 die i mensis v annoque mmix xii h xxxiv m lvi s 20 mm 01 i  1 i May 121 2454953 05 v  5 05/01/2009 die i mensis v annoque mmix 09 ix 2009}
test clock-2.1666 {conversion of 2009-05-31} {
    clock format 1243773296 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {May May 05/31/2009 12:34:56 die xxxi mensis v annoque mmix xii h xxxiv m lvi s 20 mm 31 xxxi 31 xxxi May 151 2454983 05 v  5 05/31/2009 die xxxi mensis v annoque mmix 09 ix 2009}
test clock-2.1667 {conversion of 2009-06-01} {
    clock format 1243859696 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Jun June 06/01/2009 12:34:56 die i mensis vi annoque mmix xii h xxxiv m lvi s 20 mm 01 i  1 i Jun 152 2454984 06 vi  6 06/01/2009 die i mensis vi annoque mmix 09 ix 2009}
test clock-2.1668 {conversion of 2009-06-30} {
    clock format 1246365296 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Jun June 06/30/2009 12:34:56 die xxx mensis vi annoque mmix xii h xxxiv m lvi s 20 mm 30 xxx 30 xxx Jun 181 2455013 06 vi  6 06/30/2009 die xxx mensis vi annoque mmix 09 ix 2009}
test clock-2.1669 {conversion of 2009-07-01} {
    clock format 1246451696 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Jul July 07/01/2009 12:34:56 die i mensis vii annoque mmix xii h xxxiv m lvi s 20 mm 01 i  1 i Jul 182 2455014 07 vii  7 07/01/2009 die i mensis vii annoque mmix 09 ix 2009}
test clock-2.1670 {conversion of 2009-07-31} {
    clock format 1249043696 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Jul July 07/31/2009 12:34:56 die xxxi mensis vii annoque mmix xii h xxxiv m lvi s 20 mm 31 xxxi 31 xxxi Jul 212 2455044 07 vii  7 07/31/2009 die xxxi mensis vii annoque mmix 09 ix 2009}
test clock-2.1671 {conversion of 2009-08-01} {
    clock format 1249130096 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Aug August 08/01/2009 12:34:56 die i mensis viii annoque mmix xii h xxxiv m lvi s 20 mm 01 i  1 i Aug 213 2455045 08 viii  8 08/01/2009 die i mensis viii annoque mmix 09 ix 2009}
test clock-2.1672 {conversion of 2009-08-31} {
    clock format 1251722096 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Aug August 08/31/2009 12:34:56 die xxxi mensis viii annoque mmix xii h xxxiv m lvi s 20 mm 31 xxxi 31 xxxi Aug 243 2455075 08 viii  8 08/31/2009 die xxxi mensis viii annoque mmix 09 ix 2009}
test clock-2.1673 {conversion of 2009-09-01} {
    clock format 1251808496 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Sep September 09/01/2009 12:34:56 die i mensis ix annoque mmix xii h xxxiv m lvi s 20 mm 01 i  1 i Sep 244 2455076 09 ix  9 09/01/2009 die i mensis ix annoque mmix 09 ix 2009}
test clock-2.1674 {conversion of 2009-09-30} {
    clock format 1254314096 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Sep September 09/30/2009 12:34:56 die xxx mensis ix annoque mmix xii h xxxiv m lvi s 20 mm 30 xxx 30 xxx Sep 273 2455105 09 ix  9 09/30/2009 die xxx mensis ix annoque mmix 09 ix 2009}
test clock-2.1675 {conversion of 2009-10-01} {
    clock format 1254400496 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Oct October 10/01/2009 12:34:56 die i mensis x annoque mmix xii h xxxiv m lvi s 20 mm 01 i  1 i Oct 274 2455106 10 x 10 10/01/2009 die i mensis x annoque mmix 09 ix 2009}
test clock-2.1676 {conversion of 2009-10-31} {
    clock format 1256992496 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Oct October 10/31/2009 12:34:56 die xxxi mensis x annoque mmix xii h xxxiv m lvi s 20 mm 31 xxxi 31 xxxi Oct 304 2455136 10 x 10 10/31/2009 die xxxi mensis x annoque mmix 09 ix 2009}
test clock-2.1677 {conversion of 2009-11-01} {
    clock format 1257078896 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Nov November 11/01/2009 12:34:56 die i mensis xi annoque mmix xii h xxxiv m lvi s 20 mm 01 i  1 i Nov 305 2455137 11 xi 11 11/01/2009 die i mensis xi annoque mmix 09 ix 2009}
test clock-2.1678 {conversion of 2009-11-30} {
    clock format 1259584496 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Nov November 11/30/2009 12:34:56 die xxx mensis xi annoque mmix xii h xxxiv m lvi s 20 mm 30 xxx 30 xxx Nov 334 2455166 11 xi 11 11/30/2009 die xxx mensis xi annoque mmix 09 ix 2009}
test clock-2.1679 {conversion of 2009-12-01} {
    clock format 1259670896 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Dec December 12/01/2009 12:34:56 die i mensis xii annoque mmix xii h xxxiv m lvi s 20 mm 01 i  1 i Dec 335 2455167 12 xii 12 12/01/2009 die i mensis xii annoque mmix 09 ix 2009}
test clock-2.1680 {conversion of 2009-12-31} {
    clock format 1262262896 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Dec December 12/31/2009 12:34:56 die xxxi mensis xii annoque mmix xii h xxxiv m lvi s 20 mm 31 xxxi 31 xxxi Dec 365 2455197 12 xii 12 12/31/2009 die xxxi mensis xii annoque mmix 09 ix 2009}
test clock-2.1681 {conversion of 2010-01-01} {
    clock format 1262349296 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Jan January 01/01/2010 12:34:56 die i mensis i annoque mmx xii h xxxiv m lvi s 20 mm 01 i  1 i Jan 001 2455198 01 i  1 01/01/2010 die i mensis i annoque mmx 10 x 2010}
test clock-2.1682 {conversion of 2010-01-31} {
    clock format 1264941296 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Jan January 01/31/2010 12:34:56 die xxxi mensis i annoque mmx xii h xxxiv m lvi s 20 mm 31 xxxi 31 xxxi Jan 031 2455228 01 i  1 01/31/2010 die xxxi mensis i annoque mmx 10 x 2010}
test clock-2.1683 {conversion of 2010-02-01} {
    clock format 1265027696 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Feb February 02/01/2010 12:34:56 die i mensis ii annoque mmx xii h xxxiv m lvi s 20 mm 01 i  1 i Feb 032 2455229 02 ii  2 02/01/2010 die i mensis ii annoque mmx 10 x 2010}
test clock-2.1684 {conversion of 2010-02-28} {
    clock format 1267360496 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Feb February 02/28/2010 12:34:56 die xxviii mensis ii annoque mmx xii h xxxiv m lvi s 20 mm 28 xxviii 28 xxviii Feb 059 2455256 02 ii  2 02/28/2010 die xxviii mensis ii annoque mmx 10 x 2010}
test clock-2.1685 {conversion of 2010-03-01} {
    clock format 1267446896 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Mar March 03/01/2010 12:34:56 die i mensis iii annoque mmx xii h xxxiv m lvi s 20 mm 01 i  1 i Mar 060 2455257 03 iii  3 03/01/2010 die i mensis iii annoque mmx 10 x 2010}
test clock-2.1686 {conversion of 2010-03-31} {
    clock format 1270038896 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Mar March 03/31/2010 12:34:56 die xxxi mensis iii annoque mmx xii h xxxiv m lvi s 20 mm 31 xxxi 31 xxxi Mar 090 2455287 03 iii  3 03/31/2010 die xxxi mensis iii annoque mmx 10 x 2010}
test clock-2.1687 {conversion of 2010-04-01} {
    clock format 1270125296 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Apr April 04/01/2010 12:34:56 die i mensis iv annoque mmx xii h xxxiv m lvi s 20 mm 01 i  1 i Apr 091 2455288 04 iv  4 04/01/2010 die i mensis iv annoque mmx 10 x 2010}
test clock-2.1688 {conversion of 2010-04-30} {
    clock format 1272630896 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Apr April 04/30/2010 12:34:56 die xxx mensis iv annoque mmx xii h xxxiv m lvi s 20 mm 30 xxx 30 xxx Apr 120 2455317 04 iv  4 04/30/2010 die xxx mensis iv annoque mmx 10 x 2010}
test clock-2.1689 {conversion of 2010-05-01} {
    clock format 1272717296 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {May May 05/01/2010 12:34:56 die i mensis v annoque mmx xii h xxxiv m lvi s 20 mm 01 i  1 i May 121 2455318 05 v  5 05/01/2010 die i mensis v annoque mmx 10 x 2010}
test clock-2.1690 {conversion of 2010-05-31} {
    clock format 1275309296 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {May May 05/31/2010 12:34:56 die xxxi mensis v annoque mmx xii h xxxiv m lvi s 20 mm 31 xxxi 31 xxxi May 151 2455348 05 v  5 05/31/2010 die xxxi mensis v annoque mmx 10 x 2010}
test clock-2.1691 {conversion of 2010-06-01} {
    clock format 1275395696 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Jun June 06/01/2010 12:34:56 die i mensis vi annoque mmx xii h xxxiv m lvi s 20 mm 01 i  1 i Jun 152 2455349 06 vi  6 06/01/2010 die i mensis vi annoque mmx 10 x 2010}
test clock-2.1692 {conversion of 2010-06-30} {
    clock format 1277901296 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Jun June 06/30/2010 12:34:56 die xxx mensis vi annoque mmx xii h xxxiv m lvi s 20 mm 30 xxx 30 xxx Jun 181 2455378 06 vi  6 06/30/2010 die xxx mensis vi annoque mmx 10 x 2010}
test clock-2.1693 {conversion of 2010-07-01} {
    clock format 1277987696 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Jul July 07/01/2010 12:34:56 die i mensis vii annoque mmx xii h xxxiv m lvi s 20 mm 01 i  1 i Jul 182 2455379 07 vii  7 07/01/2010 die i mensis vii annoque mmx 10 x 2010}
test clock-2.1694 {conversion of 2010-07-31} {
    clock format 1280579696 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Jul July 07/31/2010 12:34:56 die xxxi mensis vii annoque mmx xii h xxxiv m lvi s 20 mm 31 xxxi 31 xxxi Jul 212 2455409 07 vii  7 07/31/2010 die xxxi mensis vii annoque mmx 10 x 2010}
test clock-2.1695 {conversion of 2010-08-01} {
    clock format 1280666096 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Aug August 08/01/2010 12:34:56 die i mensis viii annoque mmx xii h xxxiv m lvi s 20 mm 01 i  1 i Aug 213 2455410 08 viii  8 08/01/2010 die i mensis viii annoque mmx 10 x 2010}
test clock-2.1696 {conversion of 2010-08-31} {
    clock format 1283258096 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Aug August 08/31/2010 12:34:56 die xxxi mensis viii annoque mmx xii h xxxiv m lvi s 20 mm 31 xxxi 31 xxxi Aug 243 2455440 08 viii  8 08/31/2010 die xxxi mensis viii annoque mmx 10 x 2010}
test clock-2.1697 {conversion of 2010-09-01} {
    clock format 1283344496 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Sep September 09/01/2010 12:34:56 die i mensis ix annoque mmx xii h xxxiv m lvi s 20 mm 01 i  1 i Sep 244 2455441 09 ix  9 09/01/2010 die i mensis ix annoque mmx 10 x 2010}
test clock-2.1698 {conversion of 2010-09-30} {
    clock format 1285850096 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Sep September 09/30/2010 12:34:56 die xxx mensis ix annoque mmx xii h xxxiv m lvi s 20 mm 30 xxx 30 xxx Sep 273 2455470 09 ix  9 09/30/2010 die xxx mensis ix annoque mmx 10 x 2010}
test clock-2.1699 {conversion of 2010-10-01} {
    clock format 1285936496 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Oct October 10/01/2010 12:34:56 die i mensis x annoque mmx xii h xxxiv m lvi s 20 mm 01 i  1 i Oct 274 2455471 10 x 10 10/01/2010 die i mensis x annoque mmx 10 x 2010}
test clock-2.1700 {conversion of 2010-10-31} {
    clock format 1288528496 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Oct October 10/31/2010 12:34:56 die xxxi mensis x annoque mmx xii h xxxiv m lvi s 20 mm 31 xxxi 31 xxxi Oct 304 2455501 10 x 10 10/31/2010 die xxxi mensis x annoque mmx 10 x 2010}
test clock-2.1701 {conversion of 2010-11-01} {
    clock format 1288614896 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Nov November 11/01/2010 12:34:56 die i mensis xi annoque mmx xii h xxxiv m lvi s 20 mm 01 i  1 i Nov 305 2455502 11 xi 11 11/01/2010 die i mensis xi annoque mmx 10 x 2010}
test clock-2.1702 {conversion of 2010-11-30} {
    clock format 1291120496 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Nov November 11/30/2010 12:34:56 die xxx mensis xi annoque mmx xii h xxxiv m lvi s 20 mm 30 xxx 30 xxx Nov 334 2455531 11 xi 11 11/30/2010 die xxx mensis xi annoque mmx 10 x 2010}
test clock-2.1703 {conversion of 2010-12-01} {
    clock format 1291206896 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Dec December 12/01/2010 12:34:56 die i mensis xii annoque mmx xii h xxxiv m lvi s 20 mm 01 i  1 i Dec 335 2455532 12 xii 12 12/01/2010 die i mensis xii annoque mmx 10 x 2010}
test clock-2.1704 {conversion of 2010-12-31} {
    clock format 1293798896 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Dec December 12/31/2010 12:34:56 die xxxi mensis xii annoque mmx xii h xxxiv m lvi s 20 mm 31 xxxi 31 xxxi Dec 365 2455562 12 xii 12 12/31/2010 die xxxi mensis xii annoque mmx 10 x 2010}
test clock-2.1705 {conversion of 2011-01-01} {
    clock format 1293885296 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Jan January 01/01/2011 12:34:56 die i mensis i annoque mmxi xii h xxxiv m lvi s 20 mm 01 i  1 i Jan 001 2455563 01 i  1 01/01/2011 die i mensis i annoque mmxi 11 xi 2011}
test clock-2.1706 {conversion of 2011-01-31} {
    clock format 1296477296 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Jan January 01/31/2011 12:34:56 die xxxi mensis i annoque mmxi xii h xxxiv m lvi s 20 mm 31 xxxi 31 xxxi Jan 031 2455593 01 i  1 01/31/2011 die xxxi mensis i annoque mmxi 11 xi 2011}
test clock-2.1707 {conversion of 2011-02-01} {
    clock format 1296563696 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Feb February 02/01/2011 12:34:56 die i mensis ii annoque mmxi xii h xxxiv m lvi s 20 mm 01 i  1 i Feb 032 2455594 02 ii  2 02/01/2011 die i mensis ii annoque mmxi 11 xi 2011}
test clock-2.1708 {conversion of 2011-02-28} {
    clock format 1298896496 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Feb February 02/28/2011 12:34:56 die xxviii mensis ii annoque mmxi xii h xxxiv m lvi s 20 mm 28 xxviii 28 xxviii Feb 059 2455621 02 ii  2 02/28/2011 die xxviii mensis ii annoque mmxi 11 xi 2011}
test clock-2.1709 {conversion of 2011-03-01} {
    clock format 1298982896 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Mar March 03/01/2011 12:34:56 die i mensis iii annoque mmxi xii h xxxiv m lvi s 20 mm 01 i  1 i Mar 060 2455622 03 iii  3 03/01/2011 die i mensis iii annoque mmxi 11 xi 2011}
test clock-2.1710 {conversion of 2011-03-31} {
    clock format 1301574896 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Mar March 03/31/2011 12:34:56 die xxxi mensis iii annoque mmxi xii h xxxiv m lvi s 20 mm 31 xxxi 31 xxxi Mar 090 2455652 03 iii  3 03/31/2011 die xxxi mensis iii annoque mmxi 11 xi 2011}
test clock-2.1711 {conversion of 2011-04-01} {
    clock format 1301661296 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Apr April 04/01/2011 12:34:56 die i mensis iv annoque mmxi xii h xxxiv m lvi s 20 mm 01 i  1 i Apr 091 2455653 04 iv  4 04/01/2011 die i mensis iv annoque mmxi 11 xi 2011}
test clock-2.1712 {conversion of 2011-04-30} {
    clock format 1304166896 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Apr April 04/30/2011 12:34:56 die xxx mensis iv annoque mmxi xii h xxxiv m lvi s 20 mm 30 xxx 30 xxx Apr 120 2455682 04 iv  4 04/30/2011 die xxx mensis iv annoque mmxi 11 xi 2011}
test clock-2.1713 {conversion of 2011-05-01} {
    clock format 1304253296 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {May May 05/01/2011 12:34:56 die i mensis v annoque mmxi xii h xxxiv m lvi s 20 mm 01 i  1 i May 121 2455683 05 v  5 05/01/2011 die i mensis v annoque mmxi 11 xi 2011}
test clock-2.1714 {conversion of 2011-05-31} {
    clock format 1306845296 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {May May 05/31/2011 12:34:56 die xxxi mensis v annoque mmxi xii h xxxiv m lvi s 20 mm 31 xxxi 31 xxxi May 151 2455713 05 v  5 05/31/2011 die xxxi mensis v annoque mmxi 11 xi 2011}
test clock-2.1715 {conversion of 2011-06-01} {
    clock format 1306931696 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Jun June 06/01/2011 12:34:56 die i mensis vi annoque mmxi xii h xxxiv m lvi s 20 mm 01 i  1 i Jun 152 2455714 06 vi  6 06/01/2011 die i mensis vi annoque mmxi 11 xi 2011}
test clock-2.1716 {conversion of 2011-06-30} {
    clock format 1309437296 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Jun June 06/30/2011 12:34:56 die xxx mensis vi annoque mmxi xii h xxxiv m lvi s 20 mm 30 xxx 30 xxx Jun 181 2455743 06 vi  6 06/30/2011 die xxx mensis vi annoque mmxi 11 xi 2011}
test clock-2.1717 {conversion of 2011-07-01} {
    clock format 1309523696 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Jul July 07/01/2011 12:34:56 die i mensis vii annoque mmxi xii h xxxiv m lvi s 20 mm 01 i  1 i Jul 182 2455744 07 vii  7 07/01/2011 die i mensis vii annoque mmxi 11 xi 2011}
test clock-2.1718 {conversion of 2011-07-31} {
    clock format 1312115696 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Jul July 07/31/2011 12:34:56 die xxxi mensis vii annoque mmxi xii h xxxiv m lvi s 20 mm 31 xxxi 31 xxxi Jul 212 2455774 07 vii  7 07/31/2011 die xxxi mensis vii annoque mmxi 11 xi 2011}
test clock-2.1719 {conversion of 2011-08-01} {
    clock format 1312202096 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Aug August 08/01/2011 12:34:56 die i mensis viii annoque mmxi xii h xxxiv m lvi s 20 mm 01 i  1 i Aug 213 2455775 08 viii  8 08/01/2011 die i mensis viii annoque mmxi 11 xi 2011}
test clock-2.1720 {conversion of 2011-08-31} {
    clock format 1314794096 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Aug August 08/31/2011 12:34:56 die xxxi mensis viii annoque mmxi xii h xxxiv m lvi s 20 mm 31 xxxi 31 xxxi Aug 243 2455805 08 viii  8 08/31/2011 die xxxi mensis viii annoque mmxi 11 xi 2011}
test clock-2.1721 {conversion of 2011-09-01} {
    clock format 1314880496 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Sep September 09/01/2011 12:34:56 die i mensis ix annoque mmxi xii h xxxiv m lvi s 20 mm 01 i  1 i Sep 244 2455806 09 ix  9 09/01/2011 die i mensis ix annoque mmxi 11 xi 2011}
test clock-2.1722 {conversion of 2011-09-30} {
    clock format 1317386096 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Sep September 09/30/2011 12:34:56 die xxx mensis ix annoque mmxi xii h xxxiv m lvi s 20 mm 30 xxx 30 xxx Sep 273 2455835 09 ix  9 09/30/2011 die xxx mensis ix annoque mmxi 11 xi 2011}
test clock-2.1723 {conversion of 2011-10-01} {
    clock format 1317472496 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Oct October 10/01/2011 12:34:56 die i mensis x annoque mmxi xii h xxxiv m lvi s 20 mm 01 i  1 i Oct 274 2455836 10 x 10 10/01/2011 die i mensis x annoque mmxi 11 xi 2011}
test clock-2.1724 {conversion of 2011-10-31} {
    clock format 1320064496 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Oct October 10/31/2011 12:34:56 die xxxi mensis x annoque mmxi xii h xxxiv m lvi s 20 mm 31 xxxi 31 xxxi Oct 304 2455866 10 x 10 10/31/2011 die xxxi mensis x annoque mmxi 11 xi 2011}
test clock-2.1725 {conversion of 2011-11-01} {
    clock format 1320150896 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Nov November 11/01/2011 12:34:56 die i mensis xi annoque mmxi xii h xxxiv m lvi s 20 mm 01 i  1 i Nov 305 2455867 11 xi 11 11/01/2011 die i mensis xi annoque mmxi 11 xi 2011}
test clock-2.1726 {conversion of 2011-11-30} {
    clock format 1322656496 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Nov November 11/30/2011 12:34:56 die xxx mensis xi annoque mmxi xii h xxxiv m lvi s 20 mm 30 xxx 30 xxx Nov 334 2455896 11 xi 11 11/30/2011 die xxx mensis xi annoque mmxi 11 xi 2011}
test clock-2.1727 {conversion of 2011-12-01} {
    clock format 1322742896 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Dec December 12/01/2011 12:34:56 die i mensis xii annoque mmxi xii h xxxiv m lvi s 20 mm 01 i  1 i Dec 335 2455897 12 xii 12 12/01/2011 die i mensis xii annoque mmxi 11 xi 2011}
test clock-2.1728 {conversion of 2011-12-31} {
    clock format 1325334896 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Dec December 12/31/2011 12:34:56 die xxxi mensis xii annoque mmxi xii h xxxiv m lvi s 20 mm 31 xxxi 31 xxxi Dec 365 2455927 12 xii 12 12/31/2011 die xxxi mensis xii annoque mmxi 11 xi 2011}
test clock-2.1729 {conversion of 2012-01-01} {
    clock format 1325421296 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Jan January 01/01/2012 12:34:56 die i mensis i annoque mmxii xii h xxxiv m lvi s 20 mm 01 i  1 i Jan 001 2455928 01 i  1 01/01/2012 die i mensis i annoque mmxii 12 xii 2012}
test clock-2.1730 {conversion of 2012-01-31} {
    clock format 1328013296 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Jan January 01/31/2012 12:34:56 die xxxi mensis i annoque mmxii xii h xxxiv m lvi s 20 mm 31 xxxi 31 xxxi Jan 031 2455958 01 i  1 01/31/2012 die xxxi mensis i annoque mmxii 12 xii 2012}
test clock-2.1731 {conversion of 2012-02-01} {
    clock format 1328099696 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Feb February 02/01/2012 12:34:56 die i mensis ii annoque mmxii xii h xxxiv m lvi s 20 mm 01 i  1 i Feb 032 2455959 02 ii  2 02/01/2012 die i mensis ii annoque mmxii 12 xii 2012}
test clock-2.1732 {conversion of 2012-02-29} {
    clock format 1330518896 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Feb February 02/29/2012 12:34:56 die xxix mensis ii annoque mmxii xii h xxxiv m lvi s 20 mm 29 xxix 29 xxix Feb 060 2455987 02 ii  2 02/29/2012 die xxix mensis ii annoque mmxii 12 xii 2012}
test clock-2.1733 {conversion of 2012-03-01} {
    clock format 1330605296 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Mar March 03/01/2012 12:34:56 die i mensis iii annoque mmxii xii h xxxiv m lvi s 20 mm 01 i  1 i Mar 061 2455988 03 iii  3 03/01/2012 die i mensis iii annoque mmxii 12 xii 2012}
test clock-2.1734 {conversion of 2012-03-31} {
    clock format 1333197296 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Mar March 03/31/2012 12:34:56 die xxxi mensis iii annoque mmxii xii h xxxiv m lvi s 20 mm 31 xxxi 31 xxxi Mar 091 2456018 03 iii  3 03/31/2012 die xxxi mensis iii annoque mmxii 12 xii 2012}
test clock-2.1735 {conversion of 2012-04-01} {
    clock format 1333283696 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Apr April 04/01/2012 12:34:56 die i mensis iv annoque mmxii xii h xxxiv m lvi s 20 mm 01 i  1 i Apr 092 2456019 04 iv  4 04/01/2012 die i mensis iv annoque mmxii 12 xii 2012}
test clock-2.1736 {conversion of 2012-04-30} {
    clock format 1335789296 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Apr April 04/30/2012 12:34:56 die xxx mensis iv annoque mmxii xii h xxxiv m lvi s 20 mm 30 xxx 30 xxx Apr 121 2456048 04 iv  4 04/30/2012 die xxx mensis iv annoque mmxii 12 xii 2012}
test clock-2.1737 {conversion of 2012-05-01} {
    clock format 1335875696 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {May May 05/01/2012 12:34:56 die i mensis v annoque mmxii xii h xxxiv m lvi s 20 mm 01 i  1 i May 122 2456049 05 v  5 05/01/2012 die i mensis v annoque mmxii 12 xii 2012}
test clock-2.1738 {conversion of 2012-05-31} {
    clock format 1338467696 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {May May 05/31/2012 12:34:56 die xxxi mensis v annoque mmxii xii h xxxiv m lvi s 20 mm 31 xxxi 31 xxxi May 152 2456079 05 v  5 05/31/2012 die xxxi mensis v annoque mmxii 12 xii 2012}
test clock-2.1739 {conversion of 2012-06-01} {
    clock format 1338554096 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Jun June 06/01/2012 12:34:56 die i mensis vi annoque mmxii xii h xxxiv m lvi s 20 mm 01 i  1 i Jun 153 2456080 06 vi  6 06/01/2012 die i mensis vi annoque mmxii 12 xii 2012}
test clock-2.1740 {conversion of 2012-06-30} {
    clock format 1341059696 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Jun June 06/30/2012 12:34:56 die xxx mensis vi annoque mmxii xii h xxxiv m lvi s 20 mm 30 xxx 30 xxx Jun 182 2456109 06 vi  6 06/30/2012 die xxx mensis vi annoque mmxii 12 xii 2012}
test clock-2.1741 {conversion of 2012-07-01} {
    clock format 1341146096 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Jul July 07/01/2012 12:34:56 die i mensis vii annoque mmxii xii h xxxiv m lvi s 20 mm 01 i  1 i Jul 183 2456110 07 vii  7 07/01/2012 die i mensis vii annoque mmxii 12 xii 2012}
test clock-2.1742 {conversion of 2012-07-31} {
    clock format 1343738096 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Jul July 07/31/2012 12:34:56 die xxxi mensis vii annoque mmxii xii h xxxiv m lvi s 20 mm 31 xxxi 31 xxxi Jul 213 2456140 07 vii  7 07/31/2012 die xxxi mensis vii annoque mmxii 12 xii 2012}
test clock-2.1743 {conversion of 2012-08-01} {
    clock format 1343824496 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Aug August 08/01/2012 12:34:56 die i mensis viii annoque mmxii xii h xxxiv m lvi s 20 mm 01 i  1 i Aug 214 2456141 08 viii  8 08/01/2012 die i mensis viii annoque mmxii 12 xii 2012}
test clock-2.1744 {conversion of 2012-08-31} {
    clock format 1346416496 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Aug August 08/31/2012 12:34:56 die xxxi mensis viii annoque mmxii xii h xxxiv m lvi s 20 mm 31 xxxi 31 xxxi Aug 244 2456171 08 viii  8 08/31/2012 die xxxi mensis viii annoque mmxii 12 xii 2012}
test clock-2.1745 {conversion of 2012-09-01} {
    clock format 1346502896 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Sep September 09/01/2012 12:34:56 die i mensis ix annoque mmxii xii h xxxiv m lvi s 20 mm 01 i  1 i Sep 245 2456172 09 ix  9 09/01/2012 die i mensis ix annoque mmxii 12 xii 2012}
test clock-2.1746 {conversion of 2012-09-30} {
    clock format 1349008496 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Sep September 09/30/2012 12:34:56 die xxx mensis ix annoque mmxii xii h xxxiv m lvi s 20 mm 30 xxx 30 xxx Sep 274 2456201 09 ix  9 09/30/2012 die xxx mensis ix annoque mmxii 12 xii 2012}
test clock-2.1747 {conversion of 2012-10-01} {
    clock format 1349094896 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Oct October 10/01/2012 12:34:56 die i mensis x annoque mmxii xii h xxxiv m lvi s 20 mm 01 i  1 i Oct 275 2456202 10 x 10 10/01/2012 die i mensis x annoque mmxii 12 xii 2012}
test clock-2.1748 {conversion of 2012-10-31} {
    clock format 1351686896 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Oct October 10/31/2012 12:34:56 die xxxi mensis x annoque mmxii xii h xxxiv m lvi s 20 mm 31 xxxi 31 xxxi Oct 305 2456232 10 x 10 10/31/2012 die xxxi mensis x annoque mmxii 12 xii 2012}
test clock-2.1749 {conversion of 2012-11-01} {
    clock format 1351773296 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Nov November 11/01/2012 12:34:56 die i mensis xi annoque mmxii xii h xxxiv m lvi s 20 mm 01 i  1 i Nov 306 2456233 11 xi 11 11/01/2012 die i mensis xi annoque mmxii 12 xii 2012}
test clock-2.1750 {conversion of 2012-11-30} {
    clock format 1354278896 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Nov November 11/30/2012 12:34:56 die xxx mensis xi annoque mmxii xii h xxxiv m lvi s 20 mm 30 xxx 30 xxx Nov 335 2456262 11 xi 11 11/30/2012 die xxx mensis xi annoque mmxii 12 xii 2012}
test clock-2.1751 {conversion of 2012-12-01} {
    clock format 1354365296 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Dec December 12/01/2012 12:34:56 die i mensis xii annoque mmxii xii h xxxiv m lvi s 20 mm 01 i  1 i Dec 336 2456263 12 xii 12 12/01/2012 die i mensis xii annoque mmxii 12 xii 2012}
test clock-2.1752 {conversion of 2012-12-31} {
    clock format 1356957296 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Dec December 12/31/2012 12:34:56 die xxxi mensis xii annoque mmxii xii h xxxiv m lvi s 20 mm 31 xxxi 31 xxxi Dec 366 2456293 12 xii 12 12/31/2012 die xxxi mensis xii annoque mmxii 12 xii 2012}
test clock-2.1753 {conversion of 2013-01-01} {
    clock format 1357043696 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Jan January 01/01/2013 12:34:56 die i mensis i annoque mmxiii xii h xxxiv m lvi s 20 mm 01 i  1 i Jan 001 2456294 01 i  1 01/01/2013 die i mensis i annoque mmxiii 13 xiii 2013}
test clock-2.1754 {conversion of 2013-01-31} {
    clock format 1359635696 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Jan January 01/31/2013 12:34:56 die xxxi mensis i annoque mmxiii xii h xxxiv m lvi s 20 mm 31 xxxi 31 xxxi Jan 031 2456324 01 i  1 01/31/2013 die xxxi mensis i annoque mmxiii 13 xiii 2013}
test clock-2.1755 {conversion of 2013-02-01} {
    clock format 1359722096 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Feb February 02/01/2013 12:34:56 die i mensis ii annoque mmxiii xii h xxxiv m lvi s 20 mm 01 i  1 i Feb 032 2456325 02 ii  2 02/01/2013 die i mensis ii annoque mmxiii 13 xiii 2013}
test clock-2.1756 {conversion of 2013-02-28} {
    clock format 1362054896 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Feb February 02/28/2013 12:34:56 die xxviii mensis ii annoque mmxiii xii h xxxiv m lvi s 20 mm 28 xxviii 28 xxviii Feb 059 2456352 02 ii  2 02/28/2013 die xxviii mensis ii annoque mmxiii 13 xiii 2013}
test clock-2.1757 {conversion of 2013-03-01} {
    clock format 1362141296 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Mar March 03/01/2013 12:34:56 die i mensis iii annoque mmxiii xii h xxxiv m lvi s 20 mm 01 i  1 i Mar 060 2456353 03 iii  3 03/01/2013 die i mensis iii annoque mmxiii 13 xiii 2013}
test clock-2.1758 {conversion of 2013-03-31} {
    clock format 1364733296 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Mar March 03/31/2013 12:34:56 die xxxi mensis iii annoque mmxiii xii h xxxiv m lvi s 20 mm 31 xxxi 31 xxxi Mar 090 2456383 03 iii  3 03/31/2013 die xxxi mensis iii annoque mmxiii 13 xiii 2013}
test clock-2.1759 {conversion of 2013-04-01} {
    clock format 1364819696 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Apr April 04/01/2013 12:34:56 die i mensis iv annoque mmxiii xii h xxxiv m lvi s 20 mm 01 i  1 i Apr 091 2456384 04 iv  4 04/01/2013 die i mensis iv annoque mmxiii 13 xiii 2013}
test clock-2.1760 {conversion of 2013-04-30} {
    clock format 1367325296 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Apr April 04/30/2013 12:34:56 die xxx mensis iv annoque mmxiii xii h xxxiv m lvi s 20 mm 30 xxx 30 xxx Apr 120 2456413 04 iv  4 04/30/2013 die xxx mensis iv annoque mmxiii 13 xiii 2013}
test clock-2.1761 {conversion of 2013-05-01} {
    clock format 1367411696 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {May May 05/01/2013 12:34:56 die i mensis v annoque mmxiii xii h xxxiv m lvi s 20 mm 01 i  1 i May 121 2456414 05 v  5 05/01/2013 die i mensis v annoque mmxiii 13 xiii 2013}
test clock-2.1762 {conversion of 2013-05-31} {
    clock format 1370003696 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {May May 05/31/2013 12:34:56 die xxxi mensis v annoque mmxiii xii h xxxiv m lvi s 20 mm 31 xxxi 31 xxxi May 151 2456444 05 v  5 05/31/2013 die xxxi mensis v annoque mmxiii 13 xiii 2013}
test clock-2.1763 {conversion of 2013-06-01} {
    clock format 1370090096 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Jun June 06/01/2013 12:34:56 die i mensis vi annoque mmxiii xii h xxxiv m lvi s 20 mm 01 i  1 i Jun 152 2456445 06 vi  6 06/01/2013 die i mensis vi annoque mmxiii 13 xiii 2013}
test clock-2.1764 {conversion of 2013-06-30} {
    clock format 1372595696 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Jun June 06/30/2013 12:34:56 die xxx mensis vi annoque mmxiii xii h xxxiv m lvi s 20 mm 30 xxx 30 xxx Jun 181 2456474 06 vi  6 06/30/2013 die xxx mensis vi annoque mmxiii 13 xiii 2013}
test clock-2.1765 {conversion of 2013-07-01} {
    clock format 1372682096 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Jul July 07/01/2013 12:34:56 die i mensis vii annoque mmxiii xii h xxxiv m lvi s 20 mm 01 i  1 i Jul 182 2456475 07 vii  7 07/01/2013 die i mensis vii annoque mmxiii 13 xiii 2013}
test clock-2.1766 {conversion of 2013-07-31} {
    clock format 1375274096 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Jul July 07/31/2013 12:34:56 die xxxi mensis vii annoque mmxiii xii h xxxiv m lvi s 20 mm 31 xxxi 31 xxxi Jul 212 2456505 07 vii  7 07/31/2013 die xxxi mensis vii annoque mmxiii 13 xiii 2013}
test clock-2.1767 {conversion of 2013-08-01} {
    clock format 1375360496 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Aug August 08/01/2013 12:34:56 die i mensis viii annoque mmxiii xii h xxxiv m lvi s 20 mm 01 i  1 i Aug 213 2456506 08 viii  8 08/01/2013 die i mensis viii annoque mmxiii 13 xiii 2013}
test clock-2.1768 {conversion of 2013-08-31} {
    clock format 1377952496 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Aug August 08/31/2013 12:34:56 die xxxi mensis viii annoque mmxiii xii h xxxiv m lvi s 20 mm 31 xxxi 31 xxxi Aug 243 2456536 08 viii  8 08/31/2013 die xxxi mensis viii annoque mmxiii 13 xiii 2013}
test clock-2.1769 {conversion of 2013-09-01} {
    clock format 1378038896 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Sep September 09/01/2013 12:34:56 die i mensis ix annoque mmxiii xii h xxxiv m lvi s 20 mm 01 i  1 i Sep 244 2456537 09 ix  9 09/01/2013 die i mensis ix annoque mmxiii 13 xiii 2013}
test clock-2.1770 {conversion of 2013-09-30} {
    clock format 1380544496 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Sep September 09/30/2013 12:34:56 die xxx mensis ix annoque mmxiii xii h xxxiv m lvi s 20 mm 30 xxx 30 xxx Sep 273 2456566 09 ix  9 09/30/2013 die xxx mensis ix annoque mmxiii 13 xiii 2013}
test clock-2.1771 {conversion of 2013-10-01} {
    clock format 1380630896 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Oct October 10/01/2013 12:34:56 die i mensis x annoque mmxiii xii h xxxiv m lvi s 20 mm 01 i  1 i Oct 274 2456567 10 x 10 10/01/2013 die i mensis x annoque mmxiii 13 xiii 2013}
test clock-2.1772 {conversion of 2013-10-31} {
    clock format 1383222896 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Oct October 10/31/2013 12:34:56 die xxxi mensis x annoque mmxiii xii h xxxiv m lvi s 20 mm 31 xxxi 31 xxxi Oct 304 2456597 10 x 10 10/31/2013 die xxxi mensis x annoque mmxiii 13 xiii 2013}
test clock-2.1773 {conversion of 2013-11-01} {
    clock format 1383309296 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Nov November 11/01/2013 12:34:56 die i mensis xi annoque mmxiii xii h xxxiv m lvi s 20 mm 01 i  1 i Nov 305 2456598 11 xi 11 11/01/2013 die i mensis xi annoque mmxiii 13 xiii 2013}
test clock-2.1774 {conversion of 2013-11-30} {
    clock format 1385814896 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Nov November 11/30/2013 12:34:56 die xxx mensis xi annoque mmxiii xii h xxxiv m lvi s 20 mm 30 xxx 30 xxx Nov 334 2456627 11 xi 11 11/30/2013 die xxx mensis xi annoque mmxiii 13 xiii 2013}
test clock-2.1775 {conversion of 2013-12-01} {
    clock format 1385901296 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Dec December 12/01/2013 12:34:56 die i mensis xii annoque mmxiii xii h xxxiv m lvi s 20 mm 01 i  1 i Dec 335 2456628 12 xii 12 12/01/2013 die i mensis xii annoque mmxiii 13 xiii 2013}
test clock-2.1776 {conversion of 2013-12-31} {
    clock format 1388493296 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Dec December 12/31/2013 12:34:56 die xxxi mensis xii annoque mmxiii xii h xxxiv m lvi s 20 mm 31 xxxi 31 xxxi Dec 365 2456658 12 xii 12 12/31/2013 die xxxi mensis xii annoque mmxiii 13 xiii 2013}
test clock-2.1777 {conversion of 2016-01-01} {
    clock format 1451651696 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Jan January 01/01/2016 12:34:56 die i mensis i annoque mmxvi xii h xxxiv m lvi s 20 mm 01 i  1 i Jan 001 2457389 01 i  1 01/01/2016 die i mensis i annoque mmxvi 16 xvi 2016}
test clock-2.1778 {conversion of 2016-01-31} {
    clock format 1454243696 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Jan January 01/31/2016 12:34:56 die xxxi mensis i annoque mmxvi xii h xxxiv m lvi s 20 mm 31 xxxi 31 xxxi Jan 031 2457419 01 i  1 01/31/2016 die xxxi mensis i annoque mmxvi 16 xvi 2016}
test clock-2.1779 {conversion of 2016-02-01} {
    clock format 1454330096 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Feb February 02/01/2016 12:34:56 die i mensis ii annoque mmxvi xii h xxxiv m lvi s 20 mm 01 i  1 i Feb 032 2457420 02 ii  2 02/01/2016 die i mensis ii annoque mmxvi 16 xvi 2016}
test clock-2.1780 {conversion of 2016-02-29} {
    clock format 1456749296 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Feb February 02/29/2016 12:34:56 die xxix mensis ii annoque mmxvi xii h xxxiv m lvi s 20 mm 29 xxix 29 xxix Feb 060 2457448 02 ii  2 02/29/2016 die xxix mensis ii annoque mmxvi 16 xvi 2016}
test clock-2.1781 {conversion of 2016-03-01} {
    clock format 1456835696 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Mar March 03/01/2016 12:34:56 die i mensis iii annoque mmxvi xii h xxxiv m lvi s 20 mm 01 i  1 i Mar 061 2457449 03 iii  3 03/01/2016 die i mensis iii annoque mmxvi 16 xvi 2016}
test clock-2.1782 {conversion of 2016-03-31} {
    clock format 1459427696 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Mar March 03/31/2016 12:34:56 die xxxi mensis iii annoque mmxvi xii h xxxiv m lvi s 20 mm 31 xxxi 31 xxxi Mar 091 2457479 03 iii  3 03/31/2016 die xxxi mensis iii annoque mmxvi 16 xvi 2016}
test clock-2.1783 {conversion of 2016-04-01} {
    clock format 1459514096 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Apr April 04/01/2016 12:34:56 die i mensis iv annoque mmxvi xii h xxxiv m lvi s 20 mm 01 i  1 i Apr 092 2457480 04 iv  4 04/01/2016 die i mensis iv annoque mmxvi 16 xvi 2016}
test clock-2.1784 {conversion of 2016-04-30} {
    clock format 1462019696 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Apr April 04/30/2016 12:34:56 die xxx mensis iv annoque mmxvi xii h xxxiv m lvi s 20 mm 30 xxx 30 xxx Apr 121 2457509 04 iv  4 04/30/2016 die xxx mensis iv annoque mmxvi 16 xvi 2016}
test clock-2.1785 {conversion of 2016-05-01} {
    clock format 1462106096 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {May May 05/01/2016 12:34:56 die i mensis v annoque mmxvi xii h xxxiv m lvi s 20 mm 01 i  1 i May 122 2457510 05 v  5 05/01/2016 die i mensis v annoque mmxvi 16 xvi 2016}
test clock-2.1786 {conversion of 2016-05-31} {
    clock format 1464698096 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {May May 05/31/2016 12:34:56 die xxxi mensis v annoque mmxvi xii h xxxiv m lvi s 20 mm 31 xxxi 31 xxxi May 152 2457540 05 v  5 05/31/2016 die xxxi mensis v annoque mmxvi 16 xvi 2016}
test clock-2.1787 {conversion of 2016-06-01} {
    clock format 1464784496 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Jun June 06/01/2016 12:34:56 die i mensis vi annoque mmxvi xii h xxxiv m lvi s 20 mm 01 i  1 i Jun 153 2457541 06 vi  6 06/01/2016 die i mensis vi annoque mmxvi 16 xvi 2016}
test clock-2.1788 {conversion of 2016-06-30} {
    clock format 1467290096 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Jun June 06/30/2016 12:34:56 die xxx mensis vi annoque mmxvi xii h xxxiv m lvi s 20 mm 30 xxx 30 xxx Jun 182 2457570 06 vi  6 06/30/2016 die xxx mensis vi annoque mmxvi 16 xvi 2016}
test clock-2.1789 {conversion of 2016-07-01} {
    clock format 1467376496 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Jul July 07/01/2016 12:34:56 die i mensis vii annoque mmxvi xii h xxxiv m lvi s 20 mm 01 i  1 i Jul 183 2457571 07 vii  7 07/01/2016 die i mensis vii annoque mmxvi 16 xvi 2016}
test clock-2.1790 {conversion of 2016-07-31} {
    clock format 1469968496 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Jul July 07/31/2016 12:34:56 die xxxi mensis vii annoque mmxvi xii h xxxiv m lvi s 20 mm 31 xxxi 31 xxxi Jul 213 2457601 07 vii  7 07/31/2016 die xxxi mensis vii annoque mmxvi 16 xvi 2016}
test clock-2.1791 {conversion of 2016-08-01} {
    clock format 1470054896 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Aug August 08/01/2016 12:34:56 die i mensis viii annoque mmxvi xii h xxxiv m lvi s 20 mm 01 i  1 i Aug 214 2457602 08 viii  8 08/01/2016 die i mensis viii annoque mmxvi 16 xvi 2016}
test clock-2.1792 {conversion of 2016-08-31} {
    clock format 1472646896 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Aug August 08/31/2016 12:34:56 die xxxi mensis viii annoque mmxvi xii h xxxiv m lvi s 20 mm 31 xxxi 31 xxxi Aug 244 2457632 08 viii  8 08/31/2016 die xxxi mensis viii annoque mmxvi 16 xvi 2016}
test clock-2.1793 {conversion of 2016-09-01} {
    clock format 1472733296 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Sep September 09/01/2016 12:34:56 die i mensis ix annoque mmxvi xii h xxxiv m lvi s 20 mm 01 i  1 i Sep 245 2457633 09 ix  9 09/01/2016 die i mensis ix annoque mmxvi 16 xvi 2016}
test clock-2.1794 {conversion of 2016-09-30} {
    clock format 1475238896 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Sep September 09/30/2016 12:34:56 die xxx mensis ix annoque mmxvi xii h xxxiv m lvi s 20 mm 30 xxx 30 xxx Sep 274 2457662 09 ix  9 09/30/2016 die xxx mensis ix annoque mmxvi 16 xvi 2016}
test clock-2.1795 {conversion of 2016-10-01} {
    clock format 1475325296 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Oct October 10/01/2016 12:34:56 die i mensis x annoque mmxvi xii h xxxiv m lvi s 20 mm 01 i  1 i Oct 275 2457663 10 x 10 10/01/2016 die i mensis x annoque mmxvi 16 xvi 2016}
test clock-2.1796 {conversion of 2016-10-31} {
    clock format 1477917296 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Oct October 10/31/2016 12:34:56 die xxxi mensis x annoque mmxvi xii h xxxiv m lvi s 20 mm 31 xxxi 31 xxxi Oct 305 2457693 10 x 10 10/31/2016 die xxxi mensis x annoque mmxvi 16 xvi 2016}
test clock-2.1797 {conversion of 2016-11-01} {
    clock format 1478003696 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Nov November 11/01/2016 12:34:56 die i mensis xi annoque mmxvi xii h xxxiv m lvi s 20 mm 01 i  1 i Nov 306 2457694 11 xi 11 11/01/2016 die i mensis xi annoque mmxvi 16 xvi 2016}
test clock-2.1798 {conversion of 2016-11-30} {
    clock format 1480509296 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Nov November 11/30/2016 12:34:56 die xxx mensis xi annoque mmxvi xii h xxxiv m lvi s 20 mm 30 xxx 30 xxx Nov 335 2457723 11 xi 11 11/30/2016 die xxx mensis xi annoque mmxvi 16 xvi 2016}
test clock-2.1799 {conversion of 2016-12-01} {
    clock format 1480595696 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Dec December 12/01/2016 12:34:56 die i mensis xii annoque mmxvi xii h xxxiv m lvi s 20 mm 01 i  1 i Dec 336 2457724 12 xii 12 12/01/2016 die i mensis xii annoque mmxvi 16 xvi 2016}
test clock-2.1800 {conversion of 2016-12-31} {
    clock format 1483187696 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Dec December 12/31/2016 12:34:56 die xxxi mensis xii annoque mmxvi xii h xxxiv m lvi s 20 mm 31 xxxi 31 xxxi Dec 366 2457754 12 xii 12 12/31/2016 die xxxi mensis xii annoque mmxvi 16 xvi 2016}
test clock-2.1801 {conversion of 2017-01-01} {
    clock format 1483274096 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Jan January 01/01/2017 12:34:56 die i mensis i annoque mmxvii xii h xxxiv m lvi s 20 mm 01 i  1 i Jan 001 2457755 01 i  1 01/01/2017 die i mensis i annoque mmxvii 17 xvii 2017}
test clock-2.1802 {conversion of 2017-01-31} {
    clock format 1485866096 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Jan January 01/31/2017 12:34:56 die xxxi mensis i annoque mmxvii xii h xxxiv m lvi s 20 mm 31 xxxi 31 xxxi Jan 031 2457785 01 i  1 01/31/2017 die xxxi mensis i annoque mmxvii 17 xvii 2017}
test clock-2.1803 {conversion of 2017-02-01} {
    clock format 1485952496 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Feb February 02/01/2017 12:34:56 die i mensis ii annoque mmxvii xii h xxxiv m lvi s 20 mm 01 i  1 i Feb 032 2457786 02 ii  2 02/01/2017 die i mensis ii annoque mmxvii 17 xvii 2017}
test clock-2.1804 {conversion of 2017-02-28} {
    clock format 1488285296 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Feb February 02/28/2017 12:34:56 die xxviii mensis ii annoque mmxvii xii h xxxiv m lvi s 20 mm 28 xxviii 28 xxviii Feb 059 2457813 02 ii  2 02/28/2017 die xxviii mensis ii annoque mmxvii 17 xvii 2017}
test clock-2.1805 {conversion of 2017-03-01} {
    clock format 1488371696 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Mar March 03/01/2017 12:34:56 die i mensis iii annoque mmxvii xii h xxxiv m lvi s 20 mm 01 i  1 i Mar 060 2457814 03 iii  3 03/01/2017 die i mensis iii annoque mmxvii 17 xvii 2017}
test clock-2.1806 {conversion of 2017-03-31} {
    clock format 1490963696 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Mar March 03/31/2017 12:34:56 die xxxi mensis iii annoque mmxvii xii h xxxiv m lvi s 20 mm 31 xxxi 31 xxxi Mar 090 2457844 03 iii  3 03/31/2017 die xxxi mensis iii annoque mmxvii 17 xvii 2017}
test clock-2.1807 {conversion of 2017-04-01} {
    clock format 1491050096 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Apr April 04/01/2017 12:34:56 die i mensis iv annoque mmxvii xii h xxxiv m lvi s 20 mm 01 i  1 i Apr 091 2457845 04 iv  4 04/01/2017 die i mensis iv annoque mmxvii 17 xvii 2017}
test clock-2.1808 {conversion of 2017-04-30} {
    clock format 1493555696 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Apr April 04/30/2017 12:34:56 die xxx mensis iv annoque mmxvii xii h xxxiv m lvi s 20 mm 30 xxx 30 xxx Apr 120 2457874 04 iv  4 04/30/2017 die xxx mensis iv annoque mmxvii 17 xvii 2017}
test clock-2.1809 {conversion of 2017-05-01} {
    clock format 1493642096 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {May May 05/01/2017 12:34:56 die i mensis v annoque mmxvii xii h xxxiv m lvi s 20 mm 01 i  1 i May 121 2457875 05 v  5 05/01/2017 die i mensis v annoque mmxvii 17 xvii 2017}
test clock-2.1810 {conversion of 2017-05-31} {
    clock format 1496234096 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {May May 05/31/2017 12:34:56 die xxxi mensis v annoque mmxvii xii h xxxiv m lvi s 20 mm 31 xxxi 31 xxxi May 151 2457905 05 v  5 05/31/2017 die xxxi mensis v annoque mmxvii 17 xvii 2017}
test clock-2.1811 {conversion of 2017-06-01} {
    clock format 1496320496 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Jun June 06/01/2017 12:34:56 die i mensis vi annoque mmxvii xii h xxxiv m lvi s 20 mm 01 i  1 i Jun 152 2457906 06 vi  6 06/01/2017 die i mensis vi annoque mmxvii 17 xvii 2017}
test clock-2.1812 {conversion of 2017-06-30} {
    clock format 1498826096 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Jun June 06/30/2017 12:34:56 die xxx mensis vi annoque mmxvii xii h xxxiv m lvi s 20 mm 30 xxx 30 xxx Jun 181 2457935 06 vi  6 06/30/2017 die xxx mensis vi annoque mmxvii 17 xvii 2017}
test clock-2.1813 {conversion of 2017-07-01} {
    clock format 1498912496 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Jul July 07/01/2017 12:34:56 die i mensis vii annoque mmxvii xii h xxxiv m lvi s 20 mm 01 i  1 i Jul 182 2457936 07 vii  7 07/01/2017 die i mensis vii annoque mmxvii 17 xvii 2017}
test clock-2.1814 {conversion of 2017-07-31} {
    clock format 1501504496 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Jul July 07/31/2017 12:34:56 die xxxi mensis vii annoque mmxvii xii h xxxiv m lvi s 20 mm 31 xxxi 31 xxxi Jul 212 2457966 07 vii  7 07/31/2017 die xxxi mensis vii annoque mmxvii 17 xvii 2017}
test clock-2.1815 {conversion of 2017-08-01} {
    clock format 1501590896 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Aug August 08/01/2017 12:34:56 die i mensis viii annoque mmxvii xii h xxxiv m lvi s 20 mm 01 i  1 i Aug 213 2457967 08 viii  8 08/01/2017 die i mensis viii annoque mmxvii 17 xvii 2017}
test clock-2.1816 {conversion of 2017-08-31} {
    clock format 1504182896 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Aug August 08/31/2017 12:34:56 die xxxi mensis viii annoque mmxvii xii h xxxiv m lvi s 20 mm 31 xxxi 31 xxxi Aug 243 2457997 08 viii  8 08/31/2017 die xxxi mensis viii annoque mmxvii 17 xvii 2017}
test clock-2.1817 {conversion of 2017-09-01} {
    clock format 1504269296 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Sep September 09/01/2017 12:34:56 die i mensis ix annoque mmxvii xii h xxxiv m lvi s 20 mm 01 i  1 i Sep 244 2457998 09 ix  9 09/01/2017 die i mensis ix annoque mmxvii 17 xvii 2017}
test clock-2.1818 {conversion of 2017-09-30} {
    clock format 1506774896 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Sep September 09/30/2017 12:34:56 die xxx mensis ix annoque mmxvii xii h xxxiv m lvi s 20 mm 30 xxx 30 xxx Sep 273 2458027 09 ix  9 09/30/2017 die xxx mensis ix annoque mmxvii 17 xvii 2017}
test clock-2.1819 {conversion of 2017-10-01} {
    clock format 1506861296 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Oct October 10/01/2017 12:34:56 die i mensis x annoque mmxvii xii h xxxiv m lvi s 20 mm 01 i  1 i Oct 274 2458028 10 x 10 10/01/2017 die i mensis x annoque mmxvii 17 xvii 2017}
test clock-2.1820 {conversion of 2017-10-31} {
    clock format 1509453296 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Oct October 10/31/2017 12:34:56 die xxxi mensis x annoque mmxvii xii h xxxiv m lvi s 20 mm 31 xxxi 31 xxxi Oct 304 2458058 10 x 10 10/31/2017 die xxxi mensis x annoque mmxvii 17 xvii 2017}
test clock-2.1821 {conversion of 2017-11-01} {
    clock format 1509539696 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Nov November 11/01/2017 12:34:56 die i mensis xi annoque mmxvii xii h xxxiv m lvi s 20 mm 01 i  1 i Nov 305 2458059 11 xi 11 11/01/2017 die i mensis xi annoque mmxvii 17 xvii 2017}
test clock-2.1822 {conversion of 2017-11-30} {
    clock format 1512045296 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Nov November 11/30/2017 12:34:56 die xxx mensis xi annoque mmxvii xii h xxxiv m lvi s 20 mm 30 xxx 30 xxx Nov 334 2458088 11 xi 11 11/30/2017 die xxx mensis xi annoque mmxvii 17 xvii 2017}
test clock-2.1823 {conversion of 2017-12-01} {
    clock format 1512131696 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Dec December 12/01/2017 12:34:56 die i mensis xii annoque mmxvii xii h xxxiv m lvi s 20 mm 01 i  1 i Dec 335 2458089 12 xii 12 12/01/2017 die i mensis xii annoque mmxvii 17 xvii 2017}
test clock-2.1824 {conversion of 2017-12-31} {
    clock format 1514723696 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Dec December 12/31/2017 12:34:56 die xxxi mensis xii annoque mmxvii xii h xxxiv m lvi s 20 mm 31 xxxi 31 xxxi Dec 365 2458119 12 xii 12 12/31/2017 die xxxi mensis xii annoque mmxvii 17 xvii 2017}
test clock-2.1825 {conversion of 2020-01-01} {
    clock format 1577882096 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Jan January 01/01/2020 12:34:56 die i mensis i annoque mmxx xii h xxxiv m lvi s 20 mm 01 i  1 i Jan 001 2458850 01 i  1 01/01/2020 die i mensis i annoque mmxx 20 xx 2020}
test clock-2.1826 {conversion of 2020-01-31} {
    clock format 1580474096 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Jan January 01/31/2020 12:34:56 die xxxi mensis i annoque mmxx xii h xxxiv m lvi s 20 mm 31 xxxi 31 xxxi Jan 031 2458880 01 i  1 01/31/2020 die xxxi mensis i annoque mmxx 20 xx 2020}
test clock-2.1827 {conversion of 2020-02-01} {
    clock format 1580560496 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Feb February 02/01/2020 12:34:56 die i mensis ii annoque mmxx xii h xxxiv m lvi s 20 mm 01 i  1 i Feb 032 2458881 02 ii  2 02/01/2020 die i mensis ii annoque mmxx 20 xx 2020}
test clock-2.1828 {conversion of 2020-02-29} {
    clock format 1582979696 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Feb February 02/29/2020 12:34:56 die xxix mensis ii annoque mmxx xii h xxxiv m lvi s 20 mm 29 xxix 29 xxix Feb 060 2458909 02 ii  2 02/29/2020 die xxix mensis ii annoque mmxx 20 xx 2020}
test clock-2.1829 {conversion of 2020-03-01} {
    clock format 1583066096 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Mar March 03/01/2020 12:34:56 die i mensis iii annoque mmxx xii h xxxiv m lvi s 20 mm 01 i  1 i Mar 061 2458910 03 iii  3 03/01/2020 die i mensis iii annoque mmxx 20 xx 2020}
test clock-2.1830 {conversion of 2020-03-31} {
    clock format 1585658096 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Mar March 03/31/2020 12:34:56 die xxxi mensis iii annoque mmxx xii h xxxiv m lvi s 20 mm 31 xxxi 31 xxxi Mar 091 2458940 03 iii  3 03/31/2020 die xxxi mensis iii annoque mmxx 20 xx 2020}
test clock-2.1831 {conversion of 2020-04-01} {
    clock format 1585744496 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Apr April 04/01/2020 12:34:56 die i mensis iv annoque mmxx xii h xxxiv m lvi s 20 mm 01 i  1 i Apr 092 2458941 04 iv  4 04/01/2020 die i mensis iv annoque mmxx 20 xx 2020}
test clock-2.1832 {conversion of 2020-04-30} {
    clock format 1588250096 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Apr April 04/30/2020 12:34:56 die xxx mensis iv annoque mmxx xii h xxxiv m lvi s 20 mm 30 xxx 30 xxx Apr 121 2458970 04 iv  4 04/30/2020 die xxx mensis iv annoque mmxx 20 xx 2020}
test clock-2.1833 {conversion of 2020-05-01} {
    clock format 1588336496 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {May May 05/01/2020 12:34:56 die i mensis v annoque mmxx xii h xxxiv m lvi s 20 mm 01 i  1 i May 122 2458971 05 v  5 05/01/2020 die i mensis v annoque mmxx 20 xx 2020}
test clock-2.1834 {conversion of 2020-05-31} {
    clock format 1590928496 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {May May 05/31/2020 12:34:56 die xxxi mensis v annoque mmxx xii h xxxiv m lvi s 20 mm 31 xxxi 31 xxxi May 152 2459001 05 v  5 05/31/2020 die xxxi mensis v annoque mmxx 20 xx 2020}
test clock-2.1835 {conversion of 2020-06-01} {
    clock format 1591014896 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Jun June 06/01/2020 12:34:56 die i mensis vi annoque mmxx xii h xxxiv m lvi s 20 mm 01 i  1 i Jun 153 2459002 06 vi  6 06/01/2020 die i mensis vi annoque mmxx 20 xx 2020}
test clock-2.1836 {conversion of 2020-06-30} {
    clock format 1593520496 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Jun June 06/30/2020 12:34:56 die xxx mensis vi annoque mmxx xii h xxxiv m lvi s 20 mm 30 xxx 30 xxx Jun 182 2459031 06 vi  6 06/30/2020 die xxx mensis vi annoque mmxx 20 xx 2020}
test clock-2.1837 {conversion of 2020-07-01} {
    clock format 1593606896 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Jul July 07/01/2020 12:34:56 die i mensis vii annoque mmxx xii h xxxiv m lvi s 20 mm 01 i  1 i Jul 183 2459032 07 vii  7 07/01/2020 die i mensis vii annoque mmxx 20 xx 2020}
test clock-2.1838 {conversion of 2020-07-31} {
    clock format 1596198896 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Jul July 07/31/2020 12:34:56 die xxxi mensis vii annoque mmxx xii h xxxiv m lvi s 20 mm 31 xxxi 31 xxxi Jul 213 2459062 07 vii  7 07/31/2020 die xxxi mensis vii annoque mmxx 20 xx 2020}
test clock-2.1839 {conversion of 2020-08-01} {
    clock format 1596285296 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Aug August 08/01/2020 12:34:56 die i mensis viii annoque mmxx xii h xxxiv m lvi s 20 mm 01 i  1 i Aug 214 2459063 08 viii  8 08/01/2020 die i mensis viii annoque mmxx 20 xx 2020}
test clock-2.1840 {conversion of 2020-08-31} {
    clock format 1598877296 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Aug August 08/31/2020 12:34:56 die xxxi mensis viii annoque mmxx xii h xxxiv m lvi s 20 mm 31 xxxi 31 xxxi Aug 244 2459093 08 viii  8 08/31/2020 die xxxi mensis viii annoque mmxx 20 xx 2020}
test clock-2.1841 {conversion of 2020-09-01} {
    clock format 1598963696 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Sep September 09/01/2020 12:34:56 die i mensis ix annoque mmxx xii h xxxiv m lvi s 20 mm 01 i  1 i Sep 245 2459094 09 ix  9 09/01/2020 die i mensis ix annoque mmxx 20 xx 2020}
test clock-2.1842 {conversion of 2020-09-30} {
    clock format 1601469296 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Sep September 09/30/2020 12:34:56 die xxx mensis ix annoque mmxx xii h xxxiv m lvi s 20 mm 30 xxx 30 xxx Sep 274 2459123 09 ix  9 09/30/2020 die xxx mensis ix annoque mmxx 20 xx 2020}
test clock-2.1843 {conversion of 2020-10-01} {
    clock format 1601555696 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Oct October 10/01/2020 12:34:56 die i mensis x annoque mmxx xii h xxxiv m lvi s 20 mm 01 i  1 i Oct 275 2459124 10 x 10 10/01/2020 die i mensis x annoque mmxx 20 xx 2020}
test clock-2.1844 {conversion of 2020-10-31} {
    clock format 1604147696 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Oct October 10/31/2020 12:34:56 die xxxi mensis x annoque mmxx xii h xxxiv m lvi s 20 mm 31 xxxi 31 xxxi Oct 305 2459154 10 x 10 10/31/2020 die xxxi mensis x annoque mmxx 20 xx 2020}
test clock-2.1845 {conversion of 2020-11-01} {
    clock format 1604234096 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Nov November 11/01/2020 12:34:56 die i mensis xi annoque mmxx xii h xxxiv m lvi s 20 mm 01 i  1 i Nov 306 2459155 11 xi 11 11/01/2020 die i mensis xi annoque mmxx 20 xx 2020}
test clock-2.1846 {conversion of 2020-11-30} {
    clock format 1606739696 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Nov November 11/30/2020 12:34:56 die xxx mensis xi annoque mmxx xii h xxxiv m lvi s 20 mm 30 xxx 30 xxx Nov 335 2459184 11 xi 11 11/30/2020 die xxx mensis xi annoque mmxx 20 xx 2020}
test clock-2.1847 {conversion of 2020-12-01} {
    clock format 1606826096 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Dec December 12/01/2020 12:34:56 die i mensis xii annoque mmxx xii h xxxiv m lvi s 20 mm 01 i  1 i Dec 336 2459185 12 xii 12 12/01/2020 die i mensis xii annoque mmxx 20 xx 2020}
test clock-2.1848 {conversion of 2020-12-31} {
    clock format 1609418096 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Dec December 12/31/2020 12:34:56 die xxxi mensis xii annoque mmxx xii h xxxiv m lvi s 20 mm 31 xxxi 31 xxxi Dec 366 2459215 12 xii 12 12/31/2020 die xxxi mensis xii annoque mmxx 20 xx 2020}
test clock-2.1849 {conversion of 2021-01-01} {
    clock format 1609504496 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Jan January 01/01/2021 12:34:56 die i mensis i annoque mmxxi xii h xxxiv m lvi s 20 mm 01 i  1 i Jan 001 2459216 01 i  1 01/01/2021 die i mensis i annoque mmxxi 21 xxi 2021}
test clock-2.1850 {conversion of 2021-01-31} {
    clock format 1612096496 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Jan January 01/31/2021 12:34:56 die xxxi mensis i annoque mmxxi xii h xxxiv m lvi s 20 mm 31 xxxi 31 xxxi Jan 031 2459246 01 i  1 01/31/2021 die xxxi mensis i annoque mmxxi 21 xxi 2021}
test clock-2.1851 {conversion of 2021-02-01} {
    clock format 1612182896 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Feb February 02/01/2021 12:34:56 die i mensis ii annoque mmxxi xii h xxxiv m lvi s 20 mm 01 i  1 i Feb 032 2459247 02 ii  2 02/01/2021 die i mensis ii annoque mmxxi 21 xxi 2021}
test clock-2.1852 {conversion of 2021-02-28} {
    clock format 1614515696 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Feb February 02/28/2021 12:34:56 die xxviii mensis ii annoque mmxxi xii h xxxiv m lvi s 20 mm 28 xxviii 28 xxviii Feb 059 2459274 02 ii  2 02/28/2021 die xxviii mensis ii annoque mmxxi 21 xxi 2021}
test clock-2.1853 {conversion of 2021-03-01} {
    clock format 1614602096 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Mar March 03/01/2021 12:34:56 die i mensis iii annoque mmxxi xii h xxxiv m lvi s 20 mm 01 i  1 i Mar 060 2459275 03 iii  3 03/01/2021 die i mensis iii annoque mmxxi 21 xxi 2021}
test clock-2.1854 {conversion of 2021-03-31} {
    clock format 1617194096 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Mar March 03/31/2021 12:34:56 die xxxi mensis iii annoque mmxxi xii h xxxiv m lvi s 20 mm 31 xxxi 31 xxxi Mar 090 2459305 03 iii  3 03/31/2021 die xxxi mensis iii annoque mmxxi 21 xxi 2021}
test clock-2.1855 {conversion of 2021-04-01} {
    clock format 1617280496 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Apr April 04/01/2021 12:34:56 die i mensis iv annoque mmxxi xii h xxxiv m lvi s 20 mm 01 i  1 i Apr 091 2459306 04 iv  4 04/01/2021 die i mensis iv annoque mmxxi 21 xxi 2021}
test clock-2.1856 {conversion of 2021-04-30} {
    clock format 1619786096 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Apr April 04/30/2021 12:34:56 die xxx mensis iv annoque mmxxi xii h xxxiv m lvi s 20 mm 30 xxx 30 xxx Apr 120 2459335 04 iv  4 04/30/2021 die xxx mensis iv annoque mmxxi 21 xxi 2021}
test clock-2.1857 {conversion of 2021-05-01} {
    clock format 1619872496 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {May May 05/01/2021 12:34:56 die i mensis v annoque mmxxi xii h xxxiv m lvi s 20 mm 01 i  1 i May 121 2459336 05 v  5 05/01/2021 die i mensis v annoque mmxxi 21 xxi 2021}
test clock-2.1858 {conversion of 2021-05-31} {
    clock format 1622464496 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {May May 05/31/2021 12:34:56 die xxxi mensis v annoque mmxxi xii h xxxiv m lvi s 20 mm 31 xxxi 31 xxxi May 151 2459366 05 v  5 05/31/2021 die xxxi mensis v annoque mmxxi 21 xxi 2021}
test clock-2.1859 {conversion of 2021-06-01} {
    clock format 1622550896 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Jun June 06/01/2021 12:34:56 die i mensis vi annoque mmxxi xii h xxxiv m lvi s 20 mm 01 i  1 i Jun 152 2459367 06 vi  6 06/01/2021 die i mensis vi annoque mmxxi 21 xxi 2021}
test clock-2.1860 {conversion of 2021-06-30} {
    clock format 1625056496 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Jun June 06/30/2021 12:34:56 die xxx mensis vi annoque mmxxi xii h xxxiv m lvi s 20 mm 30 xxx 30 xxx Jun 181 2459396 06 vi  6 06/30/2021 die xxx mensis vi annoque mmxxi 21 xxi 2021}
test clock-2.1861 {conversion of 2021-07-01} {
    clock format 1625142896 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Jul July 07/01/2021 12:34:56 die i mensis vii annoque mmxxi xii h xxxiv m lvi s 20 mm 01 i  1 i Jul 182 2459397 07 vii  7 07/01/2021 die i mensis vii annoque mmxxi 21 xxi 2021}
test clock-2.1862 {conversion of 2021-07-31} {
    clock format 1627734896 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Jul July 07/31/2021 12:34:56 die xxxi mensis vii annoque mmxxi xii h xxxiv m lvi s 20 mm 31 xxxi 31 xxxi Jul 212 2459427 07 vii  7 07/31/2021 die xxxi mensis vii annoque mmxxi 21 xxi 2021}
test clock-2.1863 {conversion of 2021-08-01} {
    clock format 1627821296 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Aug August 08/01/2021 12:34:56 die i mensis viii annoque mmxxi xii h xxxiv m lvi s 20 mm 01 i  1 i Aug 213 2459428 08 viii  8 08/01/2021 die i mensis viii annoque mmxxi 21 xxi 2021}
test clock-2.1864 {conversion of 2021-08-31} {
    clock format 1630413296 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Aug August 08/31/2021 12:34:56 die xxxi mensis viii annoque mmxxi xii h xxxiv m lvi s 20 mm 31 xxxi 31 xxxi Aug 243 2459458 08 viii  8 08/31/2021 die xxxi mensis viii annoque mmxxi 21 xxi 2021}
test clock-2.1865 {conversion of 2021-09-01} {
    clock format 1630499696 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Sep September 09/01/2021 12:34:56 die i mensis ix annoque mmxxi xii h xxxiv m lvi s 20 mm 01 i  1 i Sep 244 2459459 09 ix  9 09/01/2021 die i mensis ix annoque mmxxi 21 xxi 2021}
test clock-2.1866 {conversion of 2021-09-30} {
    clock format 1633005296 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Sep September 09/30/2021 12:34:56 die xxx mensis ix annoque mmxxi xii h xxxiv m lvi s 20 mm 30 xxx 30 xxx Sep 273 2459488 09 ix  9 09/30/2021 die xxx mensis ix annoque mmxxi 21 xxi 2021}
test clock-2.1867 {conversion of 2021-10-01} {
    clock format 1633091696 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Oct October 10/01/2021 12:34:56 die i mensis x annoque mmxxi xii h xxxiv m lvi s 20 mm 01 i  1 i Oct 274 2459489 10 x 10 10/01/2021 die i mensis x annoque mmxxi 21 xxi 2021}
test clock-2.1868 {conversion of 2021-10-31} {
    clock format 1635683696 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Oct October 10/31/2021 12:34:56 die xxxi mensis x annoque mmxxi xii h xxxiv m lvi s 20 mm 31 xxxi 31 xxxi Oct 304 2459519 10 x 10 10/31/2021 die xxxi mensis x annoque mmxxi 21 xxi 2021}
test clock-2.1869 {conversion of 2021-11-01} {
    clock format 1635770096 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Nov November 11/01/2021 12:34:56 die i mensis xi annoque mmxxi xii h xxxiv m lvi s 20 mm 01 i  1 i Nov 305 2459520 11 xi 11 11/01/2021 die i mensis xi annoque mmxxi 21 xxi 2021}
test clock-2.1870 {conversion of 2021-11-30} {
    clock format 1638275696 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Nov November 11/30/2021 12:34:56 die xxx mensis xi annoque mmxxi xii h xxxiv m lvi s 20 mm 30 xxx 30 xxx Nov 334 2459549 11 xi 11 11/30/2021 die xxx mensis xi annoque mmxxi 21 xxi 2021}
test clock-2.1871 {conversion of 2021-12-01} {
    clock format 1638362096 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Dec December 12/01/2021 12:34:56 die i mensis xii annoque mmxxi xii h xxxiv m lvi s 20 mm 01 i  1 i Dec 335 2459550 12 xii 12 12/01/2021 die i mensis xii annoque mmxxi 21 xxi 2021}
test clock-2.1872 {conversion of 2021-12-31} {
    clock format 1640954096 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Dec December 12/31/2021 12:34:56 die xxxi mensis xii annoque mmxxi xii h xxxiv m lvi s 20 mm 31 xxxi 31 xxxi Dec 365 2459580 12 xii 12 12/31/2021 die xxxi mensis xii annoque mmxxi 21 xxi 2021}
test clock-2.1873 {conversion of 2024-01-01} {
    clock format 1704112496 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Jan January 01/01/2024 12:34:56 die i mensis i annoque mmxxiv xii h xxxiv m lvi s 20 mm 01 i  1 i Jan 001 2460311 01 i  1 01/01/2024 die i mensis i annoque mmxxiv 24 xxiv 2024}
test clock-2.1874 {conversion of 2024-01-31} {
    clock format 1706704496 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Jan January 01/31/2024 12:34:56 die xxxi mensis i annoque mmxxiv xii h xxxiv m lvi s 20 mm 31 xxxi 31 xxxi Jan 031 2460341 01 i  1 01/31/2024 die xxxi mensis i annoque mmxxiv 24 xxiv 2024}
test clock-2.1875 {conversion of 2024-02-01} {
    clock format 1706790896 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Feb February 02/01/2024 12:34:56 die i mensis ii annoque mmxxiv xii h xxxiv m lvi s 20 mm 01 i  1 i Feb 032 2460342 02 ii  2 02/01/2024 die i mensis ii annoque mmxxiv 24 xxiv 2024}
test clock-2.1876 {conversion of 2024-02-29} {
    clock format 1709210096 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Feb February 02/29/2024 12:34:56 die xxix mensis ii annoque mmxxiv xii h xxxiv m lvi s 20 mm 29 xxix 29 xxix Feb 060 2460370 02 ii  2 02/29/2024 die xxix mensis ii annoque mmxxiv 24 xxiv 2024}
test clock-2.1877 {conversion of 2024-03-01} {
    clock format 1709296496 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Mar March 03/01/2024 12:34:56 die i mensis iii annoque mmxxiv xii h xxxiv m lvi s 20 mm 01 i  1 i Mar 061 2460371 03 iii  3 03/01/2024 die i mensis iii annoque mmxxiv 24 xxiv 2024}
test clock-2.1878 {conversion of 2024-03-31} {
    clock format 1711888496 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Mar March 03/31/2024 12:34:56 die xxxi mensis iii annoque mmxxiv xii h xxxiv m lvi s 20 mm 31 xxxi 31 xxxi Mar 091 2460401 03 iii  3 03/31/2024 die xxxi mensis iii annoque mmxxiv 24 xxiv 2024}
test clock-2.1879 {conversion of 2024-04-01} {
    clock format 1711974896 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Apr April 04/01/2024 12:34:56 die i mensis iv annoque mmxxiv xii h xxxiv m lvi s 20 mm 01 i  1 i Apr 092 2460402 04 iv  4 04/01/2024 die i mensis iv annoque mmxxiv 24 xxiv 2024}
test clock-2.1880 {conversion of 2024-04-30} {
    clock format 1714480496 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Apr April 04/30/2024 12:34:56 die xxx mensis iv annoque mmxxiv xii h xxxiv m lvi s 20 mm 30 xxx 30 xxx Apr 121 2460431 04 iv  4 04/30/2024 die xxx mensis iv annoque mmxxiv 24 xxiv 2024}
test clock-2.1881 {conversion of 2024-05-01} {
    clock format 1714566896 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {May May 05/01/2024 12:34:56 die i mensis v annoque mmxxiv xii h xxxiv m lvi s 20 mm 01 i  1 i May 122 2460432 05 v  5 05/01/2024 die i mensis v annoque mmxxiv 24 xxiv 2024}
test clock-2.1882 {conversion of 2024-05-31} {
    clock format 1717158896 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {May May 05/31/2024 12:34:56 die xxxi mensis v annoque mmxxiv xii h xxxiv m lvi s 20 mm 31 xxxi 31 xxxi May 152 2460462 05 v  5 05/31/2024 die xxxi mensis v annoque mmxxiv 24 xxiv 2024}
test clock-2.1883 {conversion of 2024-06-01} {
    clock format 1717245296 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Jun June 06/01/2024 12:34:56 die i mensis vi annoque mmxxiv xii h xxxiv m lvi s 20 mm 01 i  1 i Jun 153 2460463 06 vi  6 06/01/2024 die i mensis vi annoque mmxxiv 24 xxiv 2024}
test clock-2.1884 {conversion of 2024-06-30} {
    clock format 1719750896 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Jun June 06/30/2024 12:34:56 die xxx mensis vi annoque mmxxiv xii h xxxiv m lvi s 20 mm 30 xxx 30 xxx Jun 182 2460492 06 vi  6 06/30/2024 die xxx mensis vi annoque mmxxiv 24 xxiv 2024}
test clock-2.1885 {conversion of 2024-07-01} {
    clock format 1719837296 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Jul July 07/01/2024 12:34:56 die i mensis vii annoque mmxxiv xii h xxxiv m lvi s 20 mm 01 i  1 i Jul 183 2460493 07 vii  7 07/01/2024 die i mensis vii annoque mmxxiv 24 xxiv 2024}
test clock-2.1886 {conversion of 2024-07-31} {
    clock format 1722429296 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Jul July 07/31/2024 12:34:56 die xxxi mensis vii annoque mmxxiv xii h xxxiv m lvi s 20 mm 31 xxxi 31 xxxi Jul 213 2460523 07 vii  7 07/31/2024 die xxxi mensis vii annoque mmxxiv 24 xxiv 2024}
test clock-2.1887 {conversion of 2024-08-01} {
    clock format 1722515696 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Aug August 08/01/2024 12:34:56 die i mensis viii annoque mmxxiv xii h xxxiv m lvi s 20 mm 01 i  1 i Aug 214 2460524 08 viii  8 08/01/2024 die i mensis viii annoque mmxxiv 24 xxiv 2024}
test clock-2.1888 {conversion of 2024-08-31} {
    clock format 1725107696 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Aug August 08/31/2024 12:34:56 die xxxi mensis viii annoque mmxxiv xii h xxxiv m lvi s 20 mm 31 xxxi 31 xxxi Aug 244 2460554 08 viii  8 08/31/2024 die xxxi mensis viii annoque mmxxiv 24 xxiv 2024}
test clock-2.1889 {conversion of 2024-09-01} {
    clock format 1725194096 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Sep September 09/01/2024 12:34:56 die i mensis ix annoque mmxxiv xii h xxxiv m lvi s 20 mm 01 i  1 i Sep 245 2460555 09 ix  9 09/01/2024 die i mensis ix annoque mmxxiv 24 xxiv 2024}
test clock-2.1890 {conversion of 2024-09-30} {
    clock format 1727699696 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Sep September 09/30/2024 12:34:56 die xxx mensis ix annoque mmxxiv xii h xxxiv m lvi s 20 mm 30 xxx 30 xxx Sep 274 2460584 09 ix  9 09/30/2024 die xxx mensis ix annoque mmxxiv 24 xxiv 2024}
test clock-2.1891 {conversion of 2024-10-01} {
    clock format 1727786096 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Oct October 10/01/2024 12:34:56 die i mensis x annoque mmxxiv xii h xxxiv m lvi s 20 mm 01 i  1 i Oct 275 2460585 10 x 10 10/01/2024 die i mensis x annoque mmxxiv 24 xxiv 2024}
test clock-2.1892 {conversion of 2024-10-31} {
    clock format 1730378096 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Oct October 10/31/2024 12:34:56 die xxxi mensis x annoque mmxxiv xii h xxxiv m lvi s 20 mm 31 xxxi 31 xxxi Oct 305 2460615 10 x 10 10/31/2024 die xxxi mensis x annoque mmxxiv 24 xxiv 2024}
test clock-2.1893 {conversion of 2024-11-01} {
    clock format 1730464496 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Nov November 11/01/2024 12:34:56 die i mensis xi annoque mmxxiv xii h xxxiv m lvi s 20 mm 01 i  1 i Nov 306 2460616 11 xi 11 11/01/2024 die i mensis xi annoque mmxxiv 24 xxiv 2024}
test clock-2.1894 {conversion of 2024-11-30} {
    clock format 1732970096 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Nov November 11/30/2024 12:34:56 die xxx mensis xi annoque mmxxiv xii h xxxiv m lvi s 20 mm 30 xxx 30 xxx Nov 335 2460645 11 xi 11 11/30/2024 die xxx mensis xi annoque mmxxiv 24 xxiv 2024}
test clock-2.1895 {conversion of 2024-12-01} {
    clock format 1733056496 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Dec December 12/01/2024 12:34:56 die i mensis xii annoque mmxxiv xii h xxxiv m lvi s 20 mm 01 i  1 i Dec 336 2460646 12 xii 12 12/01/2024 die i mensis xii annoque mmxxiv 24 xxiv 2024}
test clock-2.1896 {conversion of 2024-12-31} {
    clock format 1735648496 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Dec December 12/31/2024 12:34:56 die xxxi mensis xii annoque mmxxiv xii h xxxiv m lvi s 20 mm 31 xxxi 31 xxxi Dec 366 2460676 12 xii 12 12/31/2024 die xxxi mensis xii annoque mmxxiv 24 xxiv 2024}
test clock-2.1897 {conversion of 2025-01-01} {
    clock format 1735734896 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Jan January 01/01/2025 12:34:56 die i mensis i annoque mmxxv xii h xxxiv m lvi s 20 mm 01 i  1 i Jan 001 2460677 01 i  1 01/01/2025 die i mensis i annoque mmxxv 25 xxv 2025}
test clock-2.1898 {conversion of 2025-01-31} {
    clock format 1738326896 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Jan January 01/31/2025 12:34:56 die xxxi mensis i annoque mmxxv xii h xxxiv m lvi s 20 mm 31 xxxi 31 xxxi Jan 031 2460707 01 i  1 01/31/2025 die xxxi mensis i annoque mmxxv 25 xxv 2025}
test clock-2.1899 {conversion of 2025-02-01} {
    clock format 1738413296 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Feb February 02/01/2025 12:34:56 die i mensis ii annoque mmxxv xii h xxxiv m lvi s 20 mm 01 i  1 i Feb 032 2460708 02 ii  2 02/01/2025 die i mensis ii annoque mmxxv 25 xxv 2025}
test clock-2.1900 {conversion of 2025-02-28} {
    clock format 1740746096 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Feb February 02/28/2025 12:34:56 die xxviii mensis ii annoque mmxxv xii h xxxiv m lvi s 20 mm 28 xxviii 28 xxviii Feb 059 2460735 02 ii  2 02/28/2025 die xxviii mensis ii annoque mmxxv 25 xxv 2025}
test clock-2.1901 {conversion of 2025-03-01} {
    clock format 1740832496 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Mar March 03/01/2025 12:34:56 die i mensis iii annoque mmxxv xii h xxxiv m lvi s 20 mm 01 i  1 i Mar 060 2460736 03 iii  3 03/01/2025 die i mensis iii annoque mmxxv 25 xxv 2025}
test clock-2.1902 {conversion of 2025-03-31} {
    clock format 1743424496 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Mar March 03/31/2025 12:34:56 die xxxi mensis iii annoque mmxxv xii h xxxiv m lvi s 20 mm 31 xxxi 31 xxxi Mar 090 2460766 03 iii  3 03/31/2025 die xxxi mensis iii annoque mmxxv 25 xxv 2025}
test clock-2.1903 {conversion of 2025-04-01} {
    clock format 1743510896 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Apr April 04/01/2025 12:34:56 die i mensis iv annoque mmxxv xii h xxxiv m lvi s 20 mm 01 i  1 i Apr 091 2460767 04 iv  4 04/01/2025 die i mensis iv annoque mmxxv 25 xxv 2025}
test clock-2.1904 {conversion of 2025-04-30} {
    clock format 1746016496 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Apr April 04/30/2025 12:34:56 die xxx mensis iv annoque mmxxv xii h xxxiv m lvi s 20 mm 30 xxx 30 xxx Apr 120 2460796 04 iv  4 04/30/2025 die xxx mensis iv annoque mmxxv 25 xxv 2025}
test clock-2.1905 {conversion of 2025-05-01} {
    clock format 1746102896 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {May May 05/01/2025 12:34:56 die i mensis v annoque mmxxv xii h xxxiv m lvi s 20 mm 01 i  1 i May 121 2460797 05 v  5 05/01/2025 die i mensis v annoque mmxxv 25 xxv 2025}
test clock-2.1906 {conversion of 2025-05-31} {
    clock format 1748694896 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {May May 05/31/2025 12:34:56 die xxxi mensis v annoque mmxxv xii h xxxiv m lvi s 20 mm 31 xxxi 31 xxxi May 151 2460827 05 v  5 05/31/2025 die xxxi mensis v annoque mmxxv 25 xxv 2025}
test clock-2.1907 {conversion of 2025-06-01} {
    clock format 1748781296 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Jun June 06/01/2025 12:34:56 die i mensis vi annoque mmxxv xii h xxxiv m lvi s 20 mm 01 i  1 i Jun 152 2460828 06 vi  6 06/01/2025 die i mensis vi annoque mmxxv 25 xxv 2025}
test clock-2.1908 {conversion of 2025-06-30} {
    clock format 1751286896 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Jun June 06/30/2025 12:34:56 die xxx mensis vi annoque mmxxv xii h xxxiv m lvi s 20 mm 30 xxx 30 xxx Jun 181 2460857 06 vi  6 06/30/2025 die xxx mensis vi annoque mmxxv 25 xxv 2025}
test clock-2.1909 {conversion of 2025-07-01} {
    clock format 1751373296 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Jul July 07/01/2025 12:34:56 die i mensis vii annoque mmxxv xii h xxxiv m lvi s 20 mm 01 i  1 i Jul 182 2460858 07 vii  7 07/01/2025 die i mensis vii annoque mmxxv 25 xxv 2025}
test clock-2.1910 {conversion of 2025-07-31} {
    clock format 1753965296 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Jul July 07/31/2025 12:34:56 die xxxi mensis vii annoque mmxxv xii h xxxiv m lvi s 20 mm 31 xxxi 31 xxxi Jul 212 2460888 07 vii  7 07/31/2025 die xxxi mensis vii annoque mmxxv 25 xxv 2025}
test clock-2.1911 {conversion of 2025-08-01} {
    clock format 1754051696 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Aug August 08/01/2025 12:34:56 die i mensis viii annoque mmxxv xii h xxxiv m lvi s 20 mm 01 i  1 i Aug 213 2460889 08 viii  8 08/01/2025 die i mensis viii annoque mmxxv 25 xxv 2025}
test clock-2.1912 {conversion of 2025-08-31} {
    clock format 1756643696 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Aug August 08/31/2025 12:34:56 die xxxi mensis viii annoque mmxxv xii h xxxiv m lvi s 20 mm 31 xxxi 31 xxxi Aug 243 2460919 08 viii  8 08/31/2025 die xxxi mensis viii annoque mmxxv 25 xxv 2025}
test clock-2.1913 {conversion of 2025-09-01} {
    clock format 1756730096 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Sep September 09/01/2025 12:34:56 die i mensis ix annoque mmxxv xii h xxxiv m lvi s 20 mm 01 i  1 i Sep 244 2460920 09 ix  9 09/01/2025 die i mensis ix annoque mmxxv 25 xxv 2025}
test clock-2.1914 {conversion of 2025-09-30} {
    clock format 1759235696 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Sep September 09/30/2025 12:34:56 die xxx mensis ix annoque mmxxv xii h xxxiv m lvi s 20 mm 30 xxx 30 xxx Sep 273 2460949 09 ix  9 09/30/2025 die xxx mensis ix annoque mmxxv 25 xxv 2025}
test clock-2.1915 {conversion of 2025-10-01} {
    clock format 1759322096 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Oct October 10/01/2025 12:34:56 die i mensis x annoque mmxxv xii h xxxiv m lvi s 20 mm 01 i  1 i Oct 274 2460950 10 x 10 10/01/2025 die i mensis x annoque mmxxv 25 xxv 2025}
test clock-2.1916 {conversion of 2025-10-31} {
    clock format 1761914096 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Oct October 10/31/2025 12:34:56 die xxxi mensis x annoque mmxxv xii h xxxiv m lvi s 20 mm 31 xxxi 31 xxxi Oct 304 2460980 10 x 10 10/31/2025 die xxxi mensis x annoque mmxxv 25 xxv 2025}
test clock-2.1917 {conversion of 2025-11-01} {
    clock format 1762000496 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Nov November 11/01/2025 12:34:56 die i mensis xi annoque mmxxv xii h xxxiv m lvi s 20 mm 01 i  1 i Nov 305 2460981 11 xi 11 11/01/2025 die i mensis xi annoque mmxxv 25 xxv 2025}
test clock-2.1918 {conversion of 2025-11-30} {
    clock format 1764506096 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Nov November 11/30/2025 12:34:56 die xxx mensis xi annoque mmxxv xii h xxxiv m lvi s 20 mm 30 xxx 30 xxx Nov 334 2461010 11 xi 11 11/30/2025 die xxx mensis xi annoque mmxxv 25 xxv 2025}
test clock-2.1919 {conversion of 2025-12-01} {
    clock format 1764592496 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Dec December 12/01/2025 12:34:56 die i mensis xii annoque mmxxv xii h xxxiv m lvi s 20 mm 01 i  1 i Dec 335 2461011 12 xii 12 12/01/2025 die i mensis xii annoque mmxxv 25 xxv 2025}
test clock-2.1920 {conversion of 2025-12-31} {
    clock format 1767184496 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Dec December 12/31/2025 12:34:56 die xxxi mensis xii annoque mmxxv xii h xxxiv m lvi s 20 mm 31 xxxi 31 xxxi Dec 365 2461041 12 xii 12 12/31/2025 die xxxi mensis xii annoque mmxxv 25 xxv 2025}
test clock-2.1921 {conversion of 2037-01-01} {
    clock format 2114426096 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Jan January 01/01/2037 12:34:56 die i mensis i annoque mmxxxvii xii h xxxiv m lvi s 20 mm 01 i  1 i Jan 001 2465060 01 i  1 01/01/2037 die i mensis i annoque mmxxxvii 37 xxxvii 2037}
test clock-2.1922 {conversion of 2037-01-31} {
    clock format 2117018096 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Jan January 01/31/2037 12:34:56 die xxxi mensis i annoque mmxxxvii xii h xxxiv m lvi s 20 mm 31 xxxi 31 xxxi Jan 031 2465090 01 i  1 01/31/2037 die xxxi mensis i annoque mmxxxvii 37 xxxvii 2037}
test clock-2.1923 {conversion of 2037-02-01} {
    clock format 2117104496 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Feb February 02/01/2037 12:34:56 die i mensis ii annoque mmxxxvii xii h xxxiv m lvi s 20 mm 01 i  1 i Feb 032 2465091 02 ii  2 02/01/2037 die i mensis ii annoque mmxxxvii 37 xxxvii 2037}
test clock-2.1924 {conversion of 2037-02-28} {
    clock format 2119437296 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Feb February 02/28/2037 12:34:56 die xxviii mensis ii annoque mmxxxvii xii h xxxiv m lvi s 20 mm 28 xxviii 28 xxviii Feb 059 2465118 02 ii  2 02/28/2037 die xxviii mensis ii annoque mmxxxvii 37 xxxvii 2037}
test clock-2.1925 {conversion of 2037-03-01} {
    clock format 2119523696 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Mar March 03/01/2037 12:34:56 die i mensis iii annoque mmxxxvii xii h xxxiv m lvi s 20 mm 01 i  1 i Mar 060 2465119 03 iii  3 03/01/2037 die i mensis iii annoque mmxxxvii 37 xxxvii 2037}
test clock-2.1926 {conversion of 2037-03-31} {
    clock format 2122115696 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Mar March 03/31/2037 12:34:56 die xxxi mensis iii annoque mmxxxvii xii h xxxiv m lvi s 20 mm 31 xxxi 31 xxxi Mar 090 2465149 03 iii  3 03/31/2037 die xxxi mensis iii annoque mmxxxvii 37 xxxvii 2037}
test clock-2.1927 {conversion of 2037-04-01} {
    clock format 2122202096 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Apr April 04/01/2037 12:34:56 die i mensis iv annoque mmxxxvii xii h xxxiv m lvi s 20 mm 01 i  1 i Apr 091 2465150 04 iv  4 04/01/2037 die i mensis iv annoque mmxxxvii 37 xxxvii 2037}
test clock-2.1928 {conversion of 2037-04-30} {
    clock format 2124707696 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Apr April 04/30/2037 12:34:56 die xxx mensis iv annoque mmxxxvii xii h xxxiv m lvi s 20 mm 30 xxx 30 xxx Apr 120 2465179 04 iv  4 04/30/2037 die xxx mensis iv annoque mmxxxvii 37 xxxvii 2037}
test clock-2.1929 {conversion of 2037-05-01} {
    clock format 2124794096 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {May May 05/01/2037 12:34:56 die i mensis v annoque mmxxxvii xii h xxxiv m lvi s 20 mm 01 i  1 i May 121 2465180 05 v  5 05/01/2037 die i mensis v annoque mmxxxvii 37 xxxvii 2037}
test clock-2.1930 {conversion of 2037-05-31} {
    clock format 2127386096 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {May May 05/31/2037 12:34:56 die xxxi mensis v annoque mmxxxvii xii h xxxiv m lvi s 20 mm 31 xxxi 31 xxxi May 151 2465210 05 v  5 05/31/2037 die xxxi mensis v annoque mmxxxvii 37 xxxvii 2037}
test clock-2.1931 {conversion of 2037-06-01} {
    clock format 2127472496 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Jun June 06/01/2037 12:34:56 die i mensis vi annoque mmxxxvii xii h xxxiv m lvi s 20 mm 01 i  1 i Jun 152 2465211 06 vi  6 06/01/2037 die i mensis vi annoque mmxxxvii 37 xxxvii 2037}
test clock-2.1932 {conversion of 2037-06-30} {
    clock format 2129978096 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Jun June 06/30/2037 12:34:56 die xxx mensis vi annoque mmxxxvii xii h xxxiv m lvi s 20 mm 30 xxx 30 xxx Jun 181 2465240 06 vi  6 06/30/2037 die xxx mensis vi annoque mmxxxvii 37 xxxvii 2037}
test clock-2.1933 {conversion of 2037-07-01} {
    clock format 2130064496 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Jul July 07/01/2037 12:34:56 die i mensis vii annoque mmxxxvii xii h xxxiv m lvi s 20 mm 01 i  1 i Jul 182 2465241 07 vii  7 07/01/2037 die i mensis vii annoque mmxxxvii 37 xxxvii 2037}
test clock-2.1934 {conversion of 2037-07-31} {
    clock format 2132656496 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Jul July 07/31/2037 12:34:56 die xxxi mensis vii annoque mmxxxvii xii h xxxiv m lvi s 20 mm 31 xxxi 31 xxxi Jul 212 2465271 07 vii  7 07/31/2037 die xxxi mensis vii annoque mmxxxvii 37 xxxvii 2037}
test clock-2.1935 {conversion of 2037-08-01} {
    clock format 2132742896 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Aug August 08/01/2037 12:34:56 die i mensis viii annoque mmxxxvii xii h xxxiv m lvi s 20 mm 01 i  1 i Aug 213 2465272 08 viii  8 08/01/2037 die i mensis viii annoque mmxxxvii 37 xxxvii 2037}
test clock-2.1936 {conversion of 2037-08-31} {
    clock format 2135334896 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Aug August 08/31/2037 12:34:56 die xxxi mensis viii annoque mmxxxvii xii h xxxiv m lvi s 20 mm 31 xxxi 31 xxxi Aug 243 2465302 08 viii  8 08/31/2037 die xxxi mensis viii annoque mmxxxvii 37 xxxvii 2037}
test clock-2.1937 {conversion of 2037-09-01} {
    clock format 2135421296 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Sep September 09/01/2037 12:34:56 die i mensis ix annoque mmxxxvii xii h xxxiv m lvi s 20 mm 01 i  1 i Sep 244 2465303 09 ix  9 09/01/2037 die i mensis ix annoque mmxxxvii 37 xxxvii 2037}
test clock-2.1938 {conversion of 2037-09-30} {
    clock format 2137926896 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Sep September 09/30/2037 12:34:56 die xxx mensis ix annoque mmxxxvii xii h xxxiv m lvi s 20 mm 30 xxx 30 xxx Sep 273 2465332 09 ix  9 09/30/2037 die xxx mensis ix annoque mmxxxvii 37 xxxvii 2037}
test clock-2.1939 {conversion of 2037-10-01} {
    clock format 2138013296 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Oct October 10/01/2037 12:34:56 die i mensis x annoque mmxxxvii xii h xxxiv m lvi s 20 mm 01 i  1 i Oct 274 2465333 10 x 10 10/01/2037 die i mensis x annoque mmxxxvii 37 xxxvii 2037}
test clock-2.1940 {conversion of 2037-10-31} {
    clock format 2140605296 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Oct October 10/31/2037 12:34:56 die xxxi mensis x annoque mmxxxvii xii h xxxiv m lvi s 20 mm 31 xxxi 31 xxxi Oct 304 2465363 10 x 10 10/31/2037 die xxxi mensis x annoque mmxxxvii 37 xxxvii 2037}
test clock-2.1941 {conversion of 2037-11-01} {
    clock format 2140691696 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Nov November 11/01/2037 12:34:56 die i mensis xi annoque mmxxxvii xii h xxxiv m lvi s 20 mm 01 i  1 i Nov 305 2465364 11 xi 11 11/01/2037 die i mensis xi annoque mmxxxvii 37 xxxvii 2037}
test clock-2.1942 {conversion of 2037-11-30} {
    clock format 2143197296 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Nov November 11/30/2037 12:34:56 die xxx mensis xi annoque mmxxxvii xii h xxxiv m lvi s 20 mm 30 xxx 30 xxx Nov 334 2465393 11 xi 11 11/30/2037 die xxx mensis xi annoque mmxxxvii 37 xxxvii 2037}
test clock-2.1943 {conversion of 2037-12-01} {
    clock format 2143283696 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Dec December 12/01/2037 12:34:56 die i mensis xii annoque mmxxxvii xii h xxxiv m lvi s 20 mm 01 i  1 i Dec 335 2465394 12 xii 12 12/01/2037 die i mensis xii annoque mmxxxvii 37 xxxvii 2037}
test clock-2.1944 {conversion of 2037-12-31} {
    clock format 2145875696 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Dec December 12/31/2037 12:34:56 die xxxi mensis xii annoque mmxxxvii xii h xxxiv m lvi s 20 mm 31 xxxi 31 xxxi Dec 365 2465424 12 xii 12 12/31/2037 die xxxi mensis xii annoque mmxxxvii 37 xxxvii 2037}
test clock-2.1945 {conversion of 2038-01-01} {
    clock format 2145962096 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Jan January 01/01/2038 12:34:56 die i mensis i annoque mmxxxviii xii h xxxiv m lvi s 20 mm 01 i  1 i Jan 001 2465425 01 i  1 01/01/2038 die i mensis i annoque mmxxxviii 38 xxxviii 2038}
test clock-2.1946 {conversion of 2038-01-31} {
    clock format 2148554096 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Jan January 01/31/2038 12:34:56 die xxxi mensis i annoque mmxxxviii xii h xxxiv m lvi s 20 mm 31 xxxi 31 xxxi Jan 031 2465455 01 i  1 01/31/2038 die xxxi mensis i annoque mmxxxviii 38 xxxviii 2038}
test clock-2.1947 {conversion of 2038-02-01} {
    clock format 2148640496 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Feb February 02/01/2038 12:34:56 die i mensis ii annoque mmxxxviii xii h xxxiv m lvi s 20 mm 01 i  1 i Feb 032 2465456 02 ii  2 02/01/2038 die i mensis ii annoque mmxxxviii 38 xxxviii 2038}
test clock-2.1948 {conversion of 2038-02-28} {
    clock format 2150973296 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Feb February 02/28/2038 12:34:56 die xxviii mensis ii annoque mmxxxviii xii h xxxiv m lvi s 20 mm 28 xxviii 28 xxviii Feb 059 2465483 02 ii  2 02/28/2038 die xxviii mensis ii annoque mmxxxviii 38 xxxviii 2038}
test clock-2.1949 {conversion of 2038-03-01} {
    clock format 2151059696 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Mar March 03/01/2038 12:34:56 die i mensis iii annoque mmxxxviii xii h xxxiv m lvi s 20 mm 01 i  1 i Mar 060 2465484 03 iii  3 03/01/2038 die i mensis iii annoque mmxxxviii 38 xxxviii 2038}
test clock-2.1950 {conversion of 2038-03-31} {
    clock format 2153651696 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Mar March 03/31/2038 12:34:56 die xxxi mensis iii annoque mmxxxviii xii h xxxiv m lvi s 20 mm 31 xxxi 31 xxxi Mar 090 2465514 03 iii  3 03/31/2038 die xxxi mensis iii annoque mmxxxviii 38 xxxviii 2038}
test clock-2.1951 {conversion of 2038-04-01} {
    clock format 2153738096 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Apr April 04/01/2038 12:34:56 die i mensis iv annoque mmxxxviii xii h xxxiv m lvi s 20 mm 01 i  1 i Apr 091 2465515 04 iv  4 04/01/2038 die i mensis iv annoque mmxxxviii 38 xxxviii 2038}
test clock-2.1952 {conversion of 2038-04-30} {
    clock format 2156243696 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Apr April 04/30/2038 12:34:56 die xxx mensis iv annoque mmxxxviii xii h xxxiv m lvi s 20 mm 30 xxx 30 xxx Apr 120 2465544 04 iv  4 04/30/2038 die xxx mensis iv annoque mmxxxviii 38 xxxviii 2038}
test clock-2.1953 {conversion of 2038-05-01} {
    clock format 2156330096 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {May May 05/01/2038 12:34:56 die i mensis v annoque mmxxxviii xii h xxxiv m lvi s 20 mm 01 i  1 i May 121 2465545 05 v  5 05/01/2038 die i mensis v annoque mmxxxviii 38 xxxviii 2038}
test clock-2.1954 {conversion of 2038-05-31} {
    clock format 2158922096 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {May May 05/31/2038 12:34:56 die xxxi mensis v annoque mmxxxviii xii h xxxiv m lvi s 20 mm 31 xxxi 31 xxxi May 151 2465575 05 v  5 05/31/2038 die xxxi mensis v annoque mmxxxviii 38 xxxviii 2038}
test clock-2.1955 {conversion of 2038-06-01} {
    clock format 2159008496 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Jun June 06/01/2038 12:34:56 die i mensis vi annoque mmxxxviii xii h xxxiv m lvi s 20 mm 01 i  1 i Jun 152 2465576 06 vi  6 06/01/2038 die i mensis vi annoque mmxxxviii 38 xxxviii 2038}
test clock-2.1956 {conversion of 2038-06-30} {
    clock format 2161514096 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Jun June 06/30/2038 12:34:56 die xxx mensis vi annoque mmxxxviii xii h xxxiv m lvi s 20 mm 30 xxx 30 xxx Jun 181 2465605 06 vi  6 06/30/2038 die xxx mensis vi annoque mmxxxviii 38 xxxviii 2038}
test clock-2.1957 {conversion of 2038-07-01} {
    clock format 2161600496 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Jul July 07/01/2038 12:34:56 die i mensis vii annoque mmxxxviii xii h xxxiv m lvi s 20 mm 01 i  1 i Jul 182 2465606 07 vii  7 07/01/2038 die i mensis vii annoque mmxxxviii 38 xxxviii 2038}
test clock-2.1958 {conversion of 2038-07-31} {
    clock format 2164192496 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Jul July 07/31/2038 12:34:56 die xxxi mensis vii annoque mmxxxviii xii h xxxiv m lvi s 20 mm 31 xxxi 31 xxxi Jul 212 2465636 07 vii  7 07/31/2038 die xxxi mensis vii annoque mmxxxviii 38 xxxviii 2038}
test clock-2.1959 {conversion of 2038-08-01} {
    clock format 2164278896 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Aug August 08/01/2038 12:34:56 die i mensis viii annoque mmxxxviii xii h xxxiv m lvi s 20 mm 01 i  1 i Aug 213 2465637 08 viii  8 08/01/2038 die i mensis viii annoque mmxxxviii 38 xxxviii 2038}
test clock-2.1960 {conversion of 2038-08-31} {
    clock format 2166870896 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Aug August 08/31/2038 12:34:56 die xxxi mensis viii annoque mmxxxviii xii h xxxiv m lvi s 20 mm 31 xxxi 31 xxxi Aug 243 2465667 08 viii  8 08/31/2038 die xxxi mensis viii annoque mmxxxviii 38 xxxviii 2038}
test clock-2.1961 {conversion of 2038-09-01} {
    clock format 2166957296 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Sep September 09/01/2038 12:34:56 die i mensis ix annoque mmxxxviii xii h xxxiv m lvi s 20 mm 01 i  1 i Sep 244 2465668 09 ix  9 09/01/2038 die i mensis ix annoque mmxxxviii 38 xxxviii 2038}
test clock-2.1962 {conversion of 2038-09-30} {
    clock format 2169462896 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Sep September 09/30/2038 12:34:56 die xxx mensis ix annoque mmxxxviii xii h xxxiv m lvi s 20 mm 30 xxx 30 xxx Sep 273 2465697 09 ix  9 09/30/2038 die xxx mensis ix annoque mmxxxviii 38 xxxviii 2038}
test clock-2.1963 {conversion of 2038-10-01} {
    clock format 2169549296 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Oct October 10/01/2038 12:34:56 die i mensis x annoque mmxxxviii xii h xxxiv m lvi s 20 mm 01 i  1 i Oct 274 2465698 10 x 10 10/01/2038 die i mensis x annoque mmxxxviii 38 xxxviii 2038}
test clock-2.1964 {conversion of 2038-10-31} {
    clock format 2172141296 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Oct October 10/31/2038 12:34:56 die xxxi mensis x annoque mmxxxviii xii h xxxiv m lvi s 20 mm 31 xxxi 31 xxxi Oct 304 2465728 10 x 10 10/31/2038 die xxxi mensis x annoque mmxxxviii 38 xxxviii 2038}
test clock-2.1965 {conversion of 2038-11-01} {
    clock format 2172227696 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Nov November 11/01/2038 12:34:56 die i mensis xi annoque mmxxxviii xii h xxxiv m lvi s 20 mm 01 i  1 i Nov 305 2465729 11 xi 11 11/01/2038 die i mensis xi annoque mmxxxviii 38 xxxviii 2038}
test clock-2.1966 {conversion of 2038-11-30} {
    clock format 2174733296 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Nov November 11/30/2038 12:34:56 die xxx mensis xi annoque mmxxxviii xii h xxxiv m lvi s 20 mm 30 xxx 30 xxx Nov 334 2465758 11 xi 11 11/30/2038 die xxx mensis xi annoque mmxxxviii 38 xxxviii 2038}
test clock-2.1967 {conversion of 2038-12-01} {
    clock format 2174819696 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Dec December 12/01/2038 12:34:56 die i mensis xii annoque mmxxxviii xii h xxxiv m lvi s 20 mm 01 i  1 i Dec 335 2465759 12 xii 12 12/01/2038 die i mensis xii annoque mmxxxviii 38 xxxviii 2038}
test clock-2.1968 {conversion of 2038-12-31} {
    clock format 2177411696 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Dec December 12/31/2038 12:34:56 die xxxi mensis xii annoque mmxxxviii xii h xxxiv m lvi s 20 mm 31 xxxi 31 xxxi Dec 365 2465789 12 xii 12 12/31/2038 die xxxi mensis xii annoque mmxxxviii 38 xxxviii 2038}
test clock-2.1969 {conversion of 2039-01-01} {
    clock format 2177498096 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Jan January 01/01/2039 12:34:56 die i mensis i annoque mmxxxix xii h xxxiv m lvi s 20 mm 01 i  1 i Jan 001 2465790 01 i  1 01/01/2039 die i mensis i annoque mmxxxix 39 xxxix 2039}
test clock-2.1970 {conversion of 2039-01-31} {
    clock format 2180090096 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Jan January 01/31/2039 12:34:56 die xxxi mensis i annoque mmxxxix xii h xxxiv m lvi s 20 mm 31 xxxi 31 xxxi Jan 031 2465820 01 i  1 01/31/2039 die xxxi mensis i annoque mmxxxix 39 xxxix 2039}
test clock-2.1971 {conversion of 2039-02-01} {
    clock format 2180176496 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Feb February 02/01/2039 12:34:56 die i mensis ii annoque mmxxxix xii h xxxiv m lvi s 20 mm 01 i  1 i Feb 032 2465821 02 ii  2 02/01/2039 die i mensis ii annoque mmxxxix 39 xxxix 2039}
test clock-2.1972 {conversion of 2039-02-28} {
    clock format 2182509296 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Feb February 02/28/2039 12:34:56 die xxviii mensis ii annoque mmxxxix xii h xxxiv m lvi s 20 mm 28 xxviii 28 xxviii Feb 059 2465848 02 ii  2 02/28/2039 die xxviii mensis ii annoque mmxxxix 39 xxxix 2039}
test clock-2.1973 {conversion of 2039-03-01} {
    clock format 2182595696 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Mar March 03/01/2039 12:34:56 die i mensis iii annoque mmxxxix xii h xxxiv m lvi s 20 mm 01 i  1 i Mar 060 2465849 03 iii  3 03/01/2039 die i mensis iii annoque mmxxxix 39 xxxix 2039}
test clock-2.1974 {conversion of 2039-03-31} {
    clock format 2185187696 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Mar March 03/31/2039 12:34:56 die xxxi mensis iii annoque mmxxxix xii h xxxiv m lvi s 20 mm 31 xxxi 31 xxxi Mar 090 2465879 03 iii  3 03/31/2039 die xxxi mensis iii annoque mmxxxix 39 xxxix 2039}
test clock-2.1975 {conversion of 2039-04-01} {
    clock format 2185274096 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Apr April 04/01/2039 12:34:56 die i mensis iv annoque mmxxxix xii h xxxiv m lvi s 20 mm 01 i  1 i Apr 091 2465880 04 iv  4 04/01/2039 die i mensis iv annoque mmxxxix 39 xxxix 2039}
test clock-2.1976 {conversion of 2039-04-30} {
    clock format 2187779696 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Apr April 04/30/2039 12:34:56 die xxx mensis iv annoque mmxxxix xii h xxxiv m lvi s 20 mm 30 xxx 30 xxx Apr 120 2465909 04 iv  4 04/30/2039 die xxx mensis iv annoque mmxxxix 39 xxxix 2039}
test clock-2.1977 {conversion of 2039-05-01} {
    clock format 2187866096 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {May May 05/01/2039 12:34:56 die i mensis v annoque mmxxxix xii h xxxiv m lvi s 20 mm 01 i  1 i May 121 2465910 05 v  5 05/01/2039 die i mensis v annoque mmxxxix 39 xxxix 2039}
test clock-2.1978 {conversion of 2039-05-31} {
    clock format 2190458096 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {May May 05/31/2039 12:34:56 die xxxi mensis v annoque mmxxxix xii h xxxiv m lvi s 20 mm 31 xxxi 31 xxxi May 151 2465940 05 v  5 05/31/2039 die xxxi mensis v annoque mmxxxix 39 xxxix 2039}
test clock-2.1979 {conversion of 2039-06-01} {
    clock format 2190544496 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Jun June 06/01/2039 12:34:56 die i mensis vi annoque mmxxxix xii h xxxiv m lvi s 20 mm 01 i  1 i Jun 152 2465941 06 vi  6 06/01/2039 die i mensis vi annoque mmxxxix 39 xxxix 2039}
test clock-2.1980 {conversion of 2039-06-30} {
    clock format 2193050096 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Jun June 06/30/2039 12:34:56 die xxx mensis vi annoque mmxxxix xii h xxxiv m lvi s 20 mm 30 xxx 30 xxx Jun 181 2465970 06 vi  6 06/30/2039 die xxx mensis vi annoque mmxxxix 39 xxxix 2039}
test clock-2.1981 {conversion of 2039-07-01} {
    clock format 2193136496 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Jul July 07/01/2039 12:34:56 die i mensis vii annoque mmxxxix xii h xxxiv m lvi s 20 mm 01 i  1 i Jul 182 2465971 07 vii  7 07/01/2039 die i mensis vii annoque mmxxxix 39 xxxix 2039}
test clock-2.1982 {conversion of 2039-07-31} {
    clock format 2195728496 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Jul July 07/31/2039 12:34:56 die xxxi mensis vii annoque mmxxxix xii h xxxiv m lvi s 20 mm 31 xxxi 31 xxxi Jul 212 2466001 07 vii  7 07/31/2039 die xxxi mensis vii annoque mmxxxix 39 xxxix 2039}
test clock-2.1983 {conversion of 2039-08-01} {
    clock format 2195814896 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Aug August 08/01/2039 12:34:56 die i mensis viii annoque mmxxxix xii h xxxiv m lvi s 20 mm 01 i  1 i Aug 213 2466002 08 viii  8 08/01/2039 die i mensis viii annoque mmxxxix 39 xxxix 2039}
test clock-2.1984 {conversion of 2039-08-31} {
    clock format 2198406896 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Aug August 08/31/2039 12:34:56 die xxxi mensis viii annoque mmxxxix xii h xxxiv m lvi s 20 mm 31 xxxi 31 xxxi Aug 243 2466032 08 viii  8 08/31/2039 die xxxi mensis viii annoque mmxxxix 39 xxxix 2039}
test clock-2.1985 {conversion of 2039-09-01} {
    clock format 2198493296 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Sep September 09/01/2039 12:34:56 die i mensis ix annoque mmxxxix xii h xxxiv m lvi s 20 mm 01 i  1 i Sep 244 2466033 09 ix  9 09/01/2039 die i mensis ix annoque mmxxxix 39 xxxix 2039}
test clock-2.1986 {conversion of 2039-09-30} {
    clock format 2200998896 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Sep September 09/30/2039 12:34:56 die xxx mensis ix annoque mmxxxix xii h xxxiv m lvi s 20 mm 30 xxx 30 xxx Sep 273 2466062 09 ix  9 09/30/2039 die xxx mensis ix annoque mmxxxix 39 xxxix 2039}
test clock-2.1987 {conversion of 2039-10-01} {
    clock format 2201085296 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Oct October 10/01/2039 12:34:56 die i mensis x annoque mmxxxix xii h xxxiv m lvi s 20 mm 01 i  1 i Oct 274 2466063 10 x 10 10/01/2039 die i mensis x annoque mmxxxix 39 xxxix 2039}
test clock-2.1988 {conversion of 2039-10-31} {
    clock format 2203677296 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Oct October 10/31/2039 12:34:56 die xxxi mensis x annoque mmxxxix xii h xxxiv m lvi s 20 mm 31 xxxi 31 xxxi Oct 304 2466093 10 x 10 10/31/2039 die xxxi mensis x annoque mmxxxix 39 xxxix 2039}
test clock-2.1989 {conversion of 2039-11-01} {
    clock format 2203763696 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Nov November 11/01/2039 12:34:56 die i mensis xi annoque mmxxxix xii h xxxiv m lvi s 20 mm 01 i  1 i Nov 305 2466094 11 xi 11 11/01/2039 die i mensis xi annoque mmxxxix 39 xxxix 2039}
test clock-2.1990 {conversion of 2039-11-30} {
    clock format 2206269296 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Nov November 11/30/2039 12:34:56 die xxx mensis xi annoque mmxxxix xii h xxxiv m lvi s 20 mm 30 xxx 30 xxx Nov 334 2466123 11 xi 11 11/30/2039 die xxx mensis xi annoque mmxxxix 39 xxxix 2039}
test clock-2.1991 {conversion of 2039-12-01} {
    clock format 2206355696 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Dec December 12/01/2039 12:34:56 die i mensis xii annoque mmxxxix xii h xxxiv m lvi s 20 mm 01 i  1 i Dec 335 2466124 12 xii 12 12/01/2039 die i mensis xii annoque mmxxxix 39 xxxix 2039}
test clock-2.1992 {conversion of 2039-12-31} {
    clock format 2208947696 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Dec December 12/31/2039 12:34:56 die xxxi mensis xii annoque mmxxxix xii h xxxiv m lvi s 20 mm 31 xxxi 31 xxxi Dec 365 2466154 12 xii 12 12/31/2039 die xxxi mensis xii annoque mmxxxix 39 xxxix 2039}
test clock-2.1993 {conversion of 2040-01-01} {
    clock format 2209034096 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Jan January 01/01/2040 12:34:56 die i mensis i annoque mmxl xii h xxxiv m lvi s 20 mm 01 i  1 i Jan 001 2466155 01 i  1 01/01/2040 die i mensis i annoque mmxl 40 xl 2040}
test clock-2.1994 {conversion of 2040-01-31} {
    clock format 2211626096 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Jan January 01/31/2040 12:34:56 die xxxi mensis i annoque mmxl xii h xxxiv m lvi s 20 mm 31 xxxi 31 xxxi Jan 031 2466185 01 i  1 01/31/2040 die xxxi mensis i annoque mmxl 40 xl 2040}
test clock-2.1995 {conversion of 2040-02-01} {
    clock format 2211712496 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Feb February 02/01/2040 12:34:56 die i mensis ii annoque mmxl xii h xxxiv m lvi s 20 mm 01 i  1 i Feb 032 2466186 02 ii  2 02/01/2040 die i mensis ii annoque mmxl 40 xl 2040}
test clock-2.1996 {conversion of 2040-02-29} {
    clock format 2214131696 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Feb February 02/29/2040 12:34:56 die xxix mensis ii annoque mmxl xii h xxxiv m lvi s 20 mm 29 xxix 29 xxix Feb 060 2466214 02 ii  2 02/29/2040 die xxix mensis ii annoque mmxl 40 xl 2040}
test clock-2.1997 {conversion of 2040-03-01} {
    clock format 2214218096 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Mar March 03/01/2040 12:34:56 die i mensis iii annoque mmxl xii h xxxiv m lvi s 20 mm 01 i  1 i Mar 061 2466215 03 iii  3 03/01/2040 die i mensis iii annoque mmxl 40 xl 2040}
test clock-2.1998 {conversion of 2040-03-31} {
    clock format 2216810096 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Mar March 03/31/2040 12:34:56 die xxxi mensis iii annoque mmxl xii h xxxiv m lvi s 20 mm 31 xxxi 31 xxxi Mar 091 2466245 03 iii  3 03/31/2040 die xxxi mensis iii annoque mmxl 40 xl 2040}
test clock-2.1999 {conversion of 2040-04-01} {
    clock format 2216896496 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Apr April 04/01/2040 12:34:56 die i mensis iv annoque mmxl xii h xxxiv m lvi s 20 mm 01 i  1 i Apr 092 2466246 04 iv  4 04/01/2040 die i mensis iv annoque mmxl 40 xl 2040}
test clock-2.2000 {conversion of 2040-04-30} {
    clock format 2219402096 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Apr April 04/30/2040 12:34:56 die xxx mensis iv annoque mmxl xii h xxxiv m lvi s 20 mm 30 xxx 30 xxx Apr 121 2466275 04 iv  4 04/30/2040 die xxx mensis iv annoque mmxl 40 xl 2040}
test clock-2.2001 {conversion of 2040-05-01} {
    clock format 2219488496 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {May May 05/01/2040 12:34:56 die i mensis v annoque mmxl xii h xxxiv m lvi s 20 mm 01 i  1 i May 122 2466276 05 v  5 05/01/2040 die i mensis v annoque mmxl 40 xl 2040}
test clock-2.2002 {conversion of 2040-05-31} {
    clock format 2222080496 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {May May 05/31/2040 12:34:56 die xxxi mensis v annoque mmxl xii h xxxiv m lvi s 20 mm 31 xxxi 31 xxxi May 152 2466306 05 v  5 05/31/2040 die xxxi mensis v annoque mmxl 40 xl 2040}
test clock-2.2003 {conversion of 2040-06-01} {
    clock format 2222166896 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Jun June 06/01/2040 12:34:56 die i mensis vi annoque mmxl xii h xxxiv m lvi s 20 mm 01 i  1 i Jun 153 2466307 06 vi  6 06/01/2040 die i mensis vi annoque mmxl 40 xl 2040}
test clock-2.2004 {conversion of 2040-06-30} {
    clock format 2224672496 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Jun June 06/30/2040 12:34:56 die xxx mensis vi annoque mmxl xii h xxxiv m lvi s 20 mm 30 xxx 30 xxx Jun 182 2466336 06 vi  6 06/30/2040 die xxx mensis vi annoque mmxl 40 xl 2040}
test clock-2.2005 {conversion of 2040-07-01} {
    clock format 2224758896 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Jul July 07/01/2040 12:34:56 die i mensis vii annoque mmxl xii h xxxiv m lvi s 20 mm 01 i  1 i Jul 183 2466337 07 vii  7 07/01/2040 die i mensis vii annoque mmxl 40 xl 2040}
test clock-2.2006 {conversion of 2040-07-31} {
    clock format 2227350896 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Jul July 07/31/2040 12:34:56 die xxxi mensis vii annoque mmxl xii h xxxiv m lvi s 20 mm 31 xxxi 31 xxxi Jul 213 2466367 07 vii  7 07/31/2040 die xxxi mensis vii annoque mmxl 40 xl 2040}
test clock-2.2007 {conversion of 2040-08-01} {
    clock format 2227437296 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Aug August 08/01/2040 12:34:56 die i mensis viii annoque mmxl xii h xxxiv m lvi s 20 mm 01 i  1 i Aug 214 2466368 08 viii  8 08/01/2040 die i mensis viii annoque mmxl 40 xl 2040}
test clock-2.2008 {conversion of 2040-08-31} {
    clock format 2230029296 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Aug August 08/31/2040 12:34:56 die xxxi mensis viii annoque mmxl xii h xxxiv m lvi s 20 mm 31 xxxi 31 xxxi Aug 244 2466398 08 viii  8 08/31/2040 die xxxi mensis viii annoque mmxl 40 xl 2040}
test clock-2.2009 {conversion of 2040-09-01} {
    clock format 2230115696 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Sep September 09/01/2040 12:34:56 die i mensis ix annoque mmxl xii h xxxiv m lvi s 20 mm 01 i  1 i Sep 245 2466399 09 ix  9 09/01/2040 die i mensis ix annoque mmxl 40 xl 2040}
test clock-2.2010 {conversion of 2040-09-30} {
    clock format 2232621296 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Sep September 09/30/2040 12:34:56 die xxx mensis ix annoque mmxl xii h xxxiv m lvi s 20 mm 30 xxx 30 xxx Sep 274 2466428 09 ix  9 09/30/2040 die xxx mensis ix annoque mmxl 40 xl 2040}
test clock-2.2011 {conversion of 2040-10-01} {
    clock format 2232707696 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Oct October 10/01/2040 12:34:56 die i mensis x annoque mmxl xii h xxxiv m lvi s 20 mm 01 i  1 i Oct 275 2466429 10 x 10 10/01/2040 die i mensis x annoque mmxl 40 xl 2040}
test clock-2.2012 {conversion of 2040-10-31} {
    clock format 2235299696 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Oct October 10/31/2040 12:34:56 die xxxi mensis x annoque mmxl xii h xxxiv m lvi s 20 mm 31 xxxi 31 xxxi Oct 305 2466459 10 x 10 10/31/2040 die xxxi mensis x annoque mmxl 40 xl 2040}
test clock-2.2013 {conversion of 2040-11-01} {
    clock format 2235386096 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Nov November 11/01/2040 12:34:56 die i mensis xi annoque mmxl xii h xxxiv m lvi s 20 mm 01 i  1 i Nov 306 2466460 11 xi 11 11/01/2040 die i mensis xi annoque mmxl 40 xl 2040}
test clock-2.2014 {conversion of 2040-11-30} {
    clock format 2237891696 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Nov November 11/30/2040 12:34:56 die xxx mensis xi annoque mmxl xii h xxxiv m lvi s 20 mm 30 xxx 30 xxx Nov 335 2466489 11 xi 11 11/30/2040 die xxx mensis xi annoque mmxl 40 xl 2040}
test clock-2.2015 {conversion of 2040-12-01} {
    clock format 2237978096 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Dec December 12/01/2040 12:34:56 die i mensis xii annoque mmxl xii h xxxiv m lvi s 20 mm 01 i  1 i Dec 336 2466490 12 xii 12 12/01/2040 die i mensis xii annoque mmxl 40 xl 2040}
test clock-2.2016 {conversion of 2040-12-31} {
    clock format 2240570096 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Dec December 12/31/2040 12:34:56 die xxxi mensis xii annoque mmxl xii h xxxiv m lvi s 20 mm 31 xxxi 31 xxxi Dec 366 2466520 12 xii 12 12/31/2040 die xxxi mensis xii annoque mmxl 40 xl 2040}
test clock-2.2017 {conversion of 2041-01-01} {
    clock format 2240656496 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Jan January 01/01/2041 12:34:56 die i mensis i annoque mmxli xii h xxxiv m lvi s 20 mm 01 i  1 i Jan 001 2466521 01 i  1 01/01/2041 die i mensis i annoque mmxli 41 xli 2041}
test clock-2.2018 {conversion of 2041-01-31} {
    clock format 2243248496 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Jan January 01/31/2041 12:34:56 die xxxi mensis i annoque mmxli xii h xxxiv m lvi s 20 mm 31 xxxi 31 xxxi Jan 031 2466551 01 i  1 01/31/2041 die xxxi mensis i annoque mmxli 41 xli 2041}
test clock-2.2019 {conversion of 2041-02-01} {
    clock format 2243334896 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Feb February 02/01/2041 12:34:56 die i mensis ii annoque mmxli xii h xxxiv m lvi s 20 mm 01 i  1 i Feb 032 2466552 02 ii  2 02/01/2041 die i mensis ii annoque mmxli 41 xli 2041}
test clock-2.2020 {conversion of 2041-02-28} {
    clock format 2245667696 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Feb February 02/28/2041 12:34:56 die xxviii mensis ii annoque mmxli xii h xxxiv m lvi s 20 mm 28 xxviii 28 xxviii Feb 059 2466579 02 ii  2 02/28/2041 die xxviii mensis ii annoque mmxli 41 xli 2041}
test clock-2.2021 {conversion of 2041-03-01} {
    clock format 2245754096 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Mar March 03/01/2041 12:34:56 die i mensis iii annoque mmxli xii h xxxiv m lvi s 20 mm 01 i  1 i Mar 060 2466580 03 iii  3 03/01/2041 die i mensis iii annoque mmxli 41 xli 2041}
test clock-2.2022 {conversion of 2041-03-31} {
    clock format 2248346096 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Mar March 03/31/2041 12:34:56 die xxxi mensis iii annoque mmxli xii h xxxiv m lvi s 20 mm 31 xxxi 31 xxxi Mar 090 2466610 03 iii  3 03/31/2041 die xxxi mensis iii annoque mmxli 41 xli 2041}
test clock-2.2023 {conversion of 2041-04-01} {
    clock format 2248432496 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Apr April 04/01/2041 12:34:56 die i mensis iv annoque mmxli xii h xxxiv m lvi s 20 mm 01 i  1 i Apr 091 2466611 04 iv  4 04/01/2041 die i mensis iv annoque mmxli 41 xli 2041}
test clock-2.2024 {conversion of 2041-04-30} {
    clock format 2250938096 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Apr April 04/30/2041 12:34:56 die xxx mensis iv annoque mmxli xii h xxxiv m lvi s 20 mm 30 xxx 30 xxx Apr 120 2466640 04 iv  4 04/30/2041 die xxx mensis iv annoque mmxli 41 xli 2041}
test clock-2.2025 {conversion of 2041-05-01} {
    clock format 2251024496 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {May May 05/01/2041 12:34:56 die i mensis v annoque mmxli xii h xxxiv m lvi s 20 mm 01 i  1 i May 121 2466641 05 v  5 05/01/2041 die i mensis v annoque mmxli 41 xli 2041}
test clock-2.2026 {conversion of 2041-05-31} {
    clock format 2253616496 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {May May 05/31/2041 12:34:56 die xxxi mensis v annoque mmxli xii h xxxiv m lvi s 20 mm 31 xxxi 31 xxxi May 151 2466671 05 v  5 05/31/2041 die xxxi mensis v annoque mmxli 41 xli 2041}
test clock-2.2027 {conversion of 2041-06-01} {
    clock format 2253702896 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Jun June 06/01/2041 12:34:56 die i mensis vi annoque mmxli xii h xxxiv m lvi s 20 mm 01 i  1 i Jun 152 2466672 06 vi  6 06/01/2041 die i mensis vi annoque mmxli 41 xli 2041}
test clock-2.2028 {conversion of 2041-06-30} {
    clock format 2256208496 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Jun June 06/30/2041 12:34:56 die xxx mensis vi annoque mmxli xii h xxxiv m lvi s 20 mm 30 xxx 30 xxx Jun 181 2466701 06 vi  6 06/30/2041 die xxx mensis vi annoque mmxli 41 xli 2041}
test clock-2.2029 {conversion of 2041-07-01} {
    clock format 2256294896 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Jul July 07/01/2041 12:34:56 die i mensis vii annoque mmxli xii h xxxiv m lvi s 20 mm 01 i  1 i Jul 182 2466702 07 vii  7 07/01/2041 die i mensis vii annoque mmxli 41 xli 2041}
test clock-2.2030 {conversion of 2041-07-31} {
    clock format 2258886896 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Jul July 07/31/2041 12:34:56 die xxxi mensis vii annoque mmxli xii h xxxiv m lvi s 20 mm 31 xxxi 31 xxxi Jul 212 2466732 07 vii  7 07/31/2041 die xxxi mensis vii annoque mmxli 41 xli 2041}
test clock-2.2031 {conversion of 2041-08-01} {
    clock format 2258973296 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Aug August 08/01/2041 12:34:56 die i mensis viii annoque mmxli xii h xxxiv m lvi s 20 mm 01 i  1 i Aug 213 2466733 08 viii  8 08/01/2041 die i mensis viii annoque mmxli 41 xli 2041}
test clock-2.2032 {conversion of 2041-08-31} {
    clock format 2261565296 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Aug August 08/31/2041 12:34:56 die xxxi mensis viii annoque mmxli xii h xxxiv m lvi s 20 mm 31 xxxi 31 xxxi Aug 243 2466763 08 viii  8 08/31/2041 die xxxi mensis viii annoque mmxli 41 xli 2041}
test clock-2.2033 {conversion of 2041-09-01} {
    clock format 2261651696 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Sep September 09/01/2041 12:34:56 die i mensis ix annoque mmxli xii h xxxiv m lvi s 20 mm 01 i  1 i Sep 244 2466764 09 ix  9 09/01/2041 die i mensis ix annoque mmxli 41 xli 2041}
test clock-2.2034 {conversion of 2041-09-30} {
    clock format 2264157296 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Sep September 09/30/2041 12:34:56 die xxx mensis ix annoque mmxli xii h xxxiv m lvi s 20 mm 30 xxx 30 xxx Sep 273 2466793 09 ix  9 09/30/2041 die xxx mensis ix annoque mmxli 41 xli 2041}
test clock-2.2035 {conversion of 2041-10-01} {
    clock format 2264243696 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Oct October 10/01/2041 12:34:56 die i mensis x annoque mmxli xii h xxxiv m lvi s 20 mm 01 i  1 i Oct 274 2466794 10 x 10 10/01/2041 die i mensis x annoque mmxli 41 xli 2041}
test clock-2.2036 {conversion of 2041-10-31} {
    clock format 2266835696 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Oct October 10/31/2041 12:34:56 die xxxi mensis x annoque mmxli xii h xxxiv m lvi s 20 mm 31 xxxi 31 xxxi Oct 304 2466824 10 x 10 10/31/2041 die xxxi mensis x annoque mmxli 41 xli 2041}
test clock-2.2037 {conversion of 2041-11-01} {
    clock format 2266922096 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Nov November 11/01/2041 12:34:56 die i mensis xi annoque mmxli xii h xxxiv m lvi s 20 mm 01 i  1 i Nov 305 2466825 11 xi 11 11/01/2041 die i mensis xi annoque mmxli 41 xli 2041}
test clock-2.2038 {conversion of 2041-11-30} {
    clock format 2269427696 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Nov November 11/30/2041 12:34:56 die xxx mensis xi annoque mmxli xii h xxxiv m lvi s 20 mm 30 xxx 30 xxx Nov 334 2466854 11 xi 11 11/30/2041 die xxx mensis xi annoque mmxli 41 xli 2041}
test clock-2.2039 {conversion of 2041-12-01} {
    clock format 2269514096 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Dec December 12/01/2041 12:34:56 die i mensis xii annoque mmxli xii h xxxiv m lvi s 20 mm 01 i  1 i Dec 335 2466855 12 xii 12 12/01/2041 die i mensis xii annoque mmxli 41 xli 2041}
test clock-2.2040 {conversion of 2041-12-31} {
    clock format 2272106096 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Dec December 12/31/2041 12:34:56 die xxxi mensis xii annoque mmxli xii h xxxiv m lvi s 20 mm 31 xxxi 31 xxxi Dec 365 2466885 12 xii 12 12/31/2041 die xxxi mensis xii annoque mmxli 41 xli 2041}
test clock-2.2041 {conversion of 2042-01-01} {
    clock format 2272192496 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Jan January 01/01/2042 12:34:56 die i mensis i annoque mmxlii xii h xxxiv m lvi s 20 mm 01 i  1 i Jan 001 2466886 01 i  1 01/01/2042 die i mensis i annoque mmxlii 42 xlii 2042}
test clock-2.2042 {conversion of 2042-01-31} {
    clock format 2274784496 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Jan January 01/31/2042 12:34:56 die xxxi mensis i annoque mmxlii xii h xxxiv m lvi s 20 mm 31 xxxi 31 xxxi Jan 031 2466916 01 i  1 01/31/2042 die xxxi mensis i annoque mmxlii 42 xlii 2042}
test clock-2.2043 {conversion of 2042-02-01} {
    clock format 2274870896 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Feb February 02/01/2042 12:34:56 die i mensis ii annoque mmxlii xii h xxxiv m lvi s 20 mm 01 i  1 i Feb 032 2466917 02 ii  2 02/01/2042 die i mensis ii annoque mmxlii 42 xlii 2042}
test clock-2.2044 {conversion of 2042-02-28} {
    clock format 2277203696 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Feb February 02/28/2042 12:34:56 die xxviii mensis ii annoque mmxlii xii h xxxiv m lvi s 20 mm 28 xxviii 28 xxviii Feb 059 2466944 02 ii  2 02/28/2042 die xxviii mensis ii annoque mmxlii 42 xlii 2042}
test clock-2.2045 {conversion of 2042-03-01} {
    clock format 2277290096 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Mar March 03/01/2042 12:34:56 die i mensis iii annoque mmxlii xii h xxxiv m lvi s 20 mm 01 i  1 i Mar 060 2466945 03 iii  3 03/01/2042 die i mensis iii annoque mmxlii 42 xlii 2042}
test clock-2.2046 {conversion of 2042-03-31} {
    clock format 2279882096 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Mar March 03/31/2042 12:34:56 die xxxi mensis iii annoque mmxlii xii h xxxiv m lvi s 20 mm 31 xxxi 31 xxxi Mar 090 2466975 03 iii  3 03/31/2042 die xxxi mensis iii annoque mmxlii 42 xlii 2042}
test clock-2.2047 {conversion of 2042-04-01} {
    clock format 2279968496 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Apr April 04/01/2042 12:34:56 die i mensis iv annoque mmxlii xii h xxxiv m lvi s 20 mm 01 i  1 i Apr 091 2466976 04 iv  4 04/01/2042 die i mensis iv annoque mmxlii 42 xlii 2042}
test clock-2.2048 {conversion of 2042-04-30} {
    clock format 2282474096 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Apr April 04/30/2042 12:34:56 die xxx mensis iv annoque mmxlii xii h xxxiv m lvi s 20 mm 30 xxx 30 xxx Apr 120 2467005 04 iv  4 04/30/2042 die xxx mensis iv annoque mmxlii 42 xlii 2042}
test clock-2.2049 {conversion of 2042-05-01} {
    clock format 2282560496 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {May May 05/01/2042 12:34:56 die i mensis v annoque mmxlii xii h xxxiv m lvi s 20 mm 01 i  1 i May 121 2467006 05 v  5 05/01/2042 die i mensis v annoque mmxlii 42 xlii 2042}
test clock-2.2050 {conversion of 2042-05-31} {
    clock format 2285152496 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {May May 05/31/2042 12:34:56 die xxxi mensis v annoque mmxlii xii h xxxiv m lvi s 20 mm 31 xxxi 31 xxxi May 151 2467036 05 v  5 05/31/2042 die xxxi mensis v annoque mmxlii 42 xlii 2042}
test clock-2.2051 {conversion of 2042-06-01} {
    clock format 2285238896 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Jun June 06/01/2042 12:34:56 die i mensis vi annoque mmxlii xii h xxxiv m lvi s 20 mm 01 i  1 i Jun 152 2467037 06 vi  6 06/01/2042 die i mensis vi annoque mmxlii 42 xlii 2042}
test clock-2.2052 {conversion of 2042-06-30} {
    clock format 2287744496 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Jun June 06/30/2042 12:34:56 die xxx mensis vi annoque mmxlii xii h xxxiv m lvi s 20 mm 30 xxx 30 xxx Jun 181 2467066 06 vi  6 06/30/2042 die xxx mensis vi annoque mmxlii 42 xlii 2042}
test clock-2.2053 {conversion of 2042-07-01} {
    clock format 2287830896 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Jul July 07/01/2042 12:34:56 die i mensis vii annoque mmxlii xii h xxxiv m lvi s 20 mm 01 i  1 i Jul 182 2467067 07 vii  7 07/01/2042 die i mensis vii annoque mmxlii 42 xlii 2042}
test clock-2.2054 {conversion of 2042-07-31} {
    clock format 2290422896 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Jul July 07/31/2042 12:34:56 die xxxi mensis vii annoque mmxlii xii h xxxiv m lvi s 20 mm 31 xxxi 31 xxxi Jul 212 2467097 07 vii  7 07/31/2042 die xxxi mensis vii annoque mmxlii 42 xlii 2042}
test clock-2.2055 {conversion of 2042-08-01} {
    clock format 2290509296 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Aug August 08/01/2042 12:34:56 die i mensis viii annoque mmxlii xii h xxxiv m lvi s 20 mm 01 i  1 i Aug 213 2467098 08 viii  8 08/01/2042 die i mensis viii annoque mmxlii 42 xlii 2042}
test clock-2.2056 {conversion of 2042-08-31} {
    clock format 2293101296 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Aug August 08/31/2042 12:34:56 die xxxi mensis viii annoque mmxlii xii h xxxiv m lvi s 20 mm 31 xxxi 31 xxxi Aug 243 2467128 08 viii  8 08/31/2042 die xxxi mensis viii annoque mmxlii 42 xlii 2042}
test clock-2.2057 {conversion of 2042-09-01} {
    clock format 2293187696 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Sep September 09/01/2042 12:34:56 die i mensis ix annoque mmxlii xii h xxxiv m lvi s 20 mm 01 i  1 i Sep 244 2467129 09 ix  9 09/01/2042 die i mensis ix annoque mmxlii 42 xlii 2042}
test clock-2.2058 {conversion of 2042-09-30} {
    clock format 2295693296 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Sep September 09/30/2042 12:34:56 die xxx mensis ix annoque mmxlii xii h xxxiv m lvi s 20 mm 30 xxx 30 xxx Sep 273 2467158 09 ix  9 09/30/2042 die xxx mensis ix annoque mmxlii 42 xlii 2042}
test clock-2.2059 {conversion of 2042-10-01} {
    clock format 2295779696 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Oct October 10/01/2042 12:34:56 die i mensis x annoque mmxlii xii h xxxiv m lvi s 20 mm 01 i  1 i Oct 274 2467159 10 x 10 10/01/2042 die i mensis x annoque mmxlii 42 xlii 2042}
test clock-2.2060 {conversion of 2042-10-31} {
    clock format 2298371696 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Oct October 10/31/2042 12:34:56 die xxxi mensis x annoque mmxlii xii h xxxiv m lvi s 20 mm 31 xxxi 31 xxxi Oct 304 2467189 10 x 10 10/31/2042 die xxxi mensis x annoque mmxlii 42 xlii 2042}
test clock-2.2061 {conversion of 2042-11-01} {
    clock format 2298458096 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Nov November 11/01/2042 12:34:56 die i mensis xi annoque mmxlii xii h xxxiv m lvi s 20 mm 01 i  1 i Nov 305 2467190 11 xi 11 11/01/2042 die i mensis xi annoque mmxlii 42 xlii 2042}
test clock-2.2062 {conversion of 2042-11-30} {
    clock format 2300963696 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Nov November 11/30/2042 12:34:56 die xxx mensis xi annoque mmxlii xii h xxxiv m lvi s 20 mm 30 xxx 30 xxx Nov 334 2467219 11 xi 11 11/30/2042 die xxx mensis xi annoque mmxlii 42 xlii 2042}
test clock-2.2063 {conversion of 2042-12-01} {
    clock format 2301050096 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Dec December 12/01/2042 12:34:56 die i mensis xii annoque mmxlii xii h xxxiv m lvi s 20 mm 01 i  1 i Dec 335 2467220 12 xii 12 12/01/2042 die i mensis xii annoque mmxlii 42 xlii 2042}
test clock-2.2064 {conversion of 2042-12-31} {
    clock format 2303642096 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Dec December 12/31/2042 12:34:56 die xxxi mensis xii annoque mmxlii xii h xxxiv m lvi s 20 mm 31 xxxi 31 xxxi Dec 365 2467250 12 xii 12 12/31/2042 die xxxi mensis xii annoque mmxlii 42 xlii 2042}
test clock-2.2065 {conversion of 2043-01-01} {
    clock format 2303728496 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Jan January 01/01/2043 12:34:56 die i mensis i annoque mmxliii xii h xxxiv m lvi s 20 mm 01 i  1 i Jan 001 2467251 01 i  1 01/01/2043 die i mensis i annoque mmxliii 43 xliii 2043}
test clock-2.2066 {conversion of 2043-01-31} {
    clock format 2306320496 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Jan January 01/31/2043 12:34:56 die xxxi mensis i annoque mmxliii xii h xxxiv m lvi s 20 mm 31 xxxi 31 xxxi Jan 031 2467281 01 i  1 01/31/2043 die xxxi mensis i annoque mmxliii 43 xliii 2043}
test clock-2.2067 {conversion of 2043-02-01} {
    clock format 2306406896 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Feb February 02/01/2043 12:34:56 die i mensis ii annoque mmxliii xii h xxxiv m lvi s 20 mm 01 i  1 i Feb 032 2467282 02 ii  2 02/01/2043 die i mensis ii annoque mmxliii 43 xliii 2043}
test clock-2.2068 {conversion of 2043-02-28} {
    clock format 2308739696 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Feb February 02/28/2043 12:34:56 die xxviii mensis ii annoque mmxliii xii h xxxiv m lvi s 20 mm 28 xxviii 28 xxviii Feb 059 2467309 02 ii  2 02/28/2043 die xxviii mensis ii annoque mmxliii 43 xliii 2043}
test clock-2.2069 {conversion of 2043-03-01} {
    clock format 2308826096 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Mar March 03/01/2043 12:34:56 die i mensis iii annoque mmxliii xii h xxxiv m lvi s 20 mm 01 i  1 i Mar 060 2467310 03 iii  3 03/01/2043 die i mensis iii annoque mmxliii 43 xliii 2043}
test clock-2.2070 {conversion of 2043-03-31} {
    clock format 2311418096 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Mar March 03/31/2043 12:34:56 die xxxi mensis iii annoque mmxliii xii h xxxiv m lvi s 20 mm 31 xxxi 31 xxxi Mar 090 2467340 03 iii  3 03/31/2043 die xxxi mensis iii annoque mmxliii 43 xliii 2043}
test clock-2.2071 {conversion of 2043-04-01} {
    clock format 2311504496 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Apr April 04/01/2043 12:34:56 die i mensis iv annoque mmxliii xii h xxxiv m lvi s 20 mm 01 i  1 i Apr 091 2467341 04 iv  4 04/01/2043 die i mensis iv annoque mmxliii 43 xliii 2043}
test clock-2.2072 {conversion of 2043-04-30} {
    clock format 2314010096 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Apr April 04/30/2043 12:34:56 die xxx mensis iv annoque mmxliii xii h xxxiv m lvi s 20 mm 30 xxx 30 xxx Apr 120 2467370 04 iv  4 04/30/2043 die xxx mensis iv annoque mmxliii 43 xliii 2043}
test clock-2.2073 {conversion of 2043-05-01} {
    clock format 2314096496 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {May May 05/01/2043 12:34:56 die i mensis v annoque mmxliii xii h xxxiv m lvi s 20 mm 01 i  1 i May 121 2467371 05 v  5 05/01/2043 die i mensis v annoque mmxliii 43 xliii 2043}
test clock-2.2074 {conversion of 2043-05-31} {
    clock format 2316688496 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {May May 05/31/2043 12:34:56 die xxxi mensis v annoque mmxliii xii h xxxiv m lvi s 20 mm 31 xxxi 31 xxxi May 151 2467401 05 v  5 05/31/2043 die xxxi mensis v annoque mmxliii 43 xliii 2043}
test clock-2.2075 {conversion of 2043-06-01} {
    clock format 2316774896 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Jun June 06/01/2043 12:34:56 die i mensis vi annoque mmxliii xii h xxxiv m lvi s 20 mm 01 i  1 i Jun 152 2467402 06 vi  6 06/01/2043 die i mensis vi annoque mmxliii 43 xliii 2043}
test clock-2.2076 {conversion of 2043-06-30} {
    clock format 2319280496 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Jun June 06/30/2043 12:34:56 die xxx mensis vi annoque mmxliii xii h xxxiv m lvi s 20 mm 30 xxx 30 xxx Jun 181 2467431 06 vi  6 06/30/2043 die xxx mensis vi annoque mmxliii 43 xliii 2043}
test clock-2.2077 {conversion of 2043-07-01} {
    clock format 2319366896 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Jul July 07/01/2043 12:34:56 die i mensis vii annoque mmxliii xii h xxxiv m lvi s 20 mm 01 i  1 i Jul 182 2467432 07 vii  7 07/01/2043 die i mensis vii annoque mmxliii 43 xliii 2043}
test clock-2.2078 {conversion of 2043-07-31} {
    clock format 2321958896 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Jul July 07/31/2043 12:34:56 die xxxi mensis vii annoque mmxliii xii h xxxiv m lvi s 20 mm 31 xxxi 31 xxxi Jul 212 2467462 07 vii  7 07/31/2043 die xxxi mensis vii annoque mmxliii 43 xliii 2043}
test clock-2.2079 {conversion of 2043-08-01} {
    clock format 2322045296 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Aug August 08/01/2043 12:34:56 die i mensis viii annoque mmxliii xii h xxxiv m lvi s 20 mm 01 i  1 i Aug 213 2467463 08 viii  8 08/01/2043 die i mensis viii annoque mmxliii 43 xliii 2043}
test clock-2.2080 {conversion of 2043-08-31} {
    clock format 2324637296 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Aug August 08/31/2043 12:34:56 die xxxi mensis viii annoque mmxliii xii h xxxiv m lvi s 20 mm 31 xxxi 31 xxxi Aug 243 2467493 08 viii  8 08/31/2043 die xxxi mensis viii annoque mmxliii 43 xliii 2043}
test clock-2.2081 {conversion of 2043-09-01} {
    clock format 2324723696 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Sep September 09/01/2043 12:34:56 die i mensis ix annoque mmxliii xii h xxxiv m lvi s 20 mm 01 i  1 i Sep 244 2467494 09 ix  9 09/01/2043 die i mensis ix annoque mmxliii 43 xliii 2043}
test clock-2.2082 {conversion of 2043-09-30} {
    clock format 2327229296 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Sep September 09/30/2043 12:34:56 die xxx mensis ix annoque mmxliii xii h xxxiv m lvi s 20 mm 30 xxx 30 xxx Sep 273 2467523 09 ix  9 09/30/2043 die xxx mensis ix annoque mmxliii 43 xliii 2043}
test clock-2.2083 {conversion of 2043-10-01} {
    clock format 2327315696 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Oct October 10/01/2043 12:34:56 die i mensis x annoque mmxliii xii h xxxiv m lvi s 20 mm 01 i  1 i Oct 274 2467524 10 x 10 10/01/2043 die i mensis x annoque mmxliii 43 xliii 2043}
test clock-2.2084 {conversion of 2043-10-31} {
    clock format 2329907696 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Oct October 10/31/2043 12:34:56 die xxxi mensis x annoque mmxliii xii h xxxiv m lvi s 20 mm 31 xxxi 31 xxxi Oct 304 2467554 10 x 10 10/31/2043 die xxxi mensis x annoque mmxliii 43 xliii 2043}
test clock-2.2085 {conversion of 2043-11-01} {
    clock format 2329994096 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Nov November 11/01/2043 12:34:56 die i mensis xi annoque mmxliii xii h xxxiv m lvi s 20 mm 01 i  1 i Nov 305 2467555 11 xi 11 11/01/2043 die i mensis xi annoque mmxliii 43 xliii 2043}
test clock-2.2086 {conversion of 2043-11-30} {
    clock format 2332499696 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Nov November 11/30/2043 12:34:56 die xxx mensis xi annoque mmxliii xii h xxxiv m lvi s 20 mm 30 xxx 30 xxx Nov 334 2467584 11 xi 11 11/30/2043 die xxx mensis xi annoque mmxliii 43 xliii 2043}
test clock-2.2087 {conversion of 2043-12-01} {
    clock format 2332586096 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Dec December 12/01/2043 12:34:56 die i mensis xii annoque mmxliii xii h xxxiv m lvi s 20 mm 01 i  1 i Dec 335 2467585 12 xii 12 12/01/2043 die i mensis xii annoque mmxliii 43 xliii 2043}
test clock-2.2088 {conversion of 2043-12-31} {
    clock format 2335178096 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Dec December 12/31/2043 12:34:56 die xxxi mensis xii annoque mmxliii xii h xxxiv m lvi s 20 mm 31 xxxi 31 xxxi Dec 365 2467615 12 xii 12 12/31/2043 die xxxi mensis xii annoque mmxliii 43 xliii 2043}
test clock-2.2089 {conversion of 2044-01-01} {
    clock format 2335264496 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Jan January 01/01/2044 12:34:56 die i mensis i annoque mmxliv xii h xxxiv m lvi s 20 mm 01 i  1 i Jan 001 2467616 01 i  1 01/01/2044 die i mensis i annoque mmxliv 44 xliv 2044}
test clock-2.2090 {conversion of 2044-01-31} {
    clock format 2337856496 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Jan January 01/31/2044 12:34:56 die xxxi mensis i annoque mmxliv xii h xxxiv m lvi s 20 mm 31 xxxi 31 xxxi Jan 031 2467646 01 i  1 01/31/2044 die xxxi mensis i annoque mmxliv 44 xliv 2044}
test clock-2.2091 {conversion of 2044-02-01} {
    clock format 2337942896 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Feb February 02/01/2044 12:34:56 die i mensis ii annoque mmxliv xii h xxxiv m lvi s 20 mm 01 i  1 i Feb 032 2467647 02 ii  2 02/01/2044 die i mensis ii annoque mmxliv 44 xliv 2044}
test clock-2.2092 {conversion of 2044-02-29} {
    clock format 2340362096 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Feb February 02/29/2044 12:34:56 die xxix mensis ii annoque mmxliv xii h xxxiv m lvi s 20 mm 29 xxix 29 xxix Feb 060 2467675 02 ii  2 02/29/2044 die xxix mensis ii annoque mmxliv 44 xliv 2044}
test clock-2.2093 {conversion of 2044-03-01} {
    clock format 2340448496 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Mar March 03/01/2044 12:34:56 die i mensis iii annoque mmxliv xii h xxxiv m lvi s 20 mm 01 i  1 i Mar 061 2467676 03 iii  3 03/01/2044 die i mensis iii annoque mmxliv 44 xliv 2044}
test clock-2.2094 {conversion of 2044-03-31} {
    clock format 2343040496 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Mar March 03/31/2044 12:34:56 die xxxi mensis iii annoque mmxliv xii h xxxiv m lvi s 20 mm 31 xxxi 31 xxxi Mar 091 2467706 03 iii  3 03/31/2044 die xxxi mensis iii annoque mmxliv 44 xliv 2044}
test clock-2.2095 {conversion of 2044-04-01} {
    clock format 2343126896 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Apr April 04/01/2044 12:34:56 die i mensis iv annoque mmxliv xii h xxxiv m lvi s 20 mm 01 i  1 i Apr 092 2467707 04 iv  4 04/01/2044 die i mensis iv annoque mmxliv 44 xliv 2044}
test clock-2.2096 {conversion of 2044-04-30} {
    clock format 2345632496 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Apr April 04/30/2044 12:34:56 die xxx mensis iv annoque mmxliv xii h xxxiv m lvi s 20 mm 30 xxx 30 xxx Apr 121 2467736 04 iv  4 04/30/2044 die xxx mensis iv annoque mmxliv 44 xliv 2044}
test clock-2.2097 {conversion of 2044-05-01} {
    clock format 2345718896 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {May May 05/01/2044 12:34:56 die i mensis v annoque mmxliv xii h xxxiv m lvi s 20 mm 01 i  1 i May 122 2467737 05 v  5 05/01/2044 die i mensis v annoque mmxliv 44 xliv 2044}
test clock-2.2098 {conversion of 2044-05-31} {
    clock format 2348310896 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {May May 05/31/2044 12:34:56 die xxxi mensis v annoque mmxliv xii h xxxiv m lvi s 20 mm 31 xxxi 31 xxxi May 152 2467767 05 v  5 05/31/2044 die xxxi mensis v annoque mmxliv 44 xliv 2044}
test clock-2.2099 {conversion of 2044-06-01} {
    clock format 2348397296 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Jun June 06/01/2044 12:34:56 die i mensis vi annoque mmxliv xii h xxxiv m lvi s 20 mm 01 i  1 i Jun 153 2467768 06 vi  6 06/01/2044 die i mensis vi annoque mmxliv 44 xliv 2044}
test clock-2.2100 {conversion of 2044-06-30} {
    clock format 2350902896 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Jun June 06/30/2044 12:34:56 die xxx mensis vi annoque mmxliv xii h xxxiv m lvi s 20 mm 30 xxx 30 xxx Jun 182 2467797 06 vi  6 06/30/2044 die xxx mensis vi annoque mmxliv 44 xliv 2044}
test clock-2.2101 {conversion of 2044-07-01} {
    clock format 2350989296 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Jul July 07/01/2044 12:34:56 die i mensis vii annoque mmxliv xii h xxxiv m lvi s 20 mm 01 i  1 i Jul 183 2467798 07 vii  7 07/01/2044 die i mensis vii annoque mmxliv 44 xliv 2044}
test clock-2.2102 {conversion of 2044-07-31} {
    clock format 2353581296 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Jul July 07/31/2044 12:34:56 die xxxi mensis vii annoque mmxliv xii h xxxiv m lvi s 20 mm 31 xxxi 31 xxxi Jul 213 2467828 07 vii  7 07/31/2044 die xxxi mensis vii annoque mmxliv 44 xliv 2044}
test clock-2.2103 {conversion of 2044-08-01} {
    clock format 2353667696 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Aug August 08/01/2044 12:34:56 die i mensis viii annoque mmxliv xii h xxxiv m lvi s 20 mm 01 i  1 i Aug 214 2467829 08 viii  8 08/01/2044 die i mensis viii annoque mmxliv 44 xliv 2044}
test clock-2.2104 {conversion of 2044-08-31} {
    clock format 2356259696 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Aug August 08/31/2044 12:34:56 die xxxi mensis viii annoque mmxliv xii h xxxiv m lvi s 20 mm 31 xxxi 31 xxxi Aug 244 2467859 08 viii  8 08/31/2044 die xxxi mensis viii annoque mmxliv 44 xliv 2044}
test clock-2.2105 {conversion of 2044-09-01} {
    clock format 2356346096 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Sep September 09/01/2044 12:34:56 die i mensis ix annoque mmxliv xii h xxxiv m lvi s 20 mm 01 i  1 i Sep 245 2467860 09 ix  9 09/01/2044 die i mensis ix annoque mmxliv 44 xliv 2044}
test clock-2.2106 {conversion of 2044-09-30} {
    clock format 2358851696 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Sep September 09/30/2044 12:34:56 die xxx mensis ix annoque mmxliv xii h xxxiv m lvi s 20 mm 30 xxx 30 xxx Sep 274 2467889 09 ix  9 09/30/2044 die xxx mensis ix annoque mmxliv 44 xliv 2044}
test clock-2.2107 {conversion of 2044-10-01} {
    clock format 2358938096 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Oct October 10/01/2044 12:34:56 die i mensis x annoque mmxliv xii h xxxiv m lvi s 20 mm 01 i  1 i Oct 275 2467890 10 x 10 10/01/2044 die i mensis x annoque mmxliv 44 xliv 2044}
test clock-2.2108 {conversion of 2044-10-31} {
    clock format 2361530096 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Oct October 10/31/2044 12:34:56 die xxxi mensis x annoque mmxliv xii h xxxiv m lvi s 20 mm 31 xxxi 31 xxxi Oct 305 2467920 10 x 10 10/31/2044 die xxxi mensis x annoque mmxliv 44 xliv 2044}
test clock-2.2109 {conversion of 2044-11-01} {
    clock format 2361616496 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Nov November 11/01/2044 12:34:56 die i mensis xi annoque mmxliv xii h xxxiv m lvi s 20 mm 01 i  1 i Nov 306 2467921 11 xi 11 11/01/2044 die i mensis xi annoque mmxliv 44 xliv 2044}
test clock-2.2110 {conversion of 2044-11-30} {
    clock format 2364122096 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Nov November 11/30/2044 12:34:56 die xxx mensis xi annoque mmxliv xii h xxxiv m lvi s 20 mm 30 xxx 30 xxx Nov 335 2467950 11 xi 11 11/30/2044 die xxx mensis xi annoque mmxliv 44 xliv 2044}
test clock-2.2111 {conversion of 2044-12-01} {
    clock format 2364208496 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Dec December 12/01/2044 12:34:56 die i mensis xii annoque mmxliv xii h xxxiv m lvi s 20 mm 01 i  1 i Dec 336 2467951 12 xii 12 12/01/2044 die i mensis xii annoque mmxliv 44 xliv 2044}
test clock-2.2112 {conversion of 2044-12-31} {
    clock format 2366800496 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Dec December 12/31/2044 12:34:56 die xxxi mensis xii annoque mmxliv xii h xxxiv m lvi s 20 mm 31 xxxi 31 xxxi Dec 366 2467981 12 xii 12 12/31/2044 die xxxi mensis xii annoque mmxliv 44 xliv 2044}
test clock-2.2113 {conversion of 2045-01-01} {
    clock format 2366886896 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Jan January 01/01/2045 12:34:56 die i mensis i annoque mmxlv xii h xxxiv m lvi s 20 mm 01 i  1 i Jan 001 2467982 01 i  1 01/01/2045 die i mensis i annoque mmxlv 45 xlv 2045}
test clock-2.2114 {conversion of 2045-01-31} {
    clock format 2369478896 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Jan January 01/31/2045 12:34:56 die xxxi mensis i annoque mmxlv xii h xxxiv m lvi s 20 mm 31 xxxi 31 xxxi Jan 031 2468012 01 i  1 01/31/2045 die xxxi mensis i annoque mmxlv 45 xlv 2045}
test clock-2.2115 {conversion of 2045-02-01} {
    clock format 2369565296 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Feb February 02/01/2045 12:34:56 die i mensis ii annoque mmxlv xii h xxxiv m lvi s 20 mm 01 i  1 i Feb 032 2468013 02 ii  2 02/01/2045 die i mensis ii annoque mmxlv 45 xlv 2045}
test clock-2.2116 {conversion of 2045-02-28} {
    clock format 2371898096 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Feb February 02/28/2045 12:34:56 die xxviii mensis ii annoque mmxlv xii h xxxiv m lvi s 20 mm 28 xxviii 28 xxviii Feb 059 2468040 02 ii  2 02/28/2045 die xxviii mensis ii annoque mmxlv 45 xlv 2045}
test clock-2.2117 {conversion of 2045-03-01} {
    clock format 2371984496 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Mar March 03/01/2045 12:34:56 die i mensis iii annoque mmxlv xii h xxxiv m lvi s 20 mm 01 i  1 i Mar 060 2468041 03 iii  3 03/01/2045 die i mensis iii annoque mmxlv 45 xlv 2045}
test clock-2.2118 {conversion of 2045-03-31} {
    clock format 2374576496 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Mar March 03/31/2045 12:34:56 die xxxi mensis iii annoque mmxlv xii h xxxiv m lvi s 20 mm 31 xxxi 31 xxxi Mar 090 2468071 03 iii  3 03/31/2045 die xxxi mensis iii annoque mmxlv 45 xlv 2045}
test clock-2.2119 {conversion of 2045-04-01} {
    clock format 2374662896 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Apr April 04/01/2045 12:34:56 die i mensis iv annoque mmxlv xii h xxxiv m lvi s 20 mm 01 i  1 i Apr 091 2468072 04 iv  4 04/01/2045 die i mensis iv annoque mmxlv 45 xlv 2045}
test clock-2.2120 {conversion of 2045-04-30} {
    clock format 2377168496 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Apr April 04/30/2045 12:34:56 die xxx mensis iv annoque mmxlv xii h xxxiv m lvi s 20 mm 30 xxx 30 xxx Apr 120 2468101 04 iv  4 04/30/2045 die xxx mensis iv annoque mmxlv 45 xlv 2045}
test clock-2.2121 {conversion of 2045-05-01} {
    clock format 2377254896 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {May May 05/01/2045 12:34:56 die i mensis v annoque mmxlv xii h xxxiv m lvi s 20 mm 01 i  1 i May 121 2468102 05 v  5 05/01/2045 die i mensis v annoque mmxlv 45 xlv 2045}
test clock-2.2122 {conversion of 2045-05-31} {
    clock format 2379846896 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {May May 05/31/2045 12:34:56 die xxxi mensis v annoque mmxlv xii h xxxiv m lvi s 20 mm 31 xxxi 31 xxxi May 151 2468132 05 v  5 05/31/2045 die xxxi mensis v annoque mmxlv 45 xlv 2045}
test clock-2.2123 {conversion of 2045-06-01} {
    clock format 2379933296 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Jun June 06/01/2045 12:34:56 die i mensis vi annoque mmxlv xii h xxxiv m lvi s 20 mm 01 i  1 i Jun 152 2468133 06 vi  6 06/01/2045 die i mensis vi annoque mmxlv 45 xlv 2045}
test clock-2.2124 {conversion of 2045-06-30} {
    clock format 2382438896 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Jun June 06/30/2045 12:34:56 die xxx mensis vi annoque mmxlv xii h xxxiv m lvi s 20 mm 30 xxx 30 xxx Jun 181 2468162 06 vi  6 06/30/2045 die xxx mensis vi annoque mmxlv 45 xlv 2045}
test clock-2.2125 {conversion of 2045-07-01} {
    clock format 2382525296 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Jul July 07/01/2045 12:34:56 die i mensis vii annoque mmxlv xii h xxxiv m lvi s 20 mm 01 i  1 i Jul 182 2468163 07 vii  7 07/01/2045 die i mensis vii annoque mmxlv 45 xlv 2045}
test clock-2.2126 {conversion of 2045-07-31} {
    clock format 2385117296 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Jul July 07/31/2045 12:34:56 die xxxi mensis vii annoque mmxlv xii h xxxiv m lvi s 20 mm 31 xxxi 31 xxxi Jul 212 2468193 07 vii  7 07/31/2045 die xxxi mensis vii annoque mmxlv 45 xlv 2045}
test clock-2.2127 {conversion of 2045-08-01} {
    clock format 2385203696 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Aug August 08/01/2045 12:34:56 die i mensis viii annoque mmxlv xii h xxxiv m lvi s 20 mm 01 i  1 i Aug 213 2468194 08 viii  8 08/01/2045 die i mensis viii annoque mmxlv 45 xlv 2045}
test clock-2.2128 {conversion of 2045-08-31} {
    clock format 2387795696 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Aug August 08/31/2045 12:34:56 die xxxi mensis viii annoque mmxlv xii h xxxiv m lvi s 20 mm 31 xxxi 31 xxxi Aug 243 2468224 08 viii  8 08/31/2045 die xxxi mensis viii annoque mmxlv 45 xlv 2045}
test clock-2.2129 {conversion of 2045-09-01} {
    clock format 2387882096 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Sep September 09/01/2045 12:34:56 die i mensis ix annoque mmxlv xii h xxxiv m lvi s 20 mm 01 i  1 i Sep 244 2468225 09 ix  9 09/01/2045 die i mensis ix annoque mmxlv 45 xlv 2045}
test clock-2.2130 {conversion of 2045-09-30} {
    clock format 2390387696 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Sep September 09/30/2045 12:34:56 die xxx mensis ix annoque mmxlv xii h xxxiv m lvi s 20 mm 30 xxx 30 xxx Sep 273 2468254 09 ix  9 09/30/2045 die xxx mensis ix annoque mmxlv 45 xlv 2045}
test clock-2.2131 {conversion of 2045-10-01} {
    clock format 2390474096 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Oct October 10/01/2045 12:34:56 die i mensis x annoque mmxlv xii h xxxiv m lvi s 20 mm 01 i  1 i Oct 274 2468255 10 x 10 10/01/2045 die i mensis x annoque mmxlv 45 xlv 2045}
test clock-2.2132 {conversion of 2045-10-31} {
    clock format 2393066096 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Oct October 10/31/2045 12:34:56 die xxxi mensis x annoque mmxlv xii h xxxiv m lvi s 20 mm 31 xxxi 31 xxxi Oct 304 2468285 10 x 10 10/31/2045 die xxxi mensis x annoque mmxlv 45 xlv 2045}
test clock-2.2133 {conversion of 2045-11-01} {
    clock format 2393152496 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Nov November 11/01/2045 12:34:56 die i mensis xi annoque mmxlv xii h xxxiv m lvi s 20 mm 01 i  1 i Nov 305 2468286 11 xi 11 11/01/2045 die i mensis xi annoque mmxlv 45 xlv 2045}
test clock-2.2134 {conversion of 2045-11-30} {
    clock format 2395658096 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Nov November 11/30/2045 12:34:56 die xxx mensis xi annoque mmxlv xii h xxxiv m lvi s 20 mm 30 xxx 30 xxx Nov 334 2468315 11 xi 11 11/30/2045 die xxx mensis xi annoque mmxlv 45 xlv 2045}
test clock-2.2135 {conversion of 2045-12-01} {
    clock format 2395744496 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Dec December 12/01/2045 12:34:56 die i mensis xii annoque mmxlv xii h xxxiv m lvi s 20 mm 01 i  1 i Dec 335 2468316 12 xii 12 12/01/2045 die i mensis xii annoque mmxlv 45 xlv 2045}
test clock-2.2136 {conversion of 2045-12-31} {
    clock format 2398336496 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Dec December 12/31/2045 12:34:56 die xxxi mensis xii annoque mmxlv xii h xxxiv m lvi s 20 mm 31 xxxi 31 xxxi Dec 365 2468346 12 xii 12 12/31/2045 die xxxi mensis xii annoque mmxlv 45 xlv 2045}
test clock-2.2137 {conversion of 2046-01-01} {
    clock format 2398422896 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Jan January 01/01/2046 12:34:56 die i mensis i annoque mmxlvi xii h xxxiv m lvi s 20 mm 01 i  1 i Jan 001 2468347 01 i  1 01/01/2046 die i mensis i annoque mmxlvi 46 xlvi 2046}
test clock-2.2138 {conversion of 2046-01-31} {
    clock format 2401014896 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Jan January 01/31/2046 12:34:56 die xxxi mensis i annoque mmxlvi xii h xxxiv m lvi s 20 mm 31 xxxi 31 xxxi Jan 031 2468377 01 i  1 01/31/2046 die xxxi mensis i annoque mmxlvi 46 xlvi 2046}
test clock-2.2139 {conversion of 2046-02-01} {
    clock format 2401101296 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Feb February 02/01/2046 12:34:56 die i mensis ii annoque mmxlvi xii h xxxiv m lvi s 20 mm 01 i  1 i Feb 032 2468378 02 ii  2 02/01/2046 die i mensis ii annoque mmxlvi 46 xlvi 2046}
test clock-2.2140 {conversion of 2046-02-28} {
    clock format 2403434096 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Feb February 02/28/2046 12:34:56 die xxviii mensis ii annoque mmxlvi xii h xxxiv m lvi s 20 mm 28 xxviii 28 xxviii Feb 059 2468405 02 ii  2 02/28/2046 die xxviii mensis ii annoque mmxlvi 46 xlvi 2046}
test clock-2.2141 {conversion of 2046-03-01} {
    clock format 2403520496 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Mar March 03/01/2046 12:34:56 die i mensis iii annoque mmxlvi xii h xxxiv m lvi s 20 mm 01 i  1 i Mar 060 2468406 03 iii  3 03/01/2046 die i mensis iii annoque mmxlvi 46 xlvi 2046}
test clock-2.2142 {conversion of 2046-03-31} {
    clock format 2406112496 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Mar March 03/31/2046 12:34:56 die xxxi mensis iii annoque mmxlvi xii h xxxiv m lvi s 20 mm 31 xxxi 31 xxxi Mar 090 2468436 03 iii  3 03/31/2046 die xxxi mensis iii annoque mmxlvi 46 xlvi 2046}
test clock-2.2143 {conversion of 2046-04-01} {
    clock format 2406198896 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Apr April 04/01/2046 12:34:56 die i mensis iv annoque mmxlvi xii h xxxiv m lvi s 20 mm 01 i  1 i Apr 091 2468437 04 iv  4 04/01/2046 die i mensis iv annoque mmxlvi 46 xlvi 2046}
test clock-2.2144 {conversion of 2046-04-30} {
    clock format 2408704496 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Apr April 04/30/2046 12:34:56 die xxx mensis iv annoque mmxlvi xii h xxxiv m lvi s 20 mm 30 xxx 30 xxx Apr 120 2468466 04 iv  4 04/30/2046 die xxx mensis iv annoque mmxlvi 46 xlvi 2046}
test clock-2.2145 {conversion of 2046-05-01} {
    clock format 2408790896 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {May May 05/01/2046 12:34:56 die i mensis v annoque mmxlvi xii h xxxiv m lvi s 20 mm 01 i  1 i May 121 2468467 05 v  5 05/01/2046 die i mensis v annoque mmxlvi 46 xlvi 2046}
test clock-2.2146 {conversion of 2046-05-31} {
    clock format 2411382896 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {May May 05/31/2046 12:34:56 die xxxi mensis v annoque mmxlvi xii h xxxiv m lvi s 20 mm 31 xxxi 31 xxxi May 151 2468497 05 v  5 05/31/2046 die xxxi mensis v annoque mmxlvi 46 xlvi 2046}
test clock-2.2147 {conversion of 2046-06-01} {
    clock format 2411469296 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Jun June 06/01/2046 12:34:56 die i mensis vi annoque mmxlvi xii h xxxiv m lvi s 20 mm 01 i  1 i Jun 152 2468498 06 vi  6 06/01/2046 die i mensis vi annoque mmxlvi 46 xlvi 2046}
test clock-2.2148 {conversion of 2046-06-30} {
    clock format 2413974896 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Jun June 06/30/2046 12:34:56 die xxx mensis vi annoque mmxlvi xii h xxxiv m lvi s 20 mm 30 xxx 30 xxx Jun 181 2468527 06 vi  6 06/30/2046 die xxx mensis vi annoque mmxlvi 46 xlvi 2046}
test clock-2.2149 {conversion of 2046-07-01} {
    clock format 2414061296 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Jul July 07/01/2046 12:34:56 die i mensis vii annoque mmxlvi xii h xxxiv m lvi s 20 mm 01 i  1 i Jul 182 2468528 07 vii  7 07/01/2046 die i mensis vii annoque mmxlvi 46 xlvi 2046}
test clock-2.2150 {conversion of 2046-07-31} {
    clock format 2416653296 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Jul July 07/31/2046 12:34:56 die xxxi mensis vii annoque mmxlvi xii h xxxiv m lvi s 20 mm 31 xxxi 31 xxxi Jul 212 2468558 07 vii  7 07/31/2046 die xxxi mensis vii annoque mmxlvi 46 xlvi 2046}
test clock-2.2151 {conversion of 2046-08-01} {
    clock format 2416739696 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Aug August 08/01/2046 12:34:56 die i mensis viii annoque mmxlvi xii h xxxiv m lvi s 20 mm 01 i  1 i Aug 213 2468559 08 viii  8 08/01/2046 die i mensis viii annoque mmxlvi 46 xlvi 2046}
test clock-2.2152 {conversion of 2046-08-31} {
    clock format 2419331696 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Aug August 08/31/2046 12:34:56 die xxxi mensis viii annoque mmxlvi xii h xxxiv m lvi s 20 mm 31 xxxi 31 xxxi Aug 243 2468589 08 viii  8 08/31/2046 die xxxi mensis viii annoque mmxlvi 46 xlvi 2046}
test clock-2.2153 {conversion of 2046-09-01} {
    clock format 2419418096 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Sep September 09/01/2046 12:34:56 die i mensis ix annoque mmxlvi xii h xxxiv m lvi s 20 mm 01 i  1 i Sep 244 2468590 09 ix  9 09/01/2046 die i mensis ix annoque mmxlvi 46 xlvi 2046}
test clock-2.2154 {conversion of 2046-09-30} {
    clock format 2421923696 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Sep September 09/30/2046 12:34:56 die xxx mensis ix annoque mmxlvi xii h xxxiv m lvi s 20 mm 30 xxx 30 xxx Sep 273 2468619 09 ix  9 09/30/2046 die xxx mensis ix annoque mmxlvi 46 xlvi 2046}
test clock-2.2155 {conversion of 2046-10-01} {
    clock format 2422010096 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Oct October 10/01/2046 12:34:56 die i mensis x annoque mmxlvi xii h xxxiv m lvi s 20 mm 01 i  1 i Oct 274 2468620 10 x 10 10/01/2046 die i mensis x annoque mmxlvi 46 xlvi 2046}
test clock-2.2156 {conversion of 2046-10-31} {
    clock format 2424602096 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Oct October 10/31/2046 12:34:56 die xxxi mensis x annoque mmxlvi xii h xxxiv m lvi s 20 mm 31 xxxi 31 xxxi Oct 304 2468650 10 x 10 10/31/2046 die xxxi mensis x annoque mmxlvi 46 xlvi 2046}
test clock-2.2157 {conversion of 2046-11-01} {
    clock format 2424688496 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Nov November 11/01/2046 12:34:56 die i mensis xi annoque mmxlvi xii h xxxiv m lvi s 20 mm 01 i  1 i Nov 305 2468651 11 xi 11 11/01/2046 die i mensis xi annoque mmxlvi 46 xlvi 2046}
test clock-2.2158 {conversion of 2046-11-30} {
    clock format 2427194096 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Nov November 11/30/2046 12:34:56 die xxx mensis xi annoque mmxlvi xii h xxxiv m lvi s 20 mm 30 xxx 30 xxx Nov 334 2468680 11 xi 11 11/30/2046 die xxx mensis xi annoque mmxlvi 46 xlvi 2046}
test clock-2.2159 {conversion of 2046-12-01} {
    clock format 2427280496 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Dec December 12/01/2046 12:34:56 die i mensis xii annoque mmxlvi xii h xxxiv m lvi s 20 mm 01 i  1 i Dec 335 2468681 12 xii 12 12/01/2046 die i mensis xii annoque mmxlvi 46 xlvi 2046}
test clock-2.2160 {conversion of 2046-12-31} {
    clock format 2429872496 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Dec December 12/31/2046 12:34:56 die xxxi mensis xii annoque mmxlvi xii h xxxiv m lvi s 20 mm 31 xxxi 31 xxxi Dec 365 2468711 12 xii 12 12/31/2046 die xxxi mensis xii annoque mmxlvi 46 xlvi 2046}
test clock-2.2161 {conversion of 2047-01-01} {
    clock format 2429958896 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Jan January 01/01/2047 12:34:56 die i mensis i annoque mmxlvii xii h xxxiv m lvi s 20 mm 01 i  1 i Jan 001 2468712 01 i  1 01/01/2047 die i mensis i annoque mmxlvii 47 xlvii 2047}
test clock-2.2162 {conversion of 2047-01-31} {
    clock format 2432550896 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Jan January 01/31/2047 12:34:56 die xxxi mensis i annoque mmxlvii xii h xxxiv m lvi s 20 mm 31 xxxi 31 xxxi Jan 031 2468742 01 i  1 01/31/2047 die xxxi mensis i annoque mmxlvii 47 xlvii 2047}
test clock-2.2163 {conversion of 2047-02-01} {
    clock format 2432637296 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Feb February 02/01/2047 12:34:56 die i mensis ii annoque mmxlvii xii h xxxiv m lvi s 20 mm 01 i  1 i Feb 032 2468743 02 ii  2 02/01/2047 die i mensis ii annoque mmxlvii 47 xlvii 2047}
test clock-2.2164 {conversion of 2047-02-28} {
    clock format 2434970096 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Feb February 02/28/2047 12:34:56 die xxviii mensis ii annoque mmxlvii xii h xxxiv m lvi s 20 mm 28 xxviii 28 xxviii Feb 059 2468770 02 ii  2 02/28/2047 die xxviii mensis ii annoque mmxlvii 47 xlvii 2047}
test clock-2.2165 {conversion of 2047-03-01} {
    clock format 2435056496 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Mar March 03/01/2047 12:34:56 die i mensis iii annoque mmxlvii xii h xxxiv m lvi s 20 mm 01 i  1 i Mar 060 2468771 03 iii  3 03/01/2047 die i mensis iii annoque mmxlvii 47 xlvii 2047}
test clock-2.2166 {conversion of 2047-03-31} {
    clock format 2437648496 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Mar March 03/31/2047 12:34:56 die xxxi mensis iii annoque mmxlvii xii h xxxiv m lvi s 20 mm 31 xxxi 31 xxxi Mar 090 2468801 03 iii  3 03/31/2047 die xxxi mensis iii annoque mmxlvii 47 xlvii 2047}
test clock-2.2167 {conversion of 2047-04-01} {
    clock format 2437734896 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Apr April 04/01/2047 12:34:56 die i mensis iv annoque mmxlvii xii h xxxiv m lvi s 20 mm 01 i  1 i Apr 091 2468802 04 iv  4 04/01/2047 die i mensis iv annoque mmxlvii 47 xlvii 2047}
test clock-2.2168 {conversion of 2047-04-30} {
    clock format 2440240496 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Apr April 04/30/2047 12:34:56 die xxx mensis iv annoque mmxlvii xii h xxxiv m lvi s 20 mm 30 xxx 30 xxx Apr 120 2468831 04 iv  4 04/30/2047 die xxx mensis iv annoque mmxlvii 47 xlvii 2047}
test clock-2.2169 {conversion of 2047-05-01} {
    clock format 2440326896 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {May May 05/01/2047 12:34:56 die i mensis v annoque mmxlvii xii h xxxiv m lvi s 20 mm 01 i  1 i May 121 2468832 05 v  5 05/01/2047 die i mensis v annoque mmxlvii 47 xlvii 2047}
test clock-2.2170 {conversion of 2047-05-31} {
    clock format 2442918896 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {May May 05/31/2047 12:34:56 die xxxi mensis v annoque mmxlvii xii h xxxiv m lvi s 20 mm 31 xxxi 31 xxxi May 151 2468862 05 v  5 05/31/2047 die xxxi mensis v annoque mmxlvii 47 xlvii 2047}
test clock-2.2171 {conversion of 2047-06-01} {
    clock format 2443005296 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Jun June 06/01/2047 12:34:56 die i mensis vi annoque mmxlvii xii h xxxiv m lvi s 20 mm 01 i  1 i Jun 152 2468863 06 vi  6 06/01/2047 die i mensis vi annoque mmxlvii 47 xlvii 2047}
test clock-2.2172 {conversion of 2047-06-30} {
    clock format 2445510896 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Jun June 06/30/2047 12:34:56 die xxx mensis vi annoque mmxlvii xii h xxxiv m lvi s 20 mm 30 xxx 30 xxx Jun 181 2468892 06 vi  6 06/30/2047 die xxx mensis vi annoque mmxlvii 47 xlvii 2047}
test clock-2.2173 {conversion of 2047-07-01} {
    clock format 2445597296 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Jul July 07/01/2047 12:34:56 die i mensis vii annoque mmxlvii xii h xxxiv m lvi s 20 mm 01 i  1 i Jul 182 2468893 07 vii  7 07/01/2047 die i mensis vii annoque mmxlvii 47 xlvii 2047}
test clock-2.2174 {conversion of 2047-07-31} {
    clock format 2448189296 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Jul July 07/31/2047 12:34:56 die xxxi mensis vii annoque mmxlvii xii h xxxiv m lvi s 20 mm 31 xxxi 31 xxxi Jul 212 2468923 07 vii  7 07/31/2047 die xxxi mensis vii annoque mmxlvii 47 xlvii 2047}
test clock-2.2175 {conversion of 2047-08-01} {
    clock format 2448275696 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Aug August 08/01/2047 12:34:56 die i mensis viii annoque mmxlvii xii h xxxiv m lvi s 20 mm 01 i  1 i Aug 213 2468924 08 viii  8 08/01/2047 die i mensis viii annoque mmxlvii 47 xlvii 2047}
test clock-2.2176 {conversion of 2047-08-31} {
    clock format 2450867696 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Aug August 08/31/2047 12:34:56 die xxxi mensis viii annoque mmxlvii xii h xxxiv m lvi s 20 mm 31 xxxi 31 xxxi Aug 243 2468954 08 viii  8 08/31/2047 die xxxi mensis viii annoque mmxlvii 47 xlvii 2047}
test clock-2.2177 {conversion of 2047-09-01} {
    clock format 2450954096 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Sep September 09/01/2047 12:34:56 die i mensis ix annoque mmxlvii xii h xxxiv m lvi s 20 mm 01 i  1 i Sep 244 2468955 09 ix  9 09/01/2047 die i mensis ix annoque mmxlvii 47 xlvii 2047}
test clock-2.2178 {conversion of 2047-09-30} {
    clock format 2453459696 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Sep September 09/30/2047 12:34:56 die xxx mensis ix annoque mmxlvii xii h xxxiv m lvi s 20 mm 30 xxx 30 xxx Sep 273 2468984 09 ix  9 09/30/2047 die xxx mensis ix annoque mmxlvii 47 xlvii 2047}
test clock-2.2179 {conversion of 2047-10-01} {
    clock format 2453546096 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Oct October 10/01/2047 12:34:56 die i mensis x annoque mmxlvii xii h xxxiv m lvi s 20 mm 01 i  1 i Oct 274 2468985 10 x 10 10/01/2047 die i mensis x annoque mmxlvii 47 xlvii 2047}
test clock-2.2180 {conversion of 2047-10-31} {
    clock format 2456138096 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Oct October 10/31/2047 12:34:56 die xxxi mensis x annoque mmxlvii xii h xxxiv m lvi s 20 mm 31 xxxi 31 xxxi Oct 304 2469015 10 x 10 10/31/2047 die xxxi mensis x annoque mmxlvii 47 xlvii 2047}
test clock-2.2181 {conversion of 2047-11-01} {
    clock format 2456224496 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Nov November 11/01/2047 12:34:56 die i mensis xi annoque mmxlvii xii h xxxiv m lvi s 20 mm 01 i  1 i Nov 305 2469016 11 xi 11 11/01/2047 die i mensis xi annoque mmxlvii 47 xlvii 2047}
test clock-2.2182 {conversion of 2047-11-30} {
    clock format 2458730096 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Nov November 11/30/2047 12:34:56 die xxx mensis xi annoque mmxlvii xii h xxxiv m lvi s 20 mm 30 xxx 30 xxx Nov 334 2469045 11 xi 11 11/30/2047 die xxx mensis xi annoque mmxlvii 47 xlvii 2047}
test clock-2.2183 {conversion of 2047-12-01} {
    clock format 2458816496 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Dec December 12/01/2047 12:34:56 die i mensis xii annoque mmxlvii xii h xxxiv m lvi s 20 mm 01 i  1 i Dec 335 2469046 12 xii 12 12/01/2047 die i mensis xii annoque mmxlvii 47 xlvii 2047}
test clock-2.2184 {conversion of 2047-12-31} {
    clock format 2461408496 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Dec December 12/31/2047 12:34:56 die xxxi mensis xii annoque mmxlvii xii h xxxiv m lvi s 20 mm 31 xxxi 31 xxxi Dec 365 2469076 12 xii 12 12/31/2047 die xxxi mensis xii annoque mmxlvii 47 xlvii 2047}
test clock-2.2185 {conversion of 2048-01-01} {
    clock format 2461494896 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Jan January 01/01/2048 12:34:56 die i mensis i annoque mmxlviii xii h xxxiv m lvi s 20 mm 01 i  1 i Jan 001 2469077 01 i  1 01/01/2048 die i mensis i annoque mmxlviii 48 xlviii 2048}
test clock-2.2186 {conversion of 2048-01-31} {
    clock format 2464086896 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Jan January 01/31/2048 12:34:56 die xxxi mensis i annoque mmxlviii xii h xxxiv m lvi s 20 mm 31 xxxi 31 xxxi Jan 031 2469107 01 i  1 01/31/2048 die xxxi mensis i annoque mmxlviii 48 xlviii 2048}
test clock-2.2187 {conversion of 2048-02-01} {
    clock format 2464173296 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Feb February 02/01/2048 12:34:56 die i mensis ii annoque mmxlviii xii h xxxiv m lvi s 20 mm 01 i  1 i Feb 032 2469108 02 ii  2 02/01/2048 die i mensis ii annoque mmxlviii 48 xlviii 2048}
test clock-2.2188 {conversion of 2048-02-29} {
    clock format 2466592496 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Feb February 02/29/2048 12:34:56 die xxix mensis ii annoque mmxlviii xii h xxxiv m lvi s 20 mm 29 xxix 29 xxix Feb 060 2469136 02 ii  2 02/29/2048 die xxix mensis ii annoque mmxlviii 48 xlviii 2048}
test clock-2.2189 {conversion of 2048-03-01} {
    clock format 2466678896 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Mar March 03/01/2048 12:34:56 die i mensis iii annoque mmxlviii xii h xxxiv m lvi s 20 mm 01 i  1 i Mar 061 2469137 03 iii  3 03/01/2048 die i mensis iii annoque mmxlviii 48 xlviii 2048}
test clock-2.2190 {conversion of 2048-03-31} {
    clock format 2469270896 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Mar March 03/31/2048 12:34:56 die xxxi mensis iii annoque mmxlviii xii h xxxiv m lvi s 20 mm 31 xxxi 31 xxxi Mar 091 2469167 03 iii  3 03/31/2048 die xxxi mensis iii annoque mmxlviii 48 xlviii 2048}
test clock-2.2191 {conversion of 2048-04-01} {
    clock format 2469357296 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Apr April 04/01/2048 12:34:56 die i mensis iv annoque mmxlviii xii h xxxiv m lvi s 20 mm 01 i  1 i Apr 092 2469168 04 iv  4 04/01/2048 die i mensis iv annoque mmxlviii 48 xlviii 2048}
test clock-2.2192 {conversion of 2048-04-30} {
    clock format 2471862896 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Apr April 04/30/2048 12:34:56 die xxx mensis iv annoque mmxlviii xii h xxxiv m lvi s 20 mm 30 xxx 30 xxx Apr 121 2469197 04 iv  4 04/30/2048 die xxx mensis iv annoque mmxlviii 48 xlviii 2048}
test clock-2.2193 {conversion of 2048-05-01} {
    clock format 2471949296 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {May May 05/01/2048 12:34:56 die i mensis v annoque mmxlviii xii h xxxiv m lvi s 20 mm 01 i  1 i May 122 2469198 05 v  5 05/01/2048 die i mensis v annoque mmxlviii 48 xlviii 2048}
test clock-2.2194 {conversion of 2048-05-31} {
    clock format 2474541296 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {May May 05/31/2048 12:34:56 die xxxi mensis v annoque mmxlviii xii h xxxiv m lvi s 20 mm 31 xxxi 31 xxxi May 152 2469228 05 v  5 05/31/2048 die xxxi mensis v annoque mmxlviii 48 xlviii 2048}
test clock-2.2195 {conversion of 2048-06-01} {
    clock format 2474627696 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Jun June 06/01/2048 12:34:56 die i mensis vi annoque mmxlviii xii h xxxiv m lvi s 20 mm 01 i  1 i Jun 153 2469229 06 vi  6 06/01/2048 die i mensis vi annoque mmxlviii 48 xlviii 2048}
test clock-2.2196 {conversion of 2048-06-30} {
    clock format 2477133296 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Jun June 06/30/2048 12:34:56 die xxx mensis vi annoque mmxlviii xii h xxxiv m lvi s 20 mm 30 xxx 30 xxx Jun 182 2469258 06 vi  6 06/30/2048 die xxx mensis vi annoque mmxlviii 48 xlviii 2048}
test clock-2.2197 {conversion of 2048-07-01} {
    clock format 2477219696 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Jul July 07/01/2048 12:34:56 die i mensis vii annoque mmxlviii xii h xxxiv m lvi s 20 mm 01 i  1 i Jul 183 2469259 07 vii  7 07/01/2048 die i mensis vii annoque mmxlviii 48 xlviii 2048}
test clock-2.2198 {conversion of 2048-07-31} {
    clock format 2479811696 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Jul July 07/31/2048 12:34:56 die xxxi mensis vii annoque mmxlviii xii h xxxiv m lvi s 20 mm 31 xxxi 31 xxxi Jul 213 2469289 07 vii  7 07/31/2048 die xxxi mensis vii annoque mmxlviii 48 xlviii 2048}
test clock-2.2199 {conversion of 2048-08-01} {
    clock format 2479898096 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Aug August 08/01/2048 12:34:56 die i mensis viii annoque mmxlviii xii h xxxiv m lvi s 20 mm 01 i  1 i Aug 214 2469290 08 viii  8 08/01/2048 die i mensis viii annoque mmxlviii 48 xlviii 2048}
test clock-2.2200 {conversion of 2048-08-31} {
    clock format 2482490096 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Aug August 08/31/2048 12:34:56 die xxxi mensis viii annoque mmxlviii xii h xxxiv m lvi s 20 mm 31 xxxi 31 xxxi Aug 244 2469320 08 viii  8 08/31/2048 die xxxi mensis viii annoque mmxlviii 48 xlviii 2048}
test clock-2.2201 {conversion of 2048-09-01} {
    clock format 2482576496 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Sep September 09/01/2048 12:34:56 die i mensis ix annoque mmxlviii xii h xxxiv m lvi s 20 mm 01 i  1 i Sep 245 2469321 09 ix  9 09/01/2048 die i mensis ix annoque mmxlviii 48 xlviii 2048}
test clock-2.2202 {conversion of 2048-09-30} {
    clock format 2485082096 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Sep September 09/30/2048 12:34:56 die xxx mensis ix annoque mmxlviii xii h xxxiv m lvi s 20 mm 30 xxx 30 xxx Sep 274 2469350 09 ix  9 09/30/2048 die xxx mensis ix annoque mmxlviii 48 xlviii 2048}
test clock-2.2203 {conversion of 2048-10-01} {
    clock format 2485168496 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Oct October 10/01/2048 12:34:56 die i mensis x annoque mmxlviii xii h xxxiv m lvi s 20 mm 01 i  1 i Oct 275 2469351 10 x 10 10/01/2048 die i mensis x annoque mmxlviii 48 xlviii 2048}
test clock-2.2204 {conversion of 2048-10-31} {
    clock format 2487760496 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Oct October 10/31/2048 12:34:56 die xxxi mensis x annoque mmxlviii xii h xxxiv m lvi s 20 mm 31 xxxi 31 xxxi Oct 305 2469381 10 x 10 10/31/2048 die xxxi mensis x annoque mmxlviii 48 xlviii 2048}
test clock-2.2205 {conversion of 2048-11-01} {
    clock format 2487846896 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Nov November 11/01/2048 12:34:56 die i mensis xi annoque mmxlviii xii h xxxiv m lvi s 20 mm 01 i  1 i Nov 306 2469382 11 xi 11 11/01/2048 die i mensis xi annoque mmxlviii 48 xlviii 2048}
test clock-2.2206 {conversion of 2048-11-30} {
    clock format 2490352496 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Nov November 11/30/2048 12:34:56 die xxx mensis xi annoque mmxlviii xii h xxxiv m lvi s 20 mm 30 xxx 30 xxx Nov 335 2469411 11 xi 11 11/30/2048 die xxx mensis xi annoque mmxlviii 48 xlviii 2048}
test clock-2.2207 {conversion of 2048-12-01} {
    clock format 2490438896 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Dec December 12/01/2048 12:34:56 die i mensis xii annoque mmxlviii xii h xxxiv m lvi s 20 mm 01 i  1 i Dec 336 2469412 12 xii 12 12/01/2048 die i mensis xii annoque mmxlviii 48 xlviii 2048}
test clock-2.2208 {conversion of 2048-12-31} {
    clock format 2493030896 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Dec December 12/31/2048 12:34:56 die xxxi mensis xii annoque mmxlviii xii h xxxiv m lvi s 20 mm 31 xxxi 31 xxxi Dec 366 2469442 12 xii 12 12/31/2048 die xxxi mensis xii annoque mmxlviii 48 xlviii 2048}
test clock-2.2209 {conversion of 2049-01-01} {
    clock format 2493117296 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Jan January 01/01/2049 12:34:56 die i mensis i annoque mmxlix xii h xxxiv m lvi s 20 mm 01 i  1 i Jan 001 2469443 01 i  1 01/01/2049 die i mensis i annoque mmxlix 49 xlix 2049}
test clock-2.2210 {conversion of 2049-01-31} {
    clock format 2495709296 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Jan January 01/31/2049 12:34:56 die xxxi mensis i annoque mmxlix xii h xxxiv m lvi s 20 mm 31 xxxi 31 xxxi Jan 031 2469473 01 i  1 01/31/2049 die xxxi mensis i annoque mmxlix 49 xlix 2049}
test clock-2.2211 {conversion of 2049-02-01} {
    clock format 2495795696 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Feb February 02/01/2049 12:34:56 die i mensis ii annoque mmxlix xii h xxxiv m lvi s 20 mm 01 i  1 i Feb 032 2469474 02 ii  2 02/01/2049 die i mensis ii annoque mmxlix 49 xlix 2049}
test clock-2.2212 {conversion of 2049-02-28} {
    clock format 2498128496 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Feb February 02/28/2049 12:34:56 die xxviii mensis ii annoque mmxlix xii h xxxiv m lvi s 20 mm 28 xxviii 28 xxviii Feb 059 2469501 02 ii  2 02/28/2049 die xxviii mensis ii annoque mmxlix 49 xlix 2049}
test clock-2.2213 {conversion of 2049-03-01} {
    clock format 2498214896 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Mar March 03/01/2049 12:34:56 die i mensis iii annoque mmxlix xii h xxxiv m lvi s 20 mm 01 i  1 i Mar 060 2469502 03 iii  3 03/01/2049 die i mensis iii annoque mmxlix 49 xlix 2049}
test clock-2.2214 {conversion of 2049-03-31} {
    clock format 2500806896 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Mar March 03/31/2049 12:34:56 die xxxi mensis iii annoque mmxlix xii h xxxiv m lvi s 20 mm 31 xxxi 31 xxxi Mar 090 2469532 03 iii  3 03/31/2049 die xxxi mensis iii annoque mmxlix 49 xlix 2049}
test clock-2.2215 {conversion of 2049-04-01} {
    clock format 2500893296 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Apr April 04/01/2049 12:34:56 die i mensis iv annoque mmxlix xii h xxxiv m lvi s 20 mm 01 i  1 i Apr 091 2469533 04 iv  4 04/01/2049 die i mensis iv annoque mmxlix 49 xlix 2049}
test clock-2.2216 {conversion of 2049-04-30} {
    clock format 2503398896 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Apr April 04/30/2049 12:34:56 die xxx mensis iv annoque mmxlix xii h xxxiv m lvi s 20 mm 30 xxx 30 xxx Apr 120 2469562 04 iv  4 04/30/2049 die xxx mensis iv annoque mmxlix 49 xlix 2049}
test clock-2.2217 {conversion of 2049-05-01} {
    clock format 2503485296 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {May May 05/01/2049 12:34:56 die i mensis v annoque mmxlix xii h xxxiv m lvi s 20 mm 01 i  1 i May 121 2469563 05 v  5 05/01/2049 die i mensis v annoque mmxlix 49 xlix 2049}
test clock-2.2218 {conversion of 2049-05-31} {
    clock format 2506077296 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {May May 05/31/2049 12:34:56 die xxxi mensis v annoque mmxlix xii h xxxiv m lvi s 20 mm 31 xxxi 31 xxxi May 151 2469593 05 v  5 05/31/2049 die xxxi mensis v annoque mmxlix 49 xlix 2049}
test clock-2.2219 {conversion of 2049-06-01} {
    clock format 2506163696 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Jun June 06/01/2049 12:34:56 die i mensis vi annoque mmxlix xii h xxxiv m lvi s 20 mm 01 i  1 i Jun 152 2469594 06 vi  6 06/01/2049 die i mensis vi annoque mmxlix 49 xlix 2049}
test clock-2.2220 {conversion of 2049-06-30} {
    clock format 2508669296 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Jun June 06/30/2049 12:34:56 die xxx mensis vi annoque mmxlix xii h xxxiv m lvi s 20 mm 30 xxx 30 xxx Jun 181 2469623 06 vi  6 06/30/2049 die xxx mensis vi annoque mmxlix 49 xlix 2049}
test clock-2.2221 {conversion of 2049-07-01} {
    clock format 2508755696 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Jul July 07/01/2049 12:34:56 die i mensis vii annoque mmxlix xii h xxxiv m lvi s 20 mm 01 i  1 i Jul 182 2469624 07 vii  7 07/01/2049 die i mensis vii annoque mmxlix 49 xlix 2049}
test clock-2.2222 {conversion of 2049-07-31} {
    clock format 2511347696 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Jul July 07/31/2049 12:34:56 die xxxi mensis vii annoque mmxlix xii h xxxiv m lvi s 20 mm 31 xxxi 31 xxxi Jul 212 2469654 07 vii  7 07/31/2049 die xxxi mensis vii annoque mmxlix 49 xlix 2049}
test clock-2.2223 {conversion of 2049-08-01} {
    clock format 2511434096 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Aug August 08/01/2049 12:34:56 die i mensis viii annoque mmxlix xii h xxxiv m lvi s 20 mm 01 i  1 i Aug 213 2469655 08 viii  8 08/01/2049 die i mensis viii annoque mmxlix 49 xlix 2049}
test clock-2.2224 {conversion of 2049-08-31} {
    clock format 2514026096 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Aug August 08/31/2049 12:34:56 die xxxi mensis viii annoque mmxlix xii h xxxiv m lvi s 20 mm 31 xxxi 31 xxxi Aug 243 2469685 08 viii  8 08/31/2049 die xxxi mensis viii annoque mmxlix 49 xlix 2049}
test clock-2.2225 {conversion of 2049-09-01} {
    clock format 2514112496 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Sep September 09/01/2049 12:34:56 die i mensis ix annoque mmxlix xii h xxxiv m lvi s 20 mm 01 i  1 i Sep 244 2469686 09 ix  9 09/01/2049 die i mensis ix annoque mmxlix 49 xlix 2049}
test clock-2.2226 {conversion of 2049-09-30} {
    clock format 2516618096 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Sep September 09/30/2049 12:34:56 die xxx mensis ix annoque mmxlix xii h xxxiv m lvi s 20 mm 30 xxx 30 xxx Sep 273 2469715 09 ix  9 09/30/2049 die xxx mensis ix annoque mmxlix 49 xlix 2049}
test clock-2.2227 {conversion of 2049-10-01} {
    clock format 2516704496 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Oct October 10/01/2049 12:34:56 die i mensis x annoque mmxlix xii h xxxiv m lvi s 20 mm 01 i  1 i Oct 274 2469716 10 x 10 10/01/2049 die i mensis x annoque mmxlix 49 xlix 2049}
test clock-2.2228 {conversion of 2049-10-31} {
    clock format 2519296496 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Oct October 10/31/2049 12:34:56 die xxxi mensis x annoque mmxlix xii h xxxiv m lvi s 20 mm 31 xxxi 31 xxxi Oct 304 2469746 10 x 10 10/31/2049 die xxxi mensis x annoque mmxlix 49 xlix 2049}
test clock-2.2229 {conversion of 2049-11-01} {
    clock format 2519382896 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Nov November 11/01/2049 12:34:56 die i mensis xi annoque mmxlix xii h xxxiv m lvi s 20 mm 01 i  1 i Nov 305 2469747 11 xi 11 11/01/2049 die i mensis xi annoque mmxlix 49 xlix 2049}
test clock-2.2230 {conversion of 2049-11-30} {
    clock format 2521888496 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Nov November 11/30/2049 12:34:56 die xxx mensis xi annoque mmxlix xii h xxxiv m lvi s 20 mm 30 xxx 30 xxx Nov 334 2469776 11 xi 11 11/30/2049 die xxx mensis xi annoque mmxlix 49 xlix 2049}
test clock-2.2231 {conversion of 2049-12-01} {
    clock format 2521974896 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Dec December 12/01/2049 12:34:56 die i mensis xii annoque mmxlix xii h xxxiv m lvi s 20 mm 01 i  1 i Dec 335 2469777 12 xii 12 12/01/2049 die i mensis xii annoque mmxlix 49 xlix 2049}
test clock-2.2232 {conversion of 2049-12-31} {
    clock format 2524566896 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Dec December 12/31/2049 12:34:56 die xxxi mensis xii annoque mmxlix xii h xxxiv m lvi s 20 mm 31 xxxi 31 xxxi Dec 365 2469807 12 xii 12 12/31/2049 die xxxi mensis xii annoque mmxlix 49 xlix 2049}
test clock-2.2233 {conversion of 2052-01-01} {
    clock format 2587725296 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Jan January 01/01/2052 12:34:56 die i mensis i annoque mmlii xii h xxxiv m lvi s 20 mm 01 i  1 i Jan 001 2470538 01 i  1 01/01/2052 die i mensis i annoque mmlii 52 lii 2052}
test clock-2.2234 {conversion of 2052-01-31} {
    clock format 2590317296 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Jan January 01/31/2052 12:34:56 die xxxi mensis i annoque mmlii xii h xxxiv m lvi s 20 mm 31 xxxi 31 xxxi Jan 031 2470568 01 i  1 01/31/2052 die xxxi mensis i annoque mmlii 52 lii 2052}
test clock-2.2235 {conversion of 2052-02-01} {
    clock format 2590403696 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Feb February 02/01/2052 12:34:56 die i mensis ii annoque mmlii xii h xxxiv m lvi s 20 mm 01 i  1 i Feb 032 2470569 02 ii  2 02/01/2052 die i mensis ii annoque mmlii 52 lii 2052}
test clock-2.2236 {conversion of 2052-02-29} {
    clock format 2592822896 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Feb February 02/29/2052 12:34:56 die xxix mensis ii annoque mmlii xii h xxxiv m lvi s 20 mm 29 xxix 29 xxix Feb 060 2470597 02 ii  2 02/29/2052 die xxix mensis ii annoque mmlii 52 lii 2052}
test clock-2.2237 {conversion of 2052-03-01} {
    clock format 2592909296 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Mar March 03/01/2052 12:34:56 die i mensis iii annoque mmlii xii h xxxiv m lvi s 20 mm 01 i  1 i Mar 061 2470598 03 iii  3 03/01/2052 die i mensis iii annoque mmlii 52 lii 2052}
test clock-2.2238 {conversion of 2052-03-31} {
    clock format 2595501296 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Mar March 03/31/2052 12:34:56 die xxxi mensis iii annoque mmlii xii h xxxiv m lvi s 20 mm 31 xxxi 31 xxxi Mar 091 2470628 03 iii  3 03/31/2052 die xxxi mensis iii annoque mmlii 52 lii 2052}
test clock-2.2239 {conversion of 2052-04-01} {
    clock format 2595587696 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Apr April 04/01/2052 12:34:56 die i mensis iv annoque mmlii xii h xxxiv m lvi s 20 mm 01 i  1 i Apr 092 2470629 04 iv  4 04/01/2052 die i mensis iv annoque mmlii 52 lii 2052}
test clock-2.2240 {conversion of 2052-04-30} {
    clock format 2598093296 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Apr April 04/30/2052 12:34:56 die xxx mensis iv annoque mmlii xii h xxxiv m lvi s 20 mm 30 xxx 30 xxx Apr 121 2470658 04 iv  4 04/30/2052 die xxx mensis iv annoque mmlii 52 lii 2052}
test clock-2.2241 {conversion of 2052-05-01} {
    clock format 2598179696 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {May May 05/01/2052 12:34:56 die i mensis v annoque mmlii xii h xxxiv m lvi s 20 mm 01 i  1 i May 122 2470659 05 v  5 05/01/2052 die i mensis v annoque mmlii 52 lii 2052}
test clock-2.2242 {conversion of 2052-05-31} {
    clock format 2600771696 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {May May 05/31/2052 12:34:56 die xxxi mensis v annoque mmlii xii h xxxiv m lvi s 20 mm 31 xxxi 31 xxxi May 152 2470689 05 v  5 05/31/2052 die xxxi mensis v annoque mmlii 52 lii 2052}
test clock-2.2243 {conversion of 2052-06-01} {
    clock format 2600858096 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Jun June 06/01/2052 12:34:56 die i mensis vi annoque mmlii xii h xxxiv m lvi s 20 mm 01 i  1 i Jun 153 2470690 06 vi  6 06/01/2052 die i mensis vi annoque mmlii 52 lii 2052}
test clock-2.2244 {conversion of 2052-06-30} {
    clock format 2603363696 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Jun June 06/30/2052 12:34:56 die xxx mensis vi annoque mmlii xii h xxxiv m lvi s 20 mm 30 xxx 30 xxx Jun 182 2470719 06 vi  6 06/30/2052 die xxx mensis vi annoque mmlii 52 lii 2052}
test clock-2.2245 {conversion of 2052-07-01} {
    clock format 2603450096 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Jul July 07/01/2052 12:34:56 die i mensis vii annoque mmlii xii h xxxiv m lvi s 20 mm 01 i  1 i Jul 183 2470720 07 vii  7 07/01/2052 die i mensis vii annoque mmlii 52 lii 2052}
test clock-2.2246 {conversion of 2052-07-31} {
    clock format 2606042096 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Jul July 07/31/2052 12:34:56 die xxxi mensis vii annoque mmlii xii h xxxiv m lvi s 20 mm 31 xxxi 31 xxxi Jul 213 2470750 07 vii  7 07/31/2052 die xxxi mensis vii annoque mmlii 52 lii 2052}
test clock-2.2247 {conversion of 2052-08-01} {
    clock format 2606128496 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Aug August 08/01/2052 12:34:56 die i mensis viii annoque mmlii xii h xxxiv m lvi s 20 mm 01 i  1 i Aug 214 2470751 08 viii  8 08/01/2052 die i mensis viii annoque mmlii 52 lii 2052}
test clock-2.2248 {conversion of 2052-08-31} {
    clock format 2608720496 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Aug August 08/31/2052 12:34:56 die xxxi mensis viii annoque mmlii xii h xxxiv m lvi s 20 mm 31 xxxi 31 xxxi Aug 244 2470781 08 viii  8 08/31/2052 die xxxi mensis viii annoque mmlii 52 lii 2052}
test clock-2.2249 {conversion of 2052-09-01} {
    clock format 2608806896 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Sep September 09/01/2052 12:34:56 die i mensis ix annoque mmlii xii h xxxiv m lvi s 20 mm 01 i  1 i Sep 245 2470782 09 ix  9 09/01/2052 die i mensis ix annoque mmlii 52 lii 2052}
test clock-2.2250 {conversion of 2052-09-30} {
    clock format 2611312496 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Sep September 09/30/2052 12:34:56 die xxx mensis ix annoque mmlii xii h xxxiv m lvi s 20 mm 30 xxx 30 xxx Sep 274 2470811 09 ix  9 09/30/2052 die xxx mensis ix annoque mmlii 52 lii 2052}
test clock-2.2251 {conversion of 2052-10-01} {
    clock format 2611398896 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Oct October 10/01/2052 12:34:56 die i mensis x annoque mmlii xii h xxxiv m lvi s 20 mm 01 i  1 i Oct 275 2470812 10 x 10 10/01/2052 die i mensis x annoque mmlii 52 lii 2052}
test clock-2.2252 {conversion of 2052-10-31} {
    clock format 2613990896 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Oct October 10/31/2052 12:34:56 die xxxi mensis x annoque mmlii xii h xxxiv m lvi s 20 mm 31 xxxi 31 xxxi Oct 305 2470842 10 x 10 10/31/2052 die xxxi mensis x annoque mmlii 52 lii 2052}
test clock-2.2253 {conversion of 2052-11-01} {
    clock format 2614077296 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Nov November 11/01/2052 12:34:56 die i mensis xi annoque mmlii xii h xxxiv m lvi s 20 mm 01 i  1 i Nov 306 2470843 11 xi 11 11/01/2052 die i mensis xi annoque mmlii 52 lii 2052}
test clock-2.2254 {conversion of 2052-11-30} {
    clock format 2616582896 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Nov November 11/30/2052 12:34:56 die xxx mensis xi annoque mmlii xii h xxxiv m lvi s 20 mm 30 xxx 30 xxx Nov 335 2470872 11 xi 11 11/30/2052 die xxx mensis xi annoque mmlii 52 lii 2052}
test clock-2.2255 {conversion of 2052-12-01} {
    clock format 2616669296 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Dec December 12/01/2052 12:34:56 die i mensis xii annoque mmlii xii h xxxiv m lvi s 20 mm 01 i  1 i Dec 336 2470873 12 xii 12 12/01/2052 die i mensis xii annoque mmlii 52 lii 2052}
test clock-2.2256 {conversion of 2052-12-31} {
    clock format 2619261296 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Dec December 12/31/2052 12:34:56 die xxxi mensis xii annoque mmlii xii h xxxiv m lvi s 20 mm 31 xxxi 31 xxxi Dec 366 2470903 12 xii 12 12/31/2052 die xxxi mensis xii annoque mmlii 52 lii 2052}
test clock-2.2257 {conversion of 2053-01-01} {
    clock format 2619347696 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Jan January 01/01/2053 12:34:56 die i mensis i annoque mmliii xii h xxxiv m lvi s 20 mm 01 i  1 i Jan 001 2470904 01 i  1 01/01/2053 die i mensis i annoque mmliii 53 liii 2053}
test clock-2.2258 {conversion of 2053-01-31} {
    clock format 2621939696 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Jan January 01/31/2053 12:34:56 die xxxi mensis i annoque mmliii xii h xxxiv m lvi s 20 mm 31 xxxi 31 xxxi Jan 031 2470934 01 i  1 01/31/2053 die xxxi mensis i annoque mmliii 53 liii 2053}
test clock-2.2259 {conversion of 2053-02-01} {
    clock format 2622026096 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Feb February 02/01/2053 12:34:56 die i mensis ii annoque mmliii xii h xxxiv m lvi s 20 mm 01 i  1 i Feb 032 2470935 02 ii  2 02/01/2053 die i mensis ii annoque mmliii 53 liii 2053}
test clock-2.2260 {conversion of 2053-02-28} {
    clock format 2624358896 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Feb February 02/28/2053 12:34:56 die xxviii mensis ii annoque mmliii xii h xxxiv m lvi s 20 mm 28 xxviii 28 xxviii Feb 059 2470962 02 ii  2 02/28/2053 die xxviii mensis ii annoque mmliii 53 liii 2053}
test clock-2.2261 {conversion of 2053-03-01} {
    clock format 2624445296 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Mar March 03/01/2053 12:34:56 die i mensis iii annoque mmliii xii h xxxiv m lvi s 20 mm 01 i  1 i Mar 060 2470963 03 iii  3 03/01/2053 die i mensis iii annoque mmliii 53 liii 2053}
test clock-2.2262 {conversion of 2053-03-31} {
    clock format 2627037296 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Mar March 03/31/2053 12:34:56 die xxxi mensis iii annoque mmliii xii h xxxiv m lvi s 20 mm 31 xxxi 31 xxxi Mar 090 2470993 03 iii  3 03/31/2053 die xxxi mensis iii annoque mmliii 53 liii 2053}
test clock-2.2263 {conversion of 2053-04-01} {
    clock format 2627123696 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Apr April 04/01/2053 12:34:56 die i mensis iv annoque mmliii xii h xxxiv m lvi s 20 mm 01 i  1 i Apr 091 2470994 04 iv  4 04/01/2053 die i mensis iv annoque mmliii 53 liii 2053}
test clock-2.2264 {conversion of 2053-04-30} {
    clock format 2629629296 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Apr April 04/30/2053 12:34:56 die xxx mensis iv annoque mmliii xii h xxxiv m lvi s 20 mm 30 xxx 30 xxx Apr 120 2471023 04 iv  4 04/30/2053 die xxx mensis iv annoque mmliii 53 liii 2053}
test clock-2.2265 {conversion of 2053-05-01} {
    clock format 2629715696 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {May May 05/01/2053 12:34:56 die i mensis v annoque mmliii xii h xxxiv m lvi s 20 mm 01 i  1 i May 121 2471024 05 v  5 05/01/2053 die i mensis v annoque mmliii 53 liii 2053}
test clock-2.2266 {conversion of 2053-05-31} {
    clock format 2632307696 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {May May 05/31/2053 12:34:56 die xxxi mensis v annoque mmliii xii h xxxiv m lvi s 20 mm 31 xxxi 31 xxxi May 151 2471054 05 v  5 05/31/2053 die xxxi mensis v annoque mmliii 53 liii 2053}
test clock-2.2267 {conversion of 2053-06-01} {
    clock format 2632394096 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Jun June 06/01/2053 12:34:56 die i mensis vi annoque mmliii xii h xxxiv m lvi s 20 mm 01 i  1 i Jun 152 2471055 06 vi  6 06/01/2053 die i mensis vi annoque mmliii 53 liii 2053}
test clock-2.2268 {conversion of 2053-06-30} {
    clock format 2634899696 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Jun June 06/30/2053 12:34:56 die xxx mensis vi annoque mmliii xii h xxxiv m lvi s 20 mm 30 xxx 30 xxx Jun 181 2471084 06 vi  6 06/30/2053 die xxx mensis vi annoque mmliii 53 liii 2053}
test clock-2.2269 {conversion of 2053-07-01} {
    clock format 2634986096 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Jul July 07/01/2053 12:34:56 die i mensis vii annoque mmliii xii h xxxiv m lvi s 20 mm 01 i  1 i Jul 182 2471085 07 vii  7 07/01/2053 die i mensis vii annoque mmliii 53 liii 2053}
test clock-2.2270 {conversion of 2053-07-31} {
    clock format 2637578096 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Jul July 07/31/2053 12:34:56 die xxxi mensis vii annoque mmliii xii h xxxiv m lvi s 20 mm 31 xxxi 31 xxxi Jul 212 2471115 07 vii  7 07/31/2053 die xxxi mensis vii annoque mmliii 53 liii 2053}
test clock-2.2271 {conversion of 2053-08-01} {
    clock format 2637664496 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Aug August 08/01/2053 12:34:56 die i mensis viii annoque mmliii xii h xxxiv m lvi s 20 mm 01 i  1 i Aug 213 2471116 08 viii  8 08/01/2053 die i mensis viii annoque mmliii 53 liii 2053}
test clock-2.2272 {conversion of 2053-08-31} {
    clock format 2640256496 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Aug August 08/31/2053 12:34:56 die xxxi mensis viii annoque mmliii xii h xxxiv m lvi s 20 mm 31 xxxi 31 xxxi Aug 243 2471146 08 viii  8 08/31/2053 die xxxi mensis viii annoque mmliii 53 liii 2053}
test clock-2.2273 {conversion of 2053-09-01} {
    clock format 2640342896 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Sep September 09/01/2053 12:34:56 die i mensis ix annoque mmliii xii h xxxiv m lvi s 20 mm 01 i  1 i Sep 244 2471147 09 ix  9 09/01/2053 die i mensis ix annoque mmliii 53 liii 2053}
test clock-2.2274 {conversion of 2053-09-30} {
    clock format 2642848496 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Sep September 09/30/2053 12:34:56 die xxx mensis ix annoque mmliii xii h xxxiv m lvi s 20 mm 30 xxx 30 xxx Sep 273 2471176 09 ix  9 09/30/2053 die xxx mensis ix annoque mmliii 53 liii 2053}
test clock-2.2275 {conversion of 2053-10-01} {
    clock format 2642934896 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Oct October 10/01/2053 12:34:56 die i mensis x annoque mmliii xii h xxxiv m lvi s 20 mm 01 i  1 i Oct 274 2471177 10 x 10 10/01/2053 die i mensis x annoque mmliii 53 liii 2053}
test clock-2.2276 {conversion of 2053-10-31} {
    clock format 2645526896 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Oct October 10/31/2053 12:34:56 die xxxi mensis x annoque mmliii xii h xxxiv m lvi s 20 mm 31 xxxi 31 xxxi Oct 304 2471207 10 x 10 10/31/2053 die xxxi mensis x annoque mmliii 53 liii 2053}
test clock-2.2277 {conversion of 2053-11-01} {
    clock format 2645613296 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Nov November 11/01/2053 12:34:56 die i mensis xi annoque mmliii xii h xxxiv m lvi s 20 mm 01 i  1 i Nov 305 2471208 11 xi 11 11/01/2053 die i mensis xi annoque mmliii 53 liii 2053}
test clock-2.2278 {conversion of 2053-11-30} {
    clock format 2648118896 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Nov November 11/30/2053 12:34:56 die xxx mensis xi annoque mmliii xii h xxxiv m lvi s 20 mm 30 xxx 30 xxx Nov 334 2471237 11 xi 11 11/30/2053 die xxx mensis xi annoque mmliii 53 liii 2053}
test clock-2.2279 {conversion of 2053-12-01} {
    clock format 2648205296 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Dec December 12/01/2053 12:34:56 die i mensis xii annoque mmliii xii h xxxiv m lvi s 20 mm 01 i  1 i Dec 335 2471238 12 xii 12 12/01/2053 die i mensis xii annoque mmliii 53 liii 2053}
test clock-2.2280 {conversion of 2053-12-31} {
    clock format 2650797296 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Dec December 12/31/2053 12:34:56 die xxxi mensis xii annoque mmliii xii h xxxiv m lvi s 20 mm 31 xxxi 31 xxxi Dec 365 2471268 12 xii 12 12/31/2053 die xxxi mensis xii annoque mmliii 53 liii 2053}
test clock-2.2281 {conversion of 2056-01-01} {
    clock format 2713955696 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Jan January 01/01/2056 12:34:56 die i mensis i annoque mmlvi xii h xxxiv m lvi s 20 mm 01 i  1 i Jan 001 2471999 01 i  1 01/01/2056 die i mensis i annoque mmlvi 56 lvi 2056}
test clock-2.2282 {conversion of 2056-01-31} {
    clock format 2716547696 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Jan January 01/31/2056 12:34:56 die xxxi mensis i annoque mmlvi xii h xxxiv m lvi s 20 mm 31 xxxi 31 xxxi Jan 031 2472029 01 i  1 01/31/2056 die xxxi mensis i annoque mmlvi 56 lvi 2056}
test clock-2.2283 {conversion of 2056-02-01} {
    clock format 2716634096 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Feb February 02/01/2056 12:34:56 die i mensis ii annoque mmlvi xii h xxxiv m lvi s 20 mm 01 i  1 i Feb 032 2472030 02 ii  2 02/01/2056 die i mensis ii annoque mmlvi 56 lvi 2056}
test clock-2.2284 {conversion of 2056-02-29} {
    clock format 2719053296 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Feb February 02/29/2056 12:34:56 die xxix mensis ii annoque mmlvi xii h xxxiv m lvi s 20 mm 29 xxix 29 xxix Feb 060 2472058 02 ii  2 02/29/2056 die xxix mensis ii annoque mmlvi 56 lvi 2056}
test clock-2.2285 {conversion of 2056-03-01} {
    clock format 2719139696 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Mar March 03/01/2056 12:34:56 die i mensis iii annoque mmlvi xii h xxxiv m lvi s 20 mm 01 i  1 i Mar 061 2472059 03 iii  3 03/01/2056 die i mensis iii annoque mmlvi 56 lvi 2056}
test clock-2.2286 {conversion of 2056-03-31} {
    clock format 2721731696 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Mar March 03/31/2056 12:34:56 die xxxi mensis iii annoque mmlvi xii h xxxiv m lvi s 20 mm 31 xxxi 31 xxxi Mar 091 2472089 03 iii  3 03/31/2056 die xxxi mensis iii annoque mmlvi 56 lvi 2056}
test clock-2.2287 {conversion of 2056-04-01} {
    clock format 2721818096 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Apr April 04/01/2056 12:34:56 die i mensis iv annoque mmlvi xii h xxxiv m lvi s 20 mm 01 i  1 i Apr 092 2472090 04 iv  4 04/01/2056 die i mensis iv annoque mmlvi 56 lvi 2056}
test clock-2.2288 {conversion of 2056-04-30} {
    clock format 2724323696 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Apr April 04/30/2056 12:34:56 die xxx mensis iv annoque mmlvi xii h xxxiv m lvi s 20 mm 30 xxx 30 xxx Apr 121 2472119 04 iv  4 04/30/2056 die xxx mensis iv annoque mmlvi 56 lvi 2056}
test clock-2.2289 {conversion of 2056-05-01} {
    clock format 2724410096 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {May May 05/01/2056 12:34:56 die i mensis v annoque mmlvi xii h xxxiv m lvi s 20 mm 01 i  1 i May 122 2472120 05 v  5 05/01/2056 die i mensis v annoque mmlvi 56 lvi 2056}
test clock-2.2290 {conversion of 2056-05-31} {
    clock format 2727002096 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {May May 05/31/2056 12:34:56 die xxxi mensis v annoque mmlvi xii h xxxiv m lvi s 20 mm 31 xxxi 31 xxxi May 152 2472150 05 v  5 05/31/2056 die xxxi mensis v annoque mmlvi 56 lvi 2056}
test clock-2.2291 {conversion of 2056-06-01} {
    clock format 2727088496 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Jun June 06/01/2056 12:34:56 die i mensis vi annoque mmlvi xii h xxxiv m lvi s 20 mm 01 i  1 i Jun 153 2472151 06 vi  6 06/01/2056 die i mensis vi annoque mmlvi 56 lvi 2056}
test clock-2.2292 {conversion of 2056-06-30} {
    clock format 2729594096 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Jun June 06/30/2056 12:34:56 die xxx mensis vi annoque mmlvi xii h xxxiv m lvi s 20 mm 30 xxx 30 xxx Jun 182 2472180 06 vi  6 06/30/2056 die xxx mensis vi annoque mmlvi 56 lvi 2056}
test clock-2.2293 {conversion of 2056-07-01} {
    clock format 2729680496 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Jul July 07/01/2056 12:34:56 die i mensis vii annoque mmlvi xii h xxxiv m lvi s 20 mm 01 i  1 i Jul 183 2472181 07 vii  7 07/01/2056 die i mensis vii annoque mmlvi 56 lvi 2056}
test clock-2.2294 {conversion of 2056-07-31} {
    clock format 2732272496 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Jul July 07/31/2056 12:34:56 die xxxi mensis vii annoque mmlvi xii h xxxiv m lvi s 20 mm 31 xxxi 31 xxxi Jul 213 2472211 07 vii  7 07/31/2056 die xxxi mensis vii annoque mmlvi 56 lvi 2056}
test clock-2.2295 {conversion of 2056-08-01} {
    clock format 2732358896 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Aug August 08/01/2056 12:34:56 die i mensis viii annoque mmlvi xii h xxxiv m lvi s 20 mm 01 i  1 i Aug 214 2472212 08 viii  8 08/01/2056 die i mensis viii annoque mmlvi 56 lvi 2056}
test clock-2.2296 {conversion of 2056-08-31} {
    clock format 2734950896 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Aug August 08/31/2056 12:34:56 die xxxi mensis viii annoque mmlvi xii h xxxiv m lvi s 20 mm 31 xxxi 31 xxxi Aug 244 2472242 08 viii  8 08/31/2056 die xxxi mensis viii annoque mmlvi 56 lvi 2056}
test clock-2.2297 {conversion of 2056-09-01} {
    clock format 2735037296 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Sep September 09/01/2056 12:34:56 die i mensis ix annoque mmlvi xii h xxxiv m lvi s 20 mm 01 i  1 i Sep 245 2472243 09 ix  9 09/01/2056 die i mensis ix annoque mmlvi 56 lvi 2056}
test clock-2.2298 {conversion of 2056-09-30} {
    clock format 2737542896 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Sep September 09/30/2056 12:34:56 die xxx mensis ix annoque mmlvi xii h xxxiv m lvi s 20 mm 30 xxx 30 xxx Sep 274 2472272 09 ix  9 09/30/2056 die xxx mensis ix annoque mmlvi 56 lvi 2056}
test clock-2.2299 {conversion of 2056-10-01} {
    clock format 2737629296 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Oct October 10/01/2056 12:34:56 die i mensis x annoque mmlvi xii h xxxiv m lvi s 20 mm 01 i  1 i Oct 275 2472273 10 x 10 10/01/2056 die i mensis x annoque mmlvi 56 lvi 2056}
test clock-2.2300 {conversion of 2056-10-31} {
    clock format 2740221296 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Oct October 10/31/2056 12:34:56 die xxxi mensis x annoque mmlvi xii h xxxiv m lvi s 20 mm 31 xxxi 31 xxxi Oct 305 2472303 10 x 10 10/31/2056 die xxxi mensis x annoque mmlvi 56 lvi 2056}
test clock-2.2301 {conversion of 2056-11-01} {
    clock format 2740307696 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Nov November 11/01/2056 12:34:56 die i mensis xi annoque mmlvi xii h xxxiv m lvi s 20 mm 01 i  1 i Nov 306 2472304 11 xi 11 11/01/2056 die i mensis xi annoque mmlvi 56 lvi 2056}
test clock-2.2302 {conversion of 2056-11-30} {
    clock format 2742813296 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Nov November 11/30/2056 12:34:56 die xxx mensis xi annoque mmlvi xii h xxxiv m lvi s 20 mm 30 xxx 30 xxx Nov 335 2472333 11 xi 11 11/30/2056 die xxx mensis xi annoque mmlvi 56 lvi 2056}
test clock-2.2303 {conversion of 2056-12-01} {
    clock format 2742899696 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Dec December 12/01/2056 12:34:56 die i mensis xii annoque mmlvi xii h xxxiv m lvi s 20 mm 01 i  1 i Dec 336 2472334 12 xii 12 12/01/2056 die i mensis xii annoque mmlvi 56 lvi 2056}
test clock-2.2304 {conversion of 2056-12-31} {
    clock format 2745491696 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Dec December 12/31/2056 12:34:56 die xxxi mensis xii annoque mmlvi xii h xxxiv m lvi s 20 mm 31 xxxi 31 xxxi Dec 366 2472364 12 xii 12 12/31/2056 die xxxi mensis xii annoque mmlvi 56 lvi 2056}
test clock-2.2305 {conversion of 2057-01-01} {
    clock format 2745578096 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Jan January 01/01/2057 12:34:56 die i mensis i annoque mmlvii xii h xxxiv m lvi s 20 mm 01 i  1 i Jan 001 2472365 01 i  1 01/01/2057 die i mensis i annoque mmlvii 57 lvii 2057}
test clock-2.2306 {conversion of 2057-01-31} {
    clock format 2748170096 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Jan January 01/31/2057 12:34:56 die xxxi mensis i annoque mmlvii xii h xxxiv m lvi s 20 mm 31 xxxi 31 xxxi Jan 031 2472395 01 i  1 01/31/2057 die xxxi mensis i annoque mmlvii 57 lvii 2057}
test clock-2.2307 {conversion of 2057-02-01} {
    clock format 2748256496 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Feb February 02/01/2057 12:34:56 die i mensis ii annoque mmlvii xii h xxxiv m lvi s 20 mm 01 i  1 i Feb 032 2472396 02 ii  2 02/01/2057 die i mensis ii annoque mmlvii 57 lvii 2057}
test clock-2.2308 {conversion of 2057-02-28} {
    clock format 2750589296 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Feb February 02/28/2057 12:34:56 die xxviii mensis ii annoque mmlvii xii h xxxiv m lvi s 20 mm 28 xxviii 28 xxviii Feb 059 2472423 02 ii  2 02/28/2057 die xxviii mensis ii annoque mmlvii 57 lvii 2057}
test clock-2.2309 {conversion of 2057-03-01} {
    clock format 2750675696 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Mar March 03/01/2057 12:34:56 die i mensis iii annoque mmlvii xii h xxxiv m lvi s 20 mm 01 i  1 i Mar 060 2472424 03 iii  3 03/01/2057 die i mensis iii annoque mmlvii 57 lvii 2057}
test clock-2.2310 {conversion of 2057-03-31} {
    clock format 2753267696 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Mar March 03/31/2057 12:34:56 die xxxi mensis iii annoque mmlvii xii h xxxiv m lvi s 20 mm 31 xxxi 31 xxxi Mar 090 2472454 03 iii  3 03/31/2057 die xxxi mensis iii annoque mmlvii 57 lvii 2057}
test clock-2.2311 {conversion of 2057-04-01} {
    clock format 2753354096 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Apr April 04/01/2057 12:34:56 die i mensis iv annoque mmlvii xii h xxxiv m lvi s 20 mm 01 i  1 i Apr 091 2472455 04 iv  4 04/01/2057 die i mensis iv annoque mmlvii 57 lvii 2057}
test clock-2.2312 {conversion of 2057-04-30} {
    clock format 2755859696 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Apr April 04/30/2057 12:34:56 die xxx mensis iv annoque mmlvii xii h xxxiv m lvi s 20 mm 30 xxx 30 xxx Apr 120 2472484 04 iv  4 04/30/2057 die xxx mensis iv annoque mmlvii 57 lvii 2057}
test clock-2.2313 {conversion of 2057-05-01} {
    clock format 2755946096 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {May May 05/01/2057 12:34:56 die i mensis v annoque mmlvii xii h xxxiv m lvi s 20 mm 01 i  1 i May 121 2472485 05 v  5 05/01/2057 die i mensis v annoque mmlvii 57 lvii 2057}
test clock-2.2314 {conversion of 2057-05-31} {
    clock format 2758538096 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {May May 05/31/2057 12:34:56 die xxxi mensis v annoque mmlvii xii h xxxiv m lvi s 20 mm 31 xxxi 31 xxxi May 151 2472515 05 v  5 05/31/2057 die xxxi mensis v annoque mmlvii 57 lvii 2057}
test clock-2.2315 {conversion of 2057-06-01} {
    clock format 2758624496 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Jun June 06/01/2057 12:34:56 die i mensis vi annoque mmlvii xii h xxxiv m lvi s 20 mm 01 i  1 i Jun 152 2472516 06 vi  6 06/01/2057 die i mensis vi annoque mmlvii 57 lvii 2057}
test clock-2.2316 {conversion of 2057-06-30} {
    clock format 2761130096 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Jun June 06/30/2057 12:34:56 die xxx mensis vi annoque mmlvii xii h xxxiv m lvi s 20 mm 30 xxx 30 xxx Jun 181 2472545 06 vi  6 06/30/2057 die xxx mensis vi annoque mmlvii 57 lvii 2057}
test clock-2.2317 {conversion of 2057-07-01} {
    clock format 2761216496 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Jul July 07/01/2057 12:34:56 die i mensis vii annoque mmlvii xii h xxxiv m lvi s 20 mm 01 i  1 i Jul 182 2472546 07 vii  7 07/01/2057 die i mensis vii annoque mmlvii 57 lvii 2057}
test clock-2.2318 {conversion of 2057-07-31} {
    clock format 2763808496 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Jul July 07/31/2057 12:34:56 die xxxi mensis vii annoque mmlvii xii h xxxiv m lvi s 20 mm 31 xxxi 31 xxxi Jul 212 2472576 07 vii  7 07/31/2057 die xxxi mensis vii annoque mmlvii 57 lvii 2057}
test clock-2.2319 {conversion of 2057-08-01} {
    clock format 2763894896 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Aug August 08/01/2057 12:34:56 die i mensis viii annoque mmlvii xii h xxxiv m lvi s 20 mm 01 i  1 i Aug 213 2472577 08 viii  8 08/01/2057 die i mensis viii annoque mmlvii 57 lvii 2057}
test clock-2.2320 {conversion of 2057-08-31} {
    clock format 2766486896 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Aug August 08/31/2057 12:34:56 die xxxi mensis viii annoque mmlvii xii h xxxiv m lvi s 20 mm 31 xxxi 31 xxxi Aug 243 2472607 08 viii  8 08/31/2057 die xxxi mensis viii annoque mmlvii 57 lvii 2057}
test clock-2.2321 {conversion of 2057-09-01} {
    clock format 2766573296 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Sep September 09/01/2057 12:34:56 die i mensis ix annoque mmlvii xii h xxxiv m lvi s 20 mm 01 i  1 i Sep 244 2472608 09 ix  9 09/01/2057 die i mensis ix annoque mmlvii 57 lvii 2057}
test clock-2.2322 {conversion of 2057-09-30} {
    clock format 2769078896 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Sep September 09/30/2057 12:34:56 die xxx mensis ix annoque mmlvii xii h xxxiv m lvi s 20 mm 30 xxx 30 xxx Sep 273 2472637 09 ix  9 09/30/2057 die xxx mensis ix annoque mmlvii 57 lvii 2057}
test clock-2.2323 {conversion of 2057-10-01} {
    clock format 2769165296 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Oct October 10/01/2057 12:34:56 die i mensis x annoque mmlvii xii h xxxiv m lvi s 20 mm 01 i  1 i Oct 274 2472638 10 x 10 10/01/2057 die i mensis x annoque mmlvii 57 lvii 2057}
test clock-2.2324 {conversion of 2057-10-31} {
    clock format 2771757296 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Oct October 10/31/2057 12:34:56 die xxxi mensis x annoque mmlvii xii h xxxiv m lvi s 20 mm 31 xxxi 31 xxxi Oct 304 2472668 10 x 10 10/31/2057 die xxxi mensis x annoque mmlvii 57 lvii 2057}
test clock-2.2325 {conversion of 2057-11-01} {
    clock format 2771843696 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Nov November 11/01/2057 12:34:56 die i mensis xi annoque mmlvii xii h xxxiv m lvi s 20 mm 01 i  1 i Nov 305 2472669 11 xi 11 11/01/2057 die i mensis xi annoque mmlvii 57 lvii 2057}
test clock-2.2326 {conversion of 2057-11-30} {
    clock format 2774349296 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Nov November 11/30/2057 12:34:56 die xxx mensis xi annoque mmlvii xii h xxxiv m lvi s 20 mm 30 xxx 30 xxx Nov 334 2472698 11 xi 11 11/30/2057 die xxx mensis xi annoque mmlvii 57 lvii 2057}
test clock-2.2327 {conversion of 2057-12-01} {
    clock format 2774435696 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Dec December 12/01/2057 12:34:56 die i mensis xii annoque mmlvii xii h xxxiv m lvi s 20 mm 01 i  1 i Dec 335 2472699 12 xii 12 12/01/2057 die i mensis xii annoque mmlvii 57 lvii 2057}
test clock-2.2328 {conversion of 2057-12-31} {
    clock format 2777027696 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Dec December 12/31/2057 12:34:56 die xxxi mensis xii annoque mmlvii xii h xxxiv m lvi s 20 mm 31 xxxi 31 xxxi Dec 365 2472729 12 xii 12 12/31/2057 die xxxi mensis xii annoque mmlvii 57 lvii 2057}
test clock-2.2329 {conversion of 2060-01-01} {
    clock format 2840186096 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Jan January 01/01/2060 12:34:56 die i mensis i annoque mmlx xii h xxxiv m lvi s 20 mm 01 i  1 i Jan 001 2473460 01 i  1 01/01/2060 die i mensis i annoque mmlx 60 lx 2060}
test clock-2.2330 {conversion of 2060-01-31} {
    clock format 2842778096 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Jan January 01/31/2060 12:34:56 die xxxi mensis i annoque mmlx xii h xxxiv m lvi s 20 mm 31 xxxi 31 xxxi Jan 031 2473490 01 i  1 01/31/2060 die xxxi mensis i annoque mmlx 60 lx 2060}
test clock-2.2331 {conversion of 2060-02-01} {
    clock format 2842864496 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Feb February 02/01/2060 12:34:56 die i mensis ii annoque mmlx xii h xxxiv m lvi s 20 mm 01 i  1 i Feb 032 2473491 02 ii  2 02/01/2060 die i mensis ii annoque mmlx 60 lx 2060}
test clock-2.2332 {conversion of 2060-02-29} {
    clock format 2845283696 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Feb February 02/29/2060 12:34:56 die xxix mensis ii annoque mmlx xii h xxxiv m lvi s 20 mm 29 xxix 29 xxix Feb 060 2473519 02 ii  2 02/29/2060 die xxix mensis ii annoque mmlx 60 lx 2060}
test clock-2.2333 {conversion of 2060-03-01} {
    clock format 2845370096 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Mar March 03/01/2060 12:34:56 die i mensis iii annoque mmlx xii h xxxiv m lvi s 20 mm 01 i  1 i Mar 061 2473520 03 iii  3 03/01/2060 die i mensis iii annoque mmlx 60 lx 2060}
test clock-2.2334 {conversion of 2060-03-31} {
    clock format 2847962096 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Mar March 03/31/2060 12:34:56 die xxxi mensis iii annoque mmlx xii h xxxiv m lvi s 20 mm 31 xxxi 31 xxxi Mar 091 2473550 03 iii  3 03/31/2060 die xxxi mensis iii annoque mmlx 60 lx 2060}
test clock-2.2335 {conversion of 2060-04-01} {
    clock format 2848048496 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Apr April 04/01/2060 12:34:56 die i mensis iv annoque mmlx xii h xxxiv m lvi s 20 mm 01 i  1 i Apr 092 2473551 04 iv  4 04/01/2060 die i mensis iv annoque mmlx 60 lx 2060}
test clock-2.2336 {conversion of 2060-04-30} {
    clock format 2850554096 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Apr April 04/30/2060 12:34:56 die xxx mensis iv annoque mmlx xii h xxxiv m lvi s 20 mm 30 xxx 30 xxx Apr 121 2473580 04 iv  4 04/30/2060 die xxx mensis iv annoque mmlx 60 lx 2060}
test clock-2.2337 {conversion of 2060-05-01} {
    clock format 2850640496 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {May May 05/01/2060 12:34:56 die i mensis v annoque mmlx xii h xxxiv m lvi s 20 mm 01 i  1 i May 122 2473581 05 v  5 05/01/2060 die i mensis v annoque mmlx 60 lx 2060}
test clock-2.2338 {conversion of 2060-05-31} {
    clock format 2853232496 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {May May 05/31/2060 12:34:56 die xxxi mensis v annoque mmlx xii h xxxiv m lvi s 20 mm 31 xxxi 31 xxxi May 152 2473611 05 v  5 05/31/2060 die xxxi mensis v annoque mmlx 60 lx 2060}
test clock-2.2339 {conversion of 2060-06-01} {
    clock format 2853318896 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Jun June 06/01/2060 12:34:56 die i mensis vi annoque mmlx xii h xxxiv m lvi s 20 mm 01 i  1 i Jun 153 2473612 06 vi  6 06/01/2060 die i mensis vi annoque mmlx 60 lx 2060}
test clock-2.2340 {conversion of 2060-06-30} {
    clock format 2855824496 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Jun June 06/30/2060 12:34:56 die xxx mensis vi annoque mmlx xii h xxxiv m lvi s 20 mm 30 xxx 30 xxx Jun 182 2473641 06 vi  6 06/30/2060 die xxx mensis vi annoque mmlx 60 lx 2060}
test clock-2.2341 {conversion of 2060-07-01} {
    clock format 2855910896 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Jul July 07/01/2060 12:34:56 die i mensis vii annoque mmlx xii h xxxiv m lvi s 20 mm 01 i  1 i Jul 183 2473642 07 vii  7 07/01/2060 die i mensis vii annoque mmlx 60 lx 2060}
test clock-2.2342 {conversion of 2060-07-31} {
    clock format 2858502896 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Jul July 07/31/2060 12:34:56 die xxxi mensis vii annoque mmlx xii h xxxiv m lvi s 20 mm 31 xxxi 31 xxxi Jul 213 2473672 07 vii  7 07/31/2060 die xxxi mensis vii annoque mmlx 60 lx 2060}
test clock-2.2343 {conversion of 2060-08-01} {
    clock format 2858589296 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Aug August 08/01/2060 12:34:56 die i mensis viii annoque mmlx xii h xxxiv m lvi s 20 mm 01 i  1 i Aug 214 2473673 08 viii  8 08/01/2060 die i mensis viii annoque mmlx 60 lx 2060}
test clock-2.2344 {conversion of 2060-08-31} {
    clock format 2861181296 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Aug August 08/31/2060 12:34:56 die xxxi mensis viii annoque mmlx xii h xxxiv m lvi s 20 mm 31 xxxi 31 xxxi Aug 244 2473703 08 viii  8 08/31/2060 die xxxi mensis viii annoque mmlx 60 lx 2060}
test clock-2.2345 {conversion of 2060-09-01} {
    clock format 2861267696 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Sep September 09/01/2060 12:34:56 die i mensis ix annoque mmlx xii h xxxiv m lvi s 20 mm 01 i  1 i Sep 245 2473704 09 ix  9 09/01/2060 die i mensis ix annoque mmlx 60 lx 2060}
test clock-2.2346 {conversion of 2060-09-30} {
    clock format 2863773296 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Sep September 09/30/2060 12:34:56 die xxx mensis ix annoque mmlx xii h xxxiv m lvi s 20 mm 30 xxx 30 xxx Sep 274 2473733 09 ix  9 09/30/2060 die xxx mensis ix annoque mmlx 60 lx 2060}
test clock-2.2347 {conversion of 2060-10-01} {
    clock format 2863859696 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Oct October 10/01/2060 12:34:56 die i mensis x annoque mmlx xii h xxxiv m lvi s 20 mm 01 i  1 i Oct 275 2473734 10 x 10 10/01/2060 die i mensis x annoque mmlx 60 lx 2060}
test clock-2.2348 {conversion of 2060-10-31} {
    clock format 2866451696 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Oct October 10/31/2060 12:34:56 die xxxi mensis x annoque mmlx xii h xxxiv m lvi s 20 mm 31 xxxi 31 xxxi Oct 305 2473764 10 x 10 10/31/2060 die xxxi mensis x annoque mmlx 60 lx 2060}
test clock-2.2349 {conversion of 2060-11-01} {
    clock format 2866538096 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Nov November 11/01/2060 12:34:56 die i mensis xi annoque mmlx xii h xxxiv m lvi s 20 mm 01 i  1 i Nov 306 2473765 11 xi 11 11/01/2060 die i mensis xi annoque mmlx 60 lx 2060}
test clock-2.2350 {conversion of 2060-11-30} {
    clock format 2869043696 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Nov November 11/30/2060 12:34:56 die xxx mensis xi annoque mmlx xii h xxxiv m lvi s 20 mm 30 xxx 30 xxx Nov 335 2473794 11 xi 11 11/30/2060 die xxx mensis xi annoque mmlx 60 lx 2060}
test clock-2.2351 {conversion of 2060-12-01} {
    clock format 2869130096 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Dec December 12/01/2060 12:34:56 die i mensis xii annoque mmlx xii h xxxiv m lvi s 20 mm 01 i  1 i Dec 336 2473795 12 xii 12 12/01/2060 die i mensis xii annoque mmlx 60 lx 2060}
test clock-2.2352 {conversion of 2060-12-31} {
    clock format 2871722096 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Dec December 12/31/2060 12:34:56 die xxxi mensis xii annoque mmlx xii h xxxiv m lvi s 20 mm 31 xxxi 31 xxxi Dec 366 2473825 12 xii 12 12/31/2060 die xxxi mensis xii annoque mmlx 60 lx 2060}
test clock-2.2353 {conversion of 2061-01-01} {
    clock format 2871808496 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Jan January 01/01/2061 12:34:56 die i mensis i annoque mmlxi xii h xxxiv m lvi s 20 mm 01 i  1 i Jan 001 2473826 01 i  1 01/01/2061 die i mensis i annoque mmlxi 61 lxi 2061}
test clock-2.2354 {conversion of 2061-01-31} {
    clock format 2874400496 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Jan January 01/31/2061 12:34:56 die xxxi mensis i annoque mmlxi xii h xxxiv m lvi s 20 mm 31 xxxi 31 xxxi Jan 031 2473856 01 i  1 01/31/2061 die xxxi mensis i annoque mmlxi 61 lxi 2061}
test clock-2.2355 {conversion of 2061-02-01} {
    clock format 2874486896 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Feb February 02/01/2061 12:34:56 die i mensis ii annoque mmlxi xii h xxxiv m lvi s 20 mm 01 i  1 i Feb 032 2473857 02 ii  2 02/01/2061 die i mensis ii annoque mmlxi 61 lxi 2061}
test clock-2.2356 {conversion of 2061-02-28} {
    clock format 2876819696 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Feb February 02/28/2061 12:34:56 die xxviii mensis ii annoque mmlxi xii h xxxiv m lvi s 20 mm 28 xxviii 28 xxviii Feb 059 2473884 02 ii  2 02/28/2061 die xxviii mensis ii annoque mmlxi 61 lxi 2061}
test clock-2.2357 {conversion of 2061-03-01} {
    clock format 2876906096 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Mar March 03/01/2061 12:34:56 die i mensis iii annoque mmlxi xii h xxxiv m lvi s 20 mm 01 i  1 i Mar 060 2473885 03 iii  3 03/01/2061 die i mensis iii annoque mmlxi 61 lxi 2061}
test clock-2.2358 {conversion of 2061-03-31} {
    clock format 2879498096 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Mar March 03/31/2061 12:34:56 die xxxi mensis iii annoque mmlxi xii h xxxiv m lvi s 20 mm 31 xxxi 31 xxxi Mar 090 2473915 03 iii  3 03/31/2061 die xxxi mensis iii annoque mmlxi 61 lxi 2061}
test clock-2.2359 {conversion of 2061-04-01} {
    clock format 2879584496 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Apr April 04/01/2061 12:34:56 die i mensis iv annoque mmlxi xii h xxxiv m lvi s 20 mm 01 i  1 i Apr 091 2473916 04 iv  4 04/01/2061 die i mensis iv annoque mmlxi 61 lxi 2061}
test clock-2.2360 {conversion of 2061-04-30} {
    clock format 2882090096 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Apr April 04/30/2061 12:34:56 die xxx mensis iv annoque mmlxi xii h xxxiv m lvi s 20 mm 30 xxx 30 xxx Apr 120 2473945 04 iv  4 04/30/2061 die xxx mensis iv annoque mmlxi 61 lxi 2061}
test clock-2.2361 {conversion of 2061-05-01} {
    clock format 2882176496 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {May May 05/01/2061 12:34:56 die i mensis v annoque mmlxi xii h xxxiv m lvi s 20 mm 01 i  1 i May 121 2473946 05 v  5 05/01/2061 die i mensis v annoque mmlxi 61 lxi 2061}
test clock-2.2362 {conversion of 2061-05-31} {
    clock format 2884768496 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {May May 05/31/2061 12:34:56 die xxxi mensis v annoque mmlxi xii h xxxiv m lvi s 20 mm 31 xxxi 31 xxxi May 151 2473976 05 v  5 05/31/2061 die xxxi mensis v annoque mmlxi 61 lxi 2061}
test clock-2.2363 {conversion of 2061-06-01} {
    clock format 2884854896 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Jun June 06/01/2061 12:34:56 die i mensis vi annoque mmlxi xii h xxxiv m lvi s 20 mm 01 i  1 i Jun 152 2473977 06 vi  6 06/01/2061 die i mensis vi annoque mmlxi 61 lxi 2061}
test clock-2.2364 {conversion of 2061-06-30} {
    clock format 2887360496 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Jun June 06/30/2061 12:34:56 die xxx mensis vi annoque mmlxi xii h xxxiv m lvi s 20 mm 30 xxx 30 xxx Jun 181 2474006 06 vi  6 06/30/2061 die xxx mensis vi annoque mmlxi 61 lxi 2061}
test clock-2.2365 {conversion of 2061-07-01} {
    clock format 2887446896 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Jul July 07/01/2061 12:34:56 die i mensis vii annoque mmlxi xii h xxxiv m lvi s 20 mm 01 i  1 i Jul 182 2474007 07 vii  7 07/01/2061 die i mensis vii annoque mmlxi 61 lxi 2061}
test clock-2.2366 {conversion of 2061-07-31} {
    clock format 2890038896 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Jul July 07/31/2061 12:34:56 die xxxi mensis vii annoque mmlxi xii h xxxiv m lvi s 20 mm 31 xxxi 31 xxxi Jul 212 2474037 07 vii  7 07/31/2061 die xxxi mensis vii annoque mmlxi 61 lxi 2061}
test clock-2.2367 {conversion of 2061-08-01} {
    clock format 2890125296 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Aug August 08/01/2061 12:34:56 die i mensis viii annoque mmlxi xii h xxxiv m lvi s 20 mm 01 i  1 i Aug 213 2474038 08 viii  8 08/01/2061 die i mensis viii annoque mmlxi 61 lxi 2061}
test clock-2.2368 {conversion of 2061-08-31} {
    clock format 2892717296 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Aug August 08/31/2061 12:34:56 die xxxi mensis viii annoque mmlxi xii h xxxiv m lvi s 20 mm 31 xxxi 31 xxxi Aug 243 2474068 08 viii  8 08/31/2061 die xxxi mensis viii annoque mmlxi 61 lxi 2061}
test clock-2.2369 {conversion of 2061-09-01} {
    clock format 2892803696 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Sep September 09/01/2061 12:34:56 die i mensis ix annoque mmlxi xii h xxxiv m lvi s 20 mm 01 i  1 i Sep 244 2474069 09 ix  9 09/01/2061 die i mensis ix annoque mmlxi 61 lxi 2061}
test clock-2.2370 {conversion of 2061-09-30} {
    clock format 2895309296 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Sep September 09/30/2061 12:34:56 die xxx mensis ix annoque mmlxi xii h xxxiv m lvi s 20 mm 30 xxx 30 xxx Sep 273 2474098 09 ix  9 09/30/2061 die xxx mensis ix annoque mmlxi 61 lxi 2061}
test clock-2.2371 {conversion of 2061-10-01} {
    clock format 2895395696 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Oct October 10/01/2061 12:34:56 die i mensis x annoque mmlxi xii h xxxiv m lvi s 20 mm 01 i  1 i Oct 274 2474099 10 x 10 10/01/2061 die i mensis x annoque mmlxi 61 lxi 2061}
test clock-2.2372 {conversion of 2061-10-31} {
    clock format 2897987696 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Oct October 10/31/2061 12:34:56 die xxxi mensis x annoque mmlxi xii h xxxiv m lvi s 20 mm 31 xxxi 31 xxxi Oct 304 2474129 10 x 10 10/31/2061 die xxxi mensis x annoque mmlxi 61 lxi 2061}
test clock-2.2373 {conversion of 2061-11-01} {
    clock format 2898074096 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Nov November 11/01/2061 12:34:56 die i mensis xi annoque mmlxi xii h xxxiv m lvi s 20 mm 01 i  1 i Nov 305 2474130 11 xi 11 11/01/2061 die i mensis xi annoque mmlxi 61 lxi 2061}
test clock-2.2374 {conversion of 2061-11-30} {
    clock format 2900579696 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Nov November 11/30/2061 12:34:56 die xxx mensis xi annoque mmlxi xii h xxxiv m lvi s 20 mm 30 xxx 30 xxx Nov 334 2474159 11 xi 11 11/30/2061 die xxx mensis xi annoque mmlxi 61 lxi 2061}
test clock-2.2375 {conversion of 2061-12-01} {
    clock format 2900666096 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Dec December 12/01/2061 12:34:56 die i mensis xii annoque mmlxi xii h xxxiv m lvi s 20 mm 01 i  1 i Dec 335 2474160 12 xii 12 12/01/2061 die i mensis xii annoque mmlxi 61 lxi 2061}
test clock-2.2376 {conversion of 2061-12-31} {
    clock format 2903258096 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Dec December 12/31/2061 12:34:56 die xxxi mensis xii annoque mmlxi xii h xxxiv m lvi s 20 mm 31 xxxi 31 xxxi Dec 365 2474190 12 xii 12 12/31/2061 die xxxi mensis xii annoque mmlxi 61 lxi 2061}
test clock-2.2377 {conversion of 2064-01-01} {
    clock format 2966416496 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Jan January 01/01/2064 12:34:56 die i mensis i annoque mmlxiv xii h xxxiv m lvi s 20 mm 01 i  1 i Jan 001 2474921 01 i  1 01/01/2064 die i mensis i annoque mmlxiv 64 lxiv 2064}
test clock-2.2378 {conversion of 2064-01-31} {
    clock format 2969008496 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Jan January 01/31/2064 12:34:56 die xxxi mensis i annoque mmlxiv xii h xxxiv m lvi s 20 mm 31 xxxi 31 xxxi Jan 031 2474951 01 i  1 01/31/2064 die xxxi mensis i annoque mmlxiv 64 lxiv 2064}
test clock-2.2379 {conversion of 2064-02-01} {
    clock format 2969094896 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Feb February 02/01/2064 12:34:56 die i mensis ii annoque mmlxiv xii h xxxiv m lvi s 20 mm 01 i  1 i Feb 032 2474952 02 ii  2 02/01/2064 die i mensis ii annoque mmlxiv 64 lxiv 2064}
test clock-2.2380 {conversion of 2064-02-29} {
    clock format 2971514096 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Feb February 02/29/2064 12:34:56 die xxix mensis ii annoque mmlxiv xii h xxxiv m lvi s 20 mm 29 xxix 29 xxix Feb 060 2474980 02 ii  2 02/29/2064 die xxix mensis ii annoque mmlxiv 64 lxiv 2064}
test clock-2.2381 {conversion of 2064-03-01} {
    clock format 2971600496 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Mar March 03/01/2064 12:34:56 die i mensis iii annoque mmlxiv xii h xxxiv m lvi s 20 mm 01 i  1 i Mar 061 2474981 03 iii  3 03/01/2064 die i mensis iii annoque mmlxiv 64 lxiv 2064}
test clock-2.2382 {conversion of 2064-03-31} {
    clock format 2974192496 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Mar March 03/31/2064 12:34:56 die xxxi mensis iii annoque mmlxiv xii h xxxiv m lvi s 20 mm 31 xxxi 31 xxxi Mar 091 2475011 03 iii  3 03/31/2064 die xxxi mensis iii annoque mmlxiv 64 lxiv 2064}
test clock-2.2383 {conversion of 2064-04-01} {
    clock format 2974278896 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Apr April 04/01/2064 12:34:56 die i mensis iv annoque mmlxiv xii h xxxiv m lvi s 20 mm 01 i  1 i Apr 092 2475012 04 iv  4 04/01/2064 die i mensis iv annoque mmlxiv 64 lxiv 2064}
test clock-2.2384 {conversion of 2064-04-30} {
    clock format 2976784496 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Apr April 04/30/2064 12:34:56 die xxx mensis iv annoque mmlxiv xii h xxxiv m lvi s 20 mm 30 xxx 30 xxx Apr 121 2475041 04 iv  4 04/30/2064 die xxx mensis iv annoque mmlxiv 64 lxiv 2064}
test clock-2.2385 {conversion of 2064-05-01} {
    clock format 2976870896 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {May May 05/01/2064 12:34:56 die i mensis v annoque mmlxiv xii h xxxiv m lvi s 20 mm 01 i  1 i May 122 2475042 05 v  5 05/01/2064 die i mensis v annoque mmlxiv 64 lxiv 2064}
test clock-2.2386 {conversion of 2064-05-31} {
    clock format 2979462896 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {May May 05/31/2064 12:34:56 die xxxi mensis v annoque mmlxiv xii h xxxiv m lvi s 20 mm 31 xxxi 31 xxxi May 152 2475072 05 v  5 05/31/2064 die xxxi mensis v annoque mmlxiv 64 lxiv 2064}
test clock-2.2387 {conversion of 2064-06-01} {
    clock format 2979549296 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Jun June 06/01/2064 12:34:56 die i mensis vi annoque mmlxiv xii h xxxiv m lvi s 20 mm 01 i  1 i Jun 153 2475073 06 vi  6 06/01/2064 die i mensis vi annoque mmlxiv 64 lxiv 2064}
test clock-2.2388 {conversion of 2064-06-30} {
    clock format 2982054896 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Jun June 06/30/2064 12:34:56 die xxx mensis vi annoque mmlxiv xii h xxxiv m lvi s 20 mm 30 xxx 30 xxx Jun 182 2475102 06 vi  6 06/30/2064 die xxx mensis vi annoque mmlxiv 64 lxiv 2064}
test clock-2.2389 {conversion of 2064-07-01} {
    clock format 2982141296 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Jul July 07/01/2064 12:34:56 die i mensis vii annoque mmlxiv xii h xxxiv m lvi s 20 mm 01 i  1 i Jul 183 2475103 07 vii  7 07/01/2064 die i mensis vii annoque mmlxiv 64 lxiv 2064}
test clock-2.2390 {conversion of 2064-07-31} {
    clock format 2984733296 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Jul July 07/31/2064 12:34:56 die xxxi mensis vii annoque mmlxiv xii h xxxiv m lvi s 20 mm 31 xxxi 31 xxxi Jul 213 2475133 07 vii  7 07/31/2064 die xxxi mensis vii annoque mmlxiv 64 lxiv 2064}
test clock-2.2391 {conversion of 2064-08-01} {
    clock format 2984819696 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Aug August 08/01/2064 12:34:56 die i mensis viii annoque mmlxiv xii h xxxiv m lvi s 20 mm 01 i  1 i Aug 214 2475134 08 viii  8 08/01/2064 die i mensis viii annoque mmlxiv 64 lxiv 2064}
test clock-2.2392 {conversion of 2064-08-31} {
    clock format 2987411696 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Aug August 08/31/2064 12:34:56 die xxxi mensis viii annoque mmlxiv xii h xxxiv m lvi s 20 mm 31 xxxi 31 xxxi Aug 244 2475164 08 viii  8 08/31/2064 die xxxi mensis viii annoque mmlxiv 64 lxiv 2064}
test clock-2.2393 {conversion of 2064-09-01} {
    clock format 2987498096 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Sep September 09/01/2064 12:34:56 die i mensis ix annoque mmlxiv xii h xxxiv m lvi s 20 mm 01 i  1 i Sep 245 2475165 09 ix  9 09/01/2064 die i mensis ix annoque mmlxiv 64 lxiv 2064}
test clock-2.2394 {conversion of 2064-09-30} {
    clock format 2990003696 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Sep September 09/30/2064 12:34:56 die xxx mensis ix annoque mmlxiv xii h xxxiv m lvi s 20 mm 30 xxx 30 xxx Sep 274 2475194 09 ix  9 09/30/2064 die xxx mensis ix annoque mmlxiv 64 lxiv 2064}
test clock-2.2395 {conversion of 2064-10-01} {
    clock format 2990090096 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Oct October 10/01/2064 12:34:56 die i mensis x annoque mmlxiv xii h xxxiv m lvi s 20 mm 01 i  1 i Oct 275 2475195 10 x 10 10/01/2064 die i mensis x annoque mmlxiv 64 lxiv 2064}
test clock-2.2396 {conversion of 2064-10-31} {
    clock format 2992682096 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Oct October 10/31/2064 12:34:56 die xxxi mensis x annoque mmlxiv xii h xxxiv m lvi s 20 mm 31 xxxi 31 xxxi Oct 305 2475225 10 x 10 10/31/2064 die xxxi mensis x annoque mmlxiv 64 lxiv 2064}
test clock-2.2397 {conversion of 2064-11-01} {
    clock format 2992768496 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Nov November 11/01/2064 12:34:56 die i mensis xi annoque mmlxiv xii h xxxiv m lvi s 20 mm 01 i  1 i Nov 306 2475226 11 xi 11 11/01/2064 die i mensis xi annoque mmlxiv 64 lxiv 2064}
test clock-2.2398 {conversion of 2064-11-30} {
    clock format 2995274096 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Nov November 11/30/2064 12:34:56 die xxx mensis xi annoque mmlxiv xii h xxxiv m lvi s 20 mm 30 xxx 30 xxx Nov 335 2475255 11 xi 11 11/30/2064 die xxx mensis xi annoque mmlxiv 64 lxiv 2064}
test clock-2.2399 {conversion of 2064-12-01} {
    clock format 2995360496 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Dec December 12/01/2064 12:34:56 die i mensis xii annoque mmlxiv xii h xxxiv m lvi s 20 mm 01 i  1 i Dec 336 2475256 12 xii 12 12/01/2064 die i mensis xii annoque mmlxiv 64 lxiv 2064}
test clock-2.2400 {conversion of 2064-12-31} {
    clock format 2997952496 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Dec December 12/31/2064 12:34:56 die xxxi mensis xii annoque mmlxiv xii h xxxiv m lvi s 20 mm 31 xxxi 31 xxxi Dec 366 2475286 12 xii 12 12/31/2064 die xxxi mensis xii annoque mmlxiv 64 lxiv 2064}
test clock-2.2401 {conversion of 2065-01-01} {
    clock format 2998038896 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Jan January 01/01/2065 12:34:56 die i mensis i annoque mmlxv xii h xxxiv m lvi s 20 mm 01 i  1 i Jan 001 2475287 01 i  1 01/01/2065 die i mensis i annoque mmlxv 65 lxv 2065}
test clock-2.2402 {conversion of 2065-01-31} {
    clock format 3000630896 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Jan January 01/31/2065 12:34:56 die xxxi mensis i annoque mmlxv xii h xxxiv m lvi s 20 mm 31 xxxi 31 xxxi Jan 031 2475317 01 i  1 01/31/2065 die xxxi mensis i annoque mmlxv 65 lxv 2065}
test clock-2.2403 {conversion of 2065-02-01} {
    clock format 3000717296 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Feb February 02/01/2065 12:34:56 die i mensis ii annoque mmlxv xii h xxxiv m lvi s 20 mm 01 i  1 i Feb 032 2475318 02 ii  2 02/01/2065 die i mensis ii annoque mmlxv 65 lxv 2065}
test clock-2.2404 {conversion of 2065-02-28} {
    clock format 3003050096 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Feb February 02/28/2065 12:34:56 die xxviii mensis ii annoque mmlxv xii h xxxiv m lvi s 20 mm 28 xxviii 28 xxviii Feb 059 2475345 02 ii  2 02/28/2065 die xxviii mensis ii annoque mmlxv 65 lxv 2065}
test clock-2.2405 {conversion of 2065-03-01} {
    clock format 3003136496 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Mar March 03/01/2065 12:34:56 die i mensis iii annoque mmlxv xii h xxxiv m lvi s 20 mm 01 i  1 i Mar 060 2475346 03 iii  3 03/01/2065 die i mensis iii annoque mmlxv 65 lxv 2065}
test clock-2.2406 {conversion of 2065-03-31} {
    clock format 3005728496 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Mar March 03/31/2065 12:34:56 die xxxi mensis iii annoque mmlxv xii h xxxiv m lvi s 20 mm 31 xxxi 31 xxxi Mar 090 2475376 03 iii  3 03/31/2065 die xxxi mensis iii annoque mmlxv 65 lxv 2065}
test clock-2.2407 {conversion of 2065-04-01} {
    clock format 3005814896 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Apr April 04/01/2065 12:34:56 die i mensis iv annoque mmlxv xii h xxxiv m lvi s 20 mm 01 i  1 i Apr 091 2475377 04 iv  4 04/01/2065 die i mensis iv annoque mmlxv 65 lxv 2065}
test clock-2.2408 {conversion of 2065-04-30} {
    clock format 3008320496 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Apr April 04/30/2065 12:34:56 die xxx mensis iv annoque mmlxv xii h xxxiv m lvi s 20 mm 30 xxx 30 xxx Apr 120 2475406 04 iv  4 04/30/2065 die xxx mensis iv annoque mmlxv 65 lxv 2065}
test clock-2.2409 {conversion of 2065-05-01} {
    clock format 3008406896 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {May May 05/01/2065 12:34:56 die i mensis v annoque mmlxv xii h xxxiv m lvi s 20 mm 01 i  1 i May 121 2475407 05 v  5 05/01/2065 die i mensis v annoque mmlxv 65 lxv 2065}
test clock-2.2410 {conversion of 2065-05-31} {
    clock format 3010998896 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {May May 05/31/2065 12:34:56 die xxxi mensis v annoque mmlxv xii h xxxiv m lvi s 20 mm 31 xxxi 31 xxxi May 151 2475437 05 v  5 05/31/2065 die xxxi mensis v annoque mmlxv 65 lxv 2065}
test clock-2.2411 {conversion of 2065-06-01} {
    clock format 3011085296 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Jun June 06/01/2065 12:34:56 die i mensis vi annoque mmlxv xii h xxxiv m lvi s 20 mm 01 i  1 i Jun 152 2475438 06 vi  6 06/01/2065 die i mensis vi annoque mmlxv 65 lxv 2065}
test clock-2.2412 {conversion of 2065-06-30} {
    clock format 3013590896 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Jun June 06/30/2065 12:34:56 die xxx mensis vi annoque mmlxv xii h xxxiv m lvi s 20 mm 30 xxx 30 xxx Jun 181 2475467 06 vi  6 06/30/2065 die xxx mensis vi annoque mmlxv 65 lxv 2065}
test clock-2.2413 {conversion of 2065-07-01} {
    clock format 3013677296 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Jul July 07/01/2065 12:34:56 die i mensis vii annoque mmlxv xii h xxxiv m lvi s 20 mm 01 i  1 i Jul 182 2475468 07 vii  7 07/01/2065 die i mensis vii annoque mmlxv 65 lxv 2065}
test clock-2.2414 {conversion of 2065-07-31} {
    clock format 3016269296 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Jul July 07/31/2065 12:34:56 die xxxi mensis vii annoque mmlxv xii h xxxiv m lvi s 20 mm 31 xxxi 31 xxxi Jul 212 2475498 07 vii  7 07/31/2065 die xxxi mensis vii annoque mmlxv 65 lxv 2065}
test clock-2.2415 {conversion of 2065-08-01} {
    clock format 3016355696 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Aug August 08/01/2065 12:34:56 die i mensis viii annoque mmlxv xii h xxxiv m lvi s 20 mm 01 i  1 i Aug 213 2475499 08 viii  8 08/01/2065 die i mensis viii annoque mmlxv 65 lxv 2065}
test clock-2.2416 {conversion of 2065-08-31} {
    clock format 3018947696 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Aug August 08/31/2065 12:34:56 die xxxi mensis viii annoque mmlxv xii h xxxiv m lvi s 20 mm 31 xxxi 31 xxxi Aug 243 2475529 08 viii  8 08/31/2065 die xxxi mensis viii annoque mmlxv 65 lxv 2065}
test clock-2.2417 {conversion of 2065-09-01} {
    clock format 3019034096 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Sep September 09/01/2065 12:34:56 die i mensis ix annoque mmlxv xii h xxxiv m lvi s 20 mm 01 i  1 i Sep 244 2475530 09 ix  9 09/01/2065 die i mensis ix annoque mmlxv 65 lxv 2065}
test clock-2.2418 {conversion of 2065-09-30} {
    clock format 3021539696 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Sep September 09/30/2065 12:34:56 die xxx mensis ix annoque mmlxv xii h xxxiv m lvi s 20 mm 30 xxx 30 xxx Sep 273 2475559 09 ix  9 09/30/2065 die xxx mensis ix annoque mmlxv 65 lxv 2065}
test clock-2.2419 {conversion of 2065-10-01} {
    clock format 3021626096 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Oct October 10/01/2065 12:34:56 die i mensis x annoque mmlxv xii h xxxiv m lvi s 20 mm 01 i  1 i Oct 274 2475560 10 x 10 10/01/2065 die i mensis x annoque mmlxv 65 lxv 2065}
test clock-2.2420 {conversion of 2065-10-31} {
    clock format 3024218096 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Oct October 10/31/2065 12:34:56 die xxxi mensis x annoque mmlxv xii h xxxiv m lvi s 20 mm 31 xxxi 31 xxxi Oct 304 2475590 10 x 10 10/31/2065 die xxxi mensis x annoque mmlxv 65 lxv 2065}
test clock-2.2421 {conversion of 2065-11-01} {
    clock format 3024304496 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Nov November 11/01/2065 12:34:56 die i mensis xi annoque mmlxv xii h xxxiv m lvi s 20 mm 01 i  1 i Nov 305 2475591 11 xi 11 11/01/2065 die i mensis xi annoque mmlxv 65 lxv 2065}
test clock-2.2422 {conversion of 2065-11-30} {
    clock format 3026810096 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Nov November 11/30/2065 12:34:56 die xxx mensis xi annoque mmlxv xii h xxxiv m lvi s 20 mm 30 xxx 30 xxx Nov 334 2475620 11 xi 11 11/30/2065 die xxx mensis xi annoque mmlxv 65 lxv 2065}
test clock-2.2423 {conversion of 2065-12-01} {
    clock format 3026896496 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Dec December 12/01/2065 12:34:56 die i mensis xii annoque mmlxv xii h xxxiv m lvi s 20 mm 01 i  1 i Dec 335 2475621 12 xii 12 12/01/2065 die i mensis xii annoque mmlxv 65 lxv 2065}
test clock-2.2424 {conversion of 2065-12-31} {
    clock format 3029488496 \
	-format {%b %B %c %Ec %C %EC %d %Od %e %Oe %h %j %J %m %Om %N %x %Ex %y %Oy %Y} \
	-gmt true -locale en_US_roman
} {Dec December 12/31/2065 12:34:56 die xxxi mensis xii annoque mmlxv xii h xxxiv m lvi s 20 mm 31 xxxi 31 xxxi Dec 365 2475651 12 xii 12 12/31/2065 die xxxi mensis xii annoque mmlxv 65 lxv 2065}
# END testcases2

# BEGIN testcases3
test clock-3.1 {ISO week-based calendar 1871-W52-1} {
    clock format -3093206400 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1871-W52-1
} {Mon Monday 71 1871 1 52 52 1 52}
test clock-3.2 {ISO week-based calendar 1871-W52-6} {
    clock format -3092774400 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1871-W52-6
} {Sat Saturday 71 1871 6 52 52 6 52}
test clock-3.3 {ISO week-based calendar 1871-W52-7} {
    clock format -3092688000 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1871-W52-7
} {Sun Sunday 71 1871 7 53 52 0 52}
test clock-3.4 {ISO week-based calendar 1872-W01-1} {
    clock format -3092601600 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1872-W01-1
} {Mon Monday 72 1872 1 00 01 1 01}
test clock-3.5 {ISO week-based calendar 1872-W01-6} {
    clock format -3092169600 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1872-W01-6
} {Sat Saturday 72 1872 6 00 01 6 01}
test clock-3.6 {ISO week-based calendar 1872-W01-7} {
    clock format -3092083200 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1872-W01-7
} {Sun Sunday 72 1872 7 01 01 0 01}
test clock-3.7 {ISO week-based calendar 1872-W02-1} {
    clock format -3091996800 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1872-W02-1
} {Mon Monday 72 1872 1 01 02 1 02}
test clock-3.8 {ISO week-based calendar 1872-W52-1} {
    clock format -3061756800 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1872-W52-1
} {Mon Monday 72 1872 1 51 52 1 52}
test clock-3.9 {ISO week-based calendar 1872-W52-6} {
    clock format -3061324800 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1872-W52-6
} {Sat Saturday 72 1872 6 51 52 6 52}
test clock-3.10 {ISO week-based calendar 1872-W52-7} {
    clock format -3061238400 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1872-W52-7
} {Sun Sunday 72 1872 7 52 52 0 52}
test clock-3.11 {ISO week-based calendar 1873-W01-1} {
    clock format -3061152000 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1873-W01-1
} {Mon Monday 73 1873 1 52 01 1 53}
test clock-3.12 {ISO week-based calendar 1873-W01-3} {
    clock format -3060979200 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1873-W01-3
} {Wed Wednesday 73 1873 3 00 01 3 00}
test clock-3.13 {ISO week-based calendar 1873-W01-6} {
    clock format -3060720000 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1873-W01-6
} {Sat Saturday 73 1873 6 00 01 6 00}
test clock-3.14 {ISO week-based calendar 1873-W01-7} {
    clock format -3060633600 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1873-W01-7
} {Sun Sunday 73 1873 7 01 01 0 00}
test clock-3.15 {ISO week-based calendar 1873-W02-1} {
    clock format -3060547200 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1873-W02-1
} {Mon Monday 73 1873 1 01 02 1 01}
test clock-3.16 {ISO week-based calendar 1875-W52-1} {
    clock format -2966803200 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1875-W52-1
} {Mon Monday 75 1875 1 52 52 1 52}
test clock-3.17 {ISO week-based calendar 1875-W52-6} {
    clock format -2966371200 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1875-W52-6
} {Sat Saturday 75 1875 6 00 52 6 00}
test clock-3.18 {ISO week-based calendar 1875-W52-7} {
    clock format -2966284800 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1875-W52-7
} {Sun Sunday 75 1875 7 01 52 0 00}
test clock-3.19 {ISO week-based calendar 1876-W01-1} {
    clock format -2966198400 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1876-W01-1
} {Mon Monday 76 1876 1 01 01 1 01}
test clock-3.20 {ISO week-based calendar 1876-W01-6} {
    clock format -2965766400 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1876-W01-6
} {Sat Saturday 76 1876 6 01 01 6 01}
test clock-3.21 {ISO week-based calendar 1876-W01-7} {
    clock format -2965680000 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1876-W01-7
} {Sun Sunday 76 1876 7 02 01 0 01}
test clock-3.22 {ISO week-based calendar 1876-W02-1} {
    clock format -2965593600 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1876-W02-1
} {Mon Monday 76 1876 1 02 02 1 02}
test clock-3.23 {ISO week-based calendar 1876-W52-1} {
    clock format -2935353600 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1876-W52-1
} {Mon Monday 76 1876 1 52 52 1 52}
test clock-3.24 {ISO week-based calendar 1876-W52-6} {
    clock format -2934921600 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1876-W52-6
} {Sat Saturday 76 1876 6 52 52 6 52}
test clock-3.25 {ISO week-based calendar 1876-W52-7} {
    clock format -2934835200 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1876-W52-7
} {Sun Sunday 76 1876 7 53 52 0 52}
test clock-3.26 {ISO week-based calendar 1877-W01-1} {
    clock format -2934748800 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1877-W01-1
} {Mon Monday 77 1877 1 00 01 1 01}
test clock-3.27 {ISO week-based calendar 1877-W01-6} {
    clock format -2934316800 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1877-W01-6
} {Sat Saturday 77 1877 6 00 01 6 01}
test clock-3.28 {ISO week-based calendar 1877-W01-7} {
    clock format -2934230400 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1877-W01-7
} {Sun Sunday 77 1877 7 01 01 0 01}
test clock-3.29 {ISO week-based calendar 1877-W02-1} {
    clock format -2934144000 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1877-W02-1
} {Mon Monday 77 1877 1 01 02 1 02}
test clock-3.30 {ISO week-based calendar 1879-W52-1} {
    clock format -2841004800 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1879-W52-1
} {Mon Monday 79 1879 1 51 52 1 51}
test clock-3.31 {ISO week-based calendar 1879-W52-6} {
    clock format -2840572800 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1879-W52-6
} {Sat Saturday 79 1879 6 51 52 6 51}
test clock-3.32 {ISO week-based calendar 1879-W52-7} {
    clock format -2840486400 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1879-W52-7
} {Sun Sunday 79 1879 7 52 52 0 51}
test clock-3.33 {ISO week-based calendar 1880-W01-1} {
    clock format -2840400000 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1880-W01-1
} {Mon Monday 80 1880 1 52 01 1 52}
test clock-3.34 {ISO week-based calendar 1880-W01-4} {
    clock format -2840140800 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1880-W01-4
} {Thu Thursday 80 1880 4 00 01 4 00}
test clock-3.35 {ISO week-based calendar 1880-W01-6} {
    clock format -2839968000 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1880-W01-6
} {Sat Saturday 80 1880 6 00 01 6 00}
test clock-3.36 {ISO week-based calendar 1880-W01-7} {
    clock format -2839881600 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1880-W01-7
} {Sun Sunday 80 1880 7 01 01 0 00}
test clock-3.37 {ISO week-based calendar 1880-W02-1} {
    clock format -2839795200 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1880-W02-1
} {Mon Monday 80 1880 1 01 02 1 01}
test clock-3.38 {ISO week-based calendar 1880-W53-1} {
    clock format -2808950400 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1880-W53-1
} {Mon Monday 80 1880 1 52 53 1 52}
test clock-3.39 {ISO week-based calendar 1880-W53-6} {
    clock format -2808518400 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1880-W53-6
} {Sat Saturday 80 1880 6 00 53 6 00}
test clock-3.40 {ISO week-based calendar 1880-W53-7} {
    clock format -2808432000 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1880-W53-7
} {Sun Sunday 80 1880 7 01 53 0 00}
test clock-3.41 {ISO week-based calendar 1881-W01-1} {
    clock format -2808345600 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1881-W01-1
} {Mon Monday 81 1881 1 01 01 1 01}
test clock-3.42 {ISO week-based calendar 1881-W01-6} {
    clock format -2807913600 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1881-W01-6
} {Sat Saturday 81 1881 6 01 01 6 01}
test clock-3.43 {ISO week-based calendar 1881-W01-7} {
    clock format -2807827200 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1881-W01-7
} {Sun Sunday 81 1881 7 02 01 0 01}
test clock-3.44 {ISO week-based calendar 1881-W02-1} {
    clock format -2807740800 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1881-W02-1
} {Mon Monday 81 1881 1 02 02 1 02}
test clock-3.45 {ISO week-based calendar 1883-W52-1} {
    clock format -2714601600 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1883-W52-1
} {Mon Monday 83 1883 1 51 52 1 52}
test clock-3.46 {ISO week-based calendar 1883-W52-6} {
    clock format -2714169600 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1883-W52-6
} {Sat Saturday 83 1883 6 51 52 6 52}
test clock-3.47 {ISO week-based calendar 1883-W52-7} {
    clock format -2714083200 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1883-W52-7
} {Sun Sunday 83 1883 7 52 52 0 52}
test clock-3.48 {ISO week-based calendar 1884-W01-1} {
    clock format -2713996800 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1884-W01-1
} {Mon Monday 84 1884 1 52 01 1 53}
test clock-3.49 {ISO week-based calendar 1884-W01-2} {
    clock format -2713910400 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1884-W01-2
} {Tue Tuesday 84 1884 2 00 01 2 00}
test clock-3.50 {ISO week-based calendar 1884-W01-6} {
    clock format -2713564800 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1884-W01-6
} {Sat Saturday 84 1884 6 00 01 6 00}
test clock-3.51 {ISO week-based calendar 1884-W01-7} {
    clock format -2713478400 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1884-W01-7
} {Sun Sunday 84 1884 7 01 01 0 00}
test clock-3.52 {ISO week-based calendar 1884-W02-1} {
    clock format -2713392000 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1884-W02-1
} {Mon Monday 84 1884 1 01 02 1 01}
test clock-3.53 {ISO week-based calendar 1884-W52-1} {
    clock format -2683152000 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1884-W52-1
} {Mon Monday 84 1884 1 51 52 1 51}
test clock-3.54 {ISO week-based calendar 1884-W52-6} {
    clock format -2682720000 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1884-W52-6
} {Sat Saturday 84 1884 6 51 52 6 51}
test clock-3.55 {ISO week-based calendar 1884-W52-7} {
    clock format -2682633600 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1884-W52-7
} {Sun Sunday 84 1884 7 52 52 0 51}
test clock-3.56 {ISO week-based calendar 1885-W01-1} {
    clock format -2682547200 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1885-W01-1
} {Mon Monday 85 1885 1 52 01 1 52}
test clock-3.57 {ISO week-based calendar 1885-W01-4} {
    clock format -2682288000 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1885-W01-4
} {Thu Thursday 85 1885 4 00 01 4 00}
test clock-3.58 {ISO week-based calendar 1885-W01-6} {
    clock format -2682115200 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1885-W01-6
} {Sat Saturday 85 1885 6 00 01 6 00}
test clock-3.59 {ISO week-based calendar 1885-W01-7} {
    clock format -2682028800 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1885-W01-7
} {Sun Sunday 85 1885 7 01 01 0 00}
test clock-3.60 {ISO week-based calendar 1885-W02-1} {
    clock format -2681942400 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1885-W02-1
} {Mon Monday 85 1885 1 01 02 1 01}
test clock-3.61 {ISO week-based calendar 1887-W52-1} {
    clock format -2588198400 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1887-W52-1
} {Mon Monday 87 1887 1 52 52 1 52}
test clock-3.62 {ISO week-based calendar 1887-W52-6} {
    clock format -2587766400 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1887-W52-6
} {Sat Saturday 87 1887 6 52 52 6 52}
test clock-3.63 {ISO week-based calendar 1887-W52-7} {
    clock format -2587680000 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1887-W52-7
} {Sun Sunday 87 1887 7 01 52 0 00}
test clock-3.64 {ISO week-based calendar 1888-W01-1} {
    clock format -2587593600 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1888-W01-1
} {Mon Monday 88 1888 1 01 01 1 01}
test clock-3.65 {ISO week-based calendar 1888-W01-6} {
    clock format -2587161600 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1888-W01-6
} {Sat Saturday 88 1888 6 01 01 6 01}
test clock-3.66 {ISO week-based calendar 1888-W01-7} {
    clock format -2587075200 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1888-W01-7
} {Sun Sunday 88 1888 7 02 01 0 01}
test clock-3.67 {ISO week-based calendar 1888-W02-1} {
    clock format -2586988800 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1888-W02-1
} {Mon Monday 88 1888 1 02 02 1 02}
test clock-3.68 {ISO week-based calendar 1888-W52-1} {
    clock format -2556748800 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1888-W52-1
} {Mon Monday 88 1888 1 52 52 1 52}
test clock-3.69 {ISO week-based calendar 1888-W52-6} {
    clock format -2556316800 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1888-W52-6
} {Sat Saturday 88 1888 6 52 52 6 52}
test clock-3.70 {ISO week-based calendar 1888-W52-7} {
    clock format -2556230400 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1888-W52-7
} {Sun Sunday 88 1888 7 53 52 0 52}
test clock-3.71 {ISO week-based calendar 1889-W01-1} {
    clock format -2556144000 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1889-W01-1
} {Mon Monday 89 1889 1 53 01 1 53}
test clock-3.72 {ISO week-based calendar 1889-W01-2} {
    clock format -2556057600 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1889-W01-2
} {Tue Tuesday 89 1889 2 00 01 2 00}
test clock-3.73 {ISO week-based calendar 1889-W01-6} {
    clock format -2555712000 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1889-W01-6
} {Sat Saturday 89 1889 6 00 01 6 00}
test clock-3.74 {ISO week-based calendar 1889-W01-7} {
    clock format -2555625600 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1889-W01-7
} {Sun Sunday 89 1889 7 01 01 0 00}
test clock-3.75 {ISO week-based calendar 1889-W02-1} {
    clock format -2555539200 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1889-W02-1
} {Mon Monday 89 1889 1 01 02 1 01}
test clock-3.76 {ISO week-based calendar 1889-W52-1} {
    clock format -2525299200 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1889-W52-1
} {Mon Monday 89 1889 1 51 52 1 51}
test clock-3.77 {ISO week-based calendar 1889-W52-6} {
    clock format -2524867200 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1889-W52-6
} {Sat Saturday 89 1889 6 51 52 6 51}
test clock-3.78 {ISO week-based calendar 1889-W52-7} {
    clock format -2524780800 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1889-W52-7
} {Sun Sunday 89 1889 7 52 52 0 51}
test clock-3.79 {ISO week-based calendar 1890-W01-1} {
    clock format -2524694400 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1890-W01-1
} {Mon Monday 90 1890 1 52 01 1 52}
test clock-3.80 {ISO week-based calendar 1890-W01-3} {
    clock format -2524521600 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1890-W01-3
} {Wed Wednesday 90 1890 3 00 01 3 00}
test clock-3.81 {ISO week-based calendar 1890-W01-6} {
    clock format -2524262400 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1890-W01-6
} {Sat Saturday 90 1890 6 00 01 6 00}
test clock-3.82 {ISO week-based calendar 1890-W01-7} {
    clock format -2524176000 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1890-W01-7
} {Sun Sunday 90 1890 7 01 01 0 00}
test clock-3.83 {ISO week-based calendar 1890-W02-1} {
    clock format -2524089600 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1890-W02-1
} {Mon Monday 90 1890 1 01 02 1 01}
test clock-3.84 {ISO week-based calendar 1890-W52-1} {
    clock format -2493849600 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1890-W52-1
} {Mon Monday 90 1890 1 51 52 1 51}
test clock-3.85 {ISO week-based calendar 1890-W52-6} {
    clock format -2493417600 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1890-W52-6
} {Sat Saturday 90 1890 6 51 52 6 51}
test clock-3.86 {ISO week-based calendar 1890-W52-7} {
    clock format -2493331200 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1890-W52-7
} {Sun Sunday 90 1890 7 52 52 0 51}
test clock-3.87 {ISO week-based calendar 1891-W01-1} {
    clock format -2493244800 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1891-W01-1
} {Mon Monday 91 1891 1 52 01 1 52}
test clock-3.88 {ISO week-based calendar 1891-W01-4} {
    clock format -2492985600 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1891-W01-4
} {Thu Thursday 91 1891 4 00 01 4 00}
test clock-3.89 {ISO week-based calendar 1891-W01-6} {
    clock format -2492812800 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1891-W01-6
} {Sat Saturday 91 1891 6 00 01 6 00}
test clock-3.90 {ISO week-based calendar 1891-W01-7} {
    clock format -2492726400 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1891-W01-7
} {Sun Sunday 91 1891 7 01 01 0 00}
test clock-3.91 {ISO week-based calendar 1891-W02-1} {
    clock format -2492640000 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1891-W02-1
} {Mon Monday 91 1891 1 01 02 1 01}
test clock-3.92 {ISO week-based calendar 1891-W53-1} {
    clock format -2461795200 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1891-W53-1
} {Mon Monday 91 1891 1 52 53 1 52}
test clock-3.93 {ISO week-based calendar 1891-W53-5} {
    clock format -2461449600 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1891-W53-5
} {Fri Friday 91 1891 5 00 53 5 00}
test clock-3.94 {ISO week-based calendar 1891-W53-6} {
    clock format -2461363200 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1891-W53-6
} {Sat Saturday 91 1891 6 00 53 6 00}
test clock-3.95 {ISO week-based calendar 1891-W53-7} {
    clock format -2461276800 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1891-W53-7
} {Sun Sunday 91 1891 7 01 53 0 00}
test clock-3.96 {ISO week-based calendar 1892-W01-1} {
    clock format -2461190400 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1892-W01-1
} {Mon Monday 92 1892 1 01 01 1 01}
test clock-3.97 {ISO week-based calendar 1892-W01-6} {
    clock format -2460758400 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1892-W01-6
} {Sat Saturday 92 1892 6 01 01 6 01}
test clock-3.98 {ISO week-based calendar 1892-W01-7} {
    clock format -2460672000 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1892-W01-7
} {Sun Sunday 92 1892 7 02 01 0 01}
test clock-3.99 {ISO week-based calendar 1892-W02-1} {
    clock format -2460585600 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1892-W02-1
} {Mon Monday 92 1892 1 02 02 1 02}
test clock-3.100 {ISO week-based calendar 1892-W52-1} {
    clock format -2430345600 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1892-W52-1
} {Mon Monday 92 1892 1 52 52 1 52}
test clock-3.101 {ISO week-based calendar 1892-W52-6} {
    clock format -2429913600 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1892-W52-6
} {Sat Saturday 92 1892 6 52 52 6 52}
test clock-3.102 {ISO week-based calendar 1892-W52-7} {
    clock format -2429827200 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1892-W52-7
} {Sun Sunday 92 1892 7 01 52 0 00}
test clock-3.103 {ISO week-based calendar 1893-W01-1} {
    clock format -2429740800 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1893-W01-1
} {Mon Monday 93 1893 1 01 01 1 01}
test clock-3.104 {ISO week-based calendar 1893-W01-6} {
    clock format -2429308800 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1893-W01-6
} {Sat Saturday 93 1893 6 01 01 6 01}
test clock-3.105 {ISO week-based calendar 1893-W01-7} {
    clock format -2429222400 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1893-W01-7
} {Sun Sunday 93 1893 7 02 01 0 01}
test clock-3.106 {ISO week-based calendar 1893-W02-1} {
    clock format -2429136000 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1893-W02-1
} {Mon Monday 93 1893 1 02 02 1 02}
test clock-3.107 {ISO week-based calendar 1893-W52-1} {
    clock format -2398896000 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1893-W52-1
} {Mon Monday 93 1893 1 52 52 1 52}
test clock-3.108 {ISO week-based calendar 1893-W52-6} {
    clock format -2398464000 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1893-W52-6
} {Sat Saturday 93 1893 6 52 52 6 52}
test clock-3.109 {ISO week-based calendar 1893-W52-7} {
    clock format -2398377600 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1893-W52-7
} {Sun Sunday 93 1893 7 53 52 0 52}
test clock-3.110 {ISO week-based calendar 1894-W01-1} {
    clock format -2398291200 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1894-W01-1
} {Mon Monday 94 1894 1 00 01 1 01}
test clock-3.111 {ISO week-based calendar 1894-W01-6} {
    clock format -2397859200 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1894-W01-6
} {Sat Saturday 94 1894 6 00 01 6 01}
test clock-3.112 {ISO week-based calendar 1894-W01-7} {
    clock format -2397772800 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1894-W01-7
} {Sun Sunday 94 1894 7 01 01 0 01}
test clock-3.113 {ISO week-based calendar 1894-W02-1} {
    clock format -2397686400 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1894-W02-1
} {Mon Monday 94 1894 1 01 02 1 02}
test clock-3.114 {ISO week-based calendar 1894-W52-1} {
    clock format -2367446400 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1894-W52-1
} {Mon Monday 94 1894 1 51 52 1 52}
test clock-3.115 {ISO week-based calendar 1894-W52-6} {
    clock format -2367014400 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1894-W52-6
} {Sat Saturday 94 1894 6 51 52 6 52}
test clock-3.116 {ISO week-based calendar 1894-W52-7} {
    clock format -2366928000 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1894-W52-7
} {Sun Sunday 94 1894 7 52 52 0 52}
test clock-3.117 {ISO week-based calendar 1895-W01-1} {
    clock format -2366841600 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1895-W01-1
} {Mon Monday 95 1895 1 52 01 1 53}
test clock-3.118 {ISO week-based calendar 1895-W01-2} {
    clock format -2366755200 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1895-W01-2
} {Tue Tuesday 95 1895 2 00 01 2 00}
test clock-3.119 {ISO week-based calendar 1895-W01-6} {
    clock format -2366409600 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1895-W01-6
} {Sat Saturday 95 1895 6 00 01 6 00}
test clock-3.120 {ISO week-based calendar 1895-W01-7} {
    clock format -2366323200 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1895-W01-7
} {Sun Sunday 95 1895 7 01 01 0 00}
test clock-3.121 {ISO week-based calendar 1895-W02-1} {
    clock format -2366236800 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1895-W02-1
} {Mon Monday 95 1895 1 01 02 1 01}
test clock-3.122 {ISO week-based calendar 1895-W52-1} {
    clock format -2335996800 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1895-W52-1
} {Mon Monday 95 1895 1 51 52 1 51}
test clock-3.123 {ISO week-based calendar 1895-W52-6} {
    clock format -2335564800 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1895-W52-6
} {Sat Saturday 95 1895 6 51 52 6 51}
test clock-3.124 {ISO week-based calendar 1895-W52-7} {
    clock format -2335478400 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1895-W52-7
} {Sun Sunday 95 1895 7 52 52 0 51}
test clock-3.125 {ISO week-based calendar 1896-W01-1} {
    clock format -2335392000 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1896-W01-1
} {Mon Monday 96 1896 1 52 01 1 52}
test clock-3.126 {ISO week-based calendar 1896-W01-3} {
    clock format -2335219200 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1896-W01-3
} {Wed Wednesday 96 1896 3 00 01 3 00}
test clock-3.127 {ISO week-based calendar 1896-W01-6} {
    clock format -2334960000 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1896-W01-6
} {Sat Saturday 96 1896 6 00 01 6 00}
test clock-3.128 {ISO week-based calendar 1896-W01-7} {
    clock format -2334873600 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1896-W01-7
} {Sun Sunday 96 1896 7 01 01 0 00}
test clock-3.129 {ISO week-based calendar 1896-W02-1} {
    clock format -2334787200 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1896-W02-1
} {Mon Monday 96 1896 1 01 02 1 01}
test clock-3.130 {ISO week-based calendar 1896-W53-1} {
    clock format -2303942400 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1896-W53-1
} {Mon Monday 96 1896 1 52 53 1 52}
test clock-3.131 {ISO week-based calendar 1896-W53-5} {
    clock format -2303596800 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1896-W53-5
} {Fri Friday 96 1896 5 00 53 5 00}
test clock-3.132 {ISO week-based calendar 1896-W53-6} {
    clock format -2303510400 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1896-W53-6
} {Sat Saturday 96 1896 6 00 53 6 00}
test clock-3.133 {ISO week-based calendar 1896-W53-7} {
    clock format -2303424000 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1896-W53-7
} {Sun Sunday 96 1896 7 01 53 0 00}
test clock-3.134 {ISO week-based calendar 1897-W01-1} {
    clock format -2303337600 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1897-W01-1
} {Mon Monday 97 1897 1 01 01 1 01}
test clock-3.135 {ISO week-based calendar 1897-W01-6} {
    clock format -2302905600 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1897-W01-6
} {Sat Saturday 97 1897 6 01 01 6 01}
test clock-3.136 {ISO week-based calendar 1897-W01-7} {
    clock format -2302819200 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1897-W01-7
} {Sun Sunday 97 1897 7 02 01 0 01}
test clock-3.137 {ISO week-based calendar 1897-W02-1} {
    clock format -2302732800 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1897-W02-1
} {Mon Monday 97 1897 1 02 02 1 02}
test clock-3.138 {ISO week-based calendar 1897-W52-1} {
    clock format -2272492800 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1897-W52-1
} {Mon Monday 97 1897 1 52 52 1 52}
test clock-3.139 {ISO week-based calendar 1897-W52-6} {
    clock format -2272060800 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1897-W52-6
} {Sat Saturday 97 1897 6 00 52 6 00}
test clock-3.140 {ISO week-based calendar 1897-W52-7} {
    clock format -2271974400 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1897-W52-7
} {Sun Sunday 97 1897 7 01 52 0 00}
test clock-3.141 {ISO week-based calendar 1898-W01-1} {
    clock format -2271888000 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1898-W01-1
} {Mon Monday 98 1898 1 01 01 1 01}
test clock-3.142 {ISO week-based calendar 1898-W01-6} {
    clock format -2271456000 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1898-W01-6
} {Sat Saturday 98 1898 6 01 01 6 01}
test clock-3.143 {ISO week-based calendar 1898-W01-7} {
    clock format -2271369600 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1898-W01-7
} {Sun Sunday 98 1898 7 02 01 0 01}
test clock-3.144 {ISO week-based calendar 1898-W02-1} {
    clock format -2271283200 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1898-W02-1
} {Mon Monday 98 1898 1 02 02 1 02}
test clock-3.145 {ISO week-based calendar 1898-W52-1} {
    clock format -2241043200 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1898-W52-1
} {Mon Monday 98 1898 1 52 52 1 52}
test clock-3.146 {ISO week-based calendar 1898-W52-6} {
    clock format -2240611200 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1898-W52-6
} {Sat Saturday 98 1898 6 52 52 6 52}
test clock-3.147 {ISO week-based calendar 1898-W52-7} {
    clock format -2240524800 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1898-W52-7
} {Sun Sunday 98 1898 7 01 52 0 00}
test clock-3.148 {ISO week-based calendar 1899-W01-1} {
    clock format -2240438400 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1899-W01-1
} {Mon Monday 99 1899 1 01 01 1 01}
test clock-3.149 {ISO week-based calendar 1899-W01-6} {
    clock format -2240006400 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1899-W01-6
} {Sat Saturday 99 1899 6 01 01 6 01}
test clock-3.150 {ISO week-based calendar 1899-W01-7} {
    clock format -2239920000 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1899-W01-7
} {Sun Sunday 99 1899 7 02 01 0 01}
test clock-3.151 {ISO week-based calendar 1899-W02-1} {
    clock format -2239833600 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1899-W02-1
} {Mon Monday 99 1899 1 02 02 1 02}
test clock-3.152 {ISO week-based calendar 1899-W52-1} {
    clock format -2209593600 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1899-W52-1
} {Mon Monday 99 1899 1 52 52 1 52}
test clock-3.153 {ISO week-based calendar 1899-W52-6} {
    clock format -2209161600 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1899-W52-6
} {Sat Saturday 99 1899 6 52 52 6 52}
test clock-3.154 {ISO week-based calendar 1899-W52-7} {
    clock format -2209075200 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1899-W52-7
} {Sun Sunday 99 1899 7 53 52 0 52}
test clock-3.155 {ISO week-based calendar 1900-W01-1} {
    clock format -2208988800 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1900-W01-1
} {Mon Monday 00 1900 1 00 01 1 01}
test clock-3.156 {ISO week-based calendar 1900-W01-6} {
    clock format -2208556800 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1900-W01-6
} {Sat Saturday 00 1900 6 00 01 6 01}
test clock-3.157 {ISO week-based calendar 1900-W01-7} {
    clock format -2208470400 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1900-W01-7
} {Sun Sunday 00 1900 7 01 01 0 01}
test clock-3.158 {ISO week-based calendar 1900-W02-1} {
    clock format -2208384000 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1900-W02-1
} {Mon Monday 00 1900 1 01 02 1 02}
test clock-3.159 {ISO week-based calendar 1943-W52-1} {
    clock format -820972800 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1943-W52-1
} {Mon Monday 43 1943 1 52 52 1 52}
test clock-3.160 {ISO week-based calendar 1943-W52-6} {
    clock format -820540800 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1943-W52-6
} {Sat Saturday 43 1943 6 00 52 6 00}
test clock-3.161 {ISO week-based calendar 1943-W52-7} {
    clock format -820454400 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1943-W52-7
} {Sun Sunday 43 1943 7 01 52 0 00}
test clock-3.162 {ISO week-based calendar 1944-W01-1} {
    clock format -820368000 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1944-W01-1
} {Mon Monday 44 1944 1 01 01 1 01}
test clock-3.163 {ISO week-based calendar 1944-W01-6} {
    clock format -819936000 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1944-W01-6
} {Sat Saturday 44 1944 6 01 01 6 01}
test clock-3.164 {ISO week-based calendar 1944-W01-7} {
    clock format -819849600 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1944-W01-7
} {Sun Sunday 44 1944 7 02 01 0 01}
test clock-3.165 {ISO week-based calendar 1944-W02-1} {
    clock format -819763200 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1944-W02-1
} {Mon Monday 44 1944 1 02 02 1 02}
test clock-3.166 {ISO week-based calendar 1944-W52-1} {
    clock format -789523200 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1944-W52-1
} {Mon Monday 44 1944 1 52 52 1 52}
test clock-3.167 {ISO week-based calendar 1944-W52-6} {
    clock format -789091200 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1944-W52-6
} {Sat Saturday 44 1944 6 52 52 6 52}
test clock-3.168 {ISO week-based calendar 1944-W52-7} {
    clock format -789004800 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1944-W52-7
} {Sun Sunday 44 1944 7 53 52 0 52}
test clock-3.169 {ISO week-based calendar 1945-W01-1} {
    clock format -788918400 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1945-W01-1
} {Mon Monday 45 1945 1 00 01 1 01}
test clock-3.170 {ISO week-based calendar 1945-W01-6} {
    clock format -788486400 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1945-W01-6
} {Sat Saturday 45 1945 6 00 01 6 01}
test clock-3.171 {ISO week-based calendar 1945-W01-7} {
    clock format -788400000 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1945-W01-7
} {Sun Sunday 45 1945 7 01 01 0 01}
test clock-3.172 {ISO week-based calendar 1945-W02-1} {
    clock format -788313600 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1945-W02-1
} {Mon Monday 45 1945 1 01 02 1 02}
test clock-3.173 {ISO week-based calendar 1947-W52-1} {
    clock format -695174400 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1947-W52-1
} {Mon Monday 47 1947 1 51 52 1 51}
test clock-3.174 {ISO week-based calendar 1947-W52-6} {
    clock format -694742400 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1947-W52-6
} {Sat Saturday 47 1947 6 51 52 6 51}
test clock-3.175 {ISO week-based calendar 1947-W52-7} {
    clock format -694656000 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1947-W52-7
} {Sun Sunday 47 1947 7 52 52 0 51}
test clock-3.176 {ISO week-based calendar 1948-W01-1} {
    clock format -694569600 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1948-W01-1
} {Mon Monday 48 1948 1 52 01 1 52}
test clock-3.177 {ISO week-based calendar 1948-W01-4} {
    clock format -694310400 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1948-W01-4
} {Thu Thursday 48 1948 4 00 01 4 00}
test clock-3.178 {ISO week-based calendar 1948-W01-6} {
    clock format -694137600 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1948-W01-6
} {Sat Saturday 48 1948 6 00 01 6 00}
test clock-3.179 {ISO week-based calendar 1948-W01-7} {
    clock format -694051200 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1948-W01-7
} {Sun Sunday 48 1948 7 01 01 0 00}
test clock-3.180 {ISO week-based calendar 1948-W02-1} {
    clock format -693964800 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1948-W02-1
} {Mon Monday 48 1948 1 01 02 1 01}
test clock-3.181 {ISO week-based calendar 1948-W53-1} {
    clock format -663120000 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1948-W53-1
} {Mon Monday 48 1948 1 52 53 1 52}
test clock-3.182 {ISO week-based calendar 1948-W53-6} {
    clock format -662688000 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1948-W53-6
} {Sat Saturday 48 1948 6 00 53 6 00}
test clock-3.183 {ISO week-based calendar 1948-W53-7} {
    clock format -662601600 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1948-W53-7
} {Sun Sunday 48 1948 7 01 53 0 00}
test clock-3.184 {ISO week-based calendar 1949-W01-1} {
    clock format -662515200 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1949-W01-1
} {Mon Monday 49 1949 1 01 01 1 01}
test clock-3.185 {ISO week-based calendar 1949-W01-6} {
    clock format -662083200 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1949-W01-6
} {Sat Saturday 49 1949 6 01 01 6 01}
test clock-3.186 {ISO week-based calendar 1949-W01-7} {
    clock format -661996800 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1949-W01-7
} {Sun Sunday 49 1949 7 02 01 0 01}
test clock-3.187 {ISO week-based calendar 1949-W02-1} {
    clock format -661910400 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1949-W02-1
} {Mon Monday 49 1949 1 02 02 1 02}
test clock-3.188 {ISO week-based calendar 1951-W52-1} {
    clock format -568771200 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1951-W52-1
} {Mon Monday 51 1951 1 51 52 1 52}
test clock-3.189 {ISO week-based calendar 1951-W52-6} {
    clock format -568339200 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1951-W52-6
} {Sat Saturday 51 1951 6 51 52 6 52}
test clock-3.190 {ISO week-based calendar 1951-W52-7} {
    clock format -568252800 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1951-W52-7
} {Sun Sunday 51 1951 7 52 52 0 52}
test clock-3.191 {ISO week-based calendar 1952-W01-1} {
    clock format -568166400 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1952-W01-1
} {Mon Monday 52 1952 1 52 01 1 53}
test clock-3.192 {ISO week-based calendar 1952-W01-2} {
    clock format -568080000 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1952-W01-2
} {Tue Tuesday 52 1952 2 00 01 2 00}
test clock-3.193 {ISO week-based calendar 1952-W01-6} {
    clock format -567734400 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1952-W01-6
} {Sat Saturday 52 1952 6 00 01 6 00}
test clock-3.194 {ISO week-based calendar 1952-W01-7} {
    clock format -567648000 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1952-W01-7
} {Sun Sunday 52 1952 7 01 01 0 00}
test clock-3.195 {ISO week-based calendar 1952-W02-1} {
    clock format -567561600 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1952-W02-1
} {Mon Monday 52 1952 1 01 02 1 01}
test clock-3.196 {ISO week-based calendar 1952-W52-1} {
    clock format -537321600 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1952-W52-1
} {Mon Monday 52 1952 1 51 52 1 51}
test clock-3.197 {ISO week-based calendar 1952-W52-6} {
    clock format -536889600 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1952-W52-6
} {Sat Saturday 52 1952 6 51 52 6 51}
test clock-3.198 {ISO week-based calendar 1952-W52-7} {
    clock format -536803200 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1952-W52-7
} {Sun Sunday 52 1952 7 52 52 0 51}
test clock-3.199 {ISO week-based calendar 1953-W01-1} {
    clock format -536716800 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1953-W01-1
} {Mon Monday 53 1953 1 52 01 1 52}
test clock-3.200 {ISO week-based calendar 1953-W01-4} {
    clock format -536457600 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1953-W01-4
} {Thu Thursday 53 1953 4 00 01 4 00}
test clock-3.201 {ISO week-based calendar 1953-W01-6} {
    clock format -536284800 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1953-W01-6
} {Sat Saturday 53 1953 6 00 01 6 00}
test clock-3.202 {ISO week-based calendar 1953-W01-7} {
    clock format -536198400 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1953-W01-7
} {Sun Sunday 53 1953 7 01 01 0 00}
test clock-3.203 {ISO week-based calendar 1953-W02-1} {
    clock format -536112000 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1953-W02-1
} {Mon Monday 53 1953 1 01 02 1 01}
test clock-3.204 {ISO week-based calendar 1955-W52-1} {
    clock format -442368000 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1955-W52-1
} {Mon Monday 55 1955 1 52 52 1 52}
test clock-3.205 {ISO week-based calendar 1955-W52-6} {
    clock format -441936000 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1955-W52-6
} {Sat Saturday 55 1955 6 52 52 6 52}
test clock-3.206 {ISO week-based calendar 1955-W52-7} {
    clock format -441849600 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1955-W52-7
} {Sun Sunday 55 1955 7 01 52 0 00}
test clock-3.207 {ISO week-based calendar 1956-W01-1} {
    clock format -441763200 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1956-W01-1
} {Mon Monday 56 1956 1 01 01 1 01}
test clock-3.208 {ISO week-based calendar 1956-W01-6} {
    clock format -441331200 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1956-W01-6
} {Sat Saturday 56 1956 6 01 01 6 01}
test clock-3.209 {ISO week-based calendar 1956-W01-7} {
    clock format -441244800 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1956-W01-7
} {Sun Sunday 56 1956 7 02 01 0 01}
test clock-3.210 {ISO week-based calendar 1956-W02-1} {
    clock format -441158400 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1956-W02-1
} {Mon Monday 56 1956 1 02 02 1 02}
test clock-3.211 {ISO week-based calendar 1956-W52-1} {
    clock format -410918400 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1956-W52-1
} {Mon Monday 56 1956 1 52 52 1 52}
test clock-3.212 {ISO week-based calendar 1956-W52-6} {
    clock format -410486400 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1956-W52-6
} {Sat Saturday 56 1956 6 52 52 6 52}
test clock-3.213 {ISO week-based calendar 1956-W52-7} {
    clock format -410400000 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1956-W52-7
} {Sun Sunday 56 1956 7 53 52 0 52}
test clock-3.214 {ISO week-based calendar 1957-W01-1} {
    clock format -410313600 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1957-W01-1
} {Mon Monday 57 1957 1 53 01 1 53}
test clock-3.215 {ISO week-based calendar 1957-W01-2} {
    clock format -410227200 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1957-W01-2
} {Tue Tuesday 57 1957 2 00 01 2 00}
test clock-3.216 {ISO week-based calendar 1957-W01-6} {
    clock format -409881600 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1957-W01-6
} {Sat Saturday 57 1957 6 00 01 6 00}
test clock-3.217 {ISO week-based calendar 1957-W01-7} {
    clock format -409795200 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1957-W01-7
} {Sun Sunday 57 1957 7 01 01 0 00}
test clock-3.218 {ISO week-based calendar 1957-W02-1} {
    clock format -409708800 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1957-W02-1
} {Mon Monday 57 1957 1 01 02 1 01}
test clock-3.219 {ISO week-based calendar 1958-W52-1} {
    clock format -348019200 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1958-W52-1
} {Mon Monday 58 1958 1 51 52 1 51}
test clock-3.220 {ISO week-based calendar 1958-W52-6} {
    clock format -347587200 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1958-W52-6
} {Sat Saturday 58 1958 6 51 52 6 51}
test clock-3.221 {ISO week-based calendar 1958-W52-7} {
    clock format -347500800 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1958-W52-7
} {Sun Sunday 58 1958 7 52 52 0 51}
test clock-3.222 {ISO week-based calendar 1959-W01-1} {
    clock format -347414400 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1959-W01-1
} {Mon Monday 59 1959 1 52 01 1 52}
test clock-3.223 {ISO week-based calendar 1959-W01-4} {
    clock format -347155200 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1959-W01-4
} {Thu Thursday 59 1959 4 00 01 4 00}
test clock-3.224 {ISO week-based calendar 1959-W01-6} {
    clock format -346982400 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1959-W01-6
} {Sat Saturday 59 1959 6 00 01 6 00}
test clock-3.225 {ISO week-based calendar 1959-W01-7} {
    clock format -346896000 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1959-W01-7
} {Sun Sunday 59 1959 7 01 01 0 00}
test clock-3.226 {ISO week-based calendar 1959-W02-1} {
    clock format -346809600 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1959-W02-1
} {Mon Monday 59 1959 1 01 02 1 01}
test clock-3.227 {ISO week-based calendar 1959-W53-1} {
    clock format -315964800 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1959-W53-1
} {Mon Monday 59 1959 1 52 53 1 52}
test clock-3.228 {ISO week-based calendar 1959-W53-5} {
    clock format -315619200 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1959-W53-5
} {Fri Friday 59 1959 5 00 53 5 00}
test clock-3.229 {ISO week-based calendar 1959-W53-6} {
    clock format -315532800 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1959-W53-6
} {Sat Saturday 59 1959 6 00 53 6 00}
test clock-3.230 {ISO week-based calendar 1959-W53-7} {
    clock format -315446400 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1959-W53-7
} {Sun Sunday 59 1959 7 01 53 0 00}
test clock-3.231 {ISO week-based calendar 1960-W01-1} {
    clock format -315360000 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1960-W01-1
} {Mon Monday 60 1960 1 01 01 1 01}
test clock-3.232 {ISO week-based calendar 1960-W01-6} {
    clock format -314928000 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1960-W01-6
} {Sat Saturday 60 1960 6 01 01 6 01}
test clock-3.233 {ISO week-based calendar 1960-W01-7} {
    clock format -314841600 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1960-W01-7
} {Sun Sunday 60 1960 7 02 01 0 01}
test clock-3.234 {ISO week-based calendar 1960-W02-1} {
    clock format -314755200 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1960-W02-1
} {Mon Monday 60 1960 1 02 02 1 02}
test clock-3.235 {ISO week-based calendar 1960-W52-1} {
    clock format -284515200 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1960-W52-1
} {Mon Monday 60 1960 1 52 52 1 52}
test clock-3.236 {ISO week-based calendar 1960-W52-6} {
    clock format -284083200 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1960-W52-6
} {Sat Saturday 60 1960 6 52 52 6 52}
test clock-3.237 {ISO week-based calendar 1960-W52-7} {
    clock format -283996800 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1960-W52-7
} {Sun Sunday 60 1960 7 01 52 0 00}
test clock-3.238 {ISO week-based calendar 1961-W01-1} {
    clock format -283910400 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1961-W01-1
} {Mon Monday 61 1961 1 01 01 1 01}
test clock-3.239 {ISO week-based calendar 1961-W01-6} {
    clock format -283478400 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1961-W01-6
} {Sat Saturday 61 1961 6 01 01 6 01}
test clock-3.240 {ISO week-based calendar 1961-W01-7} {
    clock format -283392000 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1961-W01-7
} {Sun Sunday 61 1961 7 02 01 0 01}
test clock-3.241 {ISO week-based calendar 1961-W02-1} {
    clock format -283305600 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1961-W02-1
} {Mon Monday 61 1961 1 02 02 1 02}
test clock-3.242 {ISO week-based calendar 1961-W52-1} {
    clock format -253065600 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1961-W52-1
} {Mon Monday 61 1961 1 52 52 1 52}
test clock-3.243 {ISO week-based calendar 1961-W52-6} {
    clock format -252633600 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1961-W52-6
} {Sat Saturday 61 1961 6 52 52 6 52}
test clock-3.244 {ISO week-based calendar 1961-W52-7} {
    clock format -252547200 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1961-W52-7
} {Sun Sunday 61 1961 7 53 52 0 52}
test clock-3.245 {ISO week-based calendar 1962-W01-1} {
    clock format -252460800 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1962-W01-1
} {Mon Monday 62 1962 1 00 01 1 01}
test clock-3.246 {ISO week-based calendar 1962-W01-6} {
    clock format -252028800 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1962-W01-6
} {Sat Saturday 62 1962 6 00 01 6 01}
test clock-3.247 {ISO week-based calendar 1962-W01-7} {
    clock format -251942400 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1962-W01-7
} {Sun Sunday 62 1962 7 01 01 0 01}
test clock-3.248 {ISO week-based calendar 1962-W02-1} {
    clock format -251856000 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1962-W02-1
} {Mon Monday 62 1962 1 01 02 1 02}
test clock-3.249 {ISO week-based calendar 1962-W52-1} {
    clock format -221616000 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1962-W52-1
} {Mon Monday 62 1962 1 51 52 1 52}
test clock-3.250 {ISO week-based calendar 1962-W52-6} {
    clock format -221184000 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1962-W52-6
} {Sat Saturday 62 1962 6 51 52 6 52}
test clock-3.251 {ISO week-based calendar 1962-W52-7} {
    clock format -221097600 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1962-W52-7
} {Sun Sunday 62 1962 7 52 52 0 52}
test clock-3.252 {ISO week-based calendar 1963-W01-1} {
    clock format -221011200 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1963-W01-1
} {Mon Monday 63 1963 1 52 01 1 53}
test clock-3.253 {ISO week-based calendar 1963-W01-2} {
    clock format -220924800 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1963-W01-2
} {Tue Tuesday 63 1963 2 00 01 2 00}
test clock-3.254 {ISO week-based calendar 1963-W01-6} {
    clock format -220579200 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1963-W01-6
} {Sat Saturday 63 1963 6 00 01 6 00}
test clock-3.255 {ISO week-based calendar 1963-W01-7} {
    clock format -220492800 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1963-W01-7
} {Sun Sunday 63 1963 7 01 01 0 00}
test clock-3.256 {ISO week-based calendar 1963-W02-1} {
    clock format -220406400 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1963-W02-1
} {Mon Monday 63 1963 1 01 02 1 01}
test clock-3.257 {ISO week-based calendar 1963-W52-1} {
    clock format -190166400 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1963-W52-1
} {Mon Monday 63 1963 1 51 52 1 51}
test clock-3.258 {ISO week-based calendar 1963-W52-6} {
    clock format -189734400 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1963-W52-6
} {Sat Saturday 63 1963 6 51 52 6 51}
test clock-3.259 {ISO week-based calendar 1963-W52-7} {
    clock format -189648000 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1963-W52-7
} {Sun Sunday 63 1963 7 52 52 0 51}
test clock-3.260 {ISO week-based calendar 1964-W01-1} {
    clock format -189561600 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1964-W01-1
} {Mon Monday 64 1964 1 52 01 1 52}
test clock-3.261 {ISO week-based calendar 1964-W01-3} {
    clock format -189388800 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1964-W01-3
} {Wed Wednesday 64 1964 3 00 01 3 00}
test clock-3.262 {ISO week-based calendar 1964-W01-6} {
    clock format -189129600 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1964-W01-6
} {Sat Saturday 64 1964 6 00 01 6 00}
test clock-3.263 {ISO week-based calendar 1964-W01-7} {
    clock format -189043200 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1964-W01-7
} {Sun Sunday 64 1964 7 01 01 0 00}
test clock-3.264 {ISO week-based calendar 1964-W02-1} {
    clock format -188956800 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1964-W02-1
} {Mon Monday 64 1964 1 01 02 1 01}
test clock-3.265 {ISO week-based calendar 1964-W53-1} {
    clock format -158112000 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1964-W53-1
} {Mon Monday 64 1964 1 52 53 1 52}
test clock-3.266 {ISO week-based calendar 1964-W53-5} {
    clock format -157766400 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1964-W53-5
} {Fri Friday 64 1964 5 00 53 5 00}
test clock-3.267 {ISO week-based calendar 1964-W53-6} {
    clock format -157680000 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1964-W53-6
} {Sat Saturday 64 1964 6 00 53 6 00}
test clock-3.268 {ISO week-based calendar 1964-W53-7} {
    clock format -157593600 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1964-W53-7
} {Sun Sunday 64 1964 7 01 53 0 00}
test clock-3.269 {ISO week-based calendar 1965-W01-1} {
    clock format -157507200 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1965-W01-1
} {Mon Monday 65 1965 1 01 01 1 01}
test clock-3.270 {ISO week-based calendar 1965-W01-6} {
    clock format -157075200 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1965-W01-6
} {Sat Saturday 65 1965 6 01 01 6 01}
test clock-3.271 {ISO week-based calendar 1965-W01-7} {
    clock format -156988800 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1965-W01-7
} {Sun Sunday 65 1965 7 02 01 0 01}
test clock-3.272 {ISO week-based calendar 1965-W02-1} {
    clock format -156902400 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1965-W02-1
} {Mon Monday 65 1965 1 02 02 1 02}
test clock-3.273 {ISO week-based calendar 1965-W52-1} {
    clock format -126662400 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1965-W52-1
} {Mon Monday 65 1965 1 52 52 1 52}
test clock-3.274 {ISO week-based calendar 1965-W52-6} {
    clock format -126230400 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1965-W52-6
} {Sat Saturday 65 1965 6 00 52 6 00}
test clock-3.275 {ISO week-based calendar 1965-W52-7} {
    clock format -126144000 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1965-W52-7
} {Sun Sunday 65 1965 7 01 52 0 00}
test clock-3.276 {ISO week-based calendar 1966-W01-1} {
    clock format -126057600 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1966-W01-1
} {Mon Monday 66 1966 1 01 01 1 01}
test clock-3.277 {ISO week-based calendar 1966-W01-6} {
    clock format -125625600 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1966-W01-6
} {Sat Saturday 66 1966 6 01 01 6 01}
test clock-3.278 {ISO week-based calendar 1966-W01-7} {
    clock format -125539200 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1966-W01-7
} {Sun Sunday 66 1966 7 02 01 0 01}
test clock-3.279 {ISO week-based calendar 1966-W02-1} {
    clock format -125452800 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1966-W02-1
} {Mon Monday 66 1966 1 02 02 1 02}
test clock-3.280 {ISO week-based calendar 1966-W52-1} {
    clock format -95212800 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1966-W52-1
} {Mon Monday 66 1966 1 52 52 1 52}
test clock-3.281 {ISO week-based calendar 1966-W52-6} {
    clock format -94780800 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1966-W52-6
} {Sat Saturday 66 1966 6 52 52 6 52}
test clock-3.282 {ISO week-based calendar 1966-W52-7} {
    clock format -94694400 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1966-W52-7
} {Sun Sunday 66 1966 7 01 52 0 00}
test clock-3.283 {ISO week-based calendar 1967-W01-1} {
    clock format -94608000 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1967-W01-1
} {Mon Monday 67 1967 1 01 01 1 01}
test clock-3.284 {ISO week-based calendar 1967-W01-6} {
    clock format -94176000 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1967-W01-6
} {Sat Saturday 67 1967 6 01 01 6 01}
test clock-3.285 {ISO week-based calendar 1967-W01-7} {
    clock format -94089600 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1967-W01-7
} {Sun Sunday 67 1967 7 02 01 0 01}
test clock-3.286 {ISO week-based calendar 1967-W02-1} {
    clock format -94003200 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1967-W02-1
} {Mon Monday 67 1967 1 02 02 1 02}
test clock-3.287 {ISO week-based calendar 1967-W52-1} {
    clock format -63763200 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1967-W52-1
} {Mon Monday 67 1967 1 52 52 1 52}
test clock-3.288 {ISO week-based calendar 1967-W52-6} {
    clock format -63331200 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1967-W52-6
} {Sat Saturday 67 1967 6 52 52 6 52}
test clock-3.289 {ISO week-based calendar 1967-W52-7} {
    clock format -63244800 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1967-W52-7
} {Sun Sunday 67 1967 7 53 52 0 52}
test clock-3.290 {ISO week-based calendar 1968-W01-1} {
    clock format -63158400 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1968-W01-1
} {Mon Monday 68 1968 1 00 01 1 01}
test clock-3.291 {ISO week-based calendar 1968-W01-6} {
    clock format -62726400 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1968-W01-6
} {Sat Saturday 68 1968 6 00 01 6 01}
test clock-3.292 {ISO week-based calendar 1968-W01-7} {
    clock format -62640000 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1968-W01-7
} {Sun Sunday 68 1968 7 01 01 0 01}
test clock-3.293 {ISO week-based calendar 1968-W02-1} {
    clock format -62553600 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1968-W02-1
} {Mon Monday 68 1968 1 01 02 1 02}
test clock-3.294 {ISO week-based calendar 1968-W52-1} {
    clock format -32313600 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1968-W52-1
} {Mon Monday 68 1968 1 51 52 1 52}
test clock-3.295 {ISO week-based calendar 1968-W52-6} {
    clock format -31881600 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1968-W52-6
} {Sat Saturday 68 1968 6 51 52 6 52}
test clock-3.296 {ISO week-based calendar 1968-W52-7} {
    clock format -31795200 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1968-W52-7
} {Sun Sunday 68 1968 7 52 52 0 52}
test clock-3.297 {ISO week-based calendar 1969-W01-1} {
    clock format -31708800 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1969-W01-1
} {Mon Monday 69 1969 1 52 01 1 53}
test clock-3.298 {ISO week-based calendar 1969-W01-3} {
    clock format -31536000 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1969-W01-3
} {Wed Wednesday 69 1969 3 00 01 3 00}
test clock-3.299 {ISO week-based calendar 1969-W01-6} {
    clock format -31276800 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1969-W01-6
} {Sat Saturday 69 1969 6 00 01 6 00}
test clock-3.300 {ISO week-based calendar 1969-W01-7} {
    clock format -31190400 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1969-W01-7
} {Sun Sunday 69 1969 7 01 01 0 00}
test clock-3.301 {ISO week-based calendar 1969-W02-1} {
    clock format -31104000 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1969-W02-1
} {Mon Monday 69 1969 1 01 02 1 01}
test clock-3.302 {ISO week-based calendar 1969-W52-1} {
    clock format -864000 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1969-W52-1
} {Mon Monday 69 1969 1 51 52 1 51}
test clock-3.303 {ISO week-based calendar 1969-W52-6} {
    clock format -432000 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1969-W52-6
} {Sat Saturday 69 1969 6 51 52 6 51}
test clock-3.304 {ISO week-based calendar 1969-W52-7} {
    clock format -345600 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1969-W52-7
} {Sun Sunday 69 1969 7 52 52 0 51}
test clock-3.305 {ISO week-based calendar 1970-W01-1} {
    clock format -259200 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1970-W01-1
} {Mon Monday 70 1970 1 52 01 1 52}
test clock-3.306 {ISO week-based calendar 1970-W01-4} {
    clock format 0 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1970-W01-4
} {Thu Thursday 70 1970 4 00 01 4 00}
test clock-3.307 {ISO week-based calendar 1970-W01-6} {
    clock format 172800 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1970-W01-6
} {Sat Saturday 70 1970 6 00 01 6 00}
test clock-3.308 {ISO week-based calendar 1970-W01-7} {
    clock format 259200 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1970-W01-7
} {Sun Sunday 70 1970 7 01 01 0 00}
test clock-3.309 {ISO week-based calendar 1970-W02-1} {
    clock format 345600 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1970-W02-1
} {Mon Monday 70 1970 1 01 02 1 01}
test clock-3.310 {ISO week-based calendar 1970-W53-1} {
    clock format 31190400 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1970-W53-1
} {Mon Monday 70 1970 1 52 53 1 52}
test clock-3.311 {ISO week-based calendar 1970-W53-5} {
    clock format 31536000 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1970-W53-5
} {Fri Friday 70 1970 5 00 53 5 00}
test clock-3.312 {ISO week-based calendar 1970-W53-6} {
    clock format 31622400 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1970-W53-6
} {Sat Saturday 70 1970 6 00 53 6 00}
test clock-3.313 {ISO week-based calendar 1970-W53-7} {
    clock format 31708800 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1970-W53-7
} {Sun Sunday 70 1970 7 01 53 0 00}
test clock-3.314 {ISO week-based calendar 1971-W01-1} {
    clock format 31795200 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1971-W01-1
} {Mon Monday 71 1971 1 01 01 1 01}
test clock-3.315 {ISO week-based calendar 1971-W01-6} {
    clock format 32227200 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1971-W01-6
} {Sat Saturday 71 1971 6 01 01 6 01}
test clock-3.316 {ISO week-based calendar 1971-W01-7} {
    clock format 32313600 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1971-W01-7
} {Sun Sunday 71 1971 7 02 01 0 01}
test clock-3.317 {ISO week-based calendar 1971-W02-1} {
    clock format 32400000 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1971-W02-1
} {Mon Monday 71 1971 1 02 02 1 02}
test clock-3.318 {ISO week-based calendar 1971-W52-1} {
    clock format 62640000 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1971-W52-1
} {Mon Monday 71 1971 1 52 52 1 52}
test clock-3.319 {ISO week-based calendar 1971-W52-6} {
    clock format 63072000 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1971-W52-6
} {Sat Saturday 71 1971 6 00 52 6 00}
test clock-3.320 {ISO week-based calendar 1971-W52-7} {
    clock format 63158400 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1971-W52-7
} {Sun Sunday 71 1971 7 01 52 0 00}
test clock-3.321 {ISO week-based calendar 1972-W01-1} {
    clock format 63244800 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1972-W01-1
} {Mon Monday 72 1972 1 01 01 1 01}
test clock-3.322 {ISO week-based calendar 1972-W01-6} {
    clock format 63676800 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1972-W01-6
} {Sat Saturday 72 1972 6 01 01 6 01}
test clock-3.323 {ISO week-based calendar 1972-W01-7} {
    clock format 63763200 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1972-W01-7
} {Sun Sunday 72 1972 7 02 01 0 01}
test clock-3.324 {ISO week-based calendar 1972-W02-1} {
    clock format 63849600 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1972-W02-1
} {Mon Monday 72 1972 1 02 02 1 02}
test clock-3.325 {ISO week-based calendar 1972-W52-1} {
    clock format 94089600 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1972-W52-1
} {Mon Monday 72 1972 1 52 52 1 52}
test clock-3.326 {ISO week-based calendar 1972-W52-6} {
    clock format 94521600 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1972-W52-6
} {Sat Saturday 72 1972 6 52 52 6 52}
test clock-3.327 {ISO week-based calendar 1972-W52-7} {
    clock format 94608000 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1972-W52-7
} {Sun Sunday 72 1972 7 53 52 0 52}
test clock-3.328 {ISO week-based calendar 1973-W01-1} {
    clock format 94694400 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1973-W01-1
} {Mon Monday 73 1973 1 00 01 1 01}
test clock-3.329 {ISO week-based calendar 1973-W01-6} {
    clock format 95126400 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1973-W01-6
} {Sat Saturday 73 1973 6 00 01 6 01}
test clock-3.330 {ISO week-based calendar 1973-W01-7} {
    clock format 95212800 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1973-W01-7
} {Sun Sunday 73 1973 7 01 01 0 01}
test clock-3.331 {ISO week-based calendar 1973-W02-1} {
    clock format 95299200 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1973-W02-1
} {Mon Monday 73 1973 1 01 02 1 02}
test clock-3.332 {ISO week-based calendar 1973-W52-1} {
    clock format 125539200 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1973-W52-1
} {Mon Monday 73 1973 1 51 52 1 52}
test clock-3.333 {ISO week-based calendar 1973-W52-6} {
    clock format 125971200 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1973-W52-6
} {Sat Saturday 73 1973 6 51 52 6 52}
test clock-3.334 {ISO week-based calendar 1973-W52-7} {
    clock format 126057600 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1973-W52-7
} {Sun Sunday 73 1973 7 52 52 0 52}
test clock-3.335 {ISO week-based calendar 1974-W01-1} {
    clock format 126144000 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1974-W01-1
} {Mon Monday 74 1974 1 52 01 1 53}
test clock-3.336 {ISO week-based calendar 1974-W01-2} {
    clock format 126230400 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1974-W01-2
} {Tue Tuesday 74 1974 2 00 01 2 00}
test clock-3.337 {ISO week-based calendar 1974-W01-6} {
    clock format 126576000 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1974-W01-6
} {Sat Saturday 74 1974 6 00 01 6 00}
test clock-3.338 {ISO week-based calendar 1974-W01-7} {
    clock format 126662400 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1974-W01-7
} {Sun Sunday 74 1974 7 01 01 0 00}
test clock-3.339 {ISO week-based calendar 1974-W02-1} {
    clock format 126748800 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1974-W02-1
} {Mon Monday 74 1974 1 01 02 1 01}
test clock-3.340 {ISO week-based calendar 1974-W52-1} {
    clock format 156988800 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1974-W52-1
} {Mon Monday 74 1974 1 51 52 1 51}
test clock-3.341 {ISO week-based calendar 1974-W52-6} {
    clock format 157420800 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1974-W52-6
} {Sat Saturday 74 1974 6 51 52 6 51}
test clock-3.342 {ISO week-based calendar 1974-W52-7} {
    clock format 157507200 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1974-W52-7
} {Sun Sunday 74 1974 7 52 52 0 51}
test clock-3.343 {ISO week-based calendar 1975-W01-1} {
    clock format 157593600 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1975-W01-1
} {Mon Monday 75 1975 1 52 01 1 52}
test clock-3.344 {ISO week-based calendar 1975-W01-3} {
    clock format 157766400 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1975-W01-3
} {Wed Wednesday 75 1975 3 00 01 3 00}
test clock-3.345 {ISO week-based calendar 1975-W01-6} {
    clock format 158025600 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1975-W01-6
} {Sat Saturday 75 1975 6 00 01 6 00}
test clock-3.346 {ISO week-based calendar 1975-W01-7} {
    clock format 158112000 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1975-W01-7
} {Sun Sunday 75 1975 7 01 01 0 00}
test clock-3.347 {ISO week-based calendar 1975-W02-1} {
    clock format 158198400 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1975-W02-1
} {Mon Monday 75 1975 1 01 02 1 01}
test clock-3.348 {ISO week-based calendar 1975-W52-1} {
    clock format 188438400 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1975-W52-1
} {Mon Monday 75 1975 1 51 52 1 51}
test clock-3.349 {ISO week-based calendar 1975-W52-6} {
    clock format 188870400 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1975-W52-6
} {Sat Saturday 75 1975 6 51 52 6 51}
test clock-3.350 {ISO week-based calendar 1975-W52-7} {
    clock format 188956800 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1975-W52-7
} {Sun Sunday 75 1975 7 52 52 0 51}
test clock-3.351 {ISO week-based calendar 1976-W01-1} {
    clock format 189043200 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1976-W01-1
} {Mon Monday 76 1976 1 52 01 1 52}
test clock-3.352 {ISO week-based calendar 1976-W01-4} {
    clock format 189302400 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1976-W01-4
} {Thu Thursday 76 1976 4 00 01 4 00}
test clock-3.353 {ISO week-based calendar 1976-W01-6} {
    clock format 189475200 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1976-W01-6
} {Sat Saturday 76 1976 6 00 01 6 00}
test clock-3.354 {ISO week-based calendar 1976-W01-7} {
    clock format 189561600 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1976-W01-7
} {Sun Sunday 76 1976 7 01 01 0 00}
test clock-3.355 {ISO week-based calendar 1976-W02-1} {
    clock format 189648000 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1976-W02-1
} {Mon Monday 76 1976 1 01 02 1 01}
test clock-3.356 {ISO week-based calendar 1976-W53-1} {
    clock format 220492800 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1976-W53-1
} {Mon Monday 76 1976 1 52 53 1 52}
test clock-3.357 {ISO week-based calendar 1976-W53-6} {
    clock format 220924800 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1976-W53-6
} {Sat Saturday 76 1976 6 00 53 6 00}
test clock-3.358 {ISO week-based calendar 1976-W53-7} {
    clock format 221011200 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1976-W53-7
} {Sun Sunday 76 1976 7 01 53 0 00}
test clock-3.359 {ISO week-based calendar 1977-W01-1} {
    clock format 221097600 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1977-W01-1
} {Mon Monday 77 1977 1 01 01 1 01}
test clock-3.360 {ISO week-based calendar 1977-W01-6} {
    clock format 221529600 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1977-W01-6
} {Sat Saturday 77 1977 6 01 01 6 01}
test clock-3.361 {ISO week-based calendar 1977-W01-7} {
    clock format 221616000 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1977-W01-7
} {Sun Sunday 77 1977 7 02 01 0 01}
test clock-3.362 {ISO week-based calendar 1977-W02-1} {
    clock format 221702400 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1977-W02-1
} {Mon Monday 77 1977 1 02 02 1 02}
test clock-3.363 {ISO week-based calendar 1977-W52-1} {
    clock format 251942400 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1977-W52-1
} {Mon Monday 77 1977 1 52 52 1 52}
test clock-3.364 {ISO week-based calendar 1977-W52-6} {
    clock format 252374400 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1977-W52-6
} {Sat Saturday 77 1977 6 52 52 6 52}
test clock-3.365 {ISO week-based calendar 1977-W52-7} {
    clock format 252460800 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1977-W52-7
} {Sun Sunday 77 1977 7 01 52 0 00}
test clock-3.366 {ISO week-based calendar 1978-W01-1} {
    clock format 252547200 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1978-W01-1
} {Mon Monday 78 1978 1 01 01 1 01}
test clock-3.367 {ISO week-based calendar 1978-W01-6} {
    clock format 252979200 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1978-W01-6
} {Sat Saturday 78 1978 6 01 01 6 01}
test clock-3.368 {ISO week-based calendar 1978-W01-7} {
    clock format 253065600 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1978-W01-7
} {Sun Sunday 78 1978 7 02 01 0 01}
test clock-3.369 {ISO week-based calendar 1978-W02-1} {
    clock format 253152000 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1978-W02-1
} {Mon Monday 78 1978 1 02 02 1 02}
test clock-3.370 {ISO week-based calendar 1978-W52-1} {
    clock format 283392000 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1978-W52-1
} {Mon Monday 78 1978 1 52 52 1 52}
test clock-3.371 {ISO week-based calendar 1978-W52-6} {
    clock format 283824000 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1978-W52-6
} {Sat Saturday 78 1978 6 52 52 6 52}
test clock-3.372 {ISO week-based calendar 1978-W52-7} {
    clock format 283910400 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1978-W52-7
} {Sun Sunday 78 1978 7 53 52 0 52}
test clock-3.373 {ISO week-based calendar 1979-W01-1} {
    clock format 283996800 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1979-W01-1
} {Mon Monday 79 1979 1 00 01 1 01}
test clock-3.374 {ISO week-based calendar 1979-W01-6} {
    clock format 284428800 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1979-W01-6
} {Sat Saturday 79 1979 6 00 01 6 01}
test clock-3.375 {ISO week-based calendar 1979-W01-7} {
    clock format 284515200 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1979-W01-7
} {Sun Sunday 79 1979 7 01 01 0 01}
test clock-3.376 {ISO week-based calendar 1979-W02-1} {
    clock format 284601600 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1979-W02-1
} {Mon Monday 79 1979 1 01 02 1 02}
test clock-3.377 {ISO week-based calendar 1979-W52-1} {
    clock format 314841600 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1979-W52-1
} {Mon Monday 79 1979 1 51 52 1 52}
test clock-3.378 {ISO week-based calendar 1979-W52-6} {
    clock format 315273600 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1979-W52-6
} {Sat Saturday 79 1979 6 51 52 6 52}
test clock-3.379 {ISO week-based calendar 1979-W52-7} {
    clock format 315360000 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1979-W52-7
} {Sun Sunday 79 1979 7 52 52 0 52}
test clock-3.380 {ISO week-based calendar 1980-W01-1} {
    clock format 315446400 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1980-W01-1
} {Mon Monday 80 1980 1 52 01 1 53}
test clock-3.381 {ISO week-based calendar 1980-W01-2} {
    clock format 315532800 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1980-W01-2
} {Tue Tuesday 80 1980 2 00 01 2 00}
test clock-3.382 {ISO week-based calendar 1980-W01-6} {
    clock format 315878400 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1980-W01-6
} {Sat Saturday 80 1980 6 00 01 6 00}
test clock-3.383 {ISO week-based calendar 1980-W01-7} {
    clock format 315964800 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1980-W01-7
} {Sun Sunday 80 1980 7 01 01 0 00}
test clock-3.384 {ISO week-based calendar 1980-W02-1} {
    clock format 316051200 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1980-W02-1
} {Mon Monday 80 1980 1 01 02 1 01}
test clock-3.385 {ISO week-based calendar 1980-W52-1} {
    clock format 346291200 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1980-W52-1
} {Mon Monday 80 1980 1 51 52 1 51}
test clock-3.386 {ISO week-based calendar 1980-W52-6} {
    clock format 346723200 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1980-W52-6
} {Sat Saturday 80 1980 6 51 52 6 51}
test clock-3.387 {ISO week-based calendar 1980-W52-7} {
    clock format 346809600 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1980-W52-7
} {Sun Sunday 80 1980 7 52 52 0 51}
test clock-3.388 {ISO week-based calendar 1981-W01-1} {
    clock format 346896000 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1981-W01-1
} {Mon Monday 81 1981 1 52 01 1 52}
test clock-3.389 {ISO week-based calendar 1981-W01-4} {
    clock format 347155200 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1981-W01-4
} {Thu Thursday 81 1981 4 00 01 4 00}
test clock-3.390 {ISO week-based calendar 1981-W01-6} {
    clock format 347328000 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1981-W01-6
} {Sat Saturday 81 1981 6 00 01 6 00}
test clock-3.391 {ISO week-based calendar 1981-W01-7} {
    clock format 347414400 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1981-W01-7
} {Sun Sunday 81 1981 7 01 01 0 00}
test clock-3.392 {ISO week-based calendar 1981-W02-1} {
    clock format 347500800 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1981-W02-1
} {Mon Monday 81 1981 1 01 02 1 01}
test clock-3.393 {ISO week-based calendar 1983-W52-1} {
    clock format 441244800 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1983-W52-1
} {Mon Monday 83 1983 1 52 52 1 52}
test clock-3.394 {ISO week-based calendar 1983-W52-6} {
    clock format 441676800 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1983-W52-6
} {Sat Saturday 83 1983 6 52 52 6 52}
test clock-3.395 {ISO week-based calendar 1983-W52-7} {
    clock format 441763200 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1983-W52-7
} {Sun Sunday 83 1983 7 01 52 0 00}
test clock-3.396 {ISO week-based calendar 1984-W01-1} {
    clock format 441849600 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1984-W01-1
} {Mon Monday 84 1984 1 01 01 1 01}
test clock-3.397 {ISO week-based calendar 1984-W01-6} {
    clock format 442281600 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1984-W01-6
} {Sat Saturday 84 1984 6 01 01 6 01}
test clock-3.398 {ISO week-based calendar 1984-W01-7} {
    clock format 442368000 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1984-W01-7
} {Sun Sunday 84 1984 7 02 01 0 01}
test clock-3.399 {ISO week-based calendar 1984-W02-1} {
    clock format 442454400 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1984-W02-1
} {Mon Monday 84 1984 1 02 02 1 02}
test clock-3.400 {ISO week-based calendar 1984-W52-1} {
    clock format 472694400 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1984-W52-1
} {Mon Monday 84 1984 1 52 52 1 52}
test clock-3.401 {ISO week-based calendar 1984-W52-6} {
    clock format 473126400 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1984-W52-6
} {Sat Saturday 84 1984 6 52 52 6 52}
test clock-3.402 {ISO week-based calendar 1984-W52-7} {
    clock format 473212800 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1984-W52-7
} {Sun Sunday 84 1984 7 53 52 0 52}
test clock-3.403 {ISO week-based calendar 1985-W01-1} {
    clock format 473299200 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1985-W01-1
} {Mon Monday 85 1985 1 53 01 1 53}
test clock-3.404 {ISO week-based calendar 1985-W01-2} {
    clock format 473385600 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1985-W01-2
} {Tue Tuesday 85 1985 2 00 01 2 00}
test clock-3.405 {ISO week-based calendar 1985-W01-6} {
    clock format 473731200 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1985-W01-6
} {Sat Saturday 85 1985 6 00 01 6 00}
test clock-3.406 {ISO week-based calendar 1985-W01-7} {
    clock format 473817600 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1985-W01-7
} {Sun Sunday 85 1985 7 01 01 0 00}
test clock-3.407 {ISO week-based calendar 1985-W02-1} {
    clock format 473904000 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1985-W02-1
} {Mon Monday 85 1985 1 01 02 1 01}
test clock-3.408 {ISO week-based calendar 1987-W53-1} {
    clock format 567648000 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1987-W53-1
} {Mon Monday 87 1987 1 52 53 1 52}
test clock-3.409 {ISO week-based calendar 1987-W53-5} {
    clock format 567993600 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1987-W53-5
} {Fri Friday 87 1987 5 00 53 5 00}
test clock-3.410 {ISO week-based calendar 1987-W53-6} {
    clock format 568080000 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1987-W53-6
} {Sat Saturday 87 1987 6 00 53 6 00}
test clock-3.411 {ISO week-based calendar 1987-W53-7} {
    clock format 568166400 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1987-W53-7
} {Sun Sunday 87 1987 7 01 53 0 00}
test clock-3.412 {ISO week-based calendar 1988-W01-1} {
    clock format 568252800 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1988-W01-1
} {Mon Monday 88 1988 1 01 01 1 01}
test clock-3.413 {ISO week-based calendar 1988-W01-6} {
    clock format 568684800 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1988-W01-6
} {Sat Saturday 88 1988 6 01 01 6 01}
test clock-3.414 {ISO week-based calendar 1988-W01-7} {
    clock format 568771200 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1988-W01-7
} {Sun Sunday 88 1988 7 02 01 0 01}
test clock-3.415 {ISO week-based calendar 1988-W02-1} {
    clock format 568857600 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1988-W02-1
} {Mon Monday 88 1988 1 02 02 1 02}
test clock-3.416 {ISO week-based calendar 1988-W52-1} {
    clock format 599097600 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1988-W52-1
} {Mon Monday 88 1988 1 52 52 1 52}
test clock-3.417 {ISO week-based calendar 1988-W52-6} {
    clock format 599529600 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1988-W52-6
} {Sat Saturday 88 1988 6 52 52 6 52}
test clock-3.418 {ISO week-based calendar 1988-W52-7} {
    clock format 599616000 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1988-W52-7
} {Sun Sunday 88 1988 7 01 52 0 00}
test clock-3.419 {ISO week-based calendar 1989-W01-1} {
    clock format 599702400 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1989-W01-1
} {Mon Monday 89 1989 1 01 01 1 01}
test clock-3.420 {ISO week-based calendar 1989-W01-6} {
    clock format 600134400 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1989-W01-6
} {Sat Saturday 89 1989 6 01 01 6 01}
test clock-3.421 {ISO week-based calendar 1989-W01-7} {
    clock format 600220800 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1989-W01-7
} {Sun Sunday 89 1989 7 02 01 0 01}
test clock-3.422 {ISO week-based calendar 1989-W02-1} {
    clock format 600307200 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1989-W02-1
} {Mon Monday 89 1989 1 02 02 1 02}
test clock-3.423 {ISO week-based calendar 1991-W52-1} {
    clock format 693446400 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1991-W52-1
} {Mon Monday 91 1991 1 51 52 1 51}
test clock-3.424 {ISO week-based calendar 1991-W52-6} {
    clock format 693878400 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1991-W52-6
} {Sat Saturday 91 1991 6 51 52 6 51}
test clock-3.425 {ISO week-based calendar 1991-W52-7} {
    clock format 693964800 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1991-W52-7
} {Sun Sunday 91 1991 7 52 52 0 51}
test clock-3.426 {ISO week-based calendar 1992-W01-1} {
    clock format 694051200 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1992-W01-1
} {Mon Monday 92 1992 1 52 01 1 52}
test clock-3.427 {ISO week-based calendar 1992-W01-3} {
    clock format 694224000 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1992-W01-3
} {Wed Wednesday 92 1992 3 00 01 3 00}
test clock-3.428 {ISO week-based calendar 1992-W01-6} {
    clock format 694483200 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1992-W01-6
} {Sat Saturday 92 1992 6 00 01 6 00}
test clock-3.429 {ISO week-based calendar 1992-W01-7} {
    clock format 694569600 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1992-W01-7
} {Sun Sunday 92 1992 7 01 01 0 00}
test clock-3.430 {ISO week-based calendar 1992-W02-1} {
    clock format 694656000 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1992-W02-1
} {Mon Monday 92 1992 1 01 02 1 01}
test clock-3.431 {ISO week-based calendar 1992-W53-1} {
    clock format 725500800 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1992-W53-1
} {Mon Monday 92 1992 1 52 53 1 52}
test clock-3.432 {ISO week-based calendar 1992-W53-5} {
    clock format 725846400 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1992-W53-5
} {Fri Friday 92 1992 5 00 53 5 00}
test clock-3.433 {ISO week-based calendar 1992-W53-6} {
    clock format 725932800 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1992-W53-6
} {Sat Saturday 92 1992 6 00 53 6 00}
test clock-3.434 {ISO week-based calendar 1992-W53-7} {
    clock format 726019200 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1992-W53-7
} {Sun Sunday 92 1992 7 01 53 0 00}
test clock-3.435 {ISO week-based calendar 1993-W01-1} {
    clock format 726105600 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1993-W01-1
} {Mon Monday 93 1993 1 01 01 1 01}
test clock-3.436 {ISO week-based calendar 1993-W01-6} {
    clock format 726537600 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1993-W01-6
} {Sat Saturday 93 1993 6 01 01 6 01}
test clock-3.437 {ISO week-based calendar 1993-W01-7} {
    clock format 726624000 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1993-W01-7
} {Sun Sunday 93 1993 7 02 01 0 01}
test clock-3.438 {ISO week-based calendar 1993-W02-1} {
    clock format 726710400 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1993-W02-1
} {Mon Monday 93 1993 1 02 02 1 02}
test clock-3.439 {ISO week-based calendar 1995-W52-1} {
    clock format 819849600 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1995-W52-1
} {Mon Monday 95 1995 1 52 52 1 52}
test clock-3.440 {ISO week-based calendar 1995-W52-6} {
    clock format 820281600 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1995-W52-6
} {Sat Saturday 95 1995 6 52 52 6 52}
test clock-3.441 {ISO week-based calendar 1995-W52-7} {
    clock format 820368000 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1995-W52-7
} {Sun Sunday 95 1995 7 53 52 0 52}
test clock-3.442 {ISO week-based calendar 1996-W01-1} {
    clock format 820454400 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1996-W01-1
} {Mon Monday 96 1996 1 00 01 1 01}
test clock-3.443 {ISO week-based calendar 1996-W01-6} {
    clock format 820886400 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1996-W01-6
} {Sat Saturday 96 1996 6 00 01 6 01}
test clock-3.444 {ISO week-based calendar 1996-W01-7} {
    clock format 820972800 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1996-W01-7
} {Sun Sunday 96 1996 7 01 01 0 01}
test clock-3.445 {ISO week-based calendar 1996-W02-1} {
    clock format 821059200 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1996-W02-1
} {Mon Monday 96 1996 1 01 02 1 02}
test clock-3.446 {ISO week-based calendar 1996-W52-1} {
    clock format 851299200 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1996-W52-1
} {Mon Monday 96 1996 1 51 52 1 52}
test clock-3.447 {ISO week-based calendar 1996-W52-6} {
    clock format 851731200 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1996-W52-6
} {Sat Saturday 96 1996 6 51 52 6 52}
test clock-3.448 {ISO week-based calendar 1996-W52-7} {
    clock format 851817600 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1996-W52-7
} {Sun Sunday 96 1996 7 52 52 0 52}
test clock-3.449 {ISO week-based calendar 1997-W01-1} {
    clock format 851904000 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1997-W01-1
} {Mon Monday 97 1997 1 52 01 1 53}
test clock-3.450 {ISO week-based calendar 1997-W01-3} {
    clock format 852076800 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1997-W01-3
} {Wed Wednesday 97 1997 3 00 01 3 00}
test clock-3.451 {ISO week-based calendar 1997-W01-6} {
    clock format 852336000 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1997-W01-6
} {Sat Saturday 97 1997 6 00 01 6 00}
test clock-3.452 {ISO week-based calendar 1997-W01-7} {
    clock format 852422400 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1997-W01-7
} {Sun Sunday 97 1997 7 01 01 0 00}
test clock-3.453 {ISO week-based calendar 1997-W02-1} {
    clock format 852508800 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1997-W02-1
} {Mon Monday 97 1997 1 01 02 1 01}
test clock-3.454 {ISO week-based calendar 1999-W52-1} {
    clock format 946252800 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1999-W52-1
} {Mon Monday 99 1999 1 52 52 1 52}
test clock-3.455 {ISO week-based calendar 1999-W52-6} {
    clock format 946684800 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1999-W52-6
} {Sat Saturday 99 1999 6 00 52 6 00}
test clock-3.456 {ISO week-based calendar 1999-W52-7} {
    clock format 946771200 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1999-W52-7
} {Sun Sunday 99 1999 7 01 52 0 00}
test clock-3.457 {ISO week-based calendar 2000-W01-1} {
    clock format 946857600 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 2000-W01-1
} {Mon Monday 00 2000 1 01 01 1 01}
test clock-3.458 {ISO week-based calendar 2000-W01-6} {
    clock format 947289600 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 2000-W01-6
} {Sat Saturday 00 2000 6 01 01 6 01}
test clock-3.459 {ISO week-based calendar 2000-W01-7} {
    clock format 947376000 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 2000-W01-7
} {Sun Sunday 00 2000 7 02 01 0 01}
test clock-3.460 {ISO week-based calendar 2000-W02-1} {
    clock format 947462400 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 2000-W02-1
} {Mon Monday 00 2000 1 02 02 1 02}
test clock-3.461 {ISO week-based calendar 2000-W52-1} {
    clock format 977702400 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 2000-W52-1
} {Mon Monday 00 2000 1 52 52 1 52}
test clock-3.462 {ISO week-based calendar 2000-W52-6} {
    clock format 978134400 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 2000-W52-6
} {Sat Saturday 00 2000 6 52 52 6 52}
test clock-3.463 {ISO week-based calendar 2000-W52-7} {
    clock format 978220800 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 2000-W52-7
} {Sun Sunday 00 2000 7 53 52 0 52}
test clock-3.464 {ISO week-based calendar 2001-W01-1} {
    clock format 978307200 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 2001-W01-1
} {Mon Monday 01 2001 1 00 01 1 01}
test clock-3.465 {ISO week-based calendar 2001-W01-6} {
    clock format 978739200 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 2001-W01-6
} {Sat Saturday 01 2001 6 00 01 6 01}
test clock-3.466 {ISO week-based calendar 2001-W01-7} {
    clock format 978825600 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 2001-W01-7
} {Sun Sunday 01 2001 7 01 01 0 01}
test clock-3.467 {ISO week-based calendar 2001-W02-1} {
    clock format 978912000 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 2001-W02-1
} {Mon Monday 01 2001 1 01 02 1 02}
test clock-3.468 {ISO week-based calendar 2001-W52-1} {
    clock format 1009152000 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 2001-W52-1
} {Mon Monday 01 2001 1 51 52 1 52}
test clock-3.469 {ISO week-based calendar 2001-W52-6} {
    clock format 1009584000 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 2001-W52-6
} {Sat Saturday 01 2001 6 51 52 6 52}
test clock-3.470 {ISO week-based calendar 2001-W52-7} {
    clock format 1009670400 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 2001-W52-7
} {Sun Sunday 01 2001 7 52 52 0 52}
test clock-3.471 {ISO week-based calendar 2002-W01-1} {
    clock format 1009756800 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 2002-W01-1
} {Mon Monday 02 2002 1 52 01 1 53}
test clock-3.472 {ISO week-based calendar 2002-W01-2} {
    clock format 1009843200 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 2002-W01-2
} {Tue Tuesday 02 2002 2 00 01 2 00}
test clock-3.473 {ISO week-based calendar 2002-W01-6} {
    clock format 1010188800 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 2002-W01-6
} {Sat Saturday 02 2002 6 00 01 6 00}
test clock-3.474 {ISO week-based calendar 2002-W01-7} {
    clock format 1010275200 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 2002-W01-7
} {Sun Sunday 02 2002 7 01 01 0 00}
test clock-3.475 {ISO week-based calendar 2002-W02-1} {
    clock format 1010361600 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 2002-W02-1
} {Mon Monday 02 2002 1 01 02 1 01}
test clock-3.476 {ISO week-based calendar 2002-W52-1} {
    clock format 1040601600 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 2002-W52-1
} {Mon Monday 02 2002 1 51 52 1 51}
test clock-3.477 {ISO week-based calendar 2002-W52-6} {
    clock format 1041033600 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 2002-W52-6
} {Sat Saturday 02 2002 6 51 52 6 51}
test clock-3.478 {ISO week-based calendar 2002-W52-7} {
    clock format 1041120000 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 2002-W52-7
} {Sun Sunday 02 2002 7 52 52 0 51}
test clock-3.479 {ISO week-based calendar 2003-W01-1} {
    clock format 1041206400 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 2003-W01-1
} {Mon Monday 03 2003 1 52 01 1 52}
test clock-3.480 {ISO week-based calendar 2003-W01-3} {
    clock format 1041379200 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 2003-W01-3
} {Wed Wednesday 03 2003 3 00 01 3 00}
test clock-3.481 {ISO week-based calendar 2003-W01-6} {
    clock format 1041638400 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 2003-W01-6
} {Sat Saturday 03 2003 6 00 01 6 00}
test clock-3.482 {ISO week-based calendar 2003-W01-7} {
    clock format 1041724800 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 2003-W01-7
} {Sun Sunday 03 2003 7 01 01 0 00}
test clock-3.483 {ISO week-based calendar 2003-W02-1} {
    clock format 1041811200 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 2003-W02-1
} {Mon Monday 03 2003 1 01 02 1 01}
test clock-3.484 {ISO week-based calendar 2003-W52-1} {
    clock format 1072051200 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 2003-W52-1
} {Mon Monday 03 2003 1 51 52 1 51}
test clock-3.485 {ISO week-based calendar 2003-W52-6} {
    clock format 1072483200 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 2003-W52-6
} {Sat Saturday 03 2003 6 51 52 6 51}
test clock-3.486 {ISO week-based calendar 2003-W52-7} {
    clock format 1072569600 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 2003-W52-7
} {Sun Sunday 03 2003 7 52 52 0 51}
test clock-3.487 {ISO week-based calendar 2004-W01-1} {
    clock format 1072656000 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 2004-W01-1
} {Mon Monday 04 2004 1 52 01 1 52}
test clock-3.488 {ISO week-based calendar 2004-W01-4} {
    clock format 1072915200 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 2004-W01-4
} {Thu Thursday 04 2004 4 00 01 4 00}
test clock-3.489 {ISO week-based calendar 2004-W01-6} {
    clock format 1073088000 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 2004-W01-6
} {Sat Saturday 04 2004 6 00 01 6 00}
test clock-3.490 {ISO week-based calendar 2004-W01-7} {
    clock format 1073174400 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 2004-W01-7
} {Sun Sunday 04 2004 7 01 01 0 00}
test clock-3.491 {ISO week-based calendar 2004-W02-1} {
    clock format 1073260800 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 2004-W02-1
} {Mon Monday 04 2004 1 01 02 1 01}
test clock-3.492 {ISO week-based calendar 2004-W53-1} {
    clock format 1104105600 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 2004-W53-1
} {Mon Monday 04 2004 1 52 53 1 52}
test clock-3.493 {ISO week-based calendar 2004-W53-6} {
    clock format 1104537600 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 2004-W53-6
} {Sat Saturday 04 2004 6 00 53 6 00}
test clock-3.494 {ISO week-based calendar 2004-W53-7} {
    clock format 1104624000 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 2004-W53-7
} {Sun Sunday 04 2004 7 01 53 0 00}
test clock-3.495 {ISO week-based calendar 2005-W01-1} {
    clock format 1104710400 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 2005-W01-1
} {Mon Monday 05 2005 1 01 01 1 01}
test clock-3.496 {ISO week-based calendar 2005-W01-6} {
    clock format 1105142400 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 2005-W01-6
} {Sat Saturday 05 2005 6 01 01 6 01}
test clock-3.497 {ISO week-based calendar 2005-W01-7} {
    clock format 1105228800 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 2005-W01-7
} {Sun Sunday 05 2005 7 02 01 0 01}
test clock-3.498 {ISO week-based calendar 2005-W02-1} {
    clock format 1105315200 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 2005-W02-1
} {Mon Monday 05 2005 1 02 02 1 02}
test clock-3.499 {ISO week-based calendar 2005-W52-1} {
    clock format 1135555200 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 2005-W52-1
} {Mon Monday 05 2005 1 52 52 1 52}
test clock-3.500 {ISO week-based calendar 2005-W52-6} {
    clock format 1135987200 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 2005-W52-6
} {Sat Saturday 05 2005 6 52 52 6 52}
test clock-3.501 {ISO week-based calendar 2005-W52-7} {
    clock format 1136073600 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 2005-W52-7
} {Sun Sunday 05 2005 7 01 52 0 00}
test clock-3.502 {ISO week-based calendar 2006-W01-1} {
    clock format 1136160000 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 2006-W01-1
} {Mon Monday 06 2006 1 01 01 1 01}
test clock-3.503 {ISO week-based calendar 2006-W01-6} {
    clock format 1136592000 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 2006-W01-6
} {Sat Saturday 06 2006 6 01 01 6 01}
test clock-3.504 {ISO week-based calendar 2006-W01-7} {
    clock format 1136678400 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 2006-W01-7
} {Sun Sunday 06 2006 7 02 01 0 01}
test clock-3.505 {ISO week-based calendar 2006-W02-1} {
    clock format 1136764800 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 2006-W02-1
} {Mon Monday 06 2006 1 02 02 1 02}
test clock-3.506 {ISO week-based calendar 2006-W52-1} {
    clock format 1167004800 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 2006-W52-1
} {Mon Monday 06 2006 1 52 52 1 52}
test clock-3.507 {ISO week-based calendar 2006-W52-6} {
    clock format 1167436800 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 2006-W52-6
} {Sat Saturday 06 2006 6 52 52 6 52}
test clock-3.508 {ISO week-based calendar 2006-W52-7} {
    clock format 1167523200 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 2006-W52-7
} {Sun Sunday 06 2006 7 53 52 0 52}
test clock-3.509 {ISO week-based calendar 2007-W01-1} {
    clock format 1167609600 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 2007-W01-1
} {Mon Monday 07 2007 1 00 01 1 01}
test clock-3.510 {ISO week-based calendar 2007-W01-6} {
    clock format 1168041600 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 2007-W01-6
} {Sat Saturday 07 2007 6 00 01 6 01}
test clock-3.511 {ISO week-based calendar 2007-W01-7} {
    clock format 1168128000 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 2007-W01-7
} {Sun Sunday 07 2007 7 01 01 0 01}
test clock-3.512 {ISO week-based calendar 2007-W02-1} {
    clock format 1168214400 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 2007-W02-1
} {Mon Monday 07 2007 1 01 02 1 02}
test clock-3.513 {ISO week-based calendar 2007-W52-1} {
    clock format 1198454400 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 2007-W52-1
} {Mon Monday 07 2007 1 51 52 1 52}
test clock-3.514 {ISO week-based calendar 2007-W52-6} {
    clock format 1198886400 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 2007-W52-6
} {Sat Saturday 07 2007 6 51 52 6 52}
test clock-3.515 {ISO week-based calendar 2007-W52-7} {
    clock format 1198972800 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 2007-W52-7
} {Sun Sunday 07 2007 7 52 52 0 52}
test clock-3.516 {ISO week-based calendar 2008-W01-1} {
    clock format 1199059200 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 2008-W01-1
} {Mon Monday 08 2008 1 52 01 1 53}
test clock-3.517 {ISO week-based calendar 2008-W01-2} {
    clock format 1199145600 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 2008-W01-2
} {Tue Tuesday 08 2008 2 00 01 2 00}
test clock-3.518 {ISO week-based calendar 2008-W01-6} {
    clock format 1199491200 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 2008-W01-6
} {Sat Saturday 08 2008 6 00 01 6 00}
test clock-3.519 {ISO week-based calendar 2008-W01-7} {
    clock format 1199577600 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 2008-W01-7
} {Sun Sunday 08 2008 7 01 01 0 00}
test clock-3.520 {ISO week-based calendar 2008-W02-1} {
    clock format 1199664000 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 2008-W02-1
} {Mon Monday 08 2008 1 01 02 1 01}
test clock-3.521 {ISO week-based calendar 2008-W52-1} {
    clock format 1229904000 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 2008-W52-1
} {Mon Monday 08 2008 1 51 52 1 51}
test clock-3.522 {ISO week-based calendar 2008-W52-6} {
    clock format 1230336000 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 2008-W52-6
} {Sat Saturday 08 2008 6 51 52 6 51}
test clock-3.523 {ISO week-based calendar 2008-W52-7} {
    clock format 1230422400 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 2008-W52-7
} {Sun Sunday 08 2008 7 52 52 0 51}
test clock-3.524 {ISO week-based calendar 2009-W01-1} {
    clock format 1230508800 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 2009-W01-1
} {Mon Monday 09 2009 1 52 01 1 52}
test clock-3.525 {ISO week-based calendar 2009-W01-4} {
    clock format 1230768000 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 2009-W01-4
} {Thu Thursday 09 2009 4 00 01 4 00}
test clock-3.526 {ISO week-based calendar 2009-W01-6} {
    clock format 1230940800 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 2009-W01-6
} {Sat Saturday 09 2009 6 00 01 6 00}
test clock-3.527 {ISO week-based calendar 2009-W01-7} {
    clock format 1231027200 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 2009-W01-7
} {Sun Sunday 09 2009 7 01 01 0 00}
test clock-3.528 {ISO week-based calendar 2009-W02-1} {
    clock format 1231113600 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 2009-W02-1
} {Mon Monday 09 2009 1 01 02 1 01}
test clock-3.529 {ISO week-based calendar 2009-W53-1} {
    clock format 1261958400 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 2009-W53-1
} {Mon Monday 09 2009 1 52 53 1 52}
test clock-3.530 {ISO week-based calendar 2009-W53-5} {
    clock format 1262304000 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 2009-W53-5
} {Fri Friday 09 2009 5 00 53 5 00}
test clock-3.531 {ISO week-based calendar 2009-W53-6} {
    clock format 1262390400 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 2009-W53-6
} {Sat Saturday 09 2009 6 00 53 6 00}
test clock-3.532 {ISO week-based calendar 2009-W53-7} {
    clock format 1262476800 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 2009-W53-7
} {Sun Sunday 09 2009 7 01 53 0 00}
test clock-3.533 {ISO week-based calendar 2010-W01-1} {
    clock format 1262563200 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 2010-W01-1
} {Mon Monday 10 2010 1 01 01 1 01}
test clock-3.534 {ISO week-based calendar 2010-W01-6} {
    clock format 1262995200 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 2010-W01-6
} {Sat Saturday 10 2010 6 01 01 6 01}
test clock-3.535 {ISO week-based calendar 2010-W01-7} {
    clock format 1263081600 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 2010-W01-7
} {Sun Sunday 10 2010 7 02 01 0 01}
test clock-3.536 {ISO week-based calendar 2010-W02-1} {
    clock format 1263168000 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 2010-W02-1
} {Mon Monday 10 2010 1 02 02 1 02}
test clock-3.537 {ISO week-based calendar 2010-W52-1} {
    clock format 1293408000 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 2010-W52-1
} {Mon Monday 10 2010 1 52 52 1 52}
test clock-3.538 {ISO week-based calendar 2010-W52-6} {
    clock format 1293840000 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 2010-W52-6
} {Sat Saturday 10 2010 6 00 52 6 00}
test clock-3.539 {ISO week-based calendar 2010-W52-7} {
    clock format 1293926400 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 2010-W52-7
} {Sun Sunday 10 2010 7 01 52 0 00}
test clock-3.540 {ISO week-based calendar 2011-W01-1} {
    clock format 1294012800 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 2011-W01-1
} {Mon Monday 11 2011 1 01 01 1 01}
test clock-3.541 {ISO week-based calendar 2011-W01-6} {
    clock format 1294444800 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 2011-W01-6
} {Sat Saturday 11 2011 6 01 01 6 01}
test clock-3.542 {ISO week-based calendar 2011-W01-7} {
    clock format 1294531200 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 2011-W01-7
} {Sun Sunday 11 2011 7 02 01 0 01}
test clock-3.543 {ISO week-based calendar 2011-W02-1} {
    clock format 1294617600 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 2011-W02-1
} {Mon Monday 11 2011 1 02 02 1 02}
test clock-3.544 {ISO week-based calendar 2011-W52-1} {
    clock format 1324857600 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 2011-W52-1
} {Mon Monday 11 2011 1 52 52 1 52}
test clock-3.545 {ISO week-based calendar 2011-W52-6} {
    clock format 1325289600 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 2011-W52-6
} {Sat Saturday 11 2011 6 52 52 6 52}
test clock-3.546 {ISO week-based calendar 2011-W52-7} {
    clock format 1325376000 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 2011-W52-7
} {Sun Sunday 11 2011 7 01 52 0 00}
test clock-3.547 {ISO week-based calendar 2012-W01-1} {
    clock format 1325462400 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 2012-W01-1
} {Mon Monday 12 2012 1 01 01 1 01}
test clock-3.548 {ISO week-based calendar 2012-W01-6} {
    clock format 1325894400 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 2012-W01-6
} {Sat Saturday 12 2012 6 01 01 6 01}
test clock-3.549 {ISO week-based calendar 2012-W01-7} {
    clock format 1325980800 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 2012-W01-7
} {Sun Sunday 12 2012 7 02 01 0 01}
test clock-3.550 {ISO week-based calendar 2012-W02-1} {
    clock format 1326067200 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 2012-W02-1
} {Mon Monday 12 2012 1 02 02 1 02}
test clock-3.551 {ISO week-based calendar 2012-W52-1} {
    clock format 1356307200 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 2012-W52-1
} {Mon Monday 12 2012 1 52 52 1 52}
test clock-3.552 {ISO week-based calendar 2012-W52-6} {
    clock format 1356739200 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 2012-W52-6
} {Sat Saturday 12 2012 6 52 52 6 52}
test clock-3.553 {ISO week-based calendar 2012-W52-7} {
    clock format 1356825600 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 2012-W52-7
} {Sun Sunday 12 2012 7 53 52 0 52}
test clock-3.554 {ISO week-based calendar 2013-W01-1} {
    clock format 1356912000 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 2013-W01-1
} {Mon Monday 13 2013 1 53 01 1 53}
test clock-3.555 {ISO week-based calendar 2013-W01-2} {
    clock format 1356998400 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 2013-W01-2
} {Tue Tuesday 13 2013 2 00 01 2 00}
test clock-3.556 {ISO week-based calendar 2013-W01-6} {
    clock format 1357344000 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 2013-W01-6
} {Sat Saturday 13 2013 6 00 01 6 00}
test clock-3.557 {ISO week-based calendar 2013-W01-7} {
    clock format 1357430400 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 2013-W01-7
} {Sun Sunday 13 2013 7 01 01 0 00}
test clock-3.558 {ISO week-based calendar 2013-W02-1} {
    clock format 1357516800 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 2013-W02-1
} {Mon Monday 13 2013 1 01 02 1 01}
test clock-3.559 {ISO week-based calendar 2015-W53-1} {
    clock format 1451260800 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 2015-W53-1
} {Mon Monday 15 2015 1 52 53 1 52}
test clock-3.560 {ISO week-based calendar 2015-W53-5} {
    clock format 1451606400 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 2015-W53-5
} {Fri Friday 15 2015 5 00 53 5 00}
test clock-3.561 {ISO week-based calendar 2015-W53-6} {
    clock format 1451692800 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 2015-W53-6
} {Sat Saturday 15 2015 6 00 53 6 00}
test clock-3.562 {ISO week-based calendar 2015-W53-7} {
    clock format 1451779200 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 2015-W53-7
} {Sun Sunday 15 2015 7 01 53 0 00}
test clock-3.563 {ISO week-based calendar 2016-W01-1} {
    clock format 1451865600 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 2016-W01-1
} {Mon Monday 16 2016 1 01 01 1 01}
test clock-3.564 {ISO week-based calendar 2016-W01-6} {
    clock format 1452297600 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 2016-W01-6
} {Sat Saturday 16 2016 6 01 01 6 01}
test clock-3.565 {ISO week-based calendar 2016-W01-7} {
    clock format 1452384000 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 2016-W01-7
} {Sun Sunday 16 2016 7 02 01 0 01}
test clock-3.566 {ISO week-based calendar 2016-W02-1} {
    clock format 1452470400 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 2016-W02-1
} {Mon Monday 16 2016 1 02 02 1 02}
test clock-3.567 {ISO week-based calendar 2016-W52-1} {
    clock format 1482710400 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 2016-W52-1
} {Mon Monday 16 2016 1 52 52 1 52}
test clock-3.568 {ISO week-based calendar 2016-W52-6} {
    clock format 1483142400 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 2016-W52-6
} {Sat Saturday 16 2016 6 52 52 6 52}
test clock-3.569 {ISO week-based calendar 2016-W52-7} {
    clock format 1483228800 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 2016-W52-7
} {Sun Sunday 16 2016 7 01 52 0 00}
test clock-3.570 {ISO week-based calendar 2017-W01-1} {
    clock format 1483315200 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 2017-W01-1
} {Mon Monday 17 2017 1 01 01 1 01}
test clock-3.571 {ISO week-based calendar 2017-W01-6} {
    clock format 1483747200 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 2017-W01-6
} {Sat Saturday 17 2017 6 01 01 6 01}
test clock-3.572 {ISO week-based calendar 2017-W01-7} {
    clock format 1483833600 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 2017-W01-7
} {Sun Sunday 17 2017 7 02 01 0 01}
test clock-3.573 {ISO week-based calendar 2017-W02-1} {
    clock format 1483920000 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 2017-W02-1
} {Mon Monday 17 2017 1 02 02 1 02}
test clock-3.574 {ISO week-based calendar 2019-W52-1} {
    clock format 1577059200 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 2019-W52-1
} {Mon Monday 19 2019 1 51 52 1 51}
test clock-3.575 {ISO week-based calendar 2019-W52-6} {
    clock format 1577491200 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 2019-W52-6
} {Sat Saturday 19 2019 6 51 52 6 51}
test clock-3.576 {ISO week-based calendar 2019-W52-7} {
    clock format 1577577600 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 2019-W52-7
} {Sun Sunday 19 2019 7 52 52 0 51}
test clock-3.577 {ISO week-based calendar 2020-W01-1} {
    clock format 1577664000 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 2020-W01-1
} {Mon Monday 20 2020 1 52 01 1 52}
test clock-3.578 {ISO week-based calendar 2020-W01-3} {
    clock format 1577836800 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 2020-W01-3
} {Wed Wednesday 20 2020 3 00 01 3 00}
test clock-3.579 {ISO week-based calendar 2020-W01-6} {
    clock format 1578096000 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 2020-W01-6
} {Sat Saturday 20 2020 6 00 01 6 00}
test clock-3.580 {ISO week-based calendar 2020-W01-7} {
    clock format 1578182400 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 2020-W01-7
} {Sun Sunday 20 2020 7 01 01 0 00}
test clock-3.581 {ISO week-based calendar 2020-W02-1} {
    clock format 1578268800 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 2020-W02-1
} {Mon Monday 20 2020 1 01 02 1 01}
test clock-3.582 {ISO week-based calendar 2020-W53-1} {
    clock format 1609113600 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 2020-W53-1
} {Mon Monday 20 2020 1 52 53 1 52}
test clock-3.583 {ISO week-based calendar 2020-W53-5} {
    clock format 1609459200 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 2020-W53-5
} {Fri Friday 20 2020 5 00 53 5 00}
test clock-3.584 {ISO week-based calendar 2020-W53-6} {
    clock format 1609545600 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 2020-W53-6
} {Sat Saturday 20 2020 6 00 53 6 00}
test clock-3.585 {ISO week-based calendar 2020-W53-7} {
    clock format 1609632000 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 2020-W53-7
} {Sun Sunday 20 2020 7 01 53 0 00}
test clock-3.586 {ISO week-based calendar 2021-W01-1} {
    clock format 1609718400 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 2021-W01-1
} {Mon Monday 21 2021 1 01 01 1 01}
test clock-3.587 {ISO week-based calendar 2021-W01-6} {
    clock format 1610150400 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 2021-W01-6
} {Sat Saturday 21 2021 6 01 01 6 01}
test clock-3.588 {ISO week-based calendar 2021-W01-7} {
    clock format 1610236800 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 2021-W01-7
} {Sun Sunday 21 2021 7 02 01 0 01}
test clock-3.589 {ISO week-based calendar 2021-W02-1} {
    clock format 1610323200 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 2021-W02-1
} {Mon Monday 21 2021 1 02 02 1 02}
test clock-3.590 {ISO week-based calendar 2023-W52-1} {
    clock format 1703462400 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 2023-W52-1
} {Mon Monday 23 2023 1 52 52 1 52}
test clock-3.591 {ISO week-based calendar 2023-W52-6} {
    clock format 1703894400 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 2023-W52-6
} {Sat Saturday 23 2023 6 52 52 6 52}
test clock-3.592 {ISO week-based calendar 2023-W52-7} {
    clock format 1703980800 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 2023-W52-7
} {Sun Sunday 23 2023 7 53 52 0 52}
test clock-3.593 {ISO week-based calendar 2024-W01-1} {
    clock format 1704067200 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 2024-W01-1
} {Mon Monday 24 2024 1 00 01 1 01}
test clock-3.594 {ISO week-based calendar 2024-W01-6} {
    clock format 1704499200 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 2024-W01-6
} {Sat Saturday 24 2024 6 00 01 6 01}
test clock-3.595 {ISO week-based calendar 2024-W01-7} {
    clock format 1704585600 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 2024-W01-7
} {Sun Sunday 24 2024 7 01 01 0 01}
test clock-3.596 {ISO week-based calendar 2024-W02-1} {
    clock format 1704672000 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 2024-W02-1
} {Mon Monday 24 2024 1 01 02 1 02}
test clock-3.597 {ISO week-based calendar 2024-W52-1} {
    clock format 1734912000 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 2024-W52-1
} {Mon Monday 24 2024 1 51 52 1 52}
test clock-3.598 {ISO week-based calendar 2024-W52-6} {
    clock format 1735344000 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 2024-W52-6
} {Sat Saturday 24 2024 6 51 52 6 52}
test clock-3.599 {ISO week-based calendar 2024-W52-7} {
    clock format 1735430400 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 2024-W52-7
} {Sun Sunday 24 2024 7 52 52 0 52}
test clock-3.600 {ISO week-based calendar 2025-W01-1} {
    clock format 1735516800 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 2025-W01-1
} {Mon Monday 25 2025 1 52 01 1 53}
test clock-3.601 {ISO week-based calendar 2025-W01-3} {
    clock format 1735689600 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 2025-W01-3
} {Wed Wednesday 25 2025 3 00 01 3 00}
test clock-3.602 {ISO week-based calendar 2025-W01-6} {
    clock format 1735948800 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 2025-W01-6
} {Sat Saturday 25 2025 6 00 01 6 00}
test clock-3.603 {ISO week-based calendar 2025-W01-7} {
    clock format 1736035200 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 2025-W01-7
} {Sun Sunday 25 2025 7 01 01 0 00}
test clock-3.604 {ISO week-based calendar 2025-W02-1} {
    clock format 1736121600 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 2025-W02-1
} {Mon Monday 25 2025 1 01 02 1 01}
test clock-3.605 {ISO week-based calendar 2036-W52-1} {
    clock format 2113516800 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 2036-W52-1
} {Mon Monday 36 2036 1 51 52 1 51}
test clock-3.606 {ISO week-based calendar 2036-W52-6} {
    clock format 2113948800 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 2036-W52-6
} {Sat Saturday 36 2036 6 51 52 6 51}
test clock-3.607 {ISO week-based calendar 2036-W52-7} {
    clock format 2114035200 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 2036-W52-7
} {Sun Sunday 36 2036 7 52 52 0 51}
test clock-3.608 {ISO week-based calendar 2037-W01-1} {
    clock format 2114121600 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 2037-W01-1
} {Mon Monday 37 2037 1 52 01 1 52}
test clock-3.609 {ISO week-based calendar 2037-W01-4} {
    clock format 2114380800 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 2037-W01-4
} {Thu Thursday 37 2037 4 00 01 4 00}
test clock-3.610 {ISO week-based calendar 2037-W01-6} {
    clock format 2114553600 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 2037-W01-6
} {Sat Saturday 37 2037 6 00 01 6 00}
test clock-3.611 {ISO week-based calendar 2037-W01-7} {
    clock format 2114640000 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 2037-W01-7
} {Sun Sunday 37 2037 7 01 01 0 00}
test clock-3.612 {ISO week-based calendar 2037-W02-1} {
    clock format 2114726400 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 2037-W02-1
} {Mon Monday 37 2037 1 01 02 1 01}
test clock-3.613 {ISO week-based calendar 2037-W53-1} {
    clock format 2145571200 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 2037-W53-1
} {Mon Monday 37 2037 1 52 53 1 52}
test clock-3.614 {ISO week-based calendar 2037-W53-5} {
    clock format 2145916800 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 2037-W53-5
} {Fri Friday 37 2037 5 00 53 5 00}
test clock-3.615 {ISO week-based calendar 2037-W53-6} {
    clock format 2146003200 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 2037-W53-6
} {Sat Saturday 37 2037 6 00 53 6 00}
test clock-3.616 {ISO week-based calendar 2037-W53-7} {
    clock format 2146089600 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 2037-W53-7
} {Sun Sunday 37 2037 7 01 53 0 00}
test clock-3.617 {ISO week-based calendar 2038-W01-1} {
    clock format 2146176000 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 2038-W01-1
} {Mon Monday 38 2038 1 01 01 1 01}
test clock-3.618 {ISO week-based calendar 2038-W01-6} {
    clock format 2146608000 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 2038-W01-6
} {Sat Saturday 38 2038 6 01 01 6 01}
test clock-3.619 {ISO week-based calendar 2038-W01-7} {
    clock format 2146694400 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 2038-W01-7
} {Sun Sunday 38 2038 7 02 01 0 01}
test clock-3.620 {ISO week-based calendar 2038-W02-1} {
    clock format 2146780800 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 2038-W02-1
} {Mon Monday 38 2038 1 02 02 1 02}
test clock-3.621 {ISO week-based calendar 2038-W52-1} {
    clock format 2177020800 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 2038-W52-1
} {Mon Monday 38 2038 1 52 52 1 52}
test clock-3.622 {ISO week-based calendar 2038-W52-6} {
    clock format 2177452800 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 2038-W52-6
} {Sat Saturday 38 2038 6 00 52 6 00}
test clock-3.623 {ISO week-based calendar 2038-W52-7} {
    clock format 2177539200 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 2038-W52-7
} {Sun Sunday 38 2038 7 01 52 0 00}
test clock-3.624 {ISO week-based calendar 2039-W01-1} {
    clock format 2177625600 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 2039-W01-1
} {Mon Monday 39 2039 1 01 01 1 01}
test clock-3.625 {ISO week-based calendar 2039-W01-6} {
    clock format 2178057600 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 2039-W01-6
} {Sat Saturday 39 2039 6 01 01 6 01}
test clock-3.626 {ISO week-based calendar 2039-W01-7} {
    clock format 2178144000 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 2039-W01-7
} {Sun Sunday 39 2039 7 02 01 0 01}
test clock-3.627 {ISO week-based calendar 2039-W02-1} {
    clock format 2178230400 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 2039-W02-1
} {Mon Monday 39 2039 1 02 02 1 02}
test clock-3.628 {ISO week-based calendar 2039-W52-1} {
    clock format 2208470400 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 2039-W52-1
} {Mon Monday 39 2039 1 52 52 1 52}
test clock-3.629 {ISO week-based calendar 2039-W52-6} {
    clock format 2208902400 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 2039-W52-6
} {Sat Saturday 39 2039 6 52 52 6 52}
test clock-3.630 {ISO week-based calendar 2039-W52-7} {
    clock format 2208988800 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 2039-W52-7
} {Sun Sunday 39 2039 7 01 52 0 00}
test clock-3.631 {ISO week-based calendar 2040-W01-1} {
    clock format 2209075200 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 2040-W01-1
} {Mon Monday 40 2040 1 01 01 1 01}
test clock-3.632 {ISO week-based calendar 2040-W01-6} {
    clock format 2209507200 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 2040-W01-6
} {Sat Saturday 40 2040 6 01 01 6 01}
test clock-3.633 {ISO week-based calendar 2040-W01-7} {
    clock format 2209593600 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 2040-W01-7
} {Sun Sunday 40 2040 7 02 01 0 01}
test clock-3.634 {ISO week-based calendar 2040-W02-1} {
    clock format 2209680000 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 2040-W02-1
} {Mon Monday 40 2040 1 02 02 1 02}
test clock-3.635 {ISO week-based calendar 2040-W52-1} {
    clock format 2239920000 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 2040-W52-1
} {Mon Monday 40 2040 1 52 52 1 52}
test clock-3.636 {ISO week-based calendar 2040-W52-6} {
    clock format 2240352000 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 2040-W52-6
} {Sat Saturday 40 2040 6 52 52 6 52}
test clock-3.637 {ISO week-based calendar 2040-W52-7} {
    clock format 2240438400 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 2040-W52-7
} {Sun Sunday 40 2040 7 53 52 0 52}
test clock-3.638 {ISO week-based calendar 2041-W01-1} {
    clock format 2240524800 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 2041-W01-1
} {Mon Monday 41 2041 1 53 01 1 53}
test clock-3.639 {ISO week-based calendar 2041-W01-2} {
    clock format 2240611200 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 2041-W01-2
} {Tue Tuesday 41 2041 2 00 01 2 00}
test clock-3.640 {ISO week-based calendar 2041-W01-6} {
    clock format 2240956800 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 2041-W01-6
} {Sat Saturday 41 2041 6 00 01 6 00}
test clock-3.641 {ISO week-based calendar 2041-W01-7} {
    clock format 2241043200 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 2041-W01-7
} {Sun Sunday 41 2041 7 01 01 0 00}
test clock-3.642 {ISO week-based calendar 2041-W02-1} {
    clock format 2241129600 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 2041-W02-1
} {Mon Monday 41 2041 1 01 02 1 01}
test clock-3.643 {ISO week-based calendar 2041-W52-1} {
    clock format 2271369600 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 2041-W52-1
} {Mon Monday 41 2041 1 51 52 1 51}
test clock-3.644 {ISO week-based calendar 2041-W52-6} {
    clock format 2271801600 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 2041-W52-6
} {Sat Saturday 41 2041 6 51 52 6 51}
test clock-3.645 {ISO week-based calendar 2041-W52-7} {
    clock format 2271888000 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 2041-W52-7
} {Sun Sunday 41 2041 7 52 52 0 51}
test clock-3.646 {ISO week-based calendar 2042-W01-1} {
    clock format 2271974400 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 2042-W01-1
} {Mon Monday 42 2042 1 52 01 1 52}
test clock-3.647 {ISO week-based calendar 2042-W01-3} {
    clock format 2272147200 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 2042-W01-3
} {Wed Wednesday 42 2042 3 00 01 3 00}
test clock-3.648 {ISO week-based calendar 2042-W01-6} {
    clock format 2272406400 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 2042-W01-6
} {Sat Saturday 42 2042 6 00 01 6 00}
test clock-3.649 {ISO week-based calendar 2042-W01-7} {
    clock format 2272492800 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 2042-W01-7
} {Sun Sunday 42 2042 7 01 01 0 00}
test clock-3.650 {ISO week-based calendar 2042-W02-1} {
    clock format 2272579200 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 2042-W02-1
} {Mon Monday 42 2042 1 01 02 1 01}
test clock-3.651 {ISO week-based calendar 2042-W52-1} {
    clock format 2302819200 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 2042-W52-1
} {Mon Monday 42 2042 1 51 52 1 51}
test clock-3.652 {ISO week-based calendar 2042-W52-6} {
    clock format 2303251200 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 2042-W52-6
} {Sat Saturday 42 2042 6 51 52 6 51}
test clock-3.653 {ISO week-based calendar 2042-W52-7} {
    clock format 2303337600 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 2042-W52-7
} {Sun Sunday 42 2042 7 52 52 0 51}
test clock-3.654 {ISO week-based calendar 2043-W01-1} {
    clock format 2303424000 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 2043-W01-1
} {Mon Monday 43 2043 1 52 01 1 52}
test clock-3.655 {ISO week-based calendar 2043-W01-4} {
    clock format 2303683200 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 2043-W01-4
} {Thu Thursday 43 2043 4 00 01 4 00}
test clock-3.656 {ISO week-based calendar 2043-W01-6} {
    clock format 2303856000 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 2043-W01-6
} {Sat Saturday 43 2043 6 00 01 6 00}
test clock-3.657 {ISO week-based calendar 2043-W01-7} {
    clock format 2303942400 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 2043-W01-7
} {Sun Sunday 43 2043 7 01 01 0 00}
test clock-3.658 {ISO week-based calendar 2043-W02-1} {
    clock format 2304028800 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 2043-W02-1
} {Mon Monday 43 2043 1 01 02 1 01}
test clock-3.659 {ISO week-based calendar 2043-W53-1} {
    clock format 2334873600 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 2043-W53-1
} {Mon Monday 43 2043 1 52 53 1 52}
test clock-3.660 {ISO week-based calendar 2043-W53-5} {
    clock format 2335219200 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 2043-W53-5
} {Fri Friday 43 2043 5 00 53 5 00}
test clock-3.661 {ISO week-based calendar 2043-W53-6} {
    clock format 2335305600 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 2043-W53-6
} {Sat Saturday 43 2043 6 00 53 6 00}
test clock-3.662 {ISO week-based calendar 2043-W53-7} {
    clock format 2335392000 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 2043-W53-7
} {Sun Sunday 43 2043 7 01 53 0 00}
test clock-3.663 {ISO week-based calendar 2044-W01-1} {
    clock format 2335478400 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 2044-W01-1
} {Mon Monday 44 2044 1 01 01 1 01}
test clock-3.664 {ISO week-based calendar 2044-W01-6} {
    clock format 2335910400 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 2044-W01-6
} {Sat Saturday 44 2044 6 01 01 6 01}
test clock-3.665 {ISO week-based calendar 2044-W01-7} {
    clock format 2335996800 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 2044-W01-7
} {Sun Sunday 44 2044 7 02 01 0 01}
test clock-3.666 {ISO week-based calendar 2044-W02-1} {
    clock format 2336083200 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 2044-W02-1
} {Mon Monday 44 2044 1 02 02 1 02}
test clock-3.667 {ISO week-based calendar 2044-W52-1} {
    clock format 2366323200 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 2044-W52-1
} {Mon Monday 44 2044 1 52 52 1 52}
test clock-3.668 {ISO week-based calendar 2044-W52-6} {
    clock format 2366755200 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 2044-W52-6
} {Sat Saturday 44 2044 6 52 52 6 52}
test clock-3.669 {ISO week-based calendar 2044-W52-7} {
    clock format 2366841600 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 2044-W52-7
} {Sun Sunday 44 2044 7 01 52 0 00}
test clock-3.670 {ISO week-based calendar 2045-W01-1} {
    clock format 2366928000 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 2045-W01-1
} {Mon Monday 45 2045 1 01 01 1 01}
test clock-3.671 {ISO week-based calendar 2045-W01-6} {
    clock format 2367360000 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 2045-W01-6
} {Sat Saturday 45 2045 6 01 01 6 01}
test clock-3.672 {ISO week-based calendar 2045-W01-7} {
    clock format 2367446400 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 2045-W01-7
} {Sun Sunday 45 2045 7 02 01 0 01}
test clock-3.673 {ISO week-based calendar 2045-W02-1} {
    clock format 2367532800 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 2045-W02-1
} {Mon Monday 45 2045 1 02 02 1 02}
test clock-3.674 {ISO week-based calendar 2045-W52-1} {
    clock format 2397772800 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 2045-W52-1
} {Mon Monday 45 2045 1 52 52 1 52}
test clock-3.675 {ISO week-based calendar 2045-W52-6} {
    clock format 2398204800 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 2045-W52-6
} {Sat Saturday 45 2045 6 52 52 6 52}
test clock-3.676 {ISO week-based calendar 2045-W52-7} {
    clock format 2398291200 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 2045-W52-7
} {Sun Sunday 45 2045 7 53 52 0 52}
test clock-3.677 {ISO week-based calendar 2046-W01-1} {
    clock format 2398377600 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 2046-W01-1
} {Mon Monday 46 2046 1 00 01 1 01}
test clock-3.678 {ISO week-based calendar 2046-W01-6} {
    clock format 2398809600 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 2046-W01-6
} {Sat Saturday 46 2046 6 00 01 6 01}
test clock-3.679 {ISO week-based calendar 2046-W01-7} {
    clock format 2398896000 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 2046-W01-7
} {Sun Sunday 46 2046 7 01 01 0 01}
test clock-3.680 {ISO week-based calendar 2046-W02-1} {
    clock format 2398982400 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 2046-W02-1
} {Mon Monday 46 2046 1 01 02 1 02}
test clock-3.681 {ISO week-based calendar 2046-W52-1} {
    clock format 2429222400 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 2046-W52-1
} {Mon Monday 46 2046 1 51 52 1 52}
test clock-3.682 {ISO week-based calendar 2046-W52-6} {
    clock format 2429654400 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 2046-W52-6
} {Sat Saturday 46 2046 6 51 52 6 52}
test clock-3.683 {ISO week-based calendar 2046-W52-7} {
    clock format 2429740800 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 2046-W52-7
} {Sun Sunday 46 2046 7 52 52 0 52}
test clock-3.684 {ISO week-based calendar 2047-W01-1} {
    clock format 2429827200 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 2047-W01-1
} {Mon Monday 47 2047 1 52 01 1 53}
test clock-3.685 {ISO week-based calendar 2047-W01-2} {
    clock format 2429913600 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 2047-W01-2
} {Tue Tuesday 47 2047 2 00 01 2 00}
test clock-3.686 {ISO week-based calendar 2047-W01-6} {
    clock format 2430259200 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 2047-W01-6
} {Sat Saturday 47 2047 6 00 01 6 00}
test clock-3.687 {ISO week-based calendar 2047-W01-7} {
    clock format 2430345600 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 2047-W01-7
} {Sun Sunday 47 2047 7 01 01 0 00}
test clock-3.688 {ISO week-based calendar 2047-W02-1} {
    clock format 2430432000 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 2047-W02-1
} {Mon Monday 47 2047 1 01 02 1 01}
test clock-3.689 {ISO week-based calendar 2047-W52-1} {
    clock format 2460672000 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 2047-W52-1
} {Mon Monday 47 2047 1 51 52 1 51}
test clock-3.690 {ISO week-based calendar 2047-W52-6} {
    clock format 2461104000 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 2047-W52-6
} {Sat Saturday 47 2047 6 51 52 6 51}
test clock-3.691 {ISO week-based calendar 2047-W52-7} {
    clock format 2461190400 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 2047-W52-7
} {Sun Sunday 47 2047 7 52 52 0 51}
test clock-3.692 {ISO week-based calendar 2048-W01-1} {
    clock format 2461276800 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 2048-W01-1
} {Mon Monday 48 2048 1 52 01 1 52}
test clock-3.693 {ISO week-based calendar 2048-W01-3} {
    clock format 2461449600 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 2048-W01-3
} {Wed Wednesday 48 2048 3 00 01 3 00}
test clock-3.694 {ISO week-based calendar 2048-W01-6} {
    clock format 2461708800 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 2048-W01-6
} {Sat Saturday 48 2048 6 00 01 6 00}
test clock-3.695 {ISO week-based calendar 2048-W01-7} {
    clock format 2461795200 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 2048-W01-7
} {Sun Sunday 48 2048 7 01 01 0 00}
test clock-3.696 {ISO week-based calendar 2048-W02-1} {
    clock format 2461881600 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 2048-W02-1
} {Mon Monday 48 2048 1 01 02 1 01}
test clock-3.697 {ISO week-based calendar 2048-W53-1} {
    clock format 2492726400 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 2048-W53-1
} {Mon Monday 48 2048 1 52 53 1 52}
test clock-3.698 {ISO week-based calendar 2048-W53-5} {
    clock format 2493072000 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 2048-W53-5
} {Fri Friday 48 2048 5 00 53 5 00}
test clock-3.699 {ISO week-based calendar 2048-W53-6} {
    clock format 2493158400 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 2048-W53-6
} {Sat Saturday 48 2048 6 00 53 6 00}
test clock-3.700 {ISO week-based calendar 2048-W53-7} {
    clock format 2493244800 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 2048-W53-7
} {Sun Sunday 48 2048 7 01 53 0 00}
test clock-3.701 {ISO week-based calendar 2049-W01-1} {
    clock format 2493331200 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 2049-W01-1
} {Mon Monday 49 2049 1 01 01 1 01}
test clock-3.702 {ISO week-based calendar 2049-W01-6} {
    clock format 2493763200 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 2049-W01-6
} {Sat Saturday 49 2049 6 01 01 6 01}
test clock-3.703 {ISO week-based calendar 2049-W01-7} {
    clock format 2493849600 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 2049-W01-7
} {Sun Sunday 49 2049 7 02 01 0 01}
test clock-3.704 {ISO week-based calendar 2049-W02-1} {
    clock format 2493936000 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 2049-W02-1
} {Mon Monday 49 2049 1 02 02 1 02}
test clock-3.705 {ISO week-based calendar 2051-W52-1} {
    clock format 2587075200 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 2051-W52-1
} {Mon Monday 51 2051 1 52 52 1 52}
test clock-3.706 {ISO week-based calendar 2051-W52-6} {
    clock format 2587507200 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 2051-W52-6
} {Sat Saturday 51 2051 6 52 52 6 52}
test clock-3.707 {ISO week-based calendar 2051-W52-7} {
    clock format 2587593600 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 2051-W52-7
} {Sun Sunday 51 2051 7 53 52 0 52}
test clock-3.708 {ISO week-based calendar 2052-W01-1} {
    clock format 2587680000 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 2052-W01-1
} {Mon Monday 52 2052 1 00 01 1 01}
test clock-3.709 {ISO week-based calendar 2052-W01-6} {
    clock format 2588112000 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 2052-W01-6
} {Sat Saturday 52 2052 6 00 01 6 01}
test clock-3.710 {ISO week-based calendar 2052-W01-7} {
    clock format 2588198400 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 2052-W01-7
} {Sun Sunday 52 2052 7 01 01 0 01}
test clock-3.711 {ISO week-based calendar 2052-W02-1} {
    clock format 2588284800 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 2052-W02-1
} {Mon Monday 52 2052 1 01 02 1 02}
test clock-3.712 {ISO week-based calendar 2052-W52-1} {
    clock format 2618524800 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 2052-W52-1
} {Mon Monday 52 2052 1 51 52 1 52}
test clock-3.713 {ISO week-based calendar 2052-W52-6} {
    clock format 2618956800 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 2052-W52-6
} {Sat Saturday 52 2052 6 51 52 6 52}
test clock-3.714 {ISO week-based calendar 2052-W52-7} {
    clock format 2619043200 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 2052-W52-7
} {Sun Sunday 52 2052 7 52 52 0 52}
test clock-3.715 {ISO week-based calendar 2053-W01-1} {
    clock format 2619129600 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 2053-W01-1
} {Mon Monday 53 2053 1 52 01 1 53}
test clock-3.716 {ISO week-based calendar 2053-W01-3} {
    clock format 2619302400 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 2053-W01-3
} {Wed Wednesday 53 2053 3 00 01 3 00}
test clock-3.717 {ISO week-based calendar 2053-W01-6} {
    clock format 2619561600 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 2053-W01-6
} {Sat Saturday 53 2053 6 00 01 6 00}
test clock-3.718 {ISO week-based calendar 2053-W01-7} {
    clock format 2619648000 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 2053-W01-7
} {Sun Sunday 53 2053 7 01 01 0 00}
test clock-3.719 {ISO week-based calendar 2053-W02-1} {
    clock format 2619734400 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 2053-W02-1
} {Mon Monday 53 2053 1 01 02 1 01}
test clock-3.720 {ISO week-based calendar 2055-W52-1} {
    clock format 2713478400 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 2055-W52-1
} {Mon Monday 55 2055 1 52 52 1 52}
test clock-3.721 {ISO week-based calendar 2055-W52-6} {
    clock format 2713910400 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 2055-W52-6
} {Sat Saturday 55 2055 6 00 52 6 00}
test clock-3.722 {ISO week-based calendar 2055-W52-7} {
    clock format 2713996800 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 2055-W52-7
} {Sun Sunday 55 2055 7 01 52 0 00}
test clock-3.723 {ISO week-based calendar 2056-W01-1} {
    clock format 2714083200 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 2056-W01-1
} {Mon Monday 56 2056 1 01 01 1 01}
test clock-3.724 {ISO week-based calendar 2056-W01-6} {
    clock format 2714515200 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 2056-W01-6
} {Sat Saturday 56 2056 6 01 01 6 01}
test clock-3.725 {ISO week-based calendar 2056-W01-7} {
    clock format 2714601600 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 2056-W01-7
} {Sun Sunday 56 2056 7 02 01 0 01}
test clock-3.726 {ISO week-based calendar 2056-W02-1} {
    clock format 2714688000 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 2056-W02-1
} {Mon Monday 56 2056 1 02 02 1 02}
test clock-3.727 {ISO week-based calendar 2056-W52-1} {
    clock format 2744928000 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 2056-W52-1
} {Mon Monday 56 2056 1 52 52 1 52}
test clock-3.728 {ISO week-based calendar 2056-W52-6} {
    clock format 2745360000 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 2056-W52-6
} {Sat Saturday 56 2056 6 52 52 6 52}
test clock-3.729 {ISO week-based calendar 2056-W52-7} {
    clock format 2745446400 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 2056-W52-7
} {Sun Sunday 56 2056 7 53 52 0 52}
test clock-3.730 {ISO week-based calendar 2057-W01-1} {
    clock format 2745532800 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 2057-W01-1
} {Mon Monday 57 2057 1 00 01 1 01}
test clock-3.731 {ISO week-based calendar 2057-W01-6} {
    clock format 2745964800 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 2057-W01-6
} {Sat Saturday 57 2057 6 00 01 6 01}
test clock-3.732 {ISO week-based calendar 2057-W01-7} {
    clock format 2746051200 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 2057-W01-7
} {Sun Sunday 57 2057 7 01 01 0 01}
test clock-3.733 {ISO week-based calendar 2057-W02-1} {
    clock format 2746137600 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 2057-W02-1
} {Mon Monday 57 2057 1 01 02 1 02}
test clock-3.734 {ISO week-based calendar 2059-W52-1} {
    clock format 2839276800 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 2059-W52-1
} {Mon Monday 59 2059 1 51 52 1 51}
test clock-3.735 {ISO week-based calendar 2059-W52-6} {
    clock format 2839708800 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 2059-W52-6
} {Sat Saturday 59 2059 6 51 52 6 51}
test clock-3.736 {ISO week-based calendar 2059-W52-7} {
    clock format 2839795200 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 2059-W52-7
} {Sun Sunday 59 2059 7 52 52 0 51}
test clock-3.737 {ISO week-based calendar 2060-W01-1} {
    clock format 2839881600 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 2060-W01-1
} {Mon Monday 60 2060 1 52 01 1 52}
test clock-3.738 {ISO week-based calendar 2060-W01-4} {
    clock format 2840140800 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 2060-W01-4
} {Thu Thursday 60 2060 4 00 01 4 00}
test clock-3.739 {ISO week-based calendar 2060-W01-6} {
    clock format 2840313600 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 2060-W01-6
} {Sat Saturday 60 2060 6 00 01 6 00}
test clock-3.740 {ISO week-based calendar 2060-W01-7} {
    clock format 2840400000 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 2060-W01-7
} {Sun Sunday 60 2060 7 01 01 0 00}
test clock-3.741 {ISO week-based calendar 2060-W02-1} {
    clock format 2840486400 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 2060-W02-1
} {Mon Monday 60 2060 1 01 02 1 01}
test clock-3.742 {ISO week-based calendar 2060-W53-1} {
    clock format 2871331200 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 2060-W53-1
} {Mon Monday 60 2060 1 52 53 1 52}
test clock-3.743 {ISO week-based calendar 2060-W53-6} {
    clock format 2871763200 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 2060-W53-6
} {Sat Saturday 60 2060 6 00 53 6 00}
test clock-3.744 {ISO week-based calendar 2060-W53-7} {
    clock format 2871849600 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 2060-W53-7
} {Sun Sunday 60 2060 7 01 53 0 00}
test clock-3.745 {ISO week-based calendar 2061-W01-1} {
    clock format 2871936000 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 2061-W01-1
} {Mon Monday 61 2061 1 01 01 1 01}
test clock-3.746 {ISO week-based calendar 2061-W01-6} {
    clock format 2872368000 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 2061-W01-6
} {Sat Saturday 61 2061 6 01 01 6 01}
test clock-3.747 {ISO week-based calendar 2061-W01-7} {
    clock format 2872454400 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 2061-W01-7
} {Sun Sunday 61 2061 7 02 01 0 01}
test clock-3.748 {ISO week-based calendar 2061-W02-1} {
    clock format 2872540800 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 2061-W02-1
} {Mon Monday 61 2061 1 02 02 1 02}
test clock-3.749 {ISO week-based calendar 2063-W52-1} {
    clock format 2965680000 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 2063-W52-1
} {Mon Monday 63 2063 1 51 52 1 52}
test clock-3.750 {ISO week-based calendar 2063-W52-6} {
    clock format 2966112000 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 2063-W52-6
} {Sat Saturday 63 2063 6 51 52 6 52}
test clock-3.751 {ISO week-based calendar 2063-W52-7} {
    clock format 2966198400 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 2063-W52-7
} {Sun Sunday 63 2063 7 52 52 0 52}
test clock-3.752 {ISO week-based calendar 2064-W01-1} {
    clock format 2966284800 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 2064-W01-1
} {Mon Monday 64 2064 1 52 01 1 53}
test clock-3.753 {ISO week-based calendar 2064-W01-2} {
    clock format 2966371200 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 2064-W01-2
} {Tue Tuesday 64 2064 2 00 01 2 00}
test clock-3.754 {ISO week-based calendar 2064-W01-6} {
    clock format 2966716800 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 2064-W01-6
} {Sat Saturday 64 2064 6 00 01 6 00}
test clock-3.755 {ISO week-based calendar 2064-W01-7} {
    clock format 2966803200 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 2064-W01-7
} {Sun Sunday 64 2064 7 01 01 0 00}
test clock-3.756 {ISO week-based calendar 2064-W02-1} {
    clock format 2966889600 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 2064-W02-1
} {Mon Monday 64 2064 1 01 02 1 01}
test clock-3.757 {ISO week-based calendar 2064-W52-1} {
    clock format 2997129600 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 2064-W52-1
} {Mon Monday 64 2064 1 51 52 1 51}
test clock-3.758 {ISO week-based calendar 2064-W52-6} {
    clock format 2997561600 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 2064-W52-6
} {Sat Saturday 64 2064 6 51 52 6 51}
test clock-3.759 {ISO week-based calendar 2064-W52-7} {
    clock format 2997648000 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 2064-W52-7
} {Sun Sunday 64 2064 7 52 52 0 51}
test clock-3.760 {ISO week-based calendar 2065-W01-1} {
    clock format 2997734400 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 2065-W01-1
} {Mon Monday 65 2065 1 52 01 1 52}
test clock-3.761 {ISO week-based calendar 2065-W01-4} {
    clock format 2997993600 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 2065-W01-4
} {Thu Thursday 65 2065 4 00 01 4 00}
test clock-3.762 {ISO week-based calendar 2065-W01-6} {
    clock format 2998166400 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 2065-W01-6
} {Sat Saturday 65 2065 6 00 01 6 00}
test clock-3.763 {ISO week-based calendar 2065-W01-7} {
    clock format 2998252800 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 2065-W01-7
} {Sun Sunday 65 2065 7 01 01 0 00}
test clock-3.764 {ISO week-based calendar 2065-W02-1} {
    clock format 2998339200 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 2065-W02-1
} {Mon Monday 65 2065 1 01 02 1 01}
# END testcases3

# BEGIN testcases4

# Test formatting of time of day
# Format groups tested: %H %OH %I %OI %k %Ok %l %Ol %M %OM %p %P %r %R %S %OS %T %X %EX %+

test clock-4.1 { format time of day 00:00:00 } {
    clock format 0 \
        -format {%H %OH %I %OI %k %Ok %l %Ol %M %OM %p %P %r %R %S %OS %T %X %EX %+} \
	  -locale en_US_roman \
        -gmt true
} {00 ? 12 xii  0 ? 12 xii 00 ? AM am 12:00:00 am 00:00 00 ? 00:00:00 00:00:00 ? h ? m ? s Thu Jan  1 00:00:00 GMT 1970}
test clock-4.2 { format time of day 00:00:01 } {
    clock format 1 \
        -format {%H %OH %I %OI %k %Ok %l %Ol %M %OM %p %P %r %R %S %OS %T %X %EX %+} \
	  -locale en_US_roman \
        -gmt true
} {00 ? 12 xii  0 ? 12 xii 00 ? AM am 12:00:01 am 00:00 01 i 00:00:01 00:00:01 ? h ? m i s Thu Jan  1 00:00:01 GMT 1970}
test clock-4.3 { format time of day 00:00:58 } {
    clock format 58 \
        -format {%H %OH %I %OI %k %Ok %l %Ol %M %OM %p %P %r %R %S %OS %T %X %EX %+} \
	  -locale en_US_roman \
        -gmt true
} {00 ? 12 xii  0 ? 12 xii 00 ? AM am 12:00:58 am 00:00 58 lviii 00:00:58 00:00:58 ? h ? m lviii s Thu Jan  1 00:00:58 GMT 1970}
test clock-4.4 { format time of day 00:00:59 } {
    clock format 59 \
        -format {%H %OH %I %OI %k %Ok %l %Ol %M %OM %p %P %r %R %S %OS %T %X %EX %+} \
	  -locale en_US_roman \
        -gmt true
} {00 ? 12 xii  0 ? 12 xii 00 ? AM am 12:00:59 am 00:00 59 lix 00:00:59 00:00:59 ? h ? m lix s Thu Jan  1 00:00:59 GMT 1970}
test clock-4.5 { format time of day 00:01:00 } {
    clock format 60 \
        -format {%H %OH %I %OI %k %Ok %l %Ol %M %OM %p %P %r %R %S %OS %T %X %EX %+} \
	  -locale en_US_roman \
        -gmt true
} {00 ? 12 xii  0 ? 12 xii 01 i AM am 12:01:00 am 00:01 00 ? 00:01:00 00:01:00 ? h i m ? s Thu Jan  1 00:01:00 GMT 1970}
test clock-4.6 { format time of day 00:01:01 } {
    clock format 61 \
        -format {%H %OH %I %OI %k %Ok %l %Ol %M %OM %p %P %r %R %S %OS %T %X %EX %+} \
	  -locale en_US_roman \
        -gmt true
} {00 ? 12 xii  0 ? 12 xii 01 i AM am 12:01:01 am 00:01 01 i 00:01:01 00:01:01 ? h i m i s Thu Jan  1 00:01:01 GMT 1970}
test clock-4.7 { format time of day 00:01:58 } {
    clock format 118 \
        -format {%H %OH %I %OI %k %Ok %l %Ol %M %OM %p %P %r %R %S %OS %T %X %EX %+} \
	  -locale en_US_roman \
        -gmt true
} {00 ? 12 xii  0 ? 12 xii 01 i AM am 12:01:58 am 00:01 58 lviii 00:01:58 00:01:58 ? h i m lviii s Thu Jan  1 00:01:58 GMT 1970}
test clock-4.8 { format time of day 00:01:59 } {
    clock format 119 \
        -format {%H %OH %I %OI %k %Ok %l %Ol %M %OM %p %P %r %R %S %OS %T %X %EX %+} \
	  -locale en_US_roman \
        -gmt true
} {00 ? 12 xii  0 ? 12 xii 01 i AM am 12:01:59 am 00:01 59 lix 00:01:59 00:01:59 ? h i m lix s Thu Jan  1 00:01:59 GMT 1970}
test clock-4.9 { format time of day 00:58:00 } {
    clock format 3480 \
        -format {%H %OH %I %OI %k %Ok %l %Ol %M %OM %p %P %r %R %S %OS %T %X %EX %+} \
	  -locale en_US_roman \
        -gmt true
} {00 ? 12 xii  0 ? 12 xii 58 lviii AM am 12:58:00 am 00:58 00 ? 00:58:00 00:58:00 ? h lviii m ? s Thu Jan  1 00:58:00 GMT 1970}
test clock-4.10 { format time of day 00:58:01 } {
    clock format 3481 \
        -format {%H %OH %I %OI %k %Ok %l %Ol %M %OM %p %P %r %R %S %OS %T %X %EX %+} \
	  -locale en_US_roman \
        -gmt true
} {00 ? 12 xii  0 ? 12 xii 58 lviii AM am 12:58:01 am 00:58 01 i 00:58:01 00:58:01 ? h lviii m i s Thu Jan  1 00:58:01 GMT 1970}
test clock-4.11 { format time of day 00:58:58 } {
    clock format 3538 \
        -format {%H %OH %I %OI %k %Ok %l %Ol %M %OM %p %P %r %R %S %OS %T %X %EX %+} \
	  -locale en_US_roman \
        -gmt true
} {00 ? 12 xii  0 ? 12 xii 58 lviii AM am 12:58:58 am 00:58 58 lviii 00:58:58 00:58:58 ? h lviii m lviii s Thu Jan  1 00:58:58 GMT 1970}
test clock-4.12 { format time of day 00:58:59 } {
    clock format 3539 \
        -format {%H %OH %I %OI %k %Ok %l %Ol %M %OM %p %P %r %R %S %OS %T %X %EX %+} \
	  -locale en_US_roman \
        -gmt true
} {00 ? 12 xii  0 ? 12 xii 58 lviii AM am 12:58:59 am 00:58 59 lix 00:58:59 00:58:59 ? h lviii m lix s Thu Jan  1 00:58:59 GMT 1970}
test clock-4.13 { format time of day 00:59:00 } {
    clock format 3540 \
        -format {%H %OH %I %OI %k %Ok %l %Ol %M %OM %p %P %r %R %S %OS %T %X %EX %+} \
	  -locale en_US_roman \
        -gmt true
} {00 ? 12 xii  0 ? 12 xii 59 lix AM am 12:59:00 am 00:59 00 ? 00:59:00 00:59:00 ? h lix m ? s Thu Jan  1 00:59:00 GMT 1970}
test clock-4.14 { format time of day 00:59:01 } {
    clock format 3541 \
        -format {%H %OH %I %OI %k %Ok %l %Ol %M %OM %p %P %r %R %S %OS %T %X %EX %+} \
	  -locale en_US_roman \
        -gmt true
} {00 ? 12 xii  0 ? 12 xii 59 lix AM am 12:59:01 am 00:59 01 i 00:59:01 00:59:01 ? h lix m i s Thu Jan  1 00:59:01 GMT 1970}
test clock-4.15 { format time of day 00:59:58 } {
    clock format 3598 \
        -format {%H %OH %I %OI %k %Ok %l %Ol %M %OM %p %P %r %R %S %OS %T %X %EX %+} \
	  -locale en_US_roman \
        -gmt true
} {00 ? 12 xii  0 ? 12 xii 59 lix AM am 12:59:58 am 00:59 58 lviii 00:59:58 00:59:58 ? h lix m lviii s Thu Jan  1 00:59:58 GMT 1970}
test clock-4.16 { format time of day 00:59:59 } {
    clock format 3599 \
        -format {%H %OH %I %OI %k %Ok %l %Ol %M %OM %p %P %r %R %S %OS %T %X %EX %+} \
	  -locale en_US_roman \
        -gmt true
} {00 ? 12 xii  0 ? 12 xii 59 lix AM am 12:59:59 am 00:59 59 lix 00:59:59 00:59:59 ? h lix m lix s Thu Jan  1 00:59:59 GMT 1970}
test clock-4.17 { format time of day 01:00:00 } {
    clock format 3600 \
        -format {%H %OH %I %OI %k %Ok %l %Ol %M %OM %p %P %r %R %S %OS %T %X %EX %+} \
	  -locale en_US_roman \
        -gmt true
} {01 i 01 i  1 i  1 i 00 ? AM am 01:00:00 am 01:00 00 ? 01:00:00 01:00:00 i h ? m ? s Thu Jan  1 01:00:00 GMT 1970}
test clock-4.18 { format time of day 01:00:01 } {
    clock format 3601 \
        -format {%H %OH %I %OI %k %Ok %l %Ol %M %OM %p %P %r %R %S %OS %T %X %EX %+} \
	  -locale en_US_roman \
        -gmt true
} {01 i 01 i  1 i  1 i 00 ? AM am 01:00:01 am 01:00 01 i 01:00:01 01:00:01 i h ? m i s Thu Jan  1 01:00:01 GMT 1970}
test clock-4.19 { format time of day 01:00:58 } {
    clock format 3658 \
        -format {%H %OH %I %OI %k %Ok %l %Ol %M %OM %p %P %r %R %S %OS %T %X %EX %+} \
	  -locale en_US_roman \
        -gmt true
} {01 i 01 i  1 i  1 i 00 ? AM am 01:00:58 am 01:00 58 lviii 01:00:58 01:00:58 i h ? m lviii s Thu Jan  1 01:00:58 GMT 1970}
test clock-4.20 { format time of day 01:00:59 } {
    clock format 3659 \
        -format {%H %OH %I %OI %k %Ok %l %Ol %M %OM %p %P %r %R %S %OS %T %X %EX %+} \
	  -locale en_US_roman \
        -gmt true
} {01 i 01 i  1 i  1 i 00 ? AM am 01:00:59 am 01:00 59 lix 01:00:59 01:00:59 i h ? m lix s Thu Jan  1 01:00:59 GMT 1970}
test clock-4.21 { format time of day 01:01:00 } {
    clock format 3660 \
        -format {%H %OH %I %OI %k %Ok %l %Ol %M %OM %p %P %r %R %S %OS %T %X %EX %+} \
	  -locale en_US_roman \
        -gmt true
} {01 i 01 i  1 i  1 i 01 i AM am 01:01:00 am 01:01 00 ? 01:01:00 01:01:00 i h i m ? s Thu Jan  1 01:01:00 GMT 1970}
test clock-4.22 { format time of day 01:01:01 } {
    clock format 3661 \
        -format {%H %OH %I %OI %k %Ok %l %Ol %M %OM %p %P %r %R %S %OS %T %X %EX %+} \
	  -locale en_US_roman \
        -gmt true
} {01 i 01 i  1 i  1 i 01 i AM am 01:01:01 am 01:01 01 i 01:01:01 01:01:01 i h i m i s Thu Jan  1 01:01:01 GMT 1970}
test clock-4.23 { format time of day 01:01:58 } {
    clock format 3718 \
        -format {%H %OH %I %OI %k %Ok %l %Ol %M %OM %p %P %r %R %S %OS %T %X %EX %+} \
	  -locale en_US_roman \
        -gmt true
} {01 i 01 i  1 i  1 i 01 i AM am 01:01:58 am 01:01 58 lviii 01:01:58 01:01:58 i h i m lviii s Thu Jan  1 01:01:58 GMT 1970}
test clock-4.24 { format time of day 01:01:59 } {
    clock format 3719 \
        -format {%H %OH %I %OI %k %Ok %l %Ol %M %OM %p %P %r %R %S %OS %T %X %EX %+} \
	  -locale en_US_roman \
        -gmt true
} {01 i 01 i  1 i  1 i 01 i AM am 01:01:59 am 01:01 59 lix 01:01:59 01:01:59 i h i m lix s Thu Jan  1 01:01:59 GMT 1970}
test clock-4.25 { format time of day 01:58:00 } {
    clock format 7080 \
        -format {%H %OH %I %OI %k %Ok %l %Ol %M %OM %p %P %r %R %S %OS %T %X %EX %+} \
	  -locale en_US_roman \
        -gmt true
} {01 i 01 i  1 i  1 i 58 lviii AM am 01:58:00 am 01:58 00 ? 01:58:00 01:58:00 i h lviii m ? s Thu Jan  1 01:58:00 GMT 1970}
test clock-4.26 { format time of day 01:58:01 } {
    clock format 7081 \
        -format {%H %OH %I %OI %k %Ok %l %Ol %M %OM %p %P %r %R %S %OS %T %X %EX %+} \
	  -locale en_US_roman \
        -gmt true
} {01 i 01 i  1 i  1 i 58 lviii AM am 01:58:01 am 01:58 01 i 01:58:01 01:58:01 i h lviii m i s Thu Jan  1 01:58:01 GMT 1970}
test clock-4.27 { format time of day 01:58:58 } {
    clock format 7138 \
        -format {%H %OH %I %OI %k %Ok %l %Ol %M %OM %p %P %r %R %S %OS %T %X %EX %+} \
	  -locale en_US_roman \
        -gmt true
} {01 i 01 i  1 i  1 i 58 lviii AM am 01:58:58 am 01:58 58 lviii 01:58:58 01:58:58 i h lviii m lviii s Thu Jan  1 01:58:58 GMT 1970}
test clock-4.28 { format time of day 01:58:59 } {
    clock format 7139 \
        -format {%H %OH %I %OI %k %Ok %l %Ol %M %OM %p %P %r %R %S %OS %T %X %EX %+} \
	  -locale en_US_roman \
        -gmt true
} {01 i 01 i  1 i  1 i 58 lviii AM am 01:58:59 am 01:58 59 lix 01:58:59 01:58:59 i h lviii m lix s Thu Jan  1 01:58:59 GMT 1970}
test clock-4.29 { format time of day 01:59:00 } {
    clock format 7140 \
        -format {%H %OH %I %OI %k %Ok %l %Ol %M %OM %p %P %r %R %S %OS %T %X %EX %+} \
	  -locale en_US_roman \
        -gmt true
} {01 i 01 i  1 i  1 i 59 lix AM am 01:59:00 am 01:59 00 ? 01:59:00 01:59:00 i h lix m ? s Thu Jan  1 01:59:00 GMT 1970}
test clock-4.30 { format time of day 01:59:01 } {
    clock format 7141 \
        -format {%H %OH %I %OI %k %Ok %l %Ol %M %OM %p %P %r %R %S %OS %T %X %EX %+} \
	  -locale en_US_roman \
        -gmt true
} {01 i 01 i  1 i  1 i 59 lix AM am 01:59:01 am 01:59 01 i 01:59:01 01:59:01 i h lix m i s Thu Jan  1 01:59:01 GMT 1970}
test clock-4.31 { format time of day 01:59:58 } {
    clock format 7198 \
        -format {%H %OH %I %OI %k %Ok %l %Ol %M %OM %p %P %r %R %S %OS %T %X %EX %+} \
	  -locale en_US_roman \
        -gmt true
} {01 i 01 i  1 i  1 i 59 lix AM am 01:59:58 am 01:59 58 lviii 01:59:58 01:59:58 i h lix m lviii s Thu Jan  1 01:59:58 GMT 1970}
test clock-4.32 { format time of day 01:59:59 } {
    clock format 7199 \
        -format {%H %OH %I %OI %k %Ok %l %Ol %M %OM %p %P %r %R %S %OS %T %X %EX %+} \
	  -locale en_US_roman \
        -gmt true
} {01 i 01 i  1 i  1 i 59 lix AM am 01:59:59 am 01:59 59 lix 01:59:59 01:59:59 i h lix m lix s Thu Jan  1 01:59:59 GMT 1970}
test clock-4.33 { format time of day 11:00:00 } {
    clock format 39600 \
        -format {%H %OH %I %OI %k %Ok %l %Ol %M %OM %p %P %r %R %S %OS %T %X %EX %+} \
	  -locale en_US_roman \
        -gmt true
} {11 xi 11 xi 11 xi 11 xi 00 ? AM am 11:00:00 am 11:00 00 ? 11:00:00 11:00:00 xi h ? m ? s Thu Jan  1 11:00:00 GMT 1970}
test clock-4.34 { format time of day 11:00:01 } {
    clock format 39601 \
        -format {%H %OH %I %OI %k %Ok %l %Ol %M %OM %p %P %r %R %S %OS %T %X %EX %+} \
	  -locale en_US_roman \
        -gmt true
} {11 xi 11 xi 11 xi 11 xi 00 ? AM am 11:00:01 am 11:00 01 i 11:00:01 11:00:01 xi h ? m i s Thu Jan  1 11:00:01 GMT 1970}
test clock-4.35 { format time of day 11:00:58 } {
    clock format 39658 \
        -format {%H %OH %I %OI %k %Ok %l %Ol %M %OM %p %P %r %R %S %OS %T %X %EX %+} \
	  -locale en_US_roman \
        -gmt true
} {11 xi 11 xi 11 xi 11 xi 00 ? AM am 11:00:58 am 11:00 58 lviii 11:00:58 11:00:58 xi h ? m lviii s Thu Jan  1 11:00:58 GMT 1970}
test clock-4.36 { format time of day 11:00:59 } {
    clock format 39659 \
        -format {%H %OH %I %OI %k %Ok %l %Ol %M %OM %p %P %r %R %S %OS %T %X %EX %+} \
	  -locale en_US_roman \
        -gmt true
} {11 xi 11 xi 11 xi 11 xi 00 ? AM am 11:00:59 am 11:00 59 lix 11:00:59 11:00:59 xi h ? m lix s Thu Jan  1 11:00:59 GMT 1970}
test clock-4.37 { format time of day 11:01:00 } {
    clock format 39660 \
        -format {%H %OH %I %OI %k %Ok %l %Ol %M %OM %p %P %r %R %S %OS %T %X %EX %+} \
	  -locale en_US_roman \
        -gmt true
} {11 xi 11 xi 11 xi 11 xi 01 i AM am 11:01:00 am 11:01 00 ? 11:01:00 11:01:00 xi h i m ? s Thu Jan  1 11:01:00 GMT 1970}
test clock-4.38 { format time of day 11:01:01 } {
    clock format 39661 \
        -format {%H %OH %I %OI %k %Ok %l %Ol %M %OM %p %P %r %R %S %OS %T %X %EX %+} \
	  -locale en_US_roman \
        -gmt true
} {11 xi 11 xi 11 xi 11 xi 01 i AM am 11:01:01 am 11:01 01 i 11:01:01 11:01:01 xi h i m i s Thu Jan  1 11:01:01 GMT 1970}
test clock-4.39 { format time of day 11:01:58 } {
    clock format 39718 \
        -format {%H %OH %I %OI %k %Ok %l %Ol %M %OM %p %P %r %R %S %OS %T %X %EX %+} \
	  -locale en_US_roman \
        -gmt true
} {11 xi 11 xi 11 xi 11 xi 01 i AM am 11:01:58 am 11:01 58 lviii 11:01:58 11:01:58 xi h i m lviii s Thu Jan  1 11:01:58 GMT 1970}
test clock-4.40 { format time of day 11:01:59 } {
    clock format 39719 \
        -format {%H %OH %I %OI %k %Ok %l %Ol %M %OM %p %P %r %R %S %OS %T %X %EX %+} \
	  -locale en_US_roman \
        -gmt true
} {11 xi 11 xi 11 xi 11 xi 01 i AM am 11:01:59 am 11:01 59 lix 11:01:59 11:01:59 xi h i m lix s Thu Jan  1 11:01:59 GMT 1970}
test clock-4.41 { format time of day 11:58:00 } {
    clock format 43080 \
        -format {%H %OH %I %OI %k %Ok %l %Ol %M %OM %p %P %r %R %S %OS %T %X %EX %+} \
	  -locale en_US_roman \
        -gmt true
} {11 xi 11 xi 11 xi 11 xi 58 lviii AM am 11:58:00 am 11:58 00 ? 11:58:00 11:58:00 xi h lviii m ? s Thu Jan  1 11:58:00 GMT 1970}
test clock-4.42 { format time of day 11:58:01 } {
    clock format 43081 \
        -format {%H %OH %I %OI %k %Ok %l %Ol %M %OM %p %P %r %R %S %OS %T %X %EX %+} \
	  -locale en_US_roman \
        -gmt true
} {11 xi 11 xi 11 xi 11 xi 58 lviii AM am 11:58:01 am 11:58 01 i 11:58:01 11:58:01 xi h lviii m i s Thu Jan  1 11:58:01 GMT 1970}
test clock-4.43 { format time of day 11:58:58 } {
    clock format 43138 \
        -format {%H %OH %I %OI %k %Ok %l %Ol %M %OM %p %P %r %R %S %OS %T %X %EX %+} \
	  -locale en_US_roman \
        -gmt true
} {11 xi 11 xi 11 xi 11 xi 58 lviii AM am 11:58:58 am 11:58 58 lviii 11:58:58 11:58:58 xi h lviii m lviii s Thu Jan  1 11:58:58 GMT 1970}
test clock-4.44 { format time of day 11:58:59 } {
    clock format 43139 \
        -format {%H %OH %I %OI %k %Ok %l %Ol %M %OM %p %P %r %R %S %OS %T %X %EX %+} \
	  -locale en_US_roman \
        -gmt true
} {11 xi 11 xi 11 xi 11 xi 58 lviii AM am 11:58:59 am 11:58 59 lix 11:58:59 11:58:59 xi h lviii m lix s Thu Jan  1 11:58:59 GMT 1970}
test clock-4.45 { format time of day 11:59:00 } {
    clock format 43140 \
        -format {%H %OH %I %OI %k %Ok %l %Ol %M %OM %p %P %r %R %S %OS %T %X %EX %+} \
	  -locale en_US_roman \
        -gmt true
} {11 xi 11 xi 11 xi 11 xi 59 lix AM am 11:59:00 am 11:59 00 ? 11:59:00 11:59:00 xi h lix m ? s Thu Jan  1 11:59:00 GMT 1970}
test clock-4.46 { format time of day 11:59:01 } {
    clock format 43141 \
        -format {%H %OH %I %OI %k %Ok %l %Ol %M %OM %p %P %r %R %S %OS %T %X %EX %+} \
	  -locale en_US_roman \
        -gmt true
} {11 xi 11 xi 11 xi 11 xi 59 lix AM am 11:59:01 am 11:59 01 i 11:59:01 11:59:01 xi h lix m i s Thu Jan  1 11:59:01 GMT 1970}
test clock-4.47 { format time of day 11:59:58 } {
    clock format 43198 \
        -format {%H %OH %I %OI %k %Ok %l %Ol %M %OM %p %P %r %R %S %OS %T %X %EX %+} \
	  -locale en_US_roman \
        -gmt true
} {11 xi 11 xi 11 xi 11 xi 59 lix AM am 11:59:58 am 11:59 58 lviii 11:59:58 11:59:58 xi h lix m lviii s Thu Jan  1 11:59:58 GMT 1970}
test clock-4.48 { format time of day 11:59:59 } {
    clock format 43199 \
        -format {%H %OH %I %OI %k %Ok %l %Ol %M %OM %p %P %r %R %S %OS %T %X %EX %+} \
	  -locale en_US_roman \
        -gmt true
} {11 xi 11 xi 11 xi 11 xi 59 lix AM am 11:59:59 am 11:59 59 lix 11:59:59 11:59:59 xi h lix m lix s Thu Jan  1 11:59:59 GMT 1970}
test clock-4.49 { format time of day 12:00:00 } {
    clock format 43200 \
        -format {%H %OH %I %OI %k %Ok %l %Ol %M %OM %p %P %r %R %S %OS %T %X %EX %+} \
	  -locale en_US_roman \
        -gmt true
} {12 xii 12 xii 12 xii 12 xii 00 ? PM pm 12:00:00 pm 12:00 00 ? 12:00:00 12:00:00 xii h ? m ? s Thu Jan  1 12:00:00 GMT 1970}
test clock-4.50 { format time of day 12:00:01 } {
    clock format 43201 \
        -format {%H %OH %I %OI %k %Ok %l %Ol %M %OM %p %P %r %R %S %OS %T %X %EX %+} \
	  -locale en_US_roman \
        -gmt true
} {12 xii 12 xii 12 xii 12 xii 00 ? PM pm 12:00:01 pm 12:00 01 i 12:00:01 12:00:01 xii h ? m i s Thu Jan  1 12:00:01 GMT 1970}
test clock-4.51 { format time of day 12:00:58 } {
    clock format 43258 \
        -format {%H %OH %I %OI %k %Ok %l %Ol %M %OM %p %P %r %R %S %OS %T %X %EX %+} \
	  -locale en_US_roman \
        -gmt true
} {12 xii 12 xii 12 xii 12 xii 00 ? PM pm 12:00:58 pm 12:00 58 lviii 12:00:58 12:00:58 xii h ? m lviii s Thu Jan  1 12:00:58 GMT 1970}
test clock-4.52 { format time of day 12:00:59 } {
    clock format 43259 \
        -format {%H %OH %I %OI %k %Ok %l %Ol %M %OM %p %P %r %R %S %OS %T %X %EX %+} \
	  -locale en_US_roman \
        -gmt true
} {12 xii 12 xii 12 xii 12 xii 00 ? PM pm 12:00:59 pm 12:00 59 lix 12:00:59 12:00:59 xii h ? m lix s Thu Jan  1 12:00:59 GMT 1970}
test clock-4.53 { format time of day 12:01:00 } {
    clock format 43260 \
        -format {%H %OH %I %OI %k %Ok %l %Ol %M %OM %p %P %r %R %S %OS %T %X %EX %+} \
	  -locale en_US_roman \
        -gmt true
} {12 xii 12 xii 12 xii 12 xii 01 i PM pm 12:01:00 pm 12:01 00 ? 12:01:00 12:01:00 xii h i m ? s Thu Jan  1 12:01:00 GMT 1970}
test clock-4.54 { format time of day 12:01:01 } {
    clock format 43261 \
        -format {%H %OH %I %OI %k %Ok %l %Ol %M %OM %p %P %r %R %S %OS %T %X %EX %+} \
	  -locale en_US_roman \
        -gmt true
} {12 xii 12 xii 12 xii 12 xii 01 i PM pm 12:01:01 pm 12:01 01 i 12:01:01 12:01:01 xii h i m i s Thu Jan  1 12:01:01 GMT 1970}
test clock-4.55 { format time of day 12:01:58 } {
    clock format 43318 \
        -format {%H %OH %I %OI %k %Ok %l %Ol %M %OM %p %P %r %R %S %OS %T %X %EX %+} \
	  -locale en_US_roman \
        -gmt true
} {12 xii 12 xii 12 xii 12 xii 01 i PM pm 12:01:58 pm 12:01 58 lviii 12:01:58 12:01:58 xii h i m lviii s Thu Jan  1 12:01:58 GMT 1970}
test clock-4.56 { format time of day 12:01:59 } {
    clock format 43319 \
        -format {%H %OH %I %OI %k %Ok %l %Ol %M %OM %p %P %r %R %S %OS %T %X %EX %+} \
	  -locale en_US_roman \
        -gmt true
} {12 xii 12 xii 12 xii 12 xii 01 i PM pm 12:01:59 pm 12:01 59 lix 12:01:59 12:01:59 xii h i m lix s Thu Jan  1 12:01:59 GMT 1970}
test clock-4.57 { format time of day 12:58:00 } {
    clock format 46680 \
        -format {%H %OH %I %OI %k %Ok %l %Ol %M %OM %p %P %r %R %S %OS %T %X %EX %+} \
	  -locale en_US_roman \
        -gmt true
} {12 xii 12 xii 12 xii 12 xii 58 lviii PM pm 12:58:00 pm 12:58 00 ? 12:58:00 12:58:00 xii h lviii m ? s Thu Jan  1 12:58:00 GMT 1970}
test clock-4.58 { format time of day 12:58:01 } {
    clock format 46681 \
        -format {%H %OH %I %OI %k %Ok %l %Ol %M %OM %p %P %r %R %S %OS %T %X %EX %+} \
	  -locale en_US_roman \
        -gmt true
} {12 xii 12 xii 12 xii 12 xii 58 lviii PM pm 12:58:01 pm 12:58 01 i 12:58:01 12:58:01 xii h lviii m i s Thu Jan  1 12:58:01 GMT 1970}
test clock-4.59 { format time of day 12:58:58 } {
    clock format 46738 \
        -format {%H %OH %I %OI %k %Ok %l %Ol %M %OM %p %P %r %R %S %OS %T %X %EX %+} \
	  -locale en_US_roman \
        -gmt true
} {12 xii 12 xii 12 xii 12 xii 58 lviii PM pm 12:58:58 pm 12:58 58 lviii 12:58:58 12:58:58 xii h lviii m lviii s Thu Jan  1 12:58:58 GMT 1970}
test clock-4.60 { format time of day 12:58:59 } {
    clock format 46739 \
        -format {%H %OH %I %OI %k %Ok %l %Ol %M %OM %p %P %r %R %S %OS %T %X %EX %+} \
	  -locale en_US_roman \
        -gmt true
} {12 xii 12 xii 12 xii 12 xii 58 lviii PM pm 12:58:59 pm 12:58 59 lix 12:58:59 12:58:59 xii h lviii m lix s Thu Jan  1 12:58:59 GMT 1970}
test clock-4.61 { format time of day 12:59:00 } {
    clock format 46740 \
        -format {%H %OH %I %OI %k %Ok %l %Ol %M %OM %p %P %r %R %S %OS %T %X %EX %+} \
	  -locale en_US_roman \
        -gmt true
} {12 xii 12 xii 12 xii 12 xii 59 lix PM pm 12:59:00 pm 12:59 00 ? 12:59:00 12:59:00 xii h lix m ? s Thu Jan  1 12:59:00 GMT 1970}
test clock-4.62 { format time of day 12:59:01 } {
    clock format 46741 \
        -format {%H %OH %I %OI %k %Ok %l %Ol %M %OM %p %P %r %R %S %OS %T %X %EX %+} \
	  -locale en_US_roman \
        -gmt true
} {12 xii 12 xii 12 xii 12 xii 59 lix PM pm 12:59:01 pm 12:59 01 i 12:59:01 12:59:01 xii h lix m i s Thu Jan  1 12:59:01 GMT 1970}
test clock-4.63 { format time of day 12:59:58 } {
    clock format 46798 \
        -format {%H %OH %I %OI %k %Ok %l %Ol %M %OM %p %P %r %R %S %OS %T %X %EX %+} \
	  -locale en_US_roman \
        -gmt true
} {12 xii 12 xii 12 xii 12 xii 59 lix PM pm 12:59:58 pm 12:59 58 lviii 12:59:58 12:59:58 xii h lix m lviii s Thu Jan  1 12:59:58 GMT 1970}
test clock-4.64 { format time of day 12:59:59 } {
    clock format 46799 \
        -format {%H %OH %I %OI %k %Ok %l %Ol %M %OM %p %P %r %R %S %OS %T %X %EX %+} \
	  -locale en_US_roman \
        -gmt true
} {12 xii 12 xii 12 xii 12 xii 59 lix PM pm 12:59:59 pm 12:59 59 lix 12:59:59 12:59:59 xii h lix m lix s Thu Jan  1 12:59:59 GMT 1970}
test clock-4.65 { format time of day 13:00:00 } {
    clock format 46800 \
        -format {%H %OH %I %OI %k %Ok %l %Ol %M %OM %p %P %r %R %S %OS %T %X %EX %+} \
	  -locale en_US_roman \
        -gmt true
} {13 xiii 01 i 13 xiii  1 i 00 ? PM pm 01:00:00 pm 13:00 00 ? 13:00:00 13:00:00 xiii h ? m ? s Thu Jan  1 13:00:00 GMT 1970}
test clock-4.66 { format time of day 13:00:01 } {
    clock format 46801 \
        -format {%H %OH %I %OI %k %Ok %l %Ol %M %OM %p %P %r %R %S %OS %T %X %EX %+} \
	  -locale en_US_roman \
        -gmt true
} {13 xiii 01 i 13 xiii  1 i 00 ? PM pm 01:00:01 pm 13:00 01 i 13:00:01 13:00:01 xiii h ? m i s Thu Jan  1 13:00:01 GMT 1970}
test clock-4.67 { format time of day 13:00:58 } {
    clock format 46858 \
        -format {%H %OH %I %OI %k %Ok %l %Ol %M %OM %p %P %r %R %S %OS %T %X %EX %+} \
	  -locale en_US_roman \
        -gmt true
} {13 xiii 01 i 13 xiii  1 i 00 ? PM pm 01:00:58 pm 13:00 58 lviii 13:00:58 13:00:58 xiii h ? m lviii s Thu Jan  1 13:00:58 GMT 1970}
test clock-4.68 { format time of day 13:00:59 } {
    clock format 46859 \
        -format {%H %OH %I %OI %k %Ok %l %Ol %M %OM %p %P %r %R %S %OS %T %X %EX %+} \
	  -locale en_US_roman \
        -gmt true
} {13 xiii 01 i 13 xiii  1 i 00 ? PM pm 01:00:59 pm 13:00 59 lix 13:00:59 13:00:59 xiii h ? m lix s Thu Jan  1 13:00:59 GMT 1970}
test clock-4.69 { format time of day 13:01:00 } {
    clock format 46860 \
        -format {%H %OH %I %OI %k %Ok %l %Ol %M %OM %p %P %r %R %S %OS %T %X %EX %+} \
	  -locale en_US_roman \
        -gmt true
} {13 xiii 01 i 13 xiii  1 i 01 i PM pm 01:01:00 pm 13:01 00 ? 13:01:00 13:01:00 xiii h i m ? s Thu Jan  1 13:01:00 GMT 1970}
test clock-4.70 { format time of day 13:01:01 } {
    clock format 46861 \
        -format {%H %OH %I %OI %k %Ok %l %Ol %M %OM %p %P %r %R %S %OS %T %X %EX %+} \
	  -locale en_US_roman \
        -gmt true
} {13 xiii 01 i 13 xiii  1 i 01 i PM pm 01:01:01 pm 13:01 01 i 13:01:01 13:01:01 xiii h i m i s Thu Jan  1 13:01:01 GMT 1970}
test clock-4.71 { format time of day 13:01:58 } {
    clock format 46918 \
        -format {%H %OH %I %OI %k %Ok %l %Ol %M %OM %p %P %r %R %S %OS %T %X %EX %+} \
	  -locale en_US_roman \
        -gmt true
} {13 xiii 01 i 13 xiii  1 i 01 i PM pm 01:01:58 pm 13:01 58 lviii 13:01:58 13:01:58 xiii h i m lviii s Thu Jan  1 13:01:58 GMT 1970}
test clock-4.72 { format time of day 13:01:59 } {
    clock format 46919 \
        -format {%H %OH %I %OI %k %Ok %l %Ol %M %OM %p %P %r %R %S %OS %T %X %EX %+} \
	  -locale en_US_roman \
        -gmt true
} {13 xiii 01 i 13 xiii  1 i 01 i PM pm 01:01:59 pm 13:01 59 lix 13:01:59 13:01:59 xiii h i m lix s Thu Jan  1 13:01:59 GMT 1970}
test clock-4.73 { format time of day 13:58:00 } {
    clock format 50280 \
        -format {%H %OH %I %OI %k %Ok %l %Ol %M %OM %p %P %r %R %S %OS %T %X %EX %+} \
	  -locale en_US_roman \
        -gmt true
} {13 xiii 01 i 13 xiii  1 i 58 lviii PM pm 01:58:00 pm 13:58 00 ? 13:58:00 13:58:00 xiii h lviii m ? s Thu Jan  1 13:58:00 GMT 1970}
test clock-4.74 { format time of day 13:58:01 } {
    clock format 50281 \
        -format {%H %OH %I %OI %k %Ok %l %Ol %M %OM %p %P %r %R %S %OS %T %X %EX %+} \
	  -locale en_US_roman \
        -gmt true
} {13 xiii 01 i 13 xiii  1 i 58 lviii PM pm 01:58:01 pm 13:58 01 i 13:58:01 13:58:01 xiii h lviii m i s Thu Jan  1 13:58:01 GMT 1970}
test clock-4.75 { format time of day 13:58:58 } {
    clock format 50338 \
        -format {%H %OH %I %OI %k %Ok %l %Ol %M %OM %p %P %r %R %S %OS %T %X %EX %+} \
	  -locale en_US_roman \
        -gmt true
} {13 xiii 01 i 13 xiii  1 i 58 lviii PM pm 01:58:58 pm 13:58 58 lviii 13:58:58 13:58:58 xiii h lviii m lviii s Thu Jan  1 13:58:58 GMT 1970}
test clock-4.76 { format time of day 13:58:59 } {
    clock format 50339 \
        -format {%H %OH %I %OI %k %Ok %l %Ol %M %OM %p %P %r %R %S %OS %T %X %EX %+} \
	  -locale en_US_roman \
        -gmt true
} {13 xiii 01 i 13 xiii  1 i 58 lviii PM pm 01:58:59 pm 13:58 59 lix 13:58:59 13:58:59 xiii h lviii m lix s Thu Jan  1 13:58:59 GMT 1970}
test clock-4.77 { format time of day 13:59:00 } {
    clock format 50340 \
        -format {%H %OH %I %OI %k %Ok %l %Ol %M %OM %p %P %r %R %S %OS %T %X %EX %+} \
	  -locale en_US_roman \
        -gmt true
} {13 xiii 01 i 13 xiii  1 i 59 lix PM pm 01:59:00 pm 13:59 00 ? 13:59:00 13:59:00 xiii h lix m ? s Thu Jan  1 13:59:00 GMT 1970}
test clock-4.78 { format time of day 13:59:01 } {
    clock format 50341 \
        -format {%H %OH %I %OI %k %Ok %l %Ol %M %OM %p %P %r %R %S %OS %T %X %EX %+} \
	  -locale en_US_roman \
        -gmt true
} {13 xiii 01 i 13 xiii  1 i 59 lix PM pm 01:59:01 pm 13:59 01 i 13:59:01 13:59:01 xiii h lix m i s Thu Jan  1 13:59:01 GMT 1970}
test clock-4.79 { format time of day 13:59:58 } {
    clock format 50398 \
        -format {%H %OH %I %OI %k %Ok %l %Ol %M %OM %p %P %r %R %S %OS %T %X %EX %+} \
	  -locale en_US_roman \
        -gmt true
} {13 xiii 01 i 13 xiii  1 i 59 lix PM pm 01:59:58 pm 13:59 58 lviii 13:59:58 13:59:58 xiii h lix m lviii s Thu Jan  1 13:59:58 GMT 1970}
test clock-4.80 { format time of day 13:59:59 } {
    clock format 50399 \
        -format {%H %OH %I %OI %k %Ok %l %Ol %M %OM %p %P %r %R %S %OS %T %X %EX %+} \
	  -locale en_US_roman \
        -gmt true
} {13 xiii 01 i 13 xiii  1 i 59 lix PM pm 01:59:59 pm 13:59 59 lix 13:59:59 13:59:59 xiii h lix m lix s Thu Jan  1 13:59:59 GMT 1970}
test clock-4.81 { format time of day 23:00:00 } {
    clock format 82800 \
        -format {%H %OH %I %OI %k %Ok %l %Ol %M %OM %p %P %r %R %S %OS %T %X %EX %+} \
	  -locale en_US_roman \
        -gmt true
} {23 xxiii 11 xi 23 xxiii 11 xi 00 ? PM pm 11:00:00 pm 23:00 00 ? 23:00:00 23:00:00 xxiii h ? m ? s Thu Jan  1 23:00:00 GMT 1970}
test clock-4.82 { format time of day 23:00:01 } {
    clock format 82801 \
        -format {%H %OH %I %OI %k %Ok %l %Ol %M %OM %p %P %r %R %S %OS %T %X %EX %+} \
	  -locale en_US_roman \
        -gmt true
} {23 xxiii 11 xi 23 xxiii 11 xi 00 ? PM pm 11:00:01 pm 23:00 01 i 23:00:01 23:00:01 xxiii h ? m i s Thu Jan  1 23:00:01 GMT 1970}
test clock-4.83 { format time of day 23:00:58 } {
    clock format 82858 \
        -format {%H %OH %I %OI %k %Ok %l %Ol %M %OM %p %P %r %R %S %OS %T %X %EX %+} \
	  -locale en_US_roman \
        -gmt true
} {23 xxiii 11 xi 23 xxiii 11 xi 00 ? PM pm 11:00:58 pm 23:00 58 lviii 23:00:58 23:00:58 xxiii h ? m lviii s Thu Jan  1 23:00:58 GMT 1970}
test clock-4.84 { format time of day 23:00:59 } {
    clock format 82859 \
        -format {%H %OH %I %OI %k %Ok %l %Ol %M %OM %p %P %r %R %S %OS %T %X %EX %+} \
	  -locale en_US_roman \
        -gmt true
} {23 xxiii 11 xi 23 xxiii 11 xi 00 ? PM pm 11:00:59 pm 23:00 59 lix 23:00:59 23:00:59 xxiii h ? m lix s Thu Jan  1 23:00:59 GMT 1970}
test clock-4.85 { format time of day 23:01:00 } {
    clock format 82860 \
        -format {%H %OH %I %OI %k %Ok %l %Ol %M %OM %p %P %r %R %S %OS %T %X %EX %+} \
	  -locale en_US_roman \
        -gmt true
} {23 xxiii 11 xi 23 xxiii 11 xi 01 i PM pm 11:01:00 pm 23:01 00 ? 23:01:00 23:01:00 xxiii h i m ? s Thu Jan  1 23:01:00 GMT 1970}
test clock-4.86 { format time of day 23:01:01 } {
    clock format 82861 \
        -format {%H %OH %I %OI %k %Ok %l %Ol %M %OM %p %P %r %R %S %OS %T %X %EX %+} \
	  -locale en_US_roman \
        -gmt true
} {23 xxiii 11 xi 23 xxiii 11 xi 01 i PM pm 11:01:01 pm 23:01 01 i 23:01:01 23:01:01 xxiii h i m i s Thu Jan  1 23:01:01 GMT 1970}
test clock-4.87 { format time of day 23:01:58 } {
    clock format 82918 \
        -format {%H %OH %I %OI %k %Ok %l %Ol %M %OM %p %P %r %R %S %OS %T %X %EX %+} \
	  -locale en_US_roman \
        -gmt true
} {23 xxiii 11 xi 23 xxiii 11 xi 01 i PM pm 11:01:58 pm 23:01 58 lviii 23:01:58 23:01:58 xxiii h i m lviii s Thu Jan  1 23:01:58 GMT 1970}
test clock-4.88 { format time of day 23:01:59 } {
    clock format 82919 \
        -format {%H %OH %I %OI %k %Ok %l %Ol %M %OM %p %P %r %R %S %OS %T %X %EX %+} \
	  -locale en_US_roman \
        -gmt true
} {23 xxiii 11 xi 23 xxiii 11 xi 01 i PM pm 11:01:59 pm 23:01 59 lix 23:01:59 23:01:59 xxiii h i m lix s Thu Jan  1 23:01:59 GMT 1970}
test clock-4.89 { format time of day 23:58:00 } {
    clock format 86280 \
        -format {%H %OH %I %OI %k %Ok %l %Ol %M %OM %p %P %r %R %S %OS %T %X %EX %+} \
	  -locale en_US_roman \
        -gmt true
} {23 xxiii 11 xi 23 xxiii 11 xi 58 lviii PM pm 11:58:00 pm 23:58 00 ? 23:58:00 23:58:00 xxiii h lviii m ? s Thu Jan  1 23:58:00 GMT 1970}
test clock-4.90 { format time of day 23:58:01 } {
    clock format 86281 \
        -format {%H %OH %I %OI %k %Ok %l %Ol %M %OM %p %P %r %R %S %OS %T %X %EX %+} \
	  -locale en_US_roman \
        -gmt true
} {23 xxiii 11 xi 23 xxiii 11 xi 58 lviii PM pm 11:58:01 pm 23:58 01 i 23:58:01 23:58:01 xxiii h lviii m i s Thu Jan  1 23:58:01 GMT 1970}
test clock-4.91 { format time of day 23:58:58 } {
    clock format 86338 \
        -format {%H %OH %I %OI %k %Ok %l %Ol %M %OM %p %P %r %R %S %OS %T %X %EX %+} \
	  -locale en_US_roman \
        -gmt true
} {23 xxiii 11 xi 23 xxiii 11 xi 58 lviii PM pm 11:58:58 pm 23:58 58 lviii 23:58:58 23:58:58 xxiii h lviii m lviii s Thu Jan  1 23:58:58 GMT 1970}
test clock-4.92 { format time of day 23:58:59 } {
    clock format 86339 \
        -format {%H %OH %I %OI %k %Ok %l %Ol %M %OM %p %P %r %R %S %OS %T %X %EX %+} \
	  -locale en_US_roman \
        -gmt true
} {23 xxiii 11 xi 23 xxiii 11 xi 58 lviii PM pm 11:58:59 pm 23:58 59 lix 23:58:59 23:58:59 xxiii h lviii m lix s Thu Jan  1 23:58:59 GMT 1970}
test clock-4.93 { format time of day 23:59:00 } {
    clock format 86340 \
        -format {%H %OH %I %OI %k %Ok %l %Ol %M %OM %p %P %r %R %S %OS %T %X %EX %+} \
	  -locale en_US_roman \
        -gmt true
} {23 xxiii 11 xi 23 xxiii 11 xi 59 lix PM pm 11:59:00 pm 23:59 00 ? 23:59:00 23:59:00 xxiii h lix m ? s Thu Jan  1 23:59:00 GMT 1970}
test clock-4.94 { format time of day 23:59:01 } {
    clock format 86341 \
        -format {%H %OH %I %OI %k %Ok %l %Ol %M %OM %p %P %r %R %S %OS %T %X %EX %+} \
	  -locale en_US_roman \
        -gmt true
} {23 xxiii 11 xi 23 xxiii 11 xi 59 lix PM pm 11:59:01 pm 23:59 01 i 23:59:01 23:59:01 xxiii h lix m i s Thu Jan  1 23:59:01 GMT 1970}
test clock-4.95 { format time of day 23:59:58 } {
    clock format 86398 \
        -format {%H %OH %I %OI %k %Ok %l %Ol %M %OM %p %P %r %R %S %OS %T %X %EX %+} \
	  -locale en_US_roman \
        -gmt true
} {23 xxiii 11 xi 23 xxiii 11 xi 59 lix PM pm 11:59:58 pm 23:59 58 lviii 23:59:58 23:59:58 xxiii h lix m lviii s Thu Jan  1 23:59:58 GMT 1970}
test clock-4.96 { format time of day 23:59:59 } {
    clock format 86399 \
        -format {%H %OH %I %OI %k %Ok %l %Ol %M %OM %p %P %r %R %S %OS %T %X %EX %+} \
	  -locale en_US_roman \
        -gmt true
} {23 xxiii 11 xi 23 xxiii 11 xi 59 lix PM pm 11:59:59 pm 23:59 59 lix 23:59:59 23:59:59 xxiii h lix m lix s Thu Jan  1 23:59:59 GMT 1970}
# END testcases4

# BEGIN testcases5

# Test formatting of Daylight Saving Time

test clock-5.1 {does Detroit exist} {
    clock format 0 -format {} -timezone :America/Detroit
    concat
} {}
test clock-5.2 {does Detroit have a Y2038 problem} detroit {
    if { [clock format 2158894800 -format %z -timezone :America/Detroit] ne {-0400} } {
        concat {y2038 problem}
    } else {
        concat {ok}
    }
} ok
test clock-5.3 {time zone boundary case 1904-12-31 23:59:59} detroit {
    clock format -2051202470 -format {%H:%M:%S %z %Z} \
        -timezone :America/Detroit
} {23:59:59 -053211 LMT}
test clock-5.4 {time zone boundary case 1904-12-31 23:32:11} detroit {
    clock format -2051202469 -format {%H:%M:%S %z %Z} \
        -timezone :America/Detroit
} {23:32:11 -0600 CST}
test clock-5.5 {time zone boundary case 1904-12-31 23:32:12} detroit {
    clock format -2051202468 -format {%H:%M:%S %z %Z} \
        -timezone :America/Detroit
} {23:32:12 -0600 CST}
test clock-5.6 {time zone boundary case 1915-05-15 01:59:59} detroit {
    clock format -1724083201 -format {%H:%M:%S %z %Z} \
        -timezone :America/Detroit
} {01:59:59 -0600 CST}
test clock-5.7 {time zone boundary case 1915-05-15 03:00:00} detroit {
    clock format -1724083200 -format {%H:%M:%S %z %Z} \
        -timezone :America/Detroit
} {03:00:00 -0500 EST}
test clock-5.8 {time zone boundary case 1915-05-15 03:00:01} detroit {
    clock format -1724083199 -format {%H:%M:%S %z %Z} \
        -timezone :America/Detroit
} {03:00:01 -0500 EST}
test clock-5.9 {time zone boundary case 1941-12-31 23:59:59} detroit {
    clock format -883594801 -format {%H:%M:%S %z %Z} \
        -timezone :America/Detroit
} {23:59:59 -0500 EST}
test clock-5.10 {time zone boundary case 1942-01-01 00:00:00} detroit {
    clock format -883594800 -format {%H:%M:%S %z %Z} \
        -timezone :America/Detroit
} {00:00:00 -0500 EST}
test clock-5.11 {time zone boundary case 1942-01-01 00:00:01} detroit {
    clock format -883594799 -format {%H:%M:%S %z %Z} \
        -timezone :America/Detroit
} {00:00:01 -0500 EST}
test clock-5.12 {time zone boundary case 1942-02-09 01:59:59} detroit {
    clock format -880218001 -format {%H:%M:%S %z %Z} \
        -timezone :America/Detroit
} {01:59:59 -0500 EST}
test clock-5.13 {time zone boundary case 1942-02-09 03:00:00} detroit {
    clock format -880218000 -format {%H:%M:%S %z %Z} \
        -timezone :America/Detroit
} {03:00:00 -0400 EWT}
test clock-5.14 {time zone boundary case 1942-02-09 03:00:01} detroit {
    clock format -880217999 -format {%H:%M:%S %z %Z} \
        -timezone :America/Detroit
} {03:00:01 -0400 EWT}
test clock-5.15 {time zone boundary case 1945-08-14 18:59:59} detroit {
    clock format -769395601 -format {%H:%M:%S %z %Z} \
        -timezone :America/Detroit
} {18:59:59 -0400 EWT}
test clock-5.16 {time zone boundary case 1945-08-14 19:00:00} detroit {
    clock format -769395600 -format {%H:%M:%S %z %Z} \
        -timezone :America/Detroit
} {19:00:00 -0400 EPT}
test clock-5.17 {time zone boundary case 1945-08-14 19:00:01} detroit {
    clock format -769395599 -format {%H:%M:%S %z %Z} \
        -timezone :America/Detroit
} {19:00:01 -0400 EPT}
test clock-5.18 {time zone boundary case 1945-09-30 01:59:59} detroit {
    clock format -765396001 -format {%H:%M:%S %z %Z} \
        -timezone :America/Detroit
} {01:59:59 -0400 EPT}
test clock-5.19 {time zone boundary case 1945-09-30 01:00:00} detroit {
    clock format -765396000 -format {%H:%M:%S %z %Z} \
        -timezone :America/Detroit
} {01:00:00 -0500 EST}
test clock-5.20 {time zone boundary case 1945-09-30 01:00:01} detroit {
    clock format -765395999 -format {%H:%M:%S %z %Z} \
        -timezone :America/Detroit
} {01:00:01 -0500 EST}
test clock-5.21 {time zone boundary case 1945-12-31 23:59:59} detroit {
    clock format -757364401 -format {%H:%M:%S %z %Z} \
        -timezone :America/Detroit
} {23:59:59 -0500 EST}
test clock-5.22 {time zone boundary case 1946-01-01 00:00:00} detroit {
    clock format -757364400 -format {%H:%M:%S %z %Z} \
        -timezone :America/Detroit
} {00:00:00 -0500 EST}
test clock-5.23 {time zone boundary case 1946-01-01 00:00:01} detroit {
    clock format -757364399 -format {%H:%M:%S %z %Z} \
        -timezone :America/Detroit
} {00:00:01 -0500 EST}
test clock-5.24 {time zone boundary case 1948-04-25 01:59:59} detroit {
    clock format -684349201 -format {%H:%M:%S %z %Z} \
        -timezone :America/Detroit
} {01:59:59 -0500 EST}
test clock-5.25 {time zone boundary case 1948-04-25 03:00:00} detroit {
    clock format -684349200 -format {%H:%M:%S %z %Z} \
        -timezone :America/Detroit
} {03:00:00 -0400 EDT}
test clock-5.26 {time zone boundary case 1948-04-25 03:00:01} detroit {
    clock format -684349199 -format {%H:%M:%S %z %Z} \
        -timezone :America/Detroit
} {03:00:01 -0400 EDT}
test clock-5.27 {time zone boundary case 1948-09-26 01:59:59} detroit {
    clock format -671047201 -format {%H:%M:%S %z %Z} \
        -timezone :America/Detroit
} {01:59:59 -0400 EDT}
test clock-5.28 {time zone boundary case 1948-09-26 01:00:00} detroit {
    clock format -671047200 -format {%H:%M:%S %z %Z} \
        -timezone :America/Detroit
} {01:00:00 -0500 EST}
test clock-5.29 {time zone boundary case 1948-09-26 01:00:01} detroit {
    clock format -671047199 -format {%H:%M:%S %z %Z} \
        -timezone :America/Detroit
} {01:00:01 -0500 EST}
test clock-5.30 {time zone boundary case 1967-06-14 01:59:59} detroit {
    clock format -80499601 -format {%H:%M:%S %z %Z} \
        -timezone :America/Detroit
} {01:59:59 -0500 EST}
test clock-5.31 {time zone boundary case 1967-06-14 03:00:00} detroit {
    clock format -80499600 -format {%H:%M:%S %z %Z} \
        -timezone :America/Detroit
} {03:00:00 -0400 EDT}
test clock-5.32 {time zone boundary case 1967-06-14 03:00:01} detroit {
    clock format -80499599 -format {%H:%M:%S %z %Z} \
        -timezone :America/Detroit
} {03:00:01 -0400 EDT}
test clock-5.33 {time zone boundary case 1967-10-29 01:59:59} detroit {
    clock format -68666401 -format {%H:%M:%S %z %Z} \
        -timezone :America/Detroit
} {01:59:59 -0400 EDT}
test clock-5.34 {time zone boundary case 1967-10-29 01:00:00} detroit {
    clock format -68666400 -format {%H:%M:%S %z %Z} \
        -timezone :America/Detroit
} {01:00:00 -0500 EST}
test clock-5.35 {time zone boundary case 1967-10-29 01:00:01} detroit {
    clock format -68666399 -format {%H:%M:%S %z %Z} \
        -timezone :America/Detroit
} {01:00:01 -0500 EST}
test clock-5.36 {time zone boundary case 1972-12-31 23:59:59} detroit {
    clock format 94712399 -format {%H:%M:%S %z %Z} \
        -timezone :America/Detroit
} {23:59:59 -0500 EST}
test clock-5.37 {time zone boundary case 1973-01-01 00:00:00} detroit {
    clock format 94712400 -format {%H:%M:%S %z %Z} \
        -timezone :America/Detroit
} {00:00:00 -0500 EST}
test clock-5.38 {time zone boundary case 1973-01-01 00:00:01} detroit {
    clock format 94712401 -format {%H:%M:%S %z %Z} \
        -timezone :America/Detroit
} {00:00:01 -0500 EST}
test clock-5.39 {time zone boundary case 1973-04-29 01:59:59} detroit {
    clock format 104914799 -format {%H:%M:%S %z %Z} \
        -timezone :America/Detroit
} {01:59:59 -0500 EST}
test clock-5.40 {time zone boundary case 1973-04-29 03:00:00} detroit {
    clock format 104914800 -format {%H:%M:%S %z %Z} \
        -timezone :America/Detroit
} {03:00:00 -0400 EDT}
test clock-5.41 {time zone boundary case 1973-04-29 03:00:01} detroit {
    clock format 104914801 -format {%H:%M:%S %z %Z} \
        -timezone :America/Detroit
} {03:00:01 -0400 EDT}
test clock-5.42 {time zone boundary case 1973-10-28 01:59:59} detroit {
    clock format 120635999 -format {%H:%M:%S %z %Z} \
        -timezone :America/Detroit
} {01:59:59 -0400 EDT}
test clock-5.43 {time zone boundary case 1973-10-28 01:00:00} detroit {
    clock format 120636000 -format {%H:%M:%S %z %Z} \
        -timezone :America/Detroit
} {01:00:00 -0500 EST}
test clock-5.44 {time zone boundary case 1973-10-28 01:00:01} detroit {
    clock format 120636001 -format {%H:%M:%S %z %Z} \
        -timezone :America/Detroit
} {01:00:01 -0500 EST}
test clock-5.45 {time zone boundary case 1974-01-06 01:59:59} detroit {
    clock format 126687599 -format {%H:%M:%S %z %Z} \
        -timezone :America/Detroit
} {01:59:59 -0500 EST}
test clock-5.46 {time zone boundary case 1974-01-06 03:00:00} detroit {
    clock format 126687600 -format {%H:%M:%S %z %Z} \
        -timezone :America/Detroit
} {03:00:00 -0400 EDT}
test clock-5.47 {time zone boundary case 1974-01-06 03:00:01} detroit {
    clock format 126687601 -format {%H:%M:%S %z %Z} \
        -timezone :America/Detroit
} {03:00:01 -0400 EDT}
test clock-5.48 {time zone boundary case 1974-10-27 01:59:59} detroit {
    clock format 152085599 -format {%H:%M:%S %z %Z} \
        -timezone :America/Detroit
} {01:59:59 -0400 EDT}
test clock-5.49 {time zone boundary case 1974-10-27 01:00:00} detroit {
    clock format 152085600 -format {%H:%M:%S %z %Z} \
        -timezone :America/Detroit
} {01:00:00 -0500 EST}
test clock-5.50 {time zone boundary case 1974-10-27 01:00:01} detroit {
    clock format 152085601 -format {%H:%M:%S %z %Z} \
        -timezone :America/Detroit
} {01:00:01 -0500 EST}
test clock-5.51 {time zone boundary case 1974-12-31 23:59:59} detroit {
    clock format 157784399 -format {%H:%M:%S %z %Z} \
        -timezone :America/Detroit
} {23:59:59 -0500 EST}
test clock-5.52 {time zone boundary case 1975-01-01 00:00:00} detroit {
    clock format 157784400 -format {%H:%M:%S %z %Z} \
        -timezone :America/Detroit
} {00:00:00 -0500 EST}
test clock-5.53 {time zone boundary case 1975-01-01 00:00:01} detroit {
    clock format 157784401 -format {%H:%M:%S %z %Z} \
        -timezone :America/Detroit
} {00:00:01 -0500 EST}
test clock-5.54 {time zone boundary case 1975-04-27 01:59:59} detroit {
    clock format 167813999 -format {%H:%M:%S %z %Z} \
        -timezone :America/Detroit
} {01:59:59 -0500 EST}
test clock-5.55 {time zone boundary case 1975-04-27 03:00:00} detroit {
    clock format 167814000 -format {%H:%M:%S %z %Z} \
        -timezone :America/Detroit
} {03:00:00 -0400 EDT}
test clock-5.56 {time zone boundary case 1975-04-27 03:00:01} detroit {
    clock format 167814001 -format {%H:%M:%S %z %Z} \
        -timezone :America/Detroit
} {03:00:01 -0400 EDT}
test clock-5.57 {time zone boundary case 1975-10-26 01:59:59} detroit {
    clock format 183535199 -format {%H:%M:%S %z %Z} \
        -timezone :America/Detroit
} {01:59:59 -0400 EDT}
test clock-5.58 {time zone boundary case 1975-10-26 01:00:00} detroit {
    clock format 183535200 -format {%H:%M:%S %z %Z} \
        -timezone :America/Detroit
} {01:00:00 -0500 EST}
test clock-5.59 {time zone boundary case 1975-10-26 01:00:01} detroit {
    clock format 183535201 -format {%H:%M:%S %z %Z} \
        -timezone :America/Detroit
} {01:00:01 -0500 EST}
test clock-5.60 {time zone boundary case 1976-04-25 01:59:59} detroit {
    clock format 199263599 -format {%H:%M:%S %z %Z} \
        -timezone :America/Detroit
} {01:59:59 -0500 EST}
test clock-5.61 {time zone boundary case 1976-04-25 03:00:00} detroit {
    clock format 199263600 -format {%H:%M:%S %z %Z} \
        -timezone :America/Detroit
} {03:00:00 -0400 EDT}
test clock-5.62 {time zone boundary case 1976-04-25 03:00:01} detroit {
    clock format 199263601 -format {%H:%M:%S %z %Z} \
        -timezone :America/Detroit
} {03:00:01 -0400 EDT}
test clock-5.63 {time zone boundary case 1976-10-31 01:59:59} detroit {
    clock format 215589599 -format {%H:%M:%S %z %Z} \
        -timezone :America/Detroit
} {01:59:59 -0400 EDT}
test clock-5.64 {time zone boundary case 1976-10-31 01:00:00} detroit {
    clock format 215589600 -format {%H:%M:%S %z %Z} \
        -timezone :America/Detroit
} {01:00:00 -0500 EST}
test clock-5.65 {time zone boundary case 1976-10-31 01:00:01} detroit {
    clock format 215589601 -format {%H:%M:%S %z %Z} \
        -timezone :America/Detroit
} {01:00:01 -0500 EST}
test clock-5.66 {time zone boundary case 1977-04-24 01:59:59} detroit {
    clock format 230713199 -format {%H:%M:%S %z %Z} \
        -timezone :America/Detroit
} {01:59:59 -0500 EST}
test clock-5.67 {time zone boundary case 1977-04-24 03:00:00} detroit {
    clock format 230713200 -format {%H:%M:%S %z %Z} \
        -timezone :America/Detroit
} {03:00:00 -0400 EDT}
test clock-5.68 {time zone boundary case 1977-04-24 03:00:01} detroit {
    clock format 230713201 -format {%H:%M:%S %z %Z} \
        -timezone :America/Detroit
} {03:00:01 -0400 EDT}
test clock-5.69 {time zone boundary case 1977-10-30 01:59:59} detroit {
    clock format 247039199 -format {%H:%M:%S %z %Z} \
        -timezone :America/Detroit
} {01:59:59 -0400 EDT}
test clock-5.70 {time zone boundary case 1977-10-30 01:00:00} detroit {
    clock format 247039200 -format {%H:%M:%S %z %Z} \
        -timezone :America/Detroit
} {01:00:00 -0500 EST}
test clock-5.71 {time zone boundary case 1977-10-30 01:00:01} detroit {
    clock format 247039201 -format {%H:%M:%S %z %Z} \
        -timezone :America/Detroit
} {01:00:01 -0500 EST}
test clock-5.72 {time zone boundary case 1978-04-30 01:59:59} detroit {
    clock format 262767599 -format {%H:%M:%S %z %Z} \
        -timezone :America/Detroit
} {01:59:59 -0500 EST}
test clock-5.73 {time zone boundary case 1978-04-30 03:00:00} detroit {
    clock format 262767600 -format {%H:%M:%S %z %Z} \
        -timezone :America/Detroit
} {03:00:00 -0400 EDT}
test clock-5.74 {time zone boundary case 1978-04-30 03:00:01} detroit {
    clock format 262767601 -format {%H:%M:%S %z %Z} \
        -timezone :America/Detroit
} {03:00:01 -0400 EDT}
test clock-5.75 {time zone boundary case 1978-10-29 01:59:59} detroit {
    clock format 278488799 -format {%H:%M:%S %z %Z} \
        -timezone :America/Detroit
} {01:59:59 -0400 EDT}
test clock-5.76 {time zone boundary case 1978-10-29 01:00:00} detroit {
    clock format 278488800 -format {%H:%M:%S %z %Z} \
        -timezone :America/Detroit
} {01:00:00 -0500 EST}
test clock-5.77 {time zone boundary case 1978-10-29 01:00:01} detroit {
    clock format 278488801 -format {%H:%M:%S %z %Z} \
        -timezone :America/Detroit
} {01:00:01 -0500 EST}
test clock-5.78 {time zone boundary case 1979-04-29 01:59:59} detroit {
    clock format 294217199 -format {%H:%M:%S %z %Z} \
        -timezone :America/Detroit
} {01:59:59 -0500 EST}
test clock-5.79 {time zone boundary case 1979-04-29 03:00:00} detroit {
    clock format 294217200 -format {%H:%M:%S %z %Z} \
        -timezone :America/Detroit
} {03:00:00 -0400 EDT}
test clock-5.80 {time zone boundary case 1979-04-29 03:00:01} detroit {
    clock format 294217201 -format {%H:%M:%S %z %Z} \
        -timezone :America/Detroit
} {03:00:01 -0400 EDT}
test clock-5.81 {time zone boundary case 1979-10-28 01:59:59} detroit {
    clock format 309938399 -format {%H:%M:%S %z %Z} \
        -timezone :America/Detroit
} {01:59:59 -0400 EDT}
test clock-5.82 {time zone boundary case 1979-10-28 01:00:00} detroit {
    clock format 309938400 -format {%H:%M:%S %z %Z} \
        -timezone :America/Detroit
} {01:00:00 -0500 EST}
test clock-5.83 {time zone boundary case 1979-10-28 01:00:01} detroit {
    clock format 309938401 -format {%H:%M:%S %z %Z} \
        -timezone :America/Detroit
} {01:00:01 -0500 EST}
test clock-5.84 {time zone boundary case 1980-04-27 01:59:59} detroit {
    clock format 325666799 -format {%H:%M:%S %z %Z} \
        -timezone :America/Detroit
} {01:59:59 -0500 EST}
test clock-5.85 {time zone boundary case 1980-04-27 03:00:00} detroit {
    clock format 325666800 -format {%H:%M:%S %z %Z} \
        -timezone :America/Detroit
} {03:00:00 -0400 EDT}
test clock-5.86 {time zone boundary case 1980-04-27 03:00:01} detroit {
    clock format 325666801 -format {%H:%M:%S %z %Z} \
        -timezone :America/Detroit
} {03:00:01 -0400 EDT}
test clock-5.87 {time zone boundary case 1980-10-26 01:59:59} detroit {
    clock format 341387999 -format {%H:%M:%S %z %Z} \
        -timezone :America/Detroit
} {01:59:59 -0400 EDT}
test clock-5.88 {time zone boundary case 1980-10-26 01:00:00} detroit {
    clock format 341388000 -format {%H:%M:%S %z %Z} \
        -timezone :America/Detroit
} {01:00:00 -0500 EST}
test clock-5.89 {time zone boundary case 1980-10-26 01:00:01} detroit {
    clock format 341388001 -format {%H:%M:%S %z %Z} \
        -timezone :America/Detroit
} {01:00:01 -0500 EST}
test clock-5.90 {time zone boundary case 1981-04-26 01:59:59} detroit {
    clock format 357116399 -format {%H:%M:%S %z %Z} \
        -timezone :America/Detroit
} {01:59:59 -0500 EST}
test clock-5.91 {time zone boundary case 1981-04-26 03:00:00} detroit {
    clock format 357116400 -format {%H:%M:%S %z %Z} \
        -timezone :America/Detroit
} {03:00:00 -0400 EDT}
test clock-5.92 {time zone boundary case 1981-04-26 03:00:01} detroit {
    clock format 357116401 -format {%H:%M:%S %z %Z} \
        -timezone :America/Detroit
} {03:00:01 -0400 EDT}
test clock-5.93 {time zone boundary case 1981-10-25 01:59:59} detroit {
    clock format 372837599 -format {%H:%M:%S %z %Z} \
        -timezone :America/Detroit
} {01:59:59 -0400 EDT}
test clock-5.94 {time zone boundary case 1981-10-25 01:00:00} detroit {
    clock format 372837600 -format {%H:%M:%S %z %Z} \
        -timezone :America/Detroit
} {01:00:00 -0500 EST}
test clock-5.95 {time zone boundary case 1981-10-25 01:00:01} detroit {
    clock format 372837601 -format {%H:%M:%S %z %Z} \
        -timezone :America/Detroit
} {01:00:01 -0500 EST}
test clock-5.96 {time zone boundary case 1982-04-25 01:59:59} detroit {
    clock format 388565999 -format {%H:%M:%S %z %Z} \
        -timezone :America/Detroit
} {01:59:59 -0500 EST}
test clock-5.97 {time zone boundary case 1982-04-25 03:00:00} detroit {
    clock format 388566000 -format {%H:%M:%S %z %Z} \
        -timezone :America/Detroit
} {03:00:00 -0400 EDT}
test clock-5.98 {time zone boundary case 1982-04-25 03:00:01} detroit {
    clock format 388566001 -format {%H:%M:%S %z %Z} \
        -timezone :America/Detroit
} {03:00:01 -0400 EDT}
test clock-5.99 {time zone boundary case 1982-10-31 01:59:59} detroit {
    clock format 404891999 -format {%H:%M:%S %z %Z} \
        -timezone :America/Detroit
} {01:59:59 -0400 EDT}
test clock-5.100 {time zone boundary case 1982-10-31 01:00:00} detroit {
    clock format 404892000 -format {%H:%M:%S %z %Z} \
        -timezone :America/Detroit
} {01:00:00 -0500 EST}
test clock-5.101 {time zone boundary case 1982-10-31 01:00:01} detroit {
    clock format 404892001 -format {%H:%M:%S %z %Z} \
        -timezone :America/Detroit
} {01:00:01 -0500 EST}
test clock-5.102 {time zone boundary case 1983-04-24 01:59:59} detroit {
    clock format 420015599 -format {%H:%M:%S %z %Z} \
        -timezone :America/Detroit
} {01:59:59 -0500 EST}
test clock-5.103 {time zone boundary case 1983-04-24 03:00:00} detroit {
    clock format 420015600 -format {%H:%M:%S %z %Z} \
        -timezone :America/Detroit
} {03:00:00 -0400 EDT}
test clock-5.104 {time zone boundary case 1983-04-24 03:00:01} detroit {
    clock format 420015601 -format {%H:%M:%S %z %Z} \
        -timezone :America/Detroit
} {03:00:01 -0400 EDT}
test clock-5.105 {time zone boundary case 1983-10-30 01:59:59} detroit {
    clock format 436341599 -format {%H:%M:%S %z %Z} \
        -timezone :America/Detroit
} {01:59:59 -0400 EDT}
test clock-5.106 {time zone boundary case 1983-10-30 01:00:00} detroit {
    clock format 436341600 -format {%H:%M:%S %z %Z} \
        -timezone :America/Detroit
} {01:00:00 -0500 EST}
test clock-5.107 {time zone boundary case 1983-10-30 01:00:01} detroit {
    clock format 436341601 -format {%H:%M:%S %z %Z} \
        -timezone :America/Detroit
} {01:00:01 -0500 EST}
test clock-5.108 {time zone boundary case 1984-04-29 01:59:59} detroit {
    clock format 452069999 -format {%H:%M:%S %z %Z} \
        -timezone :America/Detroit
} {01:59:59 -0500 EST}
test clock-5.109 {time zone boundary case 1984-04-29 03:00:00} detroit {
    clock format 452070000 -format {%H:%M:%S %z %Z} \
        -timezone :America/Detroit
} {03:00:00 -0400 EDT}
test clock-5.110 {time zone boundary case 1984-04-29 03:00:01} detroit {
    clock format 452070001 -format {%H:%M:%S %z %Z} \
        -timezone :America/Detroit
} {03:00:01 -0400 EDT}
test clock-5.111 {time zone boundary case 1984-10-28 01:59:59} detroit {
    clock format 467791199 -format {%H:%M:%S %z %Z} \
        -timezone :America/Detroit
} {01:59:59 -0400 EDT}
test clock-5.112 {time zone boundary case 1984-10-28 01:00:00} detroit {
    clock format 467791200 -format {%H:%M:%S %z %Z} \
        -timezone :America/Detroit
} {01:00:00 -0500 EST}
test clock-5.113 {time zone boundary case 1984-10-28 01:00:01} detroit {
    clock format 467791201 -format {%H:%M:%S %z %Z} \
        -timezone :America/Detroit
} {01:00:01 -0500 EST}
test clock-5.114 {time zone boundary case 1985-04-28 01:59:59} detroit {
    clock format 483519599 -format {%H:%M:%S %z %Z} \
        -timezone :America/Detroit
} {01:59:59 -0500 EST}
test clock-5.115 {time zone boundary case 1985-04-28 03:00:00} detroit {
    clock format 483519600 -format {%H:%M:%S %z %Z} \
        -timezone :America/Detroit
} {03:00:00 -0400 EDT}
test clock-5.116 {time zone boundary case 1985-04-28 03:00:01} detroit {
    clock format 483519601 -format {%H:%M:%S %z %Z} \
        -timezone :America/Detroit
} {03:00:01 -0400 EDT}
test clock-5.117 {time zone boundary case 1985-10-27 01:59:59} detroit {
    clock format 499240799 -format {%H:%M:%S %z %Z} \
        -timezone :America/Detroit
} {01:59:59 -0400 EDT}
test clock-5.118 {time zone boundary case 1985-10-27 01:00:00} detroit {
    clock format 499240800 -format {%H:%M:%S %z %Z} \
        -timezone :America/Detroit
} {01:00:00 -0500 EST}
test clock-5.119 {time zone boundary case 1985-10-27 01:00:01} detroit {
    clock format 499240801 -format {%H:%M:%S %z %Z} \
        -timezone :America/Detroit
} {01:00:01 -0500 EST}
test clock-5.120 {time zone boundary case 1986-04-27 01:59:59} detroit {
    clock format 514969199 -format {%H:%M:%S %z %Z} \
        -timezone :America/Detroit
} {01:59:59 -0500 EST}
test clock-5.121 {time zone boundary case 1986-04-27 03:00:00} detroit {
    clock format 514969200 -format {%H:%M:%S %z %Z} \
        -timezone :America/Detroit
} {03:00:00 -0400 EDT}
test clock-5.122 {time zone boundary case 1986-04-27 03:00:01} detroit {
    clock format 514969201 -format {%H:%M:%S %z %Z} \
        -timezone :America/Detroit
} {03:00:01 -0400 EDT}
test clock-5.123 {time zone boundary case 1986-10-26 01:59:59} detroit {
    clock format 530690399 -format {%H:%M:%S %z %Z} \
        -timezone :America/Detroit
} {01:59:59 -0400 EDT}
test clock-5.124 {time zone boundary case 1986-10-26 01:00:00} detroit {
    clock format 530690400 -format {%H:%M:%S %z %Z} \
        -timezone :America/Detroit
} {01:00:00 -0500 EST}
test clock-5.125 {time zone boundary case 1986-10-26 01:00:01} detroit {
    clock format 530690401 -format {%H:%M:%S %z %Z} \
        -timezone :America/Detroit
} {01:00:01 -0500 EST}
test clock-5.126 {time zone boundary case 1987-04-05 01:59:59} detroit {
    clock format 544604399 -format {%H:%M:%S %z %Z} \
        -timezone :America/Detroit
} {01:59:59 -0500 EST}
test clock-5.127 {time zone boundary case 1987-04-05 03:00:00} detroit {
    clock format 544604400 -format {%H:%M:%S %z %Z} \
        -timezone :America/Detroit
} {03:00:00 -0400 EDT}
test clock-5.128 {time zone boundary case 1987-04-05 03:00:01} detroit {
    clock format 544604401 -format {%H:%M:%S %z %Z} \
        -timezone :America/Detroit
} {03:00:01 -0400 EDT}
test clock-5.129 {time zone boundary case 1987-10-25 01:59:59} detroit {
    clock format 562139999 -format {%H:%M:%S %z %Z} \
        -timezone :America/Detroit
} {01:59:59 -0400 EDT}
test clock-5.130 {time zone boundary case 1987-10-25 01:00:00} detroit {
    clock format 562140000 -format {%H:%M:%S %z %Z} \
        -timezone :America/Detroit
} {01:00:00 -0500 EST}
test clock-5.131 {time zone boundary case 1987-10-25 01:00:01} detroit {
    clock format 562140001 -format {%H:%M:%S %z %Z} \
        -timezone :America/Detroit
} {01:00:01 -0500 EST}
test clock-5.132 {time zone boundary case 1988-04-03 01:59:59} detroit {
    clock format 576053999 -format {%H:%M:%S %z %Z} \
        -timezone :America/Detroit
} {01:59:59 -0500 EST}
test clock-5.133 {time zone boundary case 1988-04-03 03:00:00} detroit {
    clock format 576054000 -format {%H:%M:%S %z %Z} \
        -timezone :America/Detroit
} {03:00:00 -0400 EDT}
test clock-5.134 {time zone boundary case 1988-04-03 03:00:01} detroit {
    clock format 576054001 -format {%H:%M:%S %z %Z} \
        -timezone :America/Detroit
} {03:00:01 -0400 EDT}
test clock-5.135 {time zone boundary case 1988-10-30 01:59:59} detroit {
    clock format 594194399 -format {%H:%M:%S %z %Z} \
        -timezone :America/Detroit
} {01:59:59 -0400 EDT}
test clock-5.136 {time zone boundary case 1988-10-30 01:00:00} detroit {
    clock format 594194400 -format {%H:%M:%S %z %Z} \
        -timezone :America/Detroit
} {01:00:00 -0500 EST}
test clock-5.137 {time zone boundary case 1988-10-30 01:00:01} detroit {
    clock format 594194401 -format {%H:%M:%S %z %Z} \
        -timezone :America/Detroit
} {01:00:01 -0500 EST}
test clock-5.138 {time zone boundary case 1989-04-02 01:59:59} detroit {
    clock format 607503599 -format {%H:%M:%S %z %Z} \
        -timezone :America/Detroit
} {01:59:59 -0500 EST}
test clock-5.139 {time zone boundary case 1989-04-02 03:00:00} detroit {
    clock format 607503600 -format {%H:%M:%S %z %Z} \
        -timezone :America/Detroit
} {03:00:00 -0400 EDT}
test clock-5.140 {time zone boundary case 1989-04-02 03:00:01} detroit {
    clock format 607503601 -format {%H:%M:%S %z %Z} \
        -timezone :America/Detroit
} {03:00:01 -0400 EDT}
test clock-5.141 {time zone boundary case 1989-10-29 01:59:59} detroit {
    clock format 625643999 -format {%H:%M:%S %z %Z} \
        -timezone :America/Detroit
} {01:59:59 -0400 EDT}
test clock-5.142 {time zone boundary case 1989-10-29 01:00:00} detroit {
    clock format 625644000 -format {%H:%M:%S %z %Z} \
        -timezone :America/Detroit
} {01:00:00 -0500 EST}
test clock-5.143 {time zone boundary case 1989-10-29 01:00:01} detroit {
    clock format 625644001 -format {%H:%M:%S %z %Z} \
        -timezone :America/Detroit
} {01:00:01 -0500 EST}
test clock-5.144 {time zone boundary case 1990-04-01 01:59:59} detroit {
    clock format 638953199 -format {%H:%M:%S %z %Z} \
        -timezone :America/Detroit
} {01:59:59 -0500 EST}
test clock-5.145 {time zone boundary case 1990-04-01 03:00:00} detroit {
    clock format 638953200 -format {%H:%M:%S %z %Z} \
        -timezone :America/Detroit
} {03:00:00 -0400 EDT}
test clock-5.146 {time zone boundary case 1990-04-01 03:00:01} detroit {
    clock format 638953201 -format {%H:%M:%S %z %Z} \
        -timezone :America/Detroit
} {03:00:01 -0400 EDT}
test clock-5.147 {time zone boundary case 1990-10-28 01:59:59} detroit {
    clock format 657093599 -format {%H:%M:%S %z %Z} \
        -timezone :America/Detroit
} {01:59:59 -0400 EDT}
test clock-5.148 {time zone boundary case 1990-10-28 01:00:00} detroit {
    clock format 657093600 -format {%H:%M:%S %z %Z} \
        -timezone :America/Detroit
} {01:00:00 -0500 EST}
test clock-5.149 {time zone boundary case 1990-10-28 01:00:01} detroit {
    clock format 657093601 -format {%H:%M:%S %z %Z} \
        -timezone :America/Detroit
} {01:00:01 -0500 EST}
test clock-5.150 {time zone boundary case 1991-04-07 01:59:59} detroit {
    clock format 671007599 -format {%H:%M:%S %z %Z} \
        -timezone :America/Detroit
} {01:59:59 -0500 EST}
test clock-5.151 {time zone boundary case 1991-04-07 03:00:00} detroit {
    clock format 671007600 -format {%H:%M:%S %z %Z} \
        -timezone :America/Detroit
} {03:00:00 -0400 EDT}
test clock-5.152 {time zone boundary case 1991-04-07 03:00:01} detroit {
    clock format 671007601 -format {%H:%M:%S %z %Z} \
        -timezone :America/Detroit
} {03:00:01 -0400 EDT}
test clock-5.153 {time zone boundary case 1991-10-27 01:59:59} detroit {
    clock format 688543199 -format {%H:%M:%S %z %Z} \
        -timezone :America/Detroit
} {01:59:59 -0400 EDT}
test clock-5.154 {time zone boundary case 1991-10-27 01:00:00} detroit {
    clock format 688543200 -format {%H:%M:%S %z %Z} \
        -timezone :America/Detroit
} {01:00:00 -0500 EST}
test clock-5.155 {time zone boundary case 1991-10-27 01:00:01} detroit {
    clock format 688543201 -format {%H:%M:%S %z %Z} \
        -timezone :America/Detroit
} {01:00:01 -0500 EST}
test clock-5.156 {time zone boundary case 1992-04-05 01:59:59} detroit {
    clock format 702457199 -format {%H:%M:%S %z %Z} \
        -timezone :America/Detroit
} {01:59:59 -0500 EST}
test clock-5.157 {time zone boundary case 1992-04-05 03:00:00} detroit {
    clock format 702457200 -format {%H:%M:%S %z %Z} \
        -timezone :America/Detroit
} {03:00:00 -0400 EDT}
test clock-5.158 {time zone boundary case 1992-04-05 03:00:01} detroit {
    clock format 702457201 -format {%H:%M:%S %z %Z} \
        -timezone :America/Detroit
} {03:00:01 -0400 EDT}
test clock-5.159 {time zone boundary case 1992-10-25 01:59:59} detroit {
    clock format 719992799 -format {%H:%M:%S %z %Z} \
        -timezone :America/Detroit
} {01:59:59 -0400 EDT}
test clock-5.160 {time zone boundary case 1992-10-25 01:00:00} detroit {
    clock format 719992800 -format {%H:%M:%S %z %Z} \
        -timezone :America/Detroit
} {01:00:00 -0500 EST}
test clock-5.161 {time zone boundary case 1992-10-25 01:00:01} detroit {
    clock format 719992801 -format {%H:%M:%S %z %Z} \
        -timezone :America/Detroit
} {01:00:01 -0500 EST}
test clock-5.162 {time zone boundary case 1993-04-04 01:59:59} detroit {
    clock format 733906799 -format {%H:%M:%S %z %Z} \
        -timezone :America/Detroit
} {01:59:59 -0500 EST}
test clock-5.163 {time zone boundary case 1993-04-04 03:00:00} detroit {
    clock format 733906800 -format {%H:%M:%S %z %Z} \
        -timezone :America/Detroit
} {03:00:00 -0400 EDT}
test clock-5.164 {time zone boundary case 1993-04-04 03:00:01} detroit {
    clock format 733906801 -format {%H:%M:%S %z %Z} \
        -timezone :America/Detroit
} {03:00:01 -0400 EDT}
test clock-5.165 {time zone boundary case 1993-10-31 01:59:59} detroit {
    clock format 752047199 -format {%H:%M:%S %z %Z} \
        -timezone :America/Detroit
} {01:59:59 -0400 EDT}
test clock-5.166 {time zone boundary case 1993-10-31 01:00:00} detroit {
    clock format 752047200 -format {%H:%M:%S %z %Z} \
        -timezone :America/Detroit
} {01:00:00 -0500 EST}
test clock-5.167 {time zone boundary case 1993-10-31 01:00:01} detroit {
    clock format 752047201 -format {%H:%M:%S %z %Z} \
        -timezone :America/Detroit
} {01:00:01 -0500 EST}
test clock-5.168 {time zone boundary case 1994-04-03 01:59:59} detroit {
    clock format 765356399 -format {%H:%M:%S %z %Z} \
        -timezone :America/Detroit
} {01:59:59 -0500 EST}
test clock-5.169 {time zone boundary case 1994-04-03 03:00:00} detroit {
    clock format 765356400 -format {%H:%M:%S %z %Z} \
        -timezone :America/Detroit
} {03:00:00 -0400 EDT}
test clock-5.170 {time zone boundary case 1994-04-03 03:00:01} detroit {
    clock format 765356401 -format {%H:%M:%S %z %Z} \
        -timezone :America/Detroit
} {03:00:01 -0400 EDT}
test clock-5.171 {time zone boundary case 1994-10-30 01:59:59} detroit {
    clock format 783496799 -format {%H:%M:%S %z %Z} \
        -timezone :America/Detroit
} {01:59:59 -0400 EDT}
test clock-5.172 {time zone boundary case 1994-10-30 01:00:00} detroit {
    clock format 783496800 -format {%H:%M:%S %z %Z} \
        -timezone :America/Detroit
} {01:00:00 -0500 EST}
test clock-5.173 {time zone boundary case 1994-10-30 01:00:01} detroit {
    clock format 783496801 -format {%H:%M:%S %z %Z} \
        -timezone :America/Detroit
} {01:00:01 -0500 EST}
test clock-5.174 {time zone boundary case 1995-04-02 01:59:59} detroit {
    clock format 796805999 -format {%H:%M:%S %z %Z} \
        -timezone :America/Detroit
} {01:59:59 -0500 EST}
test clock-5.175 {time zone boundary case 1995-04-02 03:00:00} detroit {
    clock format 796806000 -format {%H:%M:%S %z %Z} \
        -timezone :America/Detroit
} {03:00:00 -0400 EDT}
test clock-5.176 {time zone boundary case 1995-04-02 03:00:01} detroit {
    clock format 796806001 -format {%H:%M:%S %z %Z} \
        -timezone :America/Detroit
} {03:00:01 -0400 EDT}
test clock-5.177 {time zone boundary case 1995-10-29 01:59:59} detroit {
    clock format 814946399 -format {%H:%M:%S %z %Z} \
        -timezone :America/Detroit
} {01:59:59 -0400 EDT}
test clock-5.178 {time zone boundary case 1995-10-29 01:00:00} detroit {
    clock format 814946400 -format {%H:%M:%S %z %Z} \
        -timezone :America/Detroit
} {01:00:00 -0500 EST}
test clock-5.179 {time zone boundary case 1995-10-29 01:00:01} detroit {
    clock format 814946401 -format {%H:%M:%S %z %Z} \
        -timezone :America/Detroit
} {01:00:01 -0500 EST}
test clock-5.180 {time zone boundary case 1996-04-07 01:59:59} detroit {
    clock format 828860399 -format {%H:%M:%S %z %Z} \
        -timezone :America/Detroit
} {01:59:59 -0500 EST}
test clock-5.181 {time zone boundary case 1996-04-07 03:00:00} detroit {
    clock format 828860400 -format {%H:%M:%S %z %Z} \
        -timezone :America/Detroit
} {03:00:00 -0400 EDT}
test clock-5.182 {time zone boundary case 1996-04-07 03:00:01} detroit {
    clock format 828860401 -format {%H:%M:%S %z %Z} \
        -timezone :America/Detroit
} {03:00:01 -0400 EDT}
test clock-5.183 {time zone boundary case 1996-10-27 01:59:59} detroit {
    clock format 846395999 -format {%H:%M:%S %z %Z} \
        -timezone :America/Detroit
} {01:59:59 -0400 EDT}
test clock-5.184 {time zone boundary case 1996-10-27 01:00:00} detroit {
    clock format 846396000 -format {%H:%M:%S %z %Z} \
        -timezone :America/Detroit
} {01:00:00 -0500 EST}
test clock-5.185 {time zone boundary case 1996-10-27 01:00:01} detroit {
    clock format 846396001 -format {%H:%M:%S %z %Z} \
        -timezone :America/Detroit
} {01:00:01 -0500 EST}
test clock-5.186 {time zone boundary case 1997-04-06 01:59:59} detroit {
    clock format 860309999 -format {%H:%M:%S %z %Z} \
        -timezone :America/Detroit
} {01:59:59 -0500 EST}
test clock-5.187 {time zone boundary case 1997-04-06 03:00:00} detroit {
    clock format 860310000 -format {%H:%M:%S %z %Z} \
        -timezone :America/Detroit
} {03:00:00 -0400 EDT}
test clock-5.188 {time zone boundary case 1997-04-06 03:00:01} detroit {
    clock format 860310001 -format {%H:%M:%S %z %Z} \
        -timezone :America/Detroit
} {03:00:01 -0400 EDT}
test clock-5.189 {time zone boundary case 1997-10-26 01:59:59} detroit {
    clock format 877845599 -format {%H:%M:%S %z %Z} \
        -timezone :America/Detroit
} {01:59:59 -0400 EDT}
test clock-5.190 {time zone boundary case 1997-10-26 01:00:00} detroit {
    clock format 877845600 -format {%H:%M:%S %z %Z} \
        -timezone :America/Detroit
} {01:00:00 -0500 EST}
test clock-5.191 {time zone boundary case 1997-10-26 01:00:01} detroit {
    clock format 877845601 -format {%H:%M:%S %z %Z} \
        -timezone :America/Detroit
} {01:00:01 -0500 EST}
test clock-5.192 {time zone boundary case 1998-04-05 01:59:59} detroit {
    clock format 891759599 -format {%H:%M:%S %z %Z} \
        -timezone :America/Detroit
} {01:59:59 -0500 EST}
test clock-5.193 {time zone boundary case 1998-04-05 03:00:00} detroit {
    clock format 891759600 -format {%H:%M:%S %z %Z} \
        -timezone :America/Detroit
} {03:00:00 -0400 EDT}
test clock-5.194 {time zone boundary case 1998-04-05 03:00:01} detroit {
    clock format 891759601 -format {%H:%M:%S %z %Z} \
        -timezone :America/Detroit
} {03:00:01 -0400 EDT}
test clock-5.195 {time zone boundary case 1998-10-25 01:59:59} detroit {
    clock format 909295199 -format {%H:%M:%S %z %Z} \
        -timezone :America/Detroit
} {01:59:59 -0400 EDT}
test clock-5.196 {time zone boundary case 1998-10-25 01:00:00} detroit {
    clock format 909295200 -format {%H:%M:%S %z %Z} \
        -timezone :America/Detroit
} {01:00:00 -0500 EST}
test clock-5.197 {time zone boundary case 1998-10-25 01:00:01} detroit {
    clock format 909295201 -format {%H:%M:%S %z %Z} \
        -timezone :America/Detroit
} {01:00:01 -0500 EST}
test clock-5.198 {time zone boundary case 1999-04-04 01:59:59} detroit {
    clock format 923209199 -format {%H:%M:%S %z %Z} \
        -timezone :America/Detroit
} {01:59:59 -0500 EST}
test clock-5.199 {time zone boundary case 1999-04-04 03:00:00} detroit {
    clock format 923209200 -format {%H:%M:%S %z %Z} \
        -timezone :America/Detroit
} {03:00:00 -0400 EDT}
test clock-5.200 {time zone boundary case 1999-04-04 03:00:01} detroit {
    clock format 923209201 -format {%H:%M:%S %z %Z} \
        -timezone :America/Detroit
} {03:00:01 -0400 EDT}
test clock-5.201 {time zone boundary case 1999-10-31 01:59:59} detroit {
    clock format 941349599 -format {%H:%M:%S %z %Z} \
        -timezone :America/Detroit
} {01:59:59 -0400 EDT}
test clock-5.202 {time zone boundary case 1999-10-31 01:00:00} detroit {
    clock format 941349600 -format {%H:%M:%S %z %Z} \
        -timezone :America/Detroit
} {01:00:00 -0500 EST}
test clock-5.203 {time zone boundary case 1999-10-31 01:00:01} detroit {
    clock format 941349601 -format {%H:%M:%S %z %Z} \
        -timezone :America/Detroit
} {01:00:01 -0500 EST}
test clock-5.204 {time zone boundary case 2000-04-02 01:59:59} detroit {
    clock format 954658799 -format {%H:%M:%S %z %Z} \
        -timezone :America/Detroit
} {01:59:59 -0500 EST}
test clock-5.205 {time zone boundary case 2000-04-02 03:00:00} detroit {
    clock format 954658800 -format {%H:%M:%S %z %Z} \
        -timezone :America/Detroit
} {03:00:00 -0400 EDT}
test clock-5.206 {time zone boundary case 2000-04-02 03:00:01} detroit {
    clock format 954658801 -format {%H:%M:%S %z %Z} \
        -timezone :America/Detroit
} {03:00:01 -0400 EDT}
test clock-5.207 {time zone boundary case 2000-10-29 01:59:59} detroit {
    clock format 972799199 -format {%H:%M:%S %z %Z} \
        -timezone :America/Detroit
} {01:59:59 -0400 EDT}
test clock-5.208 {time zone boundary case 2000-10-29 01:00:00} detroit {
    clock format 972799200 -format {%H:%M:%S %z %Z} \
        -timezone :America/Detroit
} {01:00:00 -0500 EST}
test clock-5.209 {time zone boundary case 2000-10-29 01:00:01} detroit {
    clock format 972799201 -format {%H:%M:%S %z %Z} \
        -timezone :America/Detroit
} {01:00:01 -0500 EST}
test clock-5.210 {time zone boundary case 2001-04-01 01:59:59} detroit {
    clock format 986108399 -format {%H:%M:%S %z %Z} \
        -timezone :America/Detroit
} {01:59:59 -0500 EST}
test clock-5.211 {time zone boundary case 2001-04-01 03:00:00} detroit {
    clock format 986108400 -format {%H:%M:%S %z %Z} \
        -timezone :America/Detroit
} {03:00:00 -0400 EDT}
test clock-5.212 {time zone boundary case 2001-04-01 03:00:01} detroit {
    clock format 986108401 -format {%H:%M:%S %z %Z} \
        -timezone :America/Detroit
} {03:00:01 -0400 EDT}
test clock-5.213 {time zone boundary case 2001-10-28 01:59:59} detroit {
    clock format 1004248799 -format {%H:%M:%S %z %Z} \
        -timezone :America/Detroit
} {01:59:59 -0400 EDT}
test clock-5.214 {time zone boundary case 2001-10-28 01:00:00} detroit {
    clock format 1004248800 -format {%H:%M:%S %z %Z} \
        -timezone :America/Detroit
} {01:00:00 -0500 EST}
test clock-5.215 {time zone boundary case 2001-10-28 01:00:01} detroit {
    clock format 1004248801 -format {%H:%M:%S %z %Z} \
        -timezone :America/Detroit
} {01:00:01 -0500 EST}
test clock-5.216 {time zone boundary case 2002-04-07 01:59:59} detroit {
    clock format 1018162799 -format {%H:%M:%S %z %Z} \
        -timezone :America/Detroit
} {01:59:59 -0500 EST}
test clock-5.217 {time zone boundary case 2002-04-07 03:00:00} detroit {
    clock format 1018162800 -format {%H:%M:%S %z %Z} \
        -timezone :America/Detroit
} {03:00:00 -0400 EDT}
test clock-5.218 {time zone boundary case 2002-04-07 03:00:01} detroit {
    clock format 1018162801 -format {%H:%M:%S %z %Z} \
        -timezone :America/Detroit
} {03:00:01 -0400 EDT}
test clock-5.219 {time zone boundary case 2002-10-27 01:59:59} detroit {
    clock format 1035698399 -format {%H:%M:%S %z %Z} \
        -timezone :America/Detroit
} {01:59:59 -0400 EDT}
test clock-5.220 {time zone boundary case 2002-10-27 01:00:00} detroit {
    clock format 1035698400 -format {%H:%M:%S %z %Z} \
        -timezone :America/Detroit
} {01:00:00 -0500 EST}
test clock-5.221 {time zone boundary case 2002-10-27 01:00:01} detroit {
    clock format 1035698401 -format {%H:%M:%S %z %Z} \
        -timezone :America/Detroit
} {01:00:01 -0500 EST}
test clock-5.222 {time zone boundary case 2003-04-06 01:59:59} detroit {
    clock format 1049612399 -format {%H:%M:%S %z %Z} \
        -timezone :America/Detroit
} {01:59:59 -0500 EST}
test clock-5.223 {time zone boundary case 2003-04-06 03:00:00} detroit {
    clock format 1049612400 -format {%H:%M:%S %z %Z} \
        -timezone :America/Detroit
} {03:00:00 -0400 EDT}
test clock-5.224 {time zone boundary case 2003-04-06 03:00:01} detroit {
    clock format 1049612401 -format {%H:%M:%S %z %Z} \
        -timezone :America/Detroit
} {03:00:01 -0400 EDT}
test clock-5.225 {time zone boundary case 2003-10-26 01:59:59} detroit {
    clock format 1067147999 -format {%H:%M:%S %z %Z} \
        -timezone :America/Detroit
} {01:59:59 -0400 EDT}
test clock-5.226 {time zone boundary case 2003-10-26 01:00:00} detroit {
    clock format 1067148000 -format {%H:%M:%S %z %Z} \
        -timezone :America/Detroit
} {01:00:00 -0500 EST}
test clock-5.227 {time zone boundary case 2003-10-26 01:00:01} detroit {
    clock format 1067148001 -format {%H:%M:%S %z %Z} \
        -timezone :America/Detroit
} {01:00:01 -0500 EST}
test clock-5.228 {time zone boundary case 2004-04-04 01:59:59} detroit {
    clock format 1081061999 -format {%H:%M:%S %z %Z} \
        -timezone :America/Detroit
} {01:59:59 -0500 EST}
test clock-5.229 {time zone boundary case 2004-04-04 03:00:00} detroit {
    clock format 1081062000 -format {%H:%M:%S %z %Z} \
        -timezone :America/Detroit
} {03:00:00 -0400 EDT}
test clock-5.230 {time zone boundary case 2004-04-04 03:00:01} detroit {
    clock format 1081062001 -format {%H:%M:%S %z %Z} \
        -timezone :America/Detroit
} {03:00:01 -0400 EDT}
test clock-5.231 {time zone boundary case 2004-10-31 01:59:59} detroit {
    clock format 1099202399 -format {%H:%M:%S %z %Z} \
        -timezone :America/Detroit
} {01:59:59 -0400 EDT}
test clock-5.232 {time zone boundary case 2004-10-31 01:00:00} detroit {
    clock format 1099202400 -format {%H:%M:%S %z %Z} \
        -timezone :America/Detroit
} {01:00:00 -0500 EST}
test clock-5.233 {time zone boundary case 2004-10-31 01:00:01} detroit {
    clock format 1099202401 -format {%H:%M:%S %z %Z} \
        -timezone :America/Detroit
} {01:00:01 -0500 EST}
test clock-5.234 {time zone boundary case 2005-04-03 01:59:59} detroit {
    clock format 1112511599 -format {%H:%M:%S %z %Z} \
        -timezone :America/Detroit
} {01:59:59 -0500 EST}
test clock-5.235 {time zone boundary case 2005-04-03 03:00:00} detroit {
    clock format 1112511600 -format {%H:%M:%S %z %Z} \
        -timezone :America/Detroit
} {03:00:00 -0400 EDT}
test clock-5.236 {time zone boundary case 2005-04-03 03:00:01} detroit {
    clock format 1112511601 -format {%H:%M:%S %z %Z} \
        -timezone :America/Detroit
} {03:00:01 -0400 EDT}
test clock-5.237 {time zone boundary case 2005-10-30 01:59:59} detroit {
    clock format 1130651999 -format {%H:%M:%S %z %Z} \
        -timezone :America/Detroit
} {01:59:59 -0400 EDT}
test clock-5.238 {time zone boundary case 2005-10-30 01:00:00} detroit {
    clock format 1130652000 -format {%H:%M:%S %z %Z} \
        -timezone :America/Detroit
} {01:00:00 -0500 EST}
test clock-5.239 {time zone boundary case 2005-10-30 01:00:01} detroit {
    clock format 1130652001 -format {%H:%M:%S %z %Z} \
        -timezone :America/Detroit
} {01:00:01 -0500 EST}
test clock-5.240 {time zone boundary case 2006-04-02 01:59:59} detroit {
    clock format 1143961199 -format {%H:%M:%S %z %Z} \
        -timezone :America/Detroit
} {01:59:59 -0500 EST}
test clock-5.241 {time zone boundary case 2006-04-02 03:00:00} detroit {
    clock format 1143961200 -format {%H:%M:%S %z %Z} \
        -timezone :America/Detroit
} {03:00:00 -0400 EDT}
test clock-5.242 {time zone boundary case 2006-04-02 03:00:01} detroit {
    clock format 1143961201 -format {%H:%M:%S %z %Z} \
        -timezone :America/Detroit
} {03:00:01 -0400 EDT}
test clock-5.243 {time zone boundary case 2006-10-29 01:59:59} detroit {
    clock format 1162101599 -format {%H:%M:%S %z %Z} \
        -timezone :America/Detroit
} {01:59:59 -0400 EDT}
test clock-5.244 {time zone boundary case 2006-10-29 01:00:00} detroit {
    clock format 1162101600 -format {%H:%M:%S %z %Z} \
        -timezone :America/Detroit
} {01:00:00 -0500 EST}
test clock-5.245 {time zone boundary case 2006-10-29 01:00:01} detroit {
    clock format 1162101601 -format {%H:%M:%S %z %Z} \
        -timezone :America/Detroit
} {01:00:01 -0500 EST}
test clock-5.246 {time zone boundary case 2007-03-11 01:59:59} detroit {
    clock format 1173596399 -format {%H:%M:%S %z %Z} \
        -timezone :America/Detroit
} {01:59:59 -0500 EST}
test clock-5.247 {time zone boundary case 2007-03-11 03:00:00} detroit {
    clock format 1173596400 -format {%H:%M:%S %z %Z} \
        -timezone :America/Detroit
} {03:00:00 -0400 EDT}
test clock-5.248 {time zone boundary case 2007-03-11 03:00:01} detroit {
    clock format 1173596401 -format {%H:%M:%S %z %Z} \
        -timezone :America/Detroit
} {03:00:01 -0400 EDT}
test clock-5.249 {time zone boundary case 2007-11-04 01:59:59} detroit {
    clock format 1194155999 -format {%H:%M:%S %z %Z} \
        -timezone :America/Detroit
} {01:59:59 -0400 EDT}
test clock-5.250 {time zone boundary case 2007-11-04 01:00:00} detroit {
    clock format 1194156000 -format {%H:%M:%S %z %Z} \
        -timezone :America/Detroit
} {01:00:00 -0500 EST}
test clock-5.251 {time zone boundary case 2007-11-04 01:00:01} detroit {
    clock format 1194156001 -format {%H:%M:%S %z %Z} \
        -timezone :America/Detroit
} {01:00:01 -0500 EST}
test clock-5.252 {time zone boundary case 2008-03-09 01:59:59} detroit {
    clock format 1205045999 -format {%H:%M:%S %z %Z} \
        -timezone :America/Detroit
} {01:59:59 -0500 EST}
test clock-5.253 {time zone boundary case 2008-03-09 03:00:00} detroit {
    clock format 1205046000 -format {%H:%M:%S %z %Z} \
        -timezone :America/Detroit
} {03:00:00 -0400 EDT}
test clock-5.254 {time zone boundary case 2008-03-09 03:00:01} detroit {
    clock format 1205046001 -format {%H:%M:%S %z %Z} \
        -timezone :America/Detroit
} {03:00:01 -0400 EDT}
test clock-5.255 {time zone boundary case 2008-11-02 01:59:59} detroit {
    clock format 1225605599 -format {%H:%M:%S %z %Z} \
        -timezone :America/Detroit
} {01:59:59 -0400 EDT}
test clock-5.256 {time zone boundary case 2008-11-02 01:00:00} detroit {
    clock format 1225605600 -format {%H:%M:%S %z %Z} \
        -timezone :America/Detroit
} {01:00:00 -0500 EST}
test clock-5.257 {time zone boundary case 2008-11-02 01:00:01} detroit {
    clock format 1225605601 -format {%H:%M:%S %z %Z} \
        -timezone :America/Detroit
} {01:00:01 -0500 EST}
test clock-5.258 {time zone boundary case 2009-03-08 01:59:59} detroit {
    clock format 1236495599 -format {%H:%M:%S %z %Z} \
        -timezone :America/Detroit
} {01:59:59 -0500 EST}
test clock-5.259 {time zone boundary case 2009-03-08 03:00:00} detroit {
    clock format 1236495600 -format {%H:%M:%S %z %Z} \
        -timezone :America/Detroit
} {03:00:00 -0400 EDT}
test clock-5.260 {time zone boundary case 2009-03-08 03:00:01} detroit {
    clock format 1236495601 -format {%H:%M:%S %z %Z} \
        -timezone :America/Detroit
} {03:00:01 -0400 EDT}
test clock-5.261 {time zone boundary case 2009-11-01 01:59:59} detroit {
    clock format 1257055199 -format {%H:%M:%S %z %Z} \
        -timezone :America/Detroit
} {01:59:59 -0400 EDT}
test clock-5.262 {time zone boundary case 2009-11-01 01:00:00} detroit {
    clock format 1257055200 -format {%H:%M:%S %z %Z} \
        -timezone :America/Detroit
} {01:00:00 -0500 EST}
test clock-5.263 {time zone boundary case 2009-11-01 01:00:01} detroit {
    clock format 1257055201 -format {%H:%M:%S %z %Z} \
        -timezone :America/Detroit
} {01:00:01 -0500 EST}
test clock-5.264 {time zone boundary case 2010-03-14 01:59:59} detroit {
    clock format 1268549999 -format {%H:%M:%S %z %Z} \
        -timezone :America/Detroit
} {01:59:59 -0500 EST}
test clock-5.265 {time zone boundary case 2010-03-14 03:00:00} detroit {
    clock format 1268550000 -format {%H:%M:%S %z %Z} \
        -timezone :America/Detroit
} {03:00:00 -0400 EDT}
test clock-5.266 {time zone boundary case 2010-03-14 03:00:01} detroit {
    clock format 1268550001 -format {%H:%M:%S %z %Z} \
        -timezone :America/Detroit
} {03:00:01 -0400 EDT}
test clock-5.267 {time zone boundary case 2010-11-07 01:59:59} detroit {
    clock format 1289109599 -format {%H:%M:%S %z %Z} \
        -timezone :America/Detroit
} {01:59:59 -0400 EDT}
test clock-5.268 {time zone boundary case 2010-11-07 01:00:00} detroit {
    clock format 1289109600 -format {%H:%M:%S %z %Z} \
        -timezone :America/Detroit
} {01:00:00 -0500 EST}
test clock-5.269 {time zone boundary case 2010-11-07 01:00:01} detroit {
    clock format 1289109601 -format {%H:%M:%S %z %Z} \
        -timezone :America/Detroit
} {01:00:01 -0500 EST}
test clock-5.270 {time zone boundary case 2011-03-13 01:59:59} detroit {
    clock format 1299999599 -format {%H:%M:%S %z %Z} \
        -timezone :America/Detroit
} {01:59:59 -0500 EST}
test clock-5.271 {time zone boundary case 2011-03-13 03:00:00} detroit {
    clock format 1299999600 -format {%H:%M:%S %z %Z} \
        -timezone :America/Detroit
} {03:00:00 -0400 EDT}
test clock-5.272 {time zone boundary case 2011-03-13 03:00:01} detroit {
    clock format 1299999601 -format {%H:%M:%S %z %Z} \
        -timezone :America/Detroit
} {03:00:01 -0400 EDT}
test clock-5.273 {time zone boundary case 2011-11-06 01:59:59} detroit {
    clock format 1320559199 -format {%H:%M:%S %z %Z} \
        -timezone :America/Detroit
} {01:59:59 -0400 EDT}
test clock-5.274 {time zone boundary case 2011-11-06 01:00:00} detroit {
    clock format 1320559200 -format {%H:%M:%S %z %Z} \
        -timezone :America/Detroit
} {01:00:00 -0500 EST}
test clock-5.275 {time zone boundary case 2011-11-06 01:00:01} detroit {
    clock format 1320559201 -format {%H:%M:%S %z %Z} \
        -timezone :America/Detroit
} {01:00:01 -0500 EST}
test clock-5.276 {time zone boundary case 2012-03-11 01:59:59} detroit {
    clock format 1331449199 -format {%H:%M:%S %z %Z} \
        -timezone :America/Detroit
} {01:59:59 -0500 EST}
test clock-5.277 {time zone boundary case 2012-03-11 03:00:00} detroit {
    clock format 1331449200 -format {%H:%M:%S %z %Z} \
        -timezone :America/Detroit
} {03:00:00 -0400 EDT}
test clock-5.278 {time zone boundary case 2012-03-11 03:00:01} detroit {
    clock format 1331449201 -format {%H:%M:%S %z %Z} \
        -timezone :America/Detroit
} {03:00:01 -0400 EDT}
test clock-5.279 {time zone boundary case 2012-11-04 01:59:59} detroit {
    clock format 1352008799 -format {%H:%M:%S %z %Z} \
        -timezone :America/Detroit
} {01:59:59 -0400 EDT}
test clock-5.280 {time zone boundary case 2012-11-04 01:00:00} detroit {
    clock format 1352008800 -format {%H:%M:%S %z %Z} \
        -timezone :America/Detroit
} {01:00:00 -0500 EST}
test clock-5.281 {time zone boundary case 2012-11-04 01:00:01} detroit {
    clock format 1352008801 -format {%H:%M:%S %z %Z} \
        -timezone :America/Detroit
} {01:00:01 -0500 EST}
test clock-5.282 {time zone boundary case 2013-03-10 01:59:59} detroit {
    clock format 1362898799 -format {%H:%M:%S %z %Z} \
        -timezone :America/Detroit
} {01:59:59 -0500 EST}
test clock-5.283 {time zone boundary case 2013-03-10 03:00:00} detroit {
    clock format 1362898800 -format {%H:%M:%S %z %Z} \
        -timezone :America/Detroit
} {03:00:00 -0400 EDT}
test clock-5.284 {time zone boundary case 2013-03-10 03:00:01} detroit {
    clock format 1362898801 -format {%H:%M:%S %z %Z} \
        -timezone :America/Detroit
} {03:00:01 -0400 EDT}
test clock-5.285 {time zone boundary case 2013-11-03 01:59:59} detroit {
    clock format 1383458399 -format {%H:%M:%S %z %Z} \
        -timezone :America/Detroit
} {01:59:59 -0400 EDT}
test clock-5.286 {time zone boundary case 2013-11-03 01:00:00} detroit {
    clock format 1383458400 -format {%H:%M:%S %z %Z} \
        -timezone :America/Detroit
} {01:00:00 -0500 EST}
test clock-5.287 {time zone boundary case 2013-11-03 01:00:01} detroit {
    clock format 1383458401 -format {%H:%M:%S %z %Z} \
        -timezone :America/Detroit
} {01:00:01 -0500 EST}
test clock-5.288 {time zone boundary case 2014-03-09 01:59:59} detroit {
    clock format 1394348399 -format {%H:%M:%S %z %Z} \
        -timezone :America/Detroit
} {01:59:59 -0500 EST}
test clock-5.289 {time zone boundary case 2014-03-09 03:00:00} detroit {
    clock format 1394348400 -format {%H:%M:%S %z %Z} \
        -timezone :America/Detroit
} {03:00:00 -0400 EDT}
test clock-5.290 {time zone boundary case 2014-03-09 03:00:01} detroit {
    clock format 1394348401 -format {%H:%M:%S %z %Z} \
        -timezone :America/Detroit
} {03:00:01 -0400 EDT}
test clock-5.291 {time zone boundary case 2014-11-02 01:59:59} detroit {
    clock format 1414907999 -format {%H:%M:%S %z %Z} \
        -timezone :America/Detroit
} {01:59:59 -0400 EDT}
test clock-5.292 {time zone boundary case 2014-11-02 01:00:00} detroit {
    clock format 1414908000 -format {%H:%M:%S %z %Z} \
        -timezone :America/Detroit
} {01:00:00 -0500 EST}
test clock-5.293 {time zone boundary case 2014-11-02 01:00:01} detroit {
    clock format 1414908001 -format {%H:%M:%S %z %Z} \
        -timezone :America/Detroit
} {01:00:01 -0500 EST}
test clock-5.294 {time zone boundary case 2015-03-08 01:59:59} detroit {
    clock format 1425797999 -format {%H:%M:%S %z %Z} \
        -timezone :America/Detroit
} {01:59:59 -0500 EST}
test clock-5.295 {time zone boundary case 2015-03-08 03:00:00} detroit {
    clock format 1425798000 -format {%H:%M:%S %z %Z} \
        -timezone :America/Detroit
} {03:00:00 -0400 EDT}
test clock-5.296 {time zone boundary case 2015-03-08 03:00:01} detroit {
    clock format 1425798001 -format {%H:%M:%S %z %Z} \
        -timezone :America/Detroit
} {03:00:01 -0400 EDT}
test clock-5.297 {time zone boundary case 2015-11-01 01:59:59} detroit {
    clock format 1446357599 -format {%H:%M:%S %z %Z} \
        -timezone :America/Detroit
} {01:59:59 -0400 EDT}
test clock-5.298 {time zone boundary case 2015-11-01 01:00:00} detroit {
    clock format 1446357600 -format {%H:%M:%S %z %Z} \
        -timezone :America/Detroit
} {01:00:00 -0500 EST}
test clock-5.299 {time zone boundary case 2015-11-01 01:00:01} detroit {
    clock format 1446357601 -format {%H:%M:%S %z %Z} \
        -timezone :America/Detroit
} {01:00:01 -0500 EST}
test clock-5.300 {time zone boundary case 2016-03-13 01:59:59} detroit {
    clock format 1457852399 -format {%H:%M:%S %z %Z} \
        -timezone :America/Detroit
} {01:59:59 -0500 EST}
test clock-5.301 {time zone boundary case 2016-03-13 03:00:00} detroit {
    clock format 1457852400 -format {%H:%M:%S %z %Z} \
        -timezone :America/Detroit
} {03:00:00 -0400 EDT}
test clock-5.302 {time zone boundary case 2016-03-13 03:00:01} detroit {
    clock format 1457852401 -format {%H:%M:%S %z %Z} \
        -timezone :America/Detroit
} {03:00:01 -0400 EDT}
test clock-5.303 {time zone boundary case 2016-11-06 01:59:59} detroit {
    clock format 1478411999 -format {%H:%M:%S %z %Z} \
        -timezone :America/Detroit
} {01:59:59 -0400 EDT}
test clock-5.304 {time zone boundary case 2016-11-06 01:00:00} detroit {
    clock format 1478412000 -format {%H:%M:%S %z %Z} \
        -timezone :America/Detroit
} {01:00:00 -0500 EST}
test clock-5.305 {time zone boundary case 2016-11-06 01:00:01} detroit {
    clock format 1478412001 -format {%H:%M:%S %z %Z} \
        -timezone :America/Detroit
} {01:00:01 -0500 EST}
test clock-5.306 {time zone boundary case 2017-03-12 01:59:59} detroit {
    clock format 1489301999 -format {%H:%M:%S %z %Z} \
        -timezone :America/Detroit
} {01:59:59 -0500 EST}
test clock-5.307 {time zone boundary case 2017-03-12 03:00:00} detroit {
    clock format 1489302000 -format {%H:%M:%S %z %Z} \
        -timezone :America/Detroit
} {03:00:00 -0400 EDT}
test clock-5.308 {time zone boundary case 2017-03-12 03:00:01} detroit {
    clock format 1489302001 -format {%H:%M:%S %z %Z} \
        -timezone :America/Detroit
} {03:00:01 -0400 EDT}
test clock-5.309 {time zone boundary case 2017-11-05 01:59:59} detroit {
    clock format 1509861599 -format {%H:%M:%S %z %Z} \
        -timezone :America/Detroit
} {01:59:59 -0400 EDT}
test clock-5.310 {time zone boundary case 2017-11-05 01:00:00} detroit {
    clock format 1509861600 -format {%H:%M:%S %z %Z} \
        -timezone :America/Detroit
} {01:00:00 -0500 EST}
test clock-5.311 {time zone boundary case 2017-11-05 01:00:01} detroit {
    clock format 1509861601 -format {%H:%M:%S %z %Z} \
        -timezone :America/Detroit
} {01:00:01 -0500 EST}
test clock-5.312 {time zone boundary case 2018-03-11 01:59:59} detroit {
    clock format 1520751599 -format {%H:%M:%S %z %Z} \
        -timezone :America/Detroit
} {01:59:59 -0500 EST}
test clock-5.313 {time zone boundary case 2018-03-11 03:00:00} detroit {
    clock format 1520751600 -format {%H:%M:%S %z %Z} \
        -timezone :America/Detroit
} {03:00:00 -0400 EDT}
test clock-5.314 {time zone boundary case 2018-03-11 03:00:01} detroit {
    clock format 1520751601 -format {%H:%M:%S %z %Z} \
        -timezone :America/Detroit
} {03:00:01 -0400 EDT}
test clock-5.315 {time zone boundary case 2018-11-04 01:59:59} detroit {
    clock format 1541311199 -format {%H:%M:%S %z %Z} \
        -timezone :America/Detroit
} {01:59:59 -0400 EDT}
test clock-5.316 {time zone boundary case 2018-11-04 01:00:00} detroit {
    clock format 1541311200 -format {%H:%M:%S %z %Z} \
        -timezone :America/Detroit
} {01:00:00 -0500 EST}
test clock-5.317 {time zone boundary case 2018-11-04 01:00:01} detroit {
    clock format 1541311201 -format {%H:%M:%S %z %Z} \
        -timezone :America/Detroit
} {01:00:01 -0500 EST}
test clock-5.318 {time zone boundary case 2019-03-10 01:59:59} detroit {
    clock format 1552201199 -format {%H:%M:%S %z %Z} \
        -timezone :America/Detroit
} {01:59:59 -0500 EST}
test clock-5.319 {time zone boundary case 2019-03-10 03:00:00} detroit {
    clock format 1552201200 -format {%H:%M:%S %z %Z} \
        -timezone :America/Detroit
} {03:00:00 -0400 EDT}
test clock-5.320 {time zone boundary case 2019-03-10 03:00:01} detroit {
    clock format 1552201201 -format {%H:%M:%S %z %Z} \
        -timezone :America/Detroit
} {03:00:01 -0400 EDT}
test clock-5.321 {time zone boundary case 2019-11-03 01:59:59} detroit {
    clock format 1572760799 -format {%H:%M:%S %z %Z} \
        -timezone :America/Detroit
} {01:59:59 -0400 EDT}
test clock-5.322 {time zone boundary case 2019-11-03 01:00:00} detroit {
    clock format 1572760800 -format {%H:%M:%S %z %Z} \
        -timezone :America/Detroit
} {01:00:00 -0500 EST}
test clock-5.323 {time zone boundary case 2019-11-03 01:00:01} detroit {
    clock format 1572760801 -format {%H:%M:%S %z %Z} \
        -timezone :America/Detroit
} {01:00:01 -0500 EST}
test clock-5.324 {time zone boundary case 2020-03-08 01:59:59} detroit {
    clock format 1583650799 -format {%H:%M:%S %z %Z} \
        -timezone :America/Detroit
} {01:59:59 -0500 EST}
test clock-5.325 {time zone boundary case 2020-03-08 03:00:00} detroit {
    clock format 1583650800 -format {%H:%M:%S %z %Z} \
        -timezone :America/Detroit
} {03:00:00 -0400 EDT}
test clock-5.326 {time zone boundary case 2020-03-08 03:00:01} detroit {
    clock format 1583650801 -format {%H:%M:%S %z %Z} \
        -timezone :America/Detroit
} {03:00:01 -0400 EDT}
test clock-5.327 {time zone boundary case 2020-11-01 01:59:59} detroit {
    clock format 1604210399 -format {%H:%M:%S %z %Z} \
        -timezone :America/Detroit
} {01:59:59 -0400 EDT}
test clock-5.328 {time zone boundary case 2020-11-01 01:00:00} detroit {
    clock format 1604210400 -format {%H:%M:%S %z %Z} \
        -timezone :America/Detroit
} {01:00:00 -0500 EST}
test clock-5.329 {time zone boundary case 2020-11-01 01:00:01} detroit {
    clock format 1604210401 -format {%H:%M:%S %z %Z} \
        -timezone :America/Detroit
} {01:00:01 -0500 EST}
test clock-5.330 {time zone boundary case 2021-03-14 01:59:59} detroit {
    clock format 1615705199 -format {%H:%M:%S %z %Z} \
        -timezone :America/Detroit
} {01:59:59 -0500 EST}
test clock-5.331 {time zone boundary case 2021-03-14 03:00:00} detroit {
    clock format 1615705200 -format {%H:%M:%S %z %Z} \
        -timezone :America/Detroit
} {03:00:00 -0400 EDT}
test clock-5.332 {time zone boundary case 2021-03-14 03:00:01} detroit {
    clock format 1615705201 -format {%H:%M:%S %z %Z} \
        -timezone :America/Detroit
} {03:00:01 -0400 EDT}
test clock-5.333 {time zone boundary case 2021-11-07 01:59:59} detroit {
    clock format 1636264799 -format {%H:%M:%S %z %Z} \
        -timezone :America/Detroit
} {01:59:59 -0400 EDT}
test clock-5.334 {time zone boundary case 2021-11-07 01:00:00} detroit {
    clock format 1636264800 -format {%H:%M:%S %z %Z} \
        -timezone :America/Detroit
} {01:00:00 -0500 EST}
test clock-5.335 {time zone boundary case 2021-11-07 01:00:01} detroit {
    clock format 1636264801 -format {%H:%M:%S %z %Z} \
        -timezone :America/Detroit
} {01:00:01 -0500 EST}
test clock-5.336 {time zone boundary case 2022-03-13 01:59:59} detroit {
    clock format 1647154799 -format {%H:%M:%S %z %Z} \
        -timezone :America/Detroit
} {01:59:59 -0500 EST}
test clock-5.337 {time zone boundary case 2022-03-13 03:00:00} detroit {
    clock format 1647154800 -format {%H:%M:%S %z %Z} \
        -timezone :America/Detroit
} {03:00:00 -0400 EDT}
test clock-5.338 {time zone boundary case 2022-03-13 03:00:01} detroit {
    clock format 1647154801 -format {%H:%M:%S %z %Z} \
        -timezone :America/Detroit
} {03:00:01 -0400 EDT}
test clock-5.339 {time zone boundary case 2022-11-06 01:59:59} detroit {
    clock format 1667714399 -format {%H:%M:%S %z %Z} \
        -timezone :America/Detroit
} {01:59:59 -0400 EDT}
test clock-5.340 {time zone boundary case 2022-11-06 01:00:00} detroit {
    clock format 1667714400 -format {%H:%M:%S %z %Z} \
        -timezone :America/Detroit
} {01:00:00 -0500 EST}
test clock-5.341 {time zone boundary case 2022-11-06 01:00:01} detroit {
    clock format 1667714401 -format {%H:%M:%S %z %Z} \
        -timezone :America/Detroit
} {01:00:01 -0500 EST}
test clock-5.342 {time zone boundary case 2023-03-12 01:59:59} detroit {
    clock format 1678604399 -format {%H:%M:%S %z %Z} \
        -timezone :America/Detroit
} {01:59:59 -0500 EST}
test clock-5.343 {time zone boundary case 2023-03-12 03:00:00} detroit {
    clock format 1678604400 -format {%H:%M:%S %z %Z} \
        -timezone :America/Detroit
} {03:00:00 -0400 EDT}
test clock-5.344 {time zone boundary case 2023-03-12 03:00:01} detroit {
    clock format 1678604401 -format {%H:%M:%S %z %Z} \
        -timezone :America/Detroit
} {03:00:01 -0400 EDT}
test clock-5.345 {time zone boundary case 2023-11-05 01:59:59} detroit {
    clock format 1699163999 -format {%H:%M:%S %z %Z} \
        -timezone :America/Detroit
} {01:59:59 -0400 EDT}
test clock-5.346 {time zone boundary case 2023-11-05 01:00:00} detroit {
    clock format 1699164000 -format {%H:%M:%S %z %Z} \
        -timezone :America/Detroit
} {01:00:00 -0500 EST}
test clock-5.347 {time zone boundary case 2023-11-05 01:00:01} detroit {
    clock format 1699164001 -format {%H:%M:%S %z %Z} \
        -timezone :America/Detroit
} {01:00:01 -0500 EST}
test clock-5.348 {time zone boundary case 2024-03-10 01:59:59} detroit {
    clock format 1710053999 -format {%H:%M:%S %z %Z} \
        -timezone :America/Detroit
} {01:59:59 -0500 EST}
test clock-5.349 {time zone boundary case 2024-03-10 03:00:00} detroit {
    clock format 1710054000 -format {%H:%M:%S %z %Z} \
        -timezone :America/Detroit
} {03:00:00 -0400 EDT}
test clock-5.350 {time zone boundary case 2024-03-10 03:00:01} detroit {
    clock format 1710054001 -format {%H:%M:%S %z %Z} \
        -timezone :America/Detroit
} {03:00:01 -0400 EDT}
test clock-5.351 {time zone boundary case 2024-11-03 01:59:59} detroit {
    clock format 1730613599 -format {%H:%M:%S %z %Z} \
        -timezone :America/Detroit
} {01:59:59 -0400 EDT}
test clock-5.352 {time zone boundary case 2024-11-03 01:00:00} detroit {
    clock format 1730613600 -format {%H:%M:%S %z %Z} \
        -timezone :America/Detroit
} {01:00:00 -0500 EST}
test clock-5.353 {time zone boundary case 2024-11-03 01:00:01} detroit {
    clock format 1730613601 -format {%H:%M:%S %z %Z} \
        -timezone :America/Detroit
} {01:00:01 -0500 EST}
test clock-5.354 {time zone boundary case 2025-03-09 01:59:59} detroit {
    clock format 1741503599 -format {%H:%M:%S %z %Z} \
        -timezone :America/Detroit
} {01:59:59 -0500 EST}
test clock-5.355 {time zone boundary case 2025-03-09 03:00:00} detroit {
    clock format 1741503600 -format {%H:%M:%S %z %Z} \
        -timezone :America/Detroit
} {03:00:00 -0400 EDT}
test clock-5.356 {time zone boundary case 2025-03-09 03:00:01} detroit {
    clock format 1741503601 -format {%H:%M:%S %z %Z} \
        -timezone :America/Detroit
} {03:00:01 -0400 EDT}
test clock-5.357 {time zone boundary case 2025-11-02 01:59:59} detroit {
    clock format 1762063199 -format {%H:%M:%S %z %Z} \
        -timezone :America/Detroit
} {01:59:59 -0400 EDT}
test clock-5.358 {time zone boundary case 2025-11-02 01:00:00} detroit {
    clock format 1762063200 -format {%H:%M:%S %z %Z} \
        -timezone :America/Detroit
} {01:00:00 -0500 EST}
test clock-5.359 {time zone boundary case 2025-11-02 01:00:01} detroit {
    clock format 1762063201 -format {%H:%M:%S %z %Z} \
        -timezone :America/Detroit
} {01:00:01 -0500 EST}
test clock-5.360 {time zone boundary case 2026-03-08 01:59:59} detroit {
    clock format 1772953199 -format {%H:%M:%S %z %Z} \
        -timezone :America/Detroit
} {01:59:59 -0500 EST}
test clock-5.361 {time zone boundary case 2026-03-08 03:00:00} detroit {
    clock format 1772953200 -format {%H:%M:%S %z %Z} \
        -timezone :America/Detroit
} {03:00:00 -0400 EDT}
test clock-5.362 {time zone boundary case 2026-03-08 03:00:01} detroit {
    clock format 1772953201 -format {%H:%M:%S %z %Z} \
        -timezone :America/Detroit
} {03:00:01 -0400 EDT}
test clock-5.363 {time zone boundary case 2026-11-01 01:59:59} detroit {
    clock format 1793512799 -format {%H:%M:%S %z %Z} \
        -timezone :America/Detroit
} {01:59:59 -0400 EDT}
test clock-5.364 {time zone boundary case 2026-11-01 01:00:00} detroit {
    clock format 1793512800 -format {%H:%M:%S %z %Z} \
        -timezone :America/Detroit
} {01:00:00 -0500 EST}
test clock-5.365 {time zone boundary case 2026-11-01 01:00:01} detroit {
    clock format 1793512801 -format {%H:%M:%S %z %Z} \
        -timezone :America/Detroit
} {01:00:01 -0500 EST}
test clock-5.366 {time zone boundary case 2027-03-14 01:59:59} detroit {
    clock format 1805007599 -format {%H:%M:%S %z %Z} \
        -timezone :America/Detroit
} {01:59:59 -0500 EST}
test clock-5.367 {time zone boundary case 2027-03-14 03:00:00} detroit {
    clock format 1805007600 -format {%H:%M:%S %z %Z} \
        -timezone :America/Detroit
} {03:00:00 -0400 EDT}
test clock-5.368 {time zone boundary case 2027-03-14 03:00:01} detroit {
    clock format 1805007601 -format {%H:%M:%S %z %Z} \
        -timezone :America/Detroit
} {03:00:01 -0400 EDT}
test clock-5.369 {time zone boundary case 2027-11-07 01:59:59} detroit {
    clock format 1825567199 -format {%H:%M:%S %z %Z} \
        -timezone :America/Detroit
} {01:59:59 -0400 EDT}
test clock-5.370 {time zone boundary case 2027-11-07 01:00:00} detroit {
    clock format 1825567200 -format {%H:%M:%S %z %Z} \
        -timezone :America/Detroit
} {01:00:00 -0500 EST}
test clock-5.371 {time zone boundary case 2027-11-07 01:00:01} detroit {
    clock format 1825567201 -format {%H:%M:%S %z %Z} \
        -timezone :America/Detroit
} {01:00:01 -0500 EST}
test clock-5.372 {time zone boundary case 2028-03-12 01:59:59} detroit {
    clock format 1836457199 -format {%H:%M:%S %z %Z} \
        -timezone :America/Detroit
} {01:59:59 -0500 EST}
test clock-5.373 {time zone boundary case 2028-03-12 03:00:00} detroit {
    clock format 1836457200 -format {%H:%M:%S %z %Z} \
        -timezone :America/Detroit
} {03:00:00 -0400 EDT}
test clock-5.374 {time zone boundary case 2028-03-12 03:00:01} detroit {
    clock format 1836457201 -format {%H:%M:%S %z %Z} \
        -timezone :America/Detroit
} {03:00:01 -0400 EDT}
test clock-5.375 {time zone boundary case 2028-11-05 01:59:59} detroit {
    clock format 1857016799 -format {%H:%M:%S %z %Z} \
        -timezone :America/Detroit
} {01:59:59 -0400 EDT}
test clock-5.376 {time zone boundary case 2028-11-05 01:00:00} detroit {
    clock format 1857016800 -format {%H:%M:%S %z %Z} \
        -timezone :America/Detroit
} {01:00:00 -0500 EST}
test clock-5.377 {time zone boundary case 2028-11-05 01:00:01} detroit {
    clock format 1857016801 -format {%H:%M:%S %z %Z} \
        -timezone :America/Detroit
} {01:00:01 -0500 EST}
test clock-5.378 {time zone boundary case 2029-03-11 01:59:59} detroit {
    clock format 1867906799 -format {%H:%M:%S %z %Z} \
        -timezone :America/Detroit
} {01:59:59 -0500 EST}
test clock-5.379 {time zone boundary case 2029-03-11 03:00:00} detroit {
    clock format 1867906800 -format {%H:%M:%S %z %Z} \
        -timezone :America/Detroit
} {03:00:00 -0400 EDT}
test clock-5.380 {time zone boundary case 2029-03-11 03:00:01} detroit {
    clock format 1867906801 -format {%H:%M:%S %z %Z} \
        -timezone :America/Detroit
} {03:00:01 -0400 EDT}
test clock-5.381 {time zone boundary case 2029-11-04 01:59:59} detroit {
    clock format 1888466399 -format {%H:%M:%S %z %Z} \
        -timezone :America/Detroit
} {01:59:59 -0400 EDT}
test clock-5.382 {time zone boundary case 2029-11-04 01:00:00} detroit {
    clock format 1888466400 -format {%H:%M:%S %z %Z} \
        -timezone :America/Detroit
} {01:00:00 -0500 EST}
test clock-5.383 {time zone boundary case 2029-11-04 01:00:01} detroit {
    clock format 1888466401 -format {%H:%M:%S %z %Z} \
        -timezone :America/Detroit
} {01:00:01 -0500 EST}
test clock-5.384 {time zone boundary case 2030-03-10 01:59:59} detroit {
    clock format 1899356399 -format {%H:%M:%S %z %Z} \
        -timezone :America/Detroit
} {01:59:59 -0500 EST}
test clock-5.385 {time zone boundary case 2030-03-10 03:00:00} detroit {
    clock format 1899356400 -format {%H:%M:%S %z %Z} \
        -timezone :America/Detroit
} {03:00:00 -0400 EDT}
test clock-5.386 {time zone boundary case 2030-03-10 03:00:01} detroit {
    clock format 1899356401 -format {%H:%M:%S %z %Z} \
        -timezone :America/Detroit
} {03:00:01 -0400 EDT}
test clock-5.387 {time zone boundary case 2030-11-03 01:59:59} detroit {
    clock format 1919915999 -format {%H:%M:%S %z %Z} \
        -timezone :America/Detroit
} {01:59:59 -0400 EDT}
test clock-5.388 {time zone boundary case 2030-11-03 01:00:00} detroit {
    clock format 1919916000 -format {%H:%M:%S %z %Z} \
        -timezone :America/Detroit
} {01:00:00 -0500 EST}
test clock-5.389 {time zone boundary case 2030-11-03 01:00:01} detroit {
    clock format 1919916001 -format {%H:%M:%S %z %Z} \
        -timezone :America/Detroit
} {01:00:01 -0500 EST}
test clock-5.390 {time zone boundary case 2031-03-09 01:59:59} detroit {
    clock format 1930805999 -format {%H:%M:%S %z %Z} \
        -timezone :America/Detroit
} {01:59:59 -0500 EST}
test clock-5.391 {time zone boundary case 2031-03-09 03:00:00} detroit {
    clock format 1930806000 -format {%H:%M:%S %z %Z} \
        -timezone :America/Detroit
} {03:00:00 -0400 EDT}
test clock-5.392 {time zone boundary case 2031-03-09 03:00:01} detroit {
    clock format 1930806001 -format {%H:%M:%S %z %Z} \
        -timezone :America/Detroit
} {03:00:01 -0400 EDT}
test clock-5.393 {time zone boundary case 2031-11-02 01:59:59} detroit {
    clock format 1951365599 -format {%H:%M:%S %z %Z} \
        -timezone :America/Detroit
} {01:59:59 -0400 EDT}
test clock-5.394 {time zone boundary case 2031-11-02 01:00:00} detroit {
    clock format 1951365600 -format {%H:%M:%S %z %Z} \
        -timezone :America/Detroit
} {01:00:00 -0500 EST}
test clock-5.395 {time zone boundary case 2031-11-02 01:00:01} detroit {
    clock format 1951365601 -format {%H:%M:%S %z %Z} \
        -timezone :America/Detroit
} {01:00:01 -0500 EST}
test clock-5.396 {time zone boundary case 2032-03-14 01:59:59} detroit {
    clock format 1962860399 -format {%H:%M:%S %z %Z} \
        -timezone :America/Detroit
} {01:59:59 -0500 EST}
test clock-5.397 {time zone boundary case 2032-03-14 03:00:00} detroit {
    clock format 1962860400 -format {%H:%M:%S %z %Z} \
        -timezone :America/Detroit
} {03:00:00 -0400 EDT}
test clock-5.398 {time zone boundary case 2032-03-14 03:00:01} detroit {
    clock format 1962860401 -format {%H:%M:%S %z %Z} \
        -timezone :America/Detroit
} {03:00:01 -0400 EDT}
test clock-5.399 {time zone boundary case 2032-11-07 01:59:59} detroit {
    clock format 1983419999 -format {%H:%M:%S %z %Z} \
        -timezone :America/Detroit
} {01:59:59 -0400 EDT}
test clock-5.400 {time zone boundary case 2032-11-07 01:00:00} detroit {
    clock format 1983420000 -format {%H:%M:%S %z %Z} \
        -timezone :America/Detroit
} {01:00:00 -0500 EST}
test clock-5.401 {time zone boundary case 2032-11-07 01:00:01} detroit {
    clock format 1983420001 -format {%H:%M:%S %z %Z} \
        -timezone :America/Detroit
} {01:00:01 -0500 EST}
test clock-5.402 {time zone boundary case 2033-03-13 01:59:59} detroit {
    clock format 1994309999 -format {%H:%M:%S %z %Z} \
        -timezone :America/Detroit
} {01:59:59 -0500 EST}
test clock-5.403 {time zone boundary case 2033-03-13 03:00:00} detroit {
    clock format 1994310000 -format {%H:%M:%S %z %Z} \
        -timezone :America/Detroit
} {03:00:00 -0400 EDT}
test clock-5.404 {time zone boundary case 2033-03-13 03:00:01} detroit {
    clock format 1994310001 -format {%H:%M:%S %z %Z} \
        -timezone :America/Detroit
} {03:00:01 -0400 EDT}
test clock-5.405 {time zone boundary case 2033-11-06 01:59:59} detroit {
    clock format 2014869599 -format {%H:%M:%S %z %Z} \
        -timezone :America/Detroit
} {01:59:59 -0400 EDT}
test clock-5.406 {time zone boundary case 2033-11-06 01:00:00} detroit {
    clock format 2014869600 -format {%H:%M:%S %z %Z} \
        -timezone :America/Detroit
} {01:00:00 -0500 EST}
test clock-5.407 {time zone boundary case 2033-11-06 01:00:01} detroit {
    clock format 2014869601 -format {%H:%M:%S %z %Z} \
        -timezone :America/Detroit
} {01:00:01 -0500 EST}
test clock-5.408 {time zone boundary case 2034-03-12 01:59:59} detroit {
    clock format 2025759599 -format {%H:%M:%S %z %Z} \
        -timezone :America/Detroit
} {01:59:59 -0500 EST}
test clock-5.409 {time zone boundary case 2034-03-12 03:00:00} detroit {
    clock format 2025759600 -format {%H:%M:%S %z %Z} \
        -timezone :America/Detroit
} {03:00:00 -0400 EDT}
test clock-5.410 {time zone boundary case 2034-03-12 03:00:01} detroit {
    clock format 2025759601 -format {%H:%M:%S %z %Z} \
        -timezone :America/Detroit
} {03:00:01 -0400 EDT}
test clock-5.411 {time zone boundary case 2034-11-05 01:59:59} detroit {
    clock format 2046319199 -format {%H:%M:%S %z %Z} \
        -timezone :America/Detroit
} {01:59:59 -0400 EDT}
test clock-5.412 {time zone boundary case 2034-11-05 01:00:00} detroit {
    clock format 2046319200 -format {%H:%M:%S %z %Z} \
        -timezone :America/Detroit
} {01:00:00 -0500 EST}
test clock-5.413 {time zone boundary case 2034-11-05 01:00:01} detroit {
    clock format 2046319201 -format {%H:%M:%S %z %Z} \
        -timezone :America/Detroit
} {01:00:01 -0500 EST}
test clock-5.414 {time zone boundary case 2035-03-11 01:59:59} detroit {
    clock format 2057209199 -format {%H:%M:%S %z %Z} \
        -timezone :America/Detroit
} {01:59:59 -0500 EST}
test clock-5.415 {time zone boundary case 2035-03-11 03:00:00} detroit {
    clock format 2057209200 -format {%H:%M:%S %z %Z} \
        -timezone :America/Detroit
} {03:00:00 -0400 EDT}
test clock-5.416 {time zone boundary case 2035-03-11 03:00:01} detroit {
    clock format 2057209201 -format {%H:%M:%S %z %Z} \
        -timezone :America/Detroit
} {03:00:01 -0400 EDT}
test clock-5.417 {time zone boundary case 2035-11-04 01:59:59} detroit {
    clock format 2077768799 -format {%H:%M:%S %z %Z} \
        -timezone :America/Detroit
} {01:59:59 -0400 EDT}
test clock-5.418 {time zone boundary case 2035-11-04 01:00:00} detroit {
    clock format 2077768800 -format {%H:%M:%S %z %Z} \
        -timezone :America/Detroit
} {01:00:00 -0500 EST}
test clock-5.419 {time zone boundary case 2035-11-04 01:00:01} detroit {
    clock format 2077768801 -format {%H:%M:%S %z %Z} \
        -timezone :America/Detroit
} {01:00:01 -0500 EST}
test clock-5.420 {time zone boundary case 2036-03-09 01:59:59} detroit {
    clock format 2088658799 -format {%H:%M:%S %z %Z} \
        -timezone :America/Detroit
} {01:59:59 -0500 EST}
test clock-5.421 {time zone boundary case 2036-03-09 03:00:00} detroit {
    clock format 2088658800 -format {%H:%M:%S %z %Z} \
        -timezone :America/Detroit
} {03:00:00 -0400 EDT}
test clock-5.422 {time zone boundary case 2036-03-09 03:00:01} detroit {
    clock format 2088658801 -format {%H:%M:%S %z %Z} \
        -timezone :America/Detroit
} {03:00:01 -0400 EDT}
test clock-5.423 {time zone boundary case 2036-11-02 01:59:59} detroit {
    clock format 2109218399 -format {%H:%M:%S %z %Z} \
        -timezone :America/Detroit
} {01:59:59 -0400 EDT}
test clock-5.424 {time zone boundary case 2036-11-02 01:00:00} detroit {
    clock format 2109218400 -format {%H:%M:%S %z %Z} \
        -timezone :America/Detroit
} {01:00:00 -0500 EST}
test clock-5.425 {time zone boundary case 2036-11-02 01:00:01} detroit {
    clock format 2109218401 -format {%H:%M:%S %z %Z} \
        -timezone :America/Detroit
} {01:00:01 -0500 EST}
test clock-5.426 {time zone boundary case 2037-03-08 01:59:59} detroit {
    clock format 2120108399 -format {%H:%M:%S %z %Z} \
        -timezone :America/Detroit
} {01:59:59 -0500 EST}
test clock-5.427 {time zone boundary case 2037-03-08 03:00:00} detroit {
    clock format 2120108400 -format {%H:%M:%S %z %Z} \
        -timezone :America/Detroit
} {03:00:00 -0400 EDT}
test clock-5.428 {time zone boundary case 2037-03-08 03:00:01} detroit {
    clock format 2120108401 -format {%H:%M:%S %z %Z} \
        -timezone :America/Detroit
} {03:00:01 -0400 EDT}
test clock-5.429 {time zone boundary case 2037-11-01 01:59:59} detroit {
    clock format 2140667999 -format {%H:%M:%S %z %Z} \
        -timezone :America/Detroit
} {01:59:59 -0400 EDT}
test clock-5.430 {time zone boundary case 2037-11-01 01:00:00} detroit {
    clock format 2140668000 -format {%H:%M:%S %z %Z} \
        -timezone :America/Detroit
} {01:00:00 -0500 EST}
test clock-5.431 {time zone boundary case 2037-11-01 01:00:01} detroit {
    clock format 2140668001 -format {%H:%M:%S %z %Z} \
        -timezone :America/Detroit
} {01:00:01 -0500 EST}
test clock-5.432 {time zone boundary case 2038-03-14 01:59:59} {detroit y2038} {
    clock format 2152162799 -format {%H:%M:%S %z %Z} \
        -timezone :America/Detroit
} {01:59:59 -0500 EST}
test clock-5.433 {time zone boundary case 2038-03-14 03:00:00} {detroit y2038} {
    clock format 2152162800 -format {%H:%M:%S %z %Z} \
        -timezone :America/Detroit
} {03:00:00 -0400 EDT}
test clock-5.434 {time zone boundary case 2038-03-14 03:00:01} {detroit y2038} {
    clock format 2152162801 -format {%H:%M:%S %z %Z} \
        -timezone :America/Detroit
} {03:00:01 -0400 EDT}
test clock-5.435 {time zone boundary case 2038-11-07 01:59:59} {detroit y2038} {
    clock format 2172722399 -format {%H:%M:%S %z %Z} \
        -timezone :America/Detroit
} {01:59:59 -0400 EDT}
test clock-5.436 {time zone boundary case 2038-11-07 01:00:00} {detroit y2038} {
    clock format 2172722400 -format {%H:%M:%S %z %Z} \
        -timezone :America/Detroit
} {01:00:00 -0500 EST}
test clock-5.437 {time zone boundary case 2038-11-07 01:00:01} {detroit y2038} {
    clock format 2172722401 -format {%H:%M:%S %z %Z} \
        -timezone :America/Detroit
} {01:00:01 -0500 EST}
test clock-5.438 {time zone boundary case 2039-03-13 01:59:59} {detroit y2038} {
    clock format 2183612399 -format {%H:%M:%S %z %Z} \
        -timezone :America/Detroit
} {01:59:59 -0500 EST}
test clock-5.439 {time zone boundary case 2039-03-13 03:00:00} {detroit y2038} {
    clock format 2183612400 -format {%H:%M:%S %z %Z} \
        -timezone :America/Detroit
} {03:00:00 -0400 EDT}
test clock-5.440 {time zone boundary case 2039-03-13 03:00:01} {detroit y2038} {
    clock format 2183612401 -format {%H:%M:%S %z %Z} \
        -timezone :America/Detroit
} {03:00:01 -0400 EDT}
test clock-5.441 {time zone boundary case 2039-11-06 01:59:59} {detroit y2038} {
    clock format 2204171999 -format {%H:%M:%S %z %Z} \
        -timezone :America/Detroit
} {01:59:59 -0400 EDT}
test clock-5.442 {time zone boundary case 2039-11-06 01:00:00} {detroit y2038} {
    clock format 2204172000 -format {%H:%M:%S %z %Z} \
        -timezone :America/Detroit
} {01:00:00 -0500 EST}
test clock-5.443 {time zone boundary case 2039-11-06 01:00:01} {detroit y2038} {
    clock format 2204172001 -format {%H:%M:%S %z %Z} \
        -timezone :America/Detroit
} {01:00:01 -0500 EST}
test clock-5.444 {time zone boundary case 2040-03-11 01:59:59} {detroit y2038} {
    clock format 2215061999 -format {%H:%M:%S %z %Z} \
        -timezone :America/Detroit
} {01:59:59 -0500 EST}
test clock-5.445 {time zone boundary case 2040-03-11 03:00:00} {detroit y2038} {
    clock format 2215062000 -format {%H:%M:%S %z %Z} \
        -timezone :America/Detroit
} {03:00:00 -0400 EDT}
test clock-5.446 {time zone boundary case 2040-03-11 03:00:01} {detroit y2038} {
    clock format 2215062001 -format {%H:%M:%S %z %Z} \
        -timezone :America/Detroit
} {03:00:01 -0400 EDT}
test clock-5.447 {time zone boundary case 2040-11-04 01:59:59} {detroit y2038} {
    clock format 2235621599 -format {%H:%M:%S %z %Z} \
        -timezone :America/Detroit
} {01:59:59 -0400 EDT}
test clock-5.448 {time zone boundary case 2040-11-04 01:00:00} {detroit y2038} {
    clock format 2235621600 -format {%H:%M:%S %z %Z} \
        -timezone :America/Detroit
} {01:00:00 -0500 EST}
test clock-5.449 {time zone boundary case 2040-11-04 01:00:01} {detroit y2038} {
    clock format 2235621601 -format {%H:%M:%S %z %Z} \
        -timezone :America/Detroit
} {01:00:01 -0500 EST}
test clock-5.450 {time zone boundary case 2041-03-10 01:59:59} {detroit y2038} {
    clock format 2246511599 -format {%H:%M:%S %z %Z} \
        -timezone :America/Detroit
} {01:59:59 -0500 EST}
test clock-5.451 {time zone boundary case 2041-03-10 03:00:00} {detroit y2038} {
    clock format 2246511600 -format {%H:%M:%S %z %Z} \
        -timezone :America/Detroit
} {03:00:00 -0400 EDT}
test clock-5.452 {time zone boundary case 2041-03-10 03:00:01} {detroit y2038} {
    clock format 2246511601 -format {%H:%M:%S %z %Z} \
        -timezone :America/Detroit
} {03:00:01 -0400 EDT}
test clock-5.453 {time zone boundary case 2041-11-03 01:59:59} {detroit y2038} {
    clock format 2267071199 -format {%H:%M:%S %z %Z} \
        -timezone :America/Detroit
} {01:59:59 -0400 EDT}
test clock-5.454 {time zone boundary case 2041-11-03 01:00:00} {detroit y2038} {
    clock format 2267071200 -format {%H:%M:%S %z %Z} \
        -timezone :America/Detroit
} {01:00:00 -0500 EST}
test clock-5.455 {time zone boundary case 2041-11-03 01:00:01} {detroit y2038} {
    clock format 2267071201 -format {%H:%M:%S %z %Z} \
        -timezone :America/Detroit
} {01:00:01 -0500 EST}
test clock-5.456 {time zone boundary case 2042-03-09 01:59:59} {detroit y2038} {
    clock format 2277961199 -format {%H:%M:%S %z %Z} \
        -timezone :America/Detroit
} {01:59:59 -0500 EST}
test clock-5.457 {time zone boundary case 2042-03-09 03:00:00} {detroit y2038} {
    clock format 2277961200 -format {%H:%M:%S %z %Z} \
        -timezone :America/Detroit
} {03:00:00 -0400 EDT}
test clock-5.458 {time zone boundary case 2042-03-09 03:00:01} {detroit y2038} {
    clock format 2277961201 -format {%H:%M:%S %z %Z} \
        -timezone :America/Detroit
} {03:00:01 -0400 EDT}
test clock-5.459 {time zone boundary case 2042-11-02 01:59:59} {detroit y2038} {
    clock format 2298520799 -format {%H:%M:%S %z %Z} \
        -timezone :America/Detroit
} {01:59:59 -0400 EDT}
test clock-5.460 {time zone boundary case 2042-11-02 01:00:00} {detroit y2038} {
    clock format 2298520800 -format {%H:%M:%S %z %Z} \
        -timezone :America/Detroit
} {01:00:00 -0500 EST}
test clock-5.461 {time zone boundary case 2042-11-02 01:00:01} {detroit y2038} {
    clock format 2298520801 -format {%H:%M:%S %z %Z} \
        -timezone :America/Detroit
} {01:00:01 -0500 EST}
test clock-5.462 {time zone boundary case 2043-03-08 01:59:59} {detroit y2038} {
    clock format 2309410799 -format {%H:%M:%S %z %Z} \
        -timezone :America/Detroit
} {01:59:59 -0500 EST}
test clock-5.463 {time zone boundary case 2043-03-08 03:00:00} {detroit y2038} {
    clock format 2309410800 -format {%H:%M:%S %z %Z} \
        -timezone :America/Detroit
} {03:00:00 -0400 EDT}
test clock-5.464 {time zone boundary case 2043-03-08 03:00:01} {detroit y2038} {
    clock format 2309410801 -format {%H:%M:%S %z %Z} \
        -timezone :America/Detroit
} {03:00:01 -0400 EDT}
test clock-5.465 {time zone boundary case 2043-11-01 01:59:59} {detroit y2038} {
    clock format 2329970399 -format {%H:%M:%S %z %Z} \
        -timezone :America/Detroit
} {01:59:59 -0400 EDT}
test clock-5.466 {time zone boundary case 2043-11-01 01:00:00} {detroit y2038} {
    clock format 2329970400 -format {%H:%M:%S %z %Z} \
        -timezone :America/Detroit
} {01:00:00 -0500 EST}
test clock-5.467 {time zone boundary case 2043-11-01 01:00:01} {detroit y2038} {
    clock format 2329970401 -format {%H:%M:%S %z %Z} \
        -timezone :America/Detroit
} {01:00:01 -0500 EST}
test clock-5.468 {time zone boundary case 2044-03-13 01:59:59} {detroit y2038} {
    clock format 2341465199 -format {%H:%M:%S %z %Z} \
        -timezone :America/Detroit
} {01:59:59 -0500 EST}
test clock-5.469 {time zone boundary case 2044-03-13 03:00:00} {detroit y2038} {
    clock format 2341465200 -format {%H:%M:%S %z %Z} \
        -timezone :America/Detroit
} {03:00:00 -0400 EDT}
test clock-5.470 {time zone boundary case 2044-03-13 03:00:01} {detroit y2038} {
    clock format 2341465201 -format {%H:%M:%S %z %Z} \
        -timezone :America/Detroit
} {03:00:01 -0400 EDT}
test clock-5.471 {time zone boundary case 2044-11-06 01:59:59} {detroit y2038} {
    clock format 2362024799 -format {%H:%M:%S %z %Z} \
        -timezone :America/Detroit
} {01:59:59 -0400 EDT}
test clock-5.472 {time zone boundary case 2044-11-06 01:00:00} {detroit y2038} {
    clock format 2362024800 -format {%H:%M:%S %z %Z} \
        -timezone :America/Detroit
} {01:00:00 -0500 EST}
test clock-5.473 {time zone boundary case 2044-11-06 01:00:01} {detroit y2038} {
    clock format 2362024801 -format {%H:%M:%S %z %Z} \
        -timezone :America/Detroit
} {01:00:01 -0500 EST}
test clock-5.474 {time zone boundary case 2045-03-12 01:59:59} {detroit y2038} {
    clock format 2372914799 -format {%H:%M:%S %z %Z} \
        -timezone :America/Detroit
} {01:59:59 -0500 EST}
test clock-5.475 {time zone boundary case 2045-03-12 03:00:00} {detroit y2038} {
    clock format 2372914800 -format {%H:%M:%S %z %Z} \
        -timezone :America/Detroit
} {03:00:00 -0400 EDT}
test clock-5.476 {time zone boundary case 2045-03-12 03:00:01} {detroit y2038} {
    clock format 2372914801 -format {%H:%M:%S %z %Z} \
        -timezone :America/Detroit
} {03:00:01 -0400 EDT}
test clock-5.477 {time zone boundary case 2045-11-05 01:59:59} {detroit y2038} {
    clock format 2393474399 -format {%H:%M:%S %z %Z} \
        -timezone :America/Detroit
} {01:59:59 -0400 EDT}
test clock-5.478 {time zone boundary case 2045-11-05 01:00:00} {detroit y2038} {
    clock format 2393474400 -format {%H:%M:%S %z %Z} \
        -timezone :America/Detroit
} {01:00:00 -0500 EST}
test clock-5.479 {time zone boundary case 2045-11-05 01:00:01} {detroit y2038} {
    clock format 2393474401 -format {%H:%M:%S %z %Z} \
        -timezone :America/Detroit
} {01:00:01 -0500 EST}
test clock-5.480 {time zone boundary case 2046-03-11 01:59:59} {detroit y2038} {
    clock format 2404364399 -format {%H:%M:%S %z %Z} \
        -timezone :America/Detroit
} {01:59:59 -0500 EST}
test clock-5.481 {time zone boundary case 2046-03-11 03:00:00} {detroit y2038} {
    clock format 2404364400 -format {%H:%M:%S %z %Z} \
        -timezone :America/Detroit
} {03:00:00 -0400 EDT}
test clock-5.482 {time zone boundary case 2046-03-11 03:00:01} {detroit y2038} {
    clock format 2404364401 -format {%H:%M:%S %z %Z} \
        -timezone :America/Detroit
} {03:00:01 -0400 EDT}
test clock-5.483 {time zone boundary case 2046-11-04 01:59:59} {detroit y2038} {
    clock format 2424923999 -format {%H:%M:%S %z %Z} \
        -timezone :America/Detroit
} {01:59:59 -0400 EDT}
test clock-5.484 {time zone boundary case 2046-11-04 01:00:00} {detroit y2038} {
    clock format 2424924000 -format {%H:%M:%S %z %Z} \
        -timezone :America/Detroit
} {01:00:00 -0500 EST}
test clock-5.485 {time zone boundary case 2046-11-04 01:00:01} {detroit y2038} {
    clock format 2424924001 -format {%H:%M:%S %z %Z} \
        -timezone :America/Detroit
} {01:00:01 -0500 EST}
test clock-5.486 {time zone boundary case 2047-03-10 01:59:59} {detroit y2038} {
    clock format 2435813999 -format {%H:%M:%S %z %Z} \
        -timezone :America/Detroit
} {01:59:59 -0500 EST}
test clock-5.487 {time zone boundary case 2047-03-10 03:00:00} {detroit y2038} {
    clock format 2435814000 -format {%H:%M:%S %z %Z} \
        -timezone :America/Detroit
} {03:00:00 -0400 EDT}
test clock-5.488 {time zone boundary case 2047-03-10 03:00:01} {detroit y2038} {
    clock format 2435814001 -format {%H:%M:%S %z %Z} \
        -timezone :America/Detroit
} {03:00:01 -0400 EDT}
test clock-5.489 {time zone boundary case 2047-11-03 01:59:59} {detroit y2038} {
    clock format 2456373599 -format {%H:%M:%S %z %Z} \
        -timezone :America/Detroit
} {01:59:59 -0400 EDT}
test clock-5.490 {time zone boundary case 2047-11-03 01:00:00} {detroit y2038} {
    clock format 2456373600 -format {%H:%M:%S %z %Z} \
        -timezone :America/Detroit
} {01:00:00 -0500 EST}
test clock-5.491 {time zone boundary case 2047-11-03 01:00:01} {detroit y2038} {
    clock format 2456373601 -format {%H:%M:%S %z %Z} \
        -timezone :America/Detroit
} {01:00:01 -0500 EST}
test clock-5.492 {time zone boundary case 2048-03-08 01:59:59} {detroit y2038} {
    clock format 2467263599 -format {%H:%M:%S %z %Z} \
        -timezone :America/Detroit
} {01:59:59 -0500 EST}
test clock-5.493 {time zone boundary case 2048-03-08 03:00:00} {detroit y2038} {
    clock format 2467263600 -format {%H:%M:%S %z %Z} \
        -timezone :America/Detroit
} {03:00:00 -0400 EDT}
test clock-5.494 {time zone boundary case 2048-03-08 03:00:01} {detroit y2038} {
    clock format 2467263601 -format {%H:%M:%S %z %Z} \
        -timezone :America/Detroit
} {03:00:01 -0400 EDT}
test clock-5.495 {time zone boundary case 2048-11-01 01:59:59} {detroit y2038} {
    clock format 2487823199 -format {%H:%M:%S %z %Z} \
        -timezone :America/Detroit
} {01:59:59 -0400 EDT}
test clock-5.496 {time zone boundary case 2048-11-01 01:00:00} {detroit y2038} {
    clock format 2487823200 -format {%H:%M:%S %z %Z} \
        -timezone :America/Detroit
} {01:00:00 -0500 EST}
test clock-5.497 {time zone boundary case 2048-11-01 01:00:01} {detroit y2038} {
    clock format 2487823201 -format {%H:%M:%S %z %Z} \
        -timezone :America/Detroit
} {01:00:01 -0500 EST}
test clock-5.498 {time zone boundary case 2049-03-14 01:59:59} {detroit y2038} {
    clock format 2499317999 -format {%H:%M:%S %z %Z} \
        -timezone :America/Detroit
} {01:59:59 -0500 EST}
test clock-5.499 {time zone boundary case 2049-03-14 03:00:00} {detroit y2038} {
    clock format 2499318000 -format {%H:%M:%S %z %Z} \
        -timezone :America/Detroit
} {03:00:00 -0400 EDT}
test clock-5.500 {time zone boundary case 2049-03-14 03:00:01} {detroit y2038} {
    clock format 2499318001 -format {%H:%M:%S %z %Z} \
        -timezone :America/Detroit
} {03:00:01 -0400 EDT}
test clock-5.501 {time zone boundary case 2049-11-07 01:59:59} {detroit y2038} {
    clock format 2519877599 -format {%H:%M:%S %z %Z} \
        -timezone :America/Detroit
} {01:59:59 -0400 EDT}
test clock-5.502 {time zone boundary case 2049-11-07 01:00:00} {detroit y2038} {
    clock format 2519877600 -format {%H:%M:%S %z %Z} \
        -timezone :America/Detroit
} {01:00:00 -0500 EST}
test clock-5.503 {time zone boundary case 2049-11-07 01:00:01} {detroit y2038} {
    clock format 2519877601 -format {%H:%M:%S %z %Z} \
        -timezone :America/Detroit
} {01:00:01 -0500 EST}
test clock-5.504 {time zone boundary case 2050-03-13 01:59:59} {detroit y2038} {
    clock format 2530767599 -format {%H:%M:%S %z %Z} \
        -timezone :America/Detroit
} {01:59:59 -0500 EST}
test clock-5.505 {time zone boundary case 2050-03-13 03:00:00} {detroit y2038} {
    clock format 2530767600 -format {%H:%M:%S %z %Z} \
        -timezone :America/Detroit
} {03:00:00 -0400 EDT}
test clock-5.506 {time zone boundary case 2050-03-13 03:00:01} {detroit y2038} {
    clock format 2530767601 -format {%H:%M:%S %z %Z} \
        -timezone :America/Detroit
} {03:00:01 -0400 EDT}
test clock-5.507 {time zone boundary case 2050-11-06 01:59:59} {detroit y2038} {
    clock format 2551327199 -format {%H:%M:%S %z %Z} \
        -timezone :America/Detroit
} {01:59:59 -0400 EDT}
test clock-5.508 {time zone boundary case 2050-11-06 01:00:00} {detroit y2038} {
    clock format 2551327200 -format {%H:%M:%S %z %Z} \
        -timezone :America/Detroit
} {01:00:00 -0500 EST}
test clock-5.509 {time zone boundary case 2050-11-06 01:00:01} {detroit y2038} {
    clock format 2551327201 -format {%H:%M:%S %z %Z} \
        -timezone :America/Detroit
} {01:00:01 -0500 EST}
test clock-5.510 {time zone boundary case 2051-03-12 01:59:59} {detroit y2038} {
    clock format 2562217199 -format {%H:%M:%S %z %Z} \
        -timezone :America/Detroit
} {01:59:59 -0500 EST}
test clock-5.511 {time zone boundary case 2051-03-12 03:00:00} {detroit y2038} {
    clock format 2562217200 -format {%H:%M:%S %z %Z} \
        -timezone :America/Detroit
} {03:00:00 -0400 EDT}
test clock-5.512 {time zone boundary case 2051-03-12 03:00:01} {detroit y2038} {
    clock format 2562217201 -format {%H:%M:%S %z %Z} \
        -timezone :America/Detroit
} {03:00:01 -0400 EDT}
test clock-5.513 {time zone boundary case 2051-11-05 01:59:59} {detroit y2038} {
    clock format 2582776799 -format {%H:%M:%S %z %Z} \
        -timezone :America/Detroit
} {01:59:59 -0400 EDT}
test clock-5.514 {time zone boundary case 2051-11-05 01:00:00} {detroit y2038} {
    clock format 2582776800 -format {%H:%M:%S %z %Z} \
        -timezone :America/Detroit
} {01:00:00 -0500 EST}
test clock-5.515 {time zone boundary case 2051-11-05 01:00:01} {detroit y2038} {
    clock format 2582776801 -format {%H:%M:%S %z %Z} \
        -timezone :America/Detroit
} {01:00:01 -0500 EST}
test clock-5.516 {time zone boundary case 2052-03-10 01:59:59} {detroit y2038} {
    clock format 2593666799 -format {%H:%M:%S %z %Z} \
        -timezone :America/Detroit
} {01:59:59 -0500 EST}
test clock-5.517 {time zone boundary case 2052-03-10 03:00:00} {detroit y2038} {
    clock format 2593666800 -format {%H:%M:%S %z %Z} \
        -timezone :America/Detroit
} {03:00:00 -0400 EDT}
test clock-5.518 {time zone boundary case 2052-03-10 03:00:01} {detroit y2038} {
    clock format 2593666801 -format {%H:%M:%S %z %Z} \
        -timezone :America/Detroit
} {03:00:01 -0400 EDT}
test clock-5.519 {time zone boundary case 2052-11-03 01:59:59} {detroit y2038} {
    clock format 2614226399 -format {%H:%M:%S %z %Z} \
        -timezone :America/Detroit
} {01:59:59 -0400 EDT}
test clock-5.520 {time zone boundary case 2052-11-03 01:00:00} {detroit y2038} {
    clock format 2614226400 -format {%H:%M:%S %z %Z} \
        -timezone :America/Detroit
} {01:00:00 -0500 EST}
test clock-5.521 {time zone boundary case 2052-11-03 01:00:01} {detroit y2038} {
    clock format 2614226401 -format {%H:%M:%S %z %Z} \
        -timezone :America/Detroit
} {01:00:01 -0500 EST}
test clock-5.522 {time zone boundary case 2053-03-09 01:59:59} {detroit y2038} {
    clock format 2625116399 -format {%H:%M:%S %z %Z} \
        -timezone :America/Detroit
} {01:59:59 -0500 EST}
test clock-5.523 {time zone boundary case 2053-03-09 03:00:00} {detroit y2038} {
    clock format 2625116400 -format {%H:%M:%S %z %Z} \
        -timezone :America/Detroit
} {03:00:00 -0400 EDT}
test clock-5.524 {time zone boundary case 2053-03-09 03:00:01} {detroit y2038} {
    clock format 2625116401 -format {%H:%M:%S %z %Z} \
        -timezone :America/Detroit
} {03:00:01 -0400 EDT}
test clock-5.525 {time zone boundary case 2053-11-02 01:59:59} {detroit y2038} {
    clock format 2645675999 -format {%H:%M:%S %z %Z} \
        -timezone :America/Detroit
} {01:59:59 -0400 EDT}
test clock-5.526 {time zone boundary case 2053-11-02 01:00:00} {detroit y2038} {
    clock format 2645676000 -format {%H:%M:%S %z %Z} \
        -timezone :America/Detroit
} {01:00:00 -0500 EST}
test clock-5.527 {time zone boundary case 2053-11-02 01:00:01} {detroit y2038} {
    clock format 2645676001 -format {%H:%M:%S %z %Z} \
        -timezone :America/Detroit
} {01:00:01 -0500 EST}
test clock-5.528 {time zone boundary case 2054-03-08 01:59:59} {detroit y2038} {
    clock format 2656565999 -format {%H:%M:%S %z %Z} \
        -timezone :America/Detroit
} {01:59:59 -0500 EST}
test clock-5.529 {time zone boundary case 2054-03-08 03:00:00} {detroit y2038} {
    clock format 2656566000 -format {%H:%M:%S %z %Z} \
        -timezone :America/Detroit
} {03:00:00 -0400 EDT}
test clock-5.530 {time zone boundary case 2054-03-08 03:00:01} {detroit y2038} {
    clock format 2656566001 -format {%H:%M:%S %z %Z} \
        -timezone :America/Detroit
} {03:00:01 -0400 EDT}
test clock-5.531 {time zone boundary case 2054-11-01 01:59:59} {detroit y2038} {
    clock format 2677125599 -format {%H:%M:%S %z %Z} \
        -timezone :America/Detroit
} {01:59:59 -0400 EDT}
test clock-5.532 {time zone boundary case 2054-11-01 01:00:00} {detroit y2038} {
    clock format 2677125600 -format {%H:%M:%S %z %Z} \
        -timezone :America/Detroit
} {01:00:00 -0500 EST}
test clock-5.533 {time zone boundary case 2054-11-01 01:00:01} {detroit y2038} {
    clock format 2677125601 -format {%H:%M:%S %z %Z} \
        -timezone :America/Detroit
} {01:00:01 -0500 EST}
test clock-5.534 {time zone boundary case 2055-03-14 01:59:59} {detroit y2038} {
    clock format 2688620399 -format {%H:%M:%S %z %Z} \
        -timezone :America/Detroit
} {01:59:59 -0500 EST}
test clock-5.535 {time zone boundary case 2055-03-14 03:00:00} {detroit y2038} {
    clock format 2688620400 -format {%H:%M:%S %z %Z} \
        -timezone :America/Detroit
} {03:00:00 -0400 EDT}
test clock-5.536 {time zone boundary case 2055-03-14 03:00:01} {detroit y2038} {
    clock format 2688620401 -format {%H:%M:%S %z %Z} \
        -timezone :America/Detroit
} {03:00:01 -0400 EDT}
test clock-5.537 {time zone boundary case 2055-11-07 01:59:59} {detroit y2038} {
    clock format 2709179999 -format {%H:%M:%S %z %Z} \
        -timezone :America/Detroit
} {01:59:59 -0400 EDT}
test clock-5.538 {time zone boundary case 2055-11-07 01:00:00} {detroit y2038} {
    clock format 2709180000 -format {%H:%M:%S %z %Z} \
        -timezone :America/Detroit
} {01:00:00 -0500 EST}
test clock-5.539 {time zone boundary case 2055-11-07 01:00:01} {detroit y2038} {
    clock format 2709180001 -format {%H:%M:%S %z %Z} \
        -timezone :America/Detroit
} {01:00:01 -0500 EST}
test clock-5.540 {time zone boundary case 2056-03-12 01:59:59} {detroit y2038} {
    clock format 2720069999 -format {%H:%M:%S %z %Z} \
        -timezone :America/Detroit
} {01:59:59 -0500 EST}
test clock-5.541 {time zone boundary case 2056-03-12 03:00:00} {detroit y2038} {
    clock format 2720070000 -format {%H:%M:%S %z %Z} \
        -timezone :America/Detroit
} {03:00:00 -0400 EDT}
test clock-5.542 {time zone boundary case 2056-03-12 03:00:01} {detroit y2038} {
    clock format 2720070001 -format {%H:%M:%S %z %Z} \
        -timezone :America/Detroit
} {03:00:01 -0400 EDT}
test clock-5.543 {time zone boundary case 2056-11-05 01:59:59} {detroit y2038} {
    clock format 2740629599 -format {%H:%M:%S %z %Z} \
        -timezone :America/Detroit
} {01:59:59 -0400 EDT}
test clock-5.544 {time zone boundary case 2056-11-05 01:00:00} {detroit y2038} {
    clock format 2740629600 -format {%H:%M:%S %z %Z} \
        -timezone :America/Detroit
} {01:00:00 -0500 EST}
test clock-5.545 {time zone boundary case 2056-11-05 01:00:01} {detroit y2038} {
    clock format 2740629601 -format {%H:%M:%S %z %Z} \
        -timezone :America/Detroit
} {01:00:01 -0500 EST}
test clock-5.546 {time zone boundary case 2057-03-11 01:59:59} {detroit y2038} {
    clock format 2751519599 -format {%H:%M:%S %z %Z} \
        -timezone :America/Detroit
} {01:59:59 -0500 EST}
test clock-5.547 {time zone boundary case 2057-03-11 03:00:00} {detroit y2038} {
    clock format 2751519600 -format {%H:%M:%S %z %Z} \
        -timezone :America/Detroit
} {03:00:00 -0400 EDT}
test clock-5.548 {time zone boundary case 2057-03-11 03:00:01} {detroit y2038} {
    clock format 2751519601 -format {%H:%M:%S %z %Z} \
        -timezone :America/Detroit
} {03:00:01 -0400 EDT}
test clock-5.549 {time zone boundary case 2057-11-04 01:59:59} {detroit y2038} {
    clock format 2772079199 -format {%H:%M:%S %z %Z} \
        -timezone :America/Detroit
} {01:59:59 -0400 EDT}
test clock-5.550 {time zone boundary case 2057-11-04 01:00:00} {detroit y2038} {
    clock format 2772079200 -format {%H:%M:%S %z %Z} \
        -timezone :America/Detroit
} {01:00:00 -0500 EST}
test clock-5.551 {time zone boundary case 2057-11-04 01:00:01} {detroit y2038} {
    clock format 2772079201 -format {%H:%M:%S %z %Z} \
        -timezone :America/Detroit
} {01:00:01 -0500 EST}
test clock-5.552 {time zone boundary case 2058-03-10 01:59:59} {detroit y2038} {
    clock format 2782969199 -format {%H:%M:%S %z %Z} \
        -timezone :America/Detroit
} {01:59:59 -0500 EST}
test clock-5.553 {time zone boundary case 2058-03-10 03:00:00} {detroit y2038} {
    clock format 2782969200 -format {%H:%M:%S %z %Z} \
        -timezone :America/Detroit
} {03:00:00 -0400 EDT}
test clock-5.554 {time zone boundary case 2058-03-10 03:00:01} {detroit y2038} {
    clock format 2782969201 -format {%H:%M:%S %z %Z} \
        -timezone :America/Detroit
} {03:00:01 -0400 EDT}
test clock-5.555 {time zone boundary case 2058-11-03 01:59:59} {detroit y2038} {
    clock format 2803528799 -format {%H:%M:%S %z %Z} \
        -timezone :America/Detroit
} {01:59:59 -0400 EDT}
test clock-5.556 {time zone boundary case 2058-11-03 01:00:00} {detroit y2038} {
    clock format 2803528800 -format {%H:%M:%S %z %Z} \
        -timezone :America/Detroit
} {01:00:00 -0500 EST}
test clock-5.557 {time zone boundary case 2058-11-03 01:00:01} {detroit y2038} {
    clock format 2803528801 -format {%H:%M:%S %z %Z} \
        -timezone :America/Detroit
} {01:00:01 -0500 EST}
test clock-5.558 {time zone boundary case 2059-03-09 01:59:59} {detroit y2038} {
    clock format 2814418799 -format {%H:%M:%S %z %Z} \
        -timezone :America/Detroit
} {01:59:59 -0500 EST}
test clock-5.559 {time zone boundary case 2059-03-09 03:00:00} {detroit y2038} {
    clock format 2814418800 -format {%H:%M:%S %z %Z} \
        -timezone :America/Detroit
} {03:00:00 -0400 EDT}
test clock-5.560 {time zone boundary case 2059-03-09 03:00:01} {detroit y2038} {
    clock format 2814418801 -format {%H:%M:%S %z %Z} \
        -timezone :America/Detroit
} {03:00:01 -0400 EDT}
test clock-5.561 {time zone boundary case 2059-11-02 01:59:59} {detroit y2038} {
    clock format 2834978399 -format {%H:%M:%S %z %Z} \
        -timezone :America/Detroit
} {01:59:59 -0400 EDT}
test clock-5.562 {time zone boundary case 2059-11-02 01:00:00} {detroit y2038} {
    clock format 2834978400 -format {%H:%M:%S %z %Z} \
        -timezone :America/Detroit
} {01:00:00 -0500 EST}
test clock-5.563 {time zone boundary case 2059-11-02 01:00:01} {detroit y2038} {
    clock format 2834978401 -format {%H:%M:%S %z %Z} \
        -timezone :America/Detroit
} {01:00:01 -0500 EST}
test clock-5.564 {time zone boundary case 2060-03-14 01:59:59} {detroit y2038} {
    clock format 2846473199 -format {%H:%M:%S %z %Z} \
        -timezone :America/Detroit
} {01:59:59 -0500 EST}
test clock-5.565 {time zone boundary case 2060-03-14 03:00:00} {detroit y2038} {
    clock format 2846473200 -format {%H:%M:%S %z %Z} \
        -timezone :America/Detroit
} {03:00:00 -0400 EDT}
test clock-5.566 {time zone boundary case 2060-03-14 03:00:01} {detroit y2038} {
    clock format 2846473201 -format {%H:%M:%S %z %Z} \
        -timezone :America/Detroit
} {03:00:01 -0400 EDT}
test clock-5.567 {time zone boundary case 2060-11-07 01:59:59} {detroit y2038} {
    clock format 2867032799 -format {%H:%M:%S %z %Z} \
        -timezone :America/Detroit
} {01:59:59 -0400 EDT}
test clock-5.568 {time zone boundary case 2060-11-07 01:00:00} {detroit y2038} {
    clock format 2867032800 -format {%H:%M:%S %z %Z} \
        -timezone :America/Detroit
} {01:00:00 -0500 EST}
test clock-5.569 {time zone boundary case 2060-11-07 01:00:01} {detroit y2038} {
    clock format 2867032801 -format {%H:%M:%S %z %Z} \
        -timezone :America/Detroit
} {01:00:01 -0500 EST}
test clock-5.570 {time zone boundary case 2061-03-13 01:59:59} {detroit y2038} {
    clock format 2877922799 -format {%H:%M:%S %z %Z} \
        -timezone :America/Detroit
} {01:59:59 -0500 EST}
test clock-5.571 {time zone boundary case 2061-03-13 03:00:00} {detroit y2038} {
    clock format 2877922800 -format {%H:%M:%S %z %Z} \
        -timezone :America/Detroit
} {03:00:00 -0400 EDT}
test clock-5.572 {time zone boundary case 2061-03-13 03:00:01} {detroit y2038} {
    clock format 2877922801 -format {%H:%M:%S %z %Z} \
        -timezone :America/Detroit
} {03:00:01 -0400 EDT}
test clock-5.573 {time zone boundary case 2061-11-06 01:59:59} {detroit y2038} {
    clock format 2898482399 -format {%H:%M:%S %z %Z} \
        -timezone :America/Detroit
} {01:59:59 -0400 EDT}
test clock-5.574 {time zone boundary case 2061-11-06 01:00:00} {detroit y2038} {
    clock format 2898482400 -format {%H:%M:%S %z %Z} \
        -timezone :America/Detroit
} {01:00:00 -0500 EST}
test clock-5.575 {time zone boundary case 2061-11-06 01:00:01} {detroit y2038} {
    clock format 2898482401 -format {%H:%M:%S %z %Z} \
        -timezone :America/Detroit
} {01:00:01 -0500 EST}
test clock-5.576 {time zone boundary case 2062-03-12 01:59:59} {detroit y2038} {
    clock format 2909372399 -format {%H:%M:%S %z %Z} \
        -timezone :America/Detroit
} {01:59:59 -0500 EST}
test clock-5.577 {time zone boundary case 2062-03-12 03:00:00} {detroit y2038} {
    clock format 2909372400 -format {%H:%M:%S %z %Z} \
        -timezone :America/Detroit
} {03:00:00 -0400 EDT}
test clock-5.578 {time zone boundary case 2062-03-12 03:00:01} {detroit y2038} {
    clock format 2909372401 -format {%H:%M:%S %z %Z} \
        -timezone :America/Detroit
} {03:00:01 -0400 EDT}
test clock-5.579 {time zone boundary case 2062-11-05 01:59:59} {detroit y2038} {
    clock format 2929931999 -format {%H:%M:%S %z %Z} \
        -timezone :America/Detroit
} {01:59:59 -0400 EDT}
test clock-5.580 {time zone boundary case 2062-11-05 01:00:00} {detroit y2038} {
    clock format 2929932000 -format {%H:%M:%S %z %Z} \
        -timezone :America/Detroit
} {01:00:00 -0500 EST}
test clock-5.581 {time zone boundary case 2062-11-05 01:00:01} {detroit y2038} {
    clock format 2929932001 -format {%H:%M:%S %z %Z} \
        -timezone :America/Detroit
} {01:00:01 -0500 EST}
test clock-5.582 {time zone boundary case 2063-03-11 01:59:59} {detroit y2038} {
    clock format 2940821999 -format {%H:%M:%S %z %Z} \
        -timezone :America/Detroit
} {01:59:59 -0500 EST}
test clock-5.583 {time zone boundary case 2063-03-11 03:00:00} {detroit y2038} {
    clock format 2940822000 -format {%H:%M:%S %z %Z} \
        -timezone :America/Detroit
} {03:00:00 -0400 EDT}
test clock-5.584 {time zone boundary case 2063-03-11 03:00:01} {detroit y2038} {
    clock format 2940822001 -format {%H:%M:%S %z %Z} \
        -timezone :America/Detroit
} {03:00:01 -0400 EDT}
test clock-5.585 {time zone boundary case 2063-11-04 01:59:59} {detroit y2038} {
    clock format 2961381599 -format {%H:%M:%S %z %Z} \
        -timezone :America/Detroit
} {01:59:59 -0400 EDT}
test clock-5.586 {time zone boundary case 2063-11-04 01:00:00} {detroit y2038} {
    clock format 2961381600 -format {%H:%M:%S %z %Z} \
        -timezone :America/Detroit
} {01:00:00 -0500 EST}
test clock-5.587 {time zone boundary case 2063-11-04 01:00:01} {detroit y2038} {
    clock format 2961381601 -format {%H:%M:%S %z %Z} \
        -timezone :America/Detroit
} {01:00:01 -0500 EST}
test clock-5.588 {time zone boundary case 2064-03-09 01:59:59} {detroit y2038} {
    clock format 2972271599 -format {%H:%M:%S %z %Z} \
        -timezone :America/Detroit
} {01:59:59 -0500 EST}
test clock-5.589 {time zone boundary case 2064-03-09 03:00:00} {detroit y2038} {
    clock format 2972271600 -format {%H:%M:%S %z %Z} \
        -timezone :America/Detroit
} {03:00:00 -0400 EDT}
test clock-5.590 {time zone boundary case 2064-03-09 03:00:01} {detroit y2038} {
    clock format 2972271601 -format {%H:%M:%S %z %Z} \
        -timezone :America/Detroit
} {03:00:01 -0400 EDT}
test clock-5.591 {time zone boundary case 2064-11-02 01:59:59} {detroit y2038} {
    clock format 2992831199 -format {%H:%M:%S %z %Z} \
        -timezone :America/Detroit
} {01:59:59 -0400 EDT}
test clock-5.592 {time zone boundary case 2064-11-02 01:00:00} {detroit y2038} {
    clock format 2992831200 -format {%H:%M:%S %z %Z} \
        -timezone :America/Detroit
} {01:00:00 -0500 EST}
test clock-5.593 {time zone boundary case 2064-11-02 01:00:01} {detroit y2038} {
    clock format 2992831201 -format {%H:%M:%S %z %Z} \
        -timezone :America/Detroit
} {01:00:01 -0500 EST}
test clock-5.594 {time zone boundary case 2065-03-08 01:59:59} {detroit y2038} {
    clock format 3003721199 -format {%H:%M:%S %z %Z} \
        -timezone :America/Detroit
} {01:59:59 -0500 EST}
test clock-5.595 {time zone boundary case 2065-03-08 03:00:00} {detroit y2038} {
    clock format 3003721200 -format {%H:%M:%S %z %Z} \
        -timezone :America/Detroit
} {03:00:00 -0400 EDT}
test clock-5.596 {time zone boundary case 2065-03-08 03:00:01} {detroit y2038} {
    clock format 3003721201 -format {%H:%M:%S %z %Z} \
        -timezone :America/Detroit
} {03:00:01 -0400 EDT}
test clock-5.597 {time zone boundary case 2065-11-01 01:59:59} {detroit y2038} {
    clock format 3024280799 -format {%H:%M:%S %z %Z} \
        -timezone :America/Detroit
} {01:59:59 -0400 EDT}
test clock-5.598 {time zone boundary case 2065-11-01 01:00:00} {detroit y2038} {
    clock format 3024280800 -format {%H:%M:%S %z %Z} \
        -timezone :America/Detroit
} {01:00:00 -0500 EST}
test clock-5.599 {time zone boundary case 2065-11-01 01:00:01} {detroit y2038} {
    clock format 3024280801 -format {%H:%M:%S %z %Z} \
        -timezone :America/Detroit
} {01:00:01 -0500 EST}
test clock-5.600 {time zone boundary case 2066-03-14 01:59:59} {detroit y2038} {
    clock format 3035775599 -format {%H:%M:%S %z %Z} \
        -timezone :America/Detroit
} {01:59:59 -0500 EST}
test clock-5.601 {time zone boundary case 2066-03-14 03:00:00} {detroit y2038} {
    clock format 3035775600 -format {%H:%M:%S %z %Z} \
        -timezone :America/Detroit
} {03:00:00 -0400 EDT}
test clock-5.602 {time zone boundary case 2066-03-14 03:00:01} {detroit y2038} {
    clock format 3035775601 -format {%H:%M:%S %z %Z} \
        -timezone :America/Detroit
} {03:00:01 -0400 EDT}
test clock-5.603 {time zone boundary case 2066-11-07 01:59:59} {detroit y2038} {
    clock format 3056335199 -format {%H:%M:%S %z %Z} \
        -timezone :America/Detroit
} {01:59:59 -0400 EDT}
test clock-5.604 {time zone boundary case 2066-11-07 01:00:00} {detroit y2038} {
    clock format 3056335200 -format {%H:%M:%S %z %Z} \
        -timezone :America/Detroit
} {01:00:00 -0500 EST}
test clock-5.605 {time zone boundary case 2066-11-07 01:00:01} {detroit y2038} {
    clock format 3056335201 -format {%H:%M:%S %z %Z} \
        -timezone :America/Detroit
} {01:00:01 -0500 EST}
test clock-5.606 {time zone boundary case 2067-03-13 01:59:59} {detroit y2038} {
    clock format 3067225199 -format {%H:%M:%S %z %Z} \
        -timezone :America/Detroit
} {01:59:59 -0500 EST}
test clock-5.607 {time zone boundary case 2067-03-13 03:00:00} {detroit y2038} {
    clock format 3067225200 -format {%H:%M:%S %z %Z} \
        -timezone :America/Detroit
} {03:00:00 -0400 EDT}
test clock-5.608 {time zone boundary case 2067-03-13 03:00:01} {detroit y2038} {
    clock format 3067225201 -format {%H:%M:%S %z %Z} \
        -timezone :America/Detroit
} {03:00:01 -0400 EDT}
test clock-5.609 {time zone boundary case 2067-11-06 01:59:59} {detroit y2038} {
    clock format 3087784799 -format {%H:%M:%S %z %Z} \
        -timezone :America/Detroit
} {01:59:59 -0400 EDT}
test clock-5.610 {time zone boundary case 2067-11-06 01:00:00} {detroit y2038} {
    clock format 3087784800 -format {%H:%M:%S %z %Z} \
        -timezone :America/Detroit
} {01:00:00 -0500 EST}
test clock-5.611 {time zone boundary case 2067-11-06 01:00:01} {detroit y2038} {
    clock format 3087784801 -format {%H:%M:%S %z %Z} \
        -timezone :America/Detroit
} {01:00:01 -0500 EST}
test clock-5.612 {time zone boundary case 2068-03-11 01:59:59} {detroit y2038} {
    clock format 3098674799 -format {%H:%M:%S %z %Z} \
        -timezone :America/Detroit
} {01:59:59 -0500 EST}
test clock-5.613 {time zone boundary case 2068-03-11 03:00:00} {detroit y2038} {
    clock format 3098674800 -format {%H:%M:%S %z %Z} \
        -timezone :America/Detroit
} {03:00:00 -0400 EDT}
test clock-5.614 {time zone boundary case 2068-03-11 03:00:01} {detroit y2038} {
    clock format 3098674801 -format {%H:%M:%S %z %Z} \
        -timezone :America/Detroit
} {03:00:01 -0400 EDT}
test clock-5.615 {time zone boundary case 2068-11-04 01:59:59} {detroit y2038} {
    clock format 3119234399 -format {%H:%M:%S %z %Z} \
        -timezone :America/Detroit
} {01:59:59 -0400 EDT}
test clock-5.616 {time zone boundary case 2068-11-04 01:00:00} {detroit y2038} {
    clock format 3119234400 -format {%H:%M:%S %z %Z} \
        -timezone :America/Detroit
} {01:00:00 -0500 EST}
test clock-5.617 {time zone boundary case 2068-11-04 01:00:01} {detroit y2038} {
    clock format 3119234401 -format {%H:%M:%S %z %Z} \
        -timezone :America/Detroit
} {01:00:01 -0500 EST}
test clock-5.618 {time zone boundary case 2069-03-10 01:59:59} {detroit y2038} {
    clock format 3130124399 -format {%H:%M:%S %z %Z} \
        -timezone :America/Detroit
} {01:59:59 -0500 EST}
test clock-5.619 {time zone boundary case 2069-03-10 03:00:00} {detroit y2038} {
    clock format 3130124400 -format {%H:%M:%S %z %Z} \
        -timezone :America/Detroit
} {03:00:00 -0400 EDT}
test clock-5.620 {time zone boundary case 2069-03-10 03:00:01} {detroit y2038} {
    clock format 3130124401 -format {%H:%M:%S %z %Z} \
        -timezone :America/Detroit
} {03:00:01 -0400 EDT}
test clock-5.621 {time zone boundary case 2069-11-03 01:59:59} {detroit y2038} {
    clock format 3150683999 -format {%H:%M:%S %z %Z} \
        -timezone :America/Detroit
} {01:59:59 -0400 EDT}
test clock-5.622 {time zone boundary case 2069-11-03 01:00:00} {detroit y2038} {
    clock format 3150684000 -format {%H:%M:%S %z %Z} \
        -timezone :America/Detroit
} {01:00:00 -0500 EST}
test clock-5.623 {time zone boundary case 2069-11-03 01:00:01} {detroit y2038} {
    clock format 3150684001 -format {%H:%M:%S %z %Z} \
        -timezone :America/Detroit
} {01:00:01 -0500 EST}
test clock-5.624 {time zone boundary case 2070-03-09 01:59:59} {detroit y2038} {
    clock format 3161573999 -format {%H:%M:%S %z %Z} \
        -timezone :America/Detroit
} {01:59:59 -0500 EST}
test clock-5.625 {time zone boundary case 2070-03-09 03:00:00} {detroit y2038} {
    clock format 3161574000 -format {%H:%M:%S %z %Z} \
        -timezone :America/Detroit
} {03:00:00 -0400 EDT}
test clock-5.626 {time zone boundary case 2070-03-09 03:00:01} {detroit y2038} {
    clock format 3161574001 -format {%H:%M:%S %z %Z} \
        -timezone :America/Detroit
} {03:00:01 -0400 EDT}
test clock-5.627 {time zone boundary case 2070-11-02 01:59:59} {detroit y2038} {
    clock format 3182133599 -format {%H:%M:%S %z %Z} \
        -timezone :America/Detroit
} {01:59:59 -0400 EDT}
test clock-5.628 {time zone boundary case 2070-11-02 01:00:00} {detroit y2038} {
    clock format 3182133600 -format {%H:%M:%S %z %Z} \
        -timezone :America/Detroit
} {01:00:00 -0500 EST}
test clock-5.629 {time zone boundary case 2070-11-02 01:00:01} {detroit y2038} {
    clock format 3182133601 -format {%H:%M:%S %z %Z} \
        -timezone :America/Detroit
} {01:00:01 -0500 EST}
test clock-5.630 {time zone boundary case 2071-03-08 01:59:59} {detroit y2038} {
    clock format 3193023599 -format {%H:%M:%S %z %Z} \
        -timezone :America/Detroit
} {01:59:59 -0500 EST}
test clock-5.631 {time zone boundary case 2071-03-08 03:00:00} {detroit y2038} {
    clock format 3193023600 -format {%H:%M:%S %z %Z} \
        -timezone :America/Detroit
} {03:00:00 -0400 EDT}
test clock-5.632 {time zone boundary case 2071-03-08 03:00:01} {detroit y2038} {
    clock format 3193023601 -format {%H:%M:%S %z %Z} \
        -timezone :America/Detroit
} {03:00:01 -0400 EDT}
test clock-5.633 {time zone boundary case 2071-11-01 01:59:59} {detroit y2038} {
    clock format 3213583199 -format {%H:%M:%S %z %Z} \
        -timezone :America/Detroit
} {01:59:59 -0400 EDT}
test clock-5.634 {time zone boundary case 2071-11-01 01:00:00} {detroit y2038} {
    clock format 3213583200 -format {%H:%M:%S %z %Z} \
        -timezone :America/Detroit
} {01:00:00 -0500 EST}
test clock-5.635 {time zone boundary case 2071-11-01 01:00:01} {detroit y2038} {
    clock format 3213583201 -format {%H:%M:%S %z %Z} \
        -timezone :America/Detroit
} {01:00:01 -0500 EST}
test clock-5.636 {time zone boundary case 2072-03-13 01:59:59} {detroit y2038} {
    clock format 3225077999 -format {%H:%M:%S %z %Z} \
        -timezone :America/Detroit
} {01:59:59 -0500 EST}
test clock-5.637 {time zone boundary case 2072-03-13 03:00:00} {detroit y2038} {
    clock format 3225078000 -format {%H:%M:%S %z %Z} \
        -timezone :America/Detroit
} {03:00:00 -0400 EDT}
test clock-5.638 {time zone boundary case 2072-03-13 03:00:01} {detroit y2038} {
    clock format 3225078001 -format {%H:%M:%S %z %Z} \
        -timezone :America/Detroit
} {03:00:01 -0400 EDT}
test clock-5.639 {time zone boundary case 2072-11-06 01:59:59} {detroit y2038} {
    clock format 3245637599 -format {%H:%M:%S %z %Z} \
        -timezone :America/Detroit
} {01:59:59 -0400 EDT}
test clock-5.640 {time zone boundary case 2072-11-06 01:00:00} {detroit y2038} {
    clock format 3245637600 -format {%H:%M:%S %z %Z} \
        -timezone :America/Detroit
} {01:00:00 -0500 EST}
test clock-5.641 {time zone boundary case 2072-11-06 01:00:01} {detroit y2038} {
    clock format 3245637601 -format {%H:%M:%S %z %Z} \
        -timezone :America/Detroit
} {01:00:01 -0500 EST}
test clock-5.642 {time zone boundary case 2073-03-12 01:59:59} {detroit y2038} {
    clock format 3256527599 -format {%H:%M:%S %z %Z} \
        -timezone :America/Detroit
} {01:59:59 -0500 EST}
test clock-5.643 {time zone boundary case 2073-03-12 03:00:00} {detroit y2038} {
    clock format 3256527600 -format {%H:%M:%S %z %Z} \
        -timezone :America/Detroit
} {03:00:00 -0400 EDT}
test clock-5.644 {time zone boundary case 2073-03-12 03:00:01} {detroit y2038} {
    clock format 3256527601 -format {%H:%M:%S %z %Z} \
        -timezone :America/Detroit
} {03:00:01 -0400 EDT}
test clock-5.645 {time zone boundary case 2073-11-05 01:59:59} {detroit y2038} {
    clock format 3277087199 -format {%H:%M:%S %z %Z} \
        -timezone :America/Detroit
} {01:59:59 -0400 EDT}
test clock-5.646 {time zone boundary case 2073-11-05 01:00:00} {detroit y2038} {
    clock format 3277087200 -format {%H:%M:%S %z %Z} \
        -timezone :America/Detroit
} {01:00:00 -0500 EST}
test clock-5.647 {time zone boundary case 2073-11-05 01:00:01} {detroit y2038} {
    clock format 3277087201 -format {%H:%M:%S %z %Z} \
        -timezone :America/Detroit
} {01:00:01 -0500 EST}
test clock-5.648 {time zone boundary case 2074-03-11 01:59:59} {detroit y2038} {
    clock format 3287977199 -format {%H:%M:%S %z %Z} \
        -timezone :America/Detroit
} {01:59:59 -0500 EST}
test clock-5.649 {time zone boundary case 2074-03-11 03:00:00} {detroit y2038} {
    clock format 3287977200 -format {%H:%M:%S %z %Z} \
        -timezone :America/Detroit
} {03:00:00 -0400 EDT}
test clock-5.650 {time zone boundary case 2074-03-11 03:00:01} {detroit y2038} {
    clock format 3287977201 -format {%H:%M:%S %z %Z} \
        -timezone :America/Detroit
} {03:00:01 -0400 EDT}
test clock-5.651 {time zone boundary case 2074-11-04 01:59:59} {detroit y2038} {
    clock format 3308536799 -format {%H:%M:%S %z %Z} \
        -timezone :America/Detroit
} {01:59:59 -0400 EDT}
test clock-5.652 {time zone boundary case 2074-11-04 01:00:00} {detroit y2038} {
    clock format 3308536800 -format {%H:%M:%S %z %Z} \
        -timezone :America/Detroit
} {01:00:00 -0500 EST}
test clock-5.653 {time zone boundary case 2074-11-04 01:00:01} {detroit y2038} {
    clock format 3308536801 -format {%H:%M:%S %z %Z} \
        -timezone :America/Detroit
} {01:00:01 -0500 EST}
test clock-5.654 {time zone boundary case 2075-03-10 01:59:59} {detroit y2038} {
    clock format 3319426799 -format {%H:%M:%S %z %Z} \
        -timezone :America/Detroit
} {01:59:59 -0500 EST}
test clock-5.655 {time zone boundary case 2075-03-10 03:00:00} {detroit y2038} {
    clock format 3319426800 -format {%H:%M:%S %z %Z} \
        -timezone :America/Detroit
} {03:00:00 -0400 EDT}
test clock-5.656 {time zone boundary case 2075-03-10 03:00:01} {detroit y2038} {
    clock format 3319426801 -format {%H:%M:%S %z %Z} \
        -timezone :America/Detroit
} {03:00:01 -0400 EDT}
test clock-5.657 {time zone boundary case 2075-11-03 01:59:59} {detroit y2038} {
    clock format 3339986399 -format {%H:%M:%S %z %Z} \
        -timezone :America/Detroit
} {01:59:59 -0400 EDT}
test clock-5.658 {time zone boundary case 2075-11-03 01:00:00} {detroit y2038} {
    clock format 3339986400 -format {%H:%M:%S %z %Z} \
        -timezone :America/Detroit
} {01:00:00 -0500 EST}
test clock-5.659 {time zone boundary case 2075-11-03 01:00:01} {detroit y2038} {
    clock format 3339986401 -format {%H:%M:%S %z %Z} \
        -timezone :America/Detroit
} {01:00:01 -0500 EST}
test clock-5.660 {time zone boundary case 2076-03-08 01:59:59} {detroit y2038} {
    clock format 3350876399 -format {%H:%M:%S %z %Z} \
        -timezone :America/Detroit
} {01:59:59 -0500 EST}
test clock-5.661 {time zone boundary case 2076-03-08 03:00:00} {detroit y2038} {
    clock format 3350876400 -format {%H:%M:%S %z %Z} \
        -timezone :America/Detroit
} {03:00:00 -0400 EDT}
test clock-5.662 {time zone boundary case 2076-03-08 03:00:01} {detroit y2038} {
    clock format 3350876401 -format {%H:%M:%S %z %Z} \
        -timezone :America/Detroit
} {03:00:01 -0400 EDT}
test clock-5.663 {time zone boundary case 2076-11-01 01:59:59} {detroit y2038} {
    clock format 3371435999 -format {%H:%M:%S %z %Z} \
        -timezone :America/Detroit
} {01:59:59 -0400 EDT}
test clock-5.664 {time zone boundary case 2076-11-01 01:00:00} {detroit y2038} {
    clock format 3371436000 -format {%H:%M:%S %z %Z} \
        -timezone :America/Detroit
} {01:00:00 -0500 EST}
test clock-5.665 {time zone boundary case 2076-11-01 01:00:01} {detroit y2038} {
    clock format 3371436001 -format {%H:%M:%S %z %Z} \
        -timezone :America/Detroit
} {01:00:01 -0500 EST}
test clock-5.666 {time zone boundary case 2077-03-14 01:59:59} {detroit y2038} {
    clock format 3382930799 -format {%H:%M:%S %z %Z} \
        -timezone :America/Detroit
} {01:59:59 -0500 EST}
test clock-5.667 {time zone boundary case 2077-03-14 03:00:00} {detroit y2038} {
    clock format 3382930800 -format {%H:%M:%S %z %Z} \
        -timezone :America/Detroit
} {03:00:00 -0400 EDT}
test clock-5.668 {time zone boundary case 2077-03-14 03:00:01} {detroit y2038} {
    clock format 3382930801 -format {%H:%M:%S %z %Z} \
        -timezone :America/Detroit
} {03:00:01 -0400 EDT}
test clock-5.669 {time zone boundary case 2077-11-07 01:59:59} {detroit y2038} {
    clock format 3403490399 -format {%H:%M:%S %z %Z} \
        -timezone :America/Detroit
} {01:59:59 -0400 EDT}
test clock-5.670 {time zone boundary case 2077-11-07 01:00:00} {detroit y2038} {
    clock format 3403490400 -format {%H:%M:%S %z %Z} \
        -timezone :America/Detroit
} {01:00:00 -0500 EST}
test clock-5.671 {time zone boundary case 2077-11-07 01:00:01} {detroit y2038} {
    clock format 3403490401 -format {%H:%M:%S %z %Z} \
        -timezone :America/Detroit
} {01:00:01 -0500 EST}
test clock-5.672 {time zone boundary case 2078-03-13 01:59:59} {detroit y2038} {
    clock format 3414380399 -format {%H:%M:%S %z %Z} \
        -timezone :America/Detroit
} {01:59:59 -0500 EST}
test clock-5.673 {time zone boundary case 2078-03-13 03:00:00} {detroit y2038} {
    clock format 3414380400 -format {%H:%M:%S %z %Z} \
        -timezone :America/Detroit
} {03:00:00 -0400 EDT}
test clock-5.674 {time zone boundary case 2078-03-13 03:00:01} {detroit y2038} {
    clock format 3414380401 -format {%H:%M:%S %z %Z} \
        -timezone :America/Detroit
} {03:00:01 -0400 EDT}
test clock-5.675 {time zone boundary case 2078-11-06 01:59:59} {detroit y2038} {
    clock format 3434939999 -format {%H:%M:%S %z %Z} \
        -timezone :America/Detroit
} {01:59:59 -0400 EDT}
test clock-5.676 {time zone boundary case 2078-11-06 01:00:00} {detroit y2038} {
    clock format 3434940000 -format {%H:%M:%S %z %Z} \
        -timezone :America/Detroit
} {01:00:00 -0500 EST}
test clock-5.677 {time zone boundary case 2078-11-06 01:00:01} {detroit y2038} {
    clock format 3434940001 -format {%H:%M:%S %z %Z} \
        -timezone :America/Detroit
} {01:00:01 -0500 EST}
test clock-5.678 {time zone boundary case 2079-03-12 01:59:59} {detroit y2038} {
    clock format 3445829999 -format {%H:%M:%S %z %Z} \
        -timezone :America/Detroit
} {01:59:59 -0500 EST}
test clock-5.679 {time zone boundary case 2079-03-12 03:00:00} {detroit y2038} {
    clock format 3445830000 -format {%H:%M:%S %z %Z} \
        -timezone :America/Detroit
} {03:00:00 -0400 EDT}
test clock-5.680 {time zone boundary case 2079-03-12 03:00:01} {detroit y2038} {
    clock format 3445830001 -format {%H:%M:%S %z %Z} \
        -timezone :America/Detroit
} {03:00:01 -0400 EDT}
test clock-5.681 {time zone boundary case 2079-11-05 01:59:59} {detroit y2038} {
    clock format 3466389599 -format {%H:%M:%S %z %Z} \
        -timezone :America/Detroit
} {01:59:59 -0400 EDT}
test clock-5.682 {time zone boundary case 2079-11-05 01:00:00} {detroit y2038} {
    clock format 3466389600 -format {%H:%M:%S %z %Z} \
        -timezone :America/Detroit
} {01:00:00 -0500 EST}
test clock-5.683 {time zone boundary case 2079-11-05 01:00:01} {detroit y2038} {
    clock format 3466389601 -format {%H:%M:%S %z %Z} \
        -timezone :America/Detroit
} {01:00:01 -0500 EST}
test clock-5.684 {time zone boundary case 2080-03-10 01:59:59} {detroit y2038} {
    clock format 3477279599 -format {%H:%M:%S %z %Z} \
        -timezone :America/Detroit
} {01:59:59 -0500 EST}
test clock-5.685 {time zone boundary case 2080-03-10 03:00:00} {detroit y2038} {
    clock format 3477279600 -format {%H:%M:%S %z %Z} \
        -timezone :America/Detroit
} {03:00:00 -0400 EDT}
test clock-5.686 {time zone boundary case 2080-03-10 03:00:01} {detroit y2038} {
    clock format 3477279601 -format {%H:%M:%S %z %Z} \
        -timezone :America/Detroit
} {03:00:01 -0400 EDT}
test clock-5.687 {time zone boundary case 2080-11-03 01:59:59} {detroit y2038} {
    clock format 3497839199 -format {%H:%M:%S %z %Z} \
        -timezone :America/Detroit
} {01:59:59 -0400 EDT}
test clock-5.688 {time zone boundary case 2080-11-03 01:00:00} {detroit y2038} {
    clock format 3497839200 -format {%H:%M:%S %z %Z} \
        -timezone :America/Detroit
} {01:00:00 -0500 EST}
test clock-5.689 {time zone boundary case 2080-11-03 01:00:01} {detroit y2038} {
    clock format 3497839201 -format {%H:%M:%S %z %Z} \
        -timezone :America/Detroit
} {01:00:01 -0500 EST}
test clock-5.690 {time zone boundary case 2081-03-09 01:59:59} {detroit y2038} {
    clock format 3508729199 -format {%H:%M:%S %z %Z} \
        -timezone :America/Detroit
} {01:59:59 -0500 EST}
test clock-5.691 {time zone boundary case 2081-03-09 03:00:00} {detroit y2038} {
    clock format 3508729200 -format {%H:%M:%S %z %Z} \
        -timezone :America/Detroit
} {03:00:00 -0400 EDT}
test clock-5.692 {time zone boundary case 2081-03-09 03:00:01} {detroit y2038} {
    clock format 3508729201 -format {%H:%M:%S %z %Z} \
        -timezone :America/Detroit
} {03:00:01 -0400 EDT}
test clock-5.693 {time zone boundary case 2081-11-02 01:59:59} {detroit y2038} {
    clock format 3529288799 -format {%H:%M:%S %z %Z} \
        -timezone :America/Detroit
} {01:59:59 -0400 EDT}
test clock-5.694 {time zone boundary case 2081-11-02 01:00:00} {detroit y2038} {
    clock format 3529288800 -format {%H:%M:%S %z %Z} \
        -timezone :America/Detroit
} {01:00:00 -0500 EST}
test clock-5.695 {time zone boundary case 2081-11-02 01:00:01} {detroit y2038} {
    clock format 3529288801 -format {%H:%M:%S %z %Z} \
        -timezone :America/Detroit
} {01:00:01 -0500 EST}
test clock-5.696 {time zone boundary case 2082-03-08 01:59:59} {detroit y2038} {
    clock format 3540178799 -format {%H:%M:%S %z %Z} \
        -timezone :America/Detroit
} {01:59:59 -0500 EST}
test clock-5.697 {time zone boundary case 2082-03-08 03:00:00} {detroit y2038} {
    clock format 3540178800 -format {%H:%M:%S %z %Z} \
        -timezone :America/Detroit
} {03:00:00 -0400 EDT}
test clock-5.698 {time zone boundary case 2082-03-08 03:00:01} {detroit y2038} {
    clock format 3540178801 -format {%H:%M:%S %z %Z} \
        -timezone :America/Detroit
} {03:00:01 -0400 EDT}
test clock-5.699 {time zone boundary case 2082-11-01 01:59:59} {detroit y2038} {
    clock format 3560738399 -format {%H:%M:%S %z %Z} \
        -timezone :America/Detroit
} {01:59:59 -0400 EDT}
test clock-5.700 {time zone boundary case 2082-11-01 01:00:00} {detroit y2038} {
    clock format 3560738400 -format {%H:%M:%S %z %Z} \
        -timezone :America/Detroit
} {01:00:00 -0500 EST}
test clock-5.701 {time zone boundary case 2082-11-01 01:00:01} {detroit y2038} {
    clock format 3560738401 -format {%H:%M:%S %z %Z} \
        -timezone :America/Detroit
} {01:00:01 -0500 EST}
test clock-5.702 {time zone boundary case 2083-03-14 01:59:59} {detroit y2038} {
    clock format 3572233199 -format {%H:%M:%S %z %Z} \
        -timezone :America/Detroit
} {01:59:59 -0500 EST}
test clock-5.703 {time zone boundary case 2083-03-14 03:00:00} {detroit y2038} {
    clock format 3572233200 -format {%H:%M:%S %z %Z} \
        -timezone :America/Detroit
} {03:00:00 -0400 EDT}
test clock-5.704 {time zone boundary case 2083-03-14 03:00:01} {detroit y2038} {
    clock format 3572233201 -format {%H:%M:%S %z %Z} \
        -timezone :America/Detroit
} {03:00:01 -0400 EDT}
test clock-5.705 {time zone boundary case 2083-11-07 01:59:59} {detroit y2038} {
    clock format 3592792799 -format {%H:%M:%S %z %Z} \
        -timezone :America/Detroit
} {01:59:59 -0400 EDT}
test clock-5.706 {time zone boundary case 2083-11-07 01:00:00} {detroit y2038} {
    clock format 3592792800 -format {%H:%M:%S %z %Z} \
        -timezone :America/Detroit
} {01:00:00 -0500 EST}
test clock-5.707 {time zone boundary case 2083-11-07 01:00:01} {detroit y2038} {
    clock format 3592792801 -format {%H:%M:%S %z %Z} \
        -timezone :America/Detroit
} {01:00:01 -0500 EST}
test clock-5.708 {time zone boundary case 2084-03-12 01:59:59} {detroit y2038} {
    clock format 3603682799 -format {%H:%M:%S %z %Z} \
        -timezone :America/Detroit
} {01:59:59 -0500 EST}
test clock-5.709 {time zone boundary case 2084-03-12 03:00:00} {detroit y2038} {
    clock format 3603682800 -format {%H:%M:%S %z %Z} \
        -timezone :America/Detroit
} {03:00:00 -0400 EDT}
test clock-5.710 {time zone boundary case 2084-03-12 03:00:01} {detroit y2038} {
    clock format 3603682801 -format {%H:%M:%S %z %Z} \
        -timezone :America/Detroit
} {03:00:01 -0400 EDT}
test clock-5.711 {time zone boundary case 2084-11-05 01:59:59} {detroit y2038} {
    clock format 3624242399 -format {%H:%M:%S %z %Z} \
        -timezone :America/Detroit
} {01:59:59 -0400 EDT}
test clock-5.712 {time zone boundary case 2084-11-05 01:00:00} {detroit y2038} {
    clock format 3624242400 -format {%H:%M:%S %z %Z} \
        -timezone :America/Detroit
} {01:00:00 -0500 EST}
test clock-5.713 {time zone boundary case 2084-11-05 01:00:01} {detroit y2038} {
    clock format 3624242401 -format {%H:%M:%S %z %Z} \
        -timezone :America/Detroit
} {01:00:01 -0500 EST}
test clock-5.714 {time zone boundary case 2085-03-11 01:59:59} {detroit y2038} {
    clock format 3635132399 -format {%H:%M:%S %z %Z} \
        -timezone :America/Detroit
} {01:59:59 -0500 EST}
test clock-5.715 {time zone boundary case 2085-03-11 03:00:00} {detroit y2038} {
    clock format 3635132400 -format {%H:%M:%S %z %Z} \
        -timezone :America/Detroit
} {03:00:00 -0400 EDT}
test clock-5.716 {time zone boundary case 2085-03-11 03:00:01} {detroit y2038} {
    clock format 3635132401 -format {%H:%M:%S %z %Z} \
        -timezone :America/Detroit
} {03:00:01 -0400 EDT}
test clock-5.717 {time zone boundary case 2085-11-04 01:59:59} {detroit y2038} {
    clock format 3655691999 -format {%H:%M:%S %z %Z} \
        -timezone :America/Detroit
} {01:59:59 -0400 EDT}
test clock-5.718 {time zone boundary case 2085-11-04 01:00:00} {detroit y2038} {
    clock format 3655692000 -format {%H:%M:%S %z %Z} \
        -timezone :America/Detroit
} {01:00:00 -0500 EST}
test clock-5.719 {time zone boundary case 2085-11-04 01:00:01} {detroit y2038} {
    clock format 3655692001 -format {%H:%M:%S %z %Z} \
        -timezone :America/Detroit
} {01:00:01 -0500 EST}
test clock-5.720 {time zone boundary case 2086-03-10 01:59:59} {detroit y2038} {
    clock format 3666581999 -format {%H:%M:%S %z %Z} \
        -timezone :America/Detroit
} {01:59:59 -0500 EST}
test clock-5.721 {time zone boundary case 2086-03-10 03:00:00} {detroit y2038} {
    clock format 3666582000 -format {%H:%M:%S %z %Z} \
        -timezone :America/Detroit
} {03:00:00 -0400 EDT}
test clock-5.722 {time zone boundary case 2086-03-10 03:00:01} {detroit y2038} {
    clock format 3666582001 -format {%H:%M:%S %z %Z} \
        -timezone :America/Detroit
} {03:00:01 -0400 EDT}
test clock-5.723 {time zone boundary case 2086-11-03 01:59:59} {detroit y2038} {
    clock format 3687141599 -format {%H:%M:%S %z %Z} \
        -timezone :America/Detroit
} {01:59:59 -0400 EDT}
test clock-5.724 {time zone boundary case 2086-11-03 01:00:00} {detroit y2038} {
    clock format 3687141600 -format {%H:%M:%S %z %Z} \
        -timezone :America/Detroit
} {01:00:00 -0500 EST}
test clock-5.725 {time zone boundary case 2086-11-03 01:00:01} {detroit y2038} {
    clock format 3687141601 -format {%H:%M:%S %z %Z} \
        -timezone :America/Detroit
} {01:00:01 -0500 EST}
test clock-5.726 {time zone boundary case 2087-03-09 01:59:59} {detroit y2038} {
    clock format 3698031599 -format {%H:%M:%S %z %Z} \
        -timezone :America/Detroit
} {01:59:59 -0500 EST}
test clock-5.727 {time zone boundary case 2087-03-09 03:00:00} {detroit y2038} {
    clock format 3698031600 -format {%H:%M:%S %z %Z} \
        -timezone :America/Detroit
} {03:00:00 -0400 EDT}
test clock-5.728 {time zone boundary case 2087-03-09 03:00:01} {detroit y2038} {
    clock format 3698031601 -format {%H:%M:%S %z %Z} \
        -timezone :America/Detroit
} {03:00:01 -0400 EDT}
test clock-5.729 {time zone boundary case 2087-11-02 01:59:59} {detroit y2038} {
    clock format 3718591199 -format {%H:%M:%S %z %Z} \
        -timezone :America/Detroit
} {01:59:59 -0400 EDT}
test clock-5.730 {time zone boundary case 2087-11-02 01:00:00} {detroit y2038} {
    clock format 3718591200 -format {%H:%M:%S %z %Z} \
        -timezone :America/Detroit
} {01:00:00 -0500 EST}
test clock-5.731 {time zone boundary case 2087-11-02 01:00:01} {detroit y2038} {
    clock format 3718591201 -format {%H:%M:%S %z %Z} \
        -timezone :America/Detroit
} {01:00:01 -0500 EST}
test clock-5.732 {time zone boundary case 2088-03-14 01:59:59} {detroit y2038} {
    clock format 3730085999 -format {%H:%M:%S %z %Z} \
        -timezone :America/Detroit
} {01:59:59 -0500 EST}
test clock-5.733 {time zone boundary case 2088-03-14 03:00:00} {detroit y2038} {
    clock format 3730086000 -format {%H:%M:%S %z %Z} \
        -timezone :America/Detroit
} {03:00:00 -0400 EDT}
test clock-5.734 {time zone boundary case 2088-03-14 03:00:01} {detroit y2038} {
    clock format 3730086001 -format {%H:%M:%S %z %Z} \
        -timezone :America/Detroit
} {03:00:01 -0400 EDT}
test clock-5.735 {time zone boundary case 2088-11-07 01:59:59} {detroit y2038} {
    clock format 3750645599 -format {%H:%M:%S %z %Z} \
        -timezone :America/Detroit
} {01:59:59 -0400 EDT}
test clock-5.736 {time zone boundary case 2088-11-07 01:00:00} {detroit y2038} {
    clock format 3750645600 -format {%H:%M:%S %z %Z} \
        -timezone :America/Detroit
} {01:00:00 -0500 EST}
test clock-5.737 {time zone boundary case 2088-11-07 01:00:01} {detroit y2038} {
    clock format 3750645601 -format {%H:%M:%S %z %Z} \
        -timezone :America/Detroit
} {01:00:01 -0500 EST}
test clock-5.738 {time zone boundary case 2089-03-13 01:59:59} {detroit y2038} {
    clock format 3761535599 -format {%H:%M:%S %z %Z} \
        -timezone :America/Detroit
} {01:59:59 -0500 EST}
test clock-5.739 {time zone boundary case 2089-03-13 03:00:00} {detroit y2038} {
    clock format 3761535600 -format {%H:%M:%S %z %Z} \
        -timezone :America/Detroit
} {03:00:00 -0400 EDT}
test clock-5.740 {time zone boundary case 2089-03-13 03:00:01} {detroit y2038} {
    clock format 3761535601 -format {%H:%M:%S %z %Z} \
        -timezone :America/Detroit
} {03:00:01 -0400 EDT}
test clock-5.741 {time zone boundary case 2089-11-06 01:59:59} {detroit y2038} {
    clock format 3782095199 -format {%H:%M:%S %z %Z} \
        -timezone :America/Detroit
} {01:59:59 -0400 EDT}
test clock-5.742 {time zone boundary case 2089-11-06 01:00:00} {detroit y2038} {
    clock format 3782095200 -format {%H:%M:%S %z %Z} \
        -timezone :America/Detroit
} {01:00:00 -0500 EST}
test clock-5.743 {time zone boundary case 2089-11-06 01:00:01} {detroit y2038} {
    clock format 3782095201 -format {%H:%M:%S %z %Z} \
        -timezone :America/Detroit
} {01:00:01 -0500 EST}
test clock-5.744 {time zone boundary case 2090-03-12 01:59:59} {detroit y2038} {
    clock format 3792985199 -format {%H:%M:%S %z %Z} \
        -timezone :America/Detroit
} {01:59:59 -0500 EST}
test clock-5.745 {time zone boundary case 2090-03-12 03:00:00} {detroit y2038} {
    clock format 3792985200 -format {%H:%M:%S %z %Z} \
        -timezone :America/Detroit
} {03:00:00 -0400 EDT}
test clock-5.746 {time zone boundary case 2090-03-12 03:00:01} {detroit y2038} {
    clock format 3792985201 -format {%H:%M:%S %z %Z} \
        -timezone :America/Detroit
} {03:00:01 -0400 EDT}
test clock-5.747 {time zone boundary case 2090-11-05 01:59:59} {detroit y2038} {
    clock format 3813544799 -format {%H:%M:%S %z %Z} \
        -timezone :America/Detroit
} {01:59:59 -0400 EDT}
test clock-5.748 {time zone boundary case 2090-11-05 01:00:00} {detroit y2038} {
    clock format 3813544800 -format {%H:%M:%S %z %Z} \
        -timezone :America/Detroit
} {01:00:00 -0500 EST}
test clock-5.749 {time zone boundary case 2090-11-05 01:00:01} {detroit y2038} {
    clock format 3813544801 -format {%H:%M:%S %z %Z} \
        -timezone :America/Detroit
} {01:00:01 -0500 EST}
test clock-5.750 {time zone boundary case 2091-03-11 01:59:59} {detroit y2038} {
    clock format 3824434799 -format {%H:%M:%S %z %Z} \
        -timezone :America/Detroit
} {01:59:59 -0500 EST}
test clock-5.751 {time zone boundary case 2091-03-11 03:00:00} {detroit y2038} {
    clock format 3824434800 -format {%H:%M:%S %z %Z} \
        -timezone :America/Detroit
} {03:00:00 -0400 EDT}
test clock-5.752 {time zone boundary case 2091-03-11 03:00:01} {detroit y2038} {
    clock format 3824434801 -format {%H:%M:%S %z %Z} \
        -timezone :America/Detroit
} {03:00:01 -0400 EDT}
test clock-5.753 {time zone boundary case 2091-11-04 01:59:59} {detroit y2038} {
    clock format 3844994399 -format {%H:%M:%S %z %Z} \
        -timezone :America/Detroit
} {01:59:59 -0400 EDT}
test clock-5.754 {time zone boundary case 2091-11-04 01:00:00} {detroit y2038} {
    clock format 3844994400 -format {%H:%M:%S %z %Z} \
        -timezone :America/Detroit
} {01:00:00 -0500 EST}
test clock-5.755 {time zone boundary case 2091-11-04 01:00:01} {detroit y2038} {
    clock format 3844994401 -format {%H:%M:%S %z %Z} \
        -timezone :America/Detroit
} {01:00:01 -0500 EST}
test clock-5.756 {time zone boundary case 2092-03-09 01:59:59} {detroit y2038} {
    clock format 3855884399 -format {%H:%M:%S %z %Z} \
        -timezone :America/Detroit
} {01:59:59 -0500 EST}
test clock-5.757 {time zone boundary case 2092-03-09 03:00:00} {detroit y2038} {
    clock format 3855884400 -format {%H:%M:%S %z %Z} \
        -timezone :America/Detroit
} {03:00:00 -0400 EDT}
test clock-5.758 {time zone boundary case 2092-03-09 03:00:01} {detroit y2038} {
    clock format 3855884401 -format {%H:%M:%S %z %Z} \
        -timezone :America/Detroit
} {03:00:01 -0400 EDT}
test clock-5.759 {time zone boundary case 2092-11-02 01:59:59} {detroit y2038} {
    clock format 3876443999 -format {%H:%M:%S %z %Z} \
        -timezone :America/Detroit
} {01:59:59 -0400 EDT}
test clock-5.760 {time zone boundary case 2092-11-02 01:00:00} {detroit y2038} {
    clock format 3876444000 -format {%H:%M:%S %z %Z} \
        -timezone :America/Detroit
} {01:00:00 -0500 EST}
test clock-5.761 {time zone boundary case 2092-11-02 01:00:01} {detroit y2038} {
    clock format 3876444001 -format {%H:%M:%S %z %Z} \
        -timezone :America/Detroit
} {01:00:01 -0500 EST}
test clock-5.762 {time zone boundary case 2093-03-08 01:59:59} {detroit y2038} {
    clock format 3887333999 -format {%H:%M:%S %z %Z} \
        -timezone :America/Detroit
} {01:59:59 -0500 EST}
test clock-5.763 {time zone boundary case 2093-03-08 03:00:00} {detroit y2038} {
    clock format 3887334000 -format {%H:%M:%S %z %Z} \
        -timezone :America/Detroit
} {03:00:00 -0400 EDT}
test clock-5.764 {time zone boundary case 2093-03-08 03:00:01} {detroit y2038} {
    clock format 3887334001 -format {%H:%M:%S %z %Z} \
        -timezone :America/Detroit
} {03:00:01 -0400 EDT}
test clock-5.765 {time zone boundary case 2093-11-01 01:59:59} {detroit y2038} {
    clock format 3907893599 -format {%H:%M:%S %z %Z} \
        -timezone :America/Detroit
} {01:59:59 -0400 EDT}
test clock-5.766 {time zone boundary case 2093-11-01 01:00:00} {detroit y2038} {
    clock format 3907893600 -format {%H:%M:%S %z %Z} \
        -timezone :America/Detroit
} {01:00:00 -0500 EST}
test clock-5.767 {time zone boundary case 2093-11-01 01:00:01} {detroit y2038} {
    clock format 3907893601 -format {%H:%M:%S %z %Z} \
        -timezone :America/Detroit
} {01:00:01 -0500 EST}
test clock-5.768 {time zone boundary case 2094-03-14 01:59:59} {detroit y2038} {
    clock format 3919388399 -format {%H:%M:%S %z %Z} \
        -timezone :America/Detroit
} {01:59:59 -0500 EST}
test clock-5.769 {time zone boundary case 2094-03-14 03:00:00} {detroit y2038} {
    clock format 3919388400 -format {%H:%M:%S %z %Z} \
        -timezone :America/Detroit
} {03:00:00 -0400 EDT}
test clock-5.770 {time zone boundary case 2094-03-14 03:00:01} {detroit y2038} {
    clock format 3919388401 -format {%H:%M:%S %z %Z} \
        -timezone :America/Detroit
} {03:00:01 -0400 EDT}
test clock-5.771 {time zone boundary case 2094-11-07 01:59:59} {detroit y2038} {
    clock format 3939947999 -format {%H:%M:%S %z %Z} \
        -timezone :America/Detroit
} {01:59:59 -0400 EDT}
test clock-5.772 {time zone boundary case 2094-11-07 01:00:00} {detroit y2038} {
    clock format 3939948000 -format {%H:%M:%S %z %Z} \
        -timezone :America/Detroit
} {01:00:00 -0500 EST}
test clock-5.773 {time zone boundary case 2094-11-07 01:00:01} {detroit y2038} {
    clock format 3939948001 -format {%H:%M:%S %z %Z} \
        -timezone :America/Detroit
} {01:00:01 -0500 EST}
test clock-5.774 {time zone boundary case 2095-03-13 01:59:59} {detroit y2038} {
    clock format 3950837999 -format {%H:%M:%S %z %Z} \
        -timezone :America/Detroit
} {01:59:59 -0500 EST}
test clock-5.775 {time zone boundary case 2095-03-13 03:00:00} {detroit y2038} {
    clock format 3950838000 -format {%H:%M:%S %z %Z} \
        -timezone :America/Detroit
} {03:00:00 -0400 EDT}
test clock-5.776 {time zone boundary case 2095-03-13 03:00:01} {detroit y2038} {
    clock format 3950838001 -format {%H:%M:%S %z %Z} \
        -timezone :America/Detroit
} {03:00:01 -0400 EDT}
test clock-5.777 {time zone boundary case 2095-11-06 01:59:59} {detroit y2038} {
    clock format 3971397599 -format {%H:%M:%S %z %Z} \
        -timezone :America/Detroit
} {01:59:59 -0400 EDT}
test clock-5.778 {time zone boundary case 2095-11-06 01:00:00} {detroit y2038} {
    clock format 3971397600 -format {%H:%M:%S %z %Z} \
        -timezone :America/Detroit
} {01:00:00 -0500 EST}
test clock-5.779 {time zone boundary case 2095-11-06 01:00:01} {detroit y2038} {
    clock format 3971397601 -format {%H:%M:%S %z %Z} \
        -timezone :America/Detroit
} {01:00:01 -0500 EST}
test clock-5.780 {time zone boundary case 2096-03-11 01:59:59} {detroit y2038} {
    clock format 3982287599 -format {%H:%M:%S %z %Z} \
        -timezone :America/Detroit
} {01:59:59 -0500 EST}
test clock-5.781 {time zone boundary case 2096-03-11 03:00:00} {detroit y2038} {
    clock format 3982287600 -format {%H:%M:%S %z %Z} \
        -timezone :America/Detroit
} {03:00:00 -0400 EDT}
test clock-5.782 {time zone boundary case 2096-03-11 03:00:01} {detroit y2038} {
    clock format 3982287601 -format {%H:%M:%S %z %Z} \
        -timezone :America/Detroit
} {03:00:01 -0400 EDT}
test clock-5.783 {time zone boundary case 2096-11-04 01:59:59} {detroit y2038} {
    clock format 4002847199 -format {%H:%M:%S %z %Z} \
        -timezone :America/Detroit
} {01:59:59 -0400 EDT}
test clock-5.784 {time zone boundary case 2096-11-04 01:00:00} {detroit y2038} {
    clock format 4002847200 -format {%H:%M:%S %z %Z} \
        -timezone :America/Detroit
} {01:00:00 -0500 EST}
test clock-5.785 {time zone boundary case 2096-11-04 01:00:01} {detroit y2038} {
    clock format 4002847201 -format {%H:%M:%S %z %Z} \
        -timezone :America/Detroit
} {01:00:01 -0500 EST}
test clock-5.786 {time zone boundary case 2097-03-10 01:59:59} {detroit y2038} {
    clock format 4013737199 -format {%H:%M:%S %z %Z} \
        -timezone :America/Detroit
} {01:59:59 -0500 EST}
test clock-5.787 {time zone boundary case 2097-03-10 03:00:00} {detroit y2038} {
    clock format 4013737200 -format {%H:%M:%S %z %Z} \
        -timezone :America/Detroit
} {03:00:00 -0400 EDT}
test clock-5.788 {time zone boundary case 2097-03-10 03:00:01} {detroit y2038} {
    clock format 4013737201 -format {%H:%M:%S %z %Z} \
        -timezone :America/Detroit
} {03:00:01 -0400 EDT}
test clock-5.789 {time zone boundary case 2097-11-03 01:59:59} {detroit y2038} {
    clock format 4034296799 -format {%H:%M:%S %z %Z} \
        -timezone :America/Detroit
} {01:59:59 -0400 EDT}
test clock-5.790 {time zone boundary case 2097-11-03 01:00:00} {detroit y2038} {
    clock format 4034296800 -format {%H:%M:%S %z %Z} \
        -timezone :America/Detroit
} {01:00:00 -0500 EST}
test clock-5.791 {time zone boundary case 2097-11-03 01:00:01} {detroit y2038} {
    clock format 4034296801 -format {%H:%M:%S %z %Z} \
        -timezone :America/Detroit
} {01:00:01 -0500 EST}
test clock-5.792 {time zone boundary case 2098-03-09 01:59:59} {detroit y2038} {
    clock format 4045186799 -format {%H:%M:%S %z %Z} \
        -timezone :America/Detroit
} {01:59:59 -0500 EST}
test clock-5.793 {time zone boundary case 2098-03-09 03:00:00} {detroit y2038} {
    clock format 4045186800 -format {%H:%M:%S %z %Z} \
        -timezone :America/Detroit
} {03:00:00 -0400 EDT}
test clock-5.794 {time zone boundary case 2098-03-09 03:00:01} {detroit y2038} {
    clock format 4045186801 -format {%H:%M:%S %z %Z} \
        -timezone :America/Detroit
} {03:00:01 -0400 EDT}
test clock-5.795 {time zone boundary case 2098-11-02 01:59:59} {detroit y2038} {
    clock format 4065746399 -format {%H:%M:%S %z %Z} \
        -timezone :America/Detroit
} {01:59:59 -0400 EDT}
test clock-5.796 {time zone boundary case 2098-11-02 01:00:00} {detroit y2038} {
    clock format 4065746400 -format {%H:%M:%S %z %Z} \
        -timezone :America/Detroit
} {01:00:00 -0500 EST}
test clock-5.797 {time zone boundary case 2098-11-02 01:00:01} {detroit y2038} {
    clock format 4065746401 -format {%H:%M:%S %z %Z} \
        -timezone :America/Detroit
} {01:00:01 -0500 EST}
test clock-5.798 {time zone boundary case 2099-03-08 01:59:59} {detroit y2038} {
    clock format 4076636399 -format {%H:%M:%S %z %Z} \
        -timezone :America/Detroit
} {01:59:59 -0500 EST}
test clock-5.799 {time zone boundary case 2099-03-08 03:00:00} {detroit y2038} {
    clock format 4076636400 -format {%H:%M:%S %z %Z} \
        -timezone :America/Detroit
} {03:00:00 -0400 EDT}
test clock-5.800 {time zone boundary case 2099-03-08 03:00:01} {detroit y2038} {
    clock format 4076636401 -format {%H:%M:%S %z %Z} \
        -timezone :America/Detroit
} {03:00:01 -0400 EDT}
test clock-5.801 {time zone boundary case 2099-11-01 01:59:59} {detroit y2038} {
    clock format 4097195999 -format {%H:%M:%S %z %Z} \
        -timezone :America/Detroit
} {01:59:59 -0400 EDT}
test clock-5.802 {time zone boundary case 2099-11-01 01:00:00} {detroit y2038} {
    clock format 4097196000 -format {%H:%M:%S %z %Z} \
        -timezone :America/Detroit
} {01:00:00 -0500 EST}
test clock-5.803 {time zone boundary case 2099-11-01 01:00:01} {detroit y2038} {
    clock format 4097196001 -format {%H:%M:%S %z %Z} \
        -timezone :America/Detroit
} {01:00:01 -0500 EST}
# END testcases5

# Test input conversions.

test clock-6.0 {input of seconds} {
    clock scan {-9223372036854775808} -format %s -gmt true
} -9223372036854775808

test clock-6.1 {input of seconds} {
    clock scan {-2147483649} -format %s -gmt true
} -2147483649

test clock-6.2 {input of seconds} {
    clock scan {-2147483648} -format %s -gmt true
} -2147483648

test clock-6.3 {input of seconds} {
    clock scan {-1} -format %s -gmt true
} -1

test clock-6.4 {input of seconds} {
    clock scan {0} -format %s -gmt true
} 0

test clock-6.5 {input of seconds} {
    clock scan {1} -format %s -gmt true
} 1

test clock-6.6 {input of seconds} {
    clock scan {2147483647} -format %s -gmt true
} 2147483647

test clock-6.7 {input of seconds} {
    clock scan {2147483648} -format %s -gmt true
} 2147483648

test clock-6.8 {input of seconds} {
    clock scan {9223372036854775807} -format %s -gmt true
} 9223372036854775807

test clock-6.9 {input of seconds - overflow} {
    list [catch {clock scan -9223372036854775809 -format %s -gmt true} result] $result
} {1 {integer value too large to represent}}

test clock-6.10 {input of seconds - overflow} {
    list [catch {clock scan 9223372036854775808 -format %s -gmt true} result] $result
} {1 {integer value too large to represent}}

test clock-6.11 {input of seconds - two values} {
    clock scan {1 2} -format {%s %s} -gmt true
} 2

test clock-7.1 {Julian Day} {
    clock scan 0 -format %J -gmt true
} -210866803200

test clock-7.2 {Julian Day} {
    clock format [clock scan 2440588 -format %J -gmt true] \
	-format %Y-%m-%d -gmt true
} 1970-01-01

test clock-7.3 {Julian Day} {
    clock format [clock scan 2451545 -format %J -gmt true] \
	-format %Y-%m-%d -gmt true
} 2000-01-01

test clock-7.3.1 {Julian Day} {
    clock format [clock scan 2488070 -format %J -gmt true] \
	-format %Y-%m-%d -gmt true
} 2100-01-01

test clock-7.4 {Julian Day} {
    clock format [clock scan 5373484 -format %J -gmt true] \
	-format %Y-%m-%d -gmt true
} 9999-12-31

test clock-7.5 {Julian Day, bad} {
    list [catch {
	clock scan bogus -format %J
    } result] $result $errorCode
} {1 {input string does not match supplied format} {CLOCK badInputString}}

test clock-7.6 {Julian Day, overflow} {
    list [catch {
	clock scan 5373485 -format %J
    } result] $result $errorCode
} {1 {requested date too large to represent} {CLOCK dateTooLarge}}

test clock-7.7 {Julian Day, overflow} {
    list [catch {
	clock scan 2147483648 -format %J
    } result] $result $errorCode
} {1 {requested date too large to represent} {CLOCK dateTooLarge}}

test clock-7.8 {Julian Day, precedence below seconds} {
    list [clock scan {2440588 86400} -format {%J %s} -gmt true] \
	[clock scan {2440589 0} -format {%J %s} -gmt true] \
	[clock scan {86400 2440588} -format {%s %J} -gmt true] \
	[clock scan {0 2440589} -format {%s %J} -gmt true]
} {86400 0 86400 0}

test clock-7.9 {Julian Day, two values} {
    clock scan {2440588 2440589} -format {%J %J} -gmt true
} 86400

# BEGIN testcases8

# Test parsing of ccyymmdd

test clock-8.1 {parse ccyymmdd} {
    clock scan {1970 Jan 02} -format {%C%y %b %d} -locale en_US_roman -gmt 1
} 86400
test clock-8.2 {parse ccyymmdd} {
    clock scan {1970 Jan ii} -format {%C%y %b %Od} -locale en_US_roman -gmt 1
} 86400
test clock-8.3 {parse ccyymmdd} {
    clock scan {1970 Jan  2} -format {%C%y %b %e} -locale en_US_roman -gmt 1
} 86400
test clock-8.4 {parse ccyymmdd} {
    clock scan {1970 Jan ii} -format {%C%y %b %Oe} -locale en_US_roman -gmt 1
} 86400
test clock-8.5 {parse ccyymmdd} {
    clock scan {1970 January 02} -format {%C%y %B %d} -locale en_US_roman -gmt 1
} 86400
test clock-8.6 {parse ccyymmdd} {
    clock scan {1970 January ii} -format {%C%y %B %Od} -locale en_US_roman -gmt 1
} 86400
test clock-8.7 {parse ccyymmdd} {
    clock scan {1970 January  2} -format {%C%y %B %e} -locale en_US_roman -gmt 1
} 86400
test clock-8.8 {parse ccyymmdd} {
    clock scan {1970 January ii} -format {%C%y %B %Oe} -locale en_US_roman -gmt 1
} 86400
test clock-8.9 {parse ccyymmdd} {
    clock scan {1970 Jan 02} -format {%C%y %h %d} -locale en_US_roman -gmt 1
} 86400
test clock-8.10 {parse ccyymmdd} {
    clock scan {1970 Jan ii} -format {%C%y %h %Od} -locale en_US_roman -gmt 1
} 86400
test clock-8.11 {parse ccyymmdd} {
    clock scan {1970 Jan  2} -format {%C%y %h %e} -locale en_US_roman -gmt 1
} 86400
test clock-8.12 {parse ccyymmdd} {
    clock scan {1970 Jan ii} -format {%C%y %h %Oe} -locale en_US_roman -gmt 1
} 86400
test clock-8.13 {parse ccyymmdd} {
    clock scan {1970 01 02} -format {%C%y %m %d} -locale en_US_roman -gmt 1
} 86400
test clock-8.14 {parse ccyymmdd} {
    clock scan {1970 01 ii} -format {%C%y %m %Od} -locale en_US_roman -gmt 1
} 86400
test clock-8.15 {parse ccyymmdd} {
    clock scan {1970 01  2} -format {%C%y %m %e} -locale en_US_roman -gmt 1
} 86400
test clock-8.16 {parse ccyymmdd} {
    clock scan {1970 01 ii} -format {%C%y %m %Oe} -locale en_US_roman -gmt 1
} 86400
test clock-8.17 {parse ccyymmdd} {
    clock scan {1970 i 02} -format {%C%y %Om %d} -locale en_US_roman -gmt 1
} 86400
test clock-8.18 {parse ccyymmdd} {
    clock scan {1970 i ii} -format {%C%y %Om %Od} -locale en_US_roman -gmt 1
} 86400
test clock-8.19 {parse ccyymmdd} {
    clock scan {1970 i  2} -format {%C%y %Om %e} -locale en_US_roman -gmt 1
} 86400
test clock-8.20 {parse ccyymmdd} {
    clock scan {1970 i ii} -format {%C%y %Om %Oe} -locale en_US_roman -gmt 1
} 86400
test clock-8.21 {parse ccyymmdd} {
    clock scan {1970  1 02} -format {%C%y %N %d} -locale en_US_roman -gmt 1
} 86400
test clock-8.22 {parse ccyymmdd} {
    clock scan {1970  1 ii} -format {%C%y %N %Od} -locale en_US_roman -gmt 1
} 86400
test clock-8.23 {parse ccyymmdd} {
    clock scan {1970  1  2} -format {%C%y %N %e} -locale en_US_roman -gmt 1
} 86400
test clock-8.24 {parse ccyymmdd} {
    clock scan {1970  1 ii} -format {%C%y %N %Oe} -locale en_US_roman -gmt 1
} 86400
test clock-8.25 {parse ccyymmdd} {
    clock scan {1970 Jan 02} -format {%Y %b %d} -locale en_US_roman -gmt 1
} 86400
test clock-8.26 {parse ccyymmdd} {
    clock scan {1970 Jan ii} -format {%Y %b %Od} -locale en_US_roman -gmt 1
} 86400
test clock-8.27 {parse ccyymmdd} {
    clock scan {1970 Jan  2} -format {%Y %b %e} -locale en_US_roman -gmt 1
} 86400
test clock-8.28 {parse ccyymmdd} {
    clock scan {1970 Jan ii} -format {%Y %b %Oe} -locale en_US_roman -gmt 1
} 86400
test clock-8.29 {parse ccyymmdd} {
    clock scan {1970 January 02} -format {%Y %B %d} -locale en_US_roman -gmt 1
} 86400
test clock-8.30 {parse ccyymmdd} {
    clock scan {1970 January ii} -format {%Y %B %Od} -locale en_US_roman -gmt 1
} 86400
test clock-8.31 {parse ccyymmdd} {
    clock scan {1970 January  2} -format {%Y %B %e} -locale en_US_roman -gmt 1
} 86400
test clock-8.32 {parse ccyymmdd} {
    clock scan {1970 January ii} -format {%Y %B %Oe} -locale en_US_roman -gmt 1
} 86400
test clock-8.33 {parse ccyymmdd} {
    clock scan {1970 Jan 02} -format {%Y %h %d} -locale en_US_roman -gmt 1
} 86400
test clock-8.34 {parse ccyymmdd} {
    clock scan {1970 Jan ii} -format {%Y %h %Od} -locale en_US_roman -gmt 1
} 86400
test clock-8.35 {parse ccyymmdd} {
    clock scan {1970 Jan  2} -format {%Y %h %e} -locale en_US_roman -gmt 1
} 86400
test clock-8.36 {parse ccyymmdd} {
    clock scan {1970 Jan ii} -format {%Y %h %Oe} -locale en_US_roman -gmt 1
} 86400
test clock-8.37 {parse ccyymmdd} {
    clock scan {1970 01 02} -format {%Y %m %d} -locale en_US_roman -gmt 1
} 86400
test clock-8.38 {parse ccyymmdd} {
    clock scan {1970 01 ii} -format {%Y %m %Od} -locale en_US_roman -gmt 1
} 86400
test clock-8.39 {parse ccyymmdd} {
    clock scan {1970 01  2} -format {%Y %m %e} -locale en_US_roman -gmt 1
} 86400
test clock-8.40 {parse ccyymmdd} {
    clock scan {1970 01 ii} -format {%Y %m %Oe} -locale en_US_roman -gmt 1
} 86400
test clock-8.41 {parse ccyymmdd} {
    clock scan {1970 i 02} -format {%Y %Om %d} -locale en_US_roman -gmt 1
} 86400
test clock-8.42 {parse ccyymmdd} {
    clock scan {1970 i ii} -format {%Y %Om %Od} -locale en_US_roman -gmt 1
} 86400
test clock-8.43 {parse ccyymmdd} {
    clock scan {1970 i  2} -format {%Y %Om %e} -locale en_US_roman -gmt 1
} 86400
test clock-8.44 {parse ccyymmdd} {
    clock scan {1970 i ii} -format {%Y %Om %Oe} -locale en_US_roman -gmt 1
} 86400
test clock-8.45 {parse ccyymmdd} {
    clock scan {1970  1 02} -format {%Y %N %d} -locale en_US_roman -gmt 1
} 86400
test clock-8.46 {parse ccyymmdd} {
    clock scan {1970  1 ii} -format {%Y %N %Od} -locale en_US_roman -gmt 1
} 86400
test clock-8.47 {parse ccyymmdd} {
    clock scan {1970  1  2} -format {%Y %N %e} -locale en_US_roman -gmt 1
} 86400
test clock-8.48 {parse ccyymmdd} {
    clock scan {1970  1 ii} -format {%Y %N %Oe} -locale en_US_roman -gmt 1
} 86400
test clock-8.49 {parse ccyymmdd} {
    clock scan 01/02/1970 -format %x -locale en_US_roman -gmt 1
} 86400
test clock-8.50 {parse ccyymmdd} {
    clock scan 01/02/1970 -format %D -locale en_US_roman -gmt 1
} 86400
test clock-8.51 {parse ccyymmdd} {
    clock scan {1970 Jan 31} -format {%C%y %b %d} -locale en_US_roman -gmt 1
} 2592000
test clock-8.52 {parse ccyymmdd} {
    clock scan {1970 Jan xxxi} -format {%C%y %b %Od} -locale en_US_roman -gmt 1
} 2592000
test clock-8.53 {parse ccyymmdd} {
    clock scan {1970 Jan 31} -format {%C%y %b %e} -locale en_US_roman -gmt 1
} 2592000
test clock-8.54 {parse ccyymmdd} {
    clock scan {1970 Jan xxxi} -format {%C%y %b %Oe} -locale en_US_roman -gmt 1
} 2592000
test clock-8.55 {parse ccyymmdd} {
    clock scan {1970 January 31} -format {%C%y %B %d} -locale en_US_roman -gmt 1
} 2592000
test clock-8.56 {parse ccyymmdd} {
    clock scan {1970 January xxxi} -format {%C%y %B %Od} -locale en_US_roman -gmt 1
} 2592000
test clock-8.57 {parse ccyymmdd} {
    clock scan {1970 January 31} -format {%C%y %B %e} -locale en_US_roman -gmt 1
} 2592000
test clock-8.58 {parse ccyymmdd} {
    clock scan {1970 January xxxi} -format {%C%y %B %Oe} -locale en_US_roman -gmt 1
} 2592000
test clock-8.59 {parse ccyymmdd} {
    clock scan {1970 Jan 31} -format {%C%y %h %d} -locale en_US_roman -gmt 1
} 2592000
test clock-8.60 {parse ccyymmdd} {
    clock scan {1970 Jan xxxi} -format {%C%y %h %Od} -locale en_US_roman -gmt 1
} 2592000
test clock-8.61 {parse ccyymmdd} {
    clock scan {1970 Jan 31} -format {%C%y %h %e} -locale en_US_roman -gmt 1
} 2592000
test clock-8.62 {parse ccyymmdd} {
    clock scan {1970 Jan xxxi} -format {%C%y %h %Oe} -locale en_US_roman -gmt 1
} 2592000
test clock-8.63 {parse ccyymmdd} {
    clock scan {1970 01 31} -format {%C%y %m %d} -locale en_US_roman -gmt 1
} 2592000
test clock-8.64 {parse ccyymmdd} {
    clock scan {1970 01 xxxi} -format {%C%y %m %Od} -locale en_US_roman -gmt 1
} 2592000
test clock-8.65 {parse ccyymmdd} {
    clock scan {1970 01 31} -format {%C%y %m %e} -locale en_US_roman -gmt 1
} 2592000
test clock-8.66 {parse ccyymmdd} {
    clock scan {1970 01 xxxi} -format {%C%y %m %Oe} -locale en_US_roman -gmt 1
} 2592000
test clock-8.67 {parse ccyymmdd} {
    clock scan {1970 i 31} -format {%C%y %Om %d} -locale en_US_roman -gmt 1
} 2592000
test clock-8.68 {parse ccyymmdd} {
    clock scan {1970 i xxxi} -format {%C%y %Om %Od} -locale en_US_roman -gmt 1
} 2592000
test clock-8.69 {parse ccyymmdd} {
    clock scan {1970 i 31} -format {%C%y %Om %e} -locale en_US_roman -gmt 1
} 2592000
test clock-8.70 {parse ccyymmdd} {
    clock scan {1970 i xxxi} -format {%C%y %Om %Oe} -locale en_US_roman -gmt 1
} 2592000
test clock-8.71 {parse ccyymmdd} {
    clock scan {1970  1 31} -format {%C%y %N %d} -locale en_US_roman -gmt 1
} 2592000
test clock-8.72 {parse ccyymmdd} {
    clock scan {1970  1 xxxi} -format {%C%y %N %Od} -locale en_US_roman -gmt 1
} 2592000
test clock-8.73 {parse ccyymmdd} {
    clock scan {1970  1 31} -format {%C%y %N %e} -locale en_US_roman -gmt 1
} 2592000
test clock-8.74 {parse ccyymmdd} {
    clock scan {1970  1 xxxi} -format {%C%y %N %Oe} -locale en_US_roman -gmt 1
} 2592000
test clock-8.75 {parse ccyymmdd} {
    clock scan {1970 Jan 31} -format {%Y %b %d} -locale en_US_roman -gmt 1
} 2592000
test clock-8.76 {parse ccyymmdd} {
    clock scan {1970 Jan xxxi} -format {%Y %b %Od} -locale en_US_roman -gmt 1
} 2592000
test clock-8.77 {parse ccyymmdd} {
    clock scan {1970 Jan 31} -format {%Y %b %e} -locale en_US_roman -gmt 1
} 2592000
test clock-8.78 {parse ccyymmdd} {
    clock scan {1970 Jan xxxi} -format {%Y %b %Oe} -locale en_US_roman -gmt 1
} 2592000
test clock-8.79 {parse ccyymmdd} {
    clock scan {1970 January 31} -format {%Y %B %d} -locale en_US_roman -gmt 1
} 2592000
test clock-8.80 {parse ccyymmdd} {
    clock scan {1970 January xxxi} -format {%Y %B %Od} -locale en_US_roman -gmt 1
} 2592000
test clock-8.81 {parse ccyymmdd} {
    clock scan {1970 January 31} -format {%Y %B %e} -locale en_US_roman -gmt 1
} 2592000
test clock-8.82 {parse ccyymmdd} {
    clock scan {1970 January xxxi} -format {%Y %B %Oe} -locale en_US_roman -gmt 1
} 2592000
test clock-8.83 {parse ccyymmdd} {
    clock scan {1970 Jan 31} -format {%Y %h %d} -locale en_US_roman -gmt 1
} 2592000
test clock-8.84 {parse ccyymmdd} {
    clock scan {1970 Jan xxxi} -format {%Y %h %Od} -locale en_US_roman -gmt 1
} 2592000
test clock-8.85 {parse ccyymmdd} {
    clock scan {1970 Jan 31} -format {%Y %h %e} -locale en_US_roman -gmt 1
} 2592000
test clock-8.86 {parse ccyymmdd} {
    clock scan {1970 Jan xxxi} -format {%Y %h %Oe} -locale en_US_roman -gmt 1
} 2592000
test clock-8.87 {parse ccyymmdd} {
    clock scan {1970 01 31} -format {%Y %m %d} -locale en_US_roman -gmt 1
} 2592000
test clock-8.88 {parse ccyymmdd} {
    clock scan {1970 01 xxxi} -format {%Y %m %Od} -locale en_US_roman -gmt 1
} 2592000
test clock-8.89 {parse ccyymmdd} {
    clock scan {1970 01 31} -format {%Y %m %e} -locale en_US_roman -gmt 1
} 2592000
test clock-8.90 {parse ccyymmdd} {
    clock scan {1970 01 xxxi} -format {%Y %m %Oe} -locale en_US_roman -gmt 1
} 2592000
test clock-8.91 {parse ccyymmdd} {
    clock scan {1970 i 31} -format {%Y %Om %d} -locale en_US_roman -gmt 1
} 2592000
test clock-8.92 {parse ccyymmdd} {
    clock scan {1970 i xxxi} -format {%Y %Om %Od} -locale en_US_roman -gmt 1
} 2592000
test clock-8.93 {parse ccyymmdd} {
    clock scan {1970 i 31} -format {%Y %Om %e} -locale en_US_roman -gmt 1
} 2592000
test clock-8.94 {parse ccyymmdd} {
    clock scan {1970 i xxxi} -format {%Y %Om %Oe} -locale en_US_roman -gmt 1
} 2592000
test clock-8.95 {parse ccyymmdd} {
    clock scan {1970  1 31} -format {%Y %N %d} -locale en_US_roman -gmt 1
} 2592000
test clock-8.96 {parse ccyymmdd} {
    clock scan {1970  1 xxxi} -format {%Y %N %Od} -locale en_US_roman -gmt 1
} 2592000
test clock-8.97 {parse ccyymmdd} {
    clock scan {1970  1 31} -format {%Y %N %e} -locale en_US_roman -gmt 1
} 2592000
test clock-8.98 {parse ccyymmdd} {
    clock scan {1970  1 xxxi} -format {%Y %N %Oe} -locale en_US_roman -gmt 1
} 2592000
test clock-8.99 {parse ccyymmdd} {
    clock scan 01/31/1970 -format %x -locale en_US_roman -gmt 1
} 2592000
test clock-8.100 {parse ccyymmdd} {
    clock scan 01/31/1970 -format %D -locale en_US_roman -gmt 1
} 2592000
test clock-8.101 {parse ccyymmdd} {
    clock scan {1970 Dec 02} -format {%C%y %b %d} -locale en_US_roman -gmt 1
} 28944000
test clock-8.102 {parse ccyymmdd} {
    clock scan {1970 Dec ii} -format {%C%y %b %Od} -locale en_US_roman -gmt 1
} 28944000
test clock-8.103 {parse ccyymmdd} {
    clock scan {1970 Dec  2} -format {%C%y %b %e} -locale en_US_roman -gmt 1
} 28944000
test clock-8.104 {parse ccyymmdd} {
    clock scan {1970 Dec ii} -format {%C%y %b %Oe} -locale en_US_roman -gmt 1
} 28944000
test clock-8.105 {parse ccyymmdd} {
    clock scan {1970 December 02} -format {%C%y %B %d} -locale en_US_roman -gmt 1
} 28944000
test clock-8.106 {parse ccyymmdd} {
    clock scan {1970 December ii} -format {%C%y %B %Od} -locale en_US_roman -gmt 1
} 28944000
test clock-8.107 {parse ccyymmdd} {
    clock scan {1970 December  2} -format {%C%y %B %e} -locale en_US_roman -gmt 1
} 28944000
test clock-8.108 {parse ccyymmdd} {
    clock scan {1970 December ii} -format {%C%y %B %Oe} -locale en_US_roman -gmt 1
} 28944000
test clock-8.109 {parse ccyymmdd} {
    clock scan {1970 Dec 02} -format {%C%y %h %d} -locale en_US_roman -gmt 1
} 28944000
test clock-8.110 {parse ccyymmdd} {
    clock scan {1970 Dec ii} -format {%C%y %h %Od} -locale en_US_roman -gmt 1
} 28944000
test clock-8.111 {parse ccyymmdd} {
    clock scan {1970 Dec  2} -format {%C%y %h %e} -locale en_US_roman -gmt 1
} 28944000
test clock-8.112 {parse ccyymmdd} {
    clock scan {1970 Dec ii} -format {%C%y %h %Oe} -locale en_US_roman -gmt 1
} 28944000
test clock-8.113 {parse ccyymmdd} {
    clock scan {1970 12 02} -format {%C%y %m %d} -locale en_US_roman -gmt 1
} 28944000
test clock-8.114 {parse ccyymmdd} {
    clock scan {1970 12 ii} -format {%C%y %m %Od} -locale en_US_roman -gmt 1
} 28944000
test clock-8.115 {parse ccyymmdd} {
    clock scan {1970 12  2} -format {%C%y %m %e} -locale en_US_roman -gmt 1
} 28944000
test clock-8.116 {parse ccyymmdd} {
    clock scan {1970 12 ii} -format {%C%y %m %Oe} -locale en_US_roman -gmt 1
} 28944000
test clock-8.117 {parse ccyymmdd} {
    clock scan {1970 xii 02} -format {%C%y %Om %d} -locale en_US_roman -gmt 1
} 28944000
test clock-8.118 {parse ccyymmdd} {
    clock scan {1970 xii ii} -format {%C%y %Om %Od} -locale en_US_roman -gmt 1
} 28944000
test clock-8.119 {parse ccyymmdd} {
    clock scan {1970 xii  2} -format {%C%y %Om %e} -locale en_US_roman -gmt 1
} 28944000
test clock-8.120 {parse ccyymmdd} {
    clock scan {1970 xii ii} -format {%C%y %Om %Oe} -locale en_US_roman -gmt 1
} 28944000
test clock-8.121 {parse ccyymmdd} {
    clock scan {1970 12 02} -format {%C%y %N %d} -locale en_US_roman -gmt 1
} 28944000
test clock-8.122 {parse ccyymmdd} {
    clock scan {1970 12 ii} -format {%C%y %N %Od} -locale en_US_roman -gmt 1
} 28944000
test clock-8.123 {parse ccyymmdd} {
    clock scan {1970 12  2} -format {%C%y %N %e} -locale en_US_roman -gmt 1
} 28944000
test clock-8.124 {parse ccyymmdd} {
    clock scan {1970 12 ii} -format {%C%y %N %Oe} -locale en_US_roman -gmt 1
} 28944000
test clock-8.125 {parse ccyymmdd} {
    clock scan {1970 Dec 02} -format {%Y %b %d} -locale en_US_roman -gmt 1
} 28944000
test clock-8.126 {parse ccyymmdd} {
    clock scan {1970 Dec ii} -format {%Y %b %Od} -locale en_US_roman -gmt 1
} 28944000
test clock-8.127 {parse ccyymmdd} {
    clock scan {1970 Dec  2} -format {%Y %b %e} -locale en_US_roman -gmt 1
} 28944000
test clock-8.128 {parse ccyymmdd} {
    clock scan {1970 Dec ii} -format {%Y %b %Oe} -locale en_US_roman -gmt 1
} 28944000
test clock-8.129 {parse ccyymmdd} {
    clock scan {1970 December 02} -format {%Y %B %d} -locale en_US_roman -gmt 1
} 28944000
test clock-8.130 {parse ccyymmdd} {
    clock scan {1970 December ii} -format {%Y %B %Od} -locale en_US_roman -gmt 1
} 28944000
test clock-8.131 {parse ccyymmdd} {
    clock scan {1970 December  2} -format {%Y %B %e} -locale en_US_roman -gmt 1
} 28944000
test clock-8.132 {parse ccyymmdd} {
    clock scan {1970 December ii} -format {%Y %B %Oe} -locale en_US_roman -gmt 1
} 28944000
test clock-8.133 {parse ccyymmdd} {
    clock scan {1970 Dec 02} -format {%Y %h %d} -locale en_US_roman -gmt 1
} 28944000
test clock-8.134 {parse ccyymmdd} {
    clock scan {1970 Dec ii} -format {%Y %h %Od} -locale en_US_roman -gmt 1
} 28944000
test clock-8.135 {parse ccyymmdd} {
    clock scan {1970 Dec  2} -format {%Y %h %e} -locale en_US_roman -gmt 1
} 28944000
test clock-8.136 {parse ccyymmdd} {
    clock scan {1970 Dec ii} -format {%Y %h %Oe} -locale en_US_roman -gmt 1
} 28944000
test clock-8.137 {parse ccyymmdd} {
    clock scan {1970 12 02} -format {%Y %m %d} -locale en_US_roman -gmt 1
} 28944000
test clock-8.138 {parse ccyymmdd} {
    clock scan {1970 12 ii} -format {%Y %m %Od} -locale en_US_roman -gmt 1
} 28944000
test clock-8.139 {parse ccyymmdd} {
    clock scan {1970 12  2} -format {%Y %m %e} -locale en_US_roman -gmt 1
} 28944000
test clock-8.140 {parse ccyymmdd} {
    clock scan {1970 12 ii} -format {%Y %m %Oe} -locale en_US_roman -gmt 1
} 28944000
test clock-8.141 {parse ccyymmdd} {
    clock scan {1970 xii 02} -format {%Y %Om %d} -locale en_US_roman -gmt 1
} 28944000
test clock-8.142 {parse ccyymmdd} {
    clock scan {1970 xii ii} -format {%Y %Om %Od} -locale en_US_roman -gmt 1
} 28944000
test clock-8.143 {parse ccyymmdd} {
    clock scan {1970 xii  2} -format {%Y %Om %e} -locale en_US_roman -gmt 1
} 28944000
test clock-8.144 {parse ccyymmdd} {
    clock scan {1970 xii ii} -format {%Y %Om %Oe} -locale en_US_roman -gmt 1
} 28944000
test clock-8.145 {parse ccyymmdd} {
    clock scan {1970 12 02} -format {%Y %N %d} -locale en_US_roman -gmt 1
} 28944000
test clock-8.146 {parse ccyymmdd} {
    clock scan {1970 12 ii} -format {%Y %N %Od} -locale en_US_roman -gmt 1
} 28944000
test clock-8.147 {parse ccyymmdd} {
    clock scan {1970 12  2} -format {%Y %N %e} -locale en_US_roman -gmt 1
} 28944000
test clock-8.148 {parse ccyymmdd} {
    clock scan {1970 12 ii} -format {%Y %N %Oe} -locale en_US_roman -gmt 1
} 28944000
test clock-8.149 {parse ccyymmdd} {
    clock scan 12/02/1970 -format %x -locale en_US_roman -gmt 1
} 28944000
test clock-8.150 {parse ccyymmdd} {
    clock scan 12/02/1970 -format %D -locale en_US_roman -gmt 1
} 28944000
test clock-8.151 {parse ccyymmdd} {
    clock scan {1970 Dec 31} -format {%C%y %b %d} -locale en_US_roman -gmt 1
} 31449600
test clock-8.152 {parse ccyymmdd} {
    clock scan {1970 Dec xxxi} -format {%C%y %b %Od} -locale en_US_roman -gmt 1
} 31449600
test clock-8.153 {parse ccyymmdd} {
    clock scan {1970 Dec 31} -format {%C%y %b %e} -locale en_US_roman -gmt 1
} 31449600
test clock-8.154 {parse ccyymmdd} {
    clock scan {1970 Dec xxxi} -format {%C%y %b %Oe} -locale en_US_roman -gmt 1
} 31449600
test clock-8.155 {parse ccyymmdd} {
    clock scan {1970 December 31} -format {%C%y %B %d} -locale en_US_roman -gmt 1
} 31449600
test clock-8.156 {parse ccyymmdd} {
    clock scan {1970 December xxxi} -format {%C%y %B %Od} -locale en_US_roman -gmt 1
} 31449600
test clock-8.157 {parse ccyymmdd} {
    clock scan {1970 December 31} -format {%C%y %B %e} -locale en_US_roman -gmt 1
} 31449600
test clock-8.158 {parse ccyymmdd} {
    clock scan {1970 December xxxi} -format {%C%y %B %Oe} -locale en_US_roman -gmt 1
} 31449600
test clock-8.159 {parse ccyymmdd} {
    clock scan {1970 Dec 31} -format {%C%y %h %d} -locale en_US_roman -gmt 1
} 31449600
test clock-8.160 {parse ccyymmdd} {
    clock scan {1970 Dec xxxi} -format {%C%y %h %Od} -locale en_US_roman -gmt 1
} 31449600
test clock-8.161 {parse ccyymmdd} {
    clock scan {1970 Dec 31} -format {%C%y %h %e} -locale en_US_roman -gmt 1
} 31449600
test clock-8.162 {parse ccyymmdd} {
    clock scan {1970 Dec xxxi} -format {%C%y %h %Oe} -locale en_US_roman -gmt 1
} 31449600
test clock-8.163 {parse ccyymmdd} {
    clock scan {1970 12 31} -format {%C%y %m %d} -locale en_US_roman -gmt 1
} 31449600
test clock-8.164 {parse ccyymmdd} {
    clock scan {1970 12 xxxi} -format {%C%y %m %Od} -locale en_US_roman -gmt 1
} 31449600
test clock-8.165 {parse ccyymmdd} {
    clock scan {1970 12 31} -format {%C%y %m %e} -locale en_US_roman -gmt 1
} 31449600
test clock-8.166 {parse ccyymmdd} {
    clock scan {1970 12 xxxi} -format {%C%y %m %Oe} -locale en_US_roman -gmt 1
} 31449600
test clock-8.167 {parse ccyymmdd} {
    clock scan {1970 xii 31} -format {%C%y %Om %d} -locale en_US_roman -gmt 1
} 31449600
test clock-8.168 {parse ccyymmdd} {
    clock scan {1970 xii xxxi} -format {%C%y %Om %Od} -locale en_US_roman -gmt 1
} 31449600
test clock-8.169 {parse ccyymmdd} {
    clock scan {1970 xii 31} -format {%C%y %Om %e} -locale en_US_roman -gmt 1
} 31449600
test clock-8.170 {parse ccyymmdd} {
    clock scan {1970 xii xxxi} -format {%C%y %Om %Oe} -locale en_US_roman -gmt 1
} 31449600
test clock-8.171 {parse ccyymmdd} {
    clock scan {1970 12 31} -format {%C%y %N %d} -locale en_US_roman -gmt 1
} 31449600
test clock-8.172 {parse ccyymmdd} {
    clock scan {1970 12 xxxi} -format {%C%y %N %Od} -locale en_US_roman -gmt 1
} 31449600
test clock-8.173 {parse ccyymmdd} {
    clock scan {1970 12 31} -format {%C%y %N %e} -locale en_US_roman -gmt 1
} 31449600
test clock-8.174 {parse ccyymmdd} {
    clock scan {1970 12 xxxi} -format {%C%y %N %Oe} -locale en_US_roman -gmt 1
} 31449600
test clock-8.175 {parse ccyymmdd} {
    clock scan {1970 Dec 31} -format {%Y %b %d} -locale en_US_roman -gmt 1
} 31449600
test clock-8.176 {parse ccyymmdd} {
    clock scan {1970 Dec xxxi} -format {%Y %b %Od} -locale en_US_roman -gmt 1
} 31449600
test clock-8.177 {parse ccyymmdd} {
    clock scan {1970 Dec 31} -format {%Y %b %e} -locale en_US_roman -gmt 1
} 31449600
test clock-8.178 {parse ccyymmdd} {
    clock scan {1970 Dec xxxi} -format {%Y %b %Oe} -locale en_US_roman -gmt 1
} 31449600
test clock-8.179 {parse ccyymmdd} {
    clock scan {1970 December 31} -format {%Y %B %d} -locale en_US_roman -gmt 1
} 31449600
test clock-8.180 {parse ccyymmdd} {
    clock scan {1970 December xxxi} -format {%Y %B %Od} -locale en_US_roman -gmt 1
} 31449600
test clock-8.181 {parse ccyymmdd} {
    clock scan {1970 December 31} -format {%Y %B %e} -locale en_US_roman -gmt 1
} 31449600
test clock-8.182 {parse ccyymmdd} {
    clock scan {1970 December xxxi} -format {%Y %B %Oe} -locale en_US_roman -gmt 1
} 31449600
test clock-8.183 {parse ccyymmdd} {
    clock scan {1970 Dec 31} -format {%Y %h %d} -locale en_US_roman -gmt 1
} 31449600
test clock-8.184 {parse ccyymmdd} {
    clock scan {1970 Dec xxxi} -format {%Y %h %Od} -locale en_US_roman -gmt 1
} 31449600
test clock-8.185 {parse ccyymmdd} {
    clock scan {1970 Dec 31} -format {%Y %h %e} -locale en_US_roman -gmt 1
} 31449600
test clock-8.186 {parse ccyymmdd} {
    clock scan {1970 Dec xxxi} -format {%Y %h %Oe} -locale en_US_roman -gmt 1
} 31449600
test clock-8.187 {parse ccyymmdd} {
    clock scan {1970 12 31} -format {%Y %m %d} -locale en_US_roman -gmt 1
} 31449600
test clock-8.188 {parse ccyymmdd} {
    clock scan {1970 12 xxxi} -format {%Y %m %Od} -locale en_US_roman -gmt 1
} 31449600
test clock-8.189 {parse ccyymmdd} {
    clock scan {1970 12 31} -format {%Y %m %e} -locale en_US_roman -gmt 1
} 31449600
test clock-8.190 {parse ccyymmdd} {
    clock scan {1970 12 xxxi} -format {%Y %m %Oe} -locale en_US_roman -gmt 1
} 31449600
test clock-8.191 {parse ccyymmdd} {
    clock scan {1970 xii 31} -format {%Y %Om %d} -locale en_US_roman -gmt 1
} 31449600
test clock-8.192 {parse ccyymmdd} {
    clock scan {1970 xii xxxi} -format {%Y %Om %Od} -locale en_US_roman -gmt 1
} 31449600
test clock-8.193 {parse ccyymmdd} {
    clock scan {1970 xii 31} -format {%Y %Om %e} -locale en_US_roman -gmt 1
} 31449600
test clock-8.194 {parse ccyymmdd} {
    clock scan {1970 xii xxxi} -format {%Y %Om %Oe} -locale en_US_roman -gmt 1
} 31449600
test clock-8.195 {parse ccyymmdd} {
    clock scan {1970 12 31} -format {%Y %N %d} -locale en_US_roman -gmt 1
} 31449600
test clock-8.196 {parse ccyymmdd} {
    clock scan {1970 12 xxxi} -format {%Y %N %Od} -locale en_US_roman -gmt 1
} 31449600
test clock-8.197 {parse ccyymmdd} {
    clock scan {1970 12 31} -format {%Y %N %e} -locale en_US_roman -gmt 1
} 31449600
test clock-8.198 {parse ccyymmdd} {
    clock scan {1970 12 xxxi} -format {%Y %N %Oe} -locale en_US_roman -gmt 1
} 31449600
test clock-8.199 {parse ccyymmdd} {
    clock scan 12/31/1970 -format %x -locale en_US_roman -gmt 1
} 31449600
test clock-8.200 {parse ccyymmdd} {
    clock scan 12/31/1970 -format %D -locale en_US_roman -gmt 1
} 31449600
test clock-8.201 {parse ccyymmdd} {
    clock scan {1971 Jan 02} -format {%C%y %b %d} -locale en_US_roman -gmt 1
} 31622400
test clock-8.202 {parse ccyymmdd} {
    clock scan {1971 Jan ii} -format {%C%y %b %Od} -locale en_US_roman -gmt 1
} 31622400
test clock-8.203 {parse ccyymmdd} {
    clock scan {1971 Jan  2} -format {%C%y %b %e} -locale en_US_roman -gmt 1
} 31622400
test clock-8.204 {parse ccyymmdd} {
    clock scan {1971 Jan ii} -format {%C%y %b %Oe} -locale en_US_roman -gmt 1
} 31622400
test clock-8.205 {parse ccyymmdd} {
    clock scan {1971 January 02} -format {%C%y %B %d} -locale en_US_roman -gmt 1
} 31622400
test clock-8.206 {parse ccyymmdd} {
    clock scan {1971 January ii} -format {%C%y %B %Od} -locale en_US_roman -gmt 1
} 31622400
test clock-8.207 {parse ccyymmdd} {
    clock scan {1971 January  2} -format {%C%y %B %e} -locale en_US_roman -gmt 1
} 31622400
test clock-8.208 {parse ccyymmdd} {
    clock scan {1971 January ii} -format {%C%y %B %Oe} -locale en_US_roman -gmt 1
} 31622400
test clock-8.209 {parse ccyymmdd} {
    clock scan {1971 Jan 02} -format {%C%y %h %d} -locale en_US_roman -gmt 1
} 31622400
test clock-8.210 {parse ccyymmdd} {
    clock scan {1971 Jan ii} -format {%C%y %h %Od} -locale en_US_roman -gmt 1
} 31622400
test clock-8.211 {parse ccyymmdd} {
    clock scan {1971 Jan  2} -format {%C%y %h %e} -locale en_US_roman -gmt 1
} 31622400
test clock-8.212 {parse ccyymmdd} {
    clock scan {1971 Jan ii} -format {%C%y %h %Oe} -locale en_US_roman -gmt 1
} 31622400
test clock-8.213 {parse ccyymmdd} {
    clock scan {1971 01 02} -format {%C%y %m %d} -locale en_US_roman -gmt 1
} 31622400
test clock-8.214 {parse ccyymmdd} {
    clock scan {1971 01 ii} -format {%C%y %m %Od} -locale en_US_roman -gmt 1
} 31622400
test clock-8.215 {parse ccyymmdd} {
    clock scan {1971 01  2} -format {%C%y %m %e} -locale en_US_roman -gmt 1
} 31622400
test clock-8.216 {parse ccyymmdd} {
    clock scan {1971 01 ii} -format {%C%y %m %Oe} -locale en_US_roman -gmt 1
} 31622400
test clock-8.217 {parse ccyymmdd} {
    clock scan {1971 i 02} -format {%C%y %Om %d} -locale en_US_roman -gmt 1
} 31622400
test clock-8.218 {parse ccyymmdd} {
    clock scan {1971 i ii} -format {%C%y %Om %Od} -locale en_US_roman -gmt 1
} 31622400
test clock-8.219 {parse ccyymmdd} {
    clock scan {1971 i  2} -format {%C%y %Om %e} -locale en_US_roman -gmt 1
} 31622400
test clock-8.220 {parse ccyymmdd} {
    clock scan {1971 i ii} -format {%C%y %Om %Oe} -locale en_US_roman -gmt 1
} 31622400
test clock-8.221 {parse ccyymmdd} {
    clock scan {1971  1 02} -format {%C%y %N %d} -locale en_US_roman -gmt 1
} 31622400
test clock-8.222 {parse ccyymmdd} {
    clock scan {1971  1 ii} -format {%C%y %N %Od} -locale en_US_roman -gmt 1
} 31622400
test clock-8.223 {parse ccyymmdd} {
    clock scan {1971  1  2} -format {%C%y %N %e} -locale en_US_roman -gmt 1
} 31622400
test clock-8.224 {parse ccyymmdd} {
    clock scan {1971  1 ii} -format {%C%y %N %Oe} -locale en_US_roman -gmt 1
} 31622400
test clock-8.225 {parse ccyymmdd} {
    clock scan {1971 Jan 02} -format {%Y %b %d} -locale en_US_roman -gmt 1
} 31622400
test clock-8.226 {parse ccyymmdd} {
    clock scan {1971 Jan ii} -format {%Y %b %Od} -locale en_US_roman -gmt 1
} 31622400
test clock-8.227 {parse ccyymmdd} {
    clock scan {1971 Jan  2} -format {%Y %b %e} -locale en_US_roman -gmt 1
} 31622400
test clock-8.228 {parse ccyymmdd} {
    clock scan {1971 Jan ii} -format {%Y %b %Oe} -locale en_US_roman -gmt 1
} 31622400
test clock-8.229 {parse ccyymmdd} {
    clock scan {1971 January 02} -format {%Y %B %d} -locale en_US_roman -gmt 1
} 31622400
test clock-8.230 {parse ccyymmdd} {
    clock scan {1971 January ii} -format {%Y %B %Od} -locale en_US_roman -gmt 1
} 31622400
test clock-8.231 {parse ccyymmdd} {
    clock scan {1971 January  2} -format {%Y %B %e} -locale en_US_roman -gmt 1
} 31622400
test clock-8.232 {parse ccyymmdd} {
    clock scan {1971 January ii} -format {%Y %B %Oe} -locale en_US_roman -gmt 1
} 31622400
test clock-8.233 {parse ccyymmdd} {
    clock scan {1971 Jan 02} -format {%Y %h %d} -locale en_US_roman -gmt 1
} 31622400
test clock-8.234 {parse ccyymmdd} {
    clock scan {1971 Jan ii} -format {%Y %h %Od} -locale en_US_roman -gmt 1
} 31622400
test clock-8.235 {parse ccyymmdd} {
    clock scan {1971 Jan  2} -format {%Y %h %e} -locale en_US_roman -gmt 1
} 31622400
test clock-8.236 {parse ccyymmdd} {
    clock scan {1971 Jan ii} -format {%Y %h %Oe} -locale en_US_roman -gmt 1
} 31622400
test clock-8.237 {parse ccyymmdd} {
    clock scan {1971 01 02} -format {%Y %m %d} -locale en_US_roman -gmt 1
} 31622400
test clock-8.238 {parse ccyymmdd} {
    clock scan {1971 01 ii} -format {%Y %m %Od} -locale en_US_roman -gmt 1
} 31622400
test clock-8.239 {parse ccyymmdd} {
    clock scan {1971 01  2} -format {%Y %m %e} -locale en_US_roman -gmt 1
} 31622400
test clock-8.240 {parse ccyymmdd} {
    clock scan {1971 01 ii} -format {%Y %m %Oe} -locale en_US_roman -gmt 1
} 31622400
test clock-8.241 {parse ccyymmdd} {
    clock scan {1971 i 02} -format {%Y %Om %d} -locale en_US_roman -gmt 1
} 31622400
test clock-8.242 {parse ccyymmdd} {
    clock scan {1971 i ii} -format {%Y %Om %Od} -locale en_US_roman -gmt 1
} 31622400
test clock-8.243 {parse ccyymmdd} {
    clock scan {1971 i  2} -format {%Y %Om %e} -locale en_US_roman -gmt 1
} 31622400
test clock-8.244 {parse ccyymmdd} {
    clock scan {1971 i ii} -format {%Y %Om %Oe} -locale en_US_roman -gmt 1
} 31622400
test clock-8.245 {parse ccyymmdd} {
    clock scan {1971  1 02} -format {%Y %N %d} -locale en_US_roman -gmt 1
} 31622400
test clock-8.246 {parse ccyymmdd} {
    clock scan {1971  1 ii} -format {%Y %N %Od} -locale en_US_roman -gmt 1
} 31622400
test clock-8.247 {parse ccyymmdd} {
    clock scan {1971  1  2} -format {%Y %N %e} -locale en_US_roman -gmt 1
} 31622400
test clock-8.248 {parse ccyymmdd} {
    clock scan {1971  1 ii} -format {%Y %N %Oe} -locale en_US_roman -gmt 1
} 31622400
test clock-8.249 {parse ccyymmdd} {
    clock scan 01/02/1971 -format %x -locale en_US_roman -gmt 1
} 31622400
test clock-8.250 {parse ccyymmdd} {
    clock scan 01/02/1971 -format %D -locale en_US_roman -gmt 1
} 31622400
test clock-8.251 {parse ccyymmdd} {
    clock scan {1971 Jan 31} -format {%C%y %b %d} -locale en_US_roman -gmt 1
} 34128000
test clock-8.252 {parse ccyymmdd} {
    clock scan {1971 Jan xxxi} -format {%C%y %b %Od} -locale en_US_roman -gmt 1
} 34128000
test clock-8.253 {parse ccyymmdd} {
    clock scan {1971 Jan 31} -format {%C%y %b %e} -locale en_US_roman -gmt 1
} 34128000
test clock-8.254 {parse ccyymmdd} {
    clock scan {1971 Jan xxxi} -format {%C%y %b %Oe} -locale en_US_roman -gmt 1
} 34128000
test clock-8.255 {parse ccyymmdd} {
    clock scan {1971 January 31} -format {%C%y %B %d} -locale en_US_roman -gmt 1
} 34128000
test clock-8.256 {parse ccyymmdd} {
    clock scan {1971 January xxxi} -format {%C%y %B %Od} -locale en_US_roman -gmt 1
} 34128000
test clock-8.257 {parse ccyymmdd} {
    clock scan {1971 January 31} -format {%C%y %B %e} -locale en_US_roman -gmt 1
} 34128000
test clock-8.258 {parse ccyymmdd} {
    clock scan {1971 January xxxi} -format {%C%y %B %Oe} -locale en_US_roman -gmt 1
} 34128000
test clock-8.259 {parse ccyymmdd} {
    clock scan {1971 Jan 31} -format {%C%y %h %d} -locale en_US_roman -gmt 1
} 34128000
test clock-8.260 {parse ccyymmdd} {
    clock scan {1971 Jan xxxi} -format {%C%y %h %Od} -locale en_US_roman -gmt 1
} 34128000
test clock-8.261 {parse ccyymmdd} {
    clock scan {1971 Jan 31} -format {%C%y %h %e} -locale en_US_roman -gmt 1
} 34128000
test clock-8.262 {parse ccyymmdd} {
    clock scan {1971 Jan xxxi} -format {%C%y %h %Oe} -locale en_US_roman -gmt 1
} 34128000
test clock-8.263 {parse ccyymmdd} {
    clock scan {1971 01 31} -format {%C%y %m %d} -locale en_US_roman -gmt 1
} 34128000
test clock-8.264 {parse ccyymmdd} {
    clock scan {1971 01 xxxi} -format {%C%y %m %Od} -locale en_US_roman -gmt 1
} 34128000
test clock-8.265 {parse ccyymmdd} {
    clock scan {1971 01 31} -format {%C%y %m %e} -locale en_US_roman -gmt 1
} 34128000
test clock-8.266 {parse ccyymmdd} {
    clock scan {1971 01 xxxi} -format {%C%y %m %Oe} -locale en_US_roman -gmt 1
} 34128000
test clock-8.267 {parse ccyymmdd} {
    clock scan {1971 i 31} -format {%C%y %Om %d} -locale en_US_roman -gmt 1
} 34128000
test clock-8.268 {parse ccyymmdd} {
    clock scan {1971 i xxxi} -format {%C%y %Om %Od} -locale en_US_roman -gmt 1
} 34128000
test clock-8.269 {parse ccyymmdd} {
    clock scan {1971 i 31} -format {%C%y %Om %e} -locale en_US_roman -gmt 1
} 34128000
test clock-8.270 {parse ccyymmdd} {
    clock scan {1971 i xxxi} -format {%C%y %Om %Oe} -locale en_US_roman -gmt 1
} 34128000
test clock-8.271 {parse ccyymmdd} {
    clock scan {1971  1 31} -format {%C%y %N %d} -locale en_US_roman -gmt 1
} 34128000
test clock-8.272 {parse ccyymmdd} {
    clock scan {1971  1 xxxi} -format {%C%y %N %Od} -locale en_US_roman -gmt 1
} 34128000
test clock-8.273 {parse ccyymmdd} {
    clock scan {1971  1 31} -format {%C%y %N %e} -locale en_US_roman -gmt 1
} 34128000
test clock-8.274 {parse ccyymmdd} {
    clock scan {1971  1 xxxi} -format {%C%y %N %Oe} -locale en_US_roman -gmt 1
} 34128000
test clock-8.275 {parse ccyymmdd} {
    clock scan {1971 Jan 31} -format {%Y %b %d} -locale en_US_roman -gmt 1
} 34128000
test clock-8.276 {parse ccyymmdd} {
    clock scan {1971 Jan xxxi} -format {%Y %b %Od} -locale en_US_roman -gmt 1
} 34128000
test clock-8.277 {parse ccyymmdd} {
    clock scan {1971 Jan 31} -format {%Y %b %e} -locale en_US_roman -gmt 1
} 34128000
test clock-8.278 {parse ccyymmdd} {
    clock scan {1971 Jan xxxi} -format {%Y %b %Oe} -locale en_US_roman -gmt 1
} 34128000
test clock-8.279 {parse ccyymmdd} {
    clock scan {1971 January 31} -format {%Y %B %d} -locale en_US_roman -gmt 1
} 34128000
test clock-8.280 {parse ccyymmdd} {
    clock scan {1971 January xxxi} -format {%Y %B %Od} -locale en_US_roman -gmt 1
} 34128000
test clock-8.281 {parse ccyymmdd} {
    clock scan {1971 January 31} -format {%Y %B %e} -locale en_US_roman -gmt 1
} 34128000
test clock-8.282 {parse ccyymmdd} {
    clock scan {1971 January xxxi} -format {%Y %B %Oe} -locale en_US_roman -gmt 1
} 34128000
test clock-8.283 {parse ccyymmdd} {
    clock scan {1971 Jan 31} -format {%Y %h %d} -locale en_US_roman -gmt 1
} 34128000
test clock-8.284 {parse ccyymmdd} {
    clock scan {1971 Jan xxxi} -format {%Y %h %Od} -locale en_US_roman -gmt 1
} 34128000
test clock-8.285 {parse ccyymmdd} {
    clock scan {1971 Jan 31} -format {%Y %h %e} -locale en_US_roman -gmt 1
} 34128000
test clock-8.286 {parse ccyymmdd} {
    clock scan {1971 Jan xxxi} -format {%Y %h %Oe} -locale en_US_roman -gmt 1
} 34128000
test clock-8.287 {parse ccyymmdd} {
    clock scan {1971 01 31} -format {%Y %m %d} -locale en_US_roman -gmt 1
} 34128000
test clock-8.288 {parse ccyymmdd} {
    clock scan {1971 01 xxxi} -format {%Y %m %Od} -locale en_US_roman -gmt 1
} 34128000
test clock-8.289 {parse ccyymmdd} {
    clock scan {1971 01 31} -format {%Y %m %e} -locale en_US_roman -gmt 1
} 34128000
test clock-8.290 {parse ccyymmdd} {
    clock scan {1971 01 xxxi} -format {%Y %m %Oe} -locale en_US_roman -gmt 1
} 34128000
test clock-8.291 {parse ccyymmdd} {
    clock scan {1971 i 31} -format {%Y %Om %d} -locale en_US_roman -gmt 1
} 34128000
test clock-8.292 {parse ccyymmdd} {
    clock scan {1971 i xxxi} -format {%Y %Om %Od} -locale en_US_roman -gmt 1
} 34128000
test clock-8.293 {parse ccyymmdd} {
    clock scan {1971 i 31} -format {%Y %Om %e} -locale en_US_roman -gmt 1
} 34128000
test clock-8.294 {parse ccyymmdd} {
    clock scan {1971 i xxxi} -format {%Y %Om %Oe} -locale en_US_roman -gmt 1
} 34128000
test clock-8.295 {parse ccyymmdd} {
    clock scan {1971  1 31} -format {%Y %N %d} -locale en_US_roman -gmt 1
} 34128000
test clock-8.296 {parse ccyymmdd} {
    clock scan {1971  1 xxxi} -format {%Y %N %Od} -locale en_US_roman -gmt 1
} 34128000
test clock-8.297 {parse ccyymmdd} {
    clock scan {1971  1 31} -format {%Y %N %e} -locale en_US_roman -gmt 1
} 34128000
test clock-8.298 {parse ccyymmdd} {
    clock scan {1971  1 xxxi} -format {%Y %N %Oe} -locale en_US_roman -gmt 1
} 34128000
test clock-8.299 {parse ccyymmdd} {
    clock scan 01/31/1971 -format %x -locale en_US_roman -gmt 1
} 34128000
test clock-8.300 {parse ccyymmdd} {
    clock scan 01/31/1971 -format %D -locale en_US_roman -gmt 1
} 34128000
test clock-8.301 {parse ccyymmdd} {
    clock scan {1971 Dec 02} -format {%C%y %b %d} -locale en_US_roman -gmt 1
} 60480000
test clock-8.302 {parse ccyymmdd} {
    clock scan {1971 Dec ii} -format {%C%y %b %Od} -locale en_US_roman -gmt 1
} 60480000
test clock-8.303 {parse ccyymmdd} {
    clock scan {1971 Dec  2} -format {%C%y %b %e} -locale en_US_roman -gmt 1
} 60480000
test clock-8.304 {parse ccyymmdd} {
    clock scan {1971 Dec ii} -format {%C%y %b %Oe} -locale en_US_roman -gmt 1
} 60480000
test clock-8.305 {parse ccyymmdd} {
    clock scan {1971 December 02} -format {%C%y %B %d} -locale en_US_roman -gmt 1
} 60480000
test clock-8.306 {parse ccyymmdd} {
    clock scan {1971 December ii} -format {%C%y %B %Od} -locale en_US_roman -gmt 1
} 60480000
test clock-8.307 {parse ccyymmdd} {
    clock scan {1971 December  2} -format {%C%y %B %e} -locale en_US_roman -gmt 1
} 60480000
test clock-8.308 {parse ccyymmdd} {
    clock scan {1971 December ii} -format {%C%y %B %Oe} -locale en_US_roman -gmt 1
} 60480000
test clock-8.309 {parse ccyymmdd} {
    clock scan {1971 Dec 02} -format {%C%y %h %d} -locale en_US_roman -gmt 1
} 60480000
test clock-8.310 {parse ccyymmdd} {
    clock scan {1971 Dec ii} -format {%C%y %h %Od} -locale en_US_roman -gmt 1
} 60480000
test clock-8.311 {parse ccyymmdd} {
    clock scan {1971 Dec  2} -format {%C%y %h %e} -locale en_US_roman -gmt 1
} 60480000
test clock-8.312 {parse ccyymmdd} {
    clock scan {1971 Dec ii} -format {%C%y %h %Oe} -locale en_US_roman -gmt 1
} 60480000
test clock-8.313 {parse ccyymmdd} {
    clock scan {1971 12 02} -format {%C%y %m %d} -locale en_US_roman -gmt 1
} 60480000
test clock-8.314 {parse ccyymmdd} {
    clock scan {1971 12 ii} -format {%C%y %m %Od} -locale en_US_roman -gmt 1
} 60480000
test clock-8.315 {parse ccyymmdd} {
    clock scan {1971 12  2} -format {%C%y %m %e} -locale en_US_roman -gmt 1
} 60480000
test clock-8.316 {parse ccyymmdd} {
    clock scan {1971 12 ii} -format {%C%y %m %Oe} -locale en_US_roman -gmt 1
} 60480000
test clock-8.317 {parse ccyymmdd} {
    clock scan {1971 xii 02} -format {%C%y %Om %d} -locale en_US_roman -gmt 1
} 60480000
test clock-8.318 {parse ccyymmdd} {
    clock scan {1971 xii ii} -format {%C%y %Om %Od} -locale en_US_roman -gmt 1
} 60480000
test clock-8.319 {parse ccyymmdd} {
    clock scan {1971 xii  2} -format {%C%y %Om %e} -locale en_US_roman -gmt 1
} 60480000
test clock-8.320 {parse ccyymmdd} {
    clock scan {1971 xii ii} -format {%C%y %Om %Oe} -locale en_US_roman -gmt 1
} 60480000
test clock-8.321 {parse ccyymmdd} {
    clock scan {1971 12 02} -format {%C%y %N %d} -locale en_US_roman -gmt 1
} 60480000
test clock-8.322 {parse ccyymmdd} {
    clock scan {1971 12 ii} -format {%C%y %N %Od} -locale en_US_roman -gmt 1
} 60480000
test clock-8.323 {parse ccyymmdd} {
    clock scan {1971 12  2} -format {%C%y %N %e} -locale en_US_roman -gmt 1
} 60480000
test clock-8.324 {parse ccyymmdd} {
    clock scan {1971 12 ii} -format {%C%y %N %Oe} -locale en_US_roman -gmt 1
} 60480000
test clock-8.325 {parse ccyymmdd} {
    clock scan {1971 Dec 02} -format {%Y %b %d} -locale en_US_roman -gmt 1
} 60480000
test clock-8.326 {parse ccyymmdd} {
    clock scan {1971 Dec ii} -format {%Y %b %Od} -locale en_US_roman -gmt 1
} 60480000
test clock-8.327 {parse ccyymmdd} {
    clock scan {1971 Dec  2} -format {%Y %b %e} -locale en_US_roman -gmt 1
} 60480000
test clock-8.328 {parse ccyymmdd} {
    clock scan {1971 Dec ii} -format {%Y %b %Oe} -locale en_US_roman -gmt 1
} 60480000
test clock-8.329 {parse ccyymmdd} {
    clock scan {1971 December 02} -format {%Y %B %d} -locale en_US_roman -gmt 1
} 60480000
test clock-8.330 {parse ccyymmdd} {
    clock scan {1971 December ii} -format {%Y %B %Od} -locale en_US_roman -gmt 1
} 60480000
test clock-8.331 {parse ccyymmdd} {
    clock scan {1971 December  2} -format {%Y %B %e} -locale en_US_roman -gmt 1
} 60480000
test clock-8.332 {parse ccyymmdd} {
    clock scan {1971 December ii} -format {%Y %B %Oe} -locale en_US_roman -gmt 1
} 60480000
test clock-8.333 {parse ccyymmdd} {
    clock scan {1971 Dec 02} -format {%Y %h %d} -locale en_US_roman -gmt 1
} 60480000
test clock-8.334 {parse ccyymmdd} {
    clock scan {1971 Dec ii} -format {%Y %h %Od} -locale en_US_roman -gmt 1
} 60480000
test clock-8.335 {parse ccyymmdd} {
    clock scan {1971 Dec  2} -format {%Y %h %e} -locale en_US_roman -gmt 1
} 60480000
test clock-8.336 {parse ccyymmdd} {
    clock scan {1971 Dec ii} -format {%Y %h %Oe} -locale en_US_roman -gmt 1
} 60480000
test clock-8.337 {parse ccyymmdd} {
    clock scan {1971 12 02} -format {%Y %m %d} -locale en_US_roman -gmt 1
} 60480000
test clock-8.338 {parse ccyymmdd} {
    clock scan {1971 12 ii} -format {%Y %m %Od} -locale en_US_roman -gmt 1
} 60480000
test clock-8.339 {parse ccyymmdd} {
    clock scan {1971 12  2} -format {%Y %m %e} -locale en_US_roman -gmt 1
} 60480000
test clock-8.340 {parse ccyymmdd} {
    clock scan {1971 12 ii} -format {%Y %m %Oe} -locale en_US_roman -gmt 1
} 60480000
test clock-8.341 {parse ccyymmdd} {
    clock scan {1971 xii 02} -format {%Y %Om %d} -locale en_US_roman -gmt 1
} 60480000
test clock-8.342 {parse ccyymmdd} {
    clock scan {1971 xii ii} -format {%Y %Om %Od} -locale en_US_roman -gmt 1
} 60480000
test clock-8.343 {parse ccyymmdd} {
    clock scan {1971 xii  2} -format {%Y %Om %e} -locale en_US_roman -gmt 1
} 60480000
test clock-8.344 {parse ccyymmdd} {
    clock scan {1971 xii ii} -format {%Y %Om %Oe} -locale en_US_roman -gmt 1
} 60480000
test clock-8.345 {parse ccyymmdd} {
    clock scan {1971 12 02} -format {%Y %N %d} -locale en_US_roman -gmt 1
} 60480000
test clock-8.346 {parse ccyymmdd} {
    clock scan {1971 12 ii} -format {%Y %N %Od} -locale en_US_roman -gmt 1
} 60480000
test clock-8.347 {parse ccyymmdd} {
    clock scan {1971 12  2} -format {%Y %N %e} -locale en_US_roman -gmt 1
} 60480000
test clock-8.348 {parse ccyymmdd} {
    clock scan {1971 12 ii} -format {%Y %N %Oe} -locale en_US_roman -gmt 1
} 60480000
test clock-8.349 {parse ccyymmdd} {
    clock scan 12/02/1971 -format %x -locale en_US_roman -gmt 1
} 60480000
test clock-8.350 {parse ccyymmdd} {
    clock scan 12/02/1971 -format %D -locale en_US_roman -gmt 1
} 60480000
test clock-8.351 {parse ccyymmdd} {
    clock scan {1971 Dec 31} -format {%C%y %b %d} -locale en_US_roman -gmt 1
} 62985600
test clock-8.352 {parse ccyymmdd} {
    clock scan {1971 Dec xxxi} -format {%C%y %b %Od} -locale en_US_roman -gmt 1
} 62985600
test clock-8.353 {parse ccyymmdd} {
    clock scan {1971 Dec 31} -format {%C%y %b %e} -locale en_US_roman -gmt 1
} 62985600
test clock-8.354 {parse ccyymmdd} {
    clock scan {1971 Dec xxxi} -format {%C%y %b %Oe} -locale en_US_roman -gmt 1
} 62985600
test clock-8.355 {parse ccyymmdd} {
    clock scan {1971 December 31} -format {%C%y %B %d} -locale en_US_roman -gmt 1
} 62985600
test clock-8.356 {parse ccyymmdd} {
    clock scan {1971 December xxxi} -format {%C%y %B %Od} -locale en_US_roman -gmt 1
} 62985600
test clock-8.357 {parse ccyymmdd} {
    clock scan {1971 December 31} -format {%C%y %B %e} -locale en_US_roman -gmt 1
} 62985600
test clock-8.358 {parse ccyymmdd} {
    clock scan {1971 December xxxi} -format {%C%y %B %Oe} -locale en_US_roman -gmt 1
} 62985600
test clock-8.359 {parse ccyymmdd} {
    clock scan {1971 Dec 31} -format {%C%y %h %d} -locale en_US_roman -gmt 1
} 62985600
test clock-8.360 {parse ccyymmdd} {
    clock scan {1971 Dec xxxi} -format {%C%y %h %Od} -locale en_US_roman -gmt 1
} 62985600
test clock-8.361 {parse ccyymmdd} {
    clock scan {1971 Dec 31} -format {%C%y %h %e} -locale en_US_roman -gmt 1
} 62985600
test clock-8.362 {parse ccyymmdd} {
    clock scan {1971 Dec xxxi} -format {%C%y %h %Oe} -locale en_US_roman -gmt 1
} 62985600
test clock-8.363 {parse ccyymmdd} {
    clock scan {1971 12 31} -format {%C%y %m %d} -locale en_US_roman -gmt 1
} 62985600
test clock-8.364 {parse ccyymmdd} {
    clock scan {1971 12 xxxi} -format {%C%y %m %Od} -locale en_US_roman -gmt 1
} 62985600
test clock-8.365 {parse ccyymmdd} {
    clock scan {1971 12 31} -format {%C%y %m %e} -locale en_US_roman -gmt 1
} 62985600
test clock-8.366 {parse ccyymmdd} {
    clock scan {1971 12 xxxi} -format {%C%y %m %Oe} -locale en_US_roman -gmt 1
} 62985600
test clock-8.367 {parse ccyymmdd} {
    clock scan {1971 xii 31} -format {%C%y %Om %d} -locale en_US_roman -gmt 1
} 62985600
test clock-8.368 {parse ccyymmdd} {
    clock scan {1971 xii xxxi} -format {%C%y %Om %Od} -locale en_US_roman -gmt 1
} 62985600
test clock-8.369 {parse ccyymmdd} {
    clock scan {1971 xii 31} -format {%C%y %Om %e} -locale en_US_roman -gmt 1
} 62985600
test clock-8.370 {parse ccyymmdd} {
    clock scan {1971 xii xxxi} -format {%C%y %Om %Oe} -locale en_US_roman -gmt 1
} 62985600
test clock-8.371 {parse ccyymmdd} {
    clock scan {1971 12 31} -format {%C%y %N %d} -locale en_US_roman -gmt 1
} 62985600
test clock-8.372 {parse ccyymmdd} {
    clock scan {1971 12 xxxi} -format {%C%y %N %Od} -locale en_US_roman -gmt 1
} 62985600
test clock-8.373 {parse ccyymmdd} {
    clock scan {1971 12 31} -format {%C%y %N %e} -locale en_US_roman -gmt 1
} 62985600
test clock-8.374 {parse ccyymmdd} {
    clock scan {1971 12 xxxi} -format {%C%y %N %Oe} -locale en_US_roman -gmt 1
} 62985600
test clock-8.375 {parse ccyymmdd} {
    clock scan {1971 Dec 31} -format {%Y %b %d} -locale en_US_roman -gmt 1
} 62985600
test clock-8.376 {parse ccyymmdd} {
    clock scan {1971 Dec xxxi} -format {%Y %b %Od} -locale en_US_roman -gmt 1
} 62985600
test clock-8.377 {parse ccyymmdd} {
    clock scan {1971 Dec 31} -format {%Y %b %e} -locale en_US_roman -gmt 1
} 62985600
test clock-8.378 {parse ccyymmdd} {
    clock scan {1971 Dec xxxi} -format {%Y %b %Oe} -locale en_US_roman -gmt 1
} 62985600
test clock-8.379 {parse ccyymmdd} {
    clock scan {1971 December 31} -format {%Y %B %d} -locale en_US_roman -gmt 1
} 62985600
test clock-8.380 {parse ccyymmdd} {
    clock scan {1971 December xxxi} -format {%Y %B %Od} -locale en_US_roman -gmt 1
} 62985600
test clock-8.381 {parse ccyymmdd} {
    clock scan {1971 December 31} -format {%Y %B %e} -locale en_US_roman -gmt 1
} 62985600
test clock-8.382 {parse ccyymmdd} {
    clock scan {1971 December xxxi} -format {%Y %B %Oe} -locale en_US_roman -gmt 1
} 62985600
test clock-8.383 {parse ccyymmdd} {
    clock scan {1971 Dec 31} -format {%Y %h %d} -locale en_US_roman -gmt 1
} 62985600
test clock-8.384 {parse ccyymmdd} {
    clock scan {1971 Dec xxxi} -format {%Y %h %Od} -locale en_US_roman -gmt 1
} 62985600
test clock-8.385 {parse ccyymmdd} {
    clock scan {1971 Dec 31} -format {%Y %h %e} -locale en_US_roman -gmt 1
} 62985600
test clock-8.386 {parse ccyymmdd} {
    clock scan {1971 Dec xxxi} -format {%Y %h %Oe} -locale en_US_roman -gmt 1
} 62985600
test clock-8.387 {parse ccyymmdd} {
    clock scan {1971 12 31} -format {%Y %m %d} -locale en_US_roman -gmt 1
} 62985600
test clock-8.388 {parse ccyymmdd} {
    clock scan {1971 12 xxxi} -format {%Y %m %Od} -locale en_US_roman -gmt 1
} 62985600
test clock-8.389 {parse ccyymmdd} {
    clock scan {1971 12 31} -format {%Y %m %e} -locale en_US_roman -gmt 1
} 62985600
test clock-8.390 {parse ccyymmdd} {
    clock scan {1971 12 xxxi} -format {%Y %m %Oe} -locale en_US_roman -gmt 1
} 62985600
test clock-8.391 {parse ccyymmdd} {
    clock scan {1971 xii 31} -format {%Y %Om %d} -locale en_US_roman -gmt 1
} 62985600
test clock-8.392 {parse ccyymmdd} {
    clock scan {1971 xii xxxi} -format {%Y %Om %Od} -locale en_US_roman -gmt 1
} 62985600
test clock-8.393 {parse ccyymmdd} {
    clock scan {1971 xii 31} -format {%Y %Om %e} -locale en_US_roman -gmt 1
} 62985600
test clock-8.394 {parse ccyymmdd} {
    clock scan {1971 xii xxxi} -format {%Y %Om %Oe} -locale en_US_roman -gmt 1
} 62985600
test clock-8.395 {parse ccyymmdd} {
    clock scan {1971 12 31} -format {%Y %N %d} -locale en_US_roman -gmt 1
} 62985600
test clock-8.396 {parse ccyymmdd} {
    clock scan {1971 12 xxxi} -format {%Y %N %Od} -locale en_US_roman -gmt 1
} 62985600
test clock-8.397 {parse ccyymmdd} {
    clock scan {1971 12 31} -format {%Y %N %e} -locale en_US_roman -gmt 1
} 62985600
test clock-8.398 {parse ccyymmdd} {
    clock scan {1971 12 xxxi} -format {%Y %N %Oe} -locale en_US_roman -gmt 1
} 62985600
test clock-8.399 {parse ccyymmdd} {
    clock scan 12/31/1971 -format %x -locale en_US_roman -gmt 1
} 62985600
test clock-8.400 {parse ccyymmdd} {
    clock scan 12/31/1971 -format %D -locale en_US_roman -gmt 1
} 62985600
test clock-8.401 {parse ccyymmdd} {
    clock scan {2000 Jan 02} -format {%C%y %b %d} -locale en_US_roman -gmt 1
} 946771200
test clock-8.402 {parse ccyymmdd} {
    clock scan {2000 Jan ii} -format {%C%y %b %Od} -locale en_US_roman -gmt 1
} 946771200
test clock-8.403 {parse ccyymmdd} {
    clock scan {2000 Jan  2} -format {%C%y %b %e} -locale en_US_roman -gmt 1
} 946771200
test clock-8.404 {parse ccyymmdd} {
    clock scan {2000 Jan ii} -format {%C%y %b %Oe} -locale en_US_roman -gmt 1
} 946771200
test clock-8.405 {parse ccyymmdd} {
    clock scan {2000 January 02} -format {%C%y %B %d} -locale en_US_roman -gmt 1
} 946771200
test clock-8.406 {parse ccyymmdd} {
    clock scan {2000 January ii} -format {%C%y %B %Od} -locale en_US_roman -gmt 1
} 946771200
test clock-8.407 {parse ccyymmdd} {
    clock scan {2000 January  2} -format {%C%y %B %e} -locale en_US_roman -gmt 1
} 946771200
test clock-8.408 {parse ccyymmdd} {
    clock scan {2000 January ii} -format {%C%y %B %Oe} -locale en_US_roman -gmt 1
} 946771200
test clock-8.409 {parse ccyymmdd} {
    clock scan {2000 Jan 02} -format {%C%y %h %d} -locale en_US_roman -gmt 1
} 946771200
test clock-8.410 {parse ccyymmdd} {
    clock scan {2000 Jan ii} -format {%C%y %h %Od} -locale en_US_roman -gmt 1
} 946771200
test clock-8.411 {parse ccyymmdd} {
    clock scan {2000 Jan  2} -format {%C%y %h %e} -locale en_US_roman -gmt 1
} 946771200
test clock-8.412 {parse ccyymmdd} {
    clock scan {2000 Jan ii} -format {%C%y %h %Oe} -locale en_US_roman -gmt 1
} 946771200
test clock-8.413 {parse ccyymmdd} {
    clock scan {2000 01 02} -format {%C%y %m %d} -locale en_US_roman -gmt 1
} 946771200
test clock-8.414 {parse ccyymmdd} {
    clock scan {2000 01 ii} -format {%C%y %m %Od} -locale en_US_roman -gmt 1
} 946771200
test clock-8.415 {parse ccyymmdd} {
    clock scan {2000 01  2} -format {%C%y %m %e} -locale en_US_roman -gmt 1
} 946771200
test clock-8.416 {parse ccyymmdd} {
    clock scan {2000 01 ii} -format {%C%y %m %Oe} -locale en_US_roman -gmt 1
} 946771200
test clock-8.417 {parse ccyymmdd} {
    clock scan {2000 i 02} -format {%C%y %Om %d} -locale en_US_roman -gmt 1
} 946771200
test clock-8.418 {parse ccyymmdd} {
    clock scan {2000 i ii} -format {%C%y %Om %Od} -locale en_US_roman -gmt 1
} 946771200
test clock-8.419 {parse ccyymmdd} {
    clock scan {2000 i  2} -format {%C%y %Om %e} -locale en_US_roman -gmt 1
} 946771200
test clock-8.420 {parse ccyymmdd} {
    clock scan {2000 i ii} -format {%C%y %Om %Oe} -locale en_US_roman -gmt 1
} 946771200
test clock-8.421 {parse ccyymmdd} {
    clock scan {2000  1 02} -format {%C%y %N %d} -locale en_US_roman -gmt 1
} 946771200
test clock-8.422 {parse ccyymmdd} {
    clock scan {2000  1 ii} -format {%C%y %N %Od} -locale en_US_roman -gmt 1
} 946771200
test clock-8.423 {parse ccyymmdd} {
    clock scan {2000  1  2} -format {%C%y %N %e} -locale en_US_roman -gmt 1
} 946771200
test clock-8.424 {parse ccyymmdd} {
    clock scan {2000  1 ii} -format {%C%y %N %Oe} -locale en_US_roman -gmt 1
} 946771200
test clock-8.425 {parse ccyymmdd} {
    clock scan {2000 Jan 02} -format {%Y %b %d} -locale en_US_roman -gmt 1
} 946771200
test clock-8.426 {parse ccyymmdd} {
    clock scan {2000 Jan ii} -format {%Y %b %Od} -locale en_US_roman -gmt 1
} 946771200
test clock-8.427 {parse ccyymmdd} {
    clock scan {2000 Jan  2} -format {%Y %b %e} -locale en_US_roman -gmt 1
} 946771200
test clock-8.428 {parse ccyymmdd} {
    clock scan {2000 Jan ii} -format {%Y %b %Oe} -locale en_US_roman -gmt 1
} 946771200
test clock-8.429 {parse ccyymmdd} {
    clock scan {2000 January 02} -format {%Y %B %d} -locale en_US_roman -gmt 1
} 946771200
test clock-8.430 {parse ccyymmdd} {
    clock scan {2000 January ii} -format {%Y %B %Od} -locale en_US_roman -gmt 1
} 946771200
test clock-8.431 {parse ccyymmdd} {
    clock scan {2000 January  2} -format {%Y %B %e} -locale en_US_roman -gmt 1
} 946771200
test clock-8.432 {parse ccyymmdd} {
    clock scan {2000 January ii} -format {%Y %B %Oe} -locale en_US_roman -gmt 1
} 946771200
test clock-8.433 {parse ccyymmdd} {
    clock scan {2000 Jan 02} -format {%Y %h %d} -locale en_US_roman -gmt 1
} 946771200
test clock-8.434 {parse ccyymmdd} {
    clock scan {2000 Jan ii} -format {%Y %h %Od} -locale en_US_roman -gmt 1
} 946771200
test clock-8.435 {parse ccyymmdd} {
    clock scan {2000 Jan  2} -format {%Y %h %e} -locale en_US_roman -gmt 1
} 946771200
test clock-8.436 {parse ccyymmdd} {
    clock scan {2000 Jan ii} -format {%Y %h %Oe} -locale en_US_roman -gmt 1
} 946771200
test clock-8.437 {parse ccyymmdd} {
    clock scan {2000 01 02} -format {%Y %m %d} -locale en_US_roman -gmt 1
} 946771200
test clock-8.438 {parse ccyymmdd} {
    clock scan {2000 01 ii} -format {%Y %m %Od} -locale en_US_roman -gmt 1
} 946771200
test clock-8.439 {parse ccyymmdd} {
    clock scan {2000 01  2} -format {%Y %m %e} -locale en_US_roman -gmt 1
} 946771200
test clock-8.440 {parse ccyymmdd} {
    clock scan {2000 01 ii} -format {%Y %m %Oe} -locale en_US_roman -gmt 1
} 946771200
test clock-8.441 {parse ccyymmdd} {
    clock scan {2000 i 02} -format {%Y %Om %d} -locale en_US_roman -gmt 1
} 946771200
test clock-8.442 {parse ccyymmdd} {
    clock scan {2000 i ii} -format {%Y %Om %Od} -locale en_US_roman -gmt 1
} 946771200
test clock-8.443 {parse ccyymmdd} {
    clock scan {2000 i  2} -format {%Y %Om %e} -locale en_US_roman -gmt 1
} 946771200
test clock-8.444 {parse ccyymmdd} {
    clock scan {2000 i ii} -format {%Y %Om %Oe} -locale en_US_roman -gmt 1
} 946771200
test clock-8.445 {parse ccyymmdd} {
    clock scan {2000  1 02} -format {%Y %N %d} -locale en_US_roman -gmt 1
} 946771200
test clock-8.446 {parse ccyymmdd} {
    clock scan {2000  1 ii} -format {%Y %N %Od} -locale en_US_roman -gmt 1
} 946771200
test clock-8.447 {parse ccyymmdd} {
    clock scan {2000  1  2} -format {%Y %N %e} -locale en_US_roman -gmt 1
} 946771200
test clock-8.448 {parse ccyymmdd} {
    clock scan {2000  1 ii} -format {%Y %N %Oe} -locale en_US_roman -gmt 1
} 946771200
test clock-8.449 {parse ccyymmdd} {
    clock scan 01/02/2000 -format %x -locale en_US_roman -gmt 1
} 946771200
test clock-8.450 {parse ccyymmdd} {
    clock scan 01/02/2000 -format %D -locale en_US_roman -gmt 1
} 946771200
test clock-8.451 {parse ccyymmdd} {
    clock scan {2000 Jan 31} -format {%C%y %b %d} -locale en_US_roman -gmt 1
} 949276800
test clock-8.452 {parse ccyymmdd} {
    clock scan {2000 Jan xxxi} -format {%C%y %b %Od} -locale en_US_roman -gmt 1
} 949276800
test clock-8.453 {parse ccyymmdd} {
    clock scan {2000 Jan 31} -format {%C%y %b %e} -locale en_US_roman -gmt 1
} 949276800
test clock-8.454 {parse ccyymmdd} {
    clock scan {2000 Jan xxxi} -format {%C%y %b %Oe} -locale en_US_roman -gmt 1
} 949276800
test clock-8.455 {parse ccyymmdd} {
    clock scan {2000 January 31} -format {%C%y %B %d} -locale en_US_roman -gmt 1
} 949276800
test clock-8.456 {parse ccyymmdd} {
    clock scan {2000 January xxxi} -format {%C%y %B %Od} -locale en_US_roman -gmt 1
} 949276800
test clock-8.457 {parse ccyymmdd} {
    clock scan {2000 January 31} -format {%C%y %B %e} -locale en_US_roman -gmt 1
} 949276800
test clock-8.458 {parse ccyymmdd} {
    clock scan {2000 January xxxi} -format {%C%y %B %Oe} -locale en_US_roman -gmt 1
} 949276800
test clock-8.459 {parse ccyymmdd} {
    clock scan {2000 Jan 31} -format {%C%y %h %d} -locale en_US_roman -gmt 1
} 949276800
test clock-8.460 {parse ccyymmdd} {
    clock scan {2000 Jan xxxi} -format {%C%y %h %Od} -locale en_US_roman -gmt 1
} 949276800
test clock-8.461 {parse ccyymmdd} {
    clock scan {2000 Jan 31} -format {%C%y %h %e} -locale en_US_roman -gmt 1
} 949276800
test clock-8.462 {parse ccyymmdd} {
    clock scan {2000 Jan xxxi} -format {%C%y %h %Oe} -locale en_US_roman -gmt 1
} 949276800
test clock-8.463 {parse ccyymmdd} {
    clock scan {2000 01 31} -format {%C%y %m %d} -locale en_US_roman -gmt 1
} 949276800
test clock-8.464 {parse ccyymmdd} {
    clock scan {2000 01 xxxi} -format {%C%y %m %Od} -locale en_US_roman -gmt 1
} 949276800
test clock-8.465 {parse ccyymmdd} {
    clock scan {2000 01 31} -format {%C%y %m %e} -locale en_US_roman -gmt 1
} 949276800
test clock-8.466 {parse ccyymmdd} {
    clock scan {2000 01 xxxi} -format {%C%y %m %Oe} -locale en_US_roman -gmt 1
} 949276800
test clock-8.467 {parse ccyymmdd} {
    clock scan {2000 i 31} -format {%C%y %Om %d} -locale en_US_roman -gmt 1
} 949276800
test clock-8.468 {parse ccyymmdd} {
    clock scan {2000 i xxxi} -format {%C%y %Om %Od} -locale en_US_roman -gmt 1
} 949276800
test clock-8.469 {parse ccyymmdd} {
    clock scan {2000 i 31} -format {%C%y %Om %e} -locale en_US_roman -gmt 1
} 949276800
test clock-8.470 {parse ccyymmdd} {
    clock scan {2000 i xxxi} -format {%C%y %Om %Oe} -locale en_US_roman -gmt 1
} 949276800
test clock-8.471 {parse ccyymmdd} {
    clock scan {2000  1 31} -format {%C%y %N %d} -locale en_US_roman -gmt 1
} 949276800
test clock-8.472 {parse ccyymmdd} {
    clock scan {2000  1 xxxi} -format {%C%y %N %Od} -locale en_US_roman -gmt 1
} 949276800
test clock-8.473 {parse ccyymmdd} {
    clock scan {2000  1 31} -format {%C%y %N %e} -locale en_US_roman -gmt 1
} 949276800
test clock-8.474 {parse ccyymmdd} {
    clock scan {2000  1 xxxi} -format {%C%y %N %Oe} -locale en_US_roman -gmt 1
} 949276800
test clock-8.475 {parse ccyymmdd} {
    clock scan {2000 Jan 31} -format {%Y %b %d} -locale en_US_roman -gmt 1
} 949276800
test clock-8.476 {parse ccyymmdd} {
    clock scan {2000 Jan xxxi} -format {%Y %b %Od} -locale en_US_roman -gmt 1
} 949276800
test clock-8.477 {parse ccyymmdd} {
    clock scan {2000 Jan 31} -format {%Y %b %e} -locale en_US_roman -gmt 1
} 949276800
test clock-8.478 {parse ccyymmdd} {
    clock scan {2000 Jan xxxi} -format {%Y %b %Oe} -locale en_US_roman -gmt 1
} 949276800
test clock-8.479 {parse ccyymmdd} {
    clock scan {2000 January 31} -format {%Y %B %d} -locale en_US_roman -gmt 1
} 949276800
test clock-8.480 {parse ccyymmdd} {
    clock scan {2000 January xxxi} -format {%Y %B %Od} -locale en_US_roman -gmt 1
} 949276800
test clock-8.481 {parse ccyymmdd} {
    clock scan {2000 January 31} -format {%Y %B %e} -locale en_US_roman -gmt 1
} 949276800
test clock-8.482 {parse ccyymmdd} {
    clock scan {2000 January xxxi} -format {%Y %B %Oe} -locale en_US_roman -gmt 1
} 949276800
test clock-8.483 {parse ccyymmdd} {
    clock scan {2000 Jan 31} -format {%Y %h %d} -locale en_US_roman -gmt 1
} 949276800
test clock-8.484 {parse ccyymmdd} {
    clock scan {2000 Jan xxxi} -format {%Y %h %Od} -locale en_US_roman -gmt 1
} 949276800
test clock-8.485 {parse ccyymmdd} {
    clock scan {2000 Jan 31} -format {%Y %h %e} -locale en_US_roman -gmt 1
} 949276800
test clock-8.486 {parse ccyymmdd} {
    clock scan {2000 Jan xxxi} -format {%Y %h %Oe} -locale en_US_roman -gmt 1
} 949276800
test clock-8.487 {parse ccyymmdd} {
    clock scan {2000 01 31} -format {%Y %m %d} -locale en_US_roman -gmt 1
} 949276800
test clock-8.488 {parse ccyymmdd} {
    clock scan {2000 01 xxxi} -format {%Y %m %Od} -locale en_US_roman -gmt 1
} 949276800
test clock-8.489 {parse ccyymmdd} {
    clock scan {2000 01 31} -format {%Y %m %e} -locale en_US_roman -gmt 1
} 949276800
test clock-8.490 {parse ccyymmdd} {
    clock scan {2000 01 xxxi} -format {%Y %m %Oe} -locale en_US_roman -gmt 1
} 949276800
test clock-8.491 {parse ccyymmdd} {
    clock scan {2000 i 31} -format {%Y %Om %d} -locale en_US_roman -gmt 1
} 949276800
test clock-8.492 {parse ccyymmdd} {
    clock scan {2000 i xxxi} -format {%Y %Om %Od} -locale en_US_roman -gmt 1
} 949276800
test clock-8.493 {parse ccyymmdd} {
    clock scan {2000 i 31} -format {%Y %Om %e} -locale en_US_roman -gmt 1
} 949276800
test clock-8.494 {parse ccyymmdd} {
    clock scan {2000 i xxxi} -format {%Y %Om %Oe} -locale en_US_roman -gmt 1
} 949276800
test clock-8.495 {parse ccyymmdd} {
    clock scan {2000  1 31} -format {%Y %N %d} -locale en_US_roman -gmt 1
} 949276800
test clock-8.496 {parse ccyymmdd} {
    clock scan {2000  1 xxxi} -format {%Y %N %Od} -locale en_US_roman -gmt 1
} 949276800
test clock-8.497 {parse ccyymmdd} {
    clock scan {2000  1 31} -format {%Y %N %e} -locale en_US_roman -gmt 1
} 949276800
test clock-8.498 {parse ccyymmdd} {
    clock scan {2000  1 xxxi} -format {%Y %N %Oe} -locale en_US_roman -gmt 1
} 949276800
test clock-8.499 {parse ccyymmdd} {
    clock scan 01/31/2000 -format %x -locale en_US_roman -gmt 1
} 949276800
test clock-8.500 {parse ccyymmdd} {
    clock scan 01/31/2000 -format %D -locale en_US_roman -gmt 1
} 949276800
test clock-8.501 {parse ccyymmdd} {
    clock scan {2000 Dec 02} -format {%C%y %b %d} -locale en_US_roman -gmt 1
} 975715200
test clock-8.502 {parse ccyymmdd} {
    clock scan {2000 Dec ii} -format {%C%y %b %Od} -locale en_US_roman -gmt 1
} 975715200
test clock-8.503 {parse ccyymmdd} {
    clock scan {2000 Dec  2} -format {%C%y %b %e} -locale en_US_roman -gmt 1
} 975715200
test clock-8.504 {parse ccyymmdd} {
    clock scan {2000 Dec ii} -format {%C%y %b %Oe} -locale en_US_roman -gmt 1
} 975715200
test clock-8.505 {parse ccyymmdd} {
    clock scan {2000 December 02} -format {%C%y %B %d} -locale en_US_roman -gmt 1
} 975715200
test clock-8.506 {parse ccyymmdd} {
    clock scan {2000 December ii} -format {%C%y %B %Od} -locale en_US_roman -gmt 1
} 975715200
test clock-8.507 {parse ccyymmdd} {
    clock scan {2000 December  2} -format {%C%y %B %e} -locale en_US_roman -gmt 1
} 975715200
test clock-8.508 {parse ccyymmdd} {
    clock scan {2000 December ii} -format {%C%y %B %Oe} -locale en_US_roman -gmt 1
} 975715200
test clock-8.509 {parse ccyymmdd} {
    clock scan {2000 Dec 02} -format {%C%y %h %d} -locale en_US_roman -gmt 1
} 975715200
test clock-8.510 {parse ccyymmdd} {
    clock scan {2000 Dec ii} -format {%C%y %h %Od} -locale en_US_roman -gmt 1
} 975715200
test clock-8.511 {parse ccyymmdd} {
    clock scan {2000 Dec  2} -format {%C%y %h %e} -locale en_US_roman -gmt 1
} 975715200
test clock-8.512 {parse ccyymmdd} {
    clock scan {2000 Dec ii} -format {%C%y %h %Oe} -locale en_US_roman -gmt 1
} 975715200
test clock-8.513 {parse ccyymmdd} {
    clock scan {2000 12 02} -format {%C%y %m %d} -locale en_US_roman -gmt 1
} 975715200
test clock-8.514 {parse ccyymmdd} {
    clock scan {2000 12 ii} -format {%C%y %m %Od} -locale en_US_roman -gmt 1
} 975715200
test clock-8.515 {parse ccyymmdd} {
    clock scan {2000 12  2} -format {%C%y %m %e} -locale en_US_roman -gmt 1
} 975715200
test clock-8.516 {parse ccyymmdd} {
    clock scan {2000 12 ii} -format {%C%y %m %Oe} -locale en_US_roman -gmt 1
} 975715200
test clock-8.517 {parse ccyymmdd} {
    clock scan {2000 xii 02} -format {%C%y %Om %d} -locale en_US_roman -gmt 1
} 975715200
test clock-8.518 {parse ccyymmdd} {
    clock scan {2000 xii ii} -format {%C%y %Om %Od} -locale en_US_roman -gmt 1
} 975715200
test clock-8.519 {parse ccyymmdd} {
    clock scan {2000 xii  2} -format {%C%y %Om %e} -locale en_US_roman -gmt 1
} 975715200
test clock-8.520 {parse ccyymmdd} {
    clock scan {2000 xii ii} -format {%C%y %Om %Oe} -locale en_US_roman -gmt 1
} 975715200
test clock-8.521 {parse ccyymmdd} {
    clock scan {2000 12 02} -format {%C%y %N %d} -locale en_US_roman -gmt 1
} 975715200
test clock-8.522 {parse ccyymmdd} {
    clock scan {2000 12 ii} -format {%C%y %N %Od} -locale en_US_roman -gmt 1
} 975715200
test clock-8.523 {parse ccyymmdd} {
    clock scan {2000 12  2} -format {%C%y %N %e} -locale en_US_roman -gmt 1
} 975715200
test clock-8.524 {parse ccyymmdd} {
    clock scan {2000 12 ii} -format {%C%y %N %Oe} -locale en_US_roman -gmt 1
} 975715200
test clock-8.525 {parse ccyymmdd} {
    clock scan {2000 Dec 02} -format {%Y %b %d} -locale en_US_roman -gmt 1
} 975715200
test clock-8.526 {parse ccyymmdd} {
    clock scan {2000 Dec ii} -format {%Y %b %Od} -locale en_US_roman -gmt 1
} 975715200
test clock-8.527 {parse ccyymmdd} {
    clock scan {2000 Dec  2} -format {%Y %b %e} -locale en_US_roman -gmt 1
} 975715200
test clock-8.528 {parse ccyymmdd} {
    clock scan {2000 Dec ii} -format {%Y %b %Oe} -locale en_US_roman -gmt 1
} 975715200
test clock-8.529 {parse ccyymmdd} {
    clock scan {2000 December 02} -format {%Y %B %d} -locale en_US_roman -gmt 1
} 975715200
test clock-8.530 {parse ccyymmdd} {
    clock scan {2000 December ii} -format {%Y %B %Od} -locale en_US_roman -gmt 1
} 975715200
test clock-8.531 {parse ccyymmdd} {
    clock scan {2000 December  2} -format {%Y %B %e} -locale en_US_roman -gmt 1
} 975715200
test clock-8.532 {parse ccyymmdd} {
    clock scan {2000 December ii} -format {%Y %B %Oe} -locale en_US_roman -gmt 1
} 975715200
test clock-8.533 {parse ccyymmdd} {
    clock scan {2000 Dec 02} -format {%Y %h %d} -locale en_US_roman -gmt 1
} 975715200
test clock-8.534 {parse ccyymmdd} {
    clock scan {2000 Dec ii} -format {%Y %h %Od} -locale en_US_roman -gmt 1
} 975715200
test clock-8.535 {parse ccyymmdd} {
    clock scan {2000 Dec  2} -format {%Y %h %e} -locale en_US_roman -gmt 1
} 975715200
test clock-8.536 {parse ccyymmdd} {
    clock scan {2000 Dec ii} -format {%Y %h %Oe} -locale en_US_roman -gmt 1
} 975715200
test clock-8.537 {parse ccyymmdd} {
    clock scan {2000 12 02} -format {%Y %m %d} -locale en_US_roman -gmt 1
} 975715200
test clock-8.538 {parse ccyymmdd} {
    clock scan {2000 12 ii} -format {%Y %m %Od} -locale en_US_roman -gmt 1
} 975715200
test clock-8.539 {parse ccyymmdd} {
    clock scan {2000 12  2} -format {%Y %m %e} -locale en_US_roman -gmt 1
} 975715200
test clock-8.540 {parse ccyymmdd} {
    clock scan {2000 12 ii} -format {%Y %m %Oe} -locale en_US_roman -gmt 1
} 975715200
test clock-8.541 {parse ccyymmdd} {
    clock scan {2000 xii 02} -format {%Y %Om %d} -locale en_US_roman -gmt 1
} 975715200
test clock-8.542 {parse ccyymmdd} {
    clock scan {2000 xii ii} -format {%Y %Om %Od} -locale en_US_roman -gmt 1
} 975715200
test clock-8.543 {parse ccyymmdd} {
    clock scan {2000 xii  2} -format {%Y %Om %e} -locale en_US_roman -gmt 1
} 975715200
test clock-8.544 {parse ccyymmdd} {
    clock scan {2000 xii ii} -format {%Y %Om %Oe} -locale en_US_roman -gmt 1
} 975715200
test clock-8.545 {parse ccyymmdd} {
    clock scan {2000 12 02} -format {%Y %N %d} -locale en_US_roman -gmt 1
} 975715200
test clock-8.546 {parse ccyymmdd} {
    clock scan {2000 12 ii} -format {%Y %N %Od} -locale en_US_roman -gmt 1
} 975715200
test clock-8.547 {parse ccyymmdd} {
    clock scan {2000 12  2} -format {%Y %N %e} -locale en_US_roman -gmt 1
} 975715200
test clock-8.548 {parse ccyymmdd} {
    clock scan {2000 12 ii} -format {%Y %N %Oe} -locale en_US_roman -gmt 1
} 975715200
test clock-8.549 {parse ccyymmdd} {
    clock scan 12/02/2000 -format %x -locale en_US_roman -gmt 1
} 975715200
test clock-8.550 {parse ccyymmdd} {
    clock scan 12/02/2000 -format %D -locale en_US_roman -gmt 1
} 975715200
test clock-8.551 {parse ccyymmdd} {
    clock scan {2000 Dec 31} -format {%C%y %b %d} -locale en_US_roman -gmt 1
} 978220800
test clock-8.552 {parse ccyymmdd} {
    clock scan {2000 Dec xxxi} -format {%C%y %b %Od} -locale en_US_roman -gmt 1
} 978220800
test clock-8.553 {parse ccyymmdd} {
    clock scan {2000 Dec 31} -format {%C%y %b %e} -locale en_US_roman -gmt 1
} 978220800
test clock-8.554 {parse ccyymmdd} {
    clock scan {2000 Dec xxxi} -format {%C%y %b %Oe} -locale en_US_roman -gmt 1
} 978220800
test clock-8.555 {parse ccyymmdd} {
    clock scan {2000 December 31} -format {%C%y %B %d} -locale en_US_roman -gmt 1
} 978220800
test clock-8.556 {parse ccyymmdd} {
    clock scan {2000 December xxxi} -format {%C%y %B %Od} -locale en_US_roman -gmt 1
} 978220800
test clock-8.557 {parse ccyymmdd} {
    clock scan {2000 December 31} -format {%C%y %B %e} -locale en_US_roman -gmt 1
} 978220800
test clock-8.558 {parse ccyymmdd} {
    clock scan {2000 December xxxi} -format {%C%y %B %Oe} -locale en_US_roman -gmt 1
} 978220800
test clock-8.559 {parse ccyymmdd} {
    clock scan {2000 Dec 31} -format {%C%y %h %d} -locale en_US_roman -gmt 1
} 978220800
test clock-8.560 {parse ccyymmdd} {
    clock scan {2000 Dec xxxi} -format {%C%y %h %Od} -locale en_US_roman -gmt 1
} 978220800
test clock-8.561 {parse ccyymmdd} {
    clock scan {2000 Dec 31} -format {%C%y %h %e} -locale en_US_roman -gmt 1
} 978220800
test clock-8.562 {parse ccyymmdd} {
    clock scan {2000 Dec xxxi} -format {%C%y %h %Oe} -locale en_US_roman -gmt 1
} 978220800
test clock-8.563 {parse ccyymmdd} {
    clock scan {2000 12 31} -format {%C%y %m %d} -locale en_US_roman -gmt 1
} 978220800
test clock-8.564 {parse ccyymmdd} {
    clock scan {2000 12 xxxi} -format {%C%y %m %Od} -locale en_US_roman -gmt 1
} 978220800
test clock-8.565 {parse ccyymmdd} {
    clock scan {2000 12 31} -format {%C%y %m %e} -locale en_US_roman -gmt 1
} 978220800
test clock-8.566 {parse ccyymmdd} {
    clock scan {2000 12 xxxi} -format {%C%y %m %Oe} -locale en_US_roman -gmt 1
} 978220800
test clock-8.567 {parse ccyymmdd} {
    clock scan {2000 xii 31} -format {%C%y %Om %d} -locale en_US_roman -gmt 1
} 978220800
test clock-8.568 {parse ccyymmdd} {
    clock scan {2000 xii xxxi} -format {%C%y %Om %Od} -locale en_US_roman -gmt 1
} 978220800
test clock-8.569 {parse ccyymmdd} {
    clock scan {2000 xii 31} -format {%C%y %Om %e} -locale en_US_roman -gmt 1
} 978220800
test clock-8.570 {parse ccyymmdd} {
    clock scan {2000 xii xxxi} -format {%C%y %Om %Oe} -locale en_US_roman -gmt 1
} 978220800
test clock-8.571 {parse ccyymmdd} {
    clock scan {2000 12 31} -format {%C%y %N %d} -locale en_US_roman -gmt 1
} 978220800
test clock-8.572 {parse ccyymmdd} {
    clock scan {2000 12 xxxi} -format {%C%y %N %Od} -locale en_US_roman -gmt 1
} 978220800
test clock-8.573 {parse ccyymmdd} {
    clock scan {2000 12 31} -format {%C%y %N %e} -locale en_US_roman -gmt 1
} 978220800
test clock-8.574 {parse ccyymmdd} {
    clock scan {2000 12 xxxi} -format {%C%y %N %Oe} -locale en_US_roman -gmt 1
} 978220800
test clock-8.575 {parse ccyymmdd} {
    clock scan {2000 Dec 31} -format {%Y %b %d} -locale en_US_roman -gmt 1
} 978220800
test clock-8.576 {parse ccyymmdd} {
    clock scan {2000 Dec xxxi} -format {%Y %b %Od} -locale en_US_roman -gmt 1
} 978220800
test clock-8.577 {parse ccyymmdd} {
    clock scan {2000 Dec 31} -format {%Y %b %e} -locale en_US_roman -gmt 1
} 978220800
test clock-8.578 {parse ccyymmdd} {
    clock scan {2000 Dec xxxi} -format {%Y %b %Oe} -locale en_US_roman -gmt 1
} 978220800
test clock-8.579 {parse ccyymmdd} {
    clock scan {2000 December 31} -format {%Y %B %d} -locale en_US_roman -gmt 1
} 978220800
test clock-8.580 {parse ccyymmdd} {
    clock scan {2000 December xxxi} -format {%Y %B %Od} -locale en_US_roman -gmt 1
} 978220800
test clock-8.581 {parse ccyymmdd} {
    clock scan {2000 December 31} -format {%Y %B %e} -locale en_US_roman -gmt 1
} 978220800
test clock-8.582 {parse ccyymmdd} {
    clock scan {2000 December xxxi} -format {%Y %B %Oe} -locale en_US_roman -gmt 1
} 978220800
test clock-8.583 {parse ccyymmdd} {
    clock scan {2000 Dec 31} -format {%Y %h %d} -locale en_US_roman -gmt 1
} 978220800
test clock-8.584 {parse ccyymmdd} {
    clock scan {2000 Dec xxxi} -format {%Y %h %Od} -locale en_US_roman -gmt 1
} 978220800
test clock-8.585 {parse ccyymmdd} {
    clock scan {2000 Dec 31} -format {%Y %h %e} -locale en_US_roman -gmt 1
} 978220800
test clock-8.586 {parse ccyymmdd} {
    clock scan {2000 Dec xxxi} -format {%Y %h %Oe} -locale en_US_roman -gmt 1
} 978220800
test clock-8.587 {parse ccyymmdd} {
    clock scan {2000 12 31} -format {%Y %m %d} -locale en_US_roman -gmt 1
} 978220800
test clock-8.588 {parse ccyymmdd} {
    clock scan {2000 12 xxxi} -format {%Y %m %Od} -locale en_US_roman -gmt 1
} 978220800
test clock-8.589 {parse ccyymmdd} {
    clock scan {2000 12 31} -format {%Y %m %e} -locale en_US_roman -gmt 1
} 978220800
test clock-8.590 {parse ccyymmdd} {
    clock scan {2000 12 xxxi} -format {%Y %m %Oe} -locale en_US_roman -gmt 1
} 978220800
test clock-8.591 {parse ccyymmdd} {
    clock scan {2000 xii 31} -format {%Y %Om %d} -locale en_US_roman -gmt 1
} 978220800
test clock-8.592 {parse ccyymmdd} {
    clock scan {2000 xii xxxi} -format {%Y %Om %Od} -locale en_US_roman -gmt 1
} 978220800
test clock-8.593 {parse ccyymmdd} {
    clock scan {2000 xii 31} -format {%Y %Om %e} -locale en_US_roman -gmt 1
} 978220800
test clock-8.594 {parse ccyymmdd} {
    clock scan {2000 xii xxxi} -format {%Y %Om %Oe} -locale en_US_roman -gmt 1
} 978220800
test clock-8.595 {parse ccyymmdd} {
    clock scan {2000 12 31} -format {%Y %N %d} -locale en_US_roman -gmt 1
} 978220800
test clock-8.596 {parse ccyymmdd} {
    clock scan {2000 12 xxxi} -format {%Y %N %Od} -locale en_US_roman -gmt 1
} 978220800
test clock-8.597 {parse ccyymmdd} {
    clock scan {2000 12 31} -format {%Y %N %e} -locale en_US_roman -gmt 1
} 978220800
test clock-8.598 {parse ccyymmdd} {
    clock scan {2000 12 xxxi} -format {%Y %N %Oe} -locale en_US_roman -gmt 1
} 978220800
test clock-8.599 {parse ccyymmdd} {
    clock scan 12/31/2000 -format %x -locale en_US_roman -gmt 1
} 978220800
test clock-8.600 {parse ccyymmdd} {
    clock scan 12/31/2000 -format %D -locale en_US_roman -gmt 1
} 978220800
test clock-8.601 {parse ccyymmdd} {
    clock scan {2001 Jan 02} -format {%C%y %b %d} -locale en_US_roman -gmt 1
} 978393600
test clock-8.602 {parse ccyymmdd} {
    clock scan {2001 Jan ii} -format {%C%y %b %Od} -locale en_US_roman -gmt 1
} 978393600
test clock-8.603 {parse ccyymmdd} {
    clock scan {2001 Jan  2} -format {%C%y %b %e} -locale en_US_roman -gmt 1
} 978393600
test clock-8.604 {parse ccyymmdd} {
    clock scan {2001 Jan ii} -format {%C%y %b %Oe} -locale en_US_roman -gmt 1
} 978393600
test clock-8.605 {parse ccyymmdd} {
    clock scan {2001 January 02} -format {%C%y %B %d} -locale en_US_roman -gmt 1
} 978393600
test clock-8.606 {parse ccyymmdd} {
    clock scan {2001 January ii} -format {%C%y %B %Od} -locale en_US_roman -gmt 1
} 978393600
test clock-8.607 {parse ccyymmdd} {
    clock scan {2001 January  2} -format {%C%y %B %e} -locale en_US_roman -gmt 1
} 978393600
test clock-8.608 {parse ccyymmdd} {
    clock scan {2001 January ii} -format {%C%y %B %Oe} -locale en_US_roman -gmt 1
} 978393600
test clock-8.609 {parse ccyymmdd} {
    clock scan {2001 Jan 02} -format {%C%y %h %d} -locale en_US_roman -gmt 1
} 978393600
test clock-8.610 {parse ccyymmdd} {
    clock scan {2001 Jan ii} -format {%C%y %h %Od} -locale en_US_roman -gmt 1
} 978393600
test clock-8.611 {parse ccyymmdd} {
    clock scan {2001 Jan  2} -format {%C%y %h %e} -locale en_US_roman -gmt 1
} 978393600
test clock-8.612 {parse ccyymmdd} {
    clock scan {2001 Jan ii} -format {%C%y %h %Oe} -locale en_US_roman -gmt 1
} 978393600
test clock-8.613 {parse ccyymmdd} {
    clock scan {2001 01 02} -format {%C%y %m %d} -locale en_US_roman -gmt 1
} 978393600
test clock-8.614 {parse ccyymmdd} {
    clock scan {2001 01 ii} -format {%C%y %m %Od} -locale en_US_roman -gmt 1
} 978393600
test clock-8.615 {parse ccyymmdd} {
    clock scan {2001 01  2} -format {%C%y %m %e} -locale en_US_roman -gmt 1
} 978393600
test clock-8.616 {parse ccyymmdd} {
    clock scan {2001 01 ii} -format {%C%y %m %Oe} -locale en_US_roman -gmt 1
} 978393600
test clock-8.617 {parse ccyymmdd} {
    clock scan {2001 i 02} -format {%C%y %Om %d} -locale en_US_roman -gmt 1
} 978393600
test clock-8.618 {parse ccyymmdd} {
    clock scan {2001 i ii} -format {%C%y %Om %Od} -locale en_US_roman -gmt 1
} 978393600
test clock-8.619 {parse ccyymmdd} {
    clock scan {2001 i  2} -format {%C%y %Om %e} -locale en_US_roman -gmt 1
} 978393600
test clock-8.620 {parse ccyymmdd} {
    clock scan {2001 i ii} -format {%C%y %Om %Oe} -locale en_US_roman -gmt 1
} 978393600
test clock-8.621 {parse ccyymmdd} {
    clock scan {2001  1 02} -format {%C%y %N %d} -locale en_US_roman -gmt 1
} 978393600
test clock-8.622 {parse ccyymmdd} {
    clock scan {2001  1 ii} -format {%C%y %N %Od} -locale en_US_roman -gmt 1
} 978393600
test clock-8.623 {parse ccyymmdd} {
    clock scan {2001  1  2} -format {%C%y %N %e} -locale en_US_roman -gmt 1
} 978393600
test clock-8.624 {parse ccyymmdd} {
    clock scan {2001  1 ii} -format {%C%y %N %Oe} -locale en_US_roman -gmt 1
} 978393600
test clock-8.625 {parse ccyymmdd} {
    clock scan {2001 Jan 02} -format {%Y %b %d} -locale en_US_roman -gmt 1
} 978393600
test clock-8.626 {parse ccyymmdd} {
    clock scan {2001 Jan ii} -format {%Y %b %Od} -locale en_US_roman -gmt 1
} 978393600
test clock-8.627 {parse ccyymmdd} {
    clock scan {2001 Jan  2} -format {%Y %b %e} -locale en_US_roman -gmt 1
} 978393600
test clock-8.628 {parse ccyymmdd} {
    clock scan {2001 Jan ii} -format {%Y %b %Oe} -locale en_US_roman -gmt 1
} 978393600
test clock-8.629 {parse ccyymmdd} {
    clock scan {2001 January 02} -format {%Y %B %d} -locale en_US_roman -gmt 1
} 978393600
test clock-8.630 {parse ccyymmdd} {
    clock scan {2001 January ii} -format {%Y %B %Od} -locale en_US_roman -gmt 1
} 978393600
test clock-8.631 {parse ccyymmdd} {
    clock scan {2001 January  2} -format {%Y %B %e} -locale en_US_roman -gmt 1
} 978393600
test clock-8.632 {parse ccyymmdd} {
    clock scan {2001 January ii} -format {%Y %B %Oe} -locale en_US_roman -gmt 1
} 978393600
test clock-8.633 {parse ccyymmdd} {
    clock scan {2001 Jan 02} -format {%Y %h %d} -locale en_US_roman -gmt 1
} 978393600
test clock-8.634 {parse ccyymmdd} {
    clock scan {2001 Jan ii} -format {%Y %h %Od} -locale en_US_roman -gmt 1
} 978393600
test clock-8.635 {parse ccyymmdd} {
    clock scan {2001 Jan  2} -format {%Y %h %e} -locale en_US_roman -gmt 1
} 978393600
test clock-8.636 {parse ccyymmdd} {
    clock scan {2001 Jan ii} -format {%Y %h %Oe} -locale en_US_roman -gmt 1
} 978393600
test clock-8.637 {parse ccyymmdd} {
    clock scan {2001 01 02} -format {%Y %m %d} -locale en_US_roman -gmt 1
} 978393600
test clock-8.638 {parse ccyymmdd} {
    clock scan {2001 01 ii} -format {%Y %m %Od} -locale en_US_roman -gmt 1
} 978393600
test clock-8.639 {parse ccyymmdd} {
    clock scan {2001 01  2} -format {%Y %m %e} -locale en_US_roman -gmt 1
} 978393600
test clock-8.640 {parse ccyymmdd} {
    clock scan {2001 01 ii} -format {%Y %m %Oe} -locale en_US_roman -gmt 1
} 978393600
test clock-8.641 {parse ccyymmdd} {
    clock scan {2001 i 02} -format {%Y %Om %d} -locale en_US_roman -gmt 1
} 978393600
test clock-8.642 {parse ccyymmdd} {
    clock scan {2001 i ii} -format {%Y %Om %Od} -locale en_US_roman -gmt 1
} 978393600
test clock-8.643 {parse ccyymmdd} {
    clock scan {2001 i  2} -format {%Y %Om %e} -locale en_US_roman -gmt 1
} 978393600
test clock-8.644 {parse ccyymmdd} {
    clock scan {2001 i ii} -format {%Y %Om %Oe} -locale en_US_roman -gmt 1
} 978393600
test clock-8.645 {parse ccyymmdd} {
    clock scan {2001  1 02} -format {%Y %N %d} -locale en_US_roman -gmt 1
} 978393600
test clock-8.646 {parse ccyymmdd} {
    clock scan {2001  1 ii} -format {%Y %N %Od} -locale en_US_roman -gmt 1
} 978393600
test clock-8.647 {parse ccyymmdd} {
    clock scan {2001  1  2} -format {%Y %N %e} -locale en_US_roman -gmt 1
} 978393600
test clock-8.648 {parse ccyymmdd} {
    clock scan {2001  1 ii} -format {%Y %N %Oe} -locale en_US_roman -gmt 1
} 978393600
test clock-8.649 {parse ccyymmdd} {
    clock scan 01/02/2001 -format %x -locale en_US_roman -gmt 1
} 978393600
test clock-8.650 {parse ccyymmdd} {
    clock scan 01/02/2001 -format %D -locale en_US_roman -gmt 1
} 978393600
test clock-8.651 {parse ccyymmdd} {
    clock scan {2001 Jan 31} -format {%C%y %b %d} -locale en_US_roman -gmt 1
} 980899200
test clock-8.652 {parse ccyymmdd} {
    clock scan {2001 Jan xxxi} -format {%C%y %b %Od} -locale en_US_roman -gmt 1
} 980899200
test clock-8.653 {parse ccyymmdd} {
    clock scan {2001 Jan 31} -format {%C%y %b %e} -locale en_US_roman -gmt 1
} 980899200
test clock-8.654 {parse ccyymmdd} {
    clock scan {2001 Jan xxxi} -format {%C%y %b %Oe} -locale en_US_roman -gmt 1
} 980899200
test clock-8.655 {parse ccyymmdd} {
    clock scan {2001 January 31} -format {%C%y %B %d} -locale en_US_roman -gmt 1
} 980899200
test clock-8.656 {parse ccyymmdd} {
    clock scan {2001 January xxxi} -format {%C%y %B %Od} -locale en_US_roman -gmt 1
} 980899200
test clock-8.657 {parse ccyymmdd} {
    clock scan {2001 January 31} -format {%C%y %B %e} -locale en_US_roman -gmt 1
} 980899200
test clock-8.658 {parse ccyymmdd} {
    clock scan {2001 January xxxi} -format {%C%y %B %Oe} -locale en_US_roman -gmt 1
} 980899200
test clock-8.659 {parse ccyymmdd} {
    clock scan {2001 Jan 31} -format {%C%y %h %d} -locale en_US_roman -gmt 1
} 980899200
test clock-8.660 {parse ccyymmdd} {
    clock scan {2001 Jan xxxi} -format {%C%y %h %Od} -locale en_US_roman -gmt 1
} 980899200
test clock-8.661 {parse ccyymmdd} {
    clock scan {2001 Jan 31} -format {%C%y %h %e} -locale en_US_roman -gmt 1
} 980899200
test clock-8.662 {parse ccyymmdd} {
    clock scan {2001 Jan xxxi} -format {%C%y %h %Oe} -locale en_US_roman -gmt 1
} 980899200
test clock-8.663 {parse ccyymmdd} {
    clock scan {2001 01 31} -format {%C%y %m %d} -locale en_US_roman -gmt 1
} 980899200
test clock-8.664 {parse ccyymmdd} {
    clock scan {2001 01 xxxi} -format {%C%y %m %Od} -locale en_US_roman -gmt 1
} 980899200
test clock-8.665 {parse ccyymmdd} {
    clock scan {2001 01 31} -format {%C%y %m %e} -locale en_US_roman -gmt 1
} 980899200
test clock-8.666 {parse ccyymmdd} {
    clock scan {2001 01 xxxi} -format {%C%y %m %Oe} -locale en_US_roman -gmt 1
} 980899200
test clock-8.667 {parse ccyymmdd} {
    clock scan {2001 i 31} -format {%C%y %Om %d} -locale en_US_roman -gmt 1
} 980899200
test clock-8.668 {parse ccyymmdd} {
    clock scan {2001 i xxxi} -format {%C%y %Om %Od} -locale en_US_roman -gmt 1
} 980899200
test clock-8.669 {parse ccyymmdd} {
    clock scan {2001 i 31} -format {%C%y %Om %e} -locale en_US_roman -gmt 1
} 980899200
test clock-8.670 {parse ccyymmdd} {
    clock scan {2001 i xxxi} -format {%C%y %Om %Oe} -locale en_US_roman -gmt 1
} 980899200
test clock-8.671 {parse ccyymmdd} {
    clock scan {2001  1 31} -format {%C%y %N %d} -locale en_US_roman -gmt 1
} 980899200
test clock-8.672 {parse ccyymmdd} {
    clock scan {2001  1 xxxi} -format {%C%y %N %Od} -locale en_US_roman -gmt 1
} 980899200
test clock-8.673 {parse ccyymmdd} {
    clock scan {2001  1 31} -format {%C%y %N %e} -locale en_US_roman -gmt 1
} 980899200
test clock-8.674 {parse ccyymmdd} {
    clock scan {2001  1 xxxi} -format {%C%y %N %Oe} -locale en_US_roman -gmt 1
} 980899200
test clock-8.675 {parse ccyymmdd} {
    clock scan {2001 Jan 31} -format {%Y %b %d} -locale en_US_roman -gmt 1
} 980899200
test clock-8.676 {parse ccyymmdd} {
    clock scan {2001 Jan xxxi} -format {%Y %b %Od} -locale en_US_roman -gmt 1
} 980899200
test clock-8.677 {parse ccyymmdd} {
    clock scan {2001 Jan 31} -format {%Y %b %e} -locale en_US_roman -gmt 1
} 980899200
test clock-8.678 {parse ccyymmdd} {
    clock scan {2001 Jan xxxi} -format {%Y %b %Oe} -locale en_US_roman -gmt 1
} 980899200
test clock-8.679 {parse ccyymmdd} {
    clock scan {2001 January 31} -format {%Y %B %d} -locale en_US_roman -gmt 1
} 980899200
test clock-8.680 {parse ccyymmdd} {
    clock scan {2001 January xxxi} -format {%Y %B %Od} -locale en_US_roman -gmt 1
} 980899200
test clock-8.681 {parse ccyymmdd} {
    clock scan {2001 January 31} -format {%Y %B %e} -locale en_US_roman -gmt 1
} 980899200
test clock-8.682 {parse ccyymmdd} {
    clock scan {2001 January xxxi} -format {%Y %B %Oe} -locale en_US_roman -gmt 1
} 980899200
test clock-8.683 {parse ccyymmdd} {
    clock scan {2001 Jan 31} -format {%Y %h %d} -locale en_US_roman -gmt 1
} 980899200
test clock-8.684 {parse ccyymmdd} {
    clock scan {2001 Jan xxxi} -format {%Y %h %Od} -locale en_US_roman -gmt 1
} 980899200
test clock-8.685 {parse ccyymmdd} {
    clock scan {2001 Jan 31} -format {%Y %h %e} -locale en_US_roman -gmt 1
} 980899200
test clock-8.686 {parse ccyymmdd} {
    clock scan {2001 Jan xxxi} -format {%Y %h %Oe} -locale en_US_roman -gmt 1
} 980899200
test clock-8.687 {parse ccyymmdd} {
    clock scan {2001 01 31} -format {%Y %m %d} -locale en_US_roman -gmt 1
} 980899200
test clock-8.688 {parse ccyymmdd} {
    clock scan {2001 01 xxxi} -format {%Y %m %Od} -locale en_US_roman -gmt 1
} 980899200
test clock-8.689 {parse ccyymmdd} {
    clock scan {2001 01 31} -format {%Y %m %e} -locale en_US_roman -gmt 1
} 980899200
test clock-8.690 {parse ccyymmdd} {
    clock scan {2001 01 xxxi} -format {%Y %m %Oe} -locale en_US_roman -gmt 1
} 980899200
test clock-8.691 {parse ccyymmdd} {
    clock scan {2001 i 31} -format {%Y %Om %d} -locale en_US_roman -gmt 1
} 980899200
test clock-8.692 {parse ccyymmdd} {
    clock scan {2001 i xxxi} -format {%Y %Om %Od} -locale en_US_roman -gmt 1
} 980899200
test clock-8.693 {parse ccyymmdd} {
    clock scan {2001 i 31} -format {%Y %Om %e} -locale en_US_roman -gmt 1
} 980899200
test clock-8.694 {parse ccyymmdd} {
    clock scan {2001 i xxxi} -format {%Y %Om %Oe} -locale en_US_roman -gmt 1
} 980899200
test clock-8.695 {parse ccyymmdd} {
    clock scan {2001  1 31} -format {%Y %N %d} -locale en_US_roman -gmt 1
} 980899200
test clock-8.696 {parse ccyymmdd} {
    clock scan {2001  1 xxxi} -format {%Y %N %Od} -locale en_US_roman -gmt 1
} 980899200
test clock-8.697 {parse ccyymmdd} {
    clock scan {2001  1 31} -format {%Y %N %e} -locale en_US_roman -gmt 1
} 980899200
test clock-8.698 {parse ccyymmdd} {
    clock scan {2001  1 xxxi} -format {%Y %N %Oe} -locale en_US_roman -gmt 1
} 980899200
test clock-8.699 {parse ccyymmdd} {
    clock scan 01/31/2001 -format %x -locale en_US_roman -gmt 1
} 980899200
test clock-8.700 {parse ccyymmdd} {
    clock scan 01/31/2001 -format %D -locale en_US_roman -gmt 1
} 980899200
test clock-8.701 {parse ccyymmdd} {
    clock scan {2001 Dec 02} -format {%C%y %b %d} -locale en_US_roman -gmt 1
} 1007251200
test clock-8.702 {parse ccyymmdd} {
    clock scan {2001 Dec ii} -format {%C%y %b %Od} -locale en_US_roman -gmt 1
} 1007251200
test clock-8.703 {parse ccyymmdd} {
    clock scan {2001 Dec  2} -format {%C%y %b %e} -locale en_US_roman -gmt 1
} 1007251200
test clock-8.704 {parse ccyymmdd} {
    clock scan {2001 Dec ii} -format {%C%y %b %Oe} -locale en_US_roman -gmt 1
} 1007251200
test clock-8.705 {parse ccyymmdd} {
    clock scan {2001 December 02} -format {%C%y %B %d} -locale en_US_roman -gmt 1
} 1007251200
test clock-8.706 {parse ccyymmdd} {
    clock scan {2001 December ii} -format {%C%y %B %Od} -locale en_US_roman -gmt 1
} 1007251200
test clock-8.707 {parse ccyymmdd} {
    clock scan {2001 December  2} -format {%C%y %B %e} -locale en_US_roman -gmt 1
} 1007251200
test clock-8.708 {parse ccyymmdd} {
    clock scan {2001 December ii} -format {%C%y %B %Oe} -locale en_US_roman -gmt 1
} 1007251200
test clock-8.709 {parse ccyymmdd} {
    clock scan {2001 Dec 02} -format {%C%y %h %d} -locale en_US_roman -gmt 1
} 1007251200
test clock-8.710 {parse ccyymmdd} {
    clock scan {2001 Dec ii} -format {%C%y %h %Od} -locale en_US_roman -gmt 1
} 1007251200
test clock-8.711 {parse ccyymmdd} {
    clock scan {2001 Dec  2} -format {%C%y %h %e} -locale en_US_roman -gmt 1
} 1007251200
test clock-8.712 {parse ccyymmdd} {
    clock scan {2001 Dec ii} -format {%C%y %h %Oe} -locale en_US_roman -gmt 1
} 1007251200
test clock-8.713 {parse ccyymmdd} {
    clock scan {2001 12 02} -format {%C%y %m %d} -locale en_US_roman -gmt 1
} 1007251200
test clock-8.714 {parse ccyymmdd} {
    clock scan {2001 12 ii} -format {%C%y %m %Od} -locale en_US_roman -gmt 1
} 1007251200
test clock-8.715 {parse ccyymmdd} {
    clock scan {2001 12  2} -format {%C%y %m %e} -locale en_US_roman -gmt 1
} 1007251200
test clock-8.716 {parse ccyymmdd} {
    clock scan {2001 12 ii} -format {%C%y %m %Oe} -locale en_US_roman -gmt 1
} 1007251200
test clock-8.717 {parse ccyymmdd} {
    clock scan {2001 xii 02} -format {%C%y %Om %d} -locale en_US_roman -gmt 1
} 1007251200
test clock-8.718 {parse ccyymmdd} {
    clock scan {2001 xii ii} -format {%C%y %Om %Od} -locale en_US_roman -gmt 1
} 1007251200
test clock-8.719 {parse ccyymmdd} {
    clock scan {2001 xii  2} -format {%C%y %Om %e} -locale en_US_roman -gmt 1
} 1007251200
test clock-8.720 {parse ccyymmdd} {
    clock scan {2001 xii ii} -format {%C%y %Om %Oe} -locale en_US_roman -gmt 1
} 1007251200
test clock-8.721 {parse ccyymmdd} {
    clock scan {2001 12 02} -format {%C%y %N %d} -locale en_US_roman -gmt 1
} 1007251200
test clock-8.722 {parse ccyymmdd} {
    clock scan {2001 12 ii} -format {%C%y %N %Od} -locale en_US_roman -gmt 1
} 1007251200
test clock-8.723 {parse ccyymmdd} {
    clock scan {2001 12  2} -format {%C%y %N %e} -locale en_US_roman -gmt 1
} 1007251200
test clock-8.724 {parse ccyymmdd} {
    clock scan {2001 12 ii} -format {%C%y %N %Oe} -locale en_US_roman -gmt 1
} 1007251200
test clock-8.725 {parse ccyymmdd} {
    clock scan {2001 Dec 02} -format {%Y %b %d} -locale en_US_roman -gmt 1
} 1007251200
test clock-8.726 {parse ccyymmdd} {
    clock scan {2001 Dec ii} -format {%Y %b %Od} -locale en_US_roman -gmt 1
} 1007251200
test clock-8.727 {parse ccyymmdd} {
    clock scan {2001 Dec  2} -format {%Y %b %e} -locale en_US_roman -gmt 1
} 1007251200
test clock-8.728 {parse ccyymmdd} {
    clock scan {2001 Dec ii} -format {%Y %b %Oe} -locale en_US_roman -gmt 1
} 1007251200
test clock-8.729 {parse ccyymmdd} {
    clock scan {2001 December 02} -format {%Y %B %d} -locale en_US_roman -gmt 1
} 1007251200
test clock-8.730 {parse ccyymmdd} {
    clock scan {2001 December ii} -format {%Y %B %Od} -locale en_US_roman -gmt 1
} 1007251200
test clock-8.731 {parse ccyymmdd} {
    clock scan {2001 December  2} -format {%Y %B %e} -locale en_US_roman -gmt 1
} 1007251200
test clock-8.732 {parse ccyymmdd} {
    clock scan {2001 December ii} -format {%Y %B %Oe} -locale en_US_roman -gmt 1
} 1007251200
test clock-8.733 {parse ccyymmdd} {
    clock scan {2001 Dec 02} -format {%Y %h %d} -locale en_US_roman -gmt 1
} 1007251200
test clock-8.734 {parse ccyymmdd} {
    clock scan {2001 Dec ii} -format {%Y %h %Od} -locale en_US_roman -gmt 1
} 1007251200
test clock-8.735 {parse ccyymmdd} {
    clock scan {2001 Dec  2} -format {%Y %h %e} -locale en_US_roman -gmt 1
} 1007251200
test clock-8.736 {parse ccyymmdd} {
    clock scan {2001 Dec ii} -format {%Y %h %Oe} -locale en_US_roman -gmt 1
} 1007251200
test clock-8.737 {parse ccyymmdd} {
    clock scan {2001 12 02} -format {%Y %m %d} -locale en_US_roman -gmt 1
} 1007251200
test clock-8.738 {parse ccyymmdd} {
    clock scan {2001 12 ii} -format {%Y %m %Od} -locale en_US_roman -gmt 1
} 1007251200
test clock-8.739 {parse ccyymmdd} {
    clock scan {2001 12  2} -format {%Y %m %e} -locale en_US_roman -gmt 1
} 1007251200
test clock-8.740 {parse ccyymmdd} {
    clock scan {2001 12 ii} -format {%Y %m %Oe} -locale en_US_roman -gmt 1
} 1007251200
test clock-8.741 {parse ccyymmdd} {
    clock scan {2001 xii 02} -format {%Y %Om %d} -locale en_US_roman -gmt 1
} 1007251200
test clock-8.742 {parse ccyymmdd} {
    clock scan {2001 xii ii} -format {%Y %Om %Od} -locale en_US_roman -gmt 1
} 1007251200
test clock-8.743 {parse ccyymmdd} {
    clock scan {2001 xii  2} -format {%Y %Om %e} -locale en_US_roman -gmt 1
} 1007251200
test clock-8.744 {parse ccyymmdd} {
    clock scan {2001 xii ii} -format {%Y %Om %Oe} -locale en_US_roman -gmt 1
} 1007251200
test clock-8.745 {parse ccyymmdd} {
    clock scan {2001 12 02} -format {%Y %N %d} -locale en_US_roman -gmt 1
} 1007251200
test clock-8.746 {parse ccyymmdd} {
    clock scan {2001 12 ii} -format {%Y %N %Od} -locale en_US_roman -gmt 1
} 1007251200
test clock-8.747 {parse ccyymmdd} {
    clock scan {2001 12  2} -format {%Y %N %e} -locale en_US_roman -gmt 1
} 1007251200
test clock-8.748 {parse ccyymmdd} {
    clock scan {2001 12 ii} -format {%Y %N %Oe} -locale en_US_roman -gmt 1
} 1007251200
test clock-8.749 {parse ccyymmdd} {
    clock scan 12/02/2001 -format %x -locale en_US_roman -gmt 1
} 1007251200
test clock-8.750 {parse ccyymmdd} {
    clock scan 12/02/2001 -format %D -locale en_US_roman -gmt 1
} 1007251200
test clock-8.751 {parse ccyymmdd} {
    clock scan {2001 Dec 31} -format {%C%y %b %d} -locale en_US_roman -gmt 1
} 1009756800
test clock-8.752 {parse ccyymmdd} {
    clock scan {2001 Dec xxxi} -format {%C%y %b %Od} -locale en_US_roman -gmt 1
} 1009756800
test clock-8.753 {parse ccyymmdd} {
    clock scan {2001 Dec 31} -format {%C%y %b %e} -locale en_US_roman -gmt 1
} 1009756800
test clock-8.754 {parse ccyymmdd} {
    clock scan {2001 Dec xxxi} -format {%C%y %b %Oe} -locale en_US_roman -gmt 1
} 1009756800
test clock-8.755 {parse ccyymmdd} {
    clock scan {2001 December 31} -format {%C%y %B %d} -locale en_US_roman -gmt 1
} 1009756800
test clock-8.756 {parse ccyymmdd} {
    clock scan {2001 December xxxi} -format {%C%y %B %Od} -locale en_US_roman -gmt 1
} 1009756800
test clock-8.757 {parse ccyymmdd} {
    clock scan {2001 December 31} -format {%C%y %B %e} -locale en_US_roman -gmt 1
} 1009756800
test clock-8.758 {parse ccyymmdd} {
    clock scan {2001 December xxxi} -format {%C%y %B %Oe} -locale en_US_roman -gmt 1
} 1009756800
test clock-8.759 {parse ccyymmdd} {
    clock scan {2001 Dec 31} -format {%C%y %h %d} -locale en_US_roman -gmt 1
} 1009756800
test clock-8.760 {parse ccyymmdd} {
    clock scan {2001 Dec xxxi} -format {%C%y %h %Od} -locale en_US_roman -gmt 1
} 1009756800
test clock-8.761 {parse ccyymmdd} {
    clock scan {2001 Dec 31} -format {%C%y %h %e} -locale en_US_roman -gmt 1
} 1009756800
test clock-8.762 {parse ccyymmdd} {
    clock scan {2001 Dec xxxi} -format {%C%y %h %Oe} -locale en_US_roman -gmt 1
} 1009756800
test clock-8.763 {parse ccyymmdd} {
    clock scan {2001 12 31} -format {%C%y %m %d} -locale en_US_roman -gmt 1
} 1009756800
test clock-8.764 {parse ccyymmdd} {
    clock scan {2001 12 xxxi} -format {%C%y %m %Od} -locale en_US_roman -gmt 1
} 1009756800
test clock-8.765 {parse ccyymmdd} {
    clock scan {2001 12 31} -format {%C%y %m %e} -locale en_US_roman -gmt 1
} 1009756800
test clock-8.766 {parse ccyymmdd} {
    clock scan {2001 12 xxxi} -format {%C%y %m %Oe} -locale en_US_roman -gmt 1
} 1009756800
test clock-8.767 {parse ccyymmdd} {
    clock scan {2001 xii 31} -format {%C%y %Om %d} -locale en_US_roman -gmt 1
} 1009756800
test clock-8.768 {parse ccyymmdd} {
    clock scan {2001 xii xxxi} -format {%C%y %Om %Od} -locale en_US_roman -gmt 1
} 1009756800
test clock-8.769 {parse ccyymmdd} {
    clock scan {2001 xii 31} -format {%C%y %Om %e} -locale en_US_roman -gmt 1
} 1009756800
test clock-8.770 {parse ccyymmdd} {
    clock scan {2001 xii xxxi} -format {%C%y %Om %Oe} -locale en_US_roman -gmt 1
} 1009756800
test clock-8.771 {parse ccyymmdd} {
    clock scan {2001 12 31} -format {%C%y %N %d} -locale en_US_roman -gmt 1
} 1009756800
test clock-8.772 {parse ccyymmdd} {
    clock scan {2001 12 xxxi} -format {%C%y %N %Od} -locale en_US_roman -gmt 1
} 1009756800
test clock-8.773 {parse ccyymmdd} {
    clock scan {2001 12 31} -format {%C%y %N %e} -locale en_US_roman -gmt 1
} 1009756800
test clock-8.774 {parse ccyymmdd} {
    clock scan {2001 12 xxxi} -format {%C%y %N %Oe} -locale en_US_roman -gmt 1
} 1009756800
test clock-8.775 {parse ccyymmdd} {
    clock scan {2001 Dec 31} -format {%Y %b %d} -locale en_US_roman -gmt 1
} 1009756800
test clock-8.776 {parse ccyymmdd} {
    clock scan {2001 Dec xxxi} -format {%Y %b %Od} -locale en_US_roman -gmt 1
} 1009756800
test clock-8.777 {parse ccyymmdd} {
    clock scan {2001 Dec 31} -format {%Y %b %e} -locale en_US_roman -gmt 1
} 1009756800
test clock-8.778 {parse ccyymmdd} {
    clock scan {2001 Dec xxxi} -format {%Y %b %Oe} -locale en_US_roman -gmt 1
} 1009756800
test clock-8.779 {parse ccyymmdd} {
    clock scan {2001 December 31} -format {%Y %B %d} -locale en_US_roman -gmt 1
} 1009756800
test clock-8.780 {parse ccyymmdd} {
    clock scan {2001 December xxxi} -format {%Y %B %Od} -locale en_US_roman -gmt 1
} 1009756800
test clock-8.781 {parse ccyymmdd} {
    clock scan {2001 December 31} -format {%Y %B %e} -locale en_US_roman -gmt 1
} 1009756800
test clock-8.782 {parse ccyymmdd} {
    clock scan {2001 December xxxi} -format {%Y %B %Oe} -locale en_US_roman -gmt 1
} 1009756800
test clock-8.783 {parse ccyymmdd} {
    clock scan {2001 Dec 31} -format {%Y %h %d} -locale en_US_roman -gmt 1
} 1009756800
test clock-8.784 {parse ccyymmdd} {
    clock scan {2001 Dec xxxi} -format {%Y %h %Od} -locale en_US_roman -gmt 1
} 1009756800
test clock-8.785 {parse ccyymmdd} {
    clock scan {2001 Dec 31} -format {%Y %h %e} -locale en_US_roman -gmt 1
} 1009756800
test clock-8.786 {parse ccyymmdd} {
    clock scan {2001 Dec xxxi} -format {%Y %h %Oe} -locale en_US_roman -gmt 1
} 1009756800
test clock-8.787 {parse ccyymmdd} {
    clock scan {2001 12 31} -format {%Y %m %d} -locale en_US_roman -gmt 1
} 1009756800
test clock-8.788 {parse ccyymmdd} {
    clock scan {2001 12 xxxi} -format {%Y %m %Od} -locale en_US_roman -gmt 1
} 1009756800
test clock-8.789 {parse ccyymmdd} {
    clock scan {2001 12 31} -format {%Y %m %e} -locale en_US_roman -gmt 1
} 1009756800
test clock-8.790 {parse ccyymmdd} {
    clock scan {2001 12 xxxi} -format {%Y %m %Oe} -locale en_US_roman -gmt 1
} 1009756800
test clock-8.791 {parse ccyymmdd} {
    clock scan {2001 xii 31} -format {%Y %Om %d} -locale en_US_roman -gmt 1
} 1009756800
test clock-8.792 {parse ccyymmdd} {
    clock scan {2001 xii xxxi} -format {%Y %Om %Od} -locale en_US_roman -gmt 1
} 1009756800
test clock-8.793 {parse ccyymmdd} {
    clock scan {2001 xii 31} -format {%Y %Om %e} -locale en_US_roman -gmt 1
} 1009756800
test clock-8.794 {parse ccyymmdd} {
    clock scan {2001 xii xxxi} -format {%Y %Om %Oe} -locale en_US_roman -gmt 1
} 1009756800
test clock-8.795 {parse ccyymmdd} {
    clock scan {2001 12 31} -format {%Y %N %d} -locale en_US_roman -gmt 1
} 1009756800
test clock-8.796 {parse ccyymmdd} {
    clock scan {2001 12 xxxi} -format {%Y %N %Od} -locale en_US_roman -gmt 1
} 1009756800
test clock-8.797 {parse ccyymmdd} {
    clock scan {2001 12 31} -format {%Y %N %e} -locale en_US_roman -gmt 1
} 1009756800
test clock-8.798 {parse ccyymmdd} {
    clock scan {2001 12 xxxi} -format {%Y %N %Oe} -locale en_US_roman -gmt 1
} 1009756800
test clock-8.799 {parse ccyymmdd} {
    clock scan 12/31/2001 -format %x -locale en_US_roman -gmt 1
} 1009756800
test clock-8.800 {parse ccyymmdd} {
    clock scan 12/31/2001 -format %D -locale en_US_roman -gmt 1
} 1009756800
# END testcases8

test clock-9.1 {seconds take precedence over ccyymmdd} {
    clock scan {0 20000101} -format {%s %Y%m%d} -gmt true
} 0

test clock-9.2 {Julian day takes precedence over ccyymmdd} {
    clock scan {2440588 20000101} -format {%J %Y%m%d} -gmt true
} 0

# Test parsing of ccyyddd

test clock-10.1 {parse ccyyddd} {
    clock scan {1970 001} -format {%Y %j} -locale en_US_roman -gmt 1
} 0
test clock-10.2 {parse ccyyddd} {
    clock scan {1970 365} -format {%Y %j} -locale en_US_roman -gmt 1
} 31449600
test clock-10.3 {parse ccyyddd} {
    clock scan {1971 001} -format {%Y %j} -locale en_US_roman -gmt 1
} 31536000
test clock-10.4 {parse ccyyddd} {
    clock scan {1971 365} -format {%Y %j} -locale en_US_roman -gmt 1
} 62985600
test clock-10.5 {parse ccyyddd} {
    clock scan {2000 001} -format {%Y %j} -locale en_US_roman -gmt 1
} 946684800
test clock-10.6 {parse ccyyddd} {
    clock scan {2000 365} -format {%Y %j} -locale en_US_roman -gmt 1
} 978134400
test clock-10.7 {parse ccyyddd} {
    clock scan {2001 001} -format {%Y %j} -locale en_US_roman -gmt 1
} 978307200
test clock-10.8 {parse ccyyddd} {
    clock scan {2001 365} -format {%Y %j} -locale en_US_roman -gmt 1
} 1009756800


test clock-10.9 {seconds take precedence over ccyyddd} {
    list [clock scan {0 2000001} -format {%s %Y%j} -gmt true] \
	 [clock scan {2000001 0} -format {%Y%j %s} -gmt true]
} {0 0}
test clock-10.10 {julian day takes precedence over ccyyddd} {
    list [clock scan {2440588 2000001} -format {%J %Y%j} -gmt true] \
	 [clock scan {2000001 2440588} -format {%Y%j %J} -gmt true]
} {0 0}

# BEGIN testcases11

# Test precedence among yyyymmdd and yyyyddd

test clock-11.1 {precedence of ccyyddd and ccyymmdd} {
    clock scan 19700101002 -format %Y%m%d%j -gmt 1
} 86400
test clock-11.2 {precedence of ccyyddd and ccyymmdd} {
    clock scan 01197001002 -format %m%Y%d%j -gmt 1
} 86400
test clock-11.3 {precedence of ccyyddd and ccyymmdd} {
    clock scan 01197001002 -format %d%Y%m%j -gmt 1
} 86400
test clock-11.4 {precedence of ccyyddd and ccyymmdd} {
    clock scan 00219700101 -format %j%Y%m%d -gmt 1
} 0
test clock-11.5 {precedence of ccyyddd and ccyymmdd} {
    clock scan 19700100201 -format %Y%m%j%d -gmt 1
} 0
test clock-11.6 {precedence of ccyyddd and ccyymmdd} {
    clock scan 01197000201 -format %m%Y%j%d -gmt 1
} 0
test clock-11.7 {precedence of ccyyddd and ccyymmdd} {
    clock scan 01197000201 -format %d%Y%j%m -gmt 1
} 0
test clock-11.8 {precedence of ccyyddd and ccyymmdd} {
    clock scan 00219700101 -format %j%Y%d%m -gmt 1
} 0
test clock-11.9 {precedence of ccyyddd and ccyymmdd} {
    clock scan 19700101002 -format %Y%d%m%j -gmt 1
} 86400
test clock-11.10 {precedence of ccyyddd and ccyymmdd} {
    clock scan 01011970002 -format %m%d%Y%j -gmt 1
} 86400
test clock-11.11 {precedence of ccyyddd and ccyymmdd} {
    clock scan 01011970002 -format %d%m%Y%j -gmt 1
} 86400
test clock-11.12 {precedence of ccyyddd and ccyymmdd} {
    clock scan 00201197001 -format %j%m%Y%d -gmt 1
} 0
test clock-11.13 {precedence of ccyyddd and ccyymmdd} {
    clock scan 19700100201 -format %Y%d%j%m -gmt 1
} 0
test clock-11.14 {precedence of ccyyddd and ccyymmdd} {
    clock scan 01010021970 -format %m%d%j%Y -gmt 1
} 86400
test clock-11.15 {precedence of ccyyddd and ccyymmdd} {
    clock scan 01010021970 -format %d%m%j%Y -gmt 1
} 86400
test clock-11.16 {precedence of ccyyddd and ccyymmdd} {
    clock scan 00201011970 -format %j%m%d%Y -gmt 1
} 0
test clock-11.17 {precedence of ccyyddd and ccyymmdd} {
    clock scan 19700020101 -format %Y%j%m%d -gmt 1
} 0
test clock-11.18 {precedence of ccyyddd and ccyymmdd} {
    clock scan 01002197001 -format %m%j%Y%d -gmt 1
} 0
test clock-11.19 {precedence of ccyyddd and ccyymmdd} {
    clock scan 01002197001 -format %d%j%Y%m -gmt 1
} 0
test clock-11.20 {precedence of ccyyddd and ccyymmdd} {
    clock scan 00201197001 -format %j%d%Y%m -gmt 1
} 0
test clock-11.21 {precedence of ccyyddd and ccyymmdd} {
    clock scan 19700020101 -format %Y%j%d%m -gmt 1
} 0
test clock-11.22 {precedence of ccyyddd and ccyymmdd} {
    clock scan 01002011970 -format %m%j%d%Y -gmt 1
} 0
test clock-11.23 {precedence of ccyyddd and ccyymmdd} {
    clock scan 01002011970 -format %d%j%m%Y -gmt 1
} 0
test clock-11.24 {precedence of ccyyddd and ccyymmdd} {
    clock scan 00201011970 -format %j%d%m%Y -gmt 1
} 0
# END testcases11

# BEGIN testcases12

# Test parsing of ccyyWwwd

test clock-12.1 {parse ccyyWwwd} {
    clock scan {1970 W01 Fri} -format {%G W%V %a} -locale en_US_roman -gmt 1
} 86400
test clock-12.2 {parse ccyyWwwd} {
    clock scan {1970 W01 Friday} -format {%G W%V %A} -locale en_US_roman -gmt 1
} 86400
test clock-12.3 {parse ccyyWwwd} {
    clock scan {1970 W01 5} -format {%G W%V %u} -locale en_US_roman -gmt 1
} 86400
test clock-12.4 {parse ccyyWwwd} {
    clock scan {1970 W01 5} -format {%G W%V %w} -locale en_US_roman -gmt 1
} 86400
test clock-12.5 {parse ccyyWwwd} {
    clock scan {1970 W01 v} -format {%G W%V %Ou} -locale en_US_roman -gmt 1
} 86400
test clock-12.6 {parse ccyyWwwd} {
    clock scan {1970 W01 v} -format {%G W%V %Ow} -locale en_US_roman -gmt 1
} 86400
test clock-12.7 {parse ccyyWwwd} {
    clock scan {1970 W05 Sat} -format {%G W%V %a} -locale en_US_roman -gmt 1
} 2592000
test clock-12.8 {parse ccyyWwwd} {
    clock scan {1970 W05 Saturday} -format {%G W%V %A} -locale en_US_roman -gmt 1
} 2592000
test clock-12.9 {parse ccyyWwwd} {
    clock scan {1970 W05 6} -format {%G W%V %u} -locale en_US_roman -gmt 1
} 2592000
test clock-12.10 {parse ccyyWwwd} {
    clock scan {1970 W05 6} -format {%G W%V %w} -locale en_US_roman -gmt 1
} 2592000
test clock-12.11 {parse ccyyWwwd} {
    clock scan {1970 W05 vi} -format {%G W%V %Ou} -locale en_US_roman -gmt 1
} 2592000
test clock-12.12 {parse ccyyWwwd} {
    clock scan {1970 W05 vi} -format {%G W%V %Ow} -locale en_US_roman -gmt 1
} 2592000
test clock-12.13 {parse ccyyWwwd} {
    clock scan {1970 W49 Wed} -format {%G W%V %a} -locale en_US_roman -gmt 1
} 28944000
test clock-12.14 {parse ccyyWwwd} {
    clock scan {1970 W49 Wednesday} -format {%G W%V %A} -locale en_US_roman -gmt 1
} 28944000
test clock-12.15 {parse ccyyWwwd} {
    clock scan {1970 W49 3} -format {%G W%V %u} -locale en_US_roman -gmt 1
} 28944000
test clock-12.16 {parse ccyyWwwd} {
    clock scan {1970 W49 3} -format {%G W%V %w} -locale en_US_roman -gmt 1
} 28944000
test clock-12.17 {parse ccyyWwwd} {
    clock scan {1970 W49 iii} -format {%G W%V %Ou} -locale en_US_roman -gmt 1
} 28944000
test clock-12.18 {parse ccyyWwwd} {
    clock scan {1970 W49 iii} -format {%G W%V %Ow} -locale en_US_roman -gmt 1
} 28944000
test clock-12.19 {parse ccyyWwwd} {
    clock scan {1970 W53 Thu} -format {%G W%V %a} -locale en_US_roman -gmt 1
} 31449600
test clock-12.20 {parse ccyyWwwd} {
    clock scan {1970 W53 Thursday} -format {%G W%V %A} -locale en_US_roman -gmt 1
} 31449600
test clock-12.21 {parse ccyyWwwd} {
    clock scan {1970 W53 4} -format {%G W%V %u} -locale en_US_roman -gmt 1
} 31449600
test clock-12.22 {parse ccyyWwwd} {
    clock scan {1970 W53 4} -format {%G W%V %w} -locale en_US_roman -gmt 1
} 31449600
test clock-12.23 {parse ccyyWwwd} {
    clock scan {1970 W53 iv} -format {%G W%V %Ou} -locale en_US_roman -gmt 1
} 31449600
test clock-12.24 {parse ccyyWwwd} {
    clock scan {1970 W53 iv} -format {%G W%V %Ow} -locale en_US_roman -gmt 1
} 31449600
test clock-12.25 {parse ccyyWwwd} {
    clock scan {1970 W53 Sat} -format {%G W%V %a} -locale en_US_roman -gmt 1
} 31622400
test clock-12.26 {parse ccyyWwwd} {
    clock scan {1970 W53 Saturday} -format {%G W%V %A} -locale en_US_roman -gmt 1
} 31622400
test clock-12.27 {parse ccyyWwwd} {
    clock scan {1970 W53 6} -format {%G W%V %u} -locale en_US_roman -gmt 1
} 31622400
test clock-12.28 {parse ccyyWwwd} {
    clock scan {1970 W53 6} -format {%G W%V %w} -locale en_US_roman -gmt 1
} 31622400
test clock-12.29 {parse ccyyWwwd} {
    clock scan {1970 W53 vi} -format {%G W%V %Ou} -locale en_US_roman -gmt 1
} 31622400
test clock-12.30 {parse ccyyWwwd} {
    clock scan {1970 W53 vi} -format {%G W%V %Ow} -locale en_US_roman -gmt 1
} 31622400
test clock-12.31 {parse ccyyWwwd} {
    clock scan {1971 W04 Sun} -format {%G W%V %a} -locale en_US_roman -gmt 1
} 34128000
test clock-12.32 {parse ccyyWwwd} {
    clock scan {1971 W04 Sunday} -format {%G W%V %A} -locale en_US_roman -gmt 1
} 34128000
test clock-12.33 {parse ccyyWwwd} {
    clock scan {1971 W04 7} -format {%G W%V %u} -locale en_US_roman -gmt 1
} 34128000
test clock-12.34 {parse ccyyWwwd} {
    clock scan {1971 W04 0} -format {%G W%V %w} -locale en_US_roman -gmt 1
} 34128000
test clock-12.35 {parse ccyyWwwd} {
    clock scan {1971 W04 vii} -format {%G W%V %Ou} -locale en_US_roman -gmt 1
} 34128000
test clock-12.36 {parse ccyyWwwd} {
    clock scan {1971 W04 ?} -format {%G W%V %Ow} -locale en_US_roman -gmt 1
} 34128000
test clock-12.37 {parse ccyyWwwd} {
    clock scan {1971 W48 Thu} -format {%G W%V %a} -locale en_US_roman -gmt 1
} 60480000
test clock-12.38 {parse ccyyWwwd} {
    clock scan {1971 W48 Thursday} -format {%G W%V %A} -locale en_US_roman -gmt 1
} 60480000
test clock-12.39 {parse ccyyWwwd} {
    clock scan {1971 W48 4} -format {%G W%V %u} -locale en_US_roman -gmt 1
} 60480000
test clock-12.40 {parse ccyyWwwd} {
    clock scan {1971 W48 4} -format {%G W%V %w} -locale en_US_roman -gmt 1
} 60480000
test clock-12.41 {parse ccyyWwwd} {
    clock scan {1971 W48 iv} -format {%G W%V %Ou} -locale en_US_roman -gmt 1
} 60480000
test clock-12.42 {parse ccyyWwwd} {
    clock scan {1971 W48 iv} -format {%G W%V %Ow} -locale en_US_roman -gmt 1
} 60480000
test clock-12.43 {parse ccyyWwwd} {
    clock scan {1971 W52 Fri} -format {%G W%V %a} -locale en_US_roman -gmt 1
} 62985600
test clock-12.44 {parse ccyyWwwd} {
    clock scan {1971 W52 Friday} -format {%G W%V %A} -locale en_US_roman -gmt 1
} 62985600
test clock-12.45 {parse ccyyWwwd} {
    clock scan {1971 W52 5} -format {%G W%V %u} -locale en_US_roman -gmt 1
} 62985600
test clock-12.46 {parse ccyyWwwd} {
    clock scan {1971 W52 5} -format {%G W%V %w} -locale en_US_roman -gmt 1
} 62985600
test clock-12.47 {parse ccyyWwwd} {
    clock scan {1971 W52 v} -format {%G W%V %Ou} -locale en_US_roman -gmt 1
} 62985600
test clock-12.48 {parse ccyyWwwd} {
    clock scan {1971 W52 v} -format {%G W%V %Ow} -locale en_US_roman -gmt 1
} 62985600
test clock-12.49 {parse ccyyWwwd} {
    clock scan {1999 W52 Sun} -format {%G W%V %a} -locale en_US_roman -gmt 1
} 946771200
test clock-12.50 {parse ccyyWwwd} {
    clock scan {1999 W52 Sunday} -format {%G W%V %A} -locale en_US_roman -gmt 1
} 946771200
test clock-12.51 {parse ccyyWwwd} {
    clock scan {1999 W52 7} -format {%G W%V %u} -locale en_US_roman -gmt 1
} 946771200
test clock-12.52 {parse ccyyWwwd} {
    clock scan {1999 W52 0} -format {%G W%V %w} -locale en_US_roman -gmt 1
} 946771200
test clock-12.53 {parse ccyyWwwd} {
    clock scan {1999 W52 vii} -format {%G W%V %Ou} -locale en_US_roman -gmt 1
} 946771200
test clock-12.54 {parse ccyyWwwd} {
    clock scan {1999 W52 ?} -format {%G W%V %Ow} -locale en_US_roman -gmt 1
} 946771200
test clock-12.55 {parse ccyyWwwd} {
    clock scan {2000 W05 Mon} -format {%G W%V %a} -locale en_US_roman -gmt 1
} 949276800
test clock-12.56 {parse ccyyWwwd} {
    clock scan {2000 W05 Monday} -format {%G W%V %A} -locale en_US_roman -gmt 1
} 949276800
test clock-12.57 {parse ccyyWwwd} {
    clock scan {2000 W05 1} -format {%G W%V %u} -locale en_US_roman -gmt 1
} 949276800
test clock-12.58 {parse ccyyWwwd} {
    clock scan {2000 W05 1} -format {%G W%V %w} -locale en_US_roman -gmt 1
} 949276800
test clock-12.59 {parse ccyyWwwd} {
    clock scan {2000 W05 i} -format {%G W%V %Ou} -locale en_US_roman -gmt 1
} 949276800
test clock-12.60 {parse ccyyWwwd} {
    clock scan {2000 W05 i} -format {%G W%V %Ow} -locale en_US_roman -gmt 1
} 949276800
test clock-12.61 {parse ccyyWwwd} {
    clock scan {2000 W48 Sat} -format {%G W%V %a} -locale en_US_roman -gmt 1
} 975715200
test clock-12.62 {parse ccyyWwwd} {
    clock scan {2000 W48 Saturday} -format {%G W%V %A} -locale en_US_roman -gmt 1
} 975715200
test clock-12.63 {parse ccyyWwwd} {
    clock scan {2000 W48 6} -format {%G W%V %u} -locale en_US_roman -gmt 1
} 975715200
test clock-12.64 {parse ccyyWwwd} {
    clock scan {2000 W48 6} -format {%G W%V %w} -locale en_US_roman -gmt 1
} 975715200
test clock-12.65 {parse ccyyWwwd} {
    clock scan {2000 W48 vi} -format {%G W%V %Ou} -locale en_US_roman -gmt 1
} 975715200
test clock-12.66 {parse ccyyWwwd} {
    clock scan {2000 W48 vi} -format {%G W%V %Ow} -locale en_US_roman -gmt 1
} 975715200
test clock-12.67 {parse ccyyWwwd} {
    clock scan {2000 W52 Sun} -format {%G W%V %a} -locale en_US_roman -gmt 1
} 978220800
test clock-12.68 {parse ccyyWwwd} {
    clock scan {2000 W52 Sunday} -format {%G W%V %A} -locale en_US_roman -gmt 1
} 978220800
test clock-12.69 {parse ccyyWwwd} {
    clock scan {2000 W52 7} -format {%G W%V %u} -locale en_US_roman -gmt 1
} 978220800
test clock-12.70 {parse ccyyWwwd} {
    clock scan {2000 W52 0} -format {%G W%V %w} -locale en_US_roman -gmt 1
} 978220800
test clock-12.71 {parse ccyyWwwd} {
    clock scan {2000 W52 vii} -format {%G W%V %Ou} -locale en_US_roman -gmt 1
} 978220800
test clock-12.72 {parse ccyyWwwd} {
    clock scan {2000 W52 ?} -format {%G W%V %Ow} -locale en_US_roman -gmt 1
} 978220800
test clock-12.73 {parse ccyyWwwd} {
    clock scan {2001 W01 Tue} -format {%G W%V %a} -locale en_US_roman -gmt 1
} 978393600
test clock-12.74 {parse ccyyWwwd} {
    clock scan {2001 W01 Tuesday} -format {%G W%V %A} -locale en_US_roman -gmt 1
} 978393600
test clock-12.75 {parse ccyyWwwd} {
    clock scan {2001 W01 2} -format {%G W%V %u} -locale en_US_roman -gmt 1
} 978393600
test clock-12.76 {parse ccyyWwwd} {
    clock scan {2001 W01 2} -format {%G W%V %w} -locale en_US_roman -gmt 1
} 978393600
test clock-12.77 {parse ccyyWwwd} {
    clock scan {2001 W01 ii} -format {%G W%V %Ou} -locale en_US_roman -gmt 1
} 978393600
test clock-12.78 {parse ccyyWwwd} {
    clock scan {2001 W01 ii} -format {%G W%V %Ow} -locale en_US_roman -gmt 1
} 978393600
test clock-12.79 {parse ccyyWwwd} {
    clock scan {2001 W05 Wed} -format {%G W%V %a} -locale en_US_roman -gmt 1
} 980899200
test clock-12.80 {parse ccyyWwwd} {
    clock scan {2001 W05 Wednesday} -format {%G W%V %A} -locale en_US_roman -gmt 1
} 980899200
test clock-12.81 {parse ccyyWwwd} {
    clock scan {2001 W05 3} -format {%G W%V %u} -locale en_US_roman -gmt 1
} 980899200
test clock-12.82 {parse ccyyWwwd} {
    clock scan {2001 W05 3} -format {%G W%V %w} -locale en_US_roman -gmt 1
} 980899200
test clock-12.83 {parse ccyyWwwd} {
    clock scan {2001 W05 iii} -format {%G W%V %Ou} -locale en_US_roman -gmt 1
} 980899200
test clock-12.84 {parse ccyyWwwd} {
    clock scan {2001 W05 iii} -format {%G W%V %Ow} -locale en_US_roman -gmt 1
} 980899200
test clock-12.85 {parse ccyyWwwd} {
    clock scan {2001 W48 Sun} -format {%G W%V %a} -locale en_US_roman -gmt 1
} 1007251200
test clock-12.86 {parse ccyyWwwd} {
    clock scan {2001 W48 Sunday} -format {%G W%V %A} -locale en_US_roman -gmt 1
} 1007251200
test clock-12.87 {parse ccyyWwwd} {
    clock scan {2001 W48 7} -format {%G W%V %u} -locale en_US_roman -gmt 1
} 1007251200
test clock-12.88 {parse ccyyWwwd} {
    clock scan {2001 W48 0} -format {%G W%V %w} -locale en_US_roman -gmt 1
} 1007251200
test clock-12.89 {parse ccyyWwwd} {
    clock scan {2001 W48 vii} -format {%G W%V %Ou} -locale en_US_roman -gmt 1
} 1007251200
test clock-12.90 {parse ccyyWwwd} {
    clock scan {2001 W48 ?} -format {%G W%V %Ow} -locale en_US_roman -gmt 1
} 1007251200
test clock-12.91 {parse ccyyWwwd} {
    clock scan {2002 W01 Mon} -format {%G W%V %a} -locale en_US_roman -gmt 1
} 1009756800
test clock-12.92 {parse ccyyWwwd} {
    clock scan {2002 W01 Monday} -format {%G W%V %A} -locale en_US_roman -gmt 1
} 1009756800
test clock-12.93 {parse ccyyWwwd} {
    clock scan {2002 W01 1} -format {%G W%V %u} -locale en_US_roman -gmt 1
} 1009756800
test clock-12.94 {parse ccyyWwwd} {
    clock scan {2002 W01 1} -format {%G W%V %w} -locale en_US_roman -gmt 1
} 1009756800
test clock-12.95 {parse ccyyWwwd} {
    clock scan {2002 W01 i} -format {%G W%V %Ou} -locale en_US_roman -gmt 1
} 1009756800
test clock-12.96 {parse ccyyWwwd} {
    clock scan {2002 W01 i} -format {%G W%V %Ow} -locale en_US_roman -gmt 1
} 1009756800
# END testcases12

test clock-13.1 {test that %s takes precedence over ccyyWwwd} {
    list [clock scan {0 2000W011} -format {%s %GW%V%u} -gmt true] \
	 [clock scan {2000W011 0} -format {%GW%V%u %s} -gmt true]
} {0 0}
test clock-13.2 {test that %J takes precedence over ccyyWwwd} {
    list [clock scan {2440588 2000W011} -format {%J %GW%V%u} -gmt true] \
	 [clock scan {2000W011 2440588} -format {%GW%V%u %J} -gmt true]
} {0 0}
test clock-13.3 {invalid weekday} {
    catch {clock scan 2000W018 -format %GW%V%u -gmt true} result
    list $result $::errorCode
} {{day of week is greater than 7} {CLOCK badDayOfWeek}}
test clock-13.4 {invalid weekday} {
    catch {
	clock scan {2000 W01 viii} \
	    -format {%G W%V %Ou} -gmt true -locale en_US_roman
    } result
    list $result $::errorCode
} {{day of week is greater than 7} {CLOCK badDayOfWeek}}

# BEGIN testcases14

# Test parsing of yymmdd

test clock-14.1 {parse yymmdd} {
    clock scan {38 Jan 02} -format {%y %b %d} -locale en_US_roman -gmt 1
} -1009756800
test clock-14.2 {parse yymmdd} {
    clock scan {38 Jan ii} -format {%y %b %Od} -locale en_US_roman -gmt 1
} -1009756800
test clock-14.3 {parse yymmdd} {
    clock scan {38 Jan  2} -format {%y %b %e} -locale en_US_roman -gmt 1
} -1009756800
test clock-14.4 {parse yymmdd} {
    clock scan {38 Jan ii} -format {%y %b %Oe} -locale en_US_roman -gmt 1
} -1009756800
test clock-14.5 {parse yymmdd} {
    clock scan {38 January 02} -format {%y %B %d} -locale en_US_roman -gmt 1
} -1009756800
test clock-14.6 {parse yymmdd} {
    clock scan {38 January ii} -format {%y %B %Od} -locale en_US_roman -gmt 1
} -1009756800
test clock-14.7 {parse yymmdd} {
    clock scan {38 January  2} -format {%y %B %e} -locale en_US_roman -gmt 1
} -1009756800
test clock-14.8 {parse yymmdd} {
    clock scan {38 January ii} -format {%y %B %Oe} -locale en_US_roman -gmt 1
} -1009756800
test clock-14.9 {parse yymmdd} {
    clock scan {38 Jan 02} -format {%y %h %d} -locale en_US_roman -gmt 1
} -1009756800
test clock-14.10 {parse yymmdd} {
    clock scan {38 Jan ii} -format {%y %h %Od} -locale en_US_roman -gmt 1
} -1009756800
test clock-14.11 {parse yymmdd} {
    clock scan {38 Jan  2} -format {%y %h %e} -locale en_US_roman -gmt 1
} -1009756800
test clock-14.12 {parse yymmdd} {
    clock scan {38 Jan ii} -format {%y %h %Oe} -locale en_US_roman -gmt 1
} -1009756800
test clock-14.13 {parse yymmdd} {
    clock scan {38 01 02} -format {%y %m %d} -locale en_US_roman -gmt 1
} -1009756800
test clock-14.14 {parse yymmdd} {
    clock scan {38 01 ii} -format {%y %m %Od} -locale en_US_roman -gmt 1
} -1009756800
test clock-14.15 {parse yymmdd} {
    clock scan {38 01  2} -format {%y %m %e} -locale en_US_roman -gmt 1
} -1009756800
test clock-14.16 {parse yymmdd} {
    clock scan {38 01 ii} -format {%y %m %Oe} -locale en_US_roman -gmt 1
} -1009756800
test clock-14.17 {parse yymmdd} {
    clock scan {38 i 02} -format {%y %Om %d} -locale en_US_roman -gmt 1
} -1009756800
test clock-14.18 {parse yymmdd} {
    clock scan {38 i ii} -format {%y %Om %Od} -locale en_US_roman -gmt 1
} -1009756800
test clock-14.19 {parse yymmdd} {
    clock scan {38 i  2} -format {%y %Om %e} -locale en_US_roman -gmt 1
} -1009756800
test clock-14.20 {parse yymmdd} {
    clock scan {38 i ii} -format {%y %Om %Oe} -locale en_US_roman -gmt 1
} -1009756800
test clock-14.21 {parse yymmdd} {
    clock scan {38  1 02} -format {%y %N %d} -locale en_US_roman -gmt 1
} -1009756800
test clock-14.22 {parse yymmdd} {
    clock scan {38  1 ii} -format {%y %N %Od} -locale en_US_roman -gmt 1
} -1009756800
test clock-14.23 {parse yymmdd} {
    clock scan {38  1  2} -format {%y %N %e} -locale en_US_roman -gmt 1
} -1009756800
test clock-14.24 {parse yymmdd} {
    clock scan {38  1 ii} -format {%y %N %Oe} -locale en_US_roman -gmt 1
} -1009756800
test clock-14.25 {parse yymmdd} {
    clock scan {xxxviii Jan 02} -format {%Oy %b %d} -locale en_US_roman -gmt 1
} -1009756800
test clock-14.26 {parse yymmdd} {
    clock scan {xxxviii Jan ii} -format {%Oy %b %Od} -locale en_US_roman -gmt 1
} -1009756800
test clock-14.27 {parse yymmdd} {
    clock scan {xxxviii Jan  2} -format {%Oy %b %e} -locale en_US_roman -gmt 1
} -1009756800
test clock-14.28 {parse yymmdd} {
    clock scan {xxxviii Jan ii} -format {%Oy %b %Oe} -locale en_US_roman -gmt 1
} -1009756800
test clock-14.29 {parse yymmdd} {
    clock scan {xxxviii January 02} -format {%Oy %B %d} -locale en_US_roman -gmt 1
} -1009756800
test clock-14.30 {parse yymmdd} {
    clock scan {xxxviii January ii} -format {%Oy %B %Od} -locale en_US_roman -gmt 1
} -1009756800
test clock-14.31 {parse yymmdd} {
    clock scan {xxxviii January  2} -format {%Oy %B %e} -locale en_US_roman -gmt 1
} -1009756800
test clock-14.32 {parse yymmdd} {
    clock scan {xxxviii January ii} -format {%Oy %B %Oe} -locale en_US_roman -gmt 1
} -1009756800
test clock-14.33 {parse yymmdd} {
    clock scan {xxxviii Jan 02} -format {%Oy %h %d} -locale en_US_roman -gmt 1
} -1009756800
test clock-14.34 {parse yymmdd} {
    clock scan {xxxviii Jan ii} -format {%Oy %h %Od} -locale en_US_roman -gmt 1
} -1009756800
test clock-14.35 {parse yymmdd} {
    clock scan {xxxviii Jan  2} -format {%Oy %h %e} -locale en_US_roman -gmt 1
} -1009756800
test clock-14.36 {parse yymmdd} {
    clock scan {xxxviii Jan ii} -format {%Oy %h %Oe} -locale en_US_roman -gmt 1
} -1009756800
test clock-14.37 {parse yymmdd} {
    clock scan {xxxviii 01 02} -format {%Oy %m %d} -locale en_US_roman -gmt 1
} -1009756800
test clock-14.38 {parse yymmdd} {
    clock scan {xxxviii 01 ii} -format {%Oy %m %Od} -locale en_US_roman -gmt 1
} -1009756800
test clock-14.39 {parse yymmdd} {
    clock scan {xxxviii 01  2} -format {%Oy %m %e} -locale en_US_roman -gmt 1
} -1009756800
test clock-14.40 {parse yymmdd} {
    clock scan {xxxviii 01 ii} -format {%Oy %m %Oe} -locale en_US_roman -gmt 1
} -1009756800
test clock-14.41 {parse yymmdd} {
    clock scan {xxxviii i 02} -format {%Oy %Om %d} -locale en_US_roman -gmt 1
} -1009756800
test clock-14.42 {parse yymmdd} {
    clock scan {xxxviii i ii} -format {%Oy %Om %Od} -locale en_US_roman -gmt 1
} -1009756800
test clock-14.43 {parse yymmdd} {
    clock scan {xxxviii i  2} -format {%Oy %Om %e} -locale en_US_roman -gmt 1
} -1009756800
test clock-14.44 {parse yymmdd} {
    clock scan {xxxviii i ii} -format {%Oy %Om %Oe} -locale en_US_roman -gmt 1
} -1009756800
test clock-14.45 {parse yymmdd} {
    clock scan {xxxviii  1 02} -format {%Oy %N %d} -locale en_US_roman -gmt 1
} -1009756800
test clock-14.46 {parse yymmdd} {
    clock scan {xxxviii  1 ii} -format {%Oy %N %Od} -locale en_US_roman -gmt 1
} -1009756800
test clock-14.47 {parse yymmdd} {
    clock scan {xxxviii  1  2} -format {%Oy %N %e} -locale en_US_roman -gmt 1
} -1009756800
test clock-14.48 {parse yymmdd} {
    clock scan {xxxviii  1 ii} -format {%Oy %N %Oe} -locale en_US_roman -gmt 1
} -1009756800
test clock-14.49 {parse yymmdd} {
    clock scan {38 Jan 31} -format {%y %b %d} -locale en_US_roman -gmt 1
} -1007251200
test clock-14.50 {parse yymmdd} {
    clock scan {38 Jan xxxi} -format {%y %b %Od} -locale en_US_roman -gmt 1
} -1007251200
test clock-14.51 {parse yymmdd} {
    clock scan {38 Jan 31} -format {%y %b %e} -locale en_US_roman -gmt 1
} -1007251200
test clock-14.52 {parse yymmdd} {
    clock scan {38 Jan xxxi} -format {%y %b %Oe} -locale en_US_roman -gmt 1
} -1007251200
test clock-14.53 {parse yymmdd} {
    clock scan {38 January 31} -format {%y %B %d} -locale en_US_roman -gmt 1
} -1007251200
test clock-14.54 {parse yymmdd} {
    clock scan {38 January xxxi} -format {%y %B %Od} -locale en_US_roman -gmt 1
} -1007251200
test clock-14.55 {parse yymmdd} {
    clock scan {38 January 31} -format {%y %B %e} -locale en_US_roman -gmt 1
} -1007251200
test clock-14.56 {parse yymmdd} {
    clock scan {38 January xxxi} -format {%y %B %Oe} -locale en_US_roman -gmt 1
} -1007251200
test clock-14.57 {parse yymmdd} {
    clock scan {38 Jan 31} -format {%y %h %d} -locale en_US_roman -gmt 1
} -1007251200
test clock-14.58 {parse yymmdd} {
    clock scan {38 Jan xxxi} -format {%y %h %Od} -locale en_US_roman -gmt 1
} -1007251200
test clock-14.59 {parse yymmdd} {
    clock scan {38 Jan 31} -format {%y %h %e} -locale en_US_roman -gmt 1
} -1007251200
test clock-14.60 {parse yymmdd} {
    clock scan {38 Jan xxxi} -format {%y %h %Oe} -locale en_US_roman -gmt 1
} -1007251200
test clock-14.61 {parse yymmdd} {
    clock scan {38 01 31} -format {%y %m %d} -locale en_US_roman -gmt 1
} -1007251200
test clock-14.62 {parse yymmdd} {
    clock scan {38 01 xxxi} -format {%y %m %Od} -locale en_US_roman -gmt 1
} -1007251200
test clock-14.63 {parse yymmdd} {
    clock scan {38 01 31} -format {%y %m %e} -locale en_US_roman -gmt 1
} -1007251200
test clock-14.64 {parse yymmdd} {
    clock scan {38 01 xxxi} -format {%y %m %Oe} -locale en_US_roman -gmt 1
} -1007251200
test clock-14.65 {parse yymmdd} {
    clock scan {38 i 31} -format {%y %Om %d} -locale en_US_roman -gmt 1
} -1007251200
test clock-14.66 {parse yymmdd} {
    clock scan {38 i xxxi} -format {%y %Om %Od} -locale en_US_roman -gmt 1
} -1007251200
test clock-14.67 {parse yymmdd} {
    clock scan {38 i 31} -format {%y %Om %e} -locale en_US_roman -gmt 1
} -1007251200
test clock-14.68 {parse yymmdd} {
    clock scan {38 i xxxi} -format {%y %Om %Oe} -locale en_US_roman -gmt 1
} -1007251200
test clock-14.69 {parse yymmdd} {
    clock scan {38  1 31} -format {%y %N %d} -locale en_US_roman -gmt 1
} -1007251200
test clock-14.70 {parse yymmdd} {
    clock scan {38  1 xxxi} -format {%y %N %Od} -locale en_US_roman -gmt 1
} -1007251200
test clock-14.71 {parse yymmdd} {
    clock scan {38  1 31} -format {%y %N %e} -locale en_US_roman -gmt 1
} -1007251200
test clock-14.72 {parse yymmdd} {
    clock scan {38  1 xxxi} -format {%y %N %Oe} -locale en_US_roman -gmt 1
} -1007251200
test clock-14.73 {parse yymmdd} {
    clock scan {xxxviii Jan 31} -format {%Oy %b %d} -locale en_US_roman -gmt 1
} -1007251200
test clock-14.74 {parse yymmdd} {
    clock scan {xxxviii Jan xxxi} -format {%Oy %b %Od} -locale en_US_roman -gmt 1
} -1007251200
test clock-14.75 {parse yymmdd} {
    clock scan {xxxviii Jan 31} -format {%Oy %b %e} -locale en_US_roman -gmt 1
} -1007251200
test clock-14.76 {parse yymmdd} {
    clock scan {xxxviii Jan xxxi} -format {%Oy %b %Oe} -locale en_US_roman -gmt 1
} -1007251200
test clock-14.77 {parse yymmdd} {
    clock scan {xxxviii January 31} -format {%Oy %B %d} -locale en_US_roman -gmt 1
} -1007251200
test clock-14.78 {parse yymmdd} {
    clock scan {xxxviii January xxxi} -format {%Oy %B %Od} -locale en_US_roman -gmt 1
} -1007251200
test clock-14.79 {parse yymmdd} {
    clock scan {xxxviii January 31} -format {%Oy %B %e} -locale en_US_roman -gmt 1
} -1007251200
test clock-14.80 {parse yymmdd} {
    clock scan {xxxviii January xxxi} -format {%Oy %B %Oe} -locale en_US_roman -gmt 1
} -1007251200
test clock-14.81 {parse yymmdd} {
    clock scan {xxxviii Jan 31} -format {%Oy %h %d} -locale en_US_roman -gmt 1
} -1007251200
test clock-14.82 {parse yymmdd} {
    clock scan {xxxviii Jan xxxi} -format {%Oy %h %Od} -locale en_US_roman -gmt 1
} -1007251200
test clock-14.83 {parse yymmdd} {
    clock scan {xxxviii Jan 31} -format {%Oy %h %e} -locale en_US_roman -gmt 1
} -1007251200
test clock-14.84 {parse yymmdd} {
    clock scan {xxxviii Jan xxxi} -format {%Oy %h %Oe} -locale en_US_roman -gmt 1
} -1007251200
test clock-14.85 {parse yymmdd} {
    clock scan {xxxviii 01 31} -format {%Oy %m %d} -locale en_US_roman -gmt 1
} -1007251200
test clock-14.86 {parse yymmdd} {
    clock scan {xxxviii 01 xxxi} -format {%Oy %m %Od} -locale en_US_roman -gmt 1
} -1007251200
test clock-14.87 {parse yymmdd} {
    clock scan {xxxviii 01 31} -format {%Oy %m %e} -locale en_US_roman -gmt 1
} -1007251200
test clock-14.88 {parse yymmdd} {
    clock scan {xxxviii 01 xxxi} -format {%Oy %m %Oe} -locale en_US_roman -gmt 1
} -1007251200
test clock-14.89 {parse yymmdd} {
    clock scan {xxxviii i 31} -format {%Oy %Om %d} -locale en_US_roman -gmt 1
} -1007251200
test clock-14.90 {parse yymmdd} {
    clock scan {xxxviii i xxxi} -format {%Oy %Om %Od} -locale en_US_roman -gmt 1
} -1007251200
test clock-14.91 {parse yymmdd} {
    clock scan {xxxviii i 31} -format {%Oy %Om %e} -locale en_US_roman -gmt 1
} -1007251200
test clock-14.92 {parse yymmdd} {
    clock scan {xxxviii i xxxi} -format {%Oy %Om %Oe} -locale en_US_roman -gmt 1
} -1007251200
test clock-14.93 {parse yymmdd} {
    clock scan {xxxviii  1 31} -format {%Oy %N %d} -locale en_US_roman -gmt 1
} -1007251200
test clock-14.94 {parse yymmdd} {
    clock scan {xxxviii  1 xxxi} -format {%Oy %N %Od} -locale en_US_roman -gmt 1
} -1007251200
test clock-14.95 {parse yymmdd} {
    clock scan {xxxviii  1 31} -format {%Oy %N %e} -locale en_US_roman -gmt 1
} -1007251200
test clock-14.96 {parse yymmdd} {
    clock scan {xxxviii  1 xxxi} -format {%Oy %N %Oe} -locale en_US_roman -gmt 1
} -1007251200
test clock-14.97 {parse yymmdd} {
    clock scan {38 Dec 02} -format {%y %b %d} -locale en_US_roman -gmt 1
} -980899200
test clock-14.98 {parse yymmdd} {
    clock scan {38 Dec ii} -format {%y %b %Od} -locale en_US_roman -gmt 1
} -980899200
test clock-14.99 {parse yymmdd} {
    clock scan {38 Dec  2} -format {%y %b %e} -locale en_US_roman -gmt 1
} -980899200
test clock-14.100 {parse yymmdd} {
    clock scan {38 Dec ii} -format {%y %b %Oe} -locale en_US_roman -gmt 1
} -980899200
test clock-14.101 {parse yymmdd} {
    clock scan {38 December 02} -format {%y %B %d} -locale en_US_roman -gmt 1
} -980899200
test clock-14.102 {parse yymmdd} {
    clock scan {38 December ii} -format {%y %B %Od} -locale en_US_roman -gmt 1
} -980899200
test clock-14.103 {parse yymmdd} {
    clock scan {38 December  2} -format {%y %B %e} -locale en_US_roman -gmt 1
} -980899200
test clock-14.104 {parse yymmdd} {
    clock scan {38 December ii} -format {%y %B %Oe} -locale en_US_roman -gmt 1
} -980899200
test clock-14.105 {parse yymmdd} {
    clock scan {38 Dec 02} -format {%y %h %d} -locale en_US_roman -gmt 1
} -980899200
test clock-14.106 {parse yymmdd} {
    clock scan {38 Dec ii} -format {%y %h %Od} -locale en_US_roman -gmt 1
} -980899200
test clock-14.107 {parse yymmdd} {
    clock scan {38 Dec  2} -format {%y %h %e} -locale en_US_roman -gmt 1
} -980899200
test clock-14.108 {parse yymmdd} {
    clock scan {38 Dec ii} -format {%y %h %Oe} -locale en_US_roman -gmt 1
} -980899200
test clock-14.109 {parse yymmdd} {
    clock scan {38 12 02} -format {%y %m %d} -locale en_US_roman -gmt 1
} -980899200
test clock-14.110 {parse yymmdd} {
    clock scan {38 12 ii} -format {%y %m %Od} -locale en_US_roman -gmt 1
} -980899200
test clock-14.111 {parse yymmdd} {
    clock scan {38 12  2} -format {%y %m %e} -locale en_US_roman -gmt 1
} -980899200
test clock-14.112 {parse yymmdd} {
    clock scan {38 12 ii} -format {%y %m %Oe} -locale en_US_roman -gmt 1
} -980899200
test clock-14.113 {parse yymmdd} {
    clock scan {38 xii 02} -format {%y %Om %d} -locale en_US_roman -gmt 1
} -980899200
test clock-14.114 {parse yymmdd} {
    clock scan {38 xii ii} -format {%y %Om %Od} -locale en_US_roman -gmt 1
} -980899200
test clock-14.115 {parse yymmdd} {
    clock scan {38 xii  2} -format {%y %Om %e} -locale en_US_roman -gmt 1
} -980899200
test clock-14.116 {parse yymmdd} {
    clock scan {38 xii ii} -format {%y %Om %Oe} -locale en_US_roman -gmt 1
} -980899200
test clock-14.117 {parse yymmdd} {
    clock scan {38 12 02} -format {%y %N %d} -locale en_US_roman -gmt 1
} -980899200
test clock-14.118 {parse yymmdd} {
    clock scan {38 12 ii} -format {%y %N %Od} -locale en_US_roman -gmt 1
} -980899200
test clock-14.119 {parse yymmdd} {
    clock scan {38 12  2} -format {%y %N %e} -locale en_US_roman -gmt 1
} -980899200
test clock-14.120 {parse yymmdd} {
    clock scan {38 12 ii} -format {%y %N %Oe} -locale en_US_roman -gmt 1
} -980899200
test clock-14.121 {parse yymmdd} {
    clock scan {xxxviii Dec 02} -format {%Oy %b %d} -locale en_US_roman -gmt 1
} -980899200
test clock-14.122 {parse yymmdd} {
    clock scan {xxxviii Dec ii} -format {%Oy %b %Od} -locale en_US_roman -gmt 1
} -980899200
test clock-14.123 {parse yymmdd} {
    clock scan {xxxviii Dec  2} -format {%Oy %b %e} -locale en_US_roman -gmt 1
} -980899200
test clock-14.124 {parse yymmdd} {
    clock scan {xxxviii Dec ii} -format {%Oy %b %Oe} -locale en_US_roman -gmt 1
} -980899200
test clock-14.125 {parse yymmdd} {
    clock scan {xxxviii December 02} -format {%Oy %B %d} -locale en_US_roman -gmt 1
} -980899200
test clock-14.126 {parse yymmdd} {
    clock scan {xxxviii December ii} -format {%Oy %B %Od} -locale en_US_roman -gmt 1
} -980899200
test clock-14.127 {parse yymmdd} {
    clock scan {xxxviii December  2} -format {%Oy %B %e} -locale en_US_roman -gmt 1
} -980899200
test clock-14.128 {parse yymmdd} {
    clock scan {xxxviii December ii} -format {%Oy %B %Oe} -locale en_US_roman -gmt 1
} -980899200
test clock-14.129 {parse yymmdd} {
    clock scan {xxxviii Dec 02} -format {%Oy %h %d} -locale en_US_roman -gmt 1
} -980899200
test clock-14.130 {parse yymmdd} {
    clock scan {xxxviii Dec ii} -format {%Oy %h %Od} -locale en_US_roman -gmt 1
} -980899200
test clock-14.131 {parse yymmdd} {
    clock scan {xxxviii Dec  2} -format {%Oy %h %e} -locale en_US_roman -gmt 1
} -980899200
test clock-14.132 {parse yymmdd} {
    clock scan {xxxviii Dec ii} -format {%Oy %h %Oe} -locale en_US_roman -gmt 1
} -980899200
test clock-14.133 {parse yymmdd} {
    clock scan {xxxviii 12 02} -format {%Oy %m %d} -locale en_US_roman -gmt 1
} -980899200
test clock-14.134 {parse yymmdd} {
    clock scan {xxxviii 12 ii} -format {%Oy %m %Od} -locale en_US_roman -gmt 1
} -980899200
test clock-14.135 {parse yymmdd} {
    clock scan {xxxviii 12  2} -format {%Oy %m %e} -locale en_US_roman -gmt 1
} -980899200
test clock-14.136 {parse yymmdd} {
    clock scan {xxxviii 12 ii} -format {%Oy %m %Oe} -locale en_US_roman -gmt 1
} -980899200
test clock-14.137 {parse yymmdd} {
    clock scan {xxxviii xii 02} -format {%Oy %Om %d} -locale en_US_roman -gmt 1
} -980899200
test clock-14.138 {parse yymmdd} {
    clock scan {xxxviii xii ii} -format {%Oy %Om %Od} -locale en_US_roman -gmt 1
} -980899200
test clock-14.139 {parse yymmdd} {
    clock scan {xxxviii xii  2} -format {%Oy %Om %e} -locale en_US_roman -gmt 1
} -980899200
test clock-14.140 {parse yymmdd} {
    clock scan {xxxviii xii ii} -format {%Oy %Om %Oe} -locale en_US_roman -gmt 1
} -980899200
test clock-14.141 {parse yymmdd} {
    clock scan {xxxviii 12 02} -format {%Oy %N %d} -locale en_US_roman -gmt 1
} -980899200
test clock-14.142 {parse yymmdd} {
    clock scan {xxxviii 12 ii} -format {%Oy %N %Od} -locale en_US_roman -gmt 1
} -980899200
test clock-14.143 {parse yymmdd} {
    clock scan {xxxviii 12  2} -format {%Oy %N %e} -locale en_US_roman -gmt 1
} -980899200
test clock-14.144 {parse yymmdd} {
    clock scan {xxxviii 12 ii} -format {%Oy %N %Oe} -locale en_US_roman -gmt 1
} -980899200
test clock-14.145 {parse yymmdd} {
    clock scan {38 Dec 31} -format {%y %b %d} -locale en_US_roman -gmt 1
} -978393600
test clock-14.146 {parse yymmdd} {
    clock scan {38 Dec xxxi} -format {%y %b %Od} -locale en_US_roman -gmt 1
} -978393600
test clock-14.147 {parse yymmdd} {
    clock scan {38 Dec 31} -format {%y %b %e} -locale en_US_roman -gmt 1
} -978393600
test clock-14.148 {parse yymmdd} {
    clock scan {38 Dec xxxi} -format {%y %b %Oe} -locale en_US_roman -gmt 1
} -978393600
test clock-14.149 {parse yymmdd} {
    clock scan {38 December 31} -format {%y %B %d} -locale en_US_roman -gmt 1
} -978393600
test clock-14.150 {parse yymmdd} {
    clock scan {38 December xxxi} -format {%y %B %Od} -locale en_US_roman -gmt 1
} -978393600
test clock-14.151 {parse yymmdd} {
    clock scan {38 December 31} -format {%y %B %e} -locale en_US_roman -gmt 1
} -978393600
test clock-14.152 {parse yymmdd} {
    clock scan {38 December xxxi} -format {%y %B %Oe} -locale en_US_roman -gmt 1
} -978393600
test clock-14.153 {parse yymmdd} {
    clock scan {38 Dec 31} -format {%y %h %d} -locale en_US_roman -gmt 1
} -978393600
test clock-14.154 {parse yymmdd} {
    clock scan {38 Dec xxxi} -format {%y %h %Od} -locale en_US_roman -gmt 1
} -978393600
test clock-14.155 {parse yymmdd} {
    clock scan {38 Dec 31} -format {%y %h %e} -locale en_US_roman -gmt 1
} -978393600
test clock-14.156 {parse yymmdd} {
    clock scan {38 Dec xxxi} -format {%y %h %Oe} -locale en_US_roman -gmt 1
} -978393600
test clock-14.157 {parse yymmdd} {
    clock scan {38 12 31} -format {%y %m %d} -locale en_US_roman -gmt 1
} -978393600
test clock-14.158 {parse yymmdd} {
    clock scan {38 12 xxxi} -format {%y %m %Od} -locale en_US_roman -gmt 1
} -978393600
test clock-14.159 {parse yymmdd} {
    clock scan {38 12 31} -format {%y %m %e} -locale en_US_roman -gmt 1
} -978393600
test clock-14.160 {parse yymmdd} {
    clock scan {38 12 xxxi} -format {%y %m %Oe} -locale en_US_roman -gmt 1
} -978393600
test clock-14.161 {parse yymmdd} {
    clock scan {38 xii 31} -format {%y %Om %d} -locale en_US_roman -gmt 1
} -978393600
test clock-14.162 {parse yymmdd} {
    clock scan {38 xii xxxi} -format {%y %Om %Od} -locale en_US_roman -gmt 1
} -978393600
test clock-14.163 {parse yymmdd} {
    clock scan {38 xii 31} -format {%y %Om %e} -locale en_US_roman -gmt 1
} -978393600
test clock-14.164 {parse yymmdd} {
    clock scan {38 xii xxxi} -format {%y %Om %Oe} -locale en_US_roman -gmt 1
} -978393600
test clock-14.165 {parse yymmdd} {
    clock scan {38 12 31} -format {%y %N %d} -locale en_US_roman -gmt 1
} -978393600
test clock-14.166 {parse yymmdd} {
    clock scan {38 12 xxxi} -format {%y %N %Od} -locale en_US_roman -gmt 1
} -978393600
test clock-14.167 {parse yymmdd} {
    clock scan {38 12 31} -format {%y %N %e} -locale en_US_roman -gmt 1
} -978393600
test clock-14.168 {parse yymmdd} {
    clock scan {38 12 xxxi} -format {%y %N %Oe} -locale en_US_roman -gmt 1
} -978393600
test clock-14.169 {parse yymmdd} {
    clock scan {xxxviii Dec 31} -format {%Oy %b %d} -locale en_US_roman -gmt 1
} -978393600
test clock-14.170 {parse yymmdd} {
    clock scan {xxxviii Dec xxxi} -format {%Oy %b %Od} -locale en_US_roman -gmt 1
} -978393600
test clock-14.171 {parse yymmdd} {
    clock scan {xxxviii Dec 31} -format {%Oy %b %e} -locale en_US_roman -gmt 1
} -978393600
test clock-14.172 {parse yymmdd} {
    clock scan {xxxviii Dec xxxi} -format {%Oy %b %Oe} -locale en_US_roman -gmt 1
} -978393600
test clock-14.173 {parse yymmdd} {
    clock scan {xxxviii December 31} -format {%Oy %B %d} -locale en_US_roman -gmt 1
} -978393600
test clock-14.174 {parse yymmdd} {
    clock scan {xxxviii December xxxi} -format {%Oy %B %Od} -locale en_US_roman -gmt 1
} -978393600
test clock-14.175 {parse yymmdd} {
    clock scan {xxxviii December 31} -format {%Oy %B %e} -locale en_US_roman -gmt 1
} -978393600
test clock-14.176 {parse yymmdd} {
    clock scan {xxxviii December xxxi} -format {%Oy %B %Oe} -locale en_US_roman -gmt 1
} -978393600
test clock-14.177 {parse yymmdd} {
    clock scan {xxxviii Dec 31} -format {%Oy %h %d} -locale en_US_roman -gmt 1
} -978393600
test clock-14.178 {parse yymmdd} {
    clock scan {xxxviii Dec xxxi} -format {%Oy %h %Od} -locale en_US_roman -gmt 1
} -978393600
test clock-14.179 {parse yymmdd} {
    clock scan {xxxviii Dec 31} -format {%Oy %h %e} -locale en_US_roman -gmt 1
} -978393600
test clock-14.180 {parse yymmdd} {
    clock scan {xxxviii Dec xxxi} -format {%Oy %h %Oe} -locale en_US_roman -gmt 1
} -978393600
test clock-14.181 {parse yymmdd} {
    clock scan {xxxviii 12 31} -format {%Oy %m %d} -locale en_US_roman -gmt 1
} -978393600
test clock-14.182 {parse yymmdd} {
    clock scan {xxxviii 12 xxxi} -format {%Oy %m %Od} -locale en_US_roman -gmt 1
} -978393600
test clock-14.183 {parse yymmdd} {
    clock scan {xxxviii 12 31} -format {%Oy %m %e} -locale en_US_roman -gmt 1
} -978393600
test clock-14.184 {parse yymmdd} {
    clock scan {xxxviii 12 xxxi} -format {%Oy %m %Oe} -locale en_US_roman -gmt 1
} -978393600
test clock-14.185 {parse yymmdd} {
    clock scan {xxxviii xii 31} -format {%Oy %Om %d} -locale en_US_roman -gmt 1
} -978393600
test clock-14.186 {parse yymmdd} {
    clock scan {xxxviii xii xxxi} -format {%Oy %Om %Od} -locale en_US_roman -gmt 1
} -978393600
test clock-14.187 {parse yymmdd} {
    clock scan {xxxviii xii 31} -format {%Oy %Om %e} -locale en_US_roman -gmt 1
} -978393600
test clock-14.188 {parse yymmdd} {
    clock scan {xxxviii xii xxxi} -format {%Oy %Om %Oe} -locale en_US_roman -gmt 1
} -978393600
test clock-14.189 {parse yymmdd} {
    clock scan {xxxviii 12 31} -format {%Oy %N %d} -locale en_US_roman -gmt 1
} -978393600
test clock-14.190 {parse yymmdd} {
    clock scan {xxxviii 12 xxxi} -format {%Oy %N %Od} -locale en_US_roman -gmt 1
} -978393600
test clock-14.191 {parse yymmdd} {
    clock scan {xxxviii 12 31} -format {%Oy %N %e} -locale en_US_roman -gmt 1
} -978393600
test clock-14.192 {parse yymmdd} {
    clock scan {xxxviii 12 xxxi} -format {%Oy %N %Oe} -locale en_US_roman -gmt 1
} -978393600
test clock-14.193 {parse yymmdd} {
    clock scan {70 Jan 02} -format {%y %b %d} -locale en_US_roman -gmt 1
} 86400
test clock-14.194 {parse yymmdd} {
    clock scan {70 Jan ii} -format {%y %b %Od} -locale en_US_roman -gmt 1
} 86400
test clock-14.195 {parse yymmdd} {
    clock scan {70 Jan  2} -format {%y %b %e} -locale en_US_roman -gmt 1
} 86400
test clock-14.196 {parse yymmdd} {
    clock scan {70 Jan ii} -format {%y %b %Oe} -locale en_US_roman -gmt 1
} 86400
test clock-14.197 {parse yymmdd} {
    clock scan {70 January 02} -format {%y %B %d} -locale en_US_roman -gmt 1
} 86400
test clock-14.198 {parse yymmdd} {
    clock scan {70 January ii} -format {%y %B %Od} -locale en_US_roman -gmt 1
} 86400
test clock-14.199 {parse yymmdd} {
    clock scan {70 January  2} -format {%y %B %e} -locale en_US_roman -gmt 1
} 86400
test clock-14.200 {parse yymmdd} {
    clock scan {70 January ii} -format {%y %B %Oe} -locale en_US_roman -gmt 1
} 86400
test clock-14.201 {parse yymmdd} {
    clock scan {70 Jan 02} -format {%y %h %d} -locale en_US_roman -gmt 1
} 86400
test clock-14.202 {parse yymmdd} {
    clock scan {70 Jan ii} -format {%y %h %Od} -locale en_US_roman -gmt 1
} 86400
test clock-14.203 {parse yymmdd} {
    clock scan {70 Jan  2} -format {%y %h %e} -locale en_US_roman -gmt 1
} 86400
test clock-14.204 {parse yymmdd} {
    clock scan {70 Jan ii} -format {%y %h %Oe} -locale en_US_roman -gmt 1
} 86400
test clock-14.205 {parse yymmdd} {
    clock scan {70 01 02} -format {%y %m %d} -locale en_US_roman -gmt 1
} 86400
test clock-14.206 {parse yymmdd} {
    clock scan {70 01 ii} -format {%y %m %Od} -locale en_US_roman -gmt 1
} 86400
test clock-14.207 {parse yymmdd} {
    clock scan {70 01  2} -format {%y %m %e} -locale en_US_roman -gmt 1
} 86400
test clock-14.208 {parse yymmdd} {
    clock scan {70 01 ii} -format {%y %m %Oe} -locale en_US_roman -gmt 1
} 86400
test clock-14.209 {parse yymmdd} {
    clock scan {70 i 02} -format {%y %Om %d} -locale en_US_roman -gmt 1
} 86400
test clock-14.210 {parse yymmdd} {
    clock scan {70 i ii} -format {%y %Om %Od} -locale en_US_roman -gmt 1
} 86400
test clock-14.211 {parse yymmdd} {
    clock scan {70 i  2} -format {%y %Om %e} -locale en_US_roman -gmt 1
} 86400
test clock-14.212 {parse yymmdd} {
    clock scan {70 i ii} -format {%y %Om %Oe} -locale en_US_roman -gmt 1
} 86400
test clock-14.213 {parse yymmdd} {
    clock scan {70  1 02} -format {%y %N %d} -locale en_US_roman -gmt 1
} 86400
test clock-14.214 {parse yymmdd} {
    clock scan {70  1 ii} -format {%y %N %Od} -locale en_US_roman -gmt 1
} 86400
test clock-14.215 {parse yymmdd} {
    clock scan {70  1  2} -format {%y %N %e} -locale en_US_roman -gmt 1
} 86400
test clock-14.216 {parse yymmdd} {
    clock scan {70  1 ii} -format {%y %N %Oe} -locale en_US_roman -gmt 1
} 86400
test clock-14.217 {parse yymmdd} {
    clock scan {lxx Jan 02} -format {%Oy %b %d} -locale en_US_roman -gmt 1
} 86400
test clock-14.218 {parse yymmdd} {
    clock scan {lxx Jan ii} -format {%Oy %b %Od} -locale en_US_roman -gmt 1
} 86400
test clock-14.219 {parse yymmdd} {
    clock scan {lxx Jan  2} -format {%Oy %b %e} -locale en_US_roman -gmt 1
} 86400
test clock-14.220 {parse yymmdd} {
    clock scan {lxx Jan ii} -format {%Oy %b %Oe} -locale en_US_roman -gmt 1
} 86400
test clock-14.221 {parse yymmdd} {
    clock scan {lxx January 02} -format {%Oy %B %d} -locale en_US_roman -gmt 1
} 86400
test clock-14.222 {parse yymmdd} {
    clock scan {lxx January ii} -format {%Oy %B %Od} -locale en_US_roman -gmt 1
} 86400
test clock-14.223 {parse yymmdd} {
    clock scan {lxx January  2} -format {%Oy %B %e} -locale en_US_roman -gmt 1
} 86400
test clock-14.224 {parse yymmdd} {
    clock scan {lxx January ii} -format {%Oy %B %Oe} -locale en_US_roman -gmt 1
} 86400
test clock-14.225 {parse yymmdd} {
    clock scan {lxx Jan 02} -format {%Oy %h %d} -locale en_US_roman -gmt 1
} 86400
test clock-14.226 {parse yymmdd} {
    clock scan {lxx Jan ii} -format {%Oy %h %Od} -locale en_US_roman -gmt 1
} 86400
test clock-14.227 {parse yymmdd} {
    clock scan {lxx Jan  2} -format {%Oy %h %e} -locale en_US_roman -gmt 1
} 86400
test clock-14.228 {parse yymmdd} {
    clock scan {lxx Jan ii} -format {%Oy %h %Oe} -locale en_US_roman -gmt 1
} 86400
test clock-14.229 {parse yymmdd} {
    clock scan {lxx 01 02} -format {%Oy %m %d} -locale en_US_roman -gmt 1
} 86400
test clock-14.230 {parse yymmdd} {
    clock scan {lxx 01 ii} -format {%Oy %m %Od} -locale en_US_roman -gmt 1
} 86400
test clock-14.231 {parse yymmdd} {
    clock scan {lxx 01  2} -format {%Oy %m %e} -locale en_US_roman -gmt 1
} 86400
test clock-14.232 {parse yymmdd} {
    clock scan {lxx 01 ii} -format {%Oy %m %Oe} -locale en_US_roman -gmt 1
} 86400
test clock-14.233 {parse yymmdd} {
    clock scan {lxx i 02} -format {%Oy %Om %d} -locale en_US_roman -gmt 1
} 86400
test clock-14.234 {parse yymmdd} {
    clock scan {lxx i ii} -format {%Oy %Om %Od} -locale en_US_roman -gmt 1
} 86400
test clock-14.235 {parse yymmdd} {
    clock scan {lxx i  2} -format {%Oy %Om %e} -locale en_US_roman -gmt 1
} 86400
test clock-14.236 {parse yymmdd} {
    clock scan {lxx i ii} -format {%Oy %Om %Oe} -locale en_US_roman -gmt 1
} 86400
test clock-14.237 {parse yymmdd} {
    clock scan {lxx  1 02} -format {%Oy %N %d} -locale en_US_roman -gmt 1
} 86400
test clock-14.238 {parse yymmdd} {
    clock scan {lxx  1 ii} -format {%Oy %N %Od} -locale en_US_roman -gmt 1
} 86400
test clock-14.239 {parse yymmdd} {
    clock scan {lxx  1  2} -format {%Oy %N %e} -locale en_US_roman -gmt 1
} 86400
test clock-14.240 {parse yymmdd} {
    clock scan {lxx  1 ii} -format {%Oy %N %Oe} -locale en_US_roman -gmt 1
} 86400
test clock-14.241 {parse yymmdd} {
    clock scan {70 Jan 31} -format {%y %b %d} -locale en_US_roman -gmt 1
} 2592000
test clock-14.242 {parse yymmdd} {
    clock scan {70 Jan xxxi} -format {%y %b %Od} -locale en_US_roman -gmt 1
} 2592000
test clock-14.243 {parse yymmdd} {
    clock scan {70 Jan 31} -format {%y %b %e} -locale en_US_roman -gmt 1
} 2592000
test clock-14.244 {parse yymmdd} {
    clock scan {70 Jan xxxi} -format {%y %b %Oe} -locale en_US_roman -gmt 1
} 2592000
test clock-14.245 {parse yymmdd} {
    clock scan {70 January 31} -format {%y %B %d} -locale en_US_roman -gmt 1
} 2592000
test clock-14.246 {parse yymmdd} {
    clock scan {70 January xxxi} -format {%y %B %Od} -locale en_US_roman -gmt 1
} 2592000
test clock-14.247 {parse yymmdd} {
    clock scan {70 January 31} -format {%y %B %e} -locale en_US_roman -gmt 1
} 2592000
test clock-14.248 {parse yymmdd} {
    clock scan {70 January xxxi} -format {%y %B %Oe} -locale en_US_roman -gmt 1
} 2592000
test clock-14.249 {parse yymmdd} {
    clock scan {70 Jan 31} -format {%y %h %d} -locale en_US_roman -gmt 1
} 2592000
test clock-14.250 {parse yymmdd} {
    clock scan {70 Jan xxxi} -format {%y %h %Od} -locale en_US_roman -gmt 1
} 2592000
test clock-14.251 {parse yymmdd} {
    clock scan {70 Jan 31} -format {%y %h %e} -locale en_US_roman -gmt 1
} 2592000
test clock-14.252 {parse yymmdd} {
    clock scan {70 Jan xxxi} -format {%y %h %Oe} -locale en_US_roman -gmt 1
} 2592000
test clock-14.253 {parse yymmdd} {
    clock scan {70 01 31} -format {%y %m %d} -locale en_US_roman -gmt 1
} 2592000
test clock-14.254 {parse yymmdd} {
    clock scan {70 01 xxxi} -format {%y %m %Od} -locale en_US_roman -gmt 1
} 2592000
test clock-14.255 {parse yymmdd} {
    clock scan {70 01 31} -format {%y %m %e} -locale en_US_roman -gmt 1
} 2592000
test clock-14.256 {parse yymmdd} {
    clock scan {70 01 xxxi} -format {%y %m %Oe} -locale en_US_roman -gmt 1
} 2592000
test clock-14.257 {parse yymmdd} {
    clock scan {70 i 31} -format {%y %Om %d} -locale en_US_roman -gmt 1
} 2592000
test clock-14.258 {parse yymmdd} {
    clock scan {70 i xxxi} -format {%y %Om %Od} -locale en_US_roman -gmt 1
} 2592000
test clock-14.259 {parse yymmdd} {
    clock scan {70 i 31} -format {%y %Om %e} -locale en_US_roman -gmt 1
} 2592000
test clock-14.260 {parse yymmdd} {
    clock scan {70 i xxxi} -format {%y %Om %Oe} -locale en_US_roman -gmt 1
} 2592000
test clock-14.261 {parse yymmdd} {
    clock scan {70  1 31} -format {%y %N %d} -locale en_US_roman -gmt 1
} 2592000
test clock-14.262 {parse yymmdd} {
    clock scan {70  1 xxxi} -format {%y %N %Od} -locale en_US_roman -gmt 1
} 2592000
test clock-14.263 {parse yymmdd} {
    clock scan {70  1 31} -format {%y %N %e} -locale en_US_roman -gmt 1
} 2592000
test clock-14.264 {parse yymmdd} {
    clock scan {70  1 xxxi} -format {%y %N %Oe} -locale en_US_roman -gmt 1
} 2592000
test clock-14.265 {parse yymmdd} {
    clock scan {lxx Jan 31} -format {%Oy %b %d} -locale en_US_roman -gmt 1
} 2592000
test clock-14.266 {parse yymmdd} {
    clock scan {lxx Jan xxxi} -format {%Oy %b %Od} -locale en_US_roman -gmt 1
} 2592000
test clock-14.267 {parse yymmdd} {
    clock scan {lxx Jan 31} -format {%Oy %b %e} -locale en_US_roman -gmt 1
} 2592000
test clock-14.268 {parse yymmdd} {
    clock scan {lxx Jan xxxi} -format {%Oy %b %Oe} -locale en_US_roman -gmt 1
} 2592000
test clock-14.269 {parse yymmdd} {
    clock scan {lxx January 31} -format {%Oy %B %d} -locale en_US_roman -gmt 1
} 2592000
test clock-14.270 {parse yymmdd} {
    clock scan {lxx January xxxi} -format {%Oy %B %Od} -locale en_US_roman -gmt 1
} 2592000
test clock-14.271 {parse yymmdd} {
    clock scan {lxx January 31} -format {%Oy %B %e} -locale en_US_roman -gmt 1
} 2592000
test clock-14.272 {parse yymmdd} {
    clock scan {lxx January xxxi} -format {%Oy %B %Oe} -locale en_US_roman -gmt 1
} 2592000
test clock-14.273 {parse yymmdd} {
    clock scan {lxx Jan 31} -format {%Oy %h %d} -locale en_US_roman -gmt 1
} 2592000
test clock-14.274 {parse yymmdd} {
    clock scan {lxx Jan xxxi} -format {%Oy %h %Od} -locale en_US_roman -gmt 1
} 2592000
test clock-14.275 {parse yymmdd} {
    clock scan {lxx Jan 31} -format {%Oy %h %e} -locale en_US_roman -gmt 1
} 2592000
test clock-14.276 {parse yymmdd} {
    clock scan {lxx Jan xxxi} -format {%Oy %h %Oe} -locale en_US_roman -gmt 1
} 2592000
test clock-14.277 {parse yymmdd} {
    clock scan {lxx 01 31} -format {%Oy %m %d} -locale en_US_roman -gmt 1
} 2592000
test clock-14.278 {parse yymmdd} {
    clock scan {lxx 01 xxxi} -format {%Oy %m %Od} -locale en_US_roman -gmt 1
} 2592000
test clock-14.279 {parse yymmdd} {
    clock scan {lxx 01 31} -format {%Oy %m %e} -locale en_US_roman -gmt 1
} 2592000
test clock-14.280 {parse yymmdd} {
    clock scan {lxx 01 xxxi} -format {%Oy %m %Oe} -locale en_US_roman -gmt 1
} 2592000
test clock-14.281 {parse yymmdd} {
    clock scan {lxx i 31} -format {%Oy %Om %d} -locale en_US_roman -gmt 1
} 2592000
test clock-14.282 {parse yymmdd} {
    clock scan {lxx i xxxi} -format {%Oy %Om %Od} -locale en_US_roman -gmt 1
} 2592000
test clock-14.283 {parse yymmdd} {
    clock scan {lxx i 31} -format {%Oy %Om %e} -locale en_US_roman -gmt 1
} 2592000
test clock-14.284 {parse yymmdd} {
    clock scan {lxx i xxxi} -format {%Oy %Om %Oe} -locale en_US_roman -gmt 1
} 2592000
test clock-14.285 {parse yymmdd} {
    clock scan {lxx  1 31} -format {%Oy %N %d} -locale en_US_roman -gmt 1
} 2592000
test clock-14.286 {parse yymmdd} {
    clock scan {lxx  1 xxxi} -format {%Oy %N %Od} -locale en_US_roman -gmt 1
} 2592000
test clock-14.287 {parse yymmdd} {
    clock scan {lxx  1 31} -format {%Oy %N %e} -locale en_US_roman -gmt 1
} 2592000
test clock-14.288 {parse yymmdd} {
    clock scan {lxx  1 xxxi} -format {%Oy %N %Oe} -locale en_US_roman -gmt 1
} 2592000
test clock-14.289 {parse yymmdd} {
    clock scan {70 Dec 02} -format {%y %b %d} -locale en_US_roman -gmt 1
} 28944000
test clock-14.290 {parse yymmdd} {
    clock scan {70 Dec ii} -format {%y %b %Od} -locale en_US_roman -gmt 1
} 28944000
test clock-14.291 {parse yymmdd} {
    clock scan {70 Dec  2} -format {%y %b %e} -locale en_US_roman -gmt 1
} 28944000
test clock-14.292 {parse yymmdd} {
    clock scan {70 Dec ii} -format {%y %b %Oe} -locale en_US_roman -gmt 1
} 28944000
test clock-14.293 {parse yymmdd} {
    clock scan {70 December 02} -format {%y %B %d} -locale en_US_roman -gmt 1
} 28944000
test clock-14.294 {parse yymmdd} {
    clock scan {70 December ii} -format {%y %B %Od} -locale en_US_roman -gmt 1
} 28944000
test clock-14.295 {parse yymmdd} {
    clock scan {70 December  2} -format {%y %B %e} -locale en_US_roman -gmt 1
} 28944000
test clock-14.296 {parse yymmdd} {
    clock scan {70 December ii} -format {%y %B %Oe} -locale en_US_roman -gmt 1
} 28944000
test clock-14.297 {parse yymmdd} {
    clock scan {70 Dec 02} -format {%y %h %d} -locale en_US_roman -gmt 1
} 28944000
test clock-14.298 {parse yymmdd} {
    clock scan {70 Dec ii} -format {%y %h %Od} -locale en_US_roman -gmt 1
} 28944000
test clock-14.299 {parse yymmdd} {
    clock scan {70 Dec  2} -format {%y %h %e} -locale en_US_roman -gmt 1
} 28944000
test clock-14.300 {parse yymmdd} {
    clock scan {70 Dec ii} -format {%y %h %Oe} -locale en_US_roman -gmt 1
} 28944000
test clock-14.301 {parse yymmdd} {
    clock scan {70 12 02} -format {%y %m %d} -locale en_US_roman -gmt 1
} 28944000
test clock-14.302 {parse yymmdd} {
    clock scan {70 12 ii} -format {%y %m %Od} -locale en_US_roman -gmt 1
} 28944000
test clock-14.303 {parse yymmdd} {
    clock scan {70 12  2} -format {%y %m %e} -locale en_US_roman -gmt 1
} 28944000
test clock-14.304 {parse yymmdd} {
    clock scan {70 12 ii} -format {%y %m %Oe} -locale en_US_roman -gmt 1
} 28944000
test clock-14.305 {parse yymmdd} {
    clock scan {70 xii 02} -format {%y %Om %d} -locale en_US_roman -gmt 1
} 28944000
test clock-14.306 {parse yymmdd} {
    clock scan {70 xii ii} -format {%y %Om %Od} -locale en_US_roman -gmt 1
} 28944000
test clock-14.307 {parse yymmdd} {
    clock scan {70 xii  2} -format {%y %Om %e} -locale en_US_roman -gmt 1
} 28944000
test clock-14.308 {parse yymmdd} {
    clock scan {70 xii ii} -format {%y %Om %Oe} -locale en_US_roman -gmt 1
} 28944000
test clock-14.309 {parse yymmdd} {
    clock scan {70 12 02} -format {%y %N %d} -locale en_US_roman -gmt 1
} 28944000
test clock-14.310 {parse yymmdd} {
    clock scan {70 12 ii} -format {%y %N %Od} -locale en_US_roman -gmt 1
} 28944000
test clock-14.311 {parse yymmdd} {
    clock scan {70 12  2} -format {%y %N %e} -locale en_US_roman -gmt 1
} 28944000
test clock-14.312 {parse yymmdd} {
    clock scan {70 12 ii} -format {%y %N %Oe} -locale en_US_roman -gmt 1
} 28944000
test clock-14.313 {parse yymmdd} {
    clock scan {lxx Dec 02} -format {%Oy %b %d} -locale en_US_roman -gmt 1
} 28944000
test clock-14.314 {parse yymmdd} {
    clock scan {lxx Dec ii} -format {%Oy %b %Od} -locale en_US_roman -gmt 1
} 28944000
test clock-14.315 {parse yymmdd} {
    clock scan {lxx Dec  2} -format {%Oy %b %e} -locale en_US_roman -gmt 1
} 28944000
test clock-14.316 {parse yymmdd} {
    clock scan {lxx Dec ii} -format {%Oy %b %Oe} -locale en_US_roman -gmt 1
} 28944000
test clock-14.317 {parse yymmdd} {
    clock scan {lxx December 02} -format {%Oy %B %d} -locale en_US_roman -gmt 1
} 28944000
test clock-14.318 {parse yymmdd} {
    clock scan {lxx December ii} -format {%Oy %B %Od} -locale en_US_roman -gmt 1
} 28944000
test clock-14.319 {parse yymmdd} {
    clock scan {lxx December  2} -format {%Oy %B %e} -locale en_US_roman -gmt 1
} 28944000
test clock-14.320 {parse yymmdd} {
    clock scan {lxx December ii} -format {%Oy %B %Oe} -locale en_US_roman -gmt 1
} 28944000
test clock-14.321 {parse yymmdd} {
    clock scan {lxx Dec 02} -format {%Oy %h %d} -locale en_US_roman -gmt 1
} 28944000
test clock-14.322 {parse yymmdd} {
    clock scan {lxx Dec ii} -format {%Oy %h %Od} -locale en_US_roman -gmt 1
} 28944000
test clock-14.323 {parse yymmdd} {
    clock scan {lxx Dec  2} -format {%Oy %h %e} -locale en_US_roman -gmt 1
} 28944000
test clock-14.324 {parse yymmdd} {
    clock scan {lxx Dec ii} -format {%Oy %h %Oe} -locale en_US_roman -gmt 1
} 28944000
test clock-14.325 {parse yymmdd} {
    clock scan {lxx 12 02} -format {%Oy %m %d} -locale en_US_roman -gmt 1
} 28944000
test clock-14.326 {parse yymmdd} {
    clock scan {lxx 12 ii} -format {%Oy %m %Od} -locale en_US_roman -gmt 1
} 28944000
test clock-14.327 {parse yymmdd} {
    clock scan {lxx 12  2} -format {%Oy %m %e} -locale en_US_roman -gmt 1
} 28944000
test clock-14.328 {parse yymmdd} {
    clock scan {lxx 12 ii} -format {%Oy %m %Oe} -locale en_US_roman -gmt 1
} 28944000
test clock-14.329 {parse yymmdd} {
    clock scan {lxx xii 02} -format {%Oy %Om %d} -locale en_US_roman -gmt 1
} 28944000
test clock-14.330 {parse yymmdd} {
    clock scan {lxx xii ii} -format {%Oy %Om %Od} -locale en_US_roman -gmt 1
} 28944000
test clock-14.331 {parse yymmdd} {
    clock scan {lxx xii  2} -format {%Oy %Om %e} -locale en_US_roman -gmt 1
} 28944000
test clock-14.332 {parse yymmdd} {
    clock scan {lxx xii ii} -format {%Oy %Om %Oe} -locale en_US_roman -gmt 1
} 28944000
test clock-14.333 {parse yymmdd} {
    clock scan {lxx 12 02} -format {%Oy %N %d} -locale en_US_roman -gmt 1
} 28944000
test clock-14.334 {parse yymmdd} {
    clock scan {lxx 12 ii} -format {%Oy %N %Od} -locale en_US_roman -gmt 1
} 28944000
test clock-14.335 {parse yymmdd} {
    clock scan {lxx 12  2} -format {%Oy %N %e} -locale en_US_roman -gmt 1
} 28944000
test clock-14.336 {parse yymmdd} {
    clock scan {lxx 12 ii} -format {%Oy %N %Oe} -locale en_US_roman -gmt 1
} 28944000
test clock-14.337 {parse yymmdd} {
    clock scan {70 Dec 31} -format {%y %b %d} -locale en_US_roman -gmt 1
} 31449600
test clock-14.338 {parse yymmdd} {
    clock scan {70 Dec xxxi} -format {%y %b %Od} -locale en_US_roman -gmt 1
} 31449600
test clock-14.339 {parse yymmdd} {
    clock scan {70 Dec 31} -format {%y %b %e} -locale en_US_roman -gmt 1
} 31449600
test clock-14.340 {parse yymmdd} {
    clock scan {70 Dec xxxi} -format {%y %b %Oe} -locale en_US_roman -gmt 1
} 31449600
test clock-14.341 {parse yymmdd} {
    clock scan {70 December 31} -format {%y %B %d} -locale en_US_roman -gmt 1
} 31449600
test clock-14.342 {parse yymmdd} {
    clock scan {70 December xxxi} -format {%y %B %Od} -locale en_US_roman -gmt 1
} 31449600
test clock-14.343 {parse yymmdd} {
    clock scan {70 December 31} -format {%y %B %e} -locale en_US_roman -gmt 1
} 31449600
test clock-14.344 {parse yymmdd} {
    clock scan {70 December xxxi} -format {%y %B %Oe} -locale en_US_roman -gmt 1
} 31449600
test clock-14.345 {parse yymmdd} {
    clock scan {70 Dec 31} -format {%y %h %d} -locale en_US_roman -gmt 1
} 31449600
test clock-14.346 {parse yymmdd} {
    clock scan {70 Dec xxxi} -format {%y %h %Od} -locale en_US_roman -gmt 1
} 31449600
test clock-14.347 {parse yymmdd} {
    clock scan {70 Dec 31} -format {%y %h %e} -locale en_US_roman -gmt 1
} 31449600
test clock-14.348 {parse yymmdd} {
    clock scan {70 Dec xxxi} -format {%y %h %Oe} -locale en_US_roman -gmt 1
} 31449600
test clock-14.349 {parse yymmdd} {
    clock scan {70 12 31} -format {%y %m %d} -locale en_US_roman -gmt 1
} 31449600
test clock-14.350 {parse yymmdd} {
    clock scan {70 12 xxxi} -format {%y %m %Od} -locale en_US_roman -gmt 1
} 31449600
test clock-14.351 {parse yymmdd} {
    clock scan {70 12 31} -format {%y %m %e} -locale en_US_roman -gmt 1
} 31449600
test clock-14.352 {parse yymmdd} {
    clock scan {70 12 xxxi} -format {%y %m %Oe} -locale en_US_roman -gmt 1
} 31449600
test clock-14.353 {parse yymmdd} {
    clock scan {70 xii 31} -format {%y %Om %d} -locale en_US_roman -gmt 1
} 31449600
test clock-14.354 {parse yymmdd} {
    clock scan {70 xii xxxi} -format {%y %Om %Od} -locale en_US_roman -gmt 1
} 31449600
test clock-14.355 {parse yymmdd} {
    clock scan {70 xii 31} -format {%y %Om %e} -locale en_US_roman -gmt 1
} 31449600
test clock-14.356 {parse yymmdd} {
    clock scan {70 xii xxxi} -format {%y %Om %Oe} -locale en_US_roman -gmt 1
} 31449600
test clock-14.357 {parse yymmdd} {
    clock scan {70 12 31} -format {%y %N %d} -locale en_US_roman -gmt 1
} 31449600
test clock-14.358 {parse yymmdd} {
    clock scan {70 12 xxxi} -format {%y %N %Od} -locale en_US_roman -gmt 1
} 31449600
test clock-14.359 {parse yymmdd} {
    clock scan {70 12 31} -format {%y %N %e} -locale en_US_roman -gmt 1
} 31449600
test clock-14.360 {parse yymmdd} {
    clock scan {70 12 xxxi} -format {%y %N %Oe} -locale en_US_roman -gmt 1
} 31449600
test clock-14.361 {parse yymmdd} {
    clock scan {lxx Dec 31} -format {%Oy %b %d} -locale en_US_roman -gmt 1
} 31449600
test clock-14.362 {parse yymmdd} {
    clock scan {lxx Dec xxxi} -format {%Oy %b %Od} -locale en_US_roman -gmt 1
} 31449600
test clock-14.363 {parse yymmdd} {
    clock scan {lxx Dec 31} -format {%Oy %b %e} -locale en_US_roman -gmt 1
} 31449600
test clock-14.364 {parse yymmdd} {
    clock scan {lxx Dec xxxi} -format {%Oy %b %Oe} -locale en_US_roman -gmt 1
} 31449600
test clock-14.365 {parse yymmdd} {
    clock scan {lxx December 31} -format {%Oy %B %d} -locale en_US_roman -gmt 1
} 31449600
test clock-14.366 {parse yymmdd} {
    clock scan {lxx December xxxi} -format {%Oy %B %Od} -locale en_US_roman -gmt 1
} 31449600
test clock-14.367 {parse yymmdd} {
    clock scan {lxx December 31} -format {%Oy %B %e} -locale en_US_roman -gmt 1
} 31449600
test clock-14.368 {parse yymmdd} {
    clock scan {lxx December xxxi} -format {%Oy %B %Oe} -locale en_US_roman -gmt 1
} 31449600
test clock-14.369 {parse yymmdd} {
    clock scan {lxx Dec 31} -format {%Oy %h %d} -locale en_US_roman -gmt 1
} 31449600
test clock-14.370 {parse yymmdd} {
    clock scan {lxx Dec xxxi} -format {%Oy %h %Od} -locale en_US_roman -gmt 1
} 31449600
test clock-14.371 {parse yymmdd} {
    clock scan {lxx Dec 31} -format {%Oy %h %e} -locale en_US_roman -gmt 1
} 31449600
test clock-14.372 {parse yymmdd} {
    clock scan {lxx Dec xxxi} -format {%Oy %h %Oe} -locale en_US_roman -gmt 1
} 31449600
test clock-14.373 {parse yymmdd} {
    clock scan {lxx 12 31} -format {%Oy %m %d} -locale en_US_roman -gmt 1
} 31449600
test clock-14.374 {parse yymmdd} {
    clock scan {lxx 12 xxxi} -format {%Oy %m %Od} -locale en_US_roman -gmt 1
} 31449600
test clock-14.375 {parse yymmdd} {
    clock scan {lxx 12 31} -format {%Oy %m %e} -locale en_US_roman -gmt 1
} 31449600
test clock-14.376 {parse yymmdd} {
    clock scan {lxx 12 xxxi} -format {%Oy %m %Oe} -locale en_US_roman -gmt 1
} 31449600
test clock-14.377 {parse yymmdd} {
    clock scan {lxx xii 31} -format {%Oy %Om %d} -locale en_US_roman -gmt 1
} 31449600
test clock-14.378 {parse yymmdd} {
    clock scan {lxx xii xxxi} -format {%Oy %Om %Od} -locale en_US_roman -gmt 1
} 31449600
test clock-14.379 {parse yymmdd} {
    clock scan {lxx xii 31} -format {%Oy %Om %e} -locale en_US_roman -gmt 1
} 31449600
test clock-14.380 {parse yymmdd} {
    clock scan {lxx xii xxxi} -format {%Oy %Om %Oe} -locale en_US_roman -gmt 1
} 31449600
test clock-14.381 {parse yymmdd} {
    clock scan {lxx 12 31} -format {%Oy %N %d} -locale en_US_roman -gmt 1
} 31449600
test clock-14.382 {parse yymmdd} {
    clock scan {lxx 12 xxxi} -format {%Oy %N %Od} -locale en_US_roman -gmt 1
} 31449600
test clock-14.383 {parse yymmdd} {
    clock scan {lxx 12 31} -format {%Oy %N %e} -locale en_US_roman -gmt 1
} 31449600
test clock-14.384 {parse yymmdd} {
    clock scan {lxx 12 xxxi} -format {%Oy %N %Oe} -locale en_US_roman -gmt 1
} 31449600
test clock-14.385 {parse yymmdd} {
    clock scan {00 Jan 02} -format {%y %b %d} -locale en_US_roman -gmt 1
} 946771200
test clock-14.386 {parse yymmdd} {
    clock scan {00 Jan ii} -format {%y %b %Od} -locale en_US_roman -gmt 1
} 946771200
test clock-14.387 {parse yymmdd} {
    clock scan {00 Jan  2} -format {%y %b %e} -locale en_US_roman -gmt 1
} 946771200
test clock-14.388 {parse yymmdd} {
    clock scan {00 Jan ii} -format {%y %b %Oe} -locale en_US_roman -gmt 1
} 946771200
test clock-14.389 {parse yymmdd} {
    clock scan {00 January 02} -format {%y %B %d} -locale en_US_roman -gmt 1
} 946771200
test clock-14.390 {parse yymmdd} {
    clock scan {00 January ii} -format {%y %B %Od} -locale en_US_roman -gmt 1
} 946771200
test clock-14.391 {parse yymmdd} {
    clock scan {00 January  2} -format {%y %B %e} -locale en_US_roman -gmt 1
} 946771200
test clock-14.392 {parse yymmdd} {
    clock scan {00 January ii} -format {%y %B %Oe} -locale en_US_roman -gmt 1
} 946771200
test clock-14.393 {parse yymmdd} {
    clock scan {00 Jan 02} -format {%y %h %d} -locale en_US_roman -gmt 1
} 946771200
test clock-14.394 {parse yymmdd} {
    clock scan {00 Jan ii} -format {%y %h %Od} -locale en_US_roman -gmt 1
} 946771200
test clock-14.395 {parse yymmdd} {
    clock scan {00 Jan  2} -format {%y %h %e} -locale en_US_roman -gmt 1
} 946771200
test clock-14.396 {parse yymmdd} {
    clock scan {00 Jan ii} -format {%y %h %Oe} -locale en_US_roman -gmt 1
} 946771200
test clock-14.397 {parse yymmdd} {
    clock scan {00 01 02} -format {%y %m %d} -locale en_US_roman -gmt 1
} 946771200
test clock-14.398 {parse yymmdd} {
    clock scan {00 01 ii} -format {%y %m %Od} -locale en_US_roman -gmt 1
} 946771200
test clock-14.399 {parse yymmdd} {
    clock scan {00 01  2} -format {%y %m %e} -locale en_US_roman -gmt 1
} 946771200
test clock-14.400 {parse yymmdd} {
    clock scan {00 01 ii} -format {%y %m %Oe} -locale en_US_roman -gmt 1
} 946771200
test clock-14.401 {parse yymmdd} {
    clock scan {00 i 02} -format {%y %Om %d} -locale en_US_roman -gmt 1
} 946771200
test clock-14.402 {parse yymmdd} {
    clock scan {00 i ii} -format {%y %Om %Od} -locale en_US_roman -gmt 1
} 946771200
test clock-14.403 {parse yymmdd} {
    clock scan {00 i  2} -format {%y %Om %e} -locale en_US_roman -gmt 1
} 946771200
test clock-14.404 {parse yymmdd} {
    clock scan {00 i ii} -format {%y %Om %Oe} -locale en_US_roman -gmt 1
} 946771200
test clock-14.405 {parse yymmdd} {
    clock scan {00  1 02} -format {%y %N %d} -locale en_US_roman -gmt 1
} 946771200
test clock-14.406 {parse yymmdd} {
    clock scan {00  1 ii} -format {%y %N %Od} -locale en_US_roman -gmt 1
} 946771200
test clock-14.407 {parse yymmdd} {
    clock scan {00  1  2} -format {%y %N %e} -locale en_US_roman -gmt 1
} 946771200
test clock-14.408 {parse yymmdd} {
    clock scan {00  1 ii} -format {%y %N %Oe} -locale en_US_roman -gmt 1
} 946771200
test clock-14.409 {parse yymmdd} {
    clock scan {? Jan 02} -format {%Oy %b %d} -locale en_US_roman -gmt 1
} 946771200
test clock-14.410 {parse yymmdd} {
    clock scan {? Jan ii} -format {%Oy %b %Od} -locale en_US_roman -gmt 1
} 946771200
test clock-14.411 {parse yymmdd} {
    clock scan {? Jan  2} -format {%Oy %b %e} -locale en_US_roman -gmt 1
} 946771200
test clock-14.412 {parse yymmdd} {
    clock scan {? Jan ii} -format {%Oy %b %Oe} -locale en_US_roman -gmt 1
} 946771200
test clock-14.413 {parse yymmdd} {
    clock scan {? January 02} -format {%Oy %B %d} -locale en_US_roman -gmt 1
} 946771200
test clock-14.414 {parse yymmdd} {
    clock scan {? January ii} -format {%Oy %B %Od} -locale en_US_roman -gmt 1
} 946771200
test clock-14.415 {parse yymmdd} {
    clock scan {? January  2} -format {%Oy %B %e} -locale en_US_roman -gmt 1
} 946771200
test clock-14.416 {parse yymmdd} {
    clock scan {? January ii} -format {%Oy %B %Oe} -locale en_US_roman -gmt 1
} 946771200
test clock-14.417 {parse yymmdd} {
    clock scan {? Jan 02} -format {%Oy %h %d} -locale en_US_roman -gmt 1
} 946771200
test clock-14.418 {parse yymmdd} {
    clock scan {? Jan ii} -format {%Oy %h %Od} -locale en_US_roman -gmt 1
} 946771200
test clock-14.419 {parse yymmdd} {
    clock scan {? Jan  2} -format {%Oy %h %e} -locale en_US_roman -gmt 1
} 946771200
test clock-14.420 {parse yymmdd} {
    clock scan {? Jan ii} -format {%Oy %h %Oe} -locale en_US_roman -gmt 1
} 946771200
test clock-14.421 {parse yymmdd} {
    clock scan {? 01 02} -format {%Oy %m %d} -locale en_US_roman -gmt 1
} 946771200
test clock-14.422 {parse yymmdd} {
    clock scan {? 01 ii} -format {%Oy %m %Od} -locale en_US_roman -gmt 1
} 946771200
test clock-14.423 {parse yymmdd} {
    clock scan {? 01  2} -format {%Oy %m %e} -locale en_US_roman -gmt 1
} 946771200
test clock-14.424 {parse yymmdd} {
    clock scan {? 01 ii} -format {%Oy %m %Oe} -locale en_US_roman -gmt 1
} 946771200
test clock-14.425 {parse yymmdd} {
    clock scan {? i 02} -format {%Oy %Om %d} -locale en_US_roman -gmt 1
} 946771200
test clock-14.426 {parse yymmdd} {
    clock scan {? i ii} -format {%Oy %Om %Od} -locale en_US_roman -gmt 1
} 946771200
test clock-14.427 {parse yymmdd} {
    clock scan {? i  2} -format {%Oy %Om %e} -locale en_US_roman -gmt 1
} 946771200
test clock-14.428 {parse yymmdd} {
    clock scan {? i ii} -format {%Oy %Om %Oe} -locale en_US_roman -gmt 1
} 946771200
test clock-14.429 {parse yymmdd} {
    clock scan {?  1 02} -format {%Oy %N %d} -locale en_US_roman -gmt 1
} 946771200
test clock-14.430 {parse yymmdd} {
    clock scan {?  1 ii} -format {%Oy %N %Od} -locale en_US_roman -gmt 1
} 946771200
test clock-14.431 {parse yymmdd} {
    clock scan {?  1  2} -format {%Oy %N %e} -locale en_US_roman -gmt 1
} 946771200
test clock-14.432 {parse yymmdd} {
    clock scan {?  1 ii} -format {%Oy %N %Oe} -locale en_US_roman -gmt 1
} 946771200
test clock-14.433 {parse yymmdd} {
    clock scan {00 Jan 31} -format {%y %b %d} -locale en_US_roman -gmt 1
} 949276800
test clock-14.434 {parse yymmdd} {
    clock scan {00 Jan xxxi} -format {%y %b %Od} -locale en_US_roman -gmt 1
} 949276800
test clock-14.435 {parse yymmdd} {
    clock scan {00 Jan 31} -format {%y %b %e} -locale en_US_roman -gmt 1
} 949276800
test clock-14.436 {parse yymmdd} {
    clock scan {00 Jan xxxi} -format {%y %b %Oe} -locale en_US_roman -gmt 1
} 949276800
test clock-14.437 {parse yymmdd} {
    clock scan {00 January 31} -format {%y %B %d} -locale en_US_roman -gmt 1
} 949276800
test clock-14.438 {parse yymmdd} {
    clock scan {00 January xxxi} -format {%y %B %Od} -locale en_US_roman -gmt 1
} 949276800
test clock-14.439 {parse yymmdd} {
    clock scan {00 January 31} -format {%y %B %e} -locale en_US_roman -gmt 1
} 949276800
test clock-14.440 {parse yymmdd} {
    clock scan {00 January xxxi} -format {%y %B %Oe} -locale en_US_roman -gmt 1
} 949276800
test clock-14.441 {parse yymmdd} {
    clock scan {00 Jan 31} -format {%y %h %d} -locale en_US_roman -gmt 1
} 949276800
test clock-14.442 {parse yymmdd} {
    clock scan {00 Jan xxxi} -format {%y %h %Od} -locale en_US_roman -gmt 1
} 949276800
test clock-14.443 {parse yymmdd} {
    clock scan {00 Jan 31} -format {%y %h %e} -locale en_US_roman -gmt 1
} 949276800
test clock-14.444 {parse yymmdd} {
    clock scan {00 Jan xxxi} -format {%y %h %Oe} -locale en_US_roman -gmt 1
} 949276800
test clock-14.445 {parse yymmdd} {
    clock scan {00 01 31} -format {%y %m %d} -locale en_US_roman -gmt 1
} 949276800
test clock-14.446 {parse yymmdd} {
    clock scan {00 01 xxxi} -format {%y %m %Od} -locale en_US_roman -gmt 1
} 949276800
test clock-14.447 {parse yymmdd} {
    clock scan {00 01 31} -format {%y %m %e} -locale en_US_roman -gmt 1
} 949276800
test clock-14.448 {parse yymmdd} {
    clock scan {00 01 xxxi} -format {%y %m %Oe} -locale en_US_roman -gmt 1
} 949276800
test clock-14.449 {parse yymmdd} {
    clock scan {00 i 31} -format {%y %Om %d} -locale en_US_roman -gmt 1
} 949276800
test clock-14.450 {parse yymmdd} {
    clock scan {00 i xxxi} -format {%y %Om %Od} -locale en_US_roman -gmt 1
} 949276800
test clock-14.451 {parse yymmdd} {
    clock scan {00 i 31} -format {%y %Om %e} -locale en_US_roman -gmt 1
} 949276800
test clock-14.452 {parse yymmdd} {
    clock scan {00 i xxxi} -format {%y %Om %Oe} -locale en_US_roman -gmt 1
} 949276800
test clock-14.453 {parse yymmdd} {
    clock scan {00  1 31} -format {%y %N %d} -locale en_US_roman -gmt 1
} 949276800
test clock-14.454 {parse yymmdd} {
    clock scan {00  1 xxxi} -format {%y %N %Od} -locale en_US_roman -gmt 1
} 949276800
test clock-14.455 {parse yymmdd} {
    clock scan {00  1 31} -format {%y %N %e} -locale en_US_roman -gmt 1
} 949276800
test clock-14.456 {parse yymmdd} {
    clock scan {00  1 xxxi} -format {%y %N %Oe} -locale en_US_roman -gmt 1
} 949276800
test clock-14.457 {parse yymmdd} {
    clock scan {? Jan 31} -format {%Oy %b %d} -locale en_US_roman -gmt 1
} 949276800
test clock-14.458 {parse yymmdd} {
    clock scan {? Jan xxxi} -format {%Oy %b %Od} -locale en_US_roman -gmt 1
} 949276800
test clock-14.459 {parse yymmdd} {
    clock scan {? Jan 31} -format {%Oy %b %e} -locale en_US_roman -gmt 1
} 949276800
test clock-14.460 {parse yymmdd} {
    clock scan {? Jan xxxi} -format {%Oy %b %Oe} -locale en_US_roman -gmt 1
} 949276800
test clock-14.461 {parse yymmdd} {
    clock scan {? January 31} -format {%Oy %B %d} -locale en_US_roman -gmt 1
} 949276800
test clock-14.462 {parse yymmdd} {
    clock scan {? January xxxi} -format {%Oy %B %Od} -locale en_US_roman -gmt 1
} 949276800
test clock-14.463 {parse yymmdd} {
    clock scan {? January 31} -format {%Oy %B %e} -locale en_US_roman -gmt 1
} 949276800
test clock-14.464 {parse yymmdd} {
    clock scan {? January xxxi} -format {%Oy %B %Oe} -locale en_US_roman -gmt 1
} 949276800
test clock-14.465 {parse yymmdd} {
    clock scan {? Jan 31} -format {%Oy %h %d} -locale en_US_roman -gmt 1
} 949276800
test clock-14.466 {parse yymmdd} {
    clock scan {? Jan xxxi} -format {%Oy %h %Od} -locale en_US_roman -gmt 1
} 949276800
test clock-14.467 {parse yymmdd} {
    clock scan {? Jan 31} -format {%Oy %h %e} -locale en_US_roman -gmt 1
} 949276800
test clock-14.468 {parse yymmdd} {
    clock scan {? Jan xxxi} -format {%Oy %h %Oe} -locale en_US_roman -gmt 1
} 949276800
test clock-14.469 {parse yymmdd} {
    clock scan {? 01 31} -format {%Oy %m %d} -locale en_US_roman -gmt 1
} 949276800
test clock-14.470 {parse yymmdd} {
    clock scan {? 01 xxxi} -format {%Oy %m %Od} -locale en_US_roman -gmt 1
} 949276800
test clock-14.471 {parse yymmdd} {
    clock scan {? 01 31} -format {%Oy %m %e} -locale en_US_roman -gmt 1
} 949276800
test clock-14.472 {parse yymmdd} {
    clock scan {? 01 xxxi} -format {%Oy %m %Oe} -locale en_US_roman -gmt 1
} 949276800
test clock-14.473 {parse yymmdd} {
    clock scan {? i 31} -format {%Oy %Om %d} -locale en_US_roman -gmt 1
} 949276800
test clock-14.474 {parse yymmdd} {
    clock scan {? i xxxi} -format {%Oy %Om %Od} -locale en_US_roman -gmt 1
} 949276800
test clock-14.475 {parse yymmdd} {
    clock scan {? i 31} -format {%Oy %Om %e} -locale en_US_roman -gmt 1
} 949276800
test clock-14.476 {parse yymmdd} {
    clock scan {? i xxxi} -format {%Oy %Om %Oe} -locale en_US_roman -gmt 1
} 949276800
test clock-14.477 {parse yymmdd} {
    clock scan {?  1 31} -format {%Oy %N %d} -locale en_US_roman -gmt 1
} 949276800
test clock-14.478 {parse yymmdd} {
    clock scan {?  1 xxxi} -format {%Oy %N %Od} -locale en_US_roman -gmt 1
} 949276800
test clock-14.479 {parse yymmdd} {
    clock scan {?  1 31} -format {%Oy %N %e} -locale en_US_roman -gmt 1
} 949276800
test clock-14.480 {parse yymmdd} {
    clock scan {?  1 xxxi} -format {%Oy %N %Oe} -locale en_US_roman -gmt 1
} 949276800
test clock-14.481 {parse yymmdd} {
    clock scan {00 Dec 02} -format {%y %b %d} -locale en_US_roman -gmt 1
} 975715200
test clock-14.482 {parse yymmdd} {
    clock scan {00 Dec ii} -format {%y %b %Od} -locale en_US_roman -gmt 1
} 975715200
test clock-14.483 {parse yymmdd} {
    clock scan {00 Dec  2} -format {%y %b %e} -locale en_US_roman -gmt 1
} 975715200
test clock-14.484 {parse yymmdd} {
    clock scan {00 Dec ii} -format {%y %b %Oe} -locale en_US_roman -gmt 1
} 975715200
test clock-14.485 {parse yymmdd} {
    clock scan {00 December 02} -format {%y %B %d} -locale en_US_roman -gmt 1
} 975715200
test clock-14.486 {parse yymmdd} {
    clock scan {00 December ii} -format {%y %B %Od} -locale en_US_roman -gmt 1
} 975715200
test clock-14.487 {parse yymmdd} {
    clock scan {00 December  2} -format {%y %B %e} -locale en_US_roman -gmt 1
} 975715200
test clock-14.488 {parse yymmdd} {
    clock scan {00 December ii} -format {%y %B %Oe} -locale en_US_roman -gmt 1
} 975715200
test clock-14.489 {parse yymmdd} {
    clock scan {00 Dec 02} -format {%y %h %d} -locale en_US_roman -gmt 1
} 975715200
test clock-14.490 {parse yymmdd} {
    clock scan {00 Dec ii} -format {%y %h %Od} -locale en_US_roman -gmt 1
} 975715200
test clock-14.491 {parse yymmdd} {
    clock scan {00 Dec  2} -format {%y %h %e} -locale en_US_roman -gmt 1
} 975715200
test clock-14.492 {parse yymmdd} {
    clock scan {00 Dec ii} -format {%y %h %Oe} -locale en_US_roman -gmt 1
} 975715200
test clock-14.493 {parse yymmdd} {
    clock scan {00 12 02} -format {%y %m %d} -locale en_US_roman -gmt 1
} 975715200
test clock-14.494 {parse yymmdd} {
    clock scan {00 12 ii} -format {%y %m %Od} -locale en_US_roman -gmt 1
} 975715200
test clock-14.495 {parse yymmdd} {
    clock scan {00 12  2} -format {%y %m %e} -locale en_US_roman -gmt 1
} 975715200
test clock-14.496 {parse yymmdd} {
    clock scan {00 12 ii} -format {%y %m %Oe} -locale en_US_roman -gmt 1
} 975715200
test clock-14.497 {parse yymmdd} {
    clock scan {00 xii 02} -format {%y %Om %d} -locale en_US_roman -gmt 1
} 975715200
test clock-14.498 {parse yymmdd} {
    clock scan {00 xii ii} -format {%y %Om %Od} -locale en_US_roman -gmt 1
} 975715200
test clock-14.499 {parse yymmdd} {
    clock scan {00 xii  2} -format {%y %Om %e} -locale en_US_roman -gmt 1
} 975715200
test clock-14.500 {parse yymmdd} {
    clock scan {00 xii ii} -format {%y %Om %Oe} -locale en_US_roman -gmt 1
} 975715200
test clock-14.501 {parse yymmdd} {
    clock scan {00 12 02} -format {%y %N %d} -locale en_US_roman -gmt 1
} 975715200
test clock-14.502 {parse yymmdd} {
    clock scan {00 12 ii} -format {%y %N %Od} -locale en_US_roman -gmt 1
} 975715200
test clock-14.503 {parse yymmdd} {
    clock scan {00 12  2} -format {%y %N %e} -locale en_US_roman -gmt 1
} 975715200
test clock-14.504 {parse yymmdd} {
    clock scan {00 12 ii} -format {%y %N %Oe} -locale en_US_roman -gmt 1
} 975715200
test clock-14.505 {parse yymmdd} {
    clock scan {? Dec 02} -format {%Oy %b %d} -locale en_US_roman -gmt 1
} 975715200
test clock-14.506 {parse yymmdd} {
    clock scan {? Dec ii} -format {%Oy %b %Od} -locale en_US_roman -gmt 1
} 975715200
test clock-14.507 {parse yymmdd} {
    clock scan {? Dec  2} -format {%Oy %b %e} -locale en_US_roman -gmt 1
} 975715200
test clock-14.508 {parse yymmdd} {
    clock scan {? Dec ii} -format {%Oy %b %Oe} -locale en_US_roman -gmt 1
} 975715200
test clock-14.509 {parse yymmdd} {
    clock scan {? December 02} -format {%Oy %B %d} -locale en_US_roman -gmt 1
} 975715200
test clock-14.510 {parse yymmdd} {
    clock scan {? December ii} -format {%Oy %B %Od} -locale en_US_roman -gmt 1
} 975715200
test clock-14.511 {parse yymmdd} {
    clock scan {? December  2} -format {%Oy %B %e} -locale en_US_roman -gmt 1
} 975715200
test clock-14.512 {parse yymmdd} {
    clock scan {? December ii} -format {%Oy %B %Oe} -locale en_US_roman -gmt 1
} 975715200
test clock-14.513 {parse yymmdd} {
    clock scan {? Dec 02} -format {%Oy %h %d} -locale en_US_roman -gmt 1
} 975715200
test clock-14.514 {parse yymmdd} {
    clock scan {? Dec ii} -format {%Oy %h %Od} -locale en_US_roman -gmt 1
} 975715200
test clock-14.515 {parse yymmdd} {
    clock scan {? Dec  2} -format {%Oy %h %e} -locale en_US_roman -gmt 1
} 975715200
test clock-14.516 {parse yymmdd} {
    clock scan {? Dec ii} -format {%Oy %h %Oe} -locale en_US_roman -gmt 1
} 975715200
test clock-14.517 {parse yymmdd} {
    clock scan {? 12 02} -format {%Oy %m %d} -locale en_US_roman -gmt 1
} 975715200
test clock-14.518 {parse yymmdd} {
    clock scan {? 12 ii} -format {%Oy %m %Od} -locale en_US_roman -gmt 1
} 975715200
test clock-14.519 {parse yymmdd} {
    clock scan {? 12  2} -format {%Oy %m %e} -locale en_US_roman -gmt 1
} 975715200
test clock-14.520 {parse yymmdd} {
    clock scan {? 12 ii} -format {%Oy %m %Oe} -locale en_US_roman -gmt 1
} 975715200
test clock-14.521 {parse yymmdd} {
    clock scan {? xii 02} -format {%Oy %Om %d} -locale en_US_roman -gmt 1
} 975715200
test clock-14.522 {parse yymmdd} {
    clock scan {? xii ii} -format {%Oy %Om %Od} -locale en_US_roman -gmt 1
} 975715200
test clock-14.523 {parse yymmdd} {
    clock scan {? xii  2} -format {%Oy %Om %e} -locale en_US_roman -gmt 1
} 975715200
test clock-14.524 {parse yymmdd} {
    clock scan {? xii ii} -format {%Oy %Om %Oe} -locale en_US_roman -gmt 1
} 975715200
test clock-14.525 {parse yymmdd} {
    clock scan {? 12 02} -format {%Oy %N %d} -locale en_US_roman -gmt 1
} 975715200
test clock-14.526 {parse yymmdd} {
    clock scan {? 12 ii} -format {%Oy %N %Od} -locale en_US_roman -gmt 1
} 975715200
test clock-14.527 {parse yymmdd} {
    clock scan {? 12  2} -format {%Oy %N %e} -locale en_US_roman -gmt 1
} 975715200
test clock-14.528 {parse yymmdd} {
    clock scan {? 12 ii} -format {%Oy %N %Oe} -locale en_US_roman -gmt 1
} 975715200
test clock-14.529 {parse yymmdd} {
    clock scan {00 Dec 31} -format {%y %b %d} -locale en_US_roman -gmt 1
} 978220800
test clock-14.530 {parse yymmdd} {
    clock scan {00 Dec xxxi} -format {%y %b %Od} -locale en_US_roman -gmt 1
} 978220800
test clock-14.531 {parse yymmdd} {
    clock scan {00 Dec 31} -format {%y %b %e} -locale en_US_roman -gmt 1
} 978220800
test clock-14.532 {parse yymmdd} {
    clock scan {00 Dec xxxi} -format {%y %b %Oe} -locale en_US_roman -gmt 1
} 978220800
test clock-14.533 {parse yymmdd} {
    clock scan {00 December 31} -format {%y %B %d} -locale en_US_roman -gmt 1
} 978220800
test clock-14.534 {parse yymmdd} {
    clock scan {00 December xxxi} -format {%y %B %Od} -locale en_US_roman -gmt 1
} 978220800
test clock-14.535 {parse yymmdd} {
    clock scan {00 December 31} -format {%y %B %e} -locale en_US_roman -gmt 1
} 978220800
test clock-14.536 {parse yymmdd} {
    clock scan {00 December xxxi} -format {%y %B %Oe} -locale en_US_roman -gmt 1
} 978220800
test clock-14.537 {parse yymmdd} {
    clock scan {00 Dec 31} -format {%y %h %d} -locale en_US_roman -gmt 1
} 978220800
test clock-14.538 {parse yymmdd} {
    clock scan {00 Dec xxxi} -format {%y %h %Od} -locale en_US_roman -gmt 1
} 978220800
test clock-14.539 {parse yymmdd} {
    clock scan {00 Dec 31} -format {%y %h %e} -locale en_US_roman -gmt 1
} 978220800
test clock-14.540 {parse yymmdd} {
    clock scan {00 Dec xxxi} -format {%y %h %Oe} -locale en_US_roman -gmt 1
} 978220800
test clock-14.541 {parse yymmdd} {
    clock scan {00 12 31} -format {%y %m %d} -locale en_US_roman -gmt 1
} 978220800
test clock-14.542 {parse yymmdd} {
    clock scan {00 12 xxxi} -format {%y %m %Od} -locale en_US_roman -gmt 1
} 978220800
test clock-14.543 {parse yymmdd} {
    clock scan {00 12 31} -format {%y %m %e} -locale en_US_roman -gmt 1
} 978220800
test clock-14.544 {parse yymmdd} {
    clock scan {00 12 xxxi} -format {%y %m %Oe} -locale en_US_roman -gmt 1
} 978220800
test clock-14.545 {parse yymmdd} {
    clock scan {00 xii 31} -format {%y %Om %d} -locale en_US_roman -gmt 1
} 978220800
test clock-14.546 {parse yymmdd} {
    clock scan {00 xii xxxi} -format {%y %Om %Od} -locale en_US_roman -gmt 1
} 978220800
test clock-14.547 {parse yymmdd} {
    clock scan {00 xii 31} -format {%y %Om %e} -locale en_US_roman -gmt 1
} 978220800
test clock-14.548 {parse yymmdd} {
    clock scan {00 xii xxxi} -format {%y %Om %Oe} -locale en_US_roman -gmt 1
} 978220800
test clock-14.549 {parse yymmdd} {
    clock scan {00 12 31} -format {%y %N %d} -locale en_US_roman -gmt 1
} 978220800
test clock-14.550 {parse yymmdd} {
    clock scan {00 12 xxxi} -format {%y %N %Od} -locale en_US_roman -gmt 1
} 978220800
test clock-14.551 {parse yymmdd} {
    clock scan {00 12 31} -format {%y %N %e} -locale en_US_roman -gmt 1
} 978220800
test clock-14.552 {parse yymmdd} {
    clock scan {00 12 xxxi} -format {%y %N %Oe} -locale en_US_roman -gmt 1
} 978220800
test clock-14.553 {parse yymmdd} {
    clock scan {? Dec 31} -format {%Oy %b %d} -locale en_US_roman -gmt 1
} 978220800
test clock-14.554 {parse yymmdd} {
    clock scan {? Dec xxxi} -format {%Oy %b %Od} -locale en_US_roman -gmt 1
} 978220800
test clock-14.555 {parse yymmdd} {
    clock scan {? Dec 31} -format {%Oy %b %e} -locale en_US_roman -gmt 1
} 978220800
test clock-14.556 {parse yymmdd} {
    clock scan {? Dec xxxi} -format {%Oy %b %Oe} -locale en_US_roman -gmt 1
} 978220800
test clock-14.557 {parse yymmdd} {
    clock scan {? December 31} -format {%Oy %B %d} -locale en_US_roman -gmt 1
} 978220800
test clock-14.558 {parse yymmdd} {
    clock scan {? December xxxi} -format {%Oy %B %Od} -locale en_US_roman -gmt 1
} 978220800
test clock-14.559 {parse yymmdd} {
    clock scan {? December 31} -format {%Oy %B %e} -locale en_US_roman -gmt 1
} 978220800
test clock-14.560 {parse yymmdd} {
    clock scan {? December xxxi} -format {%Oy %B %Oe} -locale en_US_roman -gmt 1
} 978220800
test clock-14.561 {parse yymmdd} {
    clock scan {? Dec 31} -format {%Oy %h %d} -locale en_US_roman -gmt 1
} 978220800
test clock-14.562 {parse yymmdd} {
    clock scan {? Dec xxxi} -format {%Oy %h %Od} -locale en_US_roman -gmt 1
} 978220800
test clock-14.563 {parse yymmdd} {
    clock scan {? Dec 31} -format {%Oy %h %e} -locale en_US_roman -gmt 1
} 978220800
test clock-14.564 {parse yymmdd} {
    clock scan {? Dec xxxi} -format {%Oy %h %Oe} -locale en_US_roman -gmt 1
} 978220800
test clock-14.565 {parse yymmdd} {
    clock scan {? 12 31} -format {%Oy %m %d} -locale en_US_roman -gmt 1
} 978220800
test clock-14.566 {parse yymmdd} {
    clock scan {? 12 xxxi} -format {%Oy %m %Od} -locale en_US_roman -gmt 1
} 978220800
test clock-14.567 {parse yymmdd} {
    clock scan {? 12 31} -format {%Oy %m %e} -locale en_US_roman -gmt 1
} 978220800
test clock-14.568 {parse yymmdd} {
    clock scan {? 12 xxxi} -format {%Oy %m %Oe} -locale en_US_roman -gmt 1
} 978220800
test clock-14.569 {parse yymmdd} {
    clock scan {? xii 31} -format {%Oy %Om %d} -locale en_US_roman -gmt 1
} 978220800
test clock-14.570 {parse yymmdd} {
    clock scan {? xii xxxi} -format {%Oy %Om %Od} -locale en_US_roman -gmt 1
} 978220800
test clock-14.571 {parse yymmdd} {
    clock scan {? xii 31} -format {%Oy %Om %e} -locale en_US_roman -gmt 1
} 978220800
test clock-14.572 {parse yymmdd} {
    clock scan {? xii xxxi} -format {%Oy %Om %Oe} -locale en_US_roman -gmt 1
} 978220800
test clock-14.573 {parse yymmdd} {
    clock scan {? 12 31} -format {%Oy %N %d} -locale en_US_roman -gmt 1
} 978220800
test clock-14.574 {parse yymmdd} {
    clock scan {? 12 xxxi} -format {%Oy %N %Od} -locale en_US_roman -gmt 1
} 978220800
test clock-14.575 {parse yymmdd} {
    clock scan {? 12 31} -format {%Oy %N %e} -locale en_US_roman -gmt 1
} 978220800
test clock-14.576 {parse yymmdd} {
    clock scan {? 12 xxxi} -format {%Oy %N %Oe} -locale en_US_roman -gmt 1
} 978220800
test clock-14.577 {parse yymmdd} {
    clock scan {37 Jan 02} -format {%y %b %d} -locale en_US_roman -gmt 1
} 2114467200
test clock-14.578 {parse yymmdd} {
    clock scan {37 Jan ii} -format {%y %b %Od} -locale en_US_roman -gmt 1
} 2114467200
test clock-14.579 {parse yymmdd} {
    clock scan {37 Jan  2} -format {%y %b %e} -locale en_US_roman -gmt 1
} 2114467200
test clock-14.580 {parse yymmdd} {
    clock scan {37 Jan ii} -format {%y %b %Oe} -locale en_US_roman -gmt 1
} 2114467200
test clock-14.581 {parse yymmdd} {
    clock scan {37 January 02} -format {%y %B %d} -locale en_US_roman -gmt 1
} 2114467200
test clock-14.582 {parse yymmdd} {
    clock scan {37 January ii} -format {%y %B %Od} -locale en_US_roman -gmt 1
} 2114467200
test clock-14.583 {parse yymmdd} {
    clock scan {37 January  2} -format {%y %B %e} -locale en_US_roman -gmt 1
} 2114467200
test clock-14.584 {parse yymmdd} {
    clock scan {37 January ii} -format {%y %B %Oe} -locale en_US_roman -gmt 1
} 2114467200
test clock-14.585 {parse yymmdd} {
    clock scan {37 Jan 02} -format {%y %h %d} -locale en_US_roman -gmt 1
} 2114467200
test clock-14.586 {parse yymmdd} {
    clock scan {37 Jan ii} -format {%y %h %Od} -locale en_US_roman -gmt 1
} 2114467200
test clock-14.587 {parse yymmdd} {
    clock scan {37 Jan  2} -format {%y %h %e} -locale en_US_roman -gmt 1
} 2114467200
test clock-14.588 {parse yymmdd} {
    clock scan {37 Jan ii} -format {%y %h %Oe} -locale en_US_roman -gmt 1
} 2114467200
test clock-14.589 {parse yymmdd} {
    clock scan {37 01 02} -format {%y %m %d} -locale en_US_roman -gmt 1
} 2114467200
test clock-14.590 {parse yymmdd} {
    clock scan {37 01 ii} -format {%y %m %Od} -locale en_US_roman -gmt 1
} 2114467200
test clock-14.591 {parse yymmdd} {
    clock scan {37 01  2} -format {%y %m %e} -locale en_US_roman -gmt 1
} 2114467200
test clock-14.592 {parse yymmdd} {
    clock scan {37 01 ii} -format {%y %m %Oe} -locale en_US_roman -gmt 1
} 2114467200
test clock-14.593 {parse yymmdd} {
    clock scan {37 i 02} -format {%y %Om %d} -locale en_US_roman -gmt 1
} 2114467200
test clock-14.594 {parse yymmdd} {
    clock scan {37 i ii} -format {%y %Om %Od} -locale en_US_roman -gmt 1
} 2114467200
test clock-14.595 {parse yymmdd} {
    clock scan {37 i  2} -format {%y %Om %e} -locale en_US_roman -gmt 1
} 2114467200
test clock-14.596 {parse yymmdd} {
    clock scan {37 i ii} -format {%y %Om %Oe} -locale en_US_roman -gmt 1
} 2114467200
test clock-14.597 {parse yymmdd} {
    clock scan {37  1 02} -format {%y %N %d} -locale en_US_roman -gmt 1
} 2114467200
test clock-14.598 {parse yymmdd} {
    clock scan {37  1 ii} -format {%y %N %Od} -locale en_US_roman -gmt 1
} 2114467200
test clock-14.599 {parse yymmdd} {
    clock scan {37  1  2} -format {%y %N %e} -locale en_US_roman -gmt 1
} 2114467200
test clock-14.600 {parse yymmdd} {
    clock scan {37  1 ii} -format {%y %N %Oe} -locale en_US_roman -gmt 1
} 2114467200
test clock-14.601 {parse yymmdd} {
    clock scan {xxxvii Jan 02} -format {%Oy %b %d} -locale en_US_roman -gmt 1
} 2114467200
test clock-14.602 {parse yymmdd} {
    clock scan {xxxvii Jan ii} -format {%Oy %b %Od} -locale en_US_roman -gmt 1
} 2114467200
test clock-14.603 {parse yymmdd} {
    clock scan {xxxvii Jan  2} -format {%Oy %b %e} -locale en_US_roman -gmt 1
} 2114467200
test clock-14.604 {parse yymmdd} {
    clock scan {xxxvii Jan ii} -format {%Oy %b %Oe} -locale en_US_roman -gmt 1
} 2114467200
test clock-14.605 {parse yymmdd} {
    clock scan {xxxvii January 02} -format {%Oy %B %d} -locale en_US_roman -gmt 1
} 2114467200
test clock-14.606 {parse yymmdd} {
    clock scan {xxxvii January ii} -format {%Oy %B %Od} -locale en_US_roman -gmt 1
} 2114467200
test clock-14.607 {parse yymmdd} {
    clock scan {xxxvii January  2} -format {%Oy %B %e} -locale en_US_roman -gmt 1
} 2114467200
test clock-14.608 {parse yymmdd} {
    clock scan {xxxvii January ii} -format {%Oy %B %Oe} -locale en_US_roman -gmt 1
} 2114467200
test clock-14.609 {parse yymmdd} {
    clock scan {xxxvii Jan 02} -format {%Oy %h %d} -locale en_US_roman -gmt 1
} 2114467200
test clock-14.610 {parse yymmdd} {
    clock scan {xxxvii Jan ii} -format {%Oy %h %Od} -locale en_US_roman -gmt 1
} 2114467200
test clock-14.611 {parse yymmdd} {
    clock scan {xxxvii Jan  2} -format {%Oy %h %e} -locale en_US_roman -gmt 1
} 2114467200
test clock-14.612 {parse yymmdd} {
    clock scan {xxxvii Jan ii} -format {%Oy %h %Oe} -locale en_US_roman -gmt 1
} 2114467200
test clock-14.613 {parse yymmdd} {
    clock scan {xxxvii 01 02} -format {%Oy %m %d} -locale en_US_roman -gmt 1
} 2114467200
test clock-14.614 {parse yymmdd} {
    clock scan {xxxvii 01 ii} -format {%Oy %m %Od} -locale en_US_roman -gmt 1
} 2114467200
test clock-14.615 {parse yymmdd} {
    clock scan {xxxvii 01  2} -format {%Oy %m %e} -locale en_US_roman -gmt 1
} 2114467200
test clock-14.616 {parse yymmdd} {
    clock scan {xxxvii 01 ii} -format {%Oy %m %Oe} -locale en_US_roman -gmt 1
} 2114467200
test clock-14.617 {parse yymmdd} {
    clock scan {xxxvii i 02} -format {%Oy %Om %d} -locale en_US_roman -gmt 1
} 2114467200
test clock-14.618 {parse yymmdd} {
    clock scan {xxxvii i ii} -format {%Oy %Om %Od} -locale en_US_roman -gmt 1
} 2114467200
test clock-14.619 {parse yymmdd} {
    clock scan {xxxvii i  2} -format {%Oy %Om %e} -locale en_US_roman -gmt 1
} 2114467200
test clock-14.620 {parse yymmdd} {
    clock scan {xxxvii i ii} -format {%Oy %Om %Oe} -locale en_US_roman -gmt 1
} 2114467200
test clock-14.621 {parse yymmdd} {
    clock scan {xxxvii  1 02} -format {%Oy %N %d} -locale en_US_roman -gmt 1
} 2114467200
test clock-14.622 {parse yymmdd} {
    clock scan {xxxvii  1 ii} -format {%Oy %N %Od} -locale en_US_roman -gmt 1
} 2114467200
test clock-14.623 {parse yymmdd} {
    clock scan {xxxvii  1  2} -format {%Oy %N %e} -locale en_US_roman -gmt 1
} 2114467200
test clock-14.624 {parse yymmdd} {
    clock scan {xxxvii  1 ii} -format {%Oy %N %Oe} -locale en_US_roman -gmt 1
} 2114467200
test clock-14.625 {parse yymmdd} {
    clock scan {37 Jan 31} -format {%y %b %d} -locale en_US_roman -gmt 1
} 2116972800
test clock-14.626 {parse yymmdd} {
    clock scan {37 Jan xxxi} -format {%y %b %Od} -locale en_US_roman -gmt 1
} 2116972800
test clock-14.627 {parse yymmdd} {
    clock scan {37 Jan 31} -format {%y %b %e} -locale en_US_roman -gmt 1
} 2116972800
test clock-14.628 {parse yymmdd} {
    clock scan {37 Jan xxxi} -format {%y %b %Oe} -locale en_US_roman -gmt 1
} 2116972800
test clock-14.629 {parse yymmdd} {
    clock scan {37 January 31} -format {%y %B %d} -locale en_US_roman -gmt 1
} 2116972800
test clock-14.630 {parse yymmdd} {
    clock scan {37 January xxxi} -format {%y %B %Od} -locale en_US_roman -gmt 1
} 2116972800
test clock-14.631 {parse yymmdd} {
    clock scan {37 January 31} -format {%y %B %e} -locale en_US_roman -gmt 1
} 2116972800
test clock-14.632 {parse yymmdd} {
    clock scan {37 January xxxi} -format {%y %B %Oe} -locale en_US_roman -gmt 1
} 2116972800
test clock-14.633 {parse yymmdd} {
    clock scan {37 Jan 31} -format {%y %h %d} -locale en_US_roman -gmt 1
} 2116972800
test clock-14.634 {parse yymmdd} {
    clock scan {37 Jan xxxi} -format {%y %h %Od} -locale en_US_roman -gmt 1
} 2116972800
test clock-14.635 {parse yymmdd} {
    clock scan {37 Jan 31} -format {%y %h %e} -locale en_US_roman -gmt 1
} 2116972800
test clock-14.636 {parse yymmdd} {
    clock scan {37 Jan xxxi} -format {%y %h %Oe} -locale en_US_roman -gmt 1
} 2116972800
test clock-14.637 {parse yymmdd} {
    clock scan {37 01 31} -format {%y %m %d} -locale en_US_roman -gmt 1
} 2116972800
test clock-14.638 {parse yymmdd} {
    clock scan {37 01 xxxi} -format {%y %m %Od} -locale en_US_roman -gmt 1
} 2116972800
test clock-14.639 {parse yymmdd} {
    clock scan {37 01 31} -format {%y %m %e} -locale en_US_roman -gmt 1
} 2116972800
test clock-14.640 {parse yymmdd} {
    clock scan {37 01 xxxi} -format {%y %m %Oe} -locale en_US_roman -gmt 1
} 2116972800
test clock-14.641 {parse yymmdd} {
    clock scan {37 i 31} -format {%y %Om %d} -locale en_US_roman -gmt 1
} 2116972800
test clock-14.642 {parse yymmdd} {
    clock scan {37 i xxxi} -format {%y %Om %Od} -locale en_US_roman -gmt 1
} 2116972800
test clock-14.643 {parse yymmdd} {
    clock scan {37 i 31} -format {%y %Om %e} -locale en_US_roman -gmt 1
} 2116972800
test clock-14.644 {parse yymmdd} {
    clock scan {37 i xxxi} -format {%y %Om %Oe} -locale en_US_roman -gmt 1
} 2116972800
test clock-14.645 {parse yymmdd} {
    clock scan {37  1 31} -format {%y %N %d} -locale en_US_roman -gmt 1
} 2116972800
test clock-14.646 {parse yymmdd} {
    clock scan {37  1 xxxi} -format {%y %N %Od} -locale en_US_roman -gmt 1
} 2116972800
test clock-14.647 {parse yymmdd} {
    clock scan {37  1 31} -format {%y %N %e} -locale en_US_roman -gmt 1
} 2116972800
test clock-14.648 {parse yymmdd} {
    clock scan {37  1 xxxi} -format {%y %N %Oe} -locale en_US_roman -gmt 1
} 2116972800
test clock-14.649 {parse yymmdd} {
    clock scan {xxxvii Jan 31} -format {%Oy %b %d} -locale en_US_roman -gmt 1
} 2116972800
test clock-14.650 {parse yymmdd} {
    clock scan {xxxvii Jan xxxi} -format {%Oy %b %Od} -locale en_US_roman -gmt 1
} 2116972800
test clock-14.651 {parse yymmdd} {
    clock scan {xxxvii Jan 31} -format {%Oy %b %e} -locale en_US_roman -gmt 1
} 2116972800
test clock-14.652 {parse yymmdd} {
    clock scan {xxxvii Jan xxxi} -format {%Oy %b %Oe} -locale en_US_roman -gmt 1
} 2116972800
test clock-14.653 {parse yymmdd} {
    clock scan {xxxvii January 31} -format {%Oy %B %d} -locale en_US_roman -gmt 1
} 2116972800
test clock-14.654 {parse yymmdd} {
    clock scan {xxxvii January xxxi} -format {%Oy %B %Od} -locale en_US_roman -gmt 1
} 2116972800
test clock-14.655 {parse yymmdd} {
    clock scan {xxxvii January 31} -format {%Oy %B %e} -locale en_US_roman -gmt 1
} 2116972800
test clock-14.656 {parse yymmdd} {
    clock scan {xxxvii January xxxi} -format {%Oy %B %Oe} -locale en_US_roman -gmt 1
} 2116972800
test clock-14.657 {parse yymmdd} {
    clock scan {xxxvii Jan 31} -format {%Oy %h %d} -locale en_US_roman -gmt 1
} 2116972800
test clock-14.658 {parse yymmdd} {
    clock scan {xxxvii Jan xxxi} -format {%Oy %h %Od} -locale en_US_roman -gmt 1
} 2116972800
test clock-14.659 {parse yymmdd} {
    clock scan {xxxvii Jan 31} -format {%Oy %h %e} -locale en_US_roman -gmt 1
} 2116972800
test clock-14.660 {parse yymmdd} {
    clock scan {xxxvii Jan xxxi} -format {%Oy %h %Oe} -locale en_US_roman -gmt 1
} 2116972800
test clock-14.661 {parse yymmdd} {
    clock scan {xxxvii 01 31} -format {%Oy %m %d} -locale en_US_roman -gmt 1
} 2116972800
test clock-14.662 {parse yymmdd} {
    clock scan {xxxvii 01 xxxi} -format {%Oy %m %Od} -locale en_US_roman -gmt 1
} 2116972800
test clock-14.663 {parse yymmdd} {
    clock scan {xxxvii 01 31} -format {%Oy %m %e} -locale en_US_roman -gmt 1
} 2116972800
test clock-14.664 {parse yymmdd} {
    clock scan {xxxvii 01 xxxi} -format {%Oy %m %Oe} -locale en_US_roman -gmt 1
} 2116972800
test clock-14.665 {parse yymmdd} {
    clock scan {xxxvii i 31} -format {%Oy %Om %d} -locale en_US_roman -gmt 1
} 2116972800
test clock-14.666 {parse yymmdd} {
    clock scan {xxxvii i xxxi} -format {%Oy %Om %Od} -locale en_US_roman -gmt 1
} 2116972800
test clock-14.667 {parse yymmdd} {
    clock scan {xxxvii i 31} -format {%Oy %Om %e} -locale en_US_roman -gmt 1
} 2116972800
test clock-14.668 {parse yymmdd} {
    clock scan {xxxvii i xxxi} -format {%Oy %Om %Oe} -locale en_US_roman -gmt 1
} 2116972800
test clock-14.669 {parse yymmdd} {
    clock scan {xxxvii  1 31} -format {%Oy %N %d} -locale en_US_roman -gmt 1
} 2116972800
test clock-14.670 {parse yymmdd} {
    clock scan {xxxvii  1 xxxi} -format {%Oy %N %Od} -locale en_US_roman -gmt 1
} 2116972800
test clock-14.671 {parse yymmdd} {
    clock scan {xxxvii  1 31} -format {%Oy %N %e} -locale en_US_roman -gmt 1
} 2116972800
test clock-14.672 {parse yymmdd} {
    clock scan {xxxvii  1 xxxi} -format {%Oy %N %Oe} -locale en_US_roman -gmt 1
} 2116972800
test clock-14.673 {parse yymmdd} {
    clock scan {37 Dec 02} -format {%y %b %d} -locale en_US_roman -gmt 1
} 2143324800
test clock-14.674 {parse yymmdd} {
    clock scan {37 Dec ii} -format {%y %b %Od} -locale en_US_roman -gmt 1
} 2143324800
test clock-14.675 {parse yymmdd} {
    clock scan {37 Dec  2} -format {%y %b %e} -locale en_US_roman -gmt 1
} 2143324800
test clock-14.676 {parse yymmdd} {
    clock scan {37 Dec ii} -format {%y %b %Oe} -locale en_US_roman -gmt 1
} 2143324800
test clock-14.677 {parse yymmdd} {
    clock scan {37 December 02} -format {%y %B %d} -locale en_US_roman -gmt 1
} 2143324800
test clock-14.678 {parse yymmdd} {
    clock scan {37 December ii} -format {%y %B %Od} -locale en_US_roman -gmt 1
} 2143324800
test clock-14.679 {parse yymmdd} {
    clock scan {37 December  2} -format {%y %B %e} -locale en_US_roman -gmt 1
} 2143324800
test clock-14.680 {parse yymmdd} {
    clock scan {37 December ii} -format {%y %B %Oe} -locale en_US_roman -gmt 1
} 2143324800
test clock-14.681 {parse yymmdd} {
    clock scan {37 Dec 02} -format {%y %h %d} -locale en_US_roman -gmt 1
} 2143324800
test clock-14.682 {parse yymmdd} {
    clock scan {37 Dec ii} -format {%y %h %Od} -locale en_US_roman -gmt 1
} 2143324800
test clock-14.683 {parse yymmdd} {
    clock scan {37 Dec  2} -format {%y %h %e} -locale en_US_roman -gmt 1
} 2143324800
test clock-14.684 {parse yymmdd} {
    clock scan {37 Dec ii} -format {%y %h %Oe} -locale en_US_roman -gmt 1
} 2143324800
test clock-14.685 {parse yymmdd} {
    clock scan {37 12 02} -format {%y %m %d} -locale en_US_roman -gmt 1
} 2143324800
test clock-14.686 {parse yymmdd} {
    clock scan {37 12 ii} -format {%y %m %Od} -locale en_US_roman -gmt 1
} 2143324800
test clock-14.687 {parse yymmdd} {
    clock scan {37 12  2} -format {%y %m %e} -locale en_US_roman -gmt 1
} 2143324800
test clock-14.688 {parse yymmdd} {
    clock scan {37 12 ii} -format {%y %m %Oe} -locale en_US_roman -gmt 1
} 2143324800
test clock-14.689 {parse yymmdd} {
    clock scan {37 xii 02} -format {%y %Om %d} -locale en_US_roman -gmt 1
} 2143324800
test clock-14.690 {parse yymmdd} {
    clock scan {37 xii ii} -format {%y %Om %Od} -locale en_US_roman -gmt 1
} 2143324800
test clock-14.691 {parse yymmdd} {
    clock scan {37 xii  2} -format {%y %Om %e} -locale en_US_roman -gmt 1
} 2143324800
test clock-14.692 {parse yymmdd} {
    clock scan {37 xii ii} -format {%y %Om %Oe} -locale en_US_roman -gmt 1
} 2143324800
test clock-14.693 {parse yymmdd} {
    clock scan {37 12 02} -format {%y %N %d} -locale en_US_roman -gmt 1
} 2143324800
test clock-14.694 {parse yymmdd} {
    clock scan {37 12 ii} -format {%y %N %Od} -locale en_US_roman -gmt 1
} 2143324800
test clock-14.695 {parse yymmdd} {
    clock scan {37 12  2} -format {%y %N %e} -locale en_US_roman -gmt 1
} 2143324800
test clock-14.696 {parse yymmdd} {
    clock scan {37 12 ii} -format {%y %N %Oe} -locale en_US_roman -gmt 1
} 2143324800
test clock-14.697 {parse yymmdd} {
    clock scan {xxxvii Dec 02} -format {%Oy %b %d} -locale en_US_roman -gmt 1
} 2143324800
test clock-14.698 {parse yymmdd} {
    clock scan {xxxvii Dec ii} -format {%Oy %b %Od} -locale en_US_roman -gmt 1
} 2143324800
test clock-14.699 {parse yymmdd} {
    clock scan {xxxvii Dec  2} -format {%Oy %b %e} -locale en_US_roman -gmt 1
} 2143324800
test clock-14.700 {parse yymmdd} {
    clock scan {xxxvii Dec ii} -format {%Oy %b %Oe} -locale en_US_roman -gmt 1
} 2143324800
test clock-14.701 {parse yymmdd} {
    clock scan {xxxvii December 02} -format {%Oy %B %d} -locale en_US_roman -gmt 1
} 2143324800
test clock-14.702 {parse yymmdd} {
    clock scan {xxxvii December ii} -format {%Oy %B %Od} -locale en_US_roman -gmt 1
} 2143324800
test clock-14.703 {parse yymmdd} {
    clock scan {xxxvii December  2} -format {%Oy %B %e} -locale en_US_roman -gmt 1
} 2143324800
test clock-14.704 {parse yymmdd} {
    clock scan {xxxvii December ii} -format {%Oy %B %Oe} -locale en_US_roman -gmt 1
} 2143324800
test clock-14.705 {parse yymmdd} {
    clock scan {xxxvii Dec 02} -format {%Oy %h %d} -locale en_US_roman -gmt 1
} 2143324800
test clock-14.706 {parse yymmdd} {
    clock scan {xxxvii Dec ii} -format {%Oy %h %Od} -locale en_US_roman -gmt 1
} 2143324800
test clock-14.707 {parse yymmdd} {
    clock scan {xxxvii Dec  2} -format {%Oy %h %e} -locale en_US_roman -gmt 1
} 2143324800
test clock-14.708 {parse yymmdd} {
    clock scan {xxxvii Dec ii} -format {%Oy %h %Oe} -locale en_US_roman -gmt 1
} 2143324800
test clock-14.709 {parse yymmdd} {
    clock scan {xxxvii 12 02} -format {%Oy %m %d} -locale en_US_roman -gmt 1
} 2143324800
test clock-14.710 {parse yymmdd} {
    clock scan {xxxvii 12 ii} -format {%Oy %m %Od} -locale en_US_roman -gmt 1
} 2143324800
test clock-14.711 {parse yymmdd} {
    clock scan {xxxvii 12  2} -format {%Oy %m %e} -locale en_US_roman -gmt 1
} 2143324800
test clock-14.712 {parse yymmdd} {
    clock scan {xxxvii 12 ii} -format {%Oy %m %Oe} -locale en_US_roman -gmt 1
} 2143324800
test clock-14.713 {parse yymmdd} {
    clock scan {xxxvii xii 02} -format {%Oy %Om %d} -locale en_US_roman -gmt 1
} 2143324800
test clock-14.714 {parse yymmdd} {
    clock scan {xxxvii xii ii} -format {%Oy %Om %Od} -locale en_US_roman -gmt 1
} 2143324800
test clock-14.715 {parse yymmdd} {
    clock scan {xxxvii xii  2} -format {%Oy %Om %e} -locale en_US_roman -gmt 1
} 2143324800
test clock-14.716 {parse yymmdd} {
    clock scan {xxxvii xii ii} -format {%Oy %Om %Oe} -locale en_US_roman -gmt 1
} 2143324800
test clock-14.717 {parse yymmdd} {
    clock scan {xxxvii 12 02} -format {%Oy %N %d} -locale en_US_roman -gmt 1
} 2143324800
test clock-14.718 {parse yymmdd} {
    clock scan {xxxvii 12 ii} -format {%Oy %N %Od} -locale en_US_roman -gmt 1
} 2143324800
test clock-14.719 {parse yymmdd} {
    clock scan {xxxvii 12  2} -format {%Oy %N %e} -locale en_US_roman -gmt 1
} 2143324800
test clock-14.720 {parse yymmdd} {
    clock scan {xxxvii 12 ii} -format {%Oy %N %Oe} -locale en_US_roman -gmt 1
} 2143324800
test clock-14.721 {parse yymmdd} {
    clock scan {37 Dec 31} -format {%y %b %d} -locale en_US_roman -gmt 1
} 2145830400
test clock-14.722 {parse yymmdd} {
    clock scan {37 Dec xxxi} -format {%y %b %Od} -locale en_US_roman -gmt 1
} 2145830400
test clock-14.723 {parse yymmdd} {
    clock scan {37 Dec 31} -format {%y %b %e} -locale en_US_roman -gmt 1
} 2145830400
test clock-14.724 {parse yymmdd} {
    clock scan {37 Dec xxxi} -format {%y %b %Oe} -locale en_US_roman -gmt 1
} 2145830400
test clock-14.725 {parse yymmdd} {
    clock scan {37 December 31} -format {%y %B %d} -locale en_US_roman -gmt 1
} 2145830400
test clock-14.726 {parse yymmdd} {
    clock scan {37 December xxxi} -format {%y %B %Od} -locale en_US_roman -gmt 1
} 2145830400
test clock-14.727 {parse yymmdd} {
    clock scan {37 December 31} -format {%y %B %e} -locale en_US_roman -gmt 1
} 2145830400
test clock-14.728 {parse yymmdd} {
    clock scan {37 December xxxi} -format {%y %B %Oe} -locale en_US_roman -gmt 1
} 2145830400
test clock-14.729 {parse yymmdd} {
    clock scan {37 Dec 31} -format {%y %h %d} -locale en_US_roman -gmt 1
} 2145830400
test clock-14.730 {parse yymmdd} {
    clock scan {37 Dec xxxi} -format {%y %h %Od} -locale en_US_roman -gmt 1
} 2145830400
test clock-14.731 {parse yymmdd} {
    clock scan {37 Dec 31} -format {%y %h %e} -locale en_US_roman -gmt 1
} 2145830400
test clock-14.732 {parse yymmdd} {
    clock scan {37 Dec xxxi} -format {%y %h %Oe} -locale en_US_roman -gmt 1
} 2145830400
test clock-14.733 {parse yymmdd} {
    clock scan {37 12 31} -format {%y %m %d} -locale en_US_roman -gmt 1
} 2145830400
test clock-14.734 {parse yymmdd} {
    clock scan {37 12 xxxi} -format {%y %m %Od} -locale en_US_roman -gmt 1
} 2145830400
test clock-14.735 {parse yymmdd} {
    clock scan {37 12 31} -format {%y %m %e} -locale en_US_roman -gmt 1
} 2145830400
test clock-14.736 {parse yymmdd} {
    clock scan {37 12 xxxi} -format {%y %m %Oe} -locale en_US_roman -gmt 1
} 2145830400
test clock-14.737 {parse yymmdd} {
    clock scan {37 xii 31} -format {%y %Om %d} -locale en_US_roman -gmt 1
} 2145830400
test clock-14.738 {parse yymmdd} {
    clock scan {37 xii xxxi} -format {%y %Om %Od} -locale en_US_roman -gmt 1
} 2145830400
test clock-14.739 {parse yymmdd} {
    clock scan {37 xii 31} -format {%y %Om %e} -locale en_US_roman -gmt 1
} 2145830400
test clock-14.740 {parse yymmdd} {
    clock scan {37 xii xxxi} -format {%y %Om %Oe} -locale en_US_roman -gmt 1
} 2145830400
test clock-14.741 {parse yymmdd} {
    clock scan {37 12 31} -format {%y %N %d} -locale en_US_roman -gmt 1
} 2145830400
test clock-14.742 {parse yymmdd} {
    clock scan {37 12 xxxi} -format {%y %N %Od} -locale en_US_roman -gmt 1
} 2145830400
test clock-14.743 {parse yymmdd} {
    clock scan {37 12 31} -format {%y %N %e} -locale en_US_roman -gmt 1
} 2145830400
test clock-14.744 {parse yymmdd} {
    clock scan {37 12 xxxi} -format {%y %N %Oe} -locale en_US_roman -gmt 1
} 2145830400
test clock-14.745 {parse yymmdd} {
    clock scan {xxxvii Dec 31} -format {%Oy %b %d} -locale en_US_roman -gmt 1
} 2145830400
test clock-14.746 {parse yymmdd} {
    clock scan {xxxvii Dec xxxi} -format {%Oy %b %Od} -locale en_US_roman -gmt 1
} 2145830400
test clock-14.747 {parse yymmdd} {
    clock scan {xxxvii Dec 31} -format {%Oy %b %e} -locale en_US_roman -gmt 1
} 2145830400
test clock-14.748 {parse yymmdd} {
    clock scan {xxxvii Dec xxxi} -format {%Oy %b %Oe} -locale en_US_roman -gmt 1
} 2145830400
test clock-14.749 {parse yymmdd} {
    clock scan {xxxvii December 31} -format {%Oy %B %d} -locale en_US_roman -gmt 1
} 2145830400
test clock-14.750 {parse yymmdd} {
    clock scan {xxxvii December xxxi} -format {%Oy %B %Od} -locale en_US_roman -gmt 1
} 2145830400
test clock-14.751 {parse yymmdd} {
    clock scan {xxxvii December 31} -format {%Oy %B %e} -locale en_US_roman -gmt 1
} 2145830400
test clock-14.752 {parse yymmdd} {
    clock scan {xxxvii December xxxi} -format {%Oy %B %Oe} -locale en_US_roman -gmt 1
} 2145830400
test clock-14.753 {parse yymmdd} {
    clock scan {xxxvii Dec 31} -format {%Oy %h %d} -locale en_US_roman -gmt 1
} 2145830400
test clock-14.754 {parse yymmdd} {
    clock scan {xxxvii Dec xxxi} -format {%Oy %h %Od} -locale en_US_roman -gmt 1
} 2145830400
test clock-14.755 {parse yymmdd} {
    clock scan {xxxvii Dec 31} -format {%Oy %h %e} -locale en_US_roman -gmt 1
} 2145830400
test clock-14.756 {parse yymmdd} {
    clock scan {xxxvii Dec xxxi} -format {%Oy %h %Oe} -locale en_US_roman -gmt 1
} 2145830400
test clock-14.757 {parse yymmdd} {
    clock scan {xxxvii 12 31} -format {%Oy %m %d} -locale en_US_roman -gmt 1
} 2145830400
test clock-14.758 {parse yymmdd} {
    clock scan {xxxvii 12 xxxi} -format {%Oy %m %Od} -locale en_US_roman -gmt 1
} 2145830400
test clock-14.759 {parse yymmdd} {
    clock scan {xxxvii 12 31} -format {%Oy %m %e} -locale en_US_roman -gmt 1
} 2145830400
test clock-14.760 {parse yymmdd} {
    clock scan {xxxvii 12 xxxi} -format {%Oy %m %Oe} -locale en_US_roman -gmt 1
} 2145830400
test clock-14.761 {parse yymmdd} {
    clock scan {xxxvii xii 31} -format {%Oy %Om %d} -locale en_US_roman -gmt 1
} 2145830400
test clock-14.762 {parse yymmdd} {
    clock scan {xxxvii xii xxxi} -format {%Oy %Om %Od} -locale en_US_roman -gmt 1
} 2145830400
test clock-14.763 {parse yymmdd} {
    clock scan {xxxvii xii 31} -format {%Oy %Om %e} -locale en_US_roman -gmt 1
} 2145830400
test clock-14.764 {parse yymmdd} {
    clock scan {xxxvii xii xxxi} -format {%Oy %Om %Oe} -locale en_US_roman -gmt 1
} 2145830400
test clock-14.765 {parse yymmdd} {
    clock scan {xxxvii 12 31} -format {%Oy %N %d} -locale en_US_roman -gmt 1
} 2145830400
test clock-14.766 {parse yymmdd} {
    clock scan {xxxvii 12 xxxi} -format {%Oy %N %Od} -locale en_US_roman -gmt 1
} 2145830400
test clock-14.767 {parse yymmdd} {
    clock scan {xxxvii 12 31} -format {%Oy %N %e} -locale en_US_roman -gmt 1
} 2145830400
test clock-14.768 {parse yymmdd} {
    clock scan {xxxvii 12 xxxi} -format {%Oy %N %Oe} -locale en_US_roman -gmt 1
} 2145830400
# END testcases14

test clock-15.1 {yymmdd precedence below seconds} {
    list [clock scan {0 000101} -format {%s %y%m%d} -gmt true] \
	[clock scan {000101 0} -format {%y%m%d %s} -gmt true]
} {0 0}

test clock-15.2 {yymmdd precedence below julian day} {
    list [clock scan {2440588 000101} -format {%J %y%m%d} -gmt true] \
	[clock scan {000101 2440588} -format {%y%m%d %J} -gmt true]
} {0 0}

test clock-15.3 {yymmdd precedence below yyyyWwwd} {
    list [clock scan {1970W014000101} -format {%GW%V%u%y%m%d} -gmt true] \
	[clock scan {0001011970W014} -format {%y%m%d%GW%V%u} -gmt true]
} {0 0}

# Test parsing of yyddd

test clock-16.1 {parse yyddd} {
    clock scan {70 001} -format {%y %j} -locale en_US_roman -gmt 1
} 0
test clock-16.2 {parse yyddd} {
    clock scan {70 365} -format {%y %j} -locale en_US_roman -gmt 1
} 31449600
test clock-16.3 {parse yyddd} {
    clock scan {71 001} -format {%y %j} -locale en_US_roman -gmt 1
} 31536000
test clock-16.4 {parse yyddd} {
    clock scan {71 365} -format {%y %j} -locale en_US_roman -gmt 1
} 62985600
test clock-16.5 {parse yyddd} {
    clock scan {00 001} -format {%y %j} -locale en_US_roman -gmt 1
} 946684800
test clock-16.6 {parse yyddd} {
    clock scan {00 365} -format {%y %j} -locale en_US_roman -gmt 1
} 978134400
test clock-16.7 {parse yyddd} {
    clock scan {01 001} -format {%y %j} -locale en_US_roman -gmt 1
} 978307200
test clock-16.8 {parse yyddd} {
    clock scan {01 365} -format {%y %j} -locale en_US_roman -gmt 1
} 1009756800

test clock-16.9 {seconds take precedence over yyddd} {
    list [clock scan {0 00001} -format {%s %y%j} -gmt true] \
	 [clock scan {00001 0} -format {%y%j %s} -gmt true]
} {0 0}
test clock-16.10 {julian day takes precedence over yyddd} {
    list [clock scan {2440588 00001} -format {%J %y%j} -gmt true] \
	 [clock scan {00001 2440588} -format {%Y%j %J} -gmt true]
} {0 0}
test clock-16.11 {yyddd precedence below yyyyWwwd} {
    list [clock scan {1970W01400001} -format {%GW%V%u%y%j} -gmt true] \
	[clock scan {000011970W014} -format {%y%j%GW%V%u} -gmt true]
} {0 0}

# BEGIN testcases17

# Test parsing of yyWwwd

test clock-17.1 {parse yyWwwd} {
    clock scan {70 W01 Fri} -format {%g W%V %a} -locale en_US_roman -gmt 1
} 86400
test clock-17.2 {parse yyWwwd} {
    clock scan {70 W01 Friday} -format {%g W%V %A} -locale en_US_roman -gmt 1
} 86400
test clock-17.3 {parse yyWwwd} {
    clock scan {70 W01 5} -format {%g W%V %u} -locale en_US_roman -gmt 1
} 86400
test clock-17.4 {parse yyWwwd} {
    clock scan {70 W01 5} -format {%g W%V %w} -locale en_US_roman -gmt 1
} 86400
test clock-17.5 {parse yyWwwd} {
    clock scan {70 W01 v} -format {%g W%V %Ou} -locale en_US_roman -gmt 1
} 86400
test clock-17.6 {parse yyWwwd} {
    clock scan {70 W01 v} -format {%g W%V %Ow} -locale en_US_roman -gmt 1
} 86400
test clock-17.7 {parse yyWwwd} {
    clock scan {70 W05 Sat} -format {%g W%V %a} -locale en_US_roman -gmt 1
} 2592000
test clock-17.8 {parse yyWwwd} {
    clock scan {70 W05 Saturday} -format {%g W%V %A} -locale en_US_roman -gmt 1
} 2592000
test clock-17.9 {parse yyWwwd} {
    clock scan {70 W05 6} -format {%g W%V %u} -locale en_US_roman -gmt 1
} 2592000
test clock-17.10 {parse yyWwwd} {
    clock scan {70 W05 6} -format {%g W%V %w} -locale en_US_roman -gmt 1
} 2592000
test clock-17.11 {parse yyWwwd} {
    clock scan {70 W05 vi} -format {%g W%V %Ou} -locale en_US_roman -gmt 1
} 2592000
test clock-17.12 {parse yyWwwd} {
    clock scan {70 W05 vi} -format {%g W%V %Ow} -locale en_US_roman -gmt 1
} 2592000
test clock-17.13 {parse yyWwwd} {
    clock scan {70 W49 Wed} -format {%g W%V %a} -locale en_US_roman -gmt 1
} 28944000
test clock-17.14 {parse yyWwwd} {
    clock scan {70 W49 Wednesday} -format {%g W%V %A} -locale en_US_roman -gmt 1
} 28944000
test clock-17.15 {parse yyWwwd} {
    clock scan {70 W49 3} -format {%g W%V %u} -locale en_US_roman -gmt 1
} 28944000
test clock-17.16 {parse yyWwwd} {
    clock scan {70 W49 3} -format {%g W%V %w} -locale en_US_roman -gmt 1
} 28944000
test clock-17.17 {parse yyWwwd} {
    clock scan {70 W49 iii} -format {%g W%V %Ou} -locale en_US_roman -gmt 1
} 28944000
test clock-17.18 {parse yyWwwd} {
    clock scan {70 W49 iii} -format {%g W%V %Ow} -locale en_US_roman -gmt 1
} 28944000
test clock-17.19 {parse yyWwwd} {
    clock scan {70 W53 Thu} -format {%g W%V %a} -locale en_US_roman -gmt 1
} 31449600
test clock-17.20 {parse yyWwwd} {
    clock scan {70 W53 Thursday} -format {%g W%V %A} -locale en_US_roman -gmt 1
} 31449600
test clock-17.21 {parse yyWwwd} {
    clock scan {70 W53 4} -format {%g W%V %u} -locale en_US_roman -gmt 1
} 31449600
test clock-17.22 {parse yyWwwd} {
    clock scan {70 W53 4} -format {%g W%V %w} -locale en_US_roman -gmt 1
} 31449600
test clock-17.23 {parse yyWwwd} {
    clock scan {70 W53 iv} -format {%g W%V %Ou} -locale en_US_roman -gmt 1
} 31449600
test clock-17.24 {parse yyWwwd} {
    clock scan {70 W53 iv} -format {%g W%V %Ow} -locale en_US_roman -gmt 1
} 31449600
test clock-17.25 {parse yyWwwd} {
    clock scan {70 W53 Sat} -format {%g W%V %a} -locale en_US_roman -gmt 1
} 31622400
test clock-17.26 {parse yyWwwd} {
    clock scan {70 W53 Saturday} -format {%g W%V %A} -locale en_US_roman -gmt 1
} 31622400
test clock-17.27 {parse yyWwwd} {
    clock scan {70 W53 6} -format {%g W%V %u} -locale en_US_roman -gmt 1
} 31622400
test clock-17.28 {parse yyWwwd} {
    clock scan {70 W53 6} -format {%g W%V %w} -locale en_US_roman -gmt 1
} 31622400
test clock-17.29 {parse yyWwwd} {
    clock scan {70 W53 vi} -format {%g W%V %Ou} -locale en_US_roman -gmt 1
} 31622400
test clock-17.30 {parse yyWwwd} {
    clock scan {70 W53 vi} -format {%g W%V %Ow} -locale en_US_roman -gmt 1
} 31622400
test clock-17.31 {parse yyWwwd} {
    clock scan {71 W04 Sun} -format {%g W%V %a} -locale en_US_roman -gmt 1
} 34128000
test clock-17.32 {parse yyWwwd} {
    clock scan {71 W04 Sunday} -format {%g W%V %A} -locale en_US_roman -gmt 1
} 34128000
test clock-17.33 {parse yyWwwd} {
    clock scan {71 W04 7} -format {%g W%V %u} -locale en_US_roman -gmt 1
} 34128000
test clock-17.34 {parse yyWwwd} {
    clock scan {71 W04 0} -format {%g W%V %w} -locale en_US_roman -gmt 1
} 34128000
test clock-17.35 {parse yyWwwd} {
    clock scan {71 W04 vii} -format {%g W%V %Ou} -locale en_US_roman -gmt 1
} 34128000
test clock-17.36 {parse yyWwwd} {
    clock scan {71 W04 ?} -format {%g W%V %Ow} -locale en_US_roman -gmt 1
} 34128000
test clock-17.37 {parse yyWwwd} {
    clock scan {71 W48 Thu} -format {%g W%V %a} -locale en_US_roman -gmt 1
} 60480000
test clock-17.38 {parse yyWwwd} {
    clock scan {71 W48 Thursday} -format {%g W%V %A} -locale en_US_roman -gmt 1
} 60480000
test clock-17.39 {parse yyWwwd} {
    clock scan {71 W48 4} -format {%g W%V %u} -locale en_US_roman -gmt 1
} 60480000
test clock-17.40 {parse yyWwwd} {
    clock scan {71 W48 4} -format {%g W%V %w} -locale en_US_roman -gmt 1
} 60480000
test clock-17.41 {parse yyWwwd} {
    clock scan {71 W48 iv} -format {%g W%V %Ou} -locale en_US_roman -gmt 1
} 60480000
test clock-17.42 {parse yyWwwd} {
    clock scan {71 W48 iv} -format {%g W%V %Ow} -locale en_US_roman -gmt 1
} 60480000
test clock-17.43 {parse yyWwwd} {
    clock scan {71 W52 Fri} -format {%g W%V %a} -locale en_US_roman -gmt 1
} 62985600
test clock-17.44 {parse yyWwwd} {
    clock scan {71 W52 Friday} -format {%g W%V %A} -locale en_US_roman -gmt 1
} 62985600
test clock-17.45 {parse yyWwwd} {
    clock scan {71 W52 5} -format {%g W%V %u} -locale en_US_roman -gmt 1
} 62985600
test clock-17.46 {parse yyWwwd} {
    clock scan {71 W52 5} -format {%g W%V %w} -locale en_US_roman -gmt 1
} 62985600
test clock-17.47 {parse yyWwwd} {
    clock scan {71 W52 v} -format {%g W%V %Ou} -locale en_US_roman -gmt 1
} 62985600
test clock-17.48 {parse yyWwwd} {
    clock scan {71 W52 v} -format {%g W%V %Ow} -locale en_US_roman -gmt 1
} 62985600
test clock-17.49 {parse yyWwwd} {
    clock scan {99 W52 Sun} -format {%g W%V %a} -locale en_US_roman -gmt 1
} 946771200
test clock-17.50 {parse yyWwwd} {
    clock scan {99 W52 Sunday} -format {%g W%V %A} -locale en_US_roman -gmt 1
} 946771200
test clock-17.51 {parse yyWwwd} {
    clock scan {99 W52 7} -format {%g W%V %u} -locale en_US_roman -gmt 1
} 946771200
test clock-17.52 {parse yyWwwd} {
    clock scan {99 W52 0} -format {%g W%V %w} -locale en_US_roman -gmt 1
} 946771200
test clock-17.53 {parse yyWwwd} {
    clock scan {99 W52 vii} -format {%g W%V %Ou} -locale en_US_roman -gmt 1
} 946771200
test clock-17.54 {parse yyWwwd} {
    clock scan {99 W52 ?} -format {%g W%V %Ow} -locale en_US_roman -gmt 1
} 946771200
test clock-17.55 {parse yyWwwd} {
    clock scan {00 W05 Mon} -format {%g W%V %a} -locale en_US_roman -gmt 1
} 949276800
test clock-17.56 {parse yyWwwd} {
    clock scan {00 W05 Monday} -format {%g W%V %A} -locale en_US_roman -gmt 1
} 949276800
test clock-17.57 {parse yyWwwd} {
    clock scan {00 W05 1} -format {%g W%V %u} -locale en_US_roman -gmt 1
} 949276800
test clock-17.58 {parse yyWwwd} {
    clock scan {00 W05 1} -format {%g W%V %w} -locale en_US_roman -gmt 1
} 949276800
test clock-17.59 {parse yyWwwd} {
    clock scan {00 W05 i} -format {%g W%V %Ou} -locale en_US_roman -gmt 1
} 949276800
test clock-17.60 {parse yyWwwd} {
    clock scan {00 W05 i} -format {%g W%V %Ow} -locale en_US_roman -gmt 1
} 949276800
test clock-17.61 {parse yyWwwd} {
    clock scan {00 W48 Sat} -format {%g W%V %a} -locale en_US_roman -gmt 1
} 975715200
test clock-17.62 {parse yyWwwd} {
    clock scan {00 W48 Saturday} -format {%g W%V %A} -locale en_US_roman -gmt 1
} 975715200
test clock-17.63 {parse yyWwwd} {
    clock scan {00 W48 6} -format {%g W%V %u} -locale en_US_roman -gmt 1
} 975715200
test clock-17.64 {parse yyWwwd} {
    clock scan {00 W48 6} -format {%g W%V %w} -locale en_US_roman -gmt 1
} 975715200
test clock-17.65 {parse yyWwwd} {
    clock scan {00 W48 vi} -format {%g W%V %Ou} -locale en_US_roman -gmt 1
} 975715200
test clock-17.66 {parse yyWwwd} {
    clock scan {00 W48 vi} -format {%g W%V %Ow} -locale en_US_roman -gmt 1
} 975715200
test clock-17.67 {parse yyWwwd} {
    clock scan {00 W52 Sun} -format {%g W%V %a} -locale en_US_roman -gmt 1
} 978220800
test clock-17.68 {parse yyWwwd} {
    clock scan {00 W52 Sunday} -format {%g W%V %A} -locale en_US_roman -gmt 1
} 978220800
test clock-17.69 {parse yyWwwd} {
    clock scan {00 W52 7} -format {%g W%V %u} -locale en_US_roman -gmt 1
} 978220800
test clock-17.70 {parse yyWwwd} {
    clock scan {00 W52 0} -format {%g W%V %w} -locale en_US_roman -gmt 1
} 978220800
test clock-17.71 {parse yyWwwd} {
    clock scan {00 W52 vii} -format {%g W%V %Ou} -locale en_US_roman -gmt 1
} 978220800
test clock-17.72 {parse yyWwwd} {
    clock scan {00 W52 ?} -format {%g W%V %Ow} -locale en_US_roman -gmt 1
} 978220800
test clock-17.73 {parse yyWwwd} {
    clock scan {01 W01 Tue} -format {%g W%V %a} -locale en_US_roman -gmt 1
} 978393600
test clock-17.74 {parse yyWwwd} {
    clock scan {01 W01 Tuesday} -format {%g W%V %A} -locale en_US_roman -gmt 1
} 978393600
test clock-17.75 {parse yyWwwd} {
    clock scan {01 W01 2} -format {%g W%V %u} -locale en_US_roman -gmt 1
} 978393600
test clock-17.76 {parse yyWwwd} {
    clock scan {01 W01 2} -format {%g W%V %w} -locale en_US_roman -gmt 1
} 978393600
test clock-17.77 {parse yyWwwd} {
    clock scan {01 W01 ii} -format {%g W%V %Ou} -locale en_US_roman -gmt 1
} 978393600
test clock-17.78 {parse yyWwwd} {
    clock scan {01 W01 ii} -format {%g W%V %Ow} -locale en_US_roman -gmt 1
} 978393600
test clock-17.79 {parse yyWwwd} {
    clock scan {01 W05 Wed} -format {%g W%V %a} -locale en_US_roman -gmt 1
} 980899200
test clock-17.80 {parse yyWwwd} {
    clock scan {01 W05 Wednesday} -format {%g W%V %A} -locale en_US_roman -gmt 1
} 980899200
test clock-17.81 {parse yyWwwd} {
    clock scan {01 W05 3} -format {%g W%V %u} -locale en_US_roman -gmt 1
} 980899200
test clock-17.82 {parse yyWwwd} {
    clock scan {01 W05 3} -format {%g W%V %w} -locale en_US_roman -gmt 1
} 980899200
test clock-17.83 {parse yyWwwd} {
    clock scan {01 W05 iii} -format {%g W%V %Ou} -locale en_US_roman -gmt 1
} 980899200
test clock-17.84 {parse yyWwwd} {
    clock scan {01 W05 iii} -format {%g W%V %Ow} -locale en_US_roman -gmt 1
} 980899200
test clock-17.85 {parse yyWwwd} {
    clock scan {01 W48 Sun} -format {%g W%V %a} -locale en_US_roman -gmt 1
} 1007251200
test clock-17.86 {parse yyWwwd} {
    clock scan {01 W48 Sunday} -format {%g W%V %A} -locale en_US_roman -gmt 1
} 1007251200
test clock-17.87 {parse yyWwwd} {
    clock scan {01 W48 7} -format {%g W%V %u} -locale en_US_roman -gmt 1
} 1007251200
test clock-17.88 {parse yyWwwd} {
    clock scan {01 W48 0} -format {%g W%V %w} -locale en_US_roman -gmt 1
} 1007251200
test clock-17.89 {parse yyWwwd} {
    clock scan {01 W48 vii} -format {%g W%V %Ou} -locale en_US_roman -gmt 1
} 1007251200
test clock-17.90 {parse yyWwwd} {
    clock scan {01 W48 ?} -format {%g W%V %Ow} -locale en_US_roman -gmt 1
} 1007251200
test clock-17.91 {parse yyWwwd} {
    clock scan {02 W01 Mon} -format {%g W%V %a} -locale en_US_roman -gmt 1
} 1009756800
test clock-17.92 {parse yyWwwd} {
    clock scan {02 W01 Monday} -format {%g W%V %A} -locale en_US_roman -gmt 1
} 1009756800
test clock-17.93 {parse yyWwwd} {
    clock scan {02 W01 1} -format {%g W%V %u} -locale en_US_roman -gmt 1
} 1009756800
test clock-17.94 {parse yyWwwd} {
    clock scan {02 W01 1} -format {%g W%V %w} -locale en_US_roman -gmt 1
} 1009756800
test clock-17.95 {parse yyWwwd} {
    clock scan {02 W01 i} -format {%g W%V %Ou} -locale en_US_roman -gmt 1
} 1009756800
test clock-17.96 {parse yyWwwd} {
    clock scan {02 W01 i} -format {%g W%V %Ow} -locale en_US_roman -gmt 1
} 1009756800
# END testcases17

# Test precedence of yyWwwd

test clock-18.1 {seconds take precedence over yyWwwd} {
    list [clock scan {0 00W014} -format {%s %gW%V%u} -gmt true] \
	 [clock scan {00W014 0} -format {%gW%V%u %s} -gmt true]
} {0 0}
test clock-18.2 {julian day takes precedence over yyddd} {
    list [clock scan {2440588 00W014} -format {%J %gW%V%u} -gmt true] \
	 [clock scan {00W014 2440588} -format {%gW%V%u %J} -gmt true]
} {0 0}
test clock-18.3 {yyWwwd precedence below yyyymmdd} {
    list [clock scan {19700101 00W014} -format {%Y%m%d %gW%V%u} -gmt true] \
	[clock scan {00W014 19700101} -format {%gW%V%u %Y%m%d} -gmt true]
} {0 0}
test clock-18.4 {yyWwwd precedence below yyyyddd} {
    list [clock scan {1970001 00W014} -format {%Y%j %gW%V%u} -gmt true] \
	[clock scan {00W014 1970001} -format {%gW%V%u %Y%j} -gmt true]
} {0 0}

# BEGIN testcases19

# Test parsing of mmdd

test clock-19.1 {parse mmdd} {
    clock scan {Jan 02} -format {%b %d} -locale en_US_roman -base -1009843200 -gmt 1
} -1009756800
test clock-19.2 {parse mmdd} {
    clock scan {Jan ii} -format {%b %Od} -locale en_US_roman -base -1009843200 -gmt 1
} -1009756800
test clock-19.3 {parse mmdd} {
    clock scan {Jan  2} -format {%b %e} -locale en_US_roman -base -1009843200 -gmt 1
} -1009756800
test clock-19.4 {parse mmdd} {
    clock scan {Jan ii} -format {%b %Oe} -locale en_US_roman -base -1009843200 -gmt 1
} -1009756800
test clock-19.5 {parse mmdd} {
    clock scan {January 02} -format {%B %d} -locale en_US_roman -base -1009843200 -gmt 1
} -1009756800
test clock-19.6 {parse mmdd} {
    clock scan {January ii} -format {%B %Od} -locale en_US_roman -base -1009843200 -gmt 1
} -1009756800
test clock-19.7 {parse mmdd} {
    clock scan {January  2} -format {%B %e} -locale en_US_roman -base -1009843200 -gmt 1
} -1009756800
test clock-19.8 {parse mmdd} {
    clock scan {January ii} -format {%B %Oe} -locale en_US_roman -base -1009843200 -gmt 1
} -1009756800
test clock-19.9 {parse mmdd} {
    clock scan {Jan 02} -format {%h %d} -locale en_US_roman -base -1009843200 -gmt 1
} -1009756800
test clock-19.10 {parse mmdd} {
    clock scan {Jan ii} -format {%h %Od} -locale en_US_roman -base -1009843200 -gmt 1
} -1009756800
test clock-19.11 {parse mmdd} {
    clock scan {Jan  2} -format {%h %e} -locale en_US_roman -base -1009843200 -gmt 1
} -1009756800
test clock-19.12 {parse mmdd} {
    clock scan {Jan ii} -format {%h %Oe} -locale en_US_roman -base -1009843200 -gmt 1
} -1009756800
test clock-19.13 {parse mmdd} {
    clock scan {01 02} -format {%m %d} -locale en_US_roman -base -1009843200 -gmt 1
} -1009756800
test clock-19.14 {parse mmdd} {
    clock scan {01 ii} -format {%m %Od} -locale en_US_roman -base -1009843200 -gmt 1
} -1009756800
test clock-19.15 {parse mmdd} {
    clock scan {01  2} -format {%m %e} -locale en_US_roman -base -1009843200 -gmt 1
} -1009756800
test clock-19.16 {parse mmdd} {
    clock scan {01 ii} -format {%m %Oe} -locale en_US_roman -base -1009843200 -gmt 1
} -1009756800
test clock-19.17 {parse mmdd} {
    clock scan {i 02} -format {%Om %d} -locale en_US_roman -base -1009843200 -gmt 1
} -1009756800
test clock-19.18 {parse mmdd} {
    clock scan {i ii} -format {%Om %Od} -locale en_US_roman -base -1009843200 -gmt 1
} -1009756800
test clock-19.19 {parse mmdd} {
    clock scan {i  2} -format {%Om %e} -locale en_US_roman -base -1009843200 -gmt 1
} -1009756800
test clock-19.20 {parse mmdd} {
    clock scan {i ii} -format {%Om %Oe} -locale en_US_roman -base -1009843200 -gmt 1
} -1009756800
test clock-19.21 {parse mmdd} {
    clock scan { 1 02} -format {%N %d} -locale en_US_roman -base -1009843200 -gmt 1
} -1009756800
test clock-19.22 {parse mmdd} {
    clock scan { 1 ii} -format {%N %Od} -locale en_US_roman -base -1009843200 -gmt 1
} -1009756800
test clock-19.23 {parse mmdd} {
    clock scan { 1  2} -format {%N %e} -locale en_US_roman -base -1009843200 -gmt 1
} -1009756800
test clock-19.24 {parse mmdd} {
    clock scan { 1 ii} -format {%N %Oe} -locale en_US_roman -base -1009843200 -gmt 1
} -1009756800
test clock-19.25 {parse mmdd} {
    clock scan {Jan 31} -format {%b %d} -locale en_US_roman -base -1009843200 -gmt 1
} -1007251200
test clock-19.26 {parse mmdd} {
    clock scan {Jan xxxi} -format {%b %Od} -locale en_US_roman -base -1009843200 -gmt 1
} -1007251200
test clock-19.27 {parse mmdd} {
    clock scan {Jan 31} -format {%b %e} -locale en_US_roman -base -1009843200 -gmt 1
} -1007251200
test clock-19.28 {parse mmdd} {
    clock scan {Jan xxxi} -format {%b %Oe} -locale en_US_roman -base -1009843200 -gmt 1
} -1007251200
test clock-19.29 {parse mmdd} {
    clock scan {January 31} -format {%B %d} -locale en_US_roman -base -1009843200 -gmt 1
} -1007251200
test clock-19.30 {parse mmdd} {
    clock scan {January xxxi} -format {%B %Od} -locale en_US_roman -base -1009843200 -gmt 1
} -1007251200
test clock-19.31 {parse mmdd} {
    clock scan {January 31} -format {%B %e} -locale en_US_roman -base -1009843200 -gmt 1
} -1007251200
test clock-19.32 {parse mmdd} {
    clock scan {January xxxi} -format {%B %Oe} -locale en_US_roman -base -1009843200 -gmt 1
} -1007251200
test clock-19.33 {parse mmdd} {
    clock scan {Jan 31} -format {%h %d} -locale en_US_roman -base -1009843200 -gmt 1
} -1007251200
test clock-19.34 {parse mmdd} {
    clock scan {Jan xxxi} -format {%h %Od} -locale en_US_roman -base -1009843200 -gmt 1
} -1007251200
test clock-19.35 {parse mmdd} {
    clock scan {Jan 31} -format {%h %e} -locale en_US_roman -base -1009843200 -gmt 1
} -1007251200
test clock-19.36 {parse mmdd} {
    clock scan {Jan xxxi} -format {%h %Oe} -locale en_US_roman -base -1009843200 -gmt 1
} -1007251200
test clock-19.37 {parse mmdd} {
    clock scan {01 31} -format {%m %d} -locale en_US_roman -base -1009843200 -gmt 1
} -1007251200
test clock-19.38 {parse mmdd} {
    clock scan {01 xxxi} -format {%m %Od} -locale en_US_roman -base -1009843200 -gmt 1
} -1007251200
test clock-19.39 {parse mmdd} {
    clock scan {01 31} -format {%m %e} -locale en_US_roman -base -1009843200 -gmt 1
} -1007251200
test clock-19.40 {parse mmdd} {
    clock scan {01 xxxi} -format {%m %Oe} -locale en_US_roman -base -1009843200 -gmt 1
} -1007251200
test clock-19.41 {parse mmdd} {
    clock scan {i 31} -format {%Om %d} -locale en_US_roman -base -1009843200 -gmt 1
} -1007251200
test clock-19.42 {parse mmdd} {
    clock scan {i xxxi} -format {%Om %Od} -locale en_US_roman -base -1009843200 -gmt 1
} -1007251200
test clock-19.43 {parse mmdd} {
    clock scan {i 31} -format {%Om %e} -locale en_US_roman -base -1009843200 -gmt 1
} -1007251200
test clock-19.44 {parse mmdd} {
    clock scan {i xxxi} -format {%Om %Oe} -locale en_US_roman -base -1009843200 -gmt 1
} -1007251200
test clock-19.45 {parse mmdd} {
    clock scan { 1 31} -format {%N %d} -locale en_US_roman -base -1009843200 -gmt 1
} -1007251200
test clock-19.46 {parse mmdd} {
    clock scan { 1 xxxi} -format {%N %Od} -locale en_US_roman -base -1009843200 -gmt 1
} -1007251200
test clock-19.47 {parse mmdd} {
    clock scan { 1 31} -format {%N %e} -locale en_US_roman -base -1009843200 -gmt 1
} -1007251200
test clock-19.48 {parse mmdd} {
    clock scan { 1 xxxi} -format {%N %Oe} -locale en_US_roman -base -1009843200 -gmt 1
} -1007251200
test clock-19.49 {parse mmdd} {
    clock scan {Dec 02} -format {%b %d} -locale en_US_roman -base -1009843200 -gmt 1
} -980899200
test clock-19.50 {parse mmdd} {
    clock scan {Dec ii} -format {%b %Od} -locale en_US_roman -base -1009843200 -gmt 1
} -980899200
test clock-19.51 {parse mmdd} {
    clock scan {Dec  2} -format {%b %e} -locale en_US_roman -base -1009843200 -gmt 1
} -980899200
test clock-19.52 {parse mmdd} {
    clock scan {Dec ii} -format {%b %Oe} -locale en_US_roman -base -1009843200 -gmt 1
} -980899200
test clock-19.53 {parse mmdd} {
    clock scan {December 02} -format {%B %d} -locale en_US_roman -base -1009843200 -gmt 1
} -980899200
test clock-19.54 {parse mmdd} {
    clock scan {December ii} -format {%B %Od} -locale en_US_roman -base -1009843200 -gmt 1
} -980899200
test clock-19.55 {parse mmdd} {
    clock scan {December  2} -format {%B %e} -locale en_US_roman -base -1009843200 -gmt 1
} -980899200
test clock-19.56 {parse mmdd} {
    clock scan {December ii} -format {%B %Oe} -locale en_US_roman -base -1009843200 -gmt 1
} -980899200
test clock-19.57 {parse mmdd} {
    clock scan {Dec 02} -format {%h %d} -locale en_US_roman -base -1009843200 -gmt 1
} -980899200
test clock-19.58 {parse mmdd} {
    clock scan {Dec ii} -format {%h %Od} -locale en_US_roman -base -1009843200 -gmt 1
} -980899200
test clock-19.59 {parse mmdd} {
    clock scan {Dec  2} -format {%h %e} -locale en_US_roman -base -1009843200 -gmt 1
} -980899200
test clock-19.60 {parse mmdd} {
    clock scan {Dec ii} -format {%h %Oe} -locale en_US_roman -base -1009843200 -gmt 1
} -980899200
test clock-19.61 {parse mmdd} {
    clock scan {12 02} -format {%m %d} -locale en_US_roman -base -1009843200 -gmt 1
} -980899200
test clock-19.62 {parse mmdd} {
    clock scan {12 ii} -format {%m %Od} -locale en_US_roman -base -1009843200 -gmt 1
} -980899200
test clock-19.63 {parse mmdd} {
    clock scan {12  2} -format {%m %e} -locale en_US_roman -base -1009843200 -gmt 1
} -980899200
test clock-19.64 {parse mmdd} {
    clock scan {12 ii} -format {%m %Oe} -locale en_US_roman -base -1009843200 -gmt 1
} -980899200
test clock-19.65 {parse mmdd} {
    clock scan {xii 02} -format {%Om %d} -locale en_US_roman -base -1009843200 -gmt 1
} -980899200
test clock-19.66 {parse mmdd} {
    clock scan {xii ii} -format {%Om %Od} -locale en_US_roman -base -1009843200 -gmt 1
} -980899200
test clock-19.67 {parse mmdd} {
    clock scan {xii  2} -format {%Om %e} -locale en_US_roman -base -1009843200 -gmt 1
} -980899200
test clock-19.68 {parse mmdd} {
    clock scan {xii ii} -format {%Om %Oe} -locale en_US_roman -base -1009843200 -gmt 1
} -980899200
test clock-19.69 {parse mmdd} {
    clock scan {12 02} -format {%N %d} -locale en_US_roman -base -1009843200 -gmt 1
} -980899200
test clock-19.70 {parse mmdd} {
    clock scan {12 ii} -format {%N %Od} -locale en_US_roman -base -1009843200 -gmt 1
} -980899200
test clock-19.71 {parse mmdd} {
    clock scan {12  2} -format {%N %e} -locale en_US_roman -base -1009843200 -gmt 1
} -980899200
test clock-19.72 {parse mmdd} {
    clock scan {12 ii} -format {%N %Oe} -locale en_US_roman -base -1009843200 -gmt 1
} -980899200
test clock-19.73 {parse mmdd} {
    clock scan {Dec 31} -format {%b %d} -locale en_US_roman -base -1009843200 -gmt 1
} -978393600
test clock-19.74 {parse mmdd} {
    clock scan {Dec xxxi} -format {%b %Od} -locale en_US_roman -base -1009843200 -gmt 1
} -978393600
test clock-19.75 {parse mmdd} {
    clock scan {Dec 31} -format {%b %e} -locale en_US_roman -base -1009843200 -gmt 1
} -978393600
test clock-19.76 {parse mmdd} {
    clock scan {Dec xxxi} -format {%b %Oe} -locale en_US_roman -base -1009843200 -gmt 1
} -978393600
test clock-19.77 {parse mmdd} {
    clock scan {December 31} -format {%B %d} -locale en_US_roman -base -1009843200 -gmt 1
} -978393600
test clock-19.78 {parse mmdd} {
    clock scan {December xxxi} -format {%B %Od} -locale en_US_roman -base -1009843200 -gmt 1
} -978393600
test clock-19.79 {parse mmdd} {
    clock scan {December 31} -format {%B %e} -locale en_US_roman -base -1009843200 -gmt 1
} -978393600
test clock-19.80 {parse mmdd} {
    clock scan {December xxxi} -format {%B %Oe} -locale en_US_roman -base -1009843200 -gmt 1
} -978393600
test clock-19.81 {parse mmdd} {
    clock scan {Dec 31} -format {%h %d} -locale en_US_roman -base -1009843200 -gmt 1
} -978393600
test clock-19.82 {parse mmdd} {
    clock scan {Dec xxxi} -format {%h %Od} -locale en_US_roman -base -1009843200 -gmt 1
} -978393600
test clock-19.83 {parse mmdd} {
    clock scan {Dec 31} -format {%h %e} -locale en_US_roman -base -1009843200 -gmt 1
} -978393600
test clock-19.84 {parse mmdd} {
    clock scan {Dec xxxi} -format {%h %Oe} -locale en_US_roman -base -1009843200 -gmt 1
} -978393600
test clock-19.85 {parse mmdd} {
    clock scan {12 31} -format {%m %d} -locale en_US_roman -base -1009843200 -gmt 1
} -978393600
test clock-19.86 {parse mmdd} {
    clock scan {12 xxxi} -format {%m %Od} -locale en_US_roman -base -1009843200 -gmt 1
} -978393600
test clock-19.87 {parse mmdd} {
    clock scan {12 31} -format {%m %e} -locale en_US_roman -base -1009843200 -gmt 1
} -978393600
test clock-19.88 {parse mmdd} {
    clock scan {12 xxxi} -format {%m %Oe} -locale en_US_roman -base -1009843200 -gmt 1
} -978393600
test clock-19.89 {parse mmdd} {
    clock scan {xii 31} -format {%Om %d} -locale en_US_roman -base -1009843200 -gmt 1
} -978393600
test clock-19.90 {parse mmdd} {
    clock scan {xii xxxi} -format {%Om %Od} -locale en_US_roman -base -1009843200 -gmt 1
} -978393600
test clock-19.91 {parse mmdd} {
    clock scan {xii 31} -format {%Om %e} -locale en_US_roman -base -1009843200 -gmt 1
} -978393600
test clock-19.92 {parse mmdd} {
    clock scan {xii xxxi} -format {%Om %Oe} -locale en_US_roman -base -1009843200 -gmt 1
} -978393600
test clock-19.93 {parse mmdd} {
    clock scan {12 31} -format {%N %d} -locale en_US_roman -base -1009843200 -gmt 1
} -978393600
test clock-19.94 {parse mmdd} {
    clock scan {12 xxxi} -format {%N %Od} -locale en_US_roman -base -1009843200 -gmt 1
} -978393600
test clock-19.95 {parse mmdd} {
    clock scan {12 31} -format {%N %e} -locale en_US_roman -base -1009843200 -gmt 1
} -978393600
test clock-19.96 {parse mmdd} {
    clock scan {12 xxxi} -format {%N %Oe} -locale en_US_roman -base -1009843200 -gmt 1
} -978393600
test clock-19.97 {parse mmdd} {
    clock scan {Jan 02} -format {%b %d} -locale en_US_roman -base 0 -gmt 1
} 86400
test clock-19.98 {parse mmdd} {
    clock scan {Jan ii} -format {%b %Od} -locale en_US_roman -base 0 -gmt 1
} 86400
test clock-19.99 {parse mmdd} {
    clock scan {Jan  2} -format {%b %e} -locale en_US_roman -base 0 -gmt 1
} 86400
test clock-19.100 {parse mmdd} {
    clock scan {Jan ii} -format {%b %Oe} -locale en_US_roman -base 0 -gmt 1
} 86400
test clock-19.101 {parse mmdd} {
    clock scan {January 02} -format {%B %d} -locale en_US_roman -base 0 -gmt 1
} 86400
test clock-19.102 {parse mmdd} {
    clock scan {January ii} -format {%B %Od} -locale en_US_roman -base 0 -gmt 1
} 86400
test clock-19.103 {parse mmdd} {
    clock scan {January  2} -format {%B %e} -locale en_US_roman -base 0 -gmt 1
} 86400
test clock-19.104 {parse mmdd} {
    clock scan {January ii} -format {%B %Oe} -locale en_US_roman -base 0 -gmt 1
} 86400
test clock-19.105 {parse mmdd} {
    clock scan {Jan 02} -format {%h %d} -locale en_US_roman -base 0 -gmt 1
} 86400
test clock-19.106 {parse mmdd} {
    clock scan {Jan ii} -format {%h %Od} -locale en_US_roman -base 0 -gmt 1
} 86400
test clock-19.107 {parse mmdd} {
    clock scan {Jan  2} -format {%h %e} -locale en_US_roman -base 0 -gmt 1
} 86400
test clock-19.108 {parse mmdd} {
    clock scan {Jan ii} -format {%h %Oe} -locale en_US_roman -base 0 -gmt 1
} 86400
test clock-19.109 {parse mmdd} {
    clock scan {01 02} -format {%m %d} -locale en_US_roman -base 0 -gmt 1
} 86400
test clock-19.110 {parse mmdd} {
    clock scan {01 ii} -format {%m %Od} -locale en_US_roman -base 0 -gmt 1
} 86400
test clock-19.111 {parse mmdd} {
    clock scan {01  2} -format {%m %e} -locale en_US_roman -base 0 -gmt 1
} 86400
test clock-19.112 {parse mmdd} {
    clock scan {01 ii} -format {%m %Oe} -locale en_US_roman -base 0 -gmt 1
} 86400
test clock-19.113 {parse mmdd} {
    clock scan {i 02} -format {%Om %d} -locale en_US_roman -base 0 -gmt 1
} 86400
test clock-19.114 {parse mmdd} {
    clock scan {i ii} -format {%Om %Od} -locale en_US_roman -base 0 -gmt 1
} 86400
test clock-19.115 {parse mmdd} {
    clock scan {i  2} -format {%Om %e} -locale en_US_roman -base 0 -gmt 1
} 86400
test clock-19.116 {parse mmdd} {
    clock scan {i ii} -format {%Om %Oe} -locale en_US_roman -base 0 -gmt 1
} 86400
test clock-19.117 {parse mmdd} {
    clock scan { 1 02} -format {%N %d} -locale en_US_roman -base 0 -gmt 1
} 86400
test clock-19.118 {parse mmdd} {
    clock scan { 1 ii} -format {%N %Od} -locale en_US_roman -base 0 -gmt 1
} 86400
test clock-19.119 {parse mmdd} {
    clock scan { 1  2} -format {%N %e} -locale en_US_roman -base 0 -gmt 1
} 86400
test clock-19.120 {parse mmdd} {
    clock scan { 1 ii} -format {%N %Oe} -locale en_US_roman -base 0 -gmt 1
} 86400
test clock-19.121 {parse mmdd} {
    clock scan {Jan 31} -format {%b %d} -locale en_US_roman -base 0 -gmt 1
} 2592000
test clock-19.122 {parse mmdd} {
    clock scan {Jan xxxi} -format {%b %Od} -locale en_US_roman -base 0 -gmt 1
} 2592000
test clock-19.123 {parse mmdd} {
    clock scan {Jan 31} -format {%b %e} -locale en_US_roman -base 0 -gmt 1
} 2592000
test clock-19.124 {parse mmdd} {
    clock scan {Jan xxxi} -format {%b %Oe} -locale en_US_roman -base 0 -gmt 1
} 2592000
test clock-19.125 {parse mmdd} {
    clock scan {January 31} -format {%B %d} -locale en_US_roman -base 0 -gmt 1
} 2592000
test clock-19.126 {parse mmdd} {
    clock scan {January xxxi} -format {%B %Od} -locale en_US_roman -base 0 -gmt 1
} 2592000
test clock-19.127 {parse mmdd} {
    clock scan {January 31} -format {%B %e} -locale en_US_roman -base 0 -gmt 1
} 2592000
test clock-19.128 {parse mmdd} {
    clock scan {January xxxi} -format {%B %Oe} -locale en_US_roman -base 0 -gmt 1
} 2592000
test clock-19.129 {parse mmdd} {
    clock scan {Jan 31} -format {%h %d} -locale en_US_roman -base 0 -gmt 1
} 2592000
test clock-19.130 {parse mmdd} {
    clock scan {Jan xxxi} -format {%h %Od} -locale en_US_roman -base 0 -gmt 1
} 2592000
test clock-19.131 {parse mmdd} {
    clock scan {Jan 31} -format {%h %e} -locale en_US_roman -base 0 -gmt 1
} 2592000
test clock-19.132 {parse mmdd} {
    clock scan {Jan xxxi} -format {%h %Oe} -locale en_US_roman -base 0 -gmt 1
} 2592000
test clock-19.133 {parse mmdd} {
    clock scan {01 31} -format {%m %d} -locale en_US_roman -base 0 -gmt 1
} 2592000
test clock-19.134 {parse mmdd} {
    clock scan {01 xxxi} -format {%m %Od} -locale en_US_roman -base 0 -gmt 1
} 2592000
test clock-19.135 {parse mmdd} {
    clock scan {01 31} -format {%m %e} -locale en_US_roman -base 0 -gmt 1
} 2592000
test clock-19.136 {parse mmdd} {
    clock scan {01 xxxi} -format {%m %Oe} -locale en_US_roman -base 0 -gmt 1
} 2592000
test clock-19.137 {parse mmdd} {
    clock scan {i 31} -format {%Om %d} -locale en_US_roman -base 0 -gmt 1
} 2592000
test clock-19.138 {parse mmdd} {
    clock scan {i xxxi} -format {%Om %Od} -locale en_US_roman -base 0 -gmt 1
} 2592000
test clock-19.139 {parse mmdd} {
    clock scan {i 31} -format {%Om %e} -locale en_US_roman -base 0 -gmt 1
} 2592000
test clock-19.140 {parse mmdd} {
    clock scan {i xxxi} -format {%Om %Oe} -locale en_US_roman -base 0 -gmt 1
} 2592000
test clock-19.141 {parse mmdd} {
    clock scan { 1 31} -format {%N %d} -locale en_US_roman -base 0 -gmt 1
} 2592000
test clock-19.142 {parse mmdd} {
    clock scan { 1 xxxi} -format {%N %Od} -locale en_US_roman -base 0 -gmt 1
} 2592000
test clock-19.143 {parse mmdd} {
    clock scan { 1 31} -format {%N %e} -locale en_US_roman -base 0 -gmt 1
} 2592000
test clock-19.144 {parse mmdd} {
    clock scan { 1 xxxi} -format {%N %Oe} -locale en_US_roman -base 0 -gmt 1
} 2592000
test clock-19.145 {parse mmdd} {
    clock scan {Dec 02} -format {%b %d} -locale en_US_roman -base 0 -gmt 1
} 28944000
test clock-19.146 {parse mmdd} {
    clock scan {Dec ii} -format {%b %Od} -locale en_US_roman -base 0 -gmt 1
} 28944000
test clock-19.147 {parse mmdd} {
    clock scan {Dec  2} -format {%b %e} -locale en_US_roman -base 0 -gmt 1
} 28944000
test clock-19.148 {parse mmdd} {
    clock scan {Dec ii} -format {%b %Oe} -locale en_US_roman -base 0 -gmt 1
} 28944000
test clock-19.149 {parse mmdd} {
    clock scan {December 02} -format {%B %d} -locale en_US_roman -base 0 -gmt 1
} 28944000
test clock-19.150 {parse mmdd} {
    clock scan {December ii} -format {%B %Od} -locale en_US_roman -base 0 -gmt 1
} 28944000
test clock-19.151 {parse mmdd} {
    clock scan {December  2} -format {%B %e} -locale en_US_roman -base 0 -gmt 1
} 28944000
test clock-19.152 {parse mmdd} {
    clock scan {December ii} -format {%B %Oe} -locale en_US_roman -base 0 -gmt 1
} 28944000
test clock-19.153 {parse mmdd} {
    clock scan {Dec 02} -format {%h %d} -locale en_US_roman -base 0 -gmt 1
} 28944000
test clock-19.154 {parse mmdd} {
    clock scan {Dec ii} -format {%h %Od} -locale en_US_roman -base 0 -gmt 1
} 28944000
test clock-19.155 {parse mmdd} {
    clock scan {Dec  2} -format {%h %e} -locale en_US_roman -base 0 -gmt 1
} 28944000
test clock-19.156 {parse mmdd} {
    clock scan {Dec ii} -format {%h %Oe} -locale en_US_roman -base 0 -gmt 1
} 28944000
test clock-19.157 {parse mmdd} {
    clock scan {12 02} -format {%m %d} -locale en_US_roman -base 0 -gmt 1
} 28944000
test clock-19.158 {parse mmdd} {
    clock scan {12 ii} -format {%m %Od} -locale en_US_roman -base 0 -gmt 1
} 28944000
test clock-19.159 {parse mmdd} {
    clock scan {12  2} -format {%m %e} -locale en_US_roman -base 0 -gmt 1
} 28944000
test clock-19.160 {parse mmdd} {
    clock scan {12 ii} -format {%m %Oe} -locale en_US_roman -base 0 -gmt 1
} 28944000
test clock-19.161 {parse mmdd} {
    clock scan {xii 02} -format {%Om %d} -locale en_US_roman -base 0 -gmt 1
} 28944000
test clock-19.162 {parse mmdd} {
    clock scan {xii ii} -format {%Om %Od} -locale en_US_roman -base 0 -gmt 1
} 28944000
test clock-19.163 {parse mmdd} {
    clock scan {xii  2} -format {%Om %e} -locale en_US_roman -base 0 -gmt 1
} 28944000
test clock-19.164 {parse mmdd} {
    clock scan {xii ii} -format {%Om %Oe} -locale en_US_roman -base 0 -gmt 1
} 28944000
test clock-19.165 {parse mmdd} {
    clock scan {12 02} -format {%N %d} -locale en_US_roman -base 0 -gmt 1
} 28944000
test clock-19.166 {parse mmdd} {
    clock scan {12 ii} -format {%N %Od} -locale en_US_roman -base 0 -gmt 1
} 28944000
test clock-19.167 {parse mmdd} {
    clock scan {12  2} -format {%N %e} -locale en_US_roman -base 0 -gmt 1
} 28944000
test clock-19.168 {parse mmdd} {
    clock scan {12 ii} -format {%N %Oe} -locale en_US_roman -base 0 -gmt 1
} 28944000
test clock-19.169 {parse mmdd} {
    clock scan {Dec 31} -format {%b %d} -locale en_US_roman -base 0 -gmt 1
} 31449600
test clock-19.170 {parse mmdd} {
    clock scan {Dec xxxi} -format {%b %Od} -locale en_US_roman -base 0 -gmt 1
} 31449600
test clock-19.171 {parse mmdd} {
    clock scan {Dec 31} -format {%b %e} -locale en_US_roman -base 0 -gmt 1
} 31449600
test clock-19.172 {parse mmdd} {
    clock scan {Dec xxxi} -format {%b %Oe} -locale en_US_roman -base 0 -gmt 1
} 31449600
test clock-19.173 {parse mmdd} {
    clock scan {December 31} -format {%B %d} -locale en_US_roman -base 0 -gmt 1
} 31449600
test clock-19.174 {parse mmdd} {
    clock scan {December xxxi} -format {%B %Od} -locale en_US_roman -base 0 -gmt 1
} 31449600
test clock-19.175 {parse mmdd} {
    clock scan {December 31} -format {%B %e} -locale en_US_roman -base 0 -gmt 1
} 31449600
test clock-19.176 {parse mmdd} {
    clock scan {December xxxi} -format {%B %Oe} -locale en_US_roman -base 0 -gmt 1
} 31449600
test clock-19.177 {parse mmdd} {
    clock scan {Dec 31} -format {%h %d} -locale en_US_roman -base 0 -gmt 1
} 31449600
test clock-19.178 {parse mmdd} {
    clock scan {Dec xxxi} -format {%h %Od} -locale en_US_roman -base 0 -gmt 1
} 31449600
test clock-19.179 {parse mmdd} {
    clock scan {Dec 31} -format {%h %e} -locale en_US_roman -base 0 -gmt 1
} 31449600
test clock-19.180 {parse mmdd} {
    clock scan {Dec xxxi} -format {%h %Oe} -locale en_US_roman -base 0 -gmt 1
} 31449600
test clock-19.181 {parse mmdd} {
    clock scan {12 31} -format {%m %d} -locale en_US_roman -base 0 -gmt 1
} 31449600
test clock-19.182 {parse mmdd} {
    clock scan {12 xxxi} -format {%m %Od} -locale en_US_roman -base 0 -gmt 1
} 31449600
test clock-19.183 {parse mmdd} {
    clock scan {12 31} -format {%m %e} -locale en_US_roman -base 0 -gmt 1
} 31449600
test clock-19.184 {parse mmdd} {
    clock scan {12 xxxi} -format {%m %Oe} -locale en_US_roman -base 0 -gmt 1
} 31449600
test clock-19.185 {parse mmdd} {
    clock scan {xii 31} -format {%Om %d} -locale en_US_roman -base 0 -gmt 1
} 31449600
test clock-19.186 {parse mmdd} {
    clock scan {xii xxxi} -format {%Om %Od} -locale en_US_roman -base 0 -gmt 1
} 31449600
test clock-19.187 {parse mmdd} {
    clock scan {xii 31} -format {%Om %e} -locale en_US_roman -base 0 -gmt 1
} 31449600
test clock-19.188 {parse mmdd} {
    clock scan {xii xxxi} -format {%Om %Oe} -locale en_US_roman -base 0 -gmt 1
} 31449600
test clock-19.189 {parse mmdd} {
    clock scan {12 31} -format {%N %d} -locale en_US_roman -base 0 -gmt 1
} 31449600
test clock-19.190 {parse mmdd} {
    clock scan {12 xxxi} -format {%N %Od} -locale en_US_roman -base 0 -gmt 1
} 31449600
test clock-19.191 {parse mmdd} {
    clock scan {12 31} -format {%N %e} -locale en_US_roman -base 0 -gmt 1
} 31449600
test clock-19.192 {parse mmdd} {
    clock scan {12 xxxi} -format {%N %Oe} -locale en_US_roman -base 0 -gmt 1
} 31449600
test clock-19.193 {parse mmdd} {
    clock scan {Jan 02} -format {%b %d} -locale en_US_roman -base 946684800 -gmt 1
} 946771200
test clock-19.194 {parse mmdd} {
    clock scan {Jan ii} -format {%b %Od} -locale en_US_roman -base 946684800 -gmt 1
} 946771200
test clock-19.195 {parse mmdd} {
    clock scan {Jan  2} -format {%b %e} -locale en_US_roman -base 946684800 -gmt 1
} 946771200
test clock-19.196 {parse mmdd} {
    clock scan {Jan ii} -format {%b %Oe} -locale en_US_roman -base 946684800 -gmt 1
} 946771200
test clock-19.197 {parse mmdd} {
    clock scan {January 02} -format {%B %d} -locale en_US_roman -base 946684800 -gmt 1
} 946771200
test clock-19.198 {parse mmdd} {
    clock scan {January ii} -format {%B %Od} -locale en_US_roman -base 946684800 -gmt 1
} 946771200
test clock-19.199 {parse mmdd} {
    clock scan {January  2} -format {%B %e} -locale en_US_roman -base 946684800 -gmt 1
} 946771200
test clock-19.200 {parse mmdd} {
    clock scan {January ii} -format {%B %Oe} -locale en_US_roman -base 946684800 -gmt 1
} 946771200
test clock-19.201 {parse mmdd} {
    clock scan {Jan 02} -format {%h %d} -locale en_US_roman -base 946684800 -gmt 1
} 946771200
test clock-19.202 {parse mmdd} {
    clock scan {Jan ii} -format {%h %Od} -locale en_US_roman -base 946684800 -gmt 1
} 946771200
test clock-19.203 {parse mmdd} {
    clock scan {Jan  2} -format {%h %e} -locale en_US_roman -base 946684800 -gmt 1
} 946771200
test clock-19.204 {parse mmdd} {
    clock scan {Jan ii} -format {%h %Oe} -locale en_US_roman -base 946684800 -gmt 1
} 946771200
test clock-19.205 {parse mmdd} {
    clock scan {01 02} -format {%m %d} -locale en_US_roman -base 946684800 -gmt 1
} 946771200
test clock-19.206 {parse mmdd} {
    clock scan {01 ii} -format {%m %Od} -locale en_US_roman -base 946684800 -gmt 1
} 946771200
test clock-19.207 {parse mmdd} {
    clock scan {01  2} -format {%m %e} -locale en_US_roman -base 946684800 -gmt 1
} 946771200
test clock-19.208 {parse mmdd} {
    clock scan {01 ii} -format {%m %Oe} -locale en_US_roman -base 946684800 -gmt 1
} 946771200
test clock-19.209 {parse mmdd} {
    clock scan {i 02} -format {%Om %d} -locale en_US_roman -base 946684800 -gmt 1
} 946771200
test clock-19.210 {parse mmdd} {
    clock scan {i ii} -format {%Om %Od} -locale en_US_roman -base 946684800 -gmt 1
} 946771200
test clock-19.211 {parse mmdd} {
    clock scan {i  2} -format {%Om %e} -locale en_US_roman -base 946684800 -gmt 1
} 946771200
test clock-19.212 {parse mmdd} {
    clock scan {i ii} -format {%Om %Oe} -locale en_US_roman -base 946684800 -gmt 1
} 946771200
test clock-19.213 {parse mmdd} {
    clock scan { 1 02} -format {%N %d} -locale en_US_roman -base 946684800 -gmt 1
} 946771200
test clock-19.214 {parse mmdd} {
    clock scan { 1 ii} -format {%N %Od} -locale en_US_roman -base 946684800 -gmt 1
} 946771200
test clock-19.215 {parse mmdd} {
    clock scan { 1  2} -format {%N %e} -locale en_US_roman -base 946684800 -gmt 1
} 946771200
test clock-19.216 {parse mmdd} {
    clock scan { 1 ii} -format {%N %Oe} -locale en_US_roman -base 946684800 -gmt 1
} 946771200
test clock-19.217 {parse mmdd} {
    clock scan {Jan 31} -format {%b %d} -locale en_US_roman -base 946684800 -gmt 1
} 949276800
test clock-19.218 {parse mmdd} {
    clock scan {Jan xxxi} -format {%b %Od} -locale en_US_roman -base 946684800 -gmt 1
} 949276800
test clock-19.219 {parse mmdd} {
    clock scan {Jan 31} -format {%b %e} -locale en_US_roman -base 946684800 -gmt 1
} 949276800
test clock-19.220 {parse mmdd} {
    clock scan {Jan xxxi} -format {%b %Oe} -locale en_US_roman -base 946684800 -gmt 1
} 949276800
test clock-19.221 {parse mmdd} {
    clock scan {January 31} -format {%B %d} -locale en_US_roman -base 946684800 -gmt 1
} 949276800
test clock-19.222 {parse mmdd} {
    clock scan {January xxxi} -format {%B %Od} -locale en_US_roman -base 946684800 -gmt 1
} 949276800
test clock-19.223 {parse mmdd} {
    clock scan {January 31} -format {%B %e} -locale en_US_roman -base 946684800 -gmt 1
} 949276800
test clock-19.224 {parse mmdd} {
    clock scan {January xxxi} -format {%B %Oe} -locale en_US_roman -base 946684800 -gmt 1
} 949276800
test clock-19.225 {parse mmdd} {
    clock scan {Jan 31} -format {%h %d} -locale en_US_roman -base 946684800 -gmt 1
} 949276800
test clock-19.226 {parse mmdd} {
    clock scan {Jan xxxi} -format {%h %Od} -locale en_US_roman -base 946684800 -gmt 1
} 949276800
test clock-19.227 {parse mmdd} {
    clock scan {Jan 31} -format {%h %e} -locale en_US_roman -base 946684800 -gmt 1
} 949276800
test clock-19.228 {parse mmdd} {
    clock scan {Jan xxxi} -format {%h %Oe} -locale en_US_roman -base 946684800 -gmt 1
} 949276800
test clock-19.229 {parse mmdd} {
    clock scan {01 31} -format {%m %d} -locale en_US_roman -base 946684800 -gmt 1
} 949276800
test clock-19.230 {parse mmdd} {
    clock scan {01 xxxi} -format {%m %Od} -locale en_US_roman -base 946684800 -gmt 1
} 949276800
test clock-19.231 {parse mmdd} {
    clock scan {01 31} -format {%m %e} -locale en_US_roman -base 946684800 -gmt 1
} 949276800
test clock-19.232 {parse mmdd} {
    clock scan {01 xxxi} -format {%m %Oe} -locale en_US_roman -base 946684800 -gmt 1
} 949276800
test clock-19.233 {parse mmdd} {
    clock scan {i 31} -format {%Om %d} -locale en_US_roman -base 946684800 -gmt 1
} 949276800
test clock-19.234 {parse mmdd} {
    clock scan {i xxxi} -format {%Om %Od} -locale en_US_roman -base 946684800 -gmt 1
} 949276800
test clock-19.235 {parse mmdd} {
    clock scan {i 31} -format {%Om %e} -locale en_US_roman -base 946684800 -gmt 1
} 949276800
test clock-19.236 {parse mmdd} {
    clock scan {i xxxi} -format {%Om %Oe} -locale en_US_roman -base 946684800 -gmt 1
} 949276800
test clock-19.237 {parse mmdd} {
    clock scan { 1 31} -format {%N %d} -locale en_US_roman -base 946684800 -gmt 1
} 949276800
test clock-19.238 {parse mmdd} {
    clock scan { 1 xxxi} -format {%N %Od} -locale en_US_roman -base 946684800 -gmt 1
} 949276800
test clock-19.239 {parse mmdd} {
    clock scan { 1 31} -format {%N %e} -locale en_US_roman -base 946684800 -gmt 1
} 949276800
test clock-19.240 {parse mmdd} {
    clock scan { 1 xxxi} -format {%N %Oe} -locale en_US_roman -base 946684800 -gmt 1
} 949276800
test clock-19.241 {parse mmdd} {
    clock scan {Dec 02} -format {%b %d} -locale en_US_roman -base 946684800 -gmt 1
} 975715200
test clock-19.242 {parse mmdd} {
    clock scan {Dec ii} -format {%b %Od} -locale en_US_roman -base 946684800 -gmt 1
} 975715200
test clock-19.243 {parse mmdd} {
    clock scan {Dec  2} -format {%b %e} -locale en_US_roman -base 946684800 -gmt 1
} 975715200
test clock-19.244 {parse mmdd} {
    clock scan {Dec ii} -format {%b %Oe} -locale en_US_roman -base 946684800 -gmt 1
} 975715200
test clock-19.245 {parse mmdd} {
    clock scan {December 02} -format {%B %d} -locale en_US_roman -base 946684800 -gmt 1
} 975715200
test clock-19.246 {parse mmdd} {
    clock scan {December ii} -format {%B %Od} -locale en_US_roman -base 946684800 -gmt 1
} 975715200
test clock-19.247 {parse mmdd} {
    clock scan {December  2} -format {%B %e} -locale en_US_roman -base 946684800 -gmt 1
} 975715200
test clock-19.248 {parse mmdd} {
    clock scan {December ii} -format {%B %Oe} -locale en_US_roman -base 946684800 -gmt 1
} 975715200
test clock-19.249 {parse mmdd} {
    clock scan {Dec 02} -format {%h %d} -locale en_US_roman -base 946684800 -gmt 1
} 975715200
test clock-19.250 {parse mmdd} {
    clock scan {Dec ii} -format {%h %Od} -locale en_US_roman -base 946684800 -gmt 1
} 975715200
test clock-19.251 {parse mmdd} {
    clock scan {Dec  2} -format {%h %e} -locale en_US_roman -base 946684800 -gmt 1
} 975715200
test clock-19.252 {parse mmdd} {
    clock scan {Dec ii} -format {%h %Oe} -locale en_US_roman -base 946684800 -gmt 1
} 975715200
test clock-19.253 {parse mmdd} {
    clock scan {12 02} -format {%m %d} -locale en_US_roman -base 946684800 -gmt 1
} 975715200
test clock-19.254 {parse mmdd} {
    clock scan {12 ii} -format {%m %Od} -locale en_US_roman -base 946684800 -gmt 1
} 975715200
test clock-19.255 {parse mmdd} {
    clock scan {12  2} -format {%m %e} -locale en_US_roman -base 946684800 -gmt 1
} 975715200
test clock-19.256 {parse mmdd} {
    clock scan {12 ii} -format {%m %Oe} -locale en_US_roman -base 946684800 -gmt 1
} 975715200
test clock-19.257 {parse mmdd} {
    clock scan {xii 02} -format {%Om %d} -locale en_US_roman -base 946684800 -gmt 1
} 975715200
test clock-19.258 {parse mmdd} {
    clock scan {xii ii} -format {%Om %Od} -locale en_US_roman -base 946684800 -gmt 1
} 975715200
test clock-19.259 {parse mmdd} {
    clock scan {xii  2} -format {%Om %e} -locale en_US_roman -base 946684800 -gmt 1
} 975715200
test clock-19.260 {parse mmdd} {
    clock scan {xii ii} -format {%Om %Oe} -locale en_US_roman -base 946684800 -gmt 1
} 975715200
test clock-19.261 {parse mmdd} {
    clock scan {12 02} -format {%N %d} -locale en_US_roman -base 946684800 -gmt 1
} 975715200
test clock-19.262 {parse mmdd} {
    clock scan {12 ii} -format {%N %Od} -locale en_US_roman -base 946684800 -gmt 1
} 975715200
test clock-19.263 {parse mmdd} {
    clock scan {12  2} -format {%N %e} -locale en_US_roman -base 946684800 -gmt 1
} 975715200
test clock-19.264 {parse mmdd} {
    clock scan {12 ii} -format {%N %Oe} -locale en_US_roman -base 946684800 -gmt 1
} 975715200
test clock-19.265 {parse mmdd} {
    clock scan {Dec 31} -format {%b %d} -locale en_US_roman -base 946684800 -gmt 1
} 978220800
test clock-19.266 {parse mmdd} {
    clock scan {Dec xxxi} -format {%b %Od} -locale en_US_roman -base 946684800 -gmt 1
} 978220800
test clock-19.267 {parse mmdd} {
    clock scan {Dec 31} -format {%b %e} -locale en_US_roman -base 946684800 -gmt 1
} 978220800
test clock-19.268 {parse mmdd} {
    clock scan {Dec xxxi} -format {%b %Oe} -locale en_US_roman -base 946684800 -gmt 1
} 978220800
test clock-19.269 {parse mmdd} {
    clock scan {December 31} -format {%B %d} -locale en_US_roman -base 946684800 -gmt 1
} 978220800
test clock-19.270 {parse mmdd} {
    clock scan {December xxxi} -format {%B %Od} -locale en_US_roman -base 946684800 -gmt 1
} 978220800
test clock-19.271 {parse mmdd} {
    clock scan {December 31} -format {%B %e} -locale en_US_roman -base 946684800 -gmt 1
} 978220800
test clock-19.272 {parse mmdd} {
    clock scan {December xxxi} -format {%B %Oe} -locale en_US_roman -base 946684800 -gmt 1
} 978220800
test clock-19.273 {parse mmdd} {
    clock scan {Dec 31} -format {%h %d} -locale en_US_roman -base 946684800 -gmt 1
} 978220800
test clock-19.274 {parse mmdd} {
    clock scan {Dec xxxi} -format {%h %Od} -locale en_US_roman -base 946684800 -gmt 1
} 978220800
test clock-19.275 {parse mmdd} {
    clock scan {Dec 31} -format {%h %e} -locale en_US_roman -base 946684800 -gmt 1
} 978220800
test clock-19.276 {parse mmdd} {
    clock scan {Dec xxxi} -format {%h %Oe} -locale en_US_roman -base 946684800 -gmt 1
} 978220800
test clock-19.277 {parse mmdd} {
    clock scan {12 31} -format {%m %d} -locale en_US_roman -base 946684800 -gmt 1
} 978220800
test clock-19.278 {parse mmdd} {
    clock scan {12 xxxi} -format {%m %Od} -locale en_US_roman -base 946684800 -gmt 1
} 978220800
test clock-19.279 {parse mmdd} {
    clock scan {12 31} -format {%m %e} -locale en_US_roman -base 946684800 -gmt 1
} 978220800
test clock-19.280 {parse mmdd} {
    clock scan {12 xxxi} -format {%m %Oe} -locale en_US_roman -base 946684800 -gmt 1
} 978220800
test clock-19.281 {parse mmdd} {
    clock scan {xii 31} -format {%Om %d} -locale en_US_roman -base 946684800 -gmt 1
} 978220800
test clock-19.282 {parse mmdd} {
    clock scan {xii xxxi} -format {%Om %Od} -locale en_US_roman -base 946684800 -gmt 1
} 978220800
test clock-19.283 {parse mmdd} {
    clock scan {xii 31} -format {%Om %e} -locale en_US_roman -base 946684800 -gmt 1
} 978220800
test clock-19.284 {parse mmdd} {
    clock scan {xii xxxi} -format {%Om %Oe} -locale en_US_roman -base 946684800 -gmt 1
} 978220800
test clock-19.285 {parse mmdd} {
    clock scan {12 31} -format {%N %d} -locale en_US_roman -base 946684800 -gmt 1
} 978220800
test clock-19.286 {parse mmdd} {
    clock scan {12 xxxi} -format {%N %Od} -locale en_US_roman -base 946684800 -gmt 1
} 978220800
test clock-19.287 {parse mmdd} {
    clock scan {12 31} -format {%N %e} -locale en_US_roman -base 946684800 -gmt 1
} 978220800
test clock-19.288 {parse mmdd} {
    clock scan {12 xxxi} -format {%N %Oe} -locale en_US_roman -base 946684800 -gmt 1
} 978220800
test clock-19.289 {parse mmdd} {
    clock scan {Jan 02} -format {%b %d} -locale en_US_roman -base 2114380800 -gmt 1
} 2114467200
test clock-19.290 {parse mmdd} {
    clock scan {Jan ii} -format {%b %Od} -locale en_US_roman -base 2114380800 -gmt 1
} 2114467200
test clock-19.291 {parse mmdd} {
    clock scan {Jan  2} -format {%b %e} -locale en_US_roman -base 2114380800 -gmt 1
} 2114467200
test clock-19.292 {parse mmdd} {
    clock scan {Jan ii} -format {%b %Oe} -locale en_US_roman -base 2114380800 -gmt 1
} 2114467200
test clock-19.293 {parse mmdd} {
    clock scan {January 02} -format {%B %d} -locale en_US_roman -base 2114380800 -gmt 1
} 2114467200
test clock-19.294 {parse mmdd} {
    clock scan {January ii} -format {%B %Od} -locale en_US_roman -base 2114380800 -gmt 1
} 2114467200
test clock-19.295 {parse mmdd} {
    clock scan {January  2} -format {%B %e} -locale en_US_roman -base 2114380800 -gmt 1
} 2114467200
test clock-19.296 {parse mmdd} {
    clock scan {January ii} -format {%B %Oe} -locale en_US_roman -base 2114380800 -gmt 1
} 2114467200
test clock-19.297 {parse mmdd} {
    clock scan {Jan 02} -format {%h %d} -locale en_US_roman -base 2114380800 -gmt 1
} 2114467200
test clock-19.298 {parse mmdd} {
    clock scan {Jan ii} -format {%h %Od} -locale en_US_roman -base 2114380800 -gmt 1
} 2114467200
test clock-19.299 {parse mmdd} {
    clock scan {Jan  2} -format {%h %e} -locale en_US_roman -base 2114380800 -gmt 1
} 2114467200
test clock-19.300 {parse mmdd} {
    clock scan {Jan ii} -format {%h %Oe} -locale en_US_roman -base 2114380800 -gmt 1
} 2114467200
test clock-19.301 {parse mmdd} {
    clock scan {01 02} -format {%m %d} -locale en_US_roman -base 2114380800 -gmt 1
} 2114467200
test clock-19.302 {parse mmdd} {
    clock scan {01 ii} -format {%m %Od} -locale en_US_roman -base 2114380800 -gmt 1
} 2114467200
test clock-19.303 {parse mmdd} {
    clock scan {01  2} -format {%m %e} -locale en_US_roman -base 2114380800 -gmt 1
} 2114467200
test clock-19.304 {parse mmdd} {
    clock scan {01 ii} -format {%m %Oe} -locale en_US_roman -base 2114380800 -gmt 1
} 2114467200
test clock-19.305 {parse mmdd} {
    clock scan {i 02} -format {%Om %d} -locale en_US_roman -base 2114380800 -gmt 1
} 2114467200
test clock-19.306 {parse mmdd} {
    clock scan {i ii} -format {%Om %Od} -locale en_US_roman -base 2114380800 -gmt 1
} 2114467200
test clock-19.307 {parse mmdd} {
    clock scan {i  2} -format {%Om %e} -locale en_US_roman -base 2114380800 -gmt 1
} 2114467200
test clock-19.308 {parse mmdd} {
    clock scan {i ii} -format {%Om %Oe} -locale en_US_roman -base 2114380800 -gmt 1
} 2114467200
test clock-19.309 {parse mmdd} {
    clock scan { 1 02} -format {%N %d} -locale en_US_roman -base 2114380800 -gmt 1
} 2114467200
test clock-19.310 {parse mmdd} {
    clock scan { 1 ii} -format {%N %Od} -locale en_US_roman -base 2114380800 -gmt 1
} 2114467200
test clock-19.311 {parse mmdd} {
    clock scan { 1  2} -format {%N %e} -locale en_US_roman -base 2114380800 -gmt 1
} 2114467200
test clock-19.312 {parse mmdd} {
    clock scan { 1 ii} -format {%N %Oe} -locale en_US_roman -base 2114380800 -gmt 1
} 2114467200
test clock-19.313 {parse mmdd} {
    clock scan {Jan 31} -format {%b %d} -locale en_US_roman -base 2114380800 -gmt 1
} 2116972800
test clock-19.314 {parse mmdd} {
    clock scan {Jan xxxi} -format {%b %Od} -locale en_US_roman -base 2114380800 -gmt 1
} 2116972800
test clock-19.315 {parse mmdd} {
    clock scan {Jan 31} -format {%b %e} -locale en_US_roman -base 2114380800 -gmt 1
} 2116972800
test clock-19.316 {parse mmdd} {
    clock scan {Jan xxxi} -format {%b %Oe} -locale en_US_roman -base 2114380800 -gmt 1
} 2116972800
test clock-19.317 {parse mmdd} {
    clock scan {January 31} -format {%B %d} -locale en_US_roman -base 2114380800 -gmt 1
} 2116972800
test clock-19.318 {parse mmdd} {
    clock scan {January xxxi} -format {%B %Od} -locale en_US_roman -base 2114380800 -gmt 1
} 2116972800
test clock-19.319 {parse mmdd} {
    clock scan {January 31} -format {%B %e} -locale en_US_roman -base 2114380800 -gmt 1
} 2116972800
test clock-19.320 {parse mmdd} {
    clock scan {January xxxi} -format {%B %Oe} -locale en_US_roman -base 2114380800 -gmt 1
} 2116972800
test clock-19.321 {parse mmdd} {
    clock scan {Jan 31} -format {%h %d} -locale en_US_roman -base 2114380800 -gmt 1
} 2116972800
test clock-19.322 {parse mmdd} {
    clock scan {Jan xxxi} -format {%h %Od} -locale en_US_roman -base 2114380800 -gmt 1
} 2116972800
test clock-19.323 {parse mmdd} {
    clock scan {Jan 31} -format {%h %e} -locale en_US_roman -base 2114380800 -gmt 1
} 2116972800
test clock-19.324 {parse mmdd} {
    clock scan {Jan xxxi} -format {%h %Oe} -locale en_US_roman -base 2114380800 -gmt 1
} 2116972800
test clock-19.325 {parse mmdd} {
    clock scan {01 31} -format {%m %d} -locale en_US_roman -base 2114380800 -gmt 1
} 2116972800
test clock-19.326 {parse mmdd} {
    clock scan {01 xxxi} -format {%m %Od} -locale en_US_roman -base 2114380800 -gmt 1
} 2116972800
test clock-19.327 {parse mmdd} {
    clock scan {01 31} -format {%m %e} -locale en_US_roman -base 2114380800 -gmt 1
} 2116972800
test clock-19.328 {parse mmdd} {
    clock scan {01 xxxi} -format {%m %Oe} -locale en_US_roman -base 2114380800 -gmt 1
} 2116972800
test clock-19.329 {parse mmdd} {
    clock scan {i 31} -format {%Om %d} -locale en_US_roman -base 2114380800 -gmt 1
} 2116972800
test clock-19.330 {parse mmdd} {
    clock scan {i xxxi} -format {%Om %Od} -locale en_US_roman -base 2114380800 -gmt 1
} 2116972800
test clock-19.331 {parse mmdd} {
    clock scan {i 31} -format {%Om %e} -locale en_US_roman -base 2114380800 -gmt 1
} 2116972800
test clock-19.332 {parse mmdd} {
    clock scan {i xxxi} -format {%Om %Oe} -locale en_US_roman -base 2114380800 -gmt 1
} 2116972800
test clock-19.333 {parse mmdd} {
    clock scan { 1 31} -format {%N %d} -locale en_US_roman -base 2114380800 -gmt 1
} 2116972800
test clock-19.334 {parse mmdd} {
    clock scan { 1 xxxi} -format {%N %Od} -locale en_US_roman -base 2114380800 -gmt 1
} 2116972800
test clock-19.335 {parse mmdd} {
    clock scan { 1 31} -format {%N %e} -locale en_US_roman -base 2114380800 -gmt 1
} 2116972800
test clock-19.336 {parse mmdd} {
    clock scan { 1 xxxi} -format {%N %Oe} -locale en_US_roman -base 2114380800 -gmt 1
} 2116972800
test clock-19.337 {parse mmdd} {
    clock scan {Dec 02} -format {%b %d} -locale en_US_roman -base 2114380800 -gmt 1
} 2143324800
test clock-19.338 {parse mmdd} {
    clock scan {Dec ii} -format {%b %Od} -locale en_US_roman -base 2114380800 -gmt 1
} 2143324800
test clock-19.339 {parse mmdd} {
    clock scan {Dec  2} -format {%b %e} -locale en_US_roman -base 2114380800 -gmt 1
} 2143324800
test clock-19.340 {parse mmdd} {
    clock scan {Dec ii} -format {%b %Oe} -locale en_US_roman -base 2114380800 -gmt 1
} 2143324800
test clock-19.341 {parse mmdd} {
    clock scan {December 02} -format {%B %d} -locale en_US_roman -base 2114380800 -gmt 1
} 2143324800
test clock-19.342 {parse mmdd} {
    clock scan {December ii} -format {%B %Od} -locale en_US_roman -base 2114380800 -gmt 1
} 2143324800
test clock-19.343 {parse mmdd} {
    clock scan {December  2} -format {%B %e} -locale en_US_roman -base 2114380800 -gmt 1
} 2143324800
test clock-19.344 {parse mmdd} {
    clock scan {December ii} -format {%B %Oe} -locale en_US_roman -base 2114380800 -gmt 1
} 2143324800
test clock-19.345 {parse mmdd} {
    clock scan {Dec 02} -format {%h %d} -locale en_US_roman -base 2114380800 -gmt 1
} 2143324800
test clock-19.346 {parse mmdd} {
    clock scan {Dec ii} -format {%h %Od} -locale en_US_roman -base 2114380800 -gmt 1
} 2143324800
test clock-19.347 {parse mmdd} {
    clock scan {Dec  2} -format {%h %e} -locale en_US_roman -base 2114380800 -gmt 1
} 2143324800
test clock-19.348 {parse mmdd} {
    clock scan {Dec ii} -format {%h %Oe} -locale en_US_roman -base 2114380800 -gmt 1
} 2143324800
test clock-19.349 {parse mmdd} {
    clock scan {12 02} -format {%m %d} -locale en_US_roman -base 2114380800 -gmt 1
} 2143324800
test clock-19.350 {parse mmdd} {
    clock scan {12 ii} -format {%m %Od} -locale en_US_roman -base 2114380800 -gmt 1
} 2143324800
test clock-19.351 {parse mmdd} {
    clock scan {12  2} -format {%m %e} -locale en_US_roman -base 2114380800 -gmt 1
} 2143324800
test clock-19.352 {parse mmdd} {
    clock scan {12 ii} -format {%m %Oe} -locale en_US_roman -base 2114380800 -gmt 1
} 2143324800
test clock-19.353 {parse mmdd} {
    clock scan {xii 02} -format {%Om %d} -locale en_US_roman -base 2114380800 -gmt 1
} 2143324800
test clock-19.354 {parse mmdd} {
    clock scan {xii ii} -format {%Om %Od} -locale en_US_roman -base 2114380800 -gmt 1
} 2143324800
test clock-19.355 {parse mmdd} {
    clock scan {xii  2} -format {%Om %e} -locale en_US_roman -base 2114380800 -gmt 1
} 2143324800
test clock-19.356 {parse mmdd} {
    clock scan {xii ii} -format {%Om %Oe} -locale en_US_roman -base 2114380800 -gmt 1
} 2143324800
test clock-19.357 {parse mmdd} {
    clock scan {12 02} -format {%N %d} -locale en_US_roman -base 2114380800 -gmt 1
} 2143324800
test clock-19.358 {parse mmdd} {
    clock scan {12 ii} -format {%N %Od} -locale en_US_roman -base 2114380800 -gmt 1
} 2143324800
test clock-19.359 {parse mmdd} {
    clock scan {12  2} -format {%N %e} -locale en_US_roman -base 2114380800 -gmt 1
} 2143324800
test clock-19.360 {parse mmdd} {
    clock scan {12 ii} -format {%N %Oe} -locale en_US_roman -base 2114380800 -gmt 1
} 2143324800
test clock-19.361 {parse mmdd} {
    clock scan {Dec 31} -format {%b %d} -locale en_US_roman -base 2114380800 -gmt 1
} 2145830400
test clock-19.362 {parse mmdd} {
    clock scan {Dec xxxi} -format {%b %Od} -locale en_US_roman -base 2114380800 -gmt 1
} 2145830400
test clock-19.363 {parse mmdd} {
    clock scan {Dec 31} -format {%b %e} -locale en_US_roman -base 2114380800 -gmt 1
} 2145830400
test clock-19.364 {parse mmdd} {
    clock scan {Dec xxxi} -format {%b %Oe} -locale en_US_roman -base 2114380800 -gmt 1
} 2145830400
test clock-19.365 {parse mmdd} {
    clock scan {December 31} -format {%B %d} -locale en_US_roman -base 2114380800 -gmt 1
} 2145830400
test clock-19.366 {parse mmdd} {
    clock scan {December xxxi} -format {%B %Od} -locale en_US_roman -base 2114380800 -gmt 1
} 2145830400
test clock-19.367 {parse mmdd} {
    clock scan {December 31} -format {%B %e} -locale en_US_roman -base 2114380800 -gmt 1
} 2145830400
test clock-19.368 {parse mmdd} {
    clock scan {December xxxi} -format {%B %Oe} -locale en_US_roman -base 2114380800 -gmt 1
} 2145830400
test clock-19.369 {parse mmdd} {
    clock scan {Dec 31} -format {%h %d} -locale en_US_roman -base 2114380800 -gmt 1
} 2145830400
test clock-19.370 {parse mmdd} {
    clock scan {Dec xxxi} -format {%h %Od} -locale en_US_roman -base 2114380800 -gmt 1
} 2145830400
test clock-19.371 {parse mmdd} {
    clock scan {Dec 31} -format {%h %e} -locale en_US_roman -base 2114380800 -gmt 1
} 2145830400
test clock-19.372 {parse mmdd} {
    clock scan {Dec xxxi} -format {%h %Oe} -locale en_US_roman -base 2114380800 -gmt 1
} 2145830400
test clock-19.373 {parse mmdd} {
    clock scan {12 31} -format {%m %d} -locale en_US_roman -base 2114380800 -gmt 1
} 2145830400
test clock-19.374 {parse mmdd} {
    clock scan {12 xxxi} -format {%m %Od} -locale en_US_roman -base 2114380800 -gmt 1
} 2145830400
test clock-19.375 {parse mmdd} {
    clock scan {12 31} -format {%m %e} -locale en_US_roman -base 2114380800 -gmt 1
} 2145830400
test clock-19.376 {parse mmdd} {
    clock scan {12 xxxi} -format {%m %Oe} -locale en_US_roman -base 2114380800 -gmt 1
} 2145830400
test clock-19.377 {parse mmdd} {
    clock scan {xii 31} -format {%Om %d} -locale en_US_roman -base 2114380800 -gmt 1
} 2145830400
test clock-19.378 {parse mmdd} {
    clock scan {xii xxxi} -format {%Om %Od} -locale en_US_roman -base 2114380800 -gmt 1
} 2145830400
test clock-19.379 {parse mmdd} {
    clock scan {xii 31} -format {%Om %e} -locale en_US_roman -base 2114380800 -gmt 1
} 2145830400
test clock-19.380 {parse mmdd} {
    clock scan {xii xxxi} -format {%Om %Oe} -locale en_US_roman -base 2114380800 -gmt 1
} 2145830400
test clock-19.381 {parse mmdd} {
    clock scan {12 31} -format {%N %d} -locale en_US_roman -base 2114380800 -gmt 1
} 2145830400
test clock-19.382 {parse mmdd} {
    clock scan {12 xxxi} -format {%N %Od} -locale en_US_roman -base 2114380800 -gmt 1
} 2145830400
test clock-19.383 {parse mmdd} {
    clock scan {12 31} -format {%N %e} -locale en_US_roman -base 2114380800 -gmt 1
} 2145830400
test clock-19.384 {parse mmdd} {
    clock scan {12 xxxi} -format {%N %Oe} -locale en_US_roman -base 2114380800 -gmt 1
} 2145830400
# END testcases19

test clock-20.1 {seconds take precedence over mmdd} {
    list [clock scan {0 0201} -format {%s %m%d} -gmt true -base 0] \
	 [clock scan {0201 0} -format {%m%d %s} -gmt true -base 0]
} {0 0}
test clock-20.2 {julian day takes precedence over yyddd} {
    list [clock scan {2440588 0201} -format {%J %m%d} -gmt true -base 0] \
	 [clock scan {0201 2440588} -format {%m%d %J} -gmt true -base 0]
} {0 0}
test clock-20.3 {yyyyWwwd over mmdd} {
    list [clock scan {1970W014 0201} -format {%GW%V%u %m%d} -gmt true -base 0] \
	[clock scan {0201 1970W014} -format {%m%d %GW%V%u} -gmt true -base 0]
} {0 0}
test clock-20.4 {yyWwwd over mmdd} {
    list [clock scan {70W014 0201} -format {%gW%V%u %m%d} -gmt true -base 0] \
	[clock scan {0201 70W014} -format {%m%d %gW%V%u} -gmt true -base 0]
} {0 0}

# Test parsing of ddd

test clock-21.1 {parse ddd} {
    clock scan {001} -format {%j} -locale en_US_roman -gmt 1 -base 0
} 0
test clock-21.2 {parse ddd} {
    clock scan {365} -format {%j} -locale en_US_roman -gmt 1 -base 0
} 31449600
test clock-21.3 {parse ddd} {
    clock scan {001} -format {%j} -locale en_US_roman -gmt 1 -base 31536000
} 31536000
test clock-21.4 {parse ddd} {
    clock scan {365} -format {%j} -locale en_US_roman -gmt 1 -base 31536000
} 62985600
test clock-21.5 {seconds take precedence over ddd} {
    list [clock scan {0 002} -format {%s %j} -gmt true -base 0] \
	 [clock scan {002 0} -format {%j %s} -gmt true -base 0]
} {0 0}
test clock-21.6 {julian day takes precedence over yyddd} {
    list [clock scan {2440588 002} -format {%J %j} -gmt true -base 0] \
	 [clock scan {002 2440588} -format {%j %J} -gmt true -base 0]
} {0 0}
test clock-21.7 {yyyyWwwd over ddd} {
    list [clock scan {1970W014 002} -format {%GW%V%u %j} -gmt true -base 0] \
	[clock scan {002 1970W014} -format {%j %GW%V%u} -gmt true -base 0]
} {0 0}
test clock-21.8 {yyWwwd over ddd} {
    list [clock scan {70W014 002} -format {%gW%V%u %j} -gmt true -base 0] \
	[clock scan {002 70W014} -format {%j %gW%V%u} -gmt true -base 0]
} {0 0}

# BEGIN testcases22

# Test parsing of Wwwd

test clock-22.1 {parse Wwwd} {
    clock scan {W09 Sun} -format {W%V %a} -locale en_US_roman -gmt 1 -base 259200
} 5097600
test clock-22.2 {parse Wwwd} {
    clock scan {W09 Sunday} -format {W%V %A} -locale en_US_roman -gmt 1 -base 259200
} 5097600
test clock-22.3 {parse Wwwd} {
    clock scan {W09 7} -format {W%V %u} -locale en_US_roman -gmt 1 -base 259200
} 5097600
test clock-22.4 {parse Wwwd} {
    clock scan {W09 0} -format {W%V %w} -locale en_US_roman -gmt 1 -base 259200
} 5097600
test clock-22.5 {parse Wwwd} {
    clock scan {W09 vii} -format {W%V %Ou} -locale en_US_roman -gmt 1 -base 259200
} 5097600
test clock-22.6 {parse Wwwd} {
    clock scan {W09 ?} -format {W%V %Ow} -locale en_US_roman -gmt 1 -base 259200
} 5097600
test clock-22.7 {parse Wwwd} {
    clock scan {W14 Tue} -format {W%V %a} -locale en_US_roman -gmt 1 -base 259200
} 7689600
test clock-22.8 {parse Wwwd} {
    clock scan {W14 Tuesday} -format {W%V %A} -locale en_US_roman -gmt 1 -base 259200
} 7689600
test clock-22.9 {parse Wwwd} {
    clock scan {W14 2} -format {W%V %u} -locale en_US_roman -gmt 1 -base 259200
} 7689600
test clock-22.10 {parse Wwwd} {
    clock scan {W14 2} -format {W%V %w} -locale en_US_roman -gmt 1 -base 259200
} 7689600
test clock-22.11 {parse Wwwd} {
    clock scan {W14 ii} -format {W%V %Ou} -locale en_US_roman -gmt 1 -base 259200
} 7689600
test clock-22.12 {parse Wwwd} {
    clock scan {W14 ii} -format {W%V %Ow} -locale en_US_roman -gmt 1 -base 259200
} 7689600
test clock-22.13 {parse Wwwd} {
    clock scan {W40 Thu} -format {W%V %a} -locale en_US_roman -gmt 1 -base 259200
} 23587200
test clock-22.14 {parse Wwwd} {
    clock scan {W40 Thursday} -format {W%V %A} -locale en_US_roman -gmt 1 -base 259200
} 23587200
test clock-22.15 {parse Wwwd} {
    clock scan {W40 4} -format {W%V %u} -locale en_US_roman -gmt 1 -base 259200
} 23587200
test clock-22.16 {parse Wwwd} {
    clock scan {W40 4} -format {W%V %w} -locale en_US_roman -gmt 1 -base 259200
} 23587200
test clock-22.17 {parse Wwwd} {
    clock scan {W40 iv} -format {W%V %Ou} -locale en_US_roman -gmt 1 -base 259200
} 23587200
test clock-22.18 {parse Wwwd} {
    clock scan {W40 iv} -format {W%V %Ow} -locale en_US_roman -gmt 1 -base 259200
} 23587200
test clock-22.19 {parse Wwwd} {
    clock scan {W44 Sat} -format {W%V %a} -locale en_US_roman -gmt 1 -base 259200
} 26179200
test clock-22.20 {parse Wwwd} {
    clock scan {W44 Saturday} -format {W%V %A} -locale en_US_roman -gmt 1 -base 259200
} 26179200
test clock-22.21 {parse Wwwd} {
    clock scan {W44 6} -format {W%V %u} -locale en_US_roman -gmt 1 -base 259200
} 26179200
test clock-22.22 {parse Wwwd} {
    clock scan {W44 6} -format {W%V %w} -locale en_US_roman -gmt 1 -base 259200
} 26179200
test clock-22.23 {parse Wwwd} {
    clock scan {W44 vi} -format {W%V %Ou} -locale en_US_roman -gmt 1 -base 259200
} 26179200
test clock-22.24 {parse Wwwd} {
    clock scan {W44 vi} -format {W%V %Ow} -locale en_US_roman -gmt 1 -base 259200
} 26179200
test clock-22.25 {parse Wwwd} {
    clock scan {W09 Mon} -format {W%V %a} -locale en_US_roman -gmt 1 -base 31795200
} 36633600
test clock-22.26 {parse Wwwd} {
    clock scan {W09 Monday} -format {W%V %A} -locale en_US_roman -gmt 1 -base 31795200
} 36633600
test clock-22.27 {parse Wwwd} {
    clock scan {W09 1} -format {W%V %u} -locale en_US_roman -gmt 1 -base 31795200
} 36633600
test clock-22.28 {parse Wwwd} {
    clock scan {W09 1} -format {W%V %w} -locale en_US_roman -gmt 1 -base 31795200
} 36633600
test clock-22.29 {parse Wwwd} {
    clock scan {W09 i} -format {W%V %Ou} -locale en_US_roman -gmt 1 -base 31795200
} 36633600
test clock-22.30 {parse Wwwd} {
    clock scan {W09 i} -format {W%V %Ow} -locale en_US_roman -gmt 1 -base 31795200
} 36633600
test clock-22.31 {parse Wwwd} {
    clock scan {W13 Wed} -format {W%V %a} -locale en_US_roman -gmt 1 -base 31795200
} 39225600
test clock-22.32 {parse Wwwd} {
    clock scan {W13 Wednesday} -format {W%V %A} -locale en_US_roman -gmt 1 -base 31795200
} 39225600
test clock-22.33 {parse Wwwd} {
    clock scan {W13 3} -format {W%V %u} -locale en_US_roman -gmt 1 -base 31795200
} 39225600
test clock-22.34 {parse Wwwd} {
    clock scan {W13 3} -format {W%V %w} -locale en_US_roman -gmt 1 -base 31795200
} 39225600
test clock-22.35 {parse Wwwd} {
    clock scan {W13 iii} -format {W%V %Ou} -locale en_US_roman -gmt 1 -base 31795200
} 39225600
test clock-22.36 {parse Wwwd} {
    clock scan {W13 iii} -format {W%V %Ow} -locale en_US_roman -gmt 1 -base 31795200
} 39225600
test clock-22.37 {parse Wwwd} {
    clock scan {W39 Fri} -format {W%V %a} -locale en_US_roman -gmt 1 -base 31795200
} 55123200
test clock-22.38 {parse Wwwd} {
    clock scan {W39 Friday} -format {W%V %A} -locale en_US_roman -gmt 1 -base 31795200
} 55123200
test clock-22.39 {parse Wwwd} {
    clock scan {W39 5} -format {W%V %u} -locale en_US_roman -gmt 1 -base 31795200
} 55123200
test clock-22.40 {parse Wwwd} {
    clock scan {W39 5} -format {W%V %w} -locale en_US_roman -gmt 1 -base 31795200
} 55123200
test clock-22.41 {parse Wwwd} {
    clock scan {W39 v} -format {W%V %Ou} -locale en_US_roman -gmt 1 -base 31795200
} 55123200
test clock-22.42 {parse Wwwd} {
    clock scan {W39 v} -format {W%V %Ow} -locale en_US_roman -gmt 1 -base 31795200
} 55123200
test clock-22.43 {parse Wwwd} {
    clock scan {W43 Sun} -format {W%V %a} -locale en_US_roman -gmt 1 -base 31795200
} 57715200
test clock-22.44 {parse Wwwd} {
    clock scan {W43 Sunday} -format {W%V %A} -locale en_US_roman -gmt 1 -base 31795200
} 57715200
test clock-22.45 {parse Wwwd} {
    clock scan {W43 7} -format {W%V %u} -locale en_US_roman -gmt 1 -base 31795200
} 57715200
test clock-22.46 {parse Wwwd} {
    clock scan {W43 0} -format {W%V %w} -locale en_US_roman -gmt 1 -base 31795200
} 57715200
test clock-22.47 {parse Wwwd} {
    clock scan {W43 vii} -format {W%V %Ou} -locale en_US_roman -gmt 1 -base 31795200
} 57715200
test clock-22.48 {parse Wwwd} {
    clock scan {W43 ?} -format {W%V %Ow} -locale en_US_roman -gmt 1 -base 31795200
} 57715200
test clock-22.49 {parse Wwwd} {
    clock scan {W09 Wed} -format {W%V %a} -locale en_US_roman -gmt 1 -base 946944000
} 951868800
test clock-22.50 {parse Wwwd} {
    clock scan {W09 Wednesday} -format {W%V %A} -locale en_US_roman -gmt 1 -base 946944000
} 951868800
test clock-22.51 {parse Wwwd} {
    clock scan {W09 3} -format {W%V %u} -locale en_US_roman -gmt 1 -base 946944000
} 951868800
test clock-22.52 {parse Wwwd} {
    clock scan {W09 3} -format {W%V %w} -locale en_US_roman -gmt 1 -base 946944000
} 951868800
test clock-22.53 {parse Wwwd} {
    clock scan {W09 iii} -format {W%V %Ou} -locale en_US_roman -gmt 1 -base 946944000
} 951868800
test clock-22.54 {parse Wwwd} {
    clock scan {W09 iii} -format {W%V %Ow} -locale en_US_roman -gmt 1 -base 946944000
} 951868800
test clock-22.55 {parse Wwwd} {
    clock scan {W13 Fri} -format {W%V %a} -locale en_US_roman -gmt 1 -base 946944000
} 954460800
test clock-22.56 {parse Wwwd} {
    clock scan {W13 Friday} -format {W%V %A} -locale en_US_roman -gmt 1 -base 946944000
} 954460800
test clock-22.57 {parse Wwwd} {
    clock scan {W13 5} -format {W%V %u} -locale en_US_roman -gmt 1 -base 946944000
} 954460800
test clock-22.58 {parse Wwwd} {
    clock scan {W13 5} -format {W%V %w} -locale en_US_roman -gmt 1 -base 946944000
} 954460800
test clock-22.59 {parse Wwwd} {
    clock scan {W13 v} -format {W%V %Ou} -locale en_US_roman -gmt 1 -base 946944000
} 954460800
test clock-22.60 {parse Wwwd} {
    clock scan {W13 v} -format {W%V %Ow} -locale en_US_roman -gmt 1 -base 946944000
} 954460800
test clock-22.61 {parse Wwwd} {
    clock scan {W39 Sun} -format {W%V %a} -locale en_US_roman -gmt 1 -base 946944000
} 970358400
test clock-22.62 {parse Wwwd} {
    clock scan {W39 Sunday} -format {W%V %A} -locale en_US_roman -gmt 1 -base 946944000
} 970358400
test clock-22.63 {parse Wwwd} {
    clock scan {W39 7} -format {W%V %u} -locale en_US_roman -gmt 1 -base 946944000
} 970358400
test clock-22.64 {parse Wwwd} {
    clock scan {W39 0} -format {W%V %w} -locale en_US_roman -gmt 1 -base 946944000
} 970358400
test clock-22.65 {parse Wwwd} {
    clock scan {W39 vii} -format {W%V %Ou} -locale en_US_roman -gmt 1 -base 946944000
} 970358400
test clock-22.66 {parse Wwwd} {
    clock scan {W39 ?} -format {W%V %Ow} -locale en_US_roman -gmt 1 -base 946944000
} 970358400
test clock-22.67 {parse Wwwd} {
    clock scan {W44 Tue} -format {W%V %a} -locale en_US_roman -gmt 1 -base 946944000
} 972950400
test clock-22.68 {parse Wwwd} {
    clock scan {W44 Tuesday} -format {W%V %A} -locale en_US_roman -gmt 1 -base 946944000
} 972950400
test clock-22.69 {parse Wwwd} {
    clock scan {W44 2} -format {W%V %u} -locale en_US_roman -gmt 1 -base 946944000
} 972950400
test clock-22.70 {parse Wwwd} {
    clock scan {W44 2} -format {W%V %w} -locale en_US_roman -gmt 1 -base 946944000
} 972950400
test clock-22.71 {parse Wwwd} {
    clock scan {W44 ii} -format {W%V %Ou} -locale en_US_roman -gmt 1 -base 946944000
} 972950400
test clock-22.72 {parse Wwwd} {
    clock scan {W44 ii} -format {W%V %Ow} -locale en_US_roman -gmt 1 -base 946944000
} 972950400
test clock-22.73 {parse Wwwd} {
    clock scan {W09 Thu} -format {W%V %a} -locale en_US_roman -gmt 1 -base 978566400
} 983404800
test clock-22.74 {parse Wwwd} {
    clock scan {W09 Thursday} -format {W%V %A} -locale en_US_roman -gmt 1 -base 978566400
} 983404800
test clock-22.75 {parse Wwwd} {
    clock scan {W09 4} -format {W%V %u} -locale en_US_roman -gmt 1 -base 978566400
} 983404800
test clock-22.76 {parse Wwwd} {
    clock scan {W09 4} -format {W%V %w} -locale en_US_roman -gmt 1 -base 978566400
} 983404800
test clock-22.77 {parse Wwwd} {
    clock scan {W09 iv} -format {W%V %Ou} -locale en_US_roman -gmt 1 -base 978566400
} 983404800
test clock-22.78 {parse Wwwd} {
    clock scan {W09 iv} -format {W%V %Ow} -locale en_US_roman -gmt 1 -base 978566400
} 983404800
test clock-22.79 {parse Wwwd} {
    clock scan {W13 Sat} -format {W%V %a} -locale en_US_roman -gmt 1 -base 978566400
} 985996800
test clock-22.80 {parse Wwwd} {
    clock scan {W13 Saturday} -format {W%V %A} -locale en_US_roman -gmt 1 -base 978566400
} 985996800
test clock-22.81 {parse Wwwd} {
    clock scan {W13 6} -format {W%V %u} -locale en_US_roman -gmt 1 -base 978566400
} 985996800
test clock-22.82 {parse Wwwd} {
    clock scan {W13 6} -format {W%V %w} -locale en_US_roman -gmt 1 -base 978566400
} 985996800
test clock-22.83 {parse Wwwd} {
    clock scan {W13 vi} -format {W%V %Ou} -locale en_US_roman -gmt 1 -base 978566400
} 985996800
test clock-22.84 {parse Wwwd} {
    clock scan {W13 vi} -format {W%V %Ow} -locale en_US_roman -gmt 1 -base 978566400
} 985996800
test clock-22.85 {parse Wwwd} {
    clock scan {W40 Mon} -format {W%V %a} -locale en_US_roman -gmt 1 -base 978566400
} 1001894400
test clock-22.86 {parse Wwwd} {
    clock scan {W40 Monday} -format {W%V %A} -locale en_US_roman -gmt 1 -base 978566400
} 1001894400
test clock-22.87 {parse Wwwd} {
    clock scan {W40 1} -format {W%V %u} -locale en_US_roman -gmt 1 -base 978566400
} 1001894400
test clock-22.88 {parse Wwwd} {
    clock scan {W40 1} -format {W%V %w} -locale en_US_roman -gmt 1 -base 978566400
} 1001894400
test clock-22.89 {parse Wwwd} {
    clock scan {W40 i} -format {W%V %Ou} -locale en_US_roman -gmt 1 -base 978566400
} 1001894400
test clock-22.90 {parse Wwwd} {
    clock scan {W40 i} -format {W%V %Ow} -locale en_US_roman -gmt 1 -base 978566400
} 1001894400
test clock-22.91 {parse Wwwd} {
    clock scan {W44 Wed} -format {W%V %a} -locale en_US_roman -gmt 1 -base 978566400
} 1004486400
test clock-22.92 {parse Wwwd} {
    clock scan {W44 Wednesday} -format {W%V %A} -locale en_US_roman -gmt 1 -base 978566400
} 1004486400
test clock-22.93 {parse Wwwd} {
    clock scan {W44 3} -format {W%V %u} -locale en_US_roman -gmt 1 -base 978566400
} 1004486400
test clock-22.94 {parse Wwwd} {
    clock scan {W44 3} -format {W%V %w} -locale en_US_roman -gmt 1 -base 978566400
} 1004486400
test clock-22.95 {parse Wwwd} {
    clock scan {W44 iii} -format {W%V %Ou} -locale en_US_roman -gmt 1 -base 978566400
} 1004486400
test clock-22.96 {parse Wwwd} {
    clock scan {W44 iii} -format {W%V %Ow} -locale en_US_roman -gmt 1 -base 978566400
} 1004486400
# END testcases22

# Test precedence of Wwwd
test clock-23.1 {seconds take precedence over Wwwd} {
    list [clock scan {0 W024} -format {%s W%V%u} -gmt true -base 0] \
	 [clock scan {W024 0} -format {W%V%u %s} -gmt true -base 0]
} {0 0}
test clock-23.2 {julian day takes precedence over Wwwd} {
    list [clock scan {2440588 W024} -format {%J W%V%u} -gmt true -base 0] \
	 [clock scan {W024 2440588} -format {W%V%u %J} -gmt true -base 0]
} {0 0}
test clock-23.3 {Wwwd precedence below yyyymmdd} {
    list [clock scan {19700101 W014} -format {%Y%m%d W%V%u} -gmt true -base 0] \
	[clock scan {W014 19700101} -format {W%V%u %Y%m%d} -gmt true -base 0]
} {0 0}
test clock-23.4 {Wwwd precedence below yyyyddd} {
    list [clock scan {1970001 W014} -format {%Y%j W%V%u} -gmt true -base 0] \
	[clock scan {W014 1970001} -format {W%V%u %Y%j} -gmt true -base 0]
} {0 0}
test clock-23.5 {Wwwd precedence below yymmdd} {
    list [clock scan {700101 W014} -format {%y%m%d W%V%u} -gmt true -base 0] \
	[clock scan {W014 700101} -format {W%V%u %y%m%d} -gmt true -base 0]
} {0 0}
test clock-23.6 {Wwwd precedence below yyddd} {
    list [clock scan {70001 W014} -format {%y%j W%V%u} -gmt true -base 0] \
	[clock scan {W014 70001} -format {W%V%u %y%j} -gmt true -base 0]
} {0 0}

# BEGIN testcases24

# Test parsing of naked day-of-month

test clock-24.1 {parse naked day of month} {
    clock scan 02 -format %d -locale en_US_roman -base 0 -gmt 1
} 86400
test clock-24.2 {parse naked day of month} {
    clock scan ii -format %Od -locale en_US_roman -base 0 -gmt 1
} 86400
test clock-24.3 {parse naked day of month} {
    clock scan { 2} -format %e -locale en_US_roman -base 0 -gmt 1
} 86400
test clock-24.4 {parse naked day of month} {
    clock scan ii -format %Oe -locale en_US_roman -base 0 -gmt 1
} 86400
test clock-24.5 {parse naked day of month} {
    clock scan 28 -format %d -locale en_US_roman -base 0 -gmt 1
} 2332800
test clock-24.6 {parse naked day of month} {
    clock scan xxviii -format %Od -locale en_US_roman -base 0 -gmt 1
} 2332800
test clock-24.7 {parse naked day of month} {
    clock scan 28 -format %e -locale en_US_roman -base 0 -gmt 1
} 2332800
test clock-24.8 {parse naked day of month} {
    clock scan xxviii -format %Oe -locale en_US_roman -base 0 -gmt 1
} 2332800
test clock-24.9 {parse naked day of month} {
    clock scan 02 -format %d -locale en_US_roman -base 28857600 -gmt 1
} 28944000
test clock-24.10 {parse naked day of month} {
    clock scan ii -format %Od -locale en_US_roman -base 28857600 -gmt 1
} 28944000
test clock-24.11 {parse naked day of month} {
    clock scan { 2} -format %e -locale en_US_roman -base 28857600 -gmt 1
} 28944000
test clock-24.12 {parse naked day of month} {
    clock scan ii -format %Oe -locale en_US_roman -base 28857600 -gmt 1
} 28944000
test clock-24.13 {parse naked day of month} {
    clock scan 28 -format %d -locale en_US_roman -base 28857600 -gmt 1
} 31190400
test clock-24.14 {parse naked day of month} {
    clock scan xxviii -format %Od -locale en_US_roman -base 28857600 -gmt 1
} 31190400
test clock-24.15 {parse naked day of month} {
    clock scan 28 -format %e -locale en_US_roman -base 28857600 -gmt 1
} 31190400
test clock-24.16 {parse naked day of month} {
    clock scan xxviii -format %Oe -locale en_US_roman -base 28857600 -gmt 1
} 31190400
test clock-24.17 {parse naked day of month} {
    clock scan 02 -format %d -locale en_US_roman -base 946684800 -gmt 1
} 946771200
test clock-24.18 {parse naked day of month} {
    clock scan ii -format %Od -locale en_US_roman -base 946684800 -gmt 1
} 946771200
test clock-24.19 {parse naked day of month} {
    clock scan { 2} -format %e -locale en_US_roman -base 946684800 -gmt 1
} 946771200
test clock-24.20 {parse naked day of month} {
    clock scan ii -format %Oe -locale en_US_roman -base 946684800 -gmt 1
} 946771200
test clock-24.21 {parse naked day of month} {
    clock scan 28 -format %d -locale en_US_roman -base 946684800 -gmt 1
} 949017600
test clock-24.22 {parse naked day of month} {
    clock scan xxviii -format %Od -locale en_US_roman -base 946684800 -gmt 1
} 949017600
test clock-24.23 {parse naked day of month} {
    clock scan 28 -format %e -locale en_US_roman -base 946684800 -gmt 1
} 949017600
test clock-24.24 {parse naked day of month} {
    clock scan xxviii -format %Oe -locale en_US_roman -base 946684800 -gmt 1
} 949017600
test clock-24.25 {parse naked day of month} {
    clock scan 02 -format %d -locale en_US_roman -base 975628800 -gmt 1
} 975715200
test clock-24.26 {parse naked day of month} {
    clock scan ii -format %Od -locale en_US_roman -base 975628800 -gmt 1
} 975715200
test clock-24.27 {parse naked day of month} {
    clock scan { 2} -format %e -locale en_US_roman -base 975628800 -gmt 1
} 975715200
test clock-24.28 {parse naked day of month} {
    clock scan ii -format %Oe -locale en_US_roman -base 975628800 -gmt 1
} 975715200
test clock-24.29 {parse naked day of month} {
    clock scan 28 -format %d -locale en_US_roman -base 975628800 -gmt 1
} 977961600
test clock-24.30 {parse naked day of month} {
    clock scan xxviii -format %Od -locale en_US_roman -base 975628800 -gmt 1
} 977961600
test clock-24.31 {parse naked day of month} {
    clock scan 28 -format %e -locale en_US_roman -base 975628800 -gmt 1
} 977961600
test clock-24.32 {parse naked day of month} {
    clock scan xxviii -format %Oe -locale en_US_roman -base 975628800 -gmt 1
} 977961600
# END testcases24

test clock-25.1 {seconds take precedence over dd} {
    list [clock scan {0 02} -format {%s %d} -gmt true -base 0] \
	 [clock scan {02 0} -format {%d %s} -gmt true -base 0]
} {0 0}
test clock-25.2 {julian day takes precedence over dd} {
    list [clock scan {2440588 02} -format {%J %d} -gmt true -base 0] \
	 [clock scan {02 2440588} -format {%d %J} -gmt true -base 0]
} {0 0}
test clock-25.3 {yyyyddd over dd} {
    list [clock scan {1970001 02} -format {%Y%j %d} -gmt true -base 0] \
	[clock scan {02 1970001} -format {%d %Y%j} -gmt true -base 0]
} {0 0}
test clock-25.4 {yyyyWwwd over dd} {
    list [clock scan {1970W014 02} -format {%GW%V%u %d} -gmt true -base 0] \
	[clock scan {02 1970W014} -format {%d %GW%V%u} -gmt true -base 0]
} {0 0}
test clock-25.5 {yyWwwd over dd} {
    list [clock scan {70W014 02} -format {%gW%V%u %d} -gmt true -base 0] \
	[clock scan {02 70W014} -format {%d %gW%V%u} -gmt true -base 0]
} {0 0}
test clock-25.6 {yyddd over dd} {
    list [clock scan {70001 02} -format {%y%j %d} -gmt true -base 0] \
	[clock scan {02 70001} -format {%d %y%j} -gmt true -base 0]
} {0 0}
test clock-25.7 {ddd over dd} {
    list [clock scan {001 02} -format {%j %d} -gmt true -base 0] \
	[clock scan {02 001} -format {%d %j} -gmt true -base 0]
} {0 0}

# BEGIN testcases26

# Test parsing of naked day of week

test clock-26.1 {parse naked day of week} {
    clock scan Mon -format %a -locale en_US_roman -gmt 1 -base 0
} -259200
test clock-26.2 {parse naked day of week} {
    clock scan Monday -format %A -locale en_US_roman -gmt 1 -base 0
} -259200
test clock-26.3 {parse naked day of week} {
    clock scan 1 -format %u -locale en_US_roman -gmt 1 -base 0
} -259200
test clock-26.4 {parse naked day of week} {
    clock scan 1 -format %w -locale en_US_roman -gmt 1 -base 0
} -259200
test clock-26.5 {parse naked day of week} {
    clock scan i -format %Ou -locale en_US_roman -gmt 1 -base 0
} -259200
test clock-26.6 {parse naked day of week} {
    clock scan i -format %Ow -locale en_US_roman -gmt 1 -base 0
} -259200
test clock-26.7 {parse naked day of week} {
    clock scan Sun -format %a -locale en_US_roman -gmt 1 -base 0
} 259200
test clock-26.8 {parse naked day of week} {
    clock scan Sunday -format %A -locale en_US_roman -gmt 1 -base 0
} 259200
test clock-26.9 {parse naked day of week} {
    clock scan 7 -format %u -locale en_US_roman -gmt 1 -base 0
} 259200
test clock-26.10 {parse naked day of week} {
    clock scan 0 -format %w -locale en_US_roman -gmt 1 -base 0
} 259200
test clock-26.11 {parse naked day of week} {
    clock scan vii -format %Ou -locale en_US_roman -gmt 1 -base 0
} 259200
test clock-26.12 {parse naked day of week} {
    clock scan ? -format %Ow -locale en_US_roman -gmt 1 -base 0
} 259200
test clock-26.13 {parse naked day of week} {
    clock scan Mon -format %a -locale en_US_roman -gmt 1 -base 30844800
} 30585600
test clock-26.14 {parse naked day of week} {
    clock scan Monday -format %A -locale en_US_roman -gmt 1 -base 30844800
} 30585600
test clock-26.15 {parse naked day of week} {
    clock scan 1 -format %u -locale en_US_roman -gmt 1 -base 30844800
} 30585600
test clock-26.16 {parse naked day of week} {
    clock scan 1 -format %w -locale en_US_roman -gmt 1 -base 30844800
} 30585600
test clock-26.17 {parse naked day of week} {
    clock scan i -format %Ou -locale en_US_roman -gmt 1 -base 30844800
} 30585600
test clock-26.18 {parse naked day of week} {
    clock scan i -format %Ow -locale en_US_roman -gmt 1 -base 30844800
} 30585600
test clock-26.19 {parse naked day of week} {
    clock scan Sun -format %a -locale en_US_roman -gmt 1 -base 30844800
} 31104000
test clock-26.20 {parse naked day of week} {
    clock scan Sunday -format %A -locale en_US_roman -gmt 1 -base 30844800
} 31104000
test clock-26.21 {parse naked day of week} {
    clock scan 7 -format %u -locale en_US_roman -gmt 1 -base 30844800
} 31104000
test clock-26.22 {parse naked day of week} {
    clock scan 0 -format %w -locale en_US_roman -gmt 1 -base 30844800
} 31104000
test clock-26.23 {parse naked day of week} {
    clock scan vii -format %Ou -locale en_US_roman -gmt 1 -base 30844800
} 31104000
test clock-26.24 {parse naked day of week} {
    clock scan ? -format %Ow -locale en_US_roman -gmt 1 -base 30844800
} 31104000
test clock-26.25 {parse naked day of week} {
    clock scan Mon -format %a -locale en_US_roman -gmt 1 -base 978566400
} 978307200
test clock-26.26 {parse naked day of week} {
    clock scan Monday -format %A -locale en_US_roman -gmt 1 -base 978566400
} 978307200
test clock-26.27 {parse naked day of week} {
    clock scan 1 -format %u -locale en_US_roman -gmt 1 -base 978566400
} 978307200
test clock-26.28 {parse naked day of week} {
    clock scan 1 -format %w -locale en_US_roman -gmt 1 -base 978566400
} 978307200
test clock-26.29 {parse naked day of week} {
    clock scan i -format %Ou -locale en_US_roman -gmt 1 -base 978566400
} 978307200
test clock-26.30 {parse naked day of week} {
    clock scan i -format %Ow -locale en_US_roman -gmt 1 -base 978566400
} 978307200
test clock-26.31 {parse naked day of week} {
    clock scan Sun -format %a -locale en_US_roman -gmt 1 -base 978566400
} 978825600
test clock-26.32 {parse naked day of week} {
    clock scan Sunday -format %A -locale en_US_roman -gmt 1 -base 978566400
} 978825600
test clock-26.33 {parse naked day of week} {
    clock scan 7 -format %u -locale en_US_roman -gmt 1 -base 978566400
} 978825600
test clock-26.34 {parse naked day of week} {
    clock scan 0 -format %w -locale en_US_roman -gmt 1 -base 978566400
} 978825600
test clock-26.35 {parse naked day of week} {
    clock scan vii -format %Ou -locale en_US_roman -gmt 1 -base 978566400
} 978825600
test clock-26.36 {parse naked day of week} {
    clock scan ? -format %Ow -locale en_US_roman -gmt 1 -base 978566400
} 978825600
test clock-26.37 {parse naked day of week} {
    clock scan Mon -format %a -locale en_US_roman -gmt 1 -base 1009411200
} 1009152000
test clock-26.38 {parse naked day of week} {
    clock scan Monday -format %A -locale en_US_roman -gmt 1 -base 1009411200
} 1009152000
test clock-26.39 {parse naked day of week} {
    clock scan 1 -format %u -locale en_US_roman -gmt 1 -base 1009411200
} 1009152000
test clock-26.40 {parse naked day of week} {
    clock scan 1 -format %w -locale en_US_roman -gmt 1 -base 1009411200
} 1009152000
test clock-26.41 {parse naked day of week} {
    clock scan i -format %Ou -locale en_US_roman -gmt 1 -base 1009411200
} 1009152000
test clock-26.42 {parse naked day of week} {
    clock scan i -format %Ow -locale en_US_roman -gmt 1 -base 1009411200
} 1009152000
test clock-26.43 {parse naked day of week} {
    clock scan Sun -format %a -locale en_US_roman -gmt 1 -base 1009411200
} 1009670400
test clock-26.44 {parse naked day of week} {
    clock scan Sunday -format %A -locale en_US_roman -gmt 1 -base 1009411200
} 1009670400
test clock-26.45 {parse naked day of week} {
    clock scan 7 -format %u -locale en_US_roman -gmt 1 -base 1009411200
} 1009670400
test clock-26.46 {parse naked day of week} {
    clock scan 0 -format %w -locale en_US_roman -gmt 1 -base 1009411200
} 1009670400
test clock-26.47 {parse naked day of week} {
    clock scan vii -format %Ou -locale en_US_roman -gmt 1 -base 1009411200
} 1009670400
test clock-26.48 {parse naked day of week} {
    clock scan ? -format %Ow -locale en_US_roman -gmt 1 -base 1009411200
} 1009670400
# END testcases26

test clock-27.1 {seconds take precedence over naked weekday} {
    list [clock scan {0 1} -format {%s %u} -gmt true -base 0] \
	 [clock scan {1 0} -format {%u %s} -gmt true -base 0]
} {0 0}
test clock-27.2 {julian day takes precedence over naked weekday} {
    list [clock scan {2440588 1} -format {%J %u} -gmt true -base 0] \
	 [clock scan {1 2440588} -format {%u %J} -gmt true -base 0]
} {0 0}
test clock-27.3 {yyyymmdd over naked weekday} {
    list [clock scan {19700101 1} -format {%Y%m%d %u} -gmt true -base 0] \
	[clock scan {1 19700101} -format {%u %Y%m%d} -gmt true -base 0]
} {0 0}
test clock-27.4 {yyyyddd over naked weekday} {
    list [clock scan {1970001 1} -format {%Y%j %u} -gmt true -base 0] \
	[clock scan {1 1970001} -format {%u %Y%j} -gmt true -base 0]
} {0 0}
test clock-27.5 {yymmdd over naked weekday} {
    list [clock scan {700101 1} -format {%y%m%d %u} -gmt true -base 0] \
	[clock scan {1 700101} -format {%u %y%m%d} -gmt true -base 0]
} {0 0}
test clock-27.6 {yyddd over naked weekday} {
    list [clock scan {70001 1} -format {%y%j %u} -gmt true -base 0] \
	[clock scan {1 70001} -format {%u %y%j} -gmt true -base 0]
} {0 0}
test clock-27.7 {mmdd over naked weekday} {
    list [clock scan {0101 1} -format {%m%d %u} -gmt true -base 0] \
	[clock scan {1 0101} -format {%u %m%d} -gmt true -base 0]
} {0 0}
test clock-27.8 {ddd over naked weekday} {
    list [clock scan {001 1} -format {%j %u} -gmt true -base 0] \
	[clock scan {1 001} -format {%u %j} -gmt true -base 0]
} {0 0}
test clock-27.9 {naked day of month over naked weekday} {
    list [clock scan {01 1} -format {%d %u} -gmt true -base 0] \
	[clock scan {1 01} -format {%u %d} -gmt true -base 0]
} {0 0}

test clock-28.1 {base date} {
    clock scan {} -format {} -gmt true -base 1234567890
} 1234483200

# BEGIN testcases29

# Test parsing of time of day

test clock-29.1 {time parsing} {
    clock scan {2440588 00 } \
        -gmt true -locale en_US_roman \
        -format {%J %H }
} 0
test clock-29.2 {time parsing} {
    clock scan {2440588 00:00 } \
        -gmt true -locale en_US_roman \
        -format {%J %H:%M }
} 0
test clock-29.3 {time parsing} {
    clock scan {2440588 00:? } \
        -gmt true -locale en_US_roman \
        -format {%J %H:%OM }
} 0
test clock-29.4 {time parsing} {
    clock scan {2440588 00:00:00 } \
        -gmt true -locale en_US_roman \
        -format {%J %H:%M:%S }
} 0
test clock-29.5 {time parsing} {
    clock scan {2440588 00:?:? } \
        -gmt true -locale en_US_roman \
        -format {%J %H:%OM:%OS }
} 0
test clock-29.6 {time parsing} {
    clock scan {2440588  0 } \
        -gmt true -locale en_US_roman \
        -format {%J %k }
} 0
test clock-29.7 {time parsing} {
    clock scan {2440588  0:00 } \
        -gmt true -locale en_US_roman \
        -format {%J %k:%M }
} 0
test clock-29.8 {time parsing} {
    clock scan {2440588  0:? } \
        -gmt true -locale en_US_roman \
        -format {%J %k:%OM }
} 0
test clock-29.9 {time parsing} {
    clock scan {2440588  0:00:00 } \
        -gmt true -locale en_US_roman \
        -format {%J %k:%M:%S }
} 0
test clock-29.10 {time parsing} {
    clock scan {2440588  0:?:? } \
        -gmt true -locale en_US_roman \
        -format {%J %k:%OM:%OS }
} 0
test clock-29.11 {time parsing} {
    clock scan {2440588 ? } \
        -gmt true -locale en_US_roman \
        -format {%J %OH }
} 0
test clock-29.12 {time parsing} {
    clock scan {2440588 ?:00 } \
        -gmt true -locale en_US_roman \
        -format {%J %OH:%M }
} 0
test clock-29.13 {time parsing} {
    clock scan {2440588 ?:? } \
        -gmt true -locale en_US_roman \
        -format {%J %OH:%OM }
} 0
test clock-29.14 {time parsing} {
    clock scan {2440588 ?:00:00 } \
        -gmt true -locale en_US_roman \
        -format {%J %OH:%M:%S }
} 0
test clock-29.15 {time parsing} {
    clock scan {2440588 ?:?:? } \
        -gmt true -locale en_US_roman \
        -format {%J %OH:%OM:%OS }
} 0
test clock-29.16 {time parsing} {
    clock scan {2440588 ? } \
        -gmt true -locale en_US_roman \
        -format {%J %Ok }
} 0
test clock-29.17 {time parsing} {
    clock scan {2440588 ?:00 } \
        -gmt true -locale en_US_roman \
        -format {%J %Ok:%M }
} 0
test clock-29.18 {time parsing} {
    clock scan {2440588 ?:? } \
        -gmt true -locale en_US_roman \
        -format {%J %Ok:%OM }
} 0
test clock-29.19 {time parsing} {
    clock scan {2440588 ?:00:00 } \
        -gmt true -locale en_US_roman \
        -format {%J %Ok:%M:%S }
} 0
test clock-29.20 {time parsing} {
    clock scan {2440588 ?:?:? } \
        -gmt true -locale en_US_roman \
        -format {%J %Ok:%OM:%OS }
} 0
test clock-29.21 {time parsing} {
    clock scan {2440588 12 AM} \
        -gmt true -locale en_US_roman \
        -format {%J %I %p}
} 0
test clock-29.22 {time parsing} {
    clock scan {2440588 12:00 AM} \
        -gmt true -locale en_US_roman \
        -format {%J %I:%M %p}
} 0
test clock-29.23 {time parsing} {
    clock scan {2440588 12:? AM} \
        -gmt true -locale en_US_roman \
        -format {%J %I:%OM %p}
} 0
test clock-29.24 {time parsing} {
    clock scan {2440588 12:00:00 AM} \
        -gmt true -locale en_US_roman \
        -format {%J %I:%M:%S %p}
} 0
test clock-29.25 {time parsing} {
    clock scan {2440588 12:?:? AM} \
        -gmt true -locale en_US_roman \
        -format {%J %I:%OM:%OS %p}
} 0
test clock-29.26 {time parsing} {
    clock scan {2440588 12 AM} \
        -gmt true -locale en_US_roman \
        -format {%J %l %p}
} 0
test clock-29.27 {time parsing} {
    clock scan {2440588 12:00 AM} \
        -gmt true -locale en_US_roman \
        -format {%J %l:%M %p}
} 0
test clock-29.28 {time parsing} {
    clock scan {2440588 12:? AM} \
        -gmt true -locale en_US_roman \
        -format {%J %l:%OM %p}
} 0
test clock-29.29 {time parsing} {
    clock scan {2440588 12:00:00 AM} \
        -gmt true -locale en_US_roman \
        -format {%J %l:%M:%S %p}
} 0
test clock-29.30 {time parsing} {
    clock scan {2440588 12:?:? AM} \
        -gmt true -locale en_US_roman \
        -format {%J %l:%OM:%OS %p}
} 0
test clock-29.31 {time parsing} {
    clock scan {2440588 xii AM} \
        -gmt true -locale en_US_roman \
        -format {%J %OI %p}
} 0
test clock-29.32 {time parsing} {
    clock scan {2440588 xii:00 AM} \
        -gmt true -locale en_US_roman \
        -format {%J %OI:%M %p}
} 0
test clock-29.33 {time parsing} {
    clock scan {2440588 xii:? AM} \
        -gmt true -locale en_US_roman \
        -format {%J %OI:%OM %p}
} 0
test clock-29.34 {time parsing} {
    clock scan {2440588 xii:00:00 AM} \
        -gmt true -locale en_US_roman \
        -format {%J %OI:%M:%S %p}
} 0
test clock-29.35 {time parsing} {
    clock scan {2440588 xii:?:? AM} \
        -gmt true -locale en_US_roman \
        -format {%J %OI:%OM:%OS %p}
} 0
test clock-29.36 {time parsing} {
    clock scan {2440588 xii AM} \
        -gmt true -locale en_US_roman \
        -format {%J %Ol %p}
} 0
test clock-29.37 {time parsing} {
    clock scan {2440588 xii:00 AM} \
        -gmt true -locale en_US_roman \
        -format {%J %Ol:%M %p}
} 0
test clock-29.38 {time parsing} {
    clock scan {2440588 xii:? AM} \
        -gmt true -locale en_US_roman \
        -format {%J %Ol:%OM %p}
} 0
test clock-29.39 {time parsing} {
    clock scan {2440588 xii:00:00 AM} \
        -gmt true -locale en_US_roman \
        -format {%J %Ol:%M:%S %p}
} 0
test clock-29.40 {time parsing} {
    clock scan {2440588 xii:?:? AM} \
        -gmt true -locale en_US_roman \
        -format {%J %Ol:%OM:%OS %p}
} 0
test clock-29.41 {time parsing} {
    clock scan {2440588 12 am} \
        -gmt true -locale en_US_roman \
        -format {%J %I %P}
} 0
test clock-29.42 {time parsing} {
    clock scan {2440588 12:00 am} \
        -gmt true -locale en_US_roman \
        -format {%J %I:%M %P}
} 0
test clock-29.43 {time parsing} {
    clock scan {2440588 12:? am} \
        -gmt true -locale en_US_roman \
        -format {%J %I:%OM %P}
} 0
test clock-29.44 {time parsing} {
    clock scan {2440588 12:00:00 am} \
        -gmt true -locale en_US_roman \
        -format {%J %I:%M:%S %P}
} 0
test clock-29.45 {time parsing} {
    clock scan {2440588 12:?:? am} \
        -gmt true -locale en_US_roman \
        -format {%J %I:%OM:%OS %P}
} 0
test clock-29.46 {time parsing} {
    clock scan {2440588 12 am} \
        -gmt true -locale en_US_roman \
        -format {%J %l %P}
} 0
test clock-29.47 {time parsing} {
    clock scan {2440588 12:00 am} \
        -gmt true -locale en_US_roman \
        -format {%J %l:%M %P}
} 0
test clock-29.48 {time parsing} {
    clock scan {2440588 12:? am} \
        -gmt true -locale en_US_roman \
        -format {%J %l:%OM %P}
} 0
test clock-29.49 {time parsing} {
    clock scan {2440588 12:00:00 am} \
        -gmt true -locale en_US_roman \
        -format {%J %l:%M:%S %P}
} 0
test clock-29.50 {time parsing} {
    clock scan {2440588 12:?:? am} \
        -gmt true -locale en_US_roman \
        -format {%J %l:%OM:%OS %P}
} 0
test clock-29.51 {time parsing} {
    clock scan {2440588 xii am} \
        -gmt true -locale en_US_roman \
        -format {%J %OI %P}
} 0
test clock-29.52 {time parsing} {
    clock scan {2440588 xii:00 am} \
        -gmt true -locale en_US_roman \
        -format {%J %OI:%M %P}
} 0
test clock-29.53 {time parsing} {
    clock scan {2440588 xii:? am} \
        -gmt true -locale en_US_roman \
        -format {%J %OI:%OM %P}
} 0
test clock-29.54 {time parsing} {
    clock scan {2440588 xii:00:00 am} \
        -gmt true -locale en_US_roman \
        -format {%J %OI:%M:%S %P}
} 0
test clock-29.55 {time parsing} {
    clock scan {2440588 xii:?:? am} \
        -gmt true -locale en_US_roman \
        -format {%J %OI:%OM:%OS %P}
} 0
test clock-29.56 {time parsing} {
    clock scan {2440588 xii am} \
        -gmt true -locale en_US_roman \
        -format {%J %Ol %P}
} 0
test clock-29.57 {time parsing} {
    clock scan {2440588 xii:00 am} \
        -gmt true -locale en_US_roman \
        -format {%J %Ol:%M %P}
} 0
test clock-29.58 {time parsing} {
    clock scan {2440588 xii:? am} \
        -gmt true -locale en_US_roman \
        -format {%J %Ol:%OM %P}
} 0
test clock-29.59 {time parsing} {
    clock scan {2440588 xii:00:00 am} \
        -gmt true -locale en_US_roman \
        -format {%J %Ol:%M:%S %P}
} 0
test clock-29.60 {time parsing} {
    clock scan {2440588 xii:?:? am} \
        -gmt true -locale en_US_roman \
        -format {%J %Ol:%OM:%OS %P}
} 0
test clock-29.61 {time parsing} {
    clock scan {2440588 00:00:01 } \
        -gmt true -locale en_US_roman \
        -format {%J %H:%M:%S }
} 1
test clock-29.62 {time parsing} {
    clock scan {2440588 00:?:i } \
        -gmt true -locale en_US_roman \
        -format {%J %H:%OM:%OS }
} 1
test clock-29.63 {time parsing} {
    clock scan {2440588  0:00:01 } \
        -gmt true -locale en_US_roman \
        -format {%J %k:%M:%S }
} 1
test clock-29.64 {time parsing} {
    clock scan {2440588  0:?:i } \
        -gmt true -locale en_US_roman \
        -format {%J %k:%OM:%OS }
} 1
test clock-29.65 {time parsing} {
    clock scan {2440588 ?:00:01 } \
        -gmt true -locale en_US_roman \
        -format {%J %OH:%M:%S }
} 1
test clock-29.66 {time parsing} {
    clock scan {2440588 ?:?:i } \
        -gmt true -locale en_US_roman \
        -format {%J %OH:%OM:%OS }
} 1
test clock-29.67 {time parsing} {
    clock scan {2440588 ?:00:01 } \
        -gmt true -locale en_US_roman \
        -format {%J %Ok:%M:%S }
} 1
test clock-29.68 {time parsing} {
    clock scan {2440588 ?:?:i } \
        -gmt true -locale en_US_roman \
        -format {%J %Ok:%OM:%OS }
} 1
test clock-29.69 {time parsing} {
    clock scan {2440588 12:00:01 AM} \
        -gmt true -locale en_US_roman \
        -format {%J %I:%M:%S %p}
} 1
test clock-29.70 {time parsing} {
    clock scan {2440588 12:?:i AM} \
        -gmt true -locale en_US_roman \
        -format {%J %I:%OM:%OS %p}
} 1
test clock-29.71 {time parsing} {
    clock scan {2440588 12:00:01 AM} \
        -gmt true -locale en_US_roman \
        -format {%J %l:%M:%S %p}
} 1
test clock-29.72 {time parsing} {
    clock scan {2440588 12:?:i AM} \
        -gmt true -locale en_US_roman \
        -format {%J %l:%OM:%OS %p}
} 1
test clock-29.73 {time parsing} {
    clock scan {2440588 xii:00:01 AM} \
        -gmt true -locale en_US_roman \
        -format {%J %OI:%M:%S %p}
} 1
test clock-29.74 {time parsing} {
    clock scan {2440588 xii:?:i AM} \
        -gmt true -locale en_US_roman \
        -format {%J %OI:%OM:%OS %p}
} 1
test clock-29.75 {time parsing} {
    clock scan {2440588 xii:00:01 AM} \
        -gmt true -locale en_US_roman \
        -format {%J %Ol:%M:%S %p}
} 1
test clock-29.76 {time parsing} {
    clock scan {2440588 xii:?:i AM} \
        -gmt true -locale en_US_roman \
        -format {%J %Ol:%OM:%OS %p}
} 1
test clock-29.77 {time parsing} {
    clock scan {2440588 12:00:01 am} \
        -gmt true -locale en_US_roman \
        -format {%J %I:%M:%S %P}
} 1
test clock-29.78 {time parsing} {
    clock scan {2440588 12:?:i am} \
        -gmt true -locale en_US_roman \
        -format {%J %I:%OM:%OS %P}
} 1
test clock-29.79 {time parsing} {
    clock scan {2440588 12:00:01 am} \
        -gmt true -locale en_US_roman \
        -format {%J %l:%M:%S %P}
} 1
test clock-29.80 {time parsing} {
    clock scan {2440588 12:?:i am} \
        -gmt true -locale en_US_roman \
        -format {%J %l:%OM:%OS %P}
} 1
test clock-29.81 {time parsing} {
    clock scan {2440588 xii:00:01 am} \
        -gmt true -locale en_US_roman \
        -format {%J %OI:%M:%S %P}
} 1
test clock-29.82 {time parsing} {
    clock scan {2440588 xii:?:i am} \
        -gmt true -locale en_US_roman \
        -format {%J %OI:%OM:%OS %P}
} 1
test clock-29.83 {time parsing} {
    clock scan {2440588 xii:00:01 am} \
        -gmt true -locale en_US_roman \
        -format {%J %Ol:%M:%S %P}
} 1
test clock-29.84 {time parsing} {
    clock scan {2440588 xii:?:i am} \
        -gmt true -locale en_US_roman \
        -format {%J %Ol:%OM:%OS %P}
} 1
test clock-29.85 {time parsing} {
    clock scan {2440588 00:00:59 } \
        -gmt true -locale en_US_roman \
        -format {%J %H:%M:%S }
} 59
test clock-29.86 {time parsing} {
    clock scan {2440588 00:?:lix } \
        -gmt true -locale en_US_roman \
        -format {%J %H:%OM:%OS }
} 59
test clock-29.87 {time parsing} {
    clock scan {2440588  0:00:59 } \
        -gmt true -locale en_US_roman \
        -format {%J %k:%M:%S }
} 59
test clock-29.88 {time parsing} {
    clock scan {2440588  0:?:lix } \
        -gmt true -locale en_US_roman \
        -format {%J %k:%OM:%OS }
} 59
test clock-29.89 {time parsing} {
    clock scan {2440588 ?:00:59 } \
        -gmt true -locale en_US_roman \
        -format {%J %OH:%M:%S }
} 59
test clock-29.90 {time parsing} {
    clock scan {2440588 ?:?:lix } \
        -gmt true -locale en_US_roman \
        -format {%J %OH:%OM:%OS }
} 59
test clock-29.91 {time parsing} {
    clock scan {2440588 ?:00:59 } \
        -gmt true -locale en_US_roman \
        -format {%J %Ok:%M:%S }
} 59
test clock-29.92 {time parsing} {
    clock scan {2440588 ?:?:lix } \
        -gmt true -locale en_US_roman \
        -format {%J %Ok:%OM:%OS }
} 59
test clock-29.93 {time parsing} {
    clock scan {2440588 12:00:59 AM} \
        -gmt true -locale en_US_roman \
        -format {%J %I:%M:%S %p}
} 59
test clock-29.94 {time parsing} {
    clock scan {2440588 12:?:lix AM} \
        -gmt true -locale en_US_roman \
        -format {%J %I:%OM:%OS %p}
} 59
test clock-29.95 {time parsing} {
    clock scan {2440588 12:00:59 AM} \
        -gmt true -locale en_US_roman \
        -format {%J %l:%M:%S %p}
} 59
test clock-29.96 {time parsing} {
    clock scan {2440588 12:?:lix AM} \
        -gmt true -locale en_US_roman \
        -format {%J %l:%OM:%OS %p}
} 59
test clock-29.97 {time parsing} {
    clock scan {2440588 xii:00:59 AM} \
        -gmt true -locale en_US_roman \
        -format {%J %OI:%M:%S %p}
} 59
test clock-29.98 {time parsing} {
    clock scan {2440588 xii:?:lix AM} \
        -gmt true -locale en_US_roman \
        -format {%J %OI:%OM:%OS %p}
} 59
test clock-29.99 {time parsing} {
    clock scan {2440588 xii:00:59 AM} \
        -gmt true -locale en_US_roman \
        -format {%J %Ol:%M:%S %p}
} 59
test clock-29.100 {time parsing} {
    clock scan {2440588 xii:?:lix AM} \
        -gmt true -locale en_US_roman \
        -format {%J %Ol:%OM:%OS %p}
} 59
test clock-29.101 {time parsing} {
    clock scan {2440588 12:00:59 am} \
        -gmt true -locale en_US_roman \
        -format {%J %I:%M:%S %P}
} 59
test clock-29.102 {time parsing} {
    clock scan {2440588 12:?:lix am} \
        -gmt true -locale en_US_roman \
        -format {%J %I:%OM:%OS %P}
} 59
test clock-29.103 {time parsing} {
    clock scan {2440588 12:00:59 am} \
        -gmt true -locale en_US_roman \
        -format {%J %l:%M:%S %P}
} 59
test clock-29.104 {time parsing} {
    clock scan {2440588 12:?:lix am} \
        -gmt true -locale en_US_roman \
        -format {%J %l:%OM:%OS %P}
} 59
test clock-29.105 {time parsing} {
    clock scan {2440588 xii:00:59 am} \
        -gmt true -locale en_US_roman \
        -format {%J %OI:%M:%S %P}
} 59
test clock-29.106 {time parsing} {
    clock scan {2440588 xii:?:lix am} \
        -gmt true -locale en_US_roman \
        -format {%J %OI:%OM:%OS %P}
} 59
test clock-29.107 {time parsing} {
    clock scan {2440588 xii:00:59 am} \
        -gmt true -locale en_US_roman \
        -format {%J %Ol:%M:%S %P}
} 59
test clock-29.108 {time parsing} {
    clock scan {2440588 xii:?:lix am} \
        -gmt true -locale en_US_roman \
        -format {%J %Ol:%OM:%OS %P}
} 59
test clock-29.109 {time parsing} {
    clock scan {2440588 00:01 } \
        -gmt true -locale en_US_roman \
        -format {%J %H:%M }
} 60
test clock-29.110 {time parsing} {
    clock scan {2440588 00:i } \
        -gmt true -locale en_US_roman \
        -format {%J %H:%OM }
} 60
test clock-29.111 {time parsing} {
    clock scan {2440588 00:01:00 } \
        -gmt true -locale en_US_roman \
        -format {%J %H:%M:%S }
} 60
test clock-29.112 {time parsing} {
    clock scan {2440588 00:i:? } \
        -gmt true -locale en_US_roman \
        -format {%J %H:%OM:%OS }
} 60
test clock-29.113 {time parsing} {
    clock scan {2440588  0:01 } \
        -gmt true -locale en_US_roman \
        -format {%J %k:%M }
} 60
test clock-29.114 {time parsing} {
    clock scan {2440588  0:i } \
        -gmt true -locale en_US_roman \
        -format {%J %k:%OM }
} 60
test clock-29.115 {time parsing} {
    clock scan {2440588  0:01:00 } \
        -gmt true -locale en_US_roman \
        -format {%J %k:%M:%S }
} 60
test clock-29.116 {time parsing} {
    clock scan {2440588  0:i:? } \
        -gmt true -locale en_US_roman \
        -format {%J %k:%OM:%OS }
} 60
test clock-29.117 {time parsing} {
    clock scan {2440588 ?:01 } \
        -gmt true -locale en_US_roman \
        -format {%J %OH:%M }
} 60
test clock-29.118 {time parsing} {
    clock scan {2440588 ?:i } \
        -gmt true -locale en_US_roman \
        -format {%J %OH:%OM }
} 60
test clock-29.119 {time parsing} {
    clock scan {2440588 ?:01:00 } \
        -gmt true -locale en_US_roman \
        -format {%J %OH:%M:%S }
} 60
test clock-29.120 {time parsing} {
    clock scan {2440588 ?:i:? } \
        -gmt true -locale en_US_roman \
        -format {%J %OH:%OM:%OS }
} 60
test clock-29.121 {time parsing} {
    clock scan {2440588 ?:01 } \
        -gmt true -locale en_US_roman \
        -format {%J %Ok:%M }
} 60
test clock-29.122 {time parsing} {
    clock scan {2440588 ?:i } \
        -gmt true -locale en_US_roman \
        -format {%J %Ok:%OM }
} 60
test clock-29.123 {time parsing} {
    clock scan {2440588 ?:01:00 } \
        -gmt true -locale en_US_roman \
        -format {%J %Ok:%M:%S }
} 60
test clock-29.124 {time parsing} {
    clock scan {2440588 ?:i:? } \
        -gmt true -locale en_US_roman \
        -format {%J %Ok:%OM:%OS }
} 60
test clock-29.125 {time parsing} {
    clock scan {2440588 12:01 AM} \
        -gmt true -locale en_US_roman \
        -format {%J %I:%M %p}
} 60
test clock-29.126 {time parsing} {
    clock scan {2440588 12:i AM} \
        -gmt true -locale en_US_roman \
        -format {%J %I:%OM %p}
} 60
test clock-29.127 {time parsing} {
    clock scan {2440588 12:01:00 AM} \
        -gmt true -locale en_US_roman \
        -format {%J %I:%M:%S %p}
} 60
test clock-29.128 {time parsing} {
    clock scan {2440588 12:i:? AM} \
        -gmt true -locale en_US_roman \
        -format {%J %I:%OM:%OS %p}
} 60
test clock-29.129 {time parsing} {
    clock scan {2440588 12:01 AM} \
        -gmt true -locale en_US_roman \
        -format {%J %l:%M %p}
} 60
test clock-29.130 {time parsing} {
    clock scan {2440588 12:i AM} \
        -gmt true -locale en_US_roman \
        -format {%J %l:%OM %p}
} 60
test clock-29.131 {time parsing} {
    clock scan {2440588 12:01:00 AM} \
        -gmt true -locale en_US_roman \
        -format {%J %l:%M:%S %p}
} 60
test clock-29.132 {time parsing} {
    clock scan {2440588 12:i:? AM} \
        -gmt true -locale en_US_roman \
        -format {%J %l:%OM:%OS %p}
} 60
test clock-29.133 {time parsing} {
    clock scan {2440588 xii:01 AM} \
        -gmt true -locale en_US_roman \
        -format {%J %OI:%M %p}
} 60
test clock-29.134 {time parsing} {
    clock scan {2440588 xii:i AM} \
        -gmt true -locale en_US_roman \
        -format {%J %OI:%OM %p}
} 60
test clock-29.135 {time parsing} {
    clock scan {2440588 xii:01:00 AM} \
        -gmt true -locale en_US_roman \
        -format {%J %OI:%M:%S %p}
} 60
test clock-29.136 {time parsing} {
    clock scan {2440588 xii:i:? AM} \
        -gmt true -locale en_US_roman \
        -format {%J %OI:%OM:%OS %p}
} 60
test clock-29.137 {time parsing} {
    clock scan {2440588 xii:01 AM} \
        -gmt true -locale en_US_roman \
        -format {%J %Ol:%M %p}
} 60
test clock-29.138 {time parsing} {
    clock scan {2440588 xii:i AM} \
        -gmt true -locale en_US_roman \
        -format {%J %Ol:%OM %p}
} 60
test clock-29.139 {time parsing} {
    clock scan {2440588 xii:01:00 AM} \
        -gmt true -locale en_US_roman \
        -format {%J %Ol:%M:%S %p}
} 60
test clock-29.140 {time parsing} {
    clock scan {2440588 xii:i:? AM} \
        -gmt true -locale en_US_roman \
        -format {%J %Ol:%OM:%OS %p}
} 60
test clock-29.141 {time parsing} {
    clock scan {2440588 12:01 am} \
        -gmt true -locale en_US_roman \
        -format {%J %I:%M %P}
} 60
test clock-29.142 {time parsing} {
    clock scan {2440588 12:i am} \
        -gmt true -locale en_US_roman \
        -format {%J %I:%OM %P}
} 60
test clock-29.143 {time parsing} {
    clock scan {2440588 12:01:00 am} \
        -gmt true -locale en_US_roman \
        -format {%J %I:%M:%S %P}
} 60
test clock-29.144 {time parsing} {
    clock scan {2440588 12:i:? am} \
        -gmt true -locale en_US_roman \
        -format {%J %I:%OM:%OS %P}
} 60
test clock-29.145 {time parsing} {
    clock scan {2440588 12:01 am} \
        -gmt true -locale en_US_roman \
        -format {%J %l:%M %P}
} 60
test clock-29.146 {time parsing} {
    clock scan {2440588 12:i am} \
        -gmt true -locale en_US_roman \
        -format {%J %l:%OM %P}
} 60
test clock-29.147 {time parsing} {
    clock scan {2440588 12:01:00 am} \
        -gmt true -locale en_US_roman \
        -format {%J %l:%M:%S %P}
} 60
test clock-29.148 {time parsing} {
    clock scan {2440588 12:i:? am} \
        -gmt true -locale en_US_roman \
        -format {%J %l:%OM:%OS %P}
} 60
test clock-29.149 {time parsing} {
    clock scan {2440588 xii:01 am} \
        -gmt true -locale en_US_roman \
        -format {%J %OI:%M %P}
} 60
test clock-29.150 {time parsing} {
    clock scan {2440588 xii:i am} \
        -gmt true -locale en_US_roman \
        -format {%J %OI:%OM %P}
} 60
test clock-29.151 {time parsing} {
    clock scan {2440588 xii:01:00 am} \
        -gmt true -locale en_US_roman \
        -format {%J %OI:%M:%S %P}
} 60
test clock-29.152 {time parsing} {
    clock scan {2440588 xii:i:? am} \
        -gmt true -locale en_US_roman \
        -format {%J %OI:%OM:%OS %P}
} 60
test clock-29.153 {time parsing} {
    clock scan {2440588 xii:01 am} \
        -gmt true -locale en_US_roman \
        -format {%J %Ol:%M %P}
} 60
test clock-29.154 {time parsing} {
    clock scan {2440588 xii:i am} \
        -gmt true -locale en_US_roman \
        -format {%J %Ol:%OM %P}
} 60
test clock-29.155 {time parsing} {
    clock scan {2440588 xii:01:00 am} \
        -gmt true -locale en_US_roman \
        -format {%J %Ol:%M:%S %P}
} 60
test clock-29.156 {time parsing} {
    clock scan {2440588 xii:i:? am} \
        -gmt true -locale en_US_roman \
        -format {%J %Ol:%OM:%OS %P}
} 60
test clock-29.157 {time parsing} {
    clock scan {2440588 00:01:01 } \
        -gmt true -locale en_US_roman \
        -format {%J %H:%M:%S }
} 61
test clock-29.158 {time parsing} {
    clock scan {2440588 00:i:i } \
        -gmt true -locale en_US_roman \
        -format {%J %H:%OM:%OS }
} 61
test clock-29.159 {time parsing} {
    clock scan {2440588  0:01:01 } \
        -gmt true -locale en_US_roman \
        -format {%J %k:%M:%S }
} 61
test clock-29.160 {time parsing} {
    clock scan {2440588  0:i:i } \
        -gmt true -locale en_US_roman \
        -format {%J %k:%OM:%OS }
} 61
test clock-29.161 {time parsing} {
    clock scan {2440588 ?:01:01 } \
        -gmt true -locale en_US_roman \
        -format {%J %OH:%M:%S }
} 61
test clock-29.162 {time parsing} {
    clock scan {2440588 ?:i:i } \
        -gmt true -locale en_US_roman \
        -format {%J %OH:%OM:%OS }
} 61
test clock-29.163 {time parsing} {
    clock scan {2440588 ?:01:01 } \
        -gmt true -locale en_US_roman \
        -format {%J %Ok:%M:%S }
} 61
test clock-29.164 {time parsing} {
    clock scan {2440588 ?:i:i } \
        -gmt true -locale en_US_roman \
        -format {%J %Ok:%OM:%OS }
} 61
test clock-29.165 {time parsing} {
    clock scan {2440588 12:01:01 AM} \
        -gmt true -locale en_US_roman \
        -format {%J %I:%M:%S %p}
} 61
test clock-29.166 {time parsing} {
    clock scan {2440588 12:i:i AM} \
        -gmt true -locale en_US_roman \
        -format {%J %I:%OM:%OS %p}
} 61
test clock-29.167 {time parsing} {
    clock scan {2440588 12:01:01 AM} \
        -gmt true -locale en_US_roman \
        -format {%J %l:%M:%S %p}
} 61
test clock-29.168 {time parsing} {
    clock scan {2440588 12:i:i AM} \
        -gmt true -locale en_US_roman \
        -format {%J %l:%OM:%OS %p}
} 61
test clock-29.169 {time parsing} {
    clock scan {2440588 xii:01:01 AM} \
        -gmt true -locale en_US_roman \
        -format {%J %OI:%M:%S %p}
} 61
test clock-29.170 {time parsing} {
    clock scan {2440588 xii:i:i AM} \
        -gmt true -locale en_US_roman \
        -format {%J %OI:%OM:%OS %p}
} 61
test clock-29.171 {time parsing} {
    clock scan {2440588 xii:01:01 AM} \
        -gmt true -locale en_US_roman \
        -format {%J %Ol:%M:%S %p}
} 61
test clock-29.172 {time parsing} {
    clock scan {2440588 xii:i:i AM} \
        -gmt true -locale en_US_roman \
        -format {%J %Ol:%OM:%OS %p}
} 61
test clock-29.173 {time parsing} {
    clock scan {2440588 12:01:01 am} \
        -gmt true -locale en_US_roman \
        -format {%J %I:%M:%S %P}
} 61
test clock-29.174 {time parsing} {
    clock scan {2440588 12:i:i am} \
        -gmt true -locale en_US_roman \
        -format {%J %I:%OM:%OS %P}
} 61
test clock-29.175 {time parsing} {
    clock scan {2440588 12:01:01 am} \
        -gmt true -locale en_US_roman \
        -format {%J %l:%M:%S %P}
} 61
test clock-29.176 {time parsing} {
    clock scan {2440588 12:i:i am} \
        -gmt true -locale en_US_roman \
        -format {%J %l:%OM:%OS %P}
} 61
test clock-29.177 {time parsing} {
    clock scan {2440588 xii:01:01 am} \
        -gmt true -locale en_US_roman \
        -format {%J %OI:%M:%S %P}
} 61
test clock-29.178 {time parsing} {
    clock scan {2440588 xii:i:i am} \
        -gmt true -locale en_US_roman \
        -format {%J %OI:%OM:%OS %P}
} 61
test clock-29.179 {time parsing} {
    clock scan {2440588 xii:01:01 am} \
        -gmt true -locale en_US_roman \
        -format {%J %Ol:%M:%S %P}
} 61
test clock-29.180 {time parsing} {
    clock scan {2440588 xii:i:i am} \
        -gmt true -locale en_US_roman \
        -format {%J %Ol:%OM:%OS %P}
} 61
test clock-29.181 {time parsing} {
    clock scan {2440588 00:01:59 } \
        -gmt true -locale en_US_roman \
        -format {%J %H:%M:%S }
} 119
test clock-29.182 {time parsing} {
    clock scan {2440588 00:i:lix } \
        -gmt true -locale en_US_roman \
        -format {%J %H:%OM:%OS }
} 119
test clock-29.183 {time parsing} {
    clock scan {2440588  0:01:59 } \
        -gmt true -locale en_US_roman \
        -format {%J %k:%M:%S }
} 119
test clock-29.184 {time parsing} {
    clock scan {2440588  0:i:lix } \
        -gmt true -locale en_US_roman \
        -format {%J %k:%OM:%OS }
} 119
test clock-29.185 {time parsing} {
    clock scan {2440588 ?:01:59 } \
        -gmt true -locale en_US_roman \
        -format {%J %OH:%M:%S }
} 119
test clock-29.186 {time parsing} {
    clock scan {2440588 ?:i:lix } \
        -gmt true -locale en_US_roman \
        -format {%J %OH:%OM:%OS }
} 119
test clock-29.187 {time parsing} {
    clock scan {2440588 ?:01:59 } \
        -gmt true -locale en_US_roman \
        -format {%J %Ok:%M:%S }
} 119
test clock-29.188 {time parsing} {
    clock scan {2440588 ?:i:lix } \
        -gmt true -locale en_US_roman \
        -format {%J %Ok:%OM:%OS }
} 119
test clock-29.189 {time parsing} {
    clock scan {2440588 12:01:59 AM} \
        -gmt true -locale en_US_roman \
        -format {%J %I:%M:%S %p}
} 119
test clock-29.190 {time parsing} {
    clock scan {2440588 12:i:lix AM} \
        -gmt true -locale en_US_roman \
        -format {%J %I:%OM:%OS %p}
} 119
test clock-29.191 {time parsing} {
    clock scan {2440588 12:01:59 AM} \
        -gmt true -locale en_US_roman \
        -format {%J %l:%M:%S %p}
} 119
test clock-29.192 {time parsing} {
    clock scan {2440588 12:i:lix AM} \
        -gmt true -locale en_US_roman \
        -format {%J %l:%OM:%OS %p}
} 119
test clock-29.193 {time parsing} {
    clock scan {2440588 xii:01:59 AM} \
        -gmt true -locale en_US_roman \
        -format {%J %OI:%M:%S %p}
} 119
test clock-29.194 {time parsing} {
    clock scan {2440588 xii:i:lix AM} \
        -gmt true -locale en_US_roman \
        -format {%J %OI:%OM:%OS %p}
} 119
test clock-29.195 {time parsing} {
    clock scan {2440588 xii:01:59 AM} \
        -gmt true -locale en_US_roman \
        -format {%J %Ol:%M:%S %p}
} 119
test clock-29.196 {time parsing} {
    clock scan {2440588 xii:i:lix AM} \
        -gmt true -locale en_US_roman \
        -format {%J %Ol:%OM:%OS %p}
} 119
test clock-29.197 {time parsing} {
    clock scan {2440588 12:01:59 am} \
        -gmt true -locale en_US_roman \
        -format {%J %I:%M:%S %P}
} 119
test clock-29.198 {time parsing} {
    clock scan {2440588 12:i:lix am} \
        -gmt true -locale en_US_roman \
        -format {%J %I:%OM:%OS %P}
} 119
test clock-29.199 {time parsing} {
    clock scan {2440588 12:01:59 am} \
        -gmt true -locale en_US_roman \
        -format {%J %l:%M:%S %P}
} 119
test clock-29.200 {time parsing} {
    clock scan {2440588 12:i:lix am} \
        -gmt true -locale en_US_roman \
        -format {%J %l:%OM:%OS %P}
} 119
test clock-29.201 {time parsing} {
    clock scan {2440588 xii:01:59 am} \
        -gmt true -locale en_US_roman \
        -format {%J %OI:%M:%S %P}
} 119
test clock-29.202 {time parsing} {
    clock scan {2440588 xii:i:lix am} \
        -gmt true -locale en_US_roman \
        -format {%J %OI:%OM:%OS %P}
} 119
test clock-29.203 {time parsing} {
    clock scan {2440588 xii:01:59 am} \
        -gmt true -locale en_US_roman \
        -format {%J %Ol:%M:%S %P}
} 119
test clock-29.204 {time parsing} {
    clock scan {2440588 xii:i:lix am} \
        -gmt true -locale en_US_roman \
        -format {%J %Ol:%OM:%OS %P}
} 119
test clock-29.205 {time parsing} {
    clock scan {2440588 00:59 } \
        -gmt true -locale en_US_roman \
        -format {%J %H:%M }
} 3540
test clock-29.206 {time parsing} {
    clock scan {2440588 00:lix } \
        -gmt true -locale en_US_roman \
        -format {%J %H:%OM }
} 3540
test clock-29.207 {time parsing} {
    clock scan {2440588 00:59:00 } \
        -gmt true -locale en_US_roman \
        -format {%J %H:%M:%S }
} 3540
test clock-29.208 {time parsing} {
    clock scan {2440588 00:lix:? } \
        -gmt true -locale en_US_roman \
        -format {%J %H:%OM:%OS }
} 3540
test clock-29.209 {time parsing} {
    clock scan {2440588  0:59 } \
        -gmt true -locale en_US_roman \
        -format {%J %k:%M }
} 3540
test clock-29.210 {time parsing} {
    clock scan {2440588  0:lix } \
        -gmt true -locale en_US_roman \
        -format {%J %k:%OM }
} 3540
test clock-29.211 {time parsing} {
    clock scan {2440588  0:59:00 } \
        -gmt true -locale en_US_roman \
        -format {%J %k:%M:%S }
} 3540
test clock-29.212 {time parsing} {
    clock scan {2440588  0:lix:? } \
        -gmt true -locale en_US_roman \
        -format {%J %k:%OM:%OS }
} 3540
test clock-29.213 {time parsing} {
    clock scan {2440588 ?:59 } \
        -gmt true -locale en_US_roman \
        -format {%J %OH:%M }
} 3540
test clock-29.214 {time parsing} {
    clock scan {2440588 ?:lix } \
        -gmt true -locale en_US_roman \
        -format {%J %OH:%OM }
} 3540
test clock-29.215 {time parsing} {
    clock scan {2440588 ?:59:00 } \
        -gmt true -locale en_US_roman \
        -format {%J %OH:%M:%S }
} 3540
test clock-29.216 {time parsing} {
    clock scan {2440588 ?:lix:? } \
        -gmt true -locale en_US_roman \
        -format {%J %OH:%OM:%OS }
} 3540
test clock-29.217 {time parsing} {
    clock scan {2440588 ?:59 } \
        -gmt true -locale en_US_roman \
        -format {%J %Ok:%M }
} 3540
test clock-29.218 {time parsing} {
    clock scan {2440588 ?:lix } \
        -gmt true -locale en_US_roman \
        -format {%J %Ok:%OM }
} 3540
test clock-29.219 {time parsing} {
    clock scan {2440588 ?:59:00 } \
        -gmt true -locale en_US_roman \
        -format {%J %Ok:%M:%S }
} 3540
test clock-29.220 {time parsing} {
    clock scan {2440588 ?:lix:? } \
        -gmt true -locale en_US_roman \
        -format {%J %Ok:%OM:%OS }
} 3540
test clock-29.221 {time parsing} {
    clock scan {2440588 12:59 AM} \
        -gmt true -locale en_US_roman \
        -format {%J %I:%M %p}
} 3540
test clock-29.222 {time parsing} {
    clock scan {2440588 12:lix AM} \
        -gmt true -locale en_US_roman \
        -format {%J %I:%OM %p}
} 3540
test clock-29.223 {time parsing} {
    clock scan {2440588 12:59:00 AM} \
        -gmt true -locale en_US_roman \
        -format {%J %I:%M:%S %p}
} 3540
test clock-29.224 {time parsing} {
    clock scan {2440588 12:lix:? AM} \
        -gmt true -locale en_US_roman \
        -format {%J %I:%OM:%OS %p}
} 3540
test clock-29.225 {time parsing} {
    clock scan {2440588 12:59 AM} \
        -gmt true -locale en_US_roman \
        -format {%J %l:%M %p}
} 3540
test clock-29.226 {time parsing} {
    clock scan {2440588 12:lix AM} \
        -gmt true -locale en_US_roman \
        -format {%J %l:%OM %p}
} 3540
test clock-29.227 {time parsing} {
    clock scan {2440588 12:59:00 AM} \
        -gmt true -locale en_US_roman \
        -format {%J %l:%M:%S %p}
} 3540
test clock-29.228 {time parsing} {
    clock scan {2440588 12:lix:? AM} \
        -gmt true -locale en_US_roman \
        -format {%J %l:%OM:%OS %p}
} 3540
test clock-29.229 {time parsing} {
    clock scan {2440588 xii:59 AM} \
        -gmt true -locale en_US_roman \
        -format {%J %OI:%M %p}
} 3540
test clock-29.230 {time parsing} {
    clock scan {2440588 xii:lix AM} \
        -gmt true -locale en_US_roman \
        -format {%J %OI:%OM %p}
} 3540
test clock-29.231 {time parsing} {
    clock scan {2440588 xii:59:00 AM} \
        -gmt true -locale en_US_roman \
        -format {%J %OI:%M:%S %p}
} 3540
test clock-29.232 {time parsing} {
    clock scan {2440588 xii:lix:? AM} \
        -gmt true -locale en_US_roman \
        -format {%J %OI:%OM:%OS %p}
} 3540
test clock-29.233 {time parsing} {
    clock scan {2440588 xii:59 AM} \
        -gmt true -locale en_US_roman \
        -format {%J %Ol:%M %p}
} 3540
test clock-29.234 {time parsing} {
    clock scan {2440588 xii:lix AM} \
        -gmt true -locale en_US_roman \
        -format {%J %Ol:%OM %p}
} 3540
test clock-29.235 {time parsing} {
    clock scan {2440588 xii:59:00 AM} \
        -gmt true -locale en_US_roman \
        -format {%J %Ol:%M:%S %p}
} 3540
test clock-29.236 {time parsing} {
    clock scan {2440588 xii:lix:? AM} \
        -gmt true -locale en_US_roman \
        -format {%J %Ol:%OM:%OS %p}
} 3540
test clock-29.237 {time parsing} {
    clock scan {2440588 12:59 am} \
        -gmt true -locale en_US_roman \
        -format {%J %I:%M %P}
} 3540
test clock-29.238 {time parsing} {
    clock scan {2440588 12:lix am} \
        -gmt true -locale en_US_roman \
        -format {%J %I:%OM %P}
} 3540
test clock-29.239 {time parsing} {
    clock scan {2440588 12:59:00 am} \
        -gmt true -locale en_US_roman \
        -format {%J %I:%M:%S %P}
} 3540
test clock-29.240 {time parsing} {
    clock scan {2440588 12:lix:? am} \
        -gmt true -locale en_US_roman \
        -format {%J %I:%OM:%OS %P}
} 3540
test clock-29.241 {time parsing} {
    clock scan {2440588 12:59 am} \
        -gmt true -locale en_US_roman \
        -format {%J %l:%M %P}
} 3540
test clock-29.242 {time parsing} {
    clock scan {2440588 12:lix am} \
        -gmt true -locale en_US_roman \
        -format {%J %l:%OM %P}
} 3540
test clock-29.243 {time parsing} {
    clock scan {2440588 12:59:00 am} \
        -gmt true -locale en_US_roman \
        -format {%J %l:%M:%S %P}
} 3540
test clock-29.244 {time parsing} {
    clock scan {2440588 12:lix:? am} \
        -gmt true -locale en_US_roman \
        -format {%J %l:%OM:%OS %P}
} 3540
test clock-29.245 {time parsing} {
    clock scan {2440588 xii:59 am} \
        -gmt true -locale en_US_roman \
        -format {%J %OI:%M %P}
} 3540
test clock-29.246 {time parsing} {
    clock scan {2440588 xii:lix am} \
        -gmt true -locale en_US_roman \
        -format {%J %OI:%OM %P}
} 3540
test clock-29.247 {time parsing} {
    clock scan {2440588 xii:59:00 am} \
        -gmt true -locale en_US_roman \
        -format {%J %OI:%M:%S %P}
} 3540
test clock-29.248 {time parsing} {
    clock scan {2440588 xii:lix:? am} \
        -gmt true -locale en_US_roman \
        -format {%J %OI:%OM:%OS %P}
} 3540
test clock-29.249 {time parsing} {
    clock scan {2440588 xii:59 am} \
        -gmt true -locale en_US_roman \
        -format {%J %Ol:%M %P}
} 3540
test clock-29.250 {time parsing} {
    clock scan {2440588 xii:lix am} \
        -gmt true -locale en_US_roman \
        -format {%J %Ol:%OM %P}
} 3540
test clock-29.251 {time parsing} {
    clock scan {2440588 xii:59:00 am} \
        -gmt true -locale en_US_roman \
        -format {%J %Ol:%M:%S %P}
} 3540
test clock-29.252 {time parsing} {
    clock scan {2440588 xii:lix:? am} \
        -gmt true -locale en_US_roman \
        -format {%J %Ol:%OM:%OS %P}
} 3540
test clock-29.253 {time parsing} {
    clock scan {2440588 00:59:01 } \
        -gmt true -locale en_US_roman \
        -format {%J %H:%M:%S }
} 3541
test clock-29.254 {time parsing} {
    clock scan {2440588 00:lix:i } \
        -gmt true -locale en_US_roman \
        -format {%J %H:%OM:%OS }
} 3541
test clock-29.255 {time parsing} {
    clock scan {2440588  0:59:01 } \
        -gmt true -locale en_US_roman \
        -format {%J %k:%M:%S }
} 3541
test clock-29.256 {time parsing} {
    clock scan {2440588  0:lix:i } \
        -gmt true -locale en_US_roman \
        -format {%J %k:%OM:%OS }
} 3541
test clock-29.257 {time parsing} {
    clock scan {2440588 ?:59:01 } \
        -gmt true -locale en_US_roman \
        -format {%J %OH:%M:%S }
} 3541
test clock-29.258 {time parsing} {
    clock scan {2440588 ?:lix:i } \
        -gmt true -locale en_US_roman \
        -format {%J %OH:%OM:%OS }
} 3541
test clock-29.259 {time parsing} {
    clock scan {2440588 ?:59:01 } \
        -gmt true -locale en_US_roman \
        -format {%J %Ok:%M:%S }
} 3541
test clock-29.260 {time parsing} {
    clock scan {2440588 ?:lix:i } \
        -gmt true -locale en_US_roman \
        -format {%J %Ok:%OM:%OS }
} 3541
test clock-29.261 {time parsing} {
    clock scan {2440588 12:59:01 AM} \
        -gmt true -locale en_US_roman \
        -format {%J %I:%M:%S %p}
} 3541
test clock-29.262 {time parsing} {
    clock scan {2440588 12:lix:i AM} \
        -gmt true -locale en_US_roman \
        -format {%J %I:%OM:%OS %p}
} 3541
test clock-29.263 {time parsing} {
    clock scan {2440588 12:59:01 AM} \
        -gmt true -locale en_US_roman \
        -format {%J %l:%M:%S %p}
} 3541
test clock-29.264 {time parsing} {
    clock scan {2440588 12:lix:i AM} \
        -gmt true -locale en_US_roman \
        -format {%J %l:%OM:%OS %p}
} 3541
test clock-29.265 {time parsing} {
    clock scan {2440588 xii:59:01 AM} \
        -gmt true -locale en_US_roman \
        -format {%J %OI:%M:%S %p}
} 3541
test clock-29.266 {time parsing} {
    clock scan {2440588 xii:lix:i AM} \
        -gmt true -locale en_US_roman \
        -format {%J %OI:%OM:%OS %p}
} 3541
test clock-29.267 {time parsing} {
    clock scan {2440588 xii:59:01 AM} \
        -gmt true -locale en_US_roman \
        -format {%J %Ol:%M:%S %p}
} 3541
test clock-29.268 {time parsing} {
    clock scan {2440588 xii:lix:i AM} \
        -gmt true -locale en_US_roman \
        -format {%J %Ol:%OM:%OS %p}
} 3541
test clock-29.269 {time parsing} {
    clock scan {2440588 12:59:01 am} \
        -gmt true -locale en_US_roman \
        -format {%J %I:%M:%S %P}
} 3541
test clock-29.270 {time parsing} {
    clock scan {2440588 12:lix:i am} \
        -gmt true -locale en_US_roman \
        -format {%J %I:%OM:%OS %P}
} 3541
test clock-29.271 {time parsing} {
    clock scan {2440588 12:59:01 am} \
        -gmt true -locale en_US_roman \
        -format {%J %l:%M:%S %P}
} 3541
test clock-29.272 {time parsing} {
    clock scan {2440588 12:lix:i am} \
        -gmt true -locale en_US_roman \
        -format {%J %l:%OM:%OS %P}
} 3541
test clock-29.273 {time parsing} {
    clock scan {2440588 xii:59:01 am} \
        -gmt true -locale en_US_roman \
        -format {%J %OI:%M:%S %P}
} 3541
test clock-29.274 {time parsing} {
    clock scan {2440588 xii:lix:i am} \
        -gmt true -locale en_US_roman \
        -format {%J %OI:%OM:%OS %P}
} 3541
test clock-29.275 {time parsing} {
    clock scan {2440588 xii:59:01 am} \
        -gmt true -locale en_US_roman \
        -format {%J %Ol:%M:%S %P}
} 3541
test clock-29.276 {time parsing} {
    clock scan {2440588 xii:lix:i am} \
        -gmt true -locale en_US_roman \
        -format {%J %Ol:%OM:%OS %P}
} 3541
test clock-29.277 {time parsing} {
    clock scan {2440588 00:59:59 } \
        -gmt true -locale en_US_roman \
        -format {%J %H:%M:%S }
} 3599
test clock-29.278 {time parsing} {
    clock scan {2440588 00:lix:lix } \
        -gmt true -locale en_US_roman \
        -format {%J %H:%OM:%OS }
} 3599
test clock-29.279 {time parsing} {
    clock scan {2440588  0:59:59 } \
        -gmt true -locale en_US_roman \
        -format {%J %k:%M:%S }
} 3599
test clock-29.280 {time parsing} {
    clock scan {2440588  0:lix:lix } \
        -gmt true -locale en_US_roman \
        -format {%J %k:%OM:%OS }
} 3599
test clock-29.281 {time parsing} {
    clock scan {2440588 ?:59:59 } \
        -gmt true -locale en_US_roman \
        -format {%J %OH:%M:%S }
} 3599
test clock-29.282 {time parsing} {
    clock scan {2440588 ?:lix:lix } \
        -gmt true -locale en_US_roman \
        -format {%J %OH:%OM:%OS }
} 3599
test clock-29.283 {time parsing} {
    clock scan {2440588 ?:59:59 } \
        -gmt true -locale en_US_roman \
        -format {%J %Ok:%M:%S }
} 3599
test clock-29.284 {time parsing} {
    clock scan {2440588 ?:lix:lix } \
        -gmt true -locale en_US_roman \
        -format {%J %Ok:%OM:%OS }
} 3599
test clock-29.285 {time parsing} {
    clock scan {2440588 12:59:59 AM} \
        -gmt true -locale en_US_roman \
        -format {%J %I:%M:%S %p}
} 3599
test clock-29.286 {time parsing} {
    clock scan {2440588 12:lix:lix AM} \
        -gmt true -locale en_US_roman \
        -format {%J %I:%OM:%OS %p}
} 3599
test clock-29.287 {time parsing} {
    clock scan {2440588 12:59:59 AM} \
        -gmt true -locale en_US_roman \
        -format {%J %l:%M:%S %p}
} 3599
test clock-29.288 {time parsing} {
    clock scan {2440588 12:lix:lix AM} \
        -gmt true -locale en_US_roman \
        -format {%J %l:%OM:%OS %p}
} 3599
test clock-29.289 {time parsing} {
    clock scan {2440588 xii:59:59 AM} \
        -gmt true -locale en_US_roman \
        -format {%J %OI:%M:%S %p}
} 3599
test clock-29.290 {time parsing} {
    clock scan {2440588 xii:lix:lix AM} \
        -gmt true -locale en_US_roman \
        -format {%J %OI:%OM:%OS %p}
} 3599
test clock-29.291 {time parsing} {
    clock scan {2440588 xii:59:59 AM} \
        -gmt true -locale en_US_roman \
        -format {%J %Ol:%M:%S %p}
} 3599
test clock-29.292 {time parsing} {
    clock scan {2440588 xii:lix:lix AM} \
        -gmt true -locale en_US_roman \
        -format {%J %Ol:%OM:%OS %p}
} 3599
test clock-29.293 {time parsing} {
    clock scan {2440588 12:59:59 am} \
        -gmt true -locale en_US_roman \
        -format {%J %I:%M:%S %P}
} 3599
test clock-29.294 {time parsing} {
    clock scan {2440588 12:lix:lix am} \
        -gmt true -locale en_US_roman \
        -format {%J %I:%OM:%OS %P}
} 3599
test clock-29.295 {time parsing} {
    clock scan {2440588 12:59:59 am} \
        -gmt true -locale en_US_roman \
        -format {%J %l:%M:%S %P}
} 3599
test clock-29.296 {time parsing} {
    clock scan {2440588 12:lix:lix am} \
        -gmt true -locale en_US_roman \
        -format {%J %l:%OM:%OS %P}
} 3599
test clock-29.297 {time parsing} {
    clock scan {2440588 xii:59:59 am} \
        -gmt true -locale en_US_roman \
        -format {%J %OI:%M:%S %P}
} 3599
test clock-29.298 {time parsing} {
    clock scan {2440588 xii:lix:lix am} \
        -gmt true -locale en_US_roman \
        -format {%J %OI:%OM:%OS %P}
} 3599
test clock-29.299 {time parsing} {
    clock scan {2440588 xii:59:59 am} \
        -gmt true -locale en_US_roman \
        -format {%J %Ol:%M:%S %P}
} 3599
test clock-29.300 {time parsing} {
    clock scan {2440588 xii:lix:lix am} \
        -gmt true -locale en_US_roman \
        -format {%J %Ol:%OM:%OS %P}
} 3599
test clock-29.301 {time parsing} {
    clock scan {2440588 01 } \
        -gmt true -locale en_US_roman \
        -format {%J %H }
} 3600
test clock-29.302 {time parsing} {
    clock scan {2440588 01:00 } \
        -gmt true -locale en_US_roman \
        -format {%J %H:%M }
} 3600
test clock-29.303 {time parsing} {
    clock scan {2440588 01:? } \
        -gmt true -locale en_US_roman \
        -format {%J %H:%OM }
} 3600
test clock-29.304 {time parsing} {
    clock scan {2440588 01:00:00 } \
        -gmt true -locale en_US_roman \
        -format {%J %H:%M:%S }
} 3600
test clock-29.305 {time parsing} {
    clock scan {2440588 01:?:? } \
        -gmt true -locale en_US_roman \
        -format {%J %H:%OM:%OS }
} 3600
test clock-29.306 {time parsing} {
    clock scan {2440588  1 } \
        -gmt true -locale en_US_roman \
        -format {%J %k }
} 3600
test clock-29.307 {time parsing} {
    clock scan {2440588  1:00 } \
        -gmt true -locale en_US_roman \
        -format {%J %k:%M }
} 3600
test clock-29.308 {time parsing} {
    clock scan {2440588  1:? } \
        -gmt true -locale en_US_roman \
        -format {%J %k:%OM }
} 3600
test clock-29.309 {time parsing} {
    clock scan {2440588  1:00:00 } \
        -gmt true -locale en_US_roman \
        -format {%J %k:%M:%S }
} 3600
test clock-29.310 {time parsing} {
    clock scan {2440588  1:?:? } \
        -gmt true -locale en_US_roman \
        -format {%J %k:%OM:%OS }
} 3600
test clock-29.311 {time parsing} {
    clock scan {2440588 i } \
        -gmt true -locale en_US_roman \
        -format {%J %OH }
} 3600
test clock-29.312 {time parsing} {
    clock scan {2440588 i:00 } \
        -gmt true -locale en_US_roman \
        -format {%J %OH:%M }
} 3600
test clock-29.313 {time parsing} {
    clock scan {2440588 i:? } \
        -gmt true -locale en_US_roman \
        -format {%J %OH:%OM }
} 3600
test clock-29.314 {time parsing} {
    clock scan {2440588 i:00:00 } \
        -gmt true -locale en_US_roman \
        -format {%J %OH:%M:%S }
} 3600
test clock-29.315 {time parsing} {
    clock scan {2440588 i:?:? } \
        -gmt true -locale en_US_roman \
        -format {%J %OH:%OM:%OS }
} 3600
test clock-29.316 {time parsing} {
    clock scan {2440588 i } \
        -gmt true -locale en_US_roman \
        -format {%J %Ok }
} 3600
test clock-29.317 {time parsing} {
    clock scan {2440588 i:00 } \
        -gmt true -locale en_US_roman \
        -format {%J %Ok:%M }
} 3600
test clock-29.318 {time parsing} {
    clock scan {2440588 i:? } \
        -gmt true -locale en_US_roman \
        -format {%J %Ok:%OM }
} 3600
test clock-29.319 {time parsing} {
    clock scan {2440588 i:00:00 } \
        -gmt true -locale en_US_roman \
        -format {%J %Ok:%M:%S }
} 3600
test clock-29.320 {time parsing} {
    clock scan {2440588 i:?:? } \
        -gmt true -locale en_US_roman \
        -format {%J %Ok:%OM:%OS }
} 3600
test clock-29.321 {time parsing} {
    clock scan {2440588 01 AM} \
        -gmt true -locale en_US_roman \
        -format {%J %I %p}
} 3600
test clock-29.322 {time parsing} {
    clock scan {2440588 01:00 AM} \
        -gmt true -locale en_US_roman \
        -format {%J %I:%M %p}
} 3600
test clock-29.323 {time parsing} {
    clock scan {2440588 01:? AM} \
        -gmt true -locale en_US_roman \
        -format {%J %I:%OM %p}
} 3600
test clock-29.324 {time parsing} {
    clock scan {2440588 01:00:00 AM} \
        -gmt true -locale en_US_roman \
        -format {%J %I:%M:%S %p}
} 3600
test clock-29.325 {time parsing} {
    clock scan {2440588 01:?:? AM} \
        -gmt true -locale en_US_roman \
        -format {%J %I:%OM:%OS %p}
} 3600
test clock-29.326 {time parsing} {
    clock scan {2440588  1 AM} \
        -gmt true -locale en_US_roman \
        -format {%J %l %p}
} 3600
test clock-29.327 {time parsing} {
    clock scan {2440588  1:00 AM} \
        -gmt true -locale en_US_roman \
        -format {%J %l:%M %p}
} 3600
test clock-29.328 {time parsing} {
    clock scan {2440588  1:? AM} \
        -gmt true -locale en_US_roman \
        -format {%J %l:%OM %p}
} 3600
test clock-29.329 {time parsing} {
    clock scan {2440588  1:00:00 AM} \
        -gmt true -locale en_US_roman \
        -format {%J %l:%M:%S %p}
} 3600
test clock-29.330 {time parsing} {
    clock scan {2440588  1:?:? AM} \
        -gmt true -locale en_US_roman \
        -format {%J %l:%OM:%OS %p}
} 3600
test clock-29.331 {time parsing} {
    clock scan {2440588 i AM} \
        -gmt true -locale en_US_roman \
        -format {%J %OI %p}
} 3600
test clock-29.332 {time parsing} {
    clock scan {2440588 i:00 AM} \
        -gmt true -locale en_US_roman \
        -format {%J %OI:%M %p}
} 3600
test clock-29.333 {time parsing} {
    clock scan {2440588 i:? AM} \
        -gmt true -locale en_US_roman \
        -format {%J %OI:%OM %p}
} 3600
test clock-29.334 {time parsing} {
    clock scan {2440588 i:00:00 AM} \
        -gmt true -locale en_US_roman \
        -format {%J %OI:%M:%S %p}
} 3600
test clock-29.335 {time parsing} {
    clock scan {2440588 i:?:? AM} \
        -gmt true -locale en_US_roman \
        -format {%J %OI:%OM:%OS %p}
} 3600
test clock-29.336 {time parsing} {
    clock scan {2440588 i AM} \
        -gmt true -locale en_US_roman \
        -format {%J %Ol %p}
} 3600
test clock-29.337 {time parsing} {
    clock scan {2440588 i:00 AM} \
        -gmt true -locale en_US_roman \
        -format {%J %Ol:%M %p}
} 3600
test clock-29.338 {time parsing} {
    clock scan {2440588 i:? AM} \
        -gmt true -locale en_US_roman \
        -format {%J %Ol:%OM %p}
} 3600
test clock-29.339 {time parsing} {
    clock scan {2440588 i:00:00 AM} \
        -gmt true -locale en_US_roman \
        -format {%J %Ol:%M:%S %p}
} 3600
test clock-29.340 {time parsing} {
    clock scan {2440588 i:?:? AM} \
        -gmt true -locale en_US_roman \
        -format {%J %Ol:%OM:%OS %p}
} 3600
test clock-29.341 {time parsing} {
    clock scan {2440588 01 am} \
        -gmt true -locale en_US_roman \
        -format {%J %I %P}
} 3600
test clock-29.342 {time parsing} {
    clock scan {2440588 01:00 am} \
        -gmt true -locale en_US_roman \
        -format {%J %I:%M %P}
} 3600
test clock-29.343 {time parsing} {
    clock scan {2440588 01:? am} \
        -gmt true -locale en_US_roman \
        -format {%J %I:%OM %P}
} 3600
test clock-29.344 {time parsing} {
    clock scan {2440588 01:00:00 am} \
        -gmt true -locale en_US_roman \
        -format {%J %I:%M:%S %P}
} 3600
test clock-29.345 {time parsing} {
    clock scan {2440588 01:?:? am} \
        -gmt true -locale en_US_roman \
        -format {%J %I:%OM:%OS %P}
} 3600
test clock-29.346 {time parsing} {
    clock scan {2440588  1 am} \
        -gmt true -locale en_US_roman \
        -format {%J %l %P}
} 3600
test clock-29.347 {time parsing} {
    clock scan {2440588  1:00 am} \
        -gmt true -locale en_US_roman \
        -format {%J %l:%M %P}
} 3600
test clock-29.348 {time parsing} {
    clock scan {2440588  1:? am} \
        -gmt true -locale en_US_roman \
        -format {%J %l:%OM %P}
} 3600
test clock-29.349 {time parsing} {
    clock scan {2440588  1:00:00 am} \
        -gmt true -locale en_US_roman \
        -format {%J %l:%M:%S %P}
} 3600
test clock-29.350 {time parsing} {
    clock scan {2440588  1:?:? am} \
        -gmt true -locale en_US_roman \
        -format {%J %l:%OM:%OS %P}
} 3600
test clock-29.351 {time parsing} {
    clock scan {2440588 i am} \
        -gmt true -locale en_US_roman \
        -format {%J %OI %P}
} 3600
test clock-29.352 {time parsing} {
    clock scan {2440588 i:00 am} \
        -gmt true -locale en_US_roman \
        -format {%J %OI:%M %P}
} 3600
test clock-29.353 {time parsing} {
    clock scan {2440588 i:? am} \
        -gmt true -locale en_US_roman \
        -format {%J %OI:%OM %P}
} 3600
test clock-29.354 {time parsing} {
    clock scan {2440588 i:00:00 am} \
        -gmt true -locale en_US_roman \
        -format {%J %OI:%M:%S %P}
} 3600
test clock-29.355 {time parsing} {
    clock scan {2440588 i:?:? am} \
        -gmt true -locale en_US_roman \
        -format {%J %OI:%OM:%OS %P}
} 3600
test clock-29.356 {time parsing} {
    clock scan {2440588 i am} \
        -gmt true -locale en_US_roman \
        -format {%J %Ol %P}
} 3600
test clock-29.357 {time parsing} {
    clock scan {2440588 i:00 am} \
        -gmt true -locale en_US_roman \
        -format {%J %Ol:%M %P}
} 3600
test clock-29.358 {time parsing} {
    clock scan {2440588 i:? am} \
        -gmt true -locale en_US_roman \
        -format {%J %Ol:%OM %P}
} 3600
test clock-29.359 {time parsing} {
    clock scan {2440588 i:00:00 am} \
        -gmt true -locale en_US_roman \
        -format {%J %Ol:%M:%S %P}
} 3600
test clock-29.360 {time parsing} {
    clock scan {2440588 i:?:? am} \
        -gmt true -locale en_US_roman \
        -format {%J %Ol:%OM:%OS %P}
} 3600
test clock-29.361 {time parsing} {
    clock scan {2440588 01:00:01 } \
        -gmt true -locale en_US_roman \
        -format {%J %H:%M:%S }
} 3601
test clock-29.362 {time parsing} {
    clock scan {2440588 01:?:i } \
        -gmt true -locale en_US_roman \
        -format {%J %H:%OM:%OS }
} 3601
test clock-29.363 {time parsing} {
    clock scan {2440588  1:00:01 } \
        -gmt true -locale en_US_roman \
        -format {%J %k:%M:%S }
} 3601
test clock-29.364 {time parsing} {
    clock scan {2440588  1:?:i } \
        -gmt true -locale en_US_roman \
        -format {%J %k:%OM:%OS }
} 3601
test clock-29.365 {time parsing} {
    clock scan {2440588 i:00:01 } \
        -gmt true -locale en_US_roman \
        -format {%J %OH:%M:%S }
} 3601
test clock-29.366 {time parsing} {
    clock scan {2440588 i:?:i } \
        -gmt true -locale en_US_roman \
        -format {%J %OH:%OM:%OS }
} 3601
test clock-29.367 {time parsing} {
    clock scan {2440588 i:00:01 } \
        -gmt true -locale en_US_roman \
        -format {%J %Ok:%M:%S }
} 3601
test clock-29.368 {time parsing} {
    clock scan {2440588 i:?:i } \
        -gmt true -locale en_US_roman \
        -format {%J %Ok:%OM:%OS }
} 3601
test clock-29.369 {time parsing} {
    clock scan {2440588 01:00:01 AM} \
        -gmt true -locale en_US_roman \
        -format {%J %I:%M:%S %p}
} 3601
test clock-29.370 {time parsing} {
    clock scan {2440588 01:?:i AM} \
        -gmt true -locale en_US_roman \
        -format {%J %I:%OM:%OS %p}
} 3601
test clock-29.371 {time parsing} {
    clock scan {2440588  1:00:01 AM} \
        -gmt true -locale en_US_roman \
        -format {%J %l:%M:%S %p}
} 3601
test clock-29.372 {time parsing} {
    clock scan {2440588  1:?:i AM} \
        -gmt true -locale en_US_roman \
        -format {%J %l:%OM:%OS %p}
} 3601
test clock-29.373 {time parsing} {
    clock scan {2440588 i:00:01 AM} \
        -gmt true -locale en_US_roman \
        -format {%J %OI:%M:%S %p}
} 3601
test clock-29.374 {time parsing} {
    clock scan {2440588 i:?:i AM} \
        -gmt true -locale en_US_roman \
        -format {%J %OI:%OM:%OS %p}
} 3601
test clock-29.375 {time parsing} {
    clock scan {2440588 i:00:01 AM} \
        -gmt true -locale en_US_roman \
        -format {%J %Ol:%M:%S %p}
} 3601
test clock-29.376 {time parsing} {
    clock scan {2440588 i:?:i AM} \
        -gmt true -locale en_US_roman \
        -format {%J %Ol:%OM:%OS %p}
} 3601
test clock-29.377 {time parsing} {
    clock scan {2440588 01:00:01 am} \
        -gmt true -locale en_US_roman \
        -format {%J %I:%M:%S %P}
} 3601
test clock-29.378 {time parsing} {
    clock scan {2440588 01:?:i am} \
        -gmt true -locale en_US_roman \
        -format {%J %I:%OM:%OS %P}
} 3601
test clock-29.379 {time parsing} {
    clock scan {2440588  1:00:01 am} \
        -gmt true -locale en_US_roman \
        -format {%J %l:%M:%S %P}
} 3601
test clock-29.380 {time parsing} {
    clock scan {2440588  1:?:i am} \
        -gmt true -locale en_US_roman \
        -format {%J %l:%OM:%OS %P}
} 3601
test clock-29.381 {time parsing} {
    clock scan {2440588 i:00:01 am} \
        -gmt true -locale en_US_roman \
        -format {%J %OI:%M:%S %P}
} 3601
test clock-29.382 {time parsing} {
    clock scan {2440588 i:?:i am} \
        -gmt true -locale en_US_roman \
        -format {%J %OI:%OM:%OS %P}
} 3601
test clock-29.383 {time parsing} {
    clock scan {2440588 i:00:01 am} \
        -gmt true -locale en_US_roman \
        -format {%J %Ol:%M:%S %P}
} 3601
test clock-29.384 {time parsing} {
    clock scan {2440588 i:?:i am} \
        -gmt true -locale en_US_roman \
        -format {%J %Ol:%OM:%OS %P}
} 3601
test clock-29.385 {time parsing} {
    clock scan {2440588 01:00:59 } \
        -gmt true -locale en_US_roman \
        -format {%J %H:%M:%S }
} 3659
test clock-29.386 {time parsing} {
    clock scan {2440588 01:?:lix } \
        -gmt true -locale en_US_roman \
        -format {%J %H:%OM:%OS }
} 3659
test clock-29.387 {time parsing} {
    clock scan {2440588  1:00:59 } \
        -gmt true -locale en_US_roman \
        -format {%J %k:%M:%S }
} 3659
test clock-29.388 {time parsing} {
    clock scan {2440588  1:?:lix } \
        -gmt true -locale en_US_roman \
        -format {%J %k:%OM:%OS }
} 3659
test clock-29.389 {time parsing} {
    clock scan {2440588 i:00:59 } \
        -gmt true -locale en_US_roman \
        -format {%J %OH:%M:%S }
} 3659
test clock-29.390 {time parsing} {
    clock scan {2440588 i:?:lix } \
        -gmt true -locale en_US_roman \
        -format {%J %OH:%OM:%OS }
} 3659
test clock-29.391 {time parsing} {
    clock scan {2440588 i:00:59 } \
        -gmt true -locale en_US_roman \
        -format {%J %Ok:%M:%S }
} 3659
test clock-29.392 {time parsing} {
    clock scan {2440588 i:?:lix } \
        -gmt true -locale en_US_roman \
        -format {%J %Ok:%OM:%OS }
} 3659
test clock-29.393 {time parsing} {
    clock scan {2440588 01:00:59 AM} \
        -gmt true -locale en_US_roman \
        -format {%J %I:%M:%S %p}
} 3659
test clock-29.394 {time parsing} {
    clock scan {2440588 01:?:lix AM} \
        -gmt true -locale en_US_roman \
        -format {%J %I:%OM:%OS %p}
} 3659
test clock-29.395 {time parsing} {
    clock scan {2440588  1:00:59 AM} \
        -gmt true -locale en_US_roman \
        -format {%J %l:%M:%S %p}
} 3659
test clock-29.396 {time parsing} {
    clock scan {2440588  1:?:lix AM} \
        -gmt true -locale en_US_roman \
        -format {%J %l:%OM:%OS %p}
} 3659
test clock-29.397 {time parsing} {
    clock scan {2440588 i:00:59 AM} \
        -gmt true -locale en_US_roman \
        -format {%J %OI:%M:%S %p}
} 3659
test clock-29.398 {time parsing} {
    clock scan {2440588 i:?:lix AM} \
        -gmt true -locale en_US_roman \
        -format {%J %OI:%OM:%OS %p}
} 3659
test clock-29.399 {time parsing} {
    clock scan {2440588 i:00:59 AM} \
        -gmt true -locale en_US_roman \
        -format {%J %Ol:%M:%S %p}
} 3659
test clock-29.400 {time parsing} {
    clock scan {2440588 i:?:lix AM} \
        -gmt true -locale en_US_roman \
        -format {%J %Ol:%OM:%OS %p}
} 3659
test clock-29.401 {time parsing} {
    clock scan {2440588 01:00:59 am} \
        -gmt true -locale en_US_roman \
        -format {%J %I:%M:%S %P}
} 3659
test clock-29.402 {time parsing} {
    clock scan {2440588 01:?:lix am} \
        -gmt true -locale en_US_roman \
        -format {%J %I:%OM:%OS %P}
} 3659
test clock-29.403 {time parsing} {
    clock scan {2440588  1:00:59 am} \
        -gmt true -locale en_US_roman \
        -format {%J %l:%M:%S %P}
} 3659
test clock-29.404 {time parsing} {
    clock scan {2440588  1:?:lix am} \
        -gmt true -locale en_US_roman \
        -format {%J %l:%OM:%OS %P}
} 3659
test clock-29.405 {time parsing} {
    clock scan {2440588 i:00:59 am} \
        -gmt true -locale en_US_roman \
        -format {%J %OI:%M:%S %P}
} 3659
test clock-29.406 {time parsing} {
    clock scan {2440588 i:?:lix am} \
        -gmt true -locale en_US_roman \
        -format {%J %OI:%OM:%OS %P}
} 3659
test clock-29.407 {time parsing} {
    clock scan {2440588 i:00:59 am} \
        -gmt true -locale en_US_roman \
        -format {%J %Ol:%M:%S %P}
} 3659
test clock-29.408 {time parsing} {
    clock scan {2440588 i:?:lix am} \
        -gmt true -locale en_US_roman \
        -format {%J %Ol:%OM:%OS %P}
} 3659
test clock-29.409 {time parsing} {
    clock scan {2440588 01:01 } \
        -gmt true -locale en_US_roman \
        -format {%J %H:%M }
} 3660
test clock-29.410 {time parsing} {
    clock scan {2440588 01:i } \
        -gmt true -locale en_US_roman \
        -format {%J %H:%OM }
} 3660
test clock-29.411 {time parsing} {
    clock scan {2440588 01:01:00 } \
        -gmt true -locale en_US_roman \
        -format {%J %H:%M:%S }
} 3660
test clock-29.412 {time parsing} {
    clock scan {2440588 01:i:? } \
        -gmt true -locale en_US_roman \
        -format {%J %H:%OM:%OS }
} 3660
test clock-29.413 {time parsing} {
    clock scan {2440588  1:01 } \
        -gmt true -locale en_US_roman \
        -format {%J %k:%M }
} 3660
test clock-29.414 {time parsing} {
    clock scan {2440588  1:i } \
        -gmt true -locale en_US_roman \
        -format {%J %k:%OM }
} 3660
test clock-29.415 {time parsing} {
    clock scan {2440588  1:01:00 } \
        -gmt true -locale en_US_roman \
        -format {%J %k:%M:%S }
} 3660
test clock-29.416 {time parsing} {
    clock scan {2440588  1:i:? } \
        -gmt true -locale en_US_roman \
        -format {%J %k:%OM:%OS }
} 3660
test clock-29.417 {time parsing} {
    clock scan {2440588 i:01 } \
        -gmt true -locale en_US_roman \
        -format {%J %OH:%M }
} 3660
test clock-29.418 {time parsing} {
    clock scan {2440588 i:i } \
        -gmt true -locale en_US_roman \
        -format {%J %OH:%OM }
} 3660
test clock-29.419 {time parsing} {
    clock scan {2440588 i:01:00 } \
        -gmt true -locale en_US_roman \
        -format {%J %OH:%M:%S }
} 3660
test clock-29.420 {time parsing} {
    clock scan {2440588 i:i:? } \
        -gmt true -locale en_US_roman \
        -format {%J %OH:%OM:%OS }
} 3660
test clock-29.421 {time parsing} {
    clock scan {2440588 i:01 } \
        -gmt true -locale en_US_roman \
        -format {%J %Ok:%M }
} 3660
test clock-29.422 {time parsing} {
    clock scan {2440588 i:i } \
        -gmt true -locale en_US_roman \
        -format {%J %Ok:%OM }
} 3660
test clock-29.423 {time parsing} {
    clock scan {2440588 i:01:00 } \
        -gmt true -locale en_US_roman \
        -format {%J %Ok:%M:%S }
} 3660
test clock-29.424 {time parsing} {
    clock scan {2440588 i:i:? } \
        -gmt true -locale en_US_roman \
        -format {%J %Ok:%OM:%OS }
} 3660
test clock-29.425 {time parsing} {
    clock scan {2440588 01:01 AM} \
        -gmt true -locale en_US_roman \
        -format {%J %I:%M %p}
} 3660
test clock-29.426 {time parsing} {
    clock scan {2440588 01:i AM} \
        -gmt true -locale en_US_roman \
        -format {%J %I:%OM %p}
} 3660
test clock-29.427 {time parsing} {
    clock scan {2440588 01:01:00 AM} \
        -gmt true -locale en_US_roman \
        -format {%J %I:%M:%S %p}
} 3660
test clock-29.428 {time parsing} {
    clock scan {2440588 01:i:? AM} \
        -gmt true -locale en_US_roman \
        -format {%J %I:%OM:%OS %p}
} 3660
test clock-29.429 {time parsing} {
    clock scan {2440588  1:01 AM} \
        -gmt true -locale en_US_roman \
        -format {%J %l:%M %p}
} 3660
test clock-29.430 {time parsing} {
    clock scan {2440588  1:i AM} \
        -gmt true -locale en_US_roman \
        -format {%J %l:%OM %p}
} 3660
test clock-29.431 {time parsing} {
    clock scan {2440588  1:01:00 AM} \
        -gmt true -locale en_US_roman \
        -format {%J %l:%M:%S %p}
} 3660
test clock-29.432 {time parsing} {
    clock scan {2440588  1:i:? AM} \
        -gmt true -locale en_US_roman \
        -format {%J %l:%OM:%OS %p}
} 3660
test clock-29.433 {time parsing} {
    clock scan {2440588 i:01 AM} \
        -gmt true -locale en_US_roman \
        -format {%J %OI:%M %p}
} 3660
test clock-29.434 {time parsing} {
    clock scan {2440588 i:i AM} \
        -gmt true -locale en_US_roman \
        -format {%J %OI:%OM %p}
} 3660
test clock-29.435 {time parsing} {
    clock scan {2440588 i:01:00 AM} \
        -gmt true -locale en_US_roman \
        -format {%J %OI:%M:%S %p}
} 3660
test clock-29.436 {time parsing} {
    clock scan {2440588 i:i:? AM} \
        -gmt true -locale en_US_roman \
        -format {%J %OI:%OM:%OS %p}
} 3660
test clock-29.437 {time parsing} {
    clock scan {2440588 i:01 AM} \
        -gmt true -locale en_US_roman \
        -format {%J %Ol:%M %p}
} 3660
test clock-29.438 {time parsing} {
    clock scan {2440588 i:i AM} \
        -gmt true -locale en_US_roman \
        -format {%J %Ol:%OM %p}
} 3660
test clock-29.439 {time parsing} {
    clock scan {2440588 i:01:00 AM} \
        -gmt true -locale en_US_roman \
        -format {%J %Ol:%M:%S %p}
} 3660
test clock-29.440 {time parsing} {
    clock scan {2440588 i:i:? AM} \
        -gmt true -locale en_US_roman \
        -format {%J %Ol:%OM:%OS %p}
} 3660
test clock-29.441 {time parsing} {
    clock scan {2440588 01:01 am} \
        -gmt true -locale en_US_roman \
        -format {%J %I:%M %P}
} 3660
test clock-29.442 {time parsing} {
    clock scan {2440588 01:i am} \
        -gmt true -locale en_US_roman \
        -format {%J %I:%OM %P}
} 3660
test clock-29.443 {time parsing} {
    clock scan {2440588 01:01:00 am} \
        -gmt true -locale en_US_roman \
        -format {%J %I:%M:%S %P}
} 3660
test clock-29.444 {time parsing} {
    clock scan {2440588 01:i:? am} \
        -gmt true -locale en_US_roman \
        -format {%J %I:%OM:%OS %P}
} 3660
test clock-29.445 {time parsing} {
    clock scan {2440588  1:01 am} \
        -gmt true -locale en_US_roman \
        -format {%J %l:%M %P}
} 3660
test clock-29.446 {time parsing} {
    clock scan {2440588  1:i am} \
        -gmt true -locale en_US_roman \
        -format {%J %l:%OM %P}
} 3660
test clock-29.447 {time parsing} {
    clock scan {2440588  1:01:00 am} \
        -gmt true -locale en_US_roman \
        -format {%J %l:%M:%S %P}
} 3660
test clock-29.448 {time parsing} {
    clock scan {2440588  1:i:? am} \
        -gmt true -locale en_US_roman \
        -format {%J %l:%OM:%OS %P}
} 3660
test clock-29.449 {time parsing} {
    clock scan {2440588 i:01 am} \
        -gmt true -locale en_US_roman \
        -format {%J %OI:%M %P}
} 3660
test clock-29.450 {time parsing} {
    clock scan {2440588 i:i am} \
        -gmt true -locale en_US_roman \
        -format {%J %OI:%OM %P}
} 3660
test clock-29.451 {time parsing} {
    clock scan {2440588 i:01:00 am} \
        -gmt true -locale en_US_roman \
        -format {%J %OI:%M:%S %P}
} 3660
test clock-29.452 {time parsing} {
    clock scan {2440588 i:i:? am} \
        -gmt true -locale en_US_roman \
        -format {%J %OI:%OM:%OS %P}
} 3660
test clock-29.453 {time parsing} {
    clock scan {2440588 i:01 am} \
        -gmt true -locale en_US_roman \
        -format {%J %Ol:%M %P}
} 3660
test clock-29.454 {time parsing} {
    clock scan {2440588 i:i am} \
        -gmt true -locale en_US_roman \
        -format {%J %Ol:%OM %P}
} 3660
test clock-29.455 {time parsing} {
    clock scan {2440588 i:01:00 am} \
        -gmt true -locale en_US_roman \
        -format {%J %Ol:%M:%S %P}
} 3660
test clock-29.456 {time parsing} {
    clock scan {2440588 i:i:? am} \
        -gmt true -locale en_US_roman \
        -format {%J %Ol:%OM:%OS %P}
} 3660
test clock-29.457 {time parsing} {
    clock scan {2440588 01:01:01 } \
        -gmt true -locale en_US_roman \
        -format {%J %H:%M:%S }
} 3661
test clock-29.458 {time parsing} {
    clock scan {2440588 01:i:i } \
        -gmt true -locale en_US_roman \
        -format {%J %H:%OM:%OS }
} 3661
test clock-29.459 {time parsing} {
    clock scan {2440588  1:01:01 } \
        -gmt true -locale en_US_roman \
        -format {%J %k:%M:%S }
} 3661
test clock-29.460 {time parsing} {
    clock scan {2440588  1:i:i } \
        -gmt true -locale en_US_roman \
        -format {%J %k:%OM:%OS }
} 3661
test clock-29.461 {time parsing} {
    clock scan {2440588 i:01:01 } \
        -gmt true -locale en_US_roman \
        -format {%J %OH:%M:%S }
} 3661
test clock-29.462 {time parsing} {
    clock scan {2440588 i:i:i } \
        -gmt true -locale en_US_roman \
        -format {%J %OH:%OM:%OS }
} 3661
test clock-29.463 {time parsing} {
    clock scan {2440588 i:01:01 } \
        -gmt true -locale en_US_roman \
        -format {%J %Ok:%M:%S }
} 3661
test clock-29.464 {time parsing} {
    clock scan {2440588 i:i:i } \
        -gmt true -locale en_US_roman \
        -format {%J %Ok:%OM:%OS }
} 3661
test clock-29.465 {time parsing} {
    clock scan {2440588 01:01:01 AM} \
        -gmt true -locale en_US_roman \
        -format {%J %I:%M:%S %p}
} 3661
test clock-29.466 {time parsing} {
    clock scan {2440588 01:i:i AM} \
        -gmt true -locale en_US_roman \
        -format {%J %I:%OM:%OS %p}
} 3661
test clock-29.467 {time parsing} {
    clock scan {2440588  1:01:01 AM} \
        -gmt true -locale en_US_roman \
        -format {%J %l:%M:%S %p}
} 3661
test clock-29.468 {time parsing} {
    clock scan {2440588  1:i:i AM} \
        -gmt true -locale en_US_roman \
        -format {%J %l:%OM:%OS %p}
} 3661
test clock-29.469 {time parsing} {
    clock scan {2440588 i:01:01 AM} \
        -gmt true -locale en_US_roman \
        -format {%J %OI:%M:%S %p}
} 3661
test clock-29.470 {time parsing} {
    clock scan {2440588 i:i:i AM} \
        -gmt true -locale en_US_roman \
        -format {%J %OI:%OM:%OS %p}
} 3661
test clock-29.471 {time parsing} {
    clock scan {2440588 i:01:01 AM} \
        -gmt true -locale en_US_roman \
        -format {%J %Ol:%M:%S %p}
} 3661
test clock-29.472 {time parsing} {
    clock scan {2440588 i:i:i AM} \
        -gmt true -locale en_US_roman \
        -format {%J %Ol:%OM:%OS %p}
} 3661
test clock-29.473 {time parsing} {
    clock scan {2440588 01:01:01 am} \
        -gmt true -locale en_US_roman \
        -format {%J %I:%M:%S %P}
} 3661
test clock-29.474 {time parsing} {
    clock scan {2440588 01:i:i am} \
        -gmt true -locale en_US_roman \
        -format {%J %I:%OM:%OS %P}
} 3661
test clock-29.475 {time parsing} {
    clock scan {2440588  1:01:01 am} \
        -gmt true -locale en_US_roman \
        -format {%J %l:%M:%S %P}
} 3661
test clock-29.476 {time parsing} {
    clock scan {2440588  1:i:i am} \
        -gmt true -locale en_US_roman \
        -format {%J %l:%OM:%OS %P}
} 3661
test clock-29.477 {time parsing} {
    clock scan {2440588 i:01:01 am} \
        -gmt true -locale en_US_roman \
        -format {%J %OI:%M:%S %P}
} 3661
test clock-29.478 {time parsing} {
    clock scan {2440588 i:i:i am} \
        -gmt true -locale en_US_roman \
        -format {%J %OI:%OM:%OS %P}
} 3661
test clock-29.479 {time parsing} {
    clock scan {2440588 i:01:01 am} \
        -gmt true -locale en_US_roman \
        -format {%J %Ol:%M:%S %P}
} 3661
test clock-29.480 {time parsing} {
    clock scan {2440588 i:i:i am} \
        -gmt true -locale en_US_roman \
        -format {%J %Ol:%OM:%OS %P}
} 3661
test clock-29.481 {time parsing} {
    clock scan {2440588 01:01:59 } \
        -gmt true -locale en_US_roman \
        -format {%J %H:%M:%S }
} 3719
test clock-29.482 {time parsing} {
    clock scan {2440588 01:i:lix } \
        -gmt true -locale en_US_roman \
        -format {%J %H:%OM:%OS }
} 3719
test clock-29.483 {time parsing} {
    clock scan {2440588  1:01:59 } \
        -gmt true -locale en_US_roman \
        -format {%J %k:%M:%S }
} 3719
test clock-29.484 {time parsing} {
    clock scan {2440588  1:i:lix } \
        -gmt true -locale en_US_roman \
        -format {%J %k:%OM:%OS }
} 3719
test clock-29.485 {time parsing} {
    clock scan {2440588 i:01:59 } \
        -gmt true -locale en_US_roman \
        -format {%J %OH:%M:%S }
} 3719
test clock-29.486 {time parsing} {
    clock scan {2440588 i:i:lix } \
        -gmt true -locale en_US_roman \
        -format {%J %OH:%OM:%OS }
} 3719
test clock-29.487 {time parsing} {
    clock scan {2440588 i:01:59 } \
        -gmt true -locale en_US_roman \
        -format {%J %Ok:%M:%S }
} 3719
test clock-29.488 {time parsing} {
    clock scan {2440588 i:i:lix } \
        -gmt true -locale en_US_roman \
        -format {%J %Ok:%OM:%OS }
} 3719
test clock-29.489 {time parsing} {
    clock scan {2440588 01:01:59 AM} \
        -gmt true -locale en_US_roman \
        -format {%J %I:%M:%S %p}
} 3719
test clock-29.490 {time parsing} {
    clock scan {2440588 01:i:lix AM} \
        -gmt true -locale en_US_roman \
        -format {%J %I:%OM:%OS %p}
} 3719
test clock-29.491 {time parsing} {
    clock scan {2440588  1:01:59 AM} \
        -gmt true -locale en_US_roman \
        -format {%J %l:%M:%S %p}
} 3719
test clock-29.492 {time parsing} {
    clock scan {2440588  1:i:lix AM} \
        -gmt true -locale en_US_roman \
        -format {%J %l:%OM:%OS %p}
} 3719
test clock-29.493 {time parsing} {
    clock scan {2440588 i:01:59 AM} \
        -gmt true -locale en_US_roman \
        -format {%J %OI:%M:%S %p}
} 3719
test clock-29.494 {time parsing} {
    clock scan {2440588 i:i:lix AM} \
        -gmt true -locale en_US_roman \
        -format {%J %OI:%OM:%OS %p}
} 3719
test clock-29.495 {time parsing} {
    clock scan {2440588 i:01:59 AM} \
        -gmt true -locale en_US_roman \
        -format {%J %Ol:%M:%S %p}
} 3719
test clock-29.496 {time parsing} {
    clock scan {2440588 i:i:lix AM} \
        -gmt true -locale en_US_roman \
        -format {%J %Ol:%OM:%OS %p}
} 3719
test clock-29.497 {time parsing} {
    clock scan {2440588 01:01:59 am} \
        -gmt true -locale en_US_roman \
        -format {%J %I:%M:%S %P}
} 3719
test clock-29.498 {time parsing} {
    clock scan {2440588 01:i:lix am} \
        -gmt true -locale en_US_roman \
        -format {%J %I:%OM:%OS %P}
} 3719
test clock-29.499 {time parsing} {
    clock scan {2440588  1:01:59 am} \
        -gmt true -locale en_US_roman \
        -format {%J %l:%M:%S %P}
} 3719
test clock-29.500 {time parsing} {
    clock scan {2440588  1:i:lix am} \
        -gmt true -locale en_US_roman \
        -format {%J %l:%OM:%OS %P}
} 3719
test clock-29.501 {time parsing} {
    clock scan {2440588 i:01:59 am} \
        -gmt true -locale en_US_roman \
        -format {%J %OI:%M:%S %P}
} 3719
test clock-29.502 {time parsing} {
    clock scan {2440588 i:i:lix am} \
        -gmt true -locale en_US_roman \
        -format {%J %OI:%OM:%OS %P}
} 3719
test clock-29.503 {time parsing} {
    clock scan {2440588 i:01:59 am} \
        -gmt true -locale en_US_roman \
        -format {%J %Ol:%M:%S %P}
} 3719
test clock-29.504 {time parsing} {
    clock scan {2440588 i:i:lix am} \
        -gmt true -locale en_US_roman \
        -format {%J %Ol:%OM:%OS %P}
} 3719
test clock-29.505 {time parsing} {
    clock scan {2440588 01:59 } \
        -gmt true -locale en_US_roman \
        -format {%J %H:%M }
} 7140
test clock-29.506 {time parsing} {
    clock scan {2440588 01:lix } \
        -gmt true -locale en_US_roman \
        -format {%J %H:%OM }
} 7140
test clock-29.507 {time parsing} {
    clock scan {2440588 01:59:00 } \
        -gmt true -locale en_US_roman \
        -format {%J %H:%M:%S }
} 7140
test clock-29.508 {time parsing} {
    clock scan {2440588 01:lix:? } \
        -gmt true -locale en_US_roman \
        -format {%J %H:%OM:%OS }
} 7140
test clock-29.509 {time parsing} {
    clock scan {2440588  1:59 } \
        -gmt true -locale en_US_roman \
        -format {%J %k:%M }
} 7140
test clock-29.510 {time parsing} {
    clock scan {2440588  1:lix } \
        -gmt true -locale en_US_roman \
        -format {%J %k:%OM }
} 7140
test clock-29.511 {time parsing} {
    clock scan {2440588  1:59:00 } \
        -gmt true -locale en_US_roman \
        -format {%J %k:%M:%S }
} 7140
test clock-29.512 {time parsing} {
    clock scan {2440588  1:lix:? } \
        -gmt true -locale en_US_roman \
        -format {%J %k:%OM:%OS }
} 7140
test clock-29.513 {time parsing} {
    clock scan {2440588 i:59 } \
        -gmt true -locale en_US_roman \
        -format {%J %OH:%M }
} 7140
test clock-29.514 {time parsing} {
    clock scan {2440588 i:lix } \
        -gmt true -locale en_US_roman \
        -format {%J %OH:%OM }
} 7140
test clock-29.515 {time parsing} {
    clock scan {2440588 i:59:00 } \
        -gmt true -locale en_US_roman \
        -format {%J %OH:%M:%S }
} 7140
test clock-29.516 {time parsing} {
    clock scan {2440588 i:lix:? } \
        -gmt true -locale en_US_roman \
        -format {%J %OH:%OM:%OS }
} 7140
test clock-29.517 {time parsing} {
    clock scan {2440588 i:59 } \
        -gmt true -locale en_US_roman \
        -format {%J %Ok:%M }
} 7140
test clock-29.518 {time parsing} {
    clock scan {2440588 i:lix } \
        -gmt true -locale en_US_roman \
        -format {%J %Ok:%OM }
} 7140
test clock-29.519 {time parsing} {
    clock scan {2440588 i:59:00 } \
        -gmt true -locale en_US_roman \
        -format {%J %Ok:%M:%S }
} 7140
test clock-29.520 {time parsing} {
    clock scan {2440588 i:lix:? } \
        -gmt true -locale en_US_roman \
        -format {%J %Ok:%OM:%OS }
} 7140
test clock-29.521 {time parsing} {
    clock scan {2440588 01:59 AM} \
        -gmt true -locale en_US_roman \
        -format {%J %I:%M %p}
} 7140
test clock-29.522 {time parsing} {
    clock scan {2440588 01:lix AM} \
        -gmt true -locale en_US_roman \
        -format {%J %I:%OM %p}
} 7140
test clock-29.523 {time parsing} {
    clock scan {2440588 01:59:00 AM} \
        -gmt true -locale en_US_roman \
        -format {%J %I:%M:%S %p}
} 7140
test clock-29.524 {time parsing} {
    clock scan {2440588 01:lix:? AM} \
        -gmt true -locale en_US_roman \
        -format {%J %I:%OM:%OS %p}
} 7140
test clock-29.525 {time parsing} {
    clock scan {2440588  1:59 AM} \
        -gmt true -locale en_US_roman \
        -format {%J %l:%M %p}
} 7140
test clock-29.526 {time parsing} {
    clock scan {2440588  1:lix AM} \
        -gmt true -locale en_US_roman \
        -format {%J %l:%OM %p}
} 7140
test clock-29.527 {time parsing} {
    clock scan {2440588  1:59:00 AM} \
        -gmt true -locale en_US_roman \
        -format {%J %l:%M:%S %p}
} 7140
test clock-29.528 {time parsing} {
    clock scan {2440588  1:lix:? AM} \
        -gmt true -locale en_US_roman \
        -format {%J %l:%OM:%OS %p}
} 7140
test clock-29.529 {time parsing} {
    clock scan {2440588 i:59 AM} \
        -gmt true -locale en_US_roman \
        -format {%J %OI:%M %p}
} 7140
test clock-29.530 {time parsing} {
    clock scan {2440588 i:lix AM} \
        -gmt true -locale en_US_roman \
        -format {%J %OI:%OM %p}
} 7140
test clock-29.531 {time parsing} {
    clock scan {2440588 i:59:00 AM} \
        -gmt true -locale en_US_roman \
        -format {%J %OI:%M:%S %p}
} 7140
test clock-29.532 {time parsing} {
    clock scan {2440588 i:lix:? AM} \
        -gmt true -locale en_US_roman \
        -format {%J %OI:%OM:%OS %p}
} 7140
test clock-29.533 {time parsing} {
    clock scan {2440588 i:59 AM} \
        -gmt true -locale en_US_roman \
        -format {%J %Ol:%M %p}
} 7140
test clock-29.534 {time parsing} {
    clock scan {2440588 i:lix AM} \
        -gmt true -locale en_US_roman \
        -format {%J %Ol:%OM %p}
} 7140
test clock-29.535 {time parsing} {
    clock scan {2440588 i:59:00 AM} \
        -gmt true -locale en_US_roman \
        -format {%J %Ol:%M:%S %p}
} 7140
test clock-29.536 {time parsing} {
    clock scan {2440588 i:lix:? AM} \
        -gmt true -locale en_US_roman \
        -format {%J %Ol:%OM:%OS %p}
} 7140
test clock-29.537 {time parsing} {
    clock scan {2440588 01:59 am} \
        -gmt true -locale en_US_roman \
        -format {%J %I:%M %P}
} 7140
test clock-29.538 {time parsing} {
    clock scan {2440588 01:lix am} \
        -gmt true -locale en_US_roman \
        -format {%J %I:%OM %P}
} 7140
test clock-29.539 {time parsing} {
    clock scan {2440588 01:59:00 am} \
        -gmt true -locale en_US_roman \
        -format {%J %I:%M:%S %P}
} 7140
test clock-29.540 {time parsing} {
    clock scan {2440588 01:lix:? am} \
        -gmt true -locale en_US_roman \
        -format {%J %I:%OM:%OS %P}
} 7140
test clock-29.541 {time parsing} {
    clock scan {2440588  1:59 am} \
        -gmt true -locale en_US_roman \
        -format {%J %l:%M %P}
} 7140
test clock-29.542 {time parsing} {
    clock scan {2440588  1:lix am} \
        -gmt true -locale en_US_roman \
        -format {%J %l:%OM %P}
} 7140
test clock-29.543 {time parsing} {
    clock scan {2440588  1:59:00 am} \
        -gmt true -locale en_US_roman \
        -format {%J %l:%M:%S %P}
} 7140
test clock-29.544 {time parsing} {
    clock scan {2440588  1:lix:? am} \
        -gmt true -locale en_US_roman \
        -format {%J %l:%OM:%OS %P}
} 7140
test clock-29.545 {time parsing} {
    clock scan {2440588 i:59 am} \
        -gmt true -locale en_US_roman \
        -format {%J %OI:%M %P}
} 7140
test clock-29.546 {time parsing} {
    clock scan {2440588 i:lix am} \
        -gmt true -locale en_US_roman \
        -format {%J %OI:%OM %P}
} 7140
test clock-29.547 {time parsing} {
    clock scan {2440588 i:59:00 am} \
        -gmt true -locale en_US_roman \
        -format {%J %OI:%M:%S %P}
} 7140
test clock-29.548 {time parsing} {
    clock scan {2440588 i:lix:? am} \
        -gmt true -locale en_US_roman \
        -format {%J %OI:%OM:%OS %P}
} 7140
test clock-29.549 {time parsing} {
    clock scan {2440588 i:59 am} \
        -gmt true -locale en_US_roman \
        -format {%J %Ol:%M %P}
} 7140
test clock-29.550 {time parsing} {
    clock scan {2440588 i:lix am} \
        -gmt true -locale en_US_roman \
        -format {%J %Ol:%OM %P}
} 7140
test clock-29.551 {time parsing} {
    clock scan {2440588 i:59:00 am} \
        -gmt true -locale en_US_roman \
        -format {%J %Ol:%M:%S %P}
} 7140
test clock-29.552 {time parsing} {
    clock scan {2440588 i:lix:? am} \
        -gmt true -locale en_US_roman \
        -format {%J %Ol:%OM:%OS %P}
} 7140
test clock-29.553 {time parsing} {
    clock scan {2440588 01:59:01 } \
        -gmt true -locale en_US_roman \
        -format {%J %H:%M:%S }
} 7141
test clock-29.554 {time parsing} {
    clock scan {2440588 01:lix:i } \
        -gmt true -locale en_US_roman \
        -format {%J %H:%OM:%OS }
} 7141
test clock-29.555 {time parsing} {
    clock scan {2440588  1:59:01 } \
        -gmt true -locale en_US_roman \
        -format {%J %k:%M:%S }
} 7141
test clock-29.556 {time parsing} {
    clock scan {2440588  1:lix:i } \
        -gmt true -locale en_US_roman \
        -format {%J %k:%OM:%OS }
} 7141
test clock-29.557 {time parsing} {
    clock scan {2440588 i:59:01 } \
        -gmt true -locale en_US_roman \
        -format {%J %OH:%M:%S }
} 7141
test clock-29.558 {time parsing} {
    clock scan {2440588 i:lix:i } \
        -gmt true -locale en_US_roman \
        -format {%J %OH:%OM:%OS }
} 7141
test clock-29.559 {time parsing} {
    clock scan {2440588 i:59:01 } \
        -gmt true -locale en_US_roman \
        -format {%J %Ok:%M:%S }
} 7141
test clock-29.560 {time parsing} {
    clock scan {2440588 i:lix:i } \
        -gmt true -locale en_US_roman \
        -format {%J %Ok:%OM:%OS }
} 7141
test clock-29.561 {time parsing} {
    clock scan {2440588 01:59:01 AM} \
        -gmt true -locale en_US_roman \
        -format {%J %I:%M:%S %p}
} 7141
test clock-29.562 {time parsing} {
    clock scan {2440588 01:lix:i AM} \
        -gmt true -locale en_US_roman \
        -format {%J %I:%OM:%OS %p}
} 7141
test clock-29.563 {time parsing} {
    clock scan {2440588  1:59:01 AM} \
        -gmt true -locale en_US_roman \
        -format {%J %l:%M:%S %p}
} 7141
test clock-29.564 {time parsing} {
    clock scan {2440588  1:lix:i AM} \
        -gmt true -locale en_US_roman \
        -format {%J %l:%OM:%OS %p}
} 7141
test clock-29.565 {time parsing} {
    clock scan {2440588 i:59:01 AM} \
        -gmt true -locale en_US_roman \
        -format {%J %OI:%M:%S %p}
} 7141
test clock-29.566 {time parsing} {
    clock scan {2440588 i:lix:i AM} \
        -gmt true -locale en_US_roman \
        -format {%J %OI:%OM:%OS %p}
} 7141
test clock-29.567 {time parsing} {
    clock scan {2440588 i:59:01 AM} \
        -gmt true -locale en_US_roman \
        -format {%J %Ol:%M:%S %p}
} 7141
test clock-29.568 {time parsing} {
    clock scan {2440588 i:lix:i AM} \
        -gmt true -locale en_US_roman \
        -format {%J %Ol:%OM:%OS %p}
} 7141
test clock-29.569 {time parsing} {
    clock scan {2440588 01:59:01 am} \
        -gmt true -locale en_US_roman \
        -format {%J %I:%M:%S %P}
} 7141
test clock-29.570 {time parsing} {
    clock scan {2440588 01:lix:i am} \
        -gmt true -locale en_US_roman \
        -format {%J %I:%OM:%OS %P}
} 7141
test clock-29.571 {time parsing} {
    clock scan {2440588  1:59:01 am} \
        -gmt true -locale en_US_roman \
        -format {%J %l:%M:%S %P}
} 7141
test clock-29.572 {time parsing} {
    clock scan {2440588  1:lix:i am} \
        -gmt true -locale en_US_roman \
        -format {%J %l:%OM:%OS %P}
} 7141
test clock-29.573 {time parsing} {
    clock scan {2440588 i:59:01 am} \
        -gmt true -locale en_US_roman \
        -format {%J %OI:%M:%S %P}
} 7141
test clock-29.574 {time parsing} {
    clock scan {2440588 i:lix:i am} \
        -gmt true -locale en_US_roman \
        -format {%J %OI:%OM:%OS %P}
} 7141
test clock-29.575 {time parsing} {
    clock scan {2440588 i:59:01 am} \
        -gmt true -locale en_US_roman \
        -format {%J %Ol:%M:%S %P}
} 7141
test clock-29.576 {time parsing} {
    clock scan {2440588 i:lix:i am} \
        -gmt true -locale en_US_roman \
        -format {%J %Ol:%OM:%OS %P}
} 7141
test clock-29.577 {time parsing} {
    clock scan {2440588 01:59:59 } \
        -gmt true -locale en_US_roman \
        -format {%J %H:%M:%S }
} 7199
test clock-29.578 {time parsing} {
    clock scan {2440588 01:lix:lix } \
        -gmt true -locale en_US_roman \
        -format {%J %H:%OM:%OS }
} 7199
test clock-29.579 {time parsing} {
    clock scan {2440588  1:59:59 } \
        -gmt true -locale en_US_roman \
        -format {%J %k:%M:%S }
} 7199
test clock-29.580 {time parsing} {
    clock scan {2440588  1:lix:lix } \
        -gmt true -locale en_US_roman \
        -format {%J %k:%OM:%OS }
} 7199
test clock-29.581 {time parsing} {
    clock scan {2440588 i:59:59 } \
        -gmt true -locale en_US_roman \
        -format {%J %OH:%M:%S }
} 7199
test clock-29.582 {time parsing} {
    clock scan {2440588 i:lix:lix } \
        -gmt true -locale en_US_roman \
        -format {%J %OH:%OM:%OS }
} 7199
test clock-29.583 {time parsing} {
    clock scan {2440588 i:59:59 } \
        -gmt true -locale en_US_roman \
        -format {%J %Ok:%M:%S }
} 7199
test clock-29.584 {time parsing} {
    clock scan {2440588 i:lix:lix } \
        -gmt true -locale en_US_roman \
        -format {%J %Ok:%OM:%OS }
} 7199
test clock-29.585 {time parsing} {
    clock scan {2440588 01:59:59 AM} \
        -gmt true -locale en_US_roman \
        -format {%J %I:%M:%S %p}
} 7199
test clock-29.586 {time parsing} {
    clock scan {2440588 01:lix:lix AM} \
        -gmt true -locale en_US_roman \
        -format {%J %I:%OM:%OS %p}
} 7199
test clock-29.587 {time parsing} {
    clock scan {2440588  1:59:59 AM} \
        -gmt true -locale en_US_roman \
        -format {%J %l:%M:%S %p}
} 7199
test clock-29.588 {time parsing} {
    clock scan {2440588  1:lix:lix AM} \
        -gmt true -locale en_US_roman \
        -format {%J %l:%OM:%OS %p}
} 7199
test clock-29.589 {time parsing} {
    clock scan {2440588 i:59:59 AM} \
        -gmt true -locale en_US_roman \
        -format {%J %OI:%M:%S %p}
} 7199
test clock-29.590 {time parsing} {
    clock scan {2440588 i:lix:lix AM} \
        -gmt true -locale en_US_roman \
        -format {%J %OI:%OM:%OS %p}
} 7199
test clock-29.591 {time parsing} {
    clock scan {2440588 i:59:59 AM} \
        -gmt true -locale en_US_roman \
        -format {%J %Ol:%M:%S %p}
} 7199
test clock-29.592 {time parsing} {
    clock scan {2440588 i:lix:lix AM} \
        -gmt true -locale en_US_roman \
        -format {%J %Ol:%OM:%OS %p}
} 7199
test clock-29.593 {time parsing} {
    clock scan {2440588 01:59:59 am} \
        -gmt true -locale en_US_roman \
        -format {%J %I:%M:%S %P}
} 7199
test clock-29.594 {time parsing} {
    clock scan {2440588 01:lix:lix am} \
        -gmt true -locale en_US_roman \
        -format {%J %I:%OM:%OS %P}
} 7199
test clock-29.595 {time parsing} {
    clock scan {2440588  1:59:59 am} \
        -gmt true -locale en_US_roman \
        -format {%J %l:%M:%S %P}
} 7199
test clock-29.596 {time parsing} {
    clock scan {2440588  1:lix:lix am} \
        -gmt true -locale en_US_roman \
        -format {%J %l:%OM:%OS %P}
} 7199
test clock-29.597 {time parsing} {
    clock scan {2440588 i:59:59 am} \
        -gmt true -locale en_US_roman \
        -format {%J %OI:%M:%S %P}
} 7199
test clock-29.598 {time parsing} {
    clock scan {2440588 i:lix:lix am} \
        -gmt true -locale en_US_roman \
        -format {%J %OI:%OM:%OS %P}
} 7199
test clock-29.599 {time parsing} {
    clock scan {2440588 i:59:59 am} \
        -gmt true -locale en_US_roman \
        -format {%J %Ol:%M:%S %P}
} 7199
test clock-29.600 {time parsing} {
    clock scan {2440588 i:lix:lix am} \
        -gmt true -locale en_US_roman \
        -format {%J %Ol:%OM:%OS %P}
} 7199
test clock-29.601 {time parsing} {
    clock scan {2440588 11 } \
        -gmt true -locale en_US_roman \
        -format {%J %H }
} 39600
test clock-29.602 {time parsing} {
    clock scan {2440588 11:00 } \
        -gmt true -locale en_US_roman \
        -format {%J %H:%M }
} 39600
test clock-29.603 {time parsing} {
    clock scan {2440588 11:? } \
        -gmt true -locale en_US_roman \
        -format {%J %H:%OM }
} 39600
test clock-29.604 {time parsing} {
    clock scan {2440588 11:00:00 } \
        -gmt true -locale en_US_roman \
        -format {%J %H:%M:%S }
} 39600
test clock-29.605 {time parsing} {
    clock scan {2440588 11:?:? } \
        -gmt true -locale en_US_roman \
        -format {%J %H:%OM:%OS }
} 39600
test clock-29.606 {time parsing} {
    clock scan {2440588 11 } \
        -gmt true -locale en_US_roman \
        -format {%J %k }
} 39600
test clock-29.607 {time parsing} {
    clock scan {2440588 11:00 } \
        -gmt true -locale en_US_roman \
        -format {%J %k:%M }
} 39600
test clock-29.608 {time parsing} {
    clock scan {2440588 11:? } \
        -gmt true -locale en_US_roman \
        -format {%J %k:%OM }
} 39600
test clock-29.609 {time parsing} {
    clock scan {2440588 11:00:00 } \
        -gmt true -locale en_US_roman \
        -format {%J %k:%M:%S }
} 39600
test clock-29.610 {time parsing} {
    clock scan {2440588 11:?:? } \
        -gmt true -locale en_US_roman \
        -format {%J %k:%OM:%OS }
} 39600
test clock-29.611 {time parsing} {
    clock scan {2440588 xi } \
        -gmt true -locale en_US_roman \
        -format {%J %OH }
} 39600
test clock-29.612 {time parsing} {
    clock scan {2440588 xi:00 } \
        -gmt true -locale en_US_roman \
        -format {%J %OH:%M }
} 39600
test clock-29.613 {time parsing} {
    clock scan {2440588 xi:? } \
        -gmt true -locale en_US_roman \
        -format {%J %OH:%OM }
} 39600
test clock-29.614 {time parsing} {
    clock scan {2440588 xi:00:00 } \
        -gmt true -locale en_US_roman \
        -format {%J %OH:%M:%S }
} 39600
test clock-29.615 {time parsing} {
    clock scan {2440588 xi:?:? } \
        -gmt true -locale en_US_roman \
        -format {%J %OH:%OM:%OS }
} 39600
test clock-29.616 {time parsing} {
    clock scan {2440588 xi } \
        -gmt true -locale en_US_roman \
        -format {%J %Ok }
} 39600
test clock-29.617 {time parsing} {
    clock scan {2440588 xi:00 } \
        -gmt true -locale en_US_roman \
        -format {%J %Ok:%M }
} 39600
test clock-29.618 {time parsing} {
    clock scan {2440588 xi:? } \
        -gmt true -locale en_US_roman \
        -format {%J %Ok:%OM }
} 39600
test clock-29.619 {time parsing} {
    clock scan {2440588 xi:00:00 } \
        -gmt true -locale en_US_roman \
        -format {%J %Ok:%M:%S }
} 39600
test clock-29.620 {time parsing} {
    clock scan {2440588 xi:?:? } \
        -gmt true -locale en_US_roman \
        -format {%J %Ok:%OM:%OS }
} 39600
test clock-29.621 {time parsing} {
    clock scan {2440588 11 AM} \
        -gmt true -locale en_US_roman \
        -format {%J %I %p}
} 39600
test clock-29.622 {time parsing} {
    clock scan {2440588 11:00 AM} \
        -gmt true -locale en_US_roman \
        -format {%J %I:%M %p}
} 39600
test clock-29.623 {time parsing} {
    clock scan {2440588 11:? AM} \
        -gmt true -locale en_US_roman \
        -format {%J %I:%OM %p}
} 39600
test clock-29.624 {time parsing} {
    clock scan {2440588 11:00:00 AM} \
        -gmt true -locale en_US_roman \
        -format {%J %I:%M:%S %p}
} 39600
test clock-29.625 {time parsing} {
    clock scan {2440588 11:?:? AM} \
        -gmt true -locale en_US_roman \
        -format {%J %I:%OM:%OS %p}
} 39600
test clock-29.626 {time parsing} {
    clock scan {2440588 11 AM} \
        -gmt true -locale en_US_roman \
        -format {%J %l %p}
} 39600
test clock-29.627 {time parsing} {
    clock scan {2440588 11:00 AM} \
        -gmt true -locale en_US_roman \
        -format {%J %l:%M %p}
} 39600
test clock-29.628 {time parsing} {
    clock scan {2440588 11:? AM} \
        -gmt true -locale en_US_roman \
        -format {%J %l:%OM %p}
} 39600
test clock-29.629 {time parsing} {
    clock scan {2440588 11:00:00 AM} \
        -gmt true -locale en_US_roman \
        -format {%J %l:%M:%S %p}
} 39600
test clock-29.630 {time parsing} {
    clock scan {2440588 11:?:? AM} \
        -gmt true -locale en_US_roman \
        -format {%J %l:%OM:%OS %p}
} 39600
test clock-29.631 {time parsing} {
    clock scan {2440588 xi AM} \
        -gmt true -locale en_US_roman \
        -format {%J %OI %p}
} 39600
test clock-29.632 {time parsing} {
    clock scan {2440588 xi:00 AM} \
        -gmt true -locale en_US_roman \
        -format {%J %OI:%M %p}
} 39600
test clock-29.633 {time parsing} {
    clock scan {2440588 xi:? AM} \
        -gmt true -locale en_US_roman \
        -format {%J %OI:%OM %p}
} 39600
test clock-29.634 {time parsing} {
    clock scan {2440588 xi:00:00 AM} \
        -gmt true -locale en_US_roman \
        -format {%J %OI:%M:%S %p}
} 39600
test clock-29.635 {time parsing} {
    clock scan {2440588 xi:?:? AM} \
        -gmt true -locale en_US_roman \
        -format {%J %OI:%OM:%OS %p}
} 39600
test clock-29.636 {time parsing} {
    clock scan {2440588 xi AM} \
        -gmt true -locale en_US_roman \
        -format {%J %Ol %p}
} 39600
test clock-29.637 {time parsing} {
    clock scan {2440588 xi:00 AM} \
        -gmt true -locale en_US_roman \
        -format {%J %Ol:%M %p}
} 39600
test clock-29.638 {time parsing} {
    clock scan {2440588 xi:? AM} \
        -gmt true -locale en_US_roman \
        -format {%J %Ol:%OM %p}
} 39600
test clock-29.639 {time parsing} {
    clock scan {2440588 xi:00:00 AM} \
        -gmt true -locale en_US_roman \
        -format {%J %Ol:%M:%S %p}
} 39600
test clock-29.640 {time parsing} {
    clock scan {2440588 xi:?:? AM} \
        -gmt true -locale en_US_roman \
        -format {%J %Ol:%OM:%OS %p}
} 39600
test clock-29.641 {time parsing} {
    clock scan {2440588 11 am} \
        -gmt true -locale en_US_roman \
        -format {%J %I %P}
} 39600
test clock-29.642 {time parsing} {
    clock scan {2440588 11:00 am} \
        -gmt true -locale en_US_roman \
        -format {%J %I:%M %P}
} 39600
test clock-29.643 {time parsing} {
    clock scan {2440588 11:? am} \
        -gmt true -locale en_US_roman \
        -format {%J %I:%OM %P}
} 39600
test clock-29.644 {time parsing} {
    clock scan {2440588 11:00:00 am} \
        -gmt true -locale en_US_roman \
        -format {%J %I:%M:%S %P}
} 39600
test clock-29.645 {time parsing} {
    clock scan {2440588 11:?:? am} \
        -gmt true -locale en_US_roman \
        -format {%J %I:%OM:%OS %P}
} 39600
test clock-29.646 {time parsing} {
    clock scan {2440588 11 am} \
        -gmt true -locale en_US_roman \
        -format {%J %l %P}
} 39600
test clock-29.647 {time parsing} {
    clock scan {2440588 11:00 am} \
        -gmt true -locale en_US_roman \
        -format {%J %l:%M %P}
} 39600
test clock-29.648 {time parsing} {
    clock scan {2440588 11:? am} \
        -gmt true -locale en_US_roman \
        -format {%J %l:%OM %P}
} 39600
test clock-29.649 {time parsing} {
    clock scan {2440588 11:00:00 am} \
        -gmt true -locale en_US_roman \
        -format {%J %l:%M:%S %P}
} 39600
test clock-29.650 {time parsing} {
    clock scan {2440588 11:?:? am} \
        -gmt true -locale en_US_roman \
        -format {%J %l:%OM:%OS %P}
} 39600
test clock-29.651 {time parsing} {
    clock scan {2440588 xi am} \
        -gmt true -locale en_US_roman \
        -format {%J %OI %P}
} 39600
test clock-29.652 {time parsing} {
    clock scan {2440588 xi:00 am} \
        -gmt true -locale en_US_roman \
        -format {%J %OI:%M %P}
} 39600
test clock-29.653 {time parsing} {
    clock scan {2440588 xi:? am} \
        -gmt true -locale en_US_roman \
        -format {%J %OI:%OM %P}
} 39600
test clock-29.654 {time parsing} {
    clock scan {2440588 xi:00:00 am} \
        -gmt true -locale en_US_roman \
        -format {%J %OI:%M:%S %P}
} 39600
test clock-29.655 {time parsing} {
    clock scan {2440588 xi:?:? am} \
        -gmt true -locale en_US_roman \
        -format {%J %OI:%OM:%OS %P}
} 39600
test clock-29.656 {time parsing} {
    clock scan {2440588 xi am} \
        -gmt true -locale en_US_roman \
        -format {%J %Ol %P}
} 39600
test clock-29.657 {time parsing} {
    clock scan {2440588 xi:00 am} \
        -gmt true -locale en_US_roman \
        -format {%J %Ol:%M %P}
} 39600
test clock-29.658 {time parsing} {
    clock scan {2440588 xi:? am} \
        -gmt true -locale en_US_roman \
        -format {%J %Ol:%OM %P}
} 39600
test clock-29.659 {time parsing} {
    clock scan {2440588 xi:00:00 am} \
        -gmt true -locale en_US_roman \
        -format {%J %Ol:%M:%S %P}
} 39600
test clock-29.660 {time parsing} {
    clock scan {2440588 xi:?:? am} \
        -gmt true -locale en_US_roman \
        -format {%J %Ol:%OM:%OS %P}
} 39600
test clock-29.661 {time parsing} {
    clock scan {2440588 11:00:01 } \
        -gmt true -locale en_US_roman \
        -format {%J %H:%M:%S }
} 39601
test clock-29.662 {time parsing} {
    clock scan {2440588 11:?:i } \
        -gmt true -locale en_US_roman \
        -format {%J %H:%OM:%OS }
} 39601
test clock-29.663 {time parsing} {
    clock scan {2440588 11:00:01 } \
        -gmt true -locale en_US_roman \
        -format {%J %k:%M:%S }
} 39601
test clock-29.664 {time parsing} {
    clock scan {2440588 11:?:i } \
        -gmt true -locale en_US_roman \
        -format {%J %k:%OM:%OS }
} 39601
test clock-29.665 {time parsing} {
    clock scan {2440588 xi:00:01 } \
        -gmt true -locale en_US_roman \
        -format {%J %OH:%M:%S }
} 39601
test clock-29.666 {time parsing} {
    clock scan {2440588 xi:?:i } \
        -gmt true -locale en_US_roman \
        -format {%J %OH:%OM:%OS }
} 39601
test clock-29.667 {time parsing} {
    clock scan {2440588 xi:00:01 } \
        -gmt true -locale en_US_roman \
        -format {%J %Ok:%M:%S }
} 39601
test clock-29.668 {time parsing} {
    clock scan {2440588 xi:?:i } \
        -gmt true -locale en_US_roman \
        -format {%J %Ok:%OM:%OS }
} 39601
test clock-29.669 {time parsing} {
    clock scan {2440588 11:00:01 AM} \
        -gmt true -locale en_US_roman \
        -format {%J %I:%M:%S %p}
} 39601
test clock-29.670 {time parsing} {
    clock scan {2440588 11:?:i AM} \
        -gmt true -locale en_US_roman \
        -format {%J %I:%OM:%OS %p}
} 39601
test clock-29.671 {time parsing} {
    clock scan {2440588 11:00:01 AM} \
        -gmt true -locale en_US_roman \
        -format {%J %l:%M:%S %p}
} 39601
test clock-29.672 {time parsing} {
    clock scan {2440588 11:?:i AM} \
        -gmt true -locale en_US_roman \
        -format {%J %l:%OM:%OS %p}
} 39601
test clock-29.673 {time parsing} {
    clock scan {2440588 xi:00:01 AM} \
        -gmt true -locale en_US_roman \
        -format {%J %OI:%M:%S %p}
} 39601
test clock-29.674 {time parsing} {
    clock scan {2440588 xi:?:i AM} \
        -gmt true -locale en_US_roman \
        -format {%J %OI:%OM:%OS %p}
} 39601
test clock-29.675 {time parsing} {
    clock scan {2440588 xi:00:01 AM} \
        -gmt true -locale en_US_roman \
        -format {%J %Ol:%M:%S %p}
} 39601
test clock-29.676 {time parsing} {
    clock scan {2440588 xi:?:i AM} \
        -gmt true -locale en_US_roman \
        -format {%J %Ol:%OM:%OS %p}
} 39601
test clock-29.677 {time parsing} {
    clock scan {2440588 11:00:01 am} \
        -gmt true -locale en_US_roman \
        -format {%J %I:%M:%S %P}
} 39601
test clock-29.678 {time parsing} {
    clock scan {2440588 11:?:i am} \
        -gmt true -locale en_US_roman \
        -format {%J %I:%OM:%OS %P}
} 39601
test clock-29.679 {time parsing} {
    clock scan {2440588 11:00:01 am} \
        -gmt true -locale en_US_roman \
        -format {%J %l:%M:%S %P}
} 39601
test clock-29.680 {time parsing} {
    clock scan {2440588 11:?:i am} \
        -gmt true -locale en_US_roman \
        -format {%J %l:%OM:%OS %P}
} 39601
test clock-29.681 {time parsing} {
    clock scan {2440588 xi:00:01 am} \
        -gmt true -locale en_US_roman \
        -format {%J %OI:%M:%S %P}
} 39601
test clock-29.682 {time parsing} {
    clock scan {2440588 xi:?:i am} \
        -gmt true -locale en_US_roman \
        -format {%J %OI:%OM:%OS %P}
} 39601
test clock-29.683 {time parsing} {
    clock scan {2440588 xi:00:01 am} \
        -gmt true -locale en_US_roman \
        -format {%J %Ol:%M:%S %P}
} 39601
test clock-29.684 {time parsing} {
    clock scan {2440588 xi:?:i am} \
        -gmt true -locale en_US_roman \
        -format {%J %Ol:%OM:%OS %P}
} 39601
test clock-29.685 {time parsing} {
    clock scan {2440588 11:00:59 } \
        -gmt true -locale en_US_roman \
        -format {%J %H:%M:%S }
} 39659
test clock-29.686 {time parsing} {
    clock scan {2440588 11:?:lix } \
        -gmt true -locale en_US_roman \
        -format {%J %H:%OM:%OS }
} 39659
test clock-29.687 {time parsing} {
    clock scan {2440588 11:00:59 } \
        -gmt true -locale en_US_roman \
        -format {%J %k:%M:%S }
} 39659
test clock-29.688 {time parsing} {
    clock scan {2440588 11:?:lix } \
        -gmt true -locale en_US_roman \
        -format {%J %k:%OM:%OS }
} 39659
test clock-29.689 {time parsing} {
    clock scan {2440588 xi:00:59 } \
        -gmt true -locale en_US_roman \
        -format {%J %OH:%M:%S }
} 39659
test clock-29.690 {time parsing} {
    clock scan {2440588 xi:?:lix } \
        -gmt true -locale en_US_roman \
        -format {%J %OH:%OM:%OS }
} 39659
test clock-29.691 {time parsing} {
    clock scan {2440588 xi:00:59 } \
        -gmt true -locale en_US_roman \
        -format {%J %Ok:%M:%S }
} 39659
test clock-29.692 {time parsing} {
    clock scan {2440588 xi:?:lix } \
        -gmt true -locale en_US_roman \
        -format {%J %Ok:%OM:%OS }
} 39659
test clock-29.693 {time parsing} {
    clock scan {2440588 11:00:59 AM} \
        -gmt true -locale en_US_roman \
        -format {%J %I:%M:%S %p}
} 39659
test clock-29.694 {time parsing} {
    clock scan {2440588 11:?:lix AM} \
        -gmt true -locale en_US_roman \
        -format {%J %I:%OM:%OS %p}
} 39659
test clock-29.695 {time parsing} {
    clock scan {2440588 11:00:59 AM} \
        -gmt true -locale en_US_roman \
        -format {%J %l:%M:%S %p}
} 39659
test clock-29.696 {time parsing} {
    clock scan {2440588 11:?:lix AM} \
        -gmt true -locale en_US_roman \
        -format {%J %l:%OM:%OS %p}
} 39659
test clock-29.697 {time parsing} {
    clock scan {2440588 xi:00:59 AM} \
        -gmt true -locale en_US_roman \
        -format {%J %OI:%M:%S %p}
} 39659
test clock-29.698 {time parsing} {
    clock scan {2440588 xi:?:lix AM} \
        -gmt true -locale en_US_roman \
        -format {%J %OI:%OM:%OS %p}
} 39659
test clock-29.699 {time parsing} {
    clock scan {2440588 xi:00:59 AM} \
        -gmt true -locale en_US_roman \
        -format {%J %Ol:%M:%S %p}
} 39659
test clock-29.700 {time parsing} {
    clock scan {2440588 xi:?:lix AM} \
        -gmt true -locale en_US_roman \
        -format {%J %Ol:%OM:%OS %p}
} 39659
test clock-29.701 {time parsing} {
    clock scan {2440588 11:00:59 am} \
        -gmt true -locale en_US_roman \
        -format {%J %I:%M:%S %P}
} 39659
test clock-29.702 {time parsing} {
    clock scan {2440588 11:?:lix am} \
        -gmt true -locale en_US_roman \
        -format {%J %I:%OM:%OS %P}
} 39659
test clock-29.703 {time parsing} {
    clock scan {2440588 11:00:59 am} \
        -gmt true -locale en_US_roman \
        -format {%J %l:%M:%S %P}
} 39659
test clock-29.704 {time parsing} {
    clock scan {2440588 11:?:lix am} \
        -gmt true -locale en_US_roman \
        -format {%J %l:%OM:%OS %P}
} 39659
test clock-29.705 {time parsing} {
    clock scan {2440588 xi:00:59 am} \
        -gmt true -locale en_US_roman \
        -format {%J %OI:%M:%S %P}
} 39659
test clock-29.706 {time parsing} {
    clock scan {2440588 xi:?:lix am} \
        -gmt true -locale en_US_roman \
        -format {%J %OI:%OM:%OS %P}
} 39659
test clock-29.707 {time parsing} {
    clock scan {2440588 xi:00:59 am} \
        -gmt true -locale en_US_roman \
        -format {%J %Ol:%M:%S %P}
} 39659
test clock-29.708 {time parsing} {
    clock scan {2440588 xi:?:lix am} \
        -gmt true -locale en_US_roman \
        -format {%J %Ol:%OM:%OS %P}
} 39659
test clock-29.709 {time parsing} {
    clock scan {2440588 11:01 } \
        -gmt true -locale en_US_roman \
        -format {%J %H:%M }
} 39660
test clock-29.710 {time parsing} {
    clock scan {2440588 11:i } \
        -gmt true -locale en_US_roman \
        -format {%J %H:%OM }
} 39660
test clock-29.711 {time parsing} {
    clock scan {2440588 11:01:00 } \
        -gmt true -locale en_US_roman \
        -format {%J %H:%M:%S }
} 39660
test clock-29.712 {time parsing} {
    clock scan {2440588 11:i:? } \
        -gmt true -locale en_US_roman \
        -format {%J %H:%OM:%OS }
} 39660
test clock-29.713 {time parsing} {
    clock scan {2440588 11:01 } \
        -gmt true -locale en_US_roman \
        -format {%J %k:%M }
} 39660
test clock-29.714 {time parsing} {
    clock scan {2440588 11:i } \
        -gmt true -locale en_US_roman \
        -format {%J %k:%OM }
} 39660
test clock-29.715 {time parsing} {
    clock scan {2440588 11:01:00 } \
        -gmt true -locale en_US_roman \
        -format {%J %k:%M:%S }
} 39660
test clock-29.716 {time parsing} {
    clock scan {2440588 11:i:? } \
        -gmt true -locale en_US_roman \
        -format {%J %k:%OM:%OS }
} 39660
test clock-29.717 {time parsing} {
    clock scan {2440588 xi:01 } \
        -gmt true -locale en_US_roman \
        -format {%J %OH:%M }
} 39660
test clock-29.718 {time parsing} {
    clock scan {2440588 xi:i } \
        -gmt true -locale en_US_roman \
        -format {%J %OH:%OM }
} 39660
test clock-29.719 {time parsing} {
    clock scan {2440588 xi:01:00 } \
        -gmt true -locale en_US_roman \
        -format {%J %OH:%M:%S }
} 39660
test clock-29.720 {time parsing} {
    clock scan {2440588 xi:i:? } \
        -gmt true -locale en_US_roman \
        -format {%J %OH:%OM:%OS }
} 39660
test clock-29.721 {time parsing} {
    clock scan {2440588 xi:01 } \
        -gmt true -locale en_US_roman \
        -format {%J %Ok:%M }
} 39660
test clock-29.722 {time parsing} {
    clock scan {2440588 xi:i } \
        -gmt true -locale en_US_roman \
        -format {%J %Ok:%OM }
} 39660
test clock-29.723 {time parsing} {
    clock scan {2440588 xi:01:00 } \
        -gmt true -locale en_US_roman \
        -format {%J %Ok:%M:%S }
} 39660
test clock-29.724 {time parsing} {
    clock scan {2440588 xi:i:? } \
        -gmt true -locale en_US_roman \
        -format {%J %Ok:%OM:%OS }
} 39660
test clock-29.725 {time parsing} {
    clock scan {2440588 11:01 AM} \
        -gmt true -locale en_US_roman \
        -format {%J %I:%M %p}
} 39660
test clock-29.726 {time parsing} {
    clock scan {2440588 11:i AM} \
        -gmt true -locale en_US_roman \
        -format {%J %I:%OM %p}
} 39660
test clock-29.727 {time parsing} {
    clock scan {2440588 11:01:00 AM} \
        -gmt true -locale en_US_roman \
        -format {%J %I:%M:%S %p}
} 39660
test clock-29.728 {time parsing} {
    clock scan {2440588 11:i:? AM} \
        -gmt true -locale en_US_roman \
        -format {%J %I:%OM:%OS %p}
} 39660
test clock-29.729 {time parsing} {
    clock scan {2440588 11:01 AM} \
        -gmt true -locale en_US_roman \
        -format {%J %l:%M %p}
} 39660
test clock-29.730 {time parsing} {
    clock scan {2440588 11:i AM} \
        -gmt true -locale en_US_roman \
        -format {%J %l:%OM %p}
} 39660
test clock-29.731 {time parsing} {
    clock scan {2440588 11:01:00 AM} \
        -gmt true -locale en_US_roman \
        -format {%J %l:%M:%S %p}
} 39660
test clock-29.732 {time parsing} {
    clock scan {2440588 11:i:? AM} \
        -gmt true -locale en_US_roman \
        -format {%J %l:%OM:%OS %p}
} 39660
test clock-29.733 {time parsing} {
    clock scan {2440588 xi:01 AM} \
        -gmt true -locale en_US_roman \
        -format {%J %OI:%M %p}
} 39660
test clock-29.734 {time parsing} {
    clock scan {2440588 xi:i AM} \
        -gmt true -locale en_US_roman \
        -format {%J %OI:%OM %p}
} 39660
test clock-29.735 {time parsing} {
    clock scan {2440588 xi:01:00 AM} \
        -gmt true -locale en_US_roman \
        -format {%J %OI:%M:%S %p}
} 39660
test clock-29.736 {time parsing} {
    clock scan {2440588 xi:i:? AM} \
        -gmt true -locale en_US_roman \
        -format {%J %OI:%OM:%OS %p}
} 39660
test clock-29.737 {time parsing} {
    clock scan {2440588 xi:01 AM} \
        -gmt true -locale en_US_roman \
        -format {%J %Ol:%M %p}
} 39660
test clock-29.738 {time parsing} {
    clock scan {2440588 xi:i AM} \
        -gmt true -locale en_US_roman \
        -format {%J %Ol:%OM %p}
} 39660
test clock-29.739 {time parsing} {
    clock scan {2440588 xi:01:00 AM} \
        -gmt true -locale en_US_roman \
        -format {%J %Ol:%M:%S %p}
} 39660
test clock-29.740 {time parsing} {
    clock scan {2440588 xi:i:? AM} \
        -gmt true -locale en_US_roman \
        -format {%J %Ol:%OM:%OS %p}
} 39660
test clock-29.741 {time parsing} {
    clock scan {2440588 11:01 am} \
        -gmt true -locale en_US_roman \
        -format {%J %I:%M %P}
} 39660
test clock-29.742 {time parsing} {
    clock scan {2440588 11:i am} \
        -gmt true -locale en_US_roman \
        -format {%J %I:%OM %P}
} 39660
test clock-29.743 {time parsing} {
    clock scan {2440588 11:01:00 am} \
        -gmt true -locale en_US_roman \
        -format {%J %I:%M:%S %P}
} 39660
test clock-29.744 {time parsing} {
    clock scan {2440588 11:i:? am} \
        -gmt true -locale en_US_roman \
        -format {%J %I:%OM:%OS %P}
} 39660
test clock-29.745 {time parsing} {
    clock scan {2440588 11:01 am} \
        -gmt true -locale en_US_roman \
        -format {%J %l:%M %P}
} 39660
test clock-29.746 {time parsing} {
    clock scan {2440588 11:i am} \
        -gmt true -locale en_US_roman \
        -format {%J %l:%OM %P}
} 39660
test clock-29.747 {time parsing} {
    clock scan {2440588 11:01:00 am} \
        -gmt true -locale en_US_roman \
        -format {%J %l:%M:%S %P}
} 39660
test clock-29.748 {time parsing} {
    clock scan {2440588 11:i:? am} \
        -gmt true -locale en_US_roman \
        -format {%J %l:%OM:%OS %P}
} 39660
test clock-29.749 {time parsing} {
    clock scan {2440588 xi:01 am} \
        -gmt true -locale en_US_roman \
        -format {%J %OI:%M %P}
} 39660
test clock-29.750 {time parsing} {
    clock scan {2440588 xi:i am} \
        -gmt true -locale en_US_roman \
        -format {%J %OI:%OM %P}
} 39660
test clock-29.751 {time parsing} {
    clock scan {2440588 xi:01:00 am} \
        -gmt true -locale en_US_roman \
        -format {%J %OI:%M:%S %P}
} 39660
test clock-29.752 {time parsing} {
    clock scan {2440588 xi:i:? am} \
        -gmt true -locale en_US_roman \
        -format {%J %OI:%OM:%OS %P}
} 39660
test clock-29.753 {time parsing} {
    clock scan {2440588 xi:01 am} \
        -gmt true -locale en_US_roman \
        -format {%J %Ol:%M %P}
} 39660
test clock-29.754 {time parsing} {
    clock scan {2440588 xi:i am} \
        -gmt true -locale en_US_roman \
        -format {%J %Ol:%OM %P}
} 39660
test clock-29.755 {time parsing} {
    clock scan {2440588 xi:01:00 am} \
        -gmt true -locale en_US_roman \
        -format {%J %Ol:%M:%S %P}
} 39660
test clock-29.756 {time parsing} {
    clock scan {2440588 xi:i:? am} \
        -gmt true -locale en_US_roman \
        -format {%J %Ol:%OM:%OS %P}
} 39660
test clock-29.757 {time parsing} {
    clock scan {2440588 11:01:01 } \
        -gmt true -locale en_US_roman \
        -format {%J %H:%M:%S }
} 39661
test clock-29.758 {time parsing} {
    clock scan {2440588 11:i:i } \
        -gmt true -locale en_US_roman \
        -format {%J %H:%OM:%OS }
} 39661
test clock-29.759 {time parsing} {
    clock scan {2440588 11:01:01 } \
        -gmt true -locale en_US_roman \
        -format {%J %k:%M:%S }
} 39661
test clock-29.760 {time parsing} {
    clock scan {2440588 11:i:i } \
        -gmt true -locale en_US_roman \
        -format {%J %k:%OM:%OS }
} 39661
test clock-29.761 {time parsing} {
    clock scan {2440588 xi:01:01 } \
        -gmt true -locale en_US_roman \
        -format {%J %OH:%M:%S }
} 39661
test clock-29.762 {time parsing} {
    clock scan {2440588 xi:i:i } \
        -gmt true -locale en_US_roman \
        -format {%J %OH:%OM:%OS }
} 39661
test clock-29.763 {time parsing} {
    clock scan {2440588 xi:01:01 } \
        -gmt true -locale en_US_roman \
        -format {%J %Ok:%M:%S }
} 39661
test clock-29.764 {time parsing} {
    clock scan {2440588 xi:i:i } \
        -gmt true -locale en_US_roman \
        -format {%J %Ok:%OM:%OS }
} 39661
test clock-29.765 {time parsing} {
    clock scan {2440588 11:01:01 AM} \
        -gmt true -locale en_US_roman \
        -format {%J %I:%M:%S %p}
} 39661
test clock-29.766 {time parsing} {
    clock scan {2440588 11:i:i AM} \
        -gmt true -locale en_US_roman \
        -format {%J %I:%OM:%OS %p}
} 39661
test clock-29.767 {time parsing} {
    clock scan {2440588 11:01:01 AM} \
        -gmt true -locale en_US_roman \
        -format {%J %l:%M:%S %p}
} 39661
test clock-29.768 {time parsing} {
    clock scan {2440588 11:i:i AM} \
        -gmt true -locale en_US_roman \
        -format {%J %l:%OM:%OS %p}
} 39661
test clock-29.769 {time parsing} {
    clock scan {2440588 xi:01:01 AM} \
        -gmt true -locale en_US_roman \
        -format {%J %OI:%M:%S %p}
} 39661
test clock-29.770 {time parsing} {
    clock scan {2440588 xi:i:i AM} \
        -gmt true -locale en_US_roman \
        -format {%J %OI:%OM:%OS %p}
} 39661
test clock-29.771 {time parsing} {
    clock scan {2440588 xi:01:01 AM} \
        -gmt true -locale en_US_roman \
        -format {%J %Ol:%M:%S %p}
} 39661
test clock-29.772 {time parsing} {
    clock scan {2440588 xi:i:i AM} \
        -gmt true -locale en_US_roman \
        -format {%J %Ol:%OM:%OS %p}
} 39661
test clock-29.773 {time parsing} {
    clock scan {2440588 11:01:01 am} \
        -gmt true -locale en_US_roman \
        -format {%J %I:%M:%S %P}
} 39661
test clock-29.774 {time parsing} {
    clock scan {2440588 11:i:i am} \
        -gmt true -locale en_US_roman \
        -format {%J %I:%OM:%OS %P}
} 39661
test clock-29.775 {time parsing} {
    clock scan {2440588 11:01:01 am} \
        -gmt true -locale en_US_roman \
        -format {%J %l:%M:%S %P}
} 39661
test clock-29.776 {time parsing} {
    clock scan {2440588 11:i:i am} \
        -gmt true -locale en_US_roman \
        -format {%J %l:%OM:%OS %P}
} 39661
test clock-29.777 {time parsing} {
    clock scan {2440588 xi:01:01 am} \
        -gmt true -locale en_US_roman \
        -format {%J %OI:%M:%S %P}
} 39661
test clock-29.778 {time parsing} {
    clock scan {2440588 xi:i:i am} \
        -gmt true -locale en_US_roman \
        -format {%J %OI:%OM:%OS %P}
} 39661
test clock-29.779 {time parsing} {
    clock scan {2440588 xi:01:01 am} \
        -gmt true -locale en_US_roman \
        -format {%J %Ol:%M:%S %P}
} 39661
test clock-29.780 {time parsing} {
    clock scan {2440588 xi:i:i am} \
        -gmt true -locale en_US_roman \
        -format {%J %Ol:%OM:%OS %P}
} 39661
test clock-29.781 {time parsing} {
    clock scan {2440588 11:01:59 } \
        -gmt true -locale en_US_roman \
        -format {%J %H:%M:%S }
} 39719
test clock-29.782 {time parsing} {
    clock scan {2440588 11:i:lix } \
        -gmt true -locale en_US_roman \
        -format {%J %H:%OM:%OS }
} 39719
test clock-29.783 {time parsing} {
    clock scan {2440588 11:01:59 } \
        -gmt true -locale en_US_roman \
        -format {%J %k:%M:%S }
} 39719
test clock-29.784 {time parsing} {
    clock scan {2440588 11:i:lix } \
        -gmt true -locale en_US_roman \
        -format {%J %k:%OM:%OS }
} 39719
test clock-29.785 {time parsing} {
    clock scan {2440588 xi:01:59 } \
        -gmt true -locale en_US_roman \
        -format {%J %OH:%M:%S }
} 39719
test clock-29.786 {time parsing} {
    clock scan {2440588 xi:i:lix } \
        -gmt true -locale en_US_roman \
        -format {%J %OH:%OM:%OS }
} 39719
test clock-29.787 {time parsing} {
    clock scan {2440588 xi:01:59 } \
        -gmt true -locale en_US_roman \
        -format {%J %Ok:%M:%S }
} 39719
test clock-29.788 {time parsing} {
    clock scan {2440588 xi:i:lix } \
        -gmt true -locale en_US_roman \
        -format {%J %Ok:%OM:%OS }
} 39719
test clock-29.789 {time parsing} {
    clock scan {2440588 11:01:59 AM} \
        -gmt true -locale en_US_roman \
        -format {%J %I:%M:%S %p}
} 39719
test clock-29.790 {time parsing} {
    clock scan {2440588 11:i:lix AM} \
        -gmt true -locale en_US_roman \
        -format {%J %I:%OM:%OS %p}
} 39719
test clock-29.791 {time parsing} {
    clock scan {2440588 11:01:59 AM} \
        -gmt true -locale en_US_roman \
        -format {%J %l:%M:%S %p}
} 39719
test clock-29.792 {time parsing} {
    clock scan {2440588 11:i:lix AM} \
        -gmt true -locale en_US_roman \
        -format {%J %l:%OM:%OS %p}
} 39719
test clock-29.793 {time parsing} {
    clock scan {2440588 xi:01:59 AM} \
        -gmt true -locale en_US_roman \
        -format {%J %OI:%M:%S %p}
} 39719
test clock-29.794 {time parsing} {
    clock scan {2440588 xi:i:lix AM} \
        -gmt true -locale en_US_roman \
        -format {%J %OI:%OM:%OS %p}
} 39719
test clock-29.795 {time parsing} {
    clock scan {2440588 xi:01:59 AM} \
        -gmt true -locale en_US_roman \
        -format {%J %Ol:%M:%S %p}
} 39719
test clock-29.796 {time parsing} {
    clock scan {2440588 xi:i:lix AM} \
        -gmt true -locale en_US_roman \
        -format {%J %Ol:%OM:%OS %p}
} 39719
test clock-29.797 {time parsing} {
    clock scan {2440588 11:01:59 am} \
        -gmt true -locale en_US_roman \
        -format {%J %I:%M:%S %P}
} 39719
test clock-29.798 {time parsing} {
    clock scan {2440588 11:i:lix am} \
        -gmt true -locale en_US_roman \
        -format {%J %I:%OM:%OS %P}
} 39719
test clock-29.799 {time parsing} {
    clock scan {2440588 11:01:59 am} \
        -gmt true -locale en_US_roman \
        -format {%J %l:%M:%S %P}
} 39719
test clock-29.800 {time parsing} {
    clock scan {2440588 11:i:lix am} \
        -gmt true -locale en_US_roman \
        -format {%J %l:%OM:%OS %P}
} 39719
test clock-29.801 {time parsing} {
    clock scan {2440588 xi:01:59 am} \
        -gmt true -locale en_US_roman \
        -format {%J %OI:%M:%S %P}
} 39719
test clock-29.802 {time parsing} {
    clock scan {2440588 xi:i:lix am} \
        -gmt true -locale en_US_roman \
        -format {%J %OI:%OM:%OS %P}
} 39719
test clock-29.803 {time parsing} {
    clock scan {2440588 xi:01:59 am} \
        -gmt true -locale en_US_roman \
        -format {%J %Ol:%M:%S %P}
} 39719
test clock-29.804 {time parsing} {
    clock scan {2440588 xi:i:lix am} \
        -gmt true -locale en_US_roman \
        -format {%J %Ol:%OM:%OS %P}
} 39719
test clock-29.805 {time parsing} {
    clock scan {2440588 11:59 } \
        -gmt true -locale en_US_roman \
        -format {%J %H:%M }
} 43140
test clock-29.806 {time parsing} {
    clock scan {2440588 11:lix } \
        -gmt true -locale en_US_roman \
        -format {%J %H:%OM }
} 43140
test clock-29.807 {time parsing} {
    clock scan {2440588 11:59:00 } \
        -gmt true -locale en_US_roman \
        -format {%J %H:%M:%S }
} 43140
test clock-29.808 {time parsing} {
    clock scan {2440588 11:lix:? } \
        -gmt true -locale en_US_roman \
        -format {%J %H:%OM:%OS }
} 43140
test clock-29.809 {time parsing} {
    clock scan {2440588 11:59 } \
        -gmt true -locale en_US_roman \
        -format {%J %k:%M }
} 43140
test clock-29.810 {time parsing} {
    clock scan {2440588 11:lix } \
        -gmt true -locale en_US_roman \
        -format {%J %k:%OM }
} 43140
test clock-29.811 {time parsing} {
    clock scan {2440588 11:59:00 } \
        -gmt true -locale en_US_roman \
        -format {%J %k:%M:%S }
} 43140
test clock-29.812 {time parsing} {
    clock scan {2440588 11:lix:? } \
        -gmt true -locale en_US_roman \
        -format {%J %k:%OM:%OS }
} 43140
test clock-29.813 {time parsing} {
    clock scan {2440588 xi:59 } \
        -gmt true -locale en_US_roman \
        -format {%J %OH:%M }
} 43140
test clock-29.814 {time parsing} {
    clock scan {2440588 xi:lix } \
        -gmt true -locale en_US_roman \
        -format {%J %OH:%OM }
} 43140
test clock-29.815 {time parsing} {
    clock scan {2440588 xi:59:00 } \
        -gmt true -locale en_US_roman \
        -format {%J %OH:%M:%S }
} 43140
test clock-29.816 {time parsing} {
    clock scan {2440588 xi:lix:? } \
        -gmt true -locale en_US_roman \
        -format {%J %OH:%OM:%OS }
} 43140
test clock-29.817 {time parsing} {
    clock scan {2440588 xi:59 } \
        -gmt true -locale en_US_roman \
        -format {%J %Ok:%M }
} 43140
test clock-29.818 {time parsing} {
    clock scan {2440588 xi:lix } \
        -gmt true -locale en_US_roman \
        -format {%J %Ok:%OM }
} 43140
test clock-29.819 {time parsing} {
    clock scan {2440588 xi:59:00 } \
        -gmt true -locale en_US_roman \
        -format {%J %Ok:%M:%S }
} 43140
test clock-29.820 {time parsing} {
    clock scan {2440588 xi:lix:? } \
        -gmt true -locale en_US_roman \
        -format {%J %Ok:%OM:%OS }
} 43140
test clock-29.821 {time parsing} {
    clock scan {2440588 11:59 AM} \
        -gmt true -locale en_US_roman \
        -format {%J %I:%M %p}
} 43140
test clock-29.822 {time parsing} {
    clock scan {2440588 11:lix AM} \
        -gmt true -locale en_US_roman \
        -format {%J %I:%OM %p}
} 43140
test clock-29.823 {time parsing} {
    clock scan {2440588 11:59:00 AM} \
        -gmt true -locale en_US_roman \
        -format {%J %I:%M:%S %p}
} 43140
test clock-29.824 {time parsing} {
    clock scan {2440588 11:lix:? AM} \
        -gmt true -locale en_US_roman \
        -format {%J %I:%OM:%OS %p}
} 43140
test clock-29.825 {time parsing} {
    clock scan {2440588 11:59 AM} \
        -gmt true -locale en_US_roman \
        -format {%J %l:%M %p}
} 43140
test clock-29.826 {time parsing} {
    clock scan {2440588 11:lix AM} \
        -gmt true -locale en_US_roman \
        -format {%J %l:%OM %p}
} 43140
test clock-29.827 {time parsing} {
    clock scan {2440588 11:59:00 AM} \
        -gmt true -locale en_US_roman \
        -format {%J %l:%M:%S %p}
} 43140
test clock-29.828 {time parsing} {
    clock scan {2440588 11:lix:? AM} \
        -gmt true -locale en_US_roman \
        -format {%J %l:%OM:%OS %p}
} 43140
test clock-29.829 {time parsing} {
    clock scan {2440588 xi:59 AM} \
        -gmt true -locale en_US_roman \
        -format {%J %OI:%M %p}
} 43140
test clock-29.830 {time parsing} {
    clock scan {2440588 xi:lix AM} \
        -gmt true -locale en_US_roman \
        -format {%J %OI:%OM %p}
} 43140
test clock-29.831 {time parsing} {
    clock scan {2440588 xi:59:00 AM} \
        -gmt true -locale en_US_roman \
        -format {%J %OI:%M:%S %p}
} 43140
test clock-29.832 {time parsing} {
    clock scan {2440588 xi:lix:? AM} \
        -gmt true -locale en_US_roman \
        -format {%J %OI:%OM:%OS %p}
} 43140
test clock-29.833 {time parsing} {
    clock scan {2440588 xi:59 AM} \
        -gmt true -locale en_US_roman \
        -format {%J %Ol:%M %p}
} 43140
test clock-29.834 {time parsing} {
    clock scan {2440588 xi:lix AM} \
        -gmt true -locale en_US_roman \
        -format {%J %Ol:%OM %p}
} 43140
test clock-29.835 {time parsing} {
    clock scan {2440588 xi:59:00 AM} \
        -gmt true -locale en_US_roman \
        -format {%J %Ol:%M:%S %p}
} 43140
test clock-29.836 {time parsing} {
    clock scan {2440588 xi:lix:? AM} \
        -gmt true -locale en_US_roman \
        -format {%J %Ol:%OM:%OS %p}
} 43140
test clock-29.837 {time parsing} {
    clock scan {2440588 11:59 am} \
        -gmt true -locale en_US_roman \
        -format {%J %I:%M %P}
} 43140
test clock-29.838 {time parsing} {
    clock scan {2440588 11:lix am} \
        -gmt true -locale en_US_roman \
        -format {%J %I:%OM %P}
} 43140
test clock-29.839 {time parsing} {
    clock scan {2440588 11:59:00 am} \
        -gmt true -locale en_US_roman \
        -format {%J %I:%M:%S %P}
} 43140
test clock-29.840 {time parsing} {
    clock scan {2440588 11:lix:? am} \
        -gmt true -locale en_US_roman \
        -format {%J %I:%OM:%OS %P}
} 43140
test clock-29.841 {time parsing} {
    clock scan {2440588 11:59 am} \
        -gmt true -locale en_US_roman \
        -format {%J %l:%M %P}
} 43140
test clock-29.842 {time parsing} {
    clock scan {2440588 11:lix am} \
        -gmt true -locale en_US_roman \
        -format {%J %l:%OM %P}
} 43140
test clock-29.843 {time parsing} {
    clock scan {2440588 11:59:00 am} \
        -gmt true -locale en_US_roman \
        -format {%J %l:%M:%S %P}
} 43140
test clock-29.844 {time parsing} {
    clock scan {2440588 11:lix:? am} \
        -gmt true -locale en_US_roman \
        -format {%J %l:%OM:%OS %P}
} 43140
test clock-29.845 {time parsing} {
    clock scan {2440588 xi:59 am} \
        -gmt true -locale en_US_roman \
        -format {%J %OI:%M %P}
} 43140
test clock-29.846 {time parsing} {
    clock scan {2440588 xi:lix am} \
        -gmt true -locale en_US_roman \
        -format {%J %OI:%OM %P}
} 43140
test clock-29.847 {time parsing} {
    clock scan {2440588 xi:59:00 am} \
        -gmt true -locale en_US_roman \
        -format {%J %OI:%M:%S %P}
} 43140
test clock-29.848 {time parsing} {
    clock scan {2440588 xi:lix:? am} \
        -gmt true -locale en_US_roman \
        -format {%J %OI:%OM:%OS %P}
} 43140
test clock-29.849 {time parsing} {
    clock scan {2440588 xi:59 am} \
        -gmt true -locale en_US_roman \
        -format {%J %Ol:%M %P}
} 43140
test clock-29.850 {time parsing} {
    clock scan {2440588 xi:lix am} \
        -gmt true -locale en_US_roman \
        -format {%J %Ol:%OM %P}
} 43140
test clock-29.851 {time parsing} {
    clock scan {2440588 xi:59:00 am} \
        -gmt true -locale en_US_roman \
        -format {%J %Ol:%M:%S %P}
} 43140
test clock-29.852 {time parsing} {
    clock scan {2440588 xi:lix:? am} \
        -gmt true -locale en_US_roman \
        -format {%J %Ol:%OM:%OS %P}
} 43140
test clock-29.853 {time parsing} {
    clock scan {2440588 11:59:01 } \
        -gmt true -locale en_US_roman \
        -format {%J %H:%M:%S }
} 43141
test clock-29.854 {time parsing} {
    clock scan {2440588 11:lix:i } \
        -gmt true -locale en_US_roman \
        -format {%J %H:%OM:%OS }
} 43141
test clock-29.855 {time parsing} {
    clock scan {2440588 11:59:01 } \
        -gmt true -locale en_US_roman \
        -format {%J %k:%M:%S }
} 43141
test clock-29.856 {time parsing} {
    clock scan {2440588 11:lix:i } \
        -gmt true -locale en_US_roman \
        -format {%J %k:%OM:%OS }
} 43141
test clock-29.857 {time parsing} {
    clock scan {2440588 xi:59:01 } \
        -gmt true -locale en_US_roman \
        -format {%J %OH:%M:%S }
} 43141
test clock-29.858 {time parsing} {
    clock scan {2440588 xi:lix:i } \
        -gmt true -locale en_US_roman \
        -format {%J %OH:%OM:%OS }
} 43141
test clock-29.859 {time parsing} {
    clock scan {2440588 xi:59:01 } \
        -gmt true -locale en_US_roman \
        -format {%J %Ok:%M:%S }
} 43141
test clock-29.860 {time parsing} {
    clock scan {2440588 xi:lix:i } \
        -gmt true -locale en_US_roman \
        -format {%J %Ok:%OM:%OS }
} 43141
test clock-29.861 {time parsing} {
    clock scan {2440588 11:59:01 AM} \
        -gmt true -locale en_US_roman \
        -format {%J %I:%M:%S %p}
} 43141
test clock-29.862 {time parsing} {
    clock scan {2440588 11:lix:i AM} \
        -gmt true -locale en_US_roman \
        -format {%J %I:%OM:%OS %p}
} 43141
test clock-29.863 {time parsing} {
    clock scan {2440588 11:59:01 AM} \
        -gmt true -locale en_US_roman \
        -format {%J %l:%M:%S %p}
} 43141
test clock-29.864 {time parsing} {
    clock scan {2440588 11:lix:i AM} \
        -gmt true -locale en_US_roman \
        -format {%J %l:%OM:%OS %p}
} 43141
test clock-29.865 {time parsing} {
    clock scan {2440588 xi:59:01 AM} \
        -gmt true -locale en_US_roman \
        -format {%J %OI:%M:%S %p}
} 43141
test clock-29.866 {time parsing} {
    clock scan {2440588 xi:lix:i AM} \
        -gmt true -locale en_US_roman \
        -format {%J %OI:%OM:%OS %p}
} 43141
test clock-29.867 {time parsing} {
    clock scan {2440588 xi:59:01 AM} \
        -gmt true -locale en_US_roman \
        -format {%J %Ol:%M:%S %p}
} 43141
test clock-29.868 {time parsing} {
    clock scan {2440588 xi:lix:i AM} \
        -gmt true -locale en_US_roman \
        -format {%J %Ol:%OM:%OS %p}
} 43141
test clock-29.869 {time parsing} {
    clock scan {2440588 11:59:01 am} \
        -gmt true -locale en_US_roman \
        -format {%J %I:%M:%S %P}
} 43141
test clock-29.870 {time parsing} {
    clock scan {2440588 11:lix:i am} \
        -gmt true -locale en_US_roman \
        -format {%J %I:%OM:%OS %P}
} 43141
test clock-29.871 {time parsing} {
    clock scan {2440588 11:59:01 am} \
        -gmt true -locale en_US_roman \
        -format {%J %l:%M:%S %P}
} 43141
test clock-29.872 {time parsing} {
    clock scan {2440588 11:lix:i am} \
        -gmt true -locale en_US_roman \
        -format {%J %l:%OM:%OS %P}
} 43141
test clock-29.873 {time parsing} {
    clock scan {2440588 xi:59:01 am} \
        -gmt true -locale en_US_roman \
        -format {%J %OI:%M:%S %P}
} 43141
test clock-29.874 {time parsing} {
    clock scan {2440588 xi:lix:i am} \
        -gmt true -locale en_US_roman \
        -format {%J %OI:%OM:%OS %P}
} 43141
test clock-29.875 {time parsing} {
    clock scan {2440588 xi:59:01 am} \
        -gmt true -locale en_US_roman \
        -format {%J %Ol:%M:%S %P}
} 43141
test clock-29.876 {time parsing} {
    clock scan {2440588 xi:lix:i am} \
        -gmt true -locale en_US_roman \
        -format {%J %Ol:%OM:%OS %P}
} 43141
test clock-29.877 {time parsing} {
    clock scan {2440588 11:59:59 } \
        -gmt true -locale en_US_roman \
        -format {%J %H:%M:%S }
} 43199
test clock-29.878 {time parsing} {
    clock scan {2440588 11:lix:lix } \
        -gmt true -locale en_US_roman \
        -format {%J %H:%OM:%OS }
} 43199
test clock-29.879 {time parsing} {
    clock scan {2440588 11:59:59 } \
        -gmt true -locale en_US_roman \
        -format {%J %k:%M:%S }
} 43199
test clock-29.880 {time parsing} {
    clock scan {2440588 11:lix:lix } \
        -gmt true -locale en_US_roman \
        -format {%J %k:%OM:%OS }
} 43199
test clock-29.881 {time parsing} {
    clock scan {2440588 xi:59:59 } \
        -gmt true -locale en_US_roman \
        -format {%J %OH:%M:%S }
} 43199
test clock-29.882 {time parsing} {
    clock scan {2440588 xi:lix:lix } \
        -gmt true -locale en_US_roman \
        -format {%J %OH:%OM:%OS }
} 43199
test clock-29.883 {time parsing} {
    clock scan {2440588 xi:59:59 } \
        -gmt true -locale en_US_roman \
        -format {%J %Ok:%M:%S }
} 43199
test clock-29.884 {time parsing} {
    clock scan {2440588 xi:lix:lix } \
        -gmt true -locale en_US_roman \
        -format {%J %Ok:%OM:%OS }
} 43199
test clock-29.885 {time parsing} {
    clock scan {2440588 11:59:59 AM} \
        -gmt true -locale en_US_roman \
        -format {%J %I:%M:%S %p}
} 43199
test clock-29.886 {time parsing} {
    clock scan {2440588 11:lix:lix AM} \
        -gmt true -locale en_US_roman \
        -format {%J %I:%OM:%OS %p}
} 43199
test clock-29.887 {time parsing} {
    clock scan {2440588 11:59:59 AM} \
        -gmt true -locale en_US_roman \
        -format {%J %l:%M:%S %p}
} 43199
test clock-29.888 {time parsing} {
    clock scan {2440588 11:lix:lix AM} \
        -gmt true -locale en_US_roman \
        -format {%J %l:%OM:%OS %p}
} 43199
test clock-29.889 {time parsing} {
    clock scan {2440588 xi:59:59 AM} \
        -gmt true -locale en_US_roman \
        -format {%J %OI:%M:%S %p}
} 43199
test clock-29.890 {time parsing} {
    clock scan {2440588 xi:lix:lix AM} \
        -gmt true -locale en_US_roman \
        -format {%J %OI:%OM:%OS %p}
} 43199
test clock-29.891 {time parsing} {
    clock scan {2440588 xi:59:59 AM} \
        -gmt true -locale en_US_roman \
        -format {%J %Ol:%M:%S %p}
} 43199
test clock-29.892 {time parsing} {
    clock scan {2440588 xi:lix:lix AM} \
        -gmt true -locale en_US_roman \
        -format {%J %Ol:%OM:%OS %p}
} 43199
test clock-29.893 {time parsing} {
    clock scan {2440588 11:59:59 am} \
        -gmt true -locale en_US_roman \
        -format {%J %I:%M:%S %P}
} 43199
test clock-29.894 {time parsing} {
    clock scan {2440588 11:lix:lix am} \
        -gmt true -locale en_US_roman \
        -format {%J %I:%OM:%OS %P}
} 43199
test clock-29.895 {time parsing} {
    clock scan {2440588 11:59:59 am} \
        -gmt true -locale en_US_roman \
        -format {%J %l:%M:%S %P}
} 43199
test clock-29.896 {time parsing} {
    clock scan {2440588 11:lix:lix am} \
        -gmt true -locale en_US_roman \
        -format {%J %l:%OM:%OS %P}
} 43199
test clock-29.897 {time parsing} {
    clock scan {2440588 xi:59:59 am} \
        -gmt true -locale en_US_roman \
        -format {%J %OI:%M:%S %P}
} 43199
test clock-29.898 {time parsing} {
    clock scan {2440588 xi:lix:lix am} \
        -gmt true -locale en_US_roman \
        -format {%J %OI:%OM:%OS %P}
} 43199
test clock-29.899 {time parsing} {
    clock scan {2440588 xi:59:59 am} \
        -gmt true -locale en_US_roman \
        -format {%J %Ol:%M:%S %P}
} 43199
test clock-29.900 {time parsing} {
    clock scan {2440588 xi:lix:lix am} \
        -gmt true -locale en_US_roman \
        -format {%J %Ol:%OM:%OS %P}
} 43199
test clock-29.901 {time parsing} {
    clock scan {2440588 12 } \
        -gmt true -locale en_US_roman \
        -format {%J %H }
} 43200
test clock-29.902 {time parsing} {
    clock scan {2440588 12:00 } \
        -gmt true -locale en_US_roman \
        -format {%J %H:%M }
} 43200
test clock-29.903 {time parsing} {
    clock scan {2440588 12:? } \
        -gmt true -locale en_US_roman \
        -format {%J %H:%OM }
} 43200
test clock-29.904 {time parsing} {
    clock scan {2440588 12:00:00 } \
        -gmt true -locale en_US_roman \
        -format {%J %H:%M:%S }
} 43200
test clock-29.905 {time parsing} {
    clock scan {2440588 12:?:? } \
        -gmt true -locale en_US_roman \
        -format {%J %H:%OM:%OS }
} 43200
test clock-29.906 {time parsing} {
    clock scan {2440588 12 } \
        -gmt true -locale en_US_roman \
        -format {%J %k }
} 43200
test clock-29.907 {time parsing} {
    clock scan {2440588 12:00 } \
        -gmt true -locale en_US_roman \
        -format {%J %k:%M }
} 43200
test clock-29.908 {time parsing} {
    clock scan {2440588 12:? } \
        -gmt true -locale en_US_roman \
        -format {%J %k:%OM }
} 43200
test clock-29.909 {time parsing} {
    clock scan {2440588 12:00:00 } \
        -gmt true -locale en_US_roman \
        -format {%J %k:%M:%S }
} 43200
test clock-29.910 {time parsing} {
    clock scan {2440588 12:?:? } \
        -gmt true -locale en_US_roman \
        -format {%J %k:%OM:%OS }
} 43200
test clock-29.911 {time parsing} {
    clock scan {2440588 xii } \
        -gmt true -locale en_US_roman \
        -format {%J %OH }
} 43200
test clock-29.912 {time parsing} {
    clock scan {2440588 xii:00 } \
        -gmt true -locale en_US_roman \
        -format {%J %OH:%M }
} 43200
test clock-29.913 {time parsing} {
    clock scan {2440588 xii:? } \
        -gmt true -locale en_US_roman \
        -format {%J %OH:%OM }
} 43200
test clock-29.914 {time parsing} {
    clock scan {2440588 xii:00:00 } \
        -gmt true -locale en_US_roman \
        -format {%J %OH:%M:%S }
} 43200
test clock-29.915 {time parsing} {
    clock scan {2440588 xii:?:? } \
        -gmt true -locale en_US_roman \
        -format {%J %OH:%OM:%OS }
} 43200
test clock-29.916 {time parsing} {
    clock scan {2440588 xii } \
        -gmt true -locale en_US_roman \
        -format {%J %Ok }
} 43200
test clock-29.917 {time parsing} {
    clock scan {2440588 xii:00 } \
        -gmt true -locale en_US_roman \
        -format {%J %Ok:%M }
} 43200
test clock-29.918 {time parsing} {
    clock scan {2440588 xii:? } \
        -gmt true -locale en_US_roman \
        -format {%J %Ok:%OM }
} 43200
test clock-29.919 {time parsing} {
    clock scan {2440588 xii:00:00 } \
        -gmt true -locale en_US_roman \
        -format {%J %Ok:%M:%S }
} 43200
test clock-29.920 {time parsing} {
    clock scan {2440588 xii:?:? } \
        -gmt true -locale en_US_roman \
        -format {%J %Ok:%OM:%OS }
} 43200
test clock-29.921 {time parsing} {
    clock scan {2440588 12 PM} \
        -gmt true -locale en_US_roman \
        -format {%J %I %p}
} 43200
test clock-29.922 {time parsing} {
    clock scan {2440588 12:00 PM} \
        -gmt true -locale en_US_roman \
        -format {%J %I:%M %p}
} 43200
test clock-29.923 {time parsing} {
    clock scan {2440588 12:? PM} \
        -gmt true -locale en_US_roman \
        -format {%J %I:%OM %p}
} 43200
test clock-29.924 {time parsing} {
    clock scan {2440588 12:00:00 PM} \
        -gmt true -locale en_US_roman \
        -format {%J %I:%M:%S %p}
} 43200
test clock-29.925 {time parsing} {
    clock scan {2440588 12:?:? PM} \
        -gmt true -locale en_US_roman \
        -format {%J %I:%OM:%OS %p}
} 43200
test clock-29.926 {time parsing} {
    clock scan {2440588 12 PM} \
        -gmt true -locale en_US_roman \
        -format {%J %l %p}
} 43200
test clock-29.927 {time parsing} {
    clock scan {2440588 12:00 PM} \
        -gmt true -locale en_US_roman \
        -format {%J %l:%M %p}
} 43200
test clock-29.928 {time parsing} {
    clock scan {2440588 12:? PM} \
        -gmt true -locale en_US_roman \
        -format {%J %l:%OM %p}
} 43200
test clock-29.929 {time parsing} {
    clock scan {2440588 12:00:00 PM} \
        -gmt true -locale en_US_roman \
        -format {%J %l:%M:%S %p}
} 43200
test clock-29.930 {time parsing} {
    clock scan {2440588 12:?:? PM} \
        -gmt true -locale en_US_roman \
        -format {%J %l:%OM:%OS %p}
} 43200
test clock-29.931 {time parsing} {
    clock scan {2440588 xii PM} \
        -gmt true -locale en_US_roman \
        -format {%J %OI %p}
} 43200
test clock-29.932 {time parsing} {
    clock scan {2440588 xii:00 PM} \
        -gmt true -locale en_US_roman \
        -format {%J %OI:%M %p}
} 43200
test clock-29.933 {time parsing} {
    clock scan {2440588 xii:? PM} \
        -gmt true -locale en_US_roman \
        -format {%J %OI:%OM %p}
} 43200
test clock-29.934 {time parsing} {
    clock scan {2440588 xii:00:00 PM} \
        -gmt true -locale en_US_roman \
        -format {%J %OI:%M:%S %p}
} 43200
test clock-29.935 {time parsing} {
    clock scan {2440588 xii:?:? PM} \
        -gmt true -locale en_US_roman \
        -format {%J %OI:%OM:%OS %p}
} 43200
test clock-29.936 {time parsing} {
    clock scan {2440588 xii PM} \
        -gmt true -locale en_US_roman \
        -format {%J %Ol %p}
} 43200
test clock-29.937 {time parsing} {
    clock scan {2440588 xii:00 PM} \
        -gmt true -locale en_US_roman \
        -format {%J %Ol:%M %p}
} 43200
test clock-29.938 {time parsing} {
    clock scan {2440588 xii:? PM} \
        -gmt true -locale en_US_roman \
        -format {%J %Ol:%OM %p}
} 43200
test clock-29.939 {time parsing} {
    clock scan {2440588 xii:00:00 PM} \
        -gmt true -locale en_US_roman \
        -format {%J %Ol:%M:%S %p}
} 43200
test clock-29.940 {time parsing} {
    clock scan {2440588 xii:?:? PM} \
        -gmt true -locale en_US_roman \
        -format {%J %Ol:%OM:%OS %p}
} 43200
test clock-29.941 {time parsing} {
    clock scan {2440588 12 pm} \
        -gmt true -locale en_US_roman \
        -format {%J %I %P}
} 43200
test clock-29.942 {time parsing} {
    clock scan {2440588 12:00 pm} \
        -gmt true -locale en_US_roman \
        -format {%J %I:%M %P}
} 43200
test clock-29.943 {time parsing} {
    clock scan {2440588 12:? pm} \
        -gmt true -locale en_US_roman \
        -format {%J %I:%OM %P}
} 43200
test clock-29.944 {time parsing} {
    clock scan {2440588 12:00:00 pm} \
        -gmt true -locale en_US_roman \
        -format {%J %I:%M:%S %P}
} 43200
test clock-29.945 {time parsing} {
    clock scan {2440588 12:?:? pm} \
        -gmt true -locale en_US_roman \
        -format {%J %I:%OM:%OS %P}
} 43200
test clock-29.946 {time parsing} {
    clock scan {2440588 12 pm} \
        -gmt true -locale en_US_roman \
        -format {%J %l %P}
} 43200
test clock-29.947 {time parsing} {
    clock scan {2440588 12:00 pm} \
        -gmt true -locale en_US_roman \
        -format {%J %l:%M %P}
} 43200
test clock-29.948 {time parsing} {
    clock scan {2440588 12:? pm} \
        -gmt true -locale en_US_roman \
        -format {%J %l:%OM %P}
} 43200
test clock-29.949 {time parsing} {
    clock scan {2440588 12:00:00 pm} \
        -gmt true -locale en_US_roman \
        -format {%J %l:%M:%S %P}
} 43200
test clock-29.950 {time parsing} {
    clock scan {2440588 12:?:? pm} \
        -gmt true -locale en_US_roman \
        -format {%J %l:%OM:%OS %P}
} 43200
test clock-29.951 {time parsing} {
    clock scan {2440588 xii pm} \
        -gmt true -locale en_US_roman \
        -format {%J %OI %P}
} 43200
test clock-29.952 {time parsing} {
    clock scan {2440588 xii:00 pm} \
        -gmt true -locale en_US_roman \
        -format {%J %OI:%M %P}
} 43200
test clock-29.953 {time parsing} {
    clock scan {2440588 xii:? pm} \
        -gmt true -locale en_US_roman \
        -format {%J %OI:%OM %P}
} 43200
test clock-29.954 {time parsing} {
    clock scan {2440588 xii:00:00 pm} \
        -gmt true -locale en_US_roman \
        -format {%J %OI:%M:%S %P}
} 43200
test clock-29.955 {time parsing} {
    clock scan {2440588 xii:?:? pm} \
        -gmt true -locale en_US_roman \
        -format {%J %OI:%OM:%OS %P}
} 43200
test clock-29.956 {time parsing} {
    clock scan {2440588 xii pm} \
        -gmt true -locale en_US_roman \
        -format {%J %Ol %P}
} 43200
test clock-29.957 {time parsing} {
    clock scan {2440588 xii:00 pm} \
        -gmt true -locale en_US_roman \
        -format {%J %Ol:%M %P}
} 43200
test clock-29.958 {time parsing} {
    clock scan {2440588 xii:? pm} \
        -gmt true -locale en_US_roman \
        -format {%J %Ol:%OM %P}
} 43200
test clock-29.959 {time parsing} {
    clock scan {2440588 xii:00:00 pm} \
        -gmt true -locale en_US_roman \
        -format {%J %Ol:%M:%S %P}
} 43200
test clock-29.960 {time parsing} {
    clock scan {2440588 xii:?:? pm} \
        -gmt true -locale en_US_roman \
        -format {%J %Ol:%OM:%OS %P}
} 43200
test clock-29.961 {time parsing} {
    clock scan {2440588 12:00:01 } \
        -gmt true -locale en_US_roman \
        -format {%J %H:%M:%S }
} 43201
test clock-29.962 {time parsing} {
    clock scan {2440588 12:?:i } \
        -gmt true -locale en_US_roman \
        -format {%J %H:%OM:%OS }
} 43201
test clock-29.963 {time parsing} {
    clock scan {2440588 12:00:01 } \
        -gmt true -locale en_US_roman \
        -format {%J %k:%M:%S }
} 43201
test clock-29.964 {time parsing} {
    clock scan {2440588 12:?:i } \
        -gmt true -locale en_US_roman \
        -format {%J %k:%OM:%OS }
} 43201
test clock-29.965 {time parsing} {
    clock scan {2440588 xii:00:01 } \
        -gmt true -locale en_US_roman \
        -format {%J %OH:%M:%S }
} 43201
test clock-29.966 {time parsing} {
    clock scan {2440588 xii:?:i } \
        -gmt true -locale en_US_roman \
        -format {%J %OH:%OM:%OS }
} 43201
test clock-29.967 {time parsing} {
    clock scan {2440588 xii:00:01 } \
        -gmt true -locale en_US_roman \
        -format {%J %Ok:%M:%S }
} 43201
test clock-29.968 {time parsing} {
    clock scan {2440588 xii:?:i } \
        -gmt true -locale en_US_roman \
        -format {%J %Ok:%OM:%OS }
} 43201
test clock-29.969 {time parsing} {
    clock scan {2440588 12:00:01 PM} \
        -gmt true -locale en_US_roman \
        -format {%J %I:%M:%S %p}
} 43201
test clock-29.970 {time parsing} {
    clock scan {2440588 12:?:i PM} \
        -gmt true -locale en_US_roman \
        -format {%J %I:%OM:%OS %p}
} 43201
test clock-29.971 {time parsing} {
    clock scan {2440588 12:00:01 PM} \
        -gmt true -locale en_US_roman \
        -format {%J %l:%M:%S %p}
} 43201
test clock-29.972 {time parsing} {
    clock scan {2440588 12:?:i PM} \
        -gmt true -locale en_US_roman \
        -format {%J %l:%OM:%OS %p}
} 43201
test clock-29.973 {time parsing} {
    clock scan {2440588 xii:00:01 PM} \
        -gmt true -locale en_US_roman \
        -format {%J %OI:%M:%S %p}
} 43201
test clock-29.974 {time parsing} {
    clock scan {2440588 xii:?:i PM} \
        -gmt true -locale en_US_roman \
        -format {%J %OI:%OM:%OS %p}
} 43201
test clock-29.975 {time parsing} {
    clock scan {2440588 xii:00:01 PM} \
        -gmt true -locale en_US_roman \
        -format {%J %Ol:%M:%S %p}
} 43201
test clock-29.976 {time parsing} {
    clock scan {2440588 xii:?:i PM} \
        -gmt true -locale en_US_roman \
        -format {%J %Ol:%OM:%OS %p}
} 43201
test clock-29.977 {time parsing} {
    clock scan {2440588 12:00:01 pm} \
        -gmt true -locale en_US_roman \
        -format {%J %I:%M:%S %P}
} 43201
test clock-29.978 {time parsing} {
    clock scan {2440588 12:?:i pm} \
        -gmt true -locale en_US_roman \
        -format {%J %I:%OM:%OS %P}
} 43201
test clock-29.979 {time parsing} {
    clock scan {2440588 12:00:01 pm} \
        -gmt true -locale en_US_roman \
        -format {%J %l:%M:%S %P}
} 43201
test clock-29.980 {time parsing} {
    clock scan {2440588 12:?:i pm} \
        -gmt true -locale en_US_roman \
        -format {%J %l:%OM:%OS %P}
} 43201
test clock-29.981 {time parsing} {
    clock scan {2440588 xii:00:01 pm} \
        -gmt true -locale en_US_roman \
        -format {%J %OI:%M:%S %P}
} 43201
test clock-29.982 {time parsing} {
    clock scan {2440588 xii:?:i pm} \
        -gmt true -locale en_US_roman \
        -format {%J %OI:%OM:%OS %P}
} 43201
test clock-29.983 {time parsing} {
    clock scan {2440588 xii:00:01 pm} \
        -gmt true -locale en_US_roman \
        -format {%J %Ol:%M:%S %P}
} 43201
test clock-29.984 {time parsing} {
    clock scan {2440588 xii:?:i pm} \
        -gmt true -locale en_US_roman \
        -format {%J %Ol:%OM:%OS %P}
} 43201
test clock-29.985 {time parsing} {
    clock scan {2440588 12:00:59 } \
        -gmt true -locale en_US_roman \
        -format {%J %H:%M:%S }
} 43259
test clock-29.986 {time parsing} {
    clock scan {2440588 12:?:lix } \
        -gmt true -locale en_US_roman \
        -format {%J %H:%OM:%OS }
} 43259
test clock-29.987 {time parsing} {
    clock scan {2440588 12:00:59 } \
        -gmt true -locale en_US_roman \
        -format {%J %k:%M:%S }
} 43259
test clock-29.988 {time parsing} {
    clock scan {2440588 12:?:lix } \
        -gmt true -locale en_US_roman \
        -format {%J %k:%OM:%OS }
} 43259
test clock-29.989 {time parsing} {
    clock scan {2440588 xii:00:59 } \
        -gmt true -locale en_US_roman \
        -format {%J %OH:%M:%S }
} 43259
test clock-29.990 {time parsing} {
    clock scan {2440588 xii:?:lix } \
        -gmt true -locale en_US_roman \
        -format {%J %OH:%OM:%OS }
} 43259
test clock-29.991 {time parsing} {
    clock scan {2440588 xii:00:59 } \
        -gmt true -locale en_US_roman \
        -format {%J %Ok:%M:%S }
} 43259
test clock-29.992 {time parsing} {
    clock scan {2440588 xii:?:lix } \
        -gmt true -locale en_US_roman \
        -format {%J %Ok:%OM:%OS }
} 43259
test clock-29.993 {time parsing} {
    clock scan {2440588 12:00:59 PM} \
        -gmt true -locale en_US_roman \
        -format {%J %I:%M:%S %p}
} 43259
test clock-29.994 {time parsing} {
    clock scan {2440588 12:?:lix PM} \
        -gmt true -locale en_US_roman \
        -format {%J %I:%OM:%OS %p}
} 43259
test clock-29.995 {time parsing} {
    clock scan {2440588 12:00:59 PM} \
        -gmt true -locale en_US_roman \
        -format {%J %l:%M:%S %p}
} 43259
test clock-29.996 {time parsing} {
    clock scan {2440588 12:?:lix PM} \
        -gmt true -locale en_US_roman \
        -format {%J %l:%OM:%OS %p}
} 43259
test clock-29.997 {time parsing} {
    clock scan {2440588 xii:00:59 PM} \
        -gmt true -locale en_US_roman \
        -format {%J %OI:%M:%S %p}
} 43259
test clock-29.998 {time parsing} {
    clock scan {2440588 xii:?:lix PM} \
        -gmt true -locale en_US_roman \
        -format {%J %OI:%OM:%OS %p}
} 43259
test clock-29.999 {time parsing} {
    clock scan {2440588 xii:00:59 PM} \
        -gmt true -locale en_US_roman \
        -format {%J %Ol:%M:%S %p}
} 43259
test clock-29.1000 {time parsing} {
    clock scan {2440588 xii:?:lix PM} \
        -gmt true -locale en_US_roman \
        -format {%J %Ol:%OM:%OS %p}
} 43259
test clock-29.1001 {time parsing} {
    clock scan {2440588 12:00:59 pm} \
        -gmt true -locale en_US_roman \
        -format {%J %I:%M:%S %P}
} 43259
test clock-29.1002 {time parsing} {
    clock scan {2440588 12:?:lix pm} \
        -gmt true -locale en_US_roman \
        -format {%J %I:%OM:%OS %P}
} 43259
test clock-29.1003 {time parsing} {
    clock scan {2440588 12:00:59 pm} \
        -gmt true -locale en_US_roman \
        -format {%J %l:%M:%S %P}
} 43259
test clock-29.1004 {time parsing} {
    clock scan {2440588 12:?:lix pm} \
        -gmt true -locale en_US_roman \
        -format {%J %l:%OM:%OS %P}
} 43259
test clock-29.1005 {time parsing} {
    clock scan {2440588 xii:00:59 pm} \
        -gmt true -locale en_US_roman \
        -format {%J %OI:%M:%S %P}
} 43259
test clock-29.1006 {time parsing} {
    clock scan {2440588 xii:?:lix pm} \
        -gmt true -locale en_US_roman \
        -format {%J %OI:%OM:%OS %P}
} 43259
test clock-29.1007 {time parsing} {
    clock scan {2440588 xii:00:59 pm} \
        -gmt true -locale en_US_roman \
        -format {%J %Ol:%M:%S %P}
} 43259
test clock-29.1008 {time parsing} {
    clock scan {2440588 xii:?:lix pm} \
        -gmt true -locale en_US_roman \
        -format {%J %Ol:%OM:%OS %P}
} 43259
test clock-29.1009 {time parsing} {
    clock scan {2440588 12:01 } \
        -gmt true -locale en_US_roman \
        -format {%J %H:%M }
} 43260
test clock-29.1010 {time parsing} {
    clock scan {2440588 12:i } \
        -gmt true -locale en_US_roman \
        -format {%J %H:%OM }
} 43260
test clock-29.1011 {time parsing} {
    clock scan {2440588 12:01:00 } \
        -gmt true -locale en_US_roman \
        -format {%J %H:%M:%S }
} 43260
test clock-29.1012 {time parsing} {
    clock scan {2440588 12:i:? } \
        -gmt true -locale en_US_roman \
        -format {%J %H:%OM:%OS }
} 43260
test clock-29.1013 {time parsing} {
    clock scan {2440588 12:01 } \
        -gmt true -locale en_US_roman \
        -format {%J %k:%M }
} 43260
test clock-29.1014 {time parsing} {
    clock scan {2440588 12:i } \
        -gmt true -locale en_US_roman \
        -format {%J %k:%OM }
} 43260
test clock-29.1015 {time parsing} {
    clock scan {2440588 12:01:00 } \
        -gmt true -locale en_US_roman \
        -format {%J %k:%M:%S }
} 43260
test clock-29.1016 {time parsing} {
    clock scan {2440588 12:i:? } \
        -gmt true -locale en_US_roman \
        -format {%J %k:%OM:%OS }
} 43260
test clock-29.1017 {time parsing} {
    clock scan {2440588 xii:01 } \
        -gmt true -locale en_US_roman \
        -format {%J %OH:%M }
} 43260
test clock-29.1018 {time parsing} {
    clock scan {2440588 xii:i } \
        -gmt true -locale en_US_roman \
        -format {%J %OH:%OM }
} 43260
test clock-29.1019 {time parsing} {
    clock scan {2440588 xii:01:00 } \
        -gmt true -locale en_US_roman \
        -format {%J %OH:%M:%S }
} 43260
test clock-29.1020 {time parsing} {
    clock scan {2440588 xii:i:? } \
        -gmt true -locale en_US_roman \
        -format {%J %OH:%OM:%OS }
} 43260
test clock-29.1021 {time parsing} {
    clock scan {2440588 xii:01 } \
        -gmt true -locale en_US_roman \
        -format {%J %Ok:%M }
} 43260
test clock-29.1022 {time parsing} {
    clock scan {2440588 xii:i } \
        -gmt true -locale en_US_roman \
        -format {%J %Ok:%OM }
} 43260
test clock-29.1023 {time parsing} {
    clock scan {2440588 xii:01:00 } \
        -gmt true -locale en_US_roman \
        -format {%J %Ok:%M:%S }
} 43260
test clock-29.1024 {time parsing} {
    clock scan {2440588 xii:i:? } \
        -gmt true -locale en_US_roman \
        -format {%J %Ok:%OM:%OS }
} 43260
test clock-29.1025 {time parsing} {
    clock scan {2440588 12:01 PM} \
        -gmt true -locale en_US_roman \
        -format {%J %I:%M %p}
} 43260
test clock-29.1026 {time parsing} {
    clock scan {2440588 12:i PM} \
        -gmt true -locale en_US_roman \
        -format {%J %I:%OM %p}
} 43260
test clock-29.1027 {time parsing} {
    clock scan {2440588 12:01:00 PM} \
        -gmt true -locale en_US_roman \
        -format {%J %I:%M:%S %p}
} 43260
test clock-29.1028 {time parsing} {
    clock scan {2440588 12:i:? PM} \
        -gmt true -locale en_US_roman \
        -format {%J %I:%OM:%OS %p}
} 43260
test clock-29.1029 {time parsing} {
    clock scan {2440588 12:01 PM} \
        -gmt true -locale en_US_roman \
        -format {%J %l:%M %p}
} 43260
test clock-29.1030 {time parsing} {
    clock scan {2440588 12:i PM} \
        -gmt true -locale en_US_roman \
        -format {%J %l:%OM %p}
} 43260
test clock-29.1031 {time parsing} {
    clock scan {2440588 12:01:00 PM} \
        -gmt true -locale en_US_roman \
        -format {%J %l:%M:%S %p}
} 43260
test clock-29.1032 {time parsing} {
    clock scan {2440588 12:i:? PM} \
        -gmt true -locale en_US_roman \
        -format {%J %l:%OM:%OS %p}
} 43260
test clock-29.1033 {time parsing} {
    clock scan {2440588 xii:01 PM} \
        -gmt true -locale en_US_roman \
        -format {%J %OI:%M %p}
} 43260
test clock-29.1034 {time parsing} {
    clock scan {2440588 xii:i PM} \
        -gmt true -locale en_US_roman \
        -format {%J %OI:%OM %p}
} 43260
test clock-29.1035 {time parsing} {
    clock scan {2440588 xii:01:00 PM} \
        -gmt true -locale en_US_roman \
        -format {%J %OI:%M:%S %p}
} 43260
test clock-29.1036 {time parsing} {
    clock scan {2440588 xii:i:? PM} \
        -gmt true -locale en_US_roman \
        -format {%J %OI:%OM:%OS %p}
} 43260
test clock-29.1037 {time parsing} {
    clock scan {2440588 xii:01 PM} \
        -gmt true -locale en_US_roman \
        -format {%J %Ol:%M %p}
} 43260
test clock-29.1038 {time parsing} {
    clock scan {2440588 xii:i PM} \
        -gmt true -locale en_US_roman \
        -format {%J %Ol:%OM %p}
} 43260
test clock-29.1039 {time parsing} {
    clock scan {2440588 xii:01:00 PM} \
        -gmt true -locale en_US_roman \
        -format {%J %Ol:%M:%S %p}
} 43260
test clock-29.1040 {time parsing} {
    clock scan {2440588 xii:i:? PM} \
        -gmt true -locale en_US_roman \
        -format {%J %Ol:%OM:%OS %p}
} 43260
test clock-29.1041 {time parsing} {
    clock scan {2440588 12:01 pm} \
        -gmt true -locale en_US_roman \
        -format {%J %I:%M %P}
} 43260
test clock-29.1042 {time parsing} {
    clock scan {2440588 12:i pm} \
        -gmt true -locale en_US_roman \
        -format {%J %I:%OM %P}
} 43260
test clock-29.1043 {time parsing} {
    clock scan {2440588 12:01:00 pm} \
        -gmt true -locale en_US_roman \
        -format {%J %I:%M:%S %P}
} 43260
test clock-29.1044 {time parsing} {
    clock scan {2440588 12:i:? pm} \
        -gmt true -locale en_US_roman \
        -format {%J %I:%OM:%OS %P}
} 43260
test clock-29.1045 {time parsing} {
    clock scan {2440588 12:01 pm} \
        -gmt true -locale en_US_roman \
        -format {%J %l:%M %P}
} 43260
test clock-29.1046 {time parsing} {
    clock scan {2440588 12:i pm} \
        -gmt true -locale en_US_roman \
        -format {%J %l:%OM %P}
} 43260
test clock-29.1047 {time parsing} {
    clock scan {2440588 12:01:00 pm} \
        -gmt true -locale en_US_roman \
        -format {%J %l:%M:%S %P}
} 43260
test clock-29.1048 {time parsing} {
    clock scan {2440588 12:i:? pm} \
        -gmt true -locale en_US_roman \
        -format {%J %l:%OM:%OS %P}
} 43260
test clock-29.1049 {time parsing} {
    clock scan {2440588 xii:01 pm} \
        -gmt true -locale en_US_roman \
        -format {%J %OI:%M %P}
} 43260
test clock-29.1050 {time parsing} {
    clock scan {2440588 xii:i pm} \
        -gmt true -locale en_US_roman \
        -format {%J %OI:%OM %P}
} 43260
test clock-29.1051 {time parsing} {
    clock scan {2440588 xii:01:00 pm} \
        -gmt true -locale en_US_roman \
        -format {%J %OI:%M:%S %P}
} 43260
test clock-29.1052 {time parsing} {
    clock scan {2440588 xii:i:? pm} \
        -gmt true -locale en_US_roman \
        -format {%J %OI:%OM:%OS %P}
} 43260
test clock-29.1053 {time parsing} {
    clock scan {2440588 xii:01 pm} \
        -gmt true -locale en_US_roman \
        -format {%J %Ol:%M %P}
} 43260
test clock-29.1054 {time parsing} {
    clock scan {2440588 xii:i pm} \
        -gmt true -locale en_US_roman \
        -format {%J %Ol:%OM %P}
} 43260
test clock-29.1055 {time parsing} {
    clock scan {2440588 xii:01:00 pm} \
        -gmt true -locale en_US_roman \
        -format {%J %Ol:%M:%S %P}
} 43260
test clock-29.1056 {time parsing} {
    clock scan {2440588 xii:i:? pm} \
        -gmt true -locale en_US_roman \
        -format {%J %Ol:%OM:%OS %P}
} 43260
test clock-29.1057 {time parsing} {
    clock scan {2440588 12:01:01 } \
        -gmt true -locale en_US_roman \
        -format {%J %H:%M:%S }
} 43261
test clock-29.1058 {time parsing} {
    clock scan {2440588 12:i:i } \
        -gmt true -locale en_US_roman \
        -format {%J %H:%OM:%OS }
} 43261
test clock-29.1059 {time parsing} {
    clock scan {2440588 12:01:01 } \
        -gmt true -locale en_US_roman \
        -format {%J %k:%M:%S }
} 43261
test clock-29.1060 {time parsing} {
    clock scan {2440588 12:i:i } \
        -gmt true -locale en_US_roman \
        -format {%J %k:%OM:%OS }
} 43261
test clock-29.1061 {time parsing} {
    clock scan {2440588 xii:01:01 } \
        -gmt true -locale en_US_roman \
        -format {%J %OH:%M:%S }
} 43261
test clock-29.1062 {time parsing} {
    clock scan {2440588 xii:i:i } \
        -gmt true -locale en_US_roman \
        -format {%J %OH:%OM:%OS }
} 43261
test clock-29.1063 {time parsing} {
    clock scan {2440588 xii:01:01 } \
        -gmt true -locale en_US_roman \
        -format {%J %Ok:%M:%S }
} 43261
test clock-29.1064 {time parsing} {
    clock scan {2440588 xii:i:i } \
        -gmt true -locale en_US_roman \
        -format {%J %Ok:%OM:%OS }
} 43261
test clock-29.1065 {time parsing} {
    clock scan {2440588 12:01:01 PM} \
        -gmt true -locale en_US_roman \
        -format {%J %I:%M:%S %p}
} 43261
test clock-29.1066 {time parsing} {
    clock scan {2440588 12:i:i PM} \
        -gmt true -locale en_US_roman \
        -format {%J %I:%OM:%OS %p}
} 43261
test clock-29.1067 {time parsing} {
    clock scan {2440588 12:01:01 PM} \
        -gmt true -locale en_US_roman \
        -format {%J %l:%M:%S %p}
} 43261
test clock-29.1068 {time parsing} {
    clock scan {2440588 12:i:i PM} \
        -gmt true -locale en_US_roman \
        -format {%J %l:%OM:%OS %p}
} 43261
test clock-29.1069 {time parsing} {
    clock scan {2440588 xii:01:01 PM} \
        -gmt true -locale en_US_roman \
        -format {%J %OI:%M:%S %p}
} 43261
test clock-29.1070 {time parsing} {
    clock scan {2440588 xii:i:i PM} \
        -gmt true -locale en_US_roman \
        -format {%J %OI:%OM:%OS %p}
} 43261
test clock-29.1071 {time parsing} {
    clock scan {2440588 xii:01:01 PM} \
        -gmt true -locale en_US_roman \
        -format {%J %Ol:%M:%S %p}
} 43261
test clock-29.1072 {time parsing} {
    clock scan {2440588 xii:i:i PM} \
        -gmt true -locale en_US_roman \
        -format {%J %Ol:%OM:%OS %p}
} 43261
test clock-29.1073 {time parsing} {
    clock scan {2440588 12:01:01 pm} \
        -gmt true -locale en_US_roman \
        -format {%J %I:%M:%S %P}
} 43261
test clock-29.1074 {time parsing} {
    clock scan {2440588 12:i:i pm} \
        -gmt true -locale en_US_roman \
        -format {%J %I:%OM:%OS %P}
} 43261
test clock-29.1075 {time parsing} {
    clock scan {2440588 12:01:01 pm} \
        -gmt true -locale en_US_roman \
        -format {%J %l:%M:%S %P}
} 43261
test clock-29.1076 {time parsing} {
    clock scan {2440588 12:i:i pm} \
        -gmt true -locale en_US_roman \
        -format {%J %l:%OM:%OS %P}
} 43261
test clock-29.1077 {time parsing} {
    clock scan {2440588 xii:01:01 pm} \
        -gmt true -locale en_US_roman \
        -format {%J %OI:%M:%S %P}
} 43261
test clock-29.1078 {time parsing} {
    clock scan {2440588 xii:i:i pm} \
        -gmt true -locale en_US_roman \
        -format {%J %OI:%OM:%OS %P}
} 43261
test clock-29.1079 {time parsing} {
    clock scan {2440588 xii:01:01 pm} \
        -gmt true -locale en_US_roman \
        -format {%J %Ol:%M:%S %P}
} 43261
test clock-29.1080 {time parsing} {
    clock scan {2440588 xii:i:i pm} \
        -gmt true -locale en_US_roman \
        -format {%J %Ol:%OM:%OS %P}
} 43261
test clock-29.1081 {time parsing} {
    clock scan {2440588 12:01:59 } \
        -gmt true -locale en_US_roman \
        -format {%J %H:%M:%S }
} 43319
test clock-29.1082 {time parsing} {
    clock scan {2440588 12:i:lix } \
        -gmt true -locale en_US_roman \
        -format {%J %H:%OM:%OS }
} 43319
test clock-29.1083 {time parsing} {
    clock scan {2440588 12:01:59 } \
        -gmt true -locale en_US_roman \
        -format {%J %k:%M:%S }
} 43319
test clock-29.1084 {time parsing} {
    clock scan {2440588 12:i:lix } \
        -gmt true -locale en_US_roman \
        -format {%J %k:%OM:%OS }
} 43319
test clock-29.1085 {time parsing} {
    clock scan {2440588 xii:01:59 } \
        -gmt true -locale en_US_roman \
        -format {%J %OH:%M:%S }
} 43319
test clock-29.1086 {time parsing} {
    clock scan {2440588 xii:i:lix } \
        -gmt true -locale en_US_roman \
        -format {%J %OH:%OM:%OS }
} 43319
test clock-29.1087 {time parsing} {
    clock scan {2440588 xii:01:59 } \
        -gmt true -locale en_US_roman \
        -format {%J %Ok:%M:%S }
} 43319
test clock-29.1088 {time parsing} {
    clock scan {2440588 xii:i:lix } \
        -gmt true -locale en_US_roman \
        -format {%J %Ok:%OM:%OS }
} 43319
test clock-29.1089 {time parsing} {
    clock scan {2440588 12:01:59 PM} \
        -gmt true -locale en_US_roman \
        -format {%J %I:%M:%S %p}
} 43319
test clock-29.1090 {time parsing} {
    clock scan {2440588 12:i:lix PM} \
        -gmt true -locale en_US_roman \
        -format {%J %I:%OM:%OS %p}
} 43319
test clock-29.1091 {time parsing} {
    clock scan {2440588 12:01:59 PM} \
        -gmt true -locale en_US_roman \
        -format {%J %l:%M:%S %p}
} 43319
test clock-29.1092 {time parsing} {
    clock scan {2440588 12:i:lix PM} \
        -gmt true -locale en_US_roman \
        -format {%J %l:%OM:%OS %p}
} 43319
test clock-29.1093 {time parsing} {
    clock scan {2440588 xii:01:59 PM} \
        -gmt true -locale en_US_roman \
        -format {%J %OI:%M:%S %p}
} 43319
test clock-29.1094 {time parsing} {
    clock scan {2440588 xii:i:lix PM} \
        -gmt true -locale en_US_roman \
        -format {%J %OI:%OM:%OS %p}
} 43319
test clock-29.1095 {time parsing} {
    clock scan {2440588 xii:01:59 PM} \
        -gmt true -locale en_US_roman \
        -format {%J %Ol:%M:%S %p}
} 43319
test clock-29.1096 {time parsing} {
    clock scan {2440588 xii:i:lix PM} \
        -gmt true -locale en_US_roman \
        -format {%J %Ol:%OM:%OS %p}
} 43319
test clock-29.1097 {time parsing} {
    clock scan {2440588 12:01:59 pm} \
        -gmt true -locale en_US_roman \
        -format {%J %I:%M:%S %P}
} 43319
test clock-29.1098 {time parsing} {
    clock scan {2440588 12:i:lix pm} \
        -gmt true -locale en_US_roman \
        -format {%J %I:%OM:%OS %P}
} 43319
test clock-29.1099 {time parsing} {
    clock scan {2440588 12:01:59 pm} \
        -gmt true -locale en_US_roman \
        -format {%J %l:%M:%S %P}
} 43319
test clock-29.1100 {time parsing} {
    clock scan {2440588 12:i:lix pm} \
        -gmt true -locale en_US_roman \
        -format {%J %l:%OM:%OS %P}
} 43319
test clock-29.1101 {time parsing} {
    clock scan {2440588 xii:01:59 pm} \
        -gmt true -locale en_US_roman \
        -format {%J %OI:%M:%S %P}
} 43319
test clock-29.1102 {time parsing} {
    clock scan {2440588 xii:i:lix pm} \
        -gmt true -locale en_US_roman \
        -format {%J %OI:%OM:%OS %P}
} 43319
test clock-29.1103 {time parsing} {
    clock scan {2440588 xii:01:59 pm} \
        -gmt true -locale en_US_roman \
        -format {%J %Ol:%M:%S %P}
} 43319
test clock-29.1104 {time parsing} {
    clock scan {2440588 xii:i:lix pm} \
        -gmt true -locale en_US_roman \
        -format {%J %Ol:%OM:%OS %P}
} 43319
test clock-29.1105 {time parsing} {
    clock scan {2440588 12:59 } \
        -gmt true -locale en_US_roman \
        -format {%J %H:%M }
} 46740
test clock-29.1106 {time parsing} {
    clock scan {2440588 12:lix } \
        -gmt true -locale en_US_roman \
        -format {%J %H:%OM }
} 46740
test clock-29.1107 {time parsing} {
    clock scan {2440588 12:59:00 } \
        -gmt true -locale en_US_roman \
        -format {%J %H:%M:%S }
} 46740
test clock-29.1108 {time parsing} {
    clock scan {2440588 12:lix:? } \
        -gmt true -locale en_US_roman \
        -format {%J %H:%OM:%OS }
} 46740
test clock-29.1109 {time parsing} {
    clock scan {2440588 12:59 } \
        -gmt true -locale en_US_roman \
        -format {%J %k:%M }
} 46740
test clock-29.1110 {time parsing} {
    clock scan {2440588 12:lix } \
        -gmt true -locale en_US_roman \
        -format {%J %k:%OM }
} 46740
test clock-29.1111 {time parsing} {
    clock scan {2440588 12:59:00 } \
        -gmt true -locale en_US_roman \
        -format {%J %k:%M:%S }
} 46740
test clock-29.1112 {time parsing} {
    clock scan {2440588 12:lix:? } \
        -gmt true -locale en_US_roman \
        -format {%J %k:%OM:%OS }
} 46740
test clock-29.1113 {time parsing} {
    clock scan {2440588 xii:59 } \
        -gmt true -locale en_US_roman \
        -format {%J %OH:%M }
} 46740
test clock-29.1114 {time parsing} {
    clock scan {2440588 xii:lix } \
        -gmt true -locale en_US_roman \
        -format {%J %OH:%OM }
} 46740
test clock-29.1115 {time parsing} {
    clock scan {2440588 xii:59:00 } \
        -gmt true -locale en_US_roman \
        -format {%J %OH:%M:%S }
} 46740
test clock-29.1116 {time parsing} {
    clock scan {2440588 xii:lix:? } \
        -gmt true -locale en_US_roman \
        -format {%J %OH:%OM:%OS }
} 46740
test clock-29.1117 {time parsing} {
    clock scan {2440588 xii:59 } \
        -gmt true -locale en_US_roman \
        -format {%J %Ok:%M }
} 46740
test clock-29.1118 {time parsing} {
    clock scan {2440588 xii:lix } \
        -gmt true -locale en_US_roman \
        -format {%J %Ok:%OM }
} 46740
test clock-29.1119 {time parsing} {
    clock scan {2440588 xii:59:00 } \
        -gmt true -locale en_US_roman \
        -format {%J %Ok:%M:%S }
} 46740
test clock-29.1120 {time parsing} {
    clock scan {2440588 xii:lix:? } \
        -gmt true -locale en_US_roman \
        -format {%J %Ok:%OM:%OS }
} 46740
test clock-29.1121 {time parsing} {
    clock scan {2440588 12:59 PM} \
        -gmt true -locale en_US_roman \
        -format {%J %I:%M %p}
} 46740
test clock-29.1122 {time parsing} {
    clock scan {2440588 12:lix PM} \
        -gmt true -locale en_US_roman \
        -format {%J %I:%OM %p}
} 46740
test clock-29.1123 {time parsing} {
    clock scan {2440588 12:59:00 PM} \
        -gmt true -locale en_US_roman \
        -format {%J %I:%M:%S %p}
} 46740
test clock-29.1124 {time parsing} {
    clock scan {2440588 12:lix:? PM} \
        -gmt true -locale en_US_roman \
        -format {%J %I:%OM:%OS %p}
} 46740
test clock-29.1125 {time parsing} {
    clock scan {2440588 12:59 PM} \
        -gmt true -locale en_US_roman \
        -format {%J %l:%M %p}
} 46740
test clock-29.1126 {time parsing} {
    clock scan {2440588 12:lix PM} \
        -gmt true -locale en_US_roman \
        -format {%J %l:%OM %p}
} 46740
test clock-29.1127 {time parsing} {
    clock scan {2440588 12:59:00 PM} \
        -gmt true -locale en_US_roman \
        -format {%J %l:%M:%S %p}
} 46740
test clock-29.1128 {time parsing} {
    clock scan {2440588 12:lix:? PM} \
        -gmt true -locale en_US_roman \
        -format {%J %l:%OM:%OS %p}
} 46740
test clock-29.1129 {time parsing} {
    clock scan {2440588 xii:59 PM} \
        -gmt true -locale en_US_roman \
        -format {%J %OI:%M %p}
} 46740
test clock-29.1130 {time parsing} {
    clock scan {2440588 xii:lix PM} \
        -gmt true -locale en_US_roman \
        -format {%J %OI:%OM %p}
} 46740
test clock-29.1131 {time parsing} {
    clock scan {2440588 xii:59:00 PM} \
        -gmt true -locale en_US_roman \
        -format {%J %OI:%M:%S %p}
} 46740
test clock-29.1132 {time parsing} {
    clock scan {2440588 xii:lix:? PM} \
        -gmt true -locale en_US_roman \
        -format {%J %OI:%OM:%OS %p}
} 46740
test clock-29.1133 {time parsing} {
    clock scan {2440588 xii:59 PM} \
        -gmt true -locale en_US_roman \
        -format {%J %Ol:%M %p}
} 46740
test clock-29.1134 {time parsing} {
    clock scan {2440588 xii:lix PM} \
        -gmt true -locale en_US_roman \
        -format {%J %Ol:%OM %p}
} 46740
test clock-29.1135 {time parsing} {
    clock scan {2440588 xii:59:00 PM} \
        -gmt true -locale en_US_roman \
        -format {%J %Ol:%M:%S %p}
} 46740
test clock-29.1136 {time parsing} {
    clock scan {2440588 xii:lix:? PM} \
        -gmt true -locale en_US_roman \
        -format {%J %Ol:%OM:%OS %p}
} 46740
test clock-29.1137 {time parsing} {
    clock scan {2440588 12:59 pm} \
        -gmt true -locale en_US_roman \
        -format {%J %I:%M %P}
} 46740
test clock-29.1138 {time parsing} {
    clock scan {2440588 12:lix pm} \
        -gmt true -locale en_US_roman \
        -format {%J %I:%OM %P}
} 46740
test clock-29.1139 {time parsing} {
    clock scan {2440588 12:59:00 pm} \
        -gmt true -locale en_US_roman \
        -format {%J %I:%M:%S %P}
} 46740
test clock-29.1140 {time parsing} {
    clock scan {2440588 12:lix:? pm} \
        -gmt true -locale en_US_roman \
        -format {%J %I:%OM:%OS %P}
} 46740
test clock-29.1141 {time parsing} {
    clock scan {2440588 12:59 pm} \
        -gmt true -locale en_US_roman \
        -format {%J %l:%M %P}
} 46740
test clock-29.1142 {time parsing} {
    clock scan {2440588 12:lix pm} \
        -gmt true -locale en_US_roman \
        -format {%J %l:%OM %P}
} 46740
test clock-29.1143 {time parsing} {
    clock scan {2440588 12:59:00 pm} \
        -gmt true -locale en_US_roman \
        -format {%J %l:%M:%S %P}
} 46740
test clock-29.1144 {time parsing} {
    clock scan {2440588 12:lix:? pm} \
        -gmt true -locale en_US_roman \
        -format {%J %l:%OM:%OS %P}
} 46740
test clock-29.1145 {time parsing} {
    clock scan {2440588 xii:59 pm} \
        -gmt true -locale en_US_roman \
        -format {%J %OI:%M %P}
} 46740
test clock-29.1146 {time parsing} {
    clock scan {2440588 xii:lix pm} \
        -gmt true -locale en_US_roman \
        -format {%J %OI:%OM %P}
} 46740
test clock-29.1147 {time parsing} {
    clock scan {2440588 xii:59:00 pm} \
        -gmt true -locale en_US_roman \
        -format {%J %OI:%M:%S %P}
} 46740
test clock-29.1148 {time parsing} {
    clock scan {2440588 xii:lix:? pm} \
        -gmt true -locale en_US_roman \
        -format {%J %OI:%OM:%OS %P}
} 46740
test clock-29.1149 {time parsing} {
    clock scan {2440588 xii:59 pm} \
        -gmt true -locale en_US_roman \
        -format {%J %Ol:%M %P}
} 46740
test clock-29.1150 {time parsing} {
    clock scan {2440588 xii:lix pm} \
        -gmt true -locale en_US_roman \
        -format {%J %Ol:%OM %P}
} 46740
test clock-29.1151 {time parsing} {
    clock scan {2440588 xii:59:00 pm} \
        -gmt true -locale en_US_roman \
        -format {%J %Ol:%M:%S %P}
} 46740
test clock-29.1152 {time parsing} {
    clock scan {2440588 xii:lix:? pm} \
        -gmt true -locale en_US_roman \
        -format {%J %Ol:%OM:%OS %P}
} 46740
test clock-29.1153 {time parsing} {
    clock scan {2440588 12:59:01 } \
        -gmt true -locale en_US_roman \
        -format {%J %H:%M:%S }
} 46741
test clock-29.1154 {time parsing} {
    clock scan {2440588 12:lix:i } \
        -gmt true -locale en_US_roman \
        -format {%J %H:%OM:%OS }
} 46741
test clock-29.1155 {time parsing} {
    clock scan {2440588 12:59:01 } \
        -gmt true -locale en_US_roman \
        -format {%J %k:%M:%S }
} 46741
test clock-29.1156 {time parsing} {
    clock scan {2440588 12:lix:i } \
        -gmt true -locale en_US_roman \
        -format {%J %k:%OM:%OS }
} 46741
test clock-29.1157 {time parsing} {
    clock scan {2440588 xii:59:01 } \
        -gmt true -locale en_US_roman \
        -format {%J %OH:%M:%S }
} 46741
test clock-29.1158 {time parsing} {
    clock scan {2440588 xii:lix:i } \
        -gmt true -locale en_US_roman \
        -format {%J %OH:%OM:%OS }
} 46741
test clock-29.1159 {time parsing} {
    clock scan {2440588 xii:59:01 } \
        -gmt true -locale en_US_roman \
        -format {%J %Ok:%M:%S }
} 46741
test clock-29.1160 {time parsing} {
    clock scan {2440588 xii:lix:i } \
        -gmt true -locale en_US_roman \
        -format {%J %Ok:%OM:%OS }
} 46741
test clock-29.1161 {time parsing} {
    clock scan {2440588 12:59:01 PM} \
        -gmt true -locale en_US_roman \
        -format {%J %I:%M:%S %p}
} 46741
test clock-29.1162 {time parsing} {
    clock scan {2440588 12:lix:i PM} \
        -gmt true -locale en_US_roman \
        -format {%J %I:%OM:%OS %p}
} 46741
test clock-29.1163 {time parsing} {
    clock scan {2440588 12:59:01 PM} \
        -gmt true -locale en_US_roman \
        -format {%J %l:%M:%S %p}
} 46741
test clock-29.1164 {time parsing} {
    clock scan {2440588 12:lix:i PM} \
        -gmt true -locale en_US_roman \
        -format {%J %l:%OM:%OS %p}
} 46741
test clock-29.1165 {time parsing} {
    clock scan {2440588 xii:59:01 PM} \
        -gmt true -locale en_US_roman \
        -format {%J %OI:%M:%S %p}
} 46741
test clock-29.1166 {time parsing} {
    clock scan {2440588 xii:lix:i PM} \
        -gmt true -locale en_US_roman \
        -format {%J %OI:%OM:%OS %p}
} 46741
test clock-29.1167 {time parsing} {
    clock scan {2440588 xii:59:01 PM} \
        -gmt true -locale en_US_roman \
        -format {%J %Ol:%M:%S %p}
} 46741
test clock-29.1168 {time parsing} {
    clock scan {2440588 xii:lix:i PM} \
        -gmt true -locale en_US_roman \
        -format {%J %Ol:%OM:%OS %p}
} 46741
test clock-29.1169 {time parsing} {
    clock scan {2440588 12:59:01 pm} \
        -gmt true -locale en_US_roman \
        -format {%J %I:%M:%S %P}
} 46741
test clock-29.1170 {time parsing} {
    clock scan {2440588 12:lix:i pm} \
        -gmt true -locale en_US_roman \
        -format {%J %I:%OM:%OS %P}
} 46741
test clock-29.1171 {time parsing} {
    clock scan {2440588 12:59:01 pm} \
        -gmt true -locale en_US_roman \
        -format {%J %l:%M:%S %P}
} 46741
test clock-29.1172 {time parsing} {
    clock scan {2440588 12:lix:i pm} \
        -gmt true -locale en_US_roman \
        -format {%J %l:%OM:%OS %P}
} 46741
test clock-29.1173 {time parsing} {
    clock scan {2440588 xii:59:01 pm} \
        -gmt true -locale en_US_roman \
        -format {%J %OI:%M:%S %P}
} 46741
test clock-29.1174 {time parsing} {
    clock scan {2440588 xii:lix:i pm} \
        -gmt true -locale en_US_roman \
        -format {%J %OI:%OM:%OS %P}
} 46741
test clock-29.1175 {time parsing} {
    clock scan {2440588 xii:59:01 pm} \
        -gmt true -locale en_US_roman \
        -format {%J %Ol:%M:%S %P}
} 46741
test clock-29.1176 {time parsing} {
    clock scan {2440588 xii:lix:i pm} \
        -gmt true -locale en_US_roman \
        -format {%J %Ol:%OM:%OS %P}
} 46741
test clock-29.1177 {time parsing} {
    clock scan {2440588 12:59:59 } \
        -gmt true -locale en_US_roman \
        -format {%J %H:%M:%S }
} 46799
test clock-29.1178 {time parsing} {
    clock scan {2440588 12:lix:lix } \
        -gmt true -locale en_US_roman \
        -format {%J %H:%OM:%OS }
} 46799
test clock-29.1179 {time parsing} {
    clock scan {2440588 12:59:59 } \
        -gmt true -locale en_US_roman \
        -format {%J %k:%M:%S }
} 46799
test clock-29.1180 {time parsing} {
    clock scan {2440588 12:lix:lix } \
        -gmt true -locale en_US_roman \
        -format {%J %k:%OM:%OS }
} 46799
test clock-29.1181 {time parsing} {
    clock scan {2440588 xii:59:59 } \
        -gmt true -locale en_US_roman \
        -format {%J %OH:%M:%S }
} 46799
test clock-29.1182 {time parsing} {
    clock scan {2440588 xii:lix:lix } \
        -gmt true -locale en_US_roman \
        -format {%J %OH:%OM:%OS }
} 46799
test clock-29.1183 {time parsing} {
    clock scan {2440588 xii:59:59 } \
        -gmt true -locale en_US_roman \
        -format {%J %Ok:%M:%S }
} 46799
test clock-29.1184 {time parsing} {
    clock scan {2440588 xii:lix:lix } \
        -gmt true -locale en_US_roman \
        -format {%J %Ok:%OM:%OS }
} 46799
test clock-29.1185 {time parsing} {
    clock scan {2440588 12:59:59 PM} \
        -gmt true -locale en_US_roman \
        -format {%J %I:%M:%S %p}
} 46799
test clock-29.1186 {time parsing} {
    clock scan {2440588 12:lix:lix PM} \
        -gmt true -locale en_US_roman \
        -format {%J %I:%OM:%OS %p}
} 46799
test clock-29.1187 {time parsing} {
    clock scan {2440588 12:59:59 PM} \
        -gmt true -locale en_US_roman \
        -format {%J %l:%M:%S %p}
} 46799
test clock-29.1188 {time parsing} {
    clock scan {2440588 12:lix:lix PM} \
        -gmt true -locale en_US_roman \
        -format {%J %l:%OM:%OS %p}
} 46799
test clock-29.1189 {time parsing} {
    clock scan {2440588 xii:59:59 PM} \
        -gmt true -locale en_US_roman \
        -format {%J %OI:%M:%S %p}
} 46799
test clock-29.1190 {time parsing} {
    clock scan {2440588 xii:lix:lix PM} \
        -gmt true -locale en_US_roman \
        -format {%J %OI:%OM:%OS %p}
} 46799
test clock-29.1191 {time parsing} {
    clock scan {2440588 xii:59:59 PM} \
        -gmt true -locale en_US_roman \
        -format {%J %Ol:%M:%S %p}
} 46799
test clock-29.1192 {time parsing} {
    clock scan {2440588 xii:lix:lix PM} \
        -gmt true -locale en_US_roman \
        -format {%J %Ol:%OM:%OS %p}
} 46799
test clock-29.1193 {time parsing} {
    clock scan {2440588 12:59:59 pm} \
        -gmt true -locale en_US_roman \
        -format {%J %I:%M:%S %P}
} 46799
test clock-29.1194 {time parsing} {
    clock scan {2440588 12:lix:lix pm} \
        -gmt true -locale en_US_roman \
        -format {%J %I:%OM:%OS %P}
} 46799
test clock-29.1195 {time parsing} {
    clock scan {2440588 12:59:59 pm} \
        -gmt true -locale en_US_roman \
        -format {%J %l:%M:%S %P}
} 46799
test clock-29.1196 {time parsing} {
    clock scan {2440588 12:lix:lix pm} \
        -gmt true -locale en_US_roman \
        -format {%J %l:%OM:%OS %P}
} 46799
test clock-29.1197 {time parsing} {
    clock scan {2440588 xii:59:59 pm} \
        -gmt true -locale en_US_roman \
        -format {%J %OI:%M:%S %P}
} 46799
test clock-29.1198 {time parsing} {
    clock scan {2440588 xii:lix:lix pm} \
        -gmt true -locale en_US_roman \
        -format {%J %OI:%OM:%OS %P}
} 46799
test clock-29.1199 {time parsing} {
    clock scan {2440588 xii:59:59 pm} \
        -gmt true -locale en_US_roman \
        -format {%J %Ol:%M:%S %P}
} 46799
test clock-29.1200 {time parsing} {
    clock scan {2440588 xii:lix:lix pm} \
        -gmt true -locale en_US_roman \
        -format {%J %Ol:%OM:%OS %P}
} 46799
test clock-29.1201 {time parsing} {
    clock scan {2440588 13 } \
        -gmt true -locale en_US_roman \
        -format {%J %H }
} 46800
test clock-29.1202 {time parsing} {
    clock scan {2440588 13:00 } \
        -gmt true -locale en_US_roman \
        -format {%J %H:%M }
} 46800
test clock-29.1203 {time parsing} {
    clock scan {2440588 13:? } \
        -gmt true -locale en_US_roman \
        -format {%J %H:%OM }
} 46800
test clock-29.1204 {time parsing} {
    clock scan {2440588 13:00:00 } \
        -gmt true -locale en_US_roman \
        -format {%J %H:%M:%S }
} 46800
test clock-29.1205 {time parsing} {
    clock scan {2440588 13:?:? } \
        -gmt true -locale en_US_roman \
        -format {%J %H:%OM:%OS }
} 46800
test clock-29.1206 {time parsing} {
    clock scan {2440588 13 } \
        -gmt true -locale en_US_roman \
        -format {%J %k }
} 46800
test clock-29.1207 {time parsing} {
    clock scan {2440588 13:00 } \
        -gmt true -locale en_US_roman \
        -format {%J %k:%M }
} 46800
test clock-29.1208 {time parsing} {
    clock scan {2440588 13:? } \
        -gmt true -locale en_US_roman \
        -format {%J %k:%OM }
} 46800
test clock-29.1209 {time parsing} {
    clock scan {2440588 13:00:00 } \
        -gmt true -locale en_US_roman \
        -format {%J %k:%M:%S }
} 46800
test clock-29.1210 {time parsing} {
    clock scan {2440588 13:?:? } \
        -gmt true -locale en_US_roman \
        -format {%J %k:%OM:%OS }
} 46800
test clock-29.1211 {time parsing} {
    clock scan {2440588 xiii } \
        -gmt true -locale en_US_roman \
        -format {%J %OH }
} 46800
test clock-29.1212 {time parsing} {
    clock scan {2440588 xiii:00 } \
        -gmt true -locale en_US_roman \
        -format {%J %OH:%M }
} 46800
test clock-29.1213 {time parsing} {
    clock scan {2440588 xiii:? } \
        -gmt true -locale en_US_roman \
        -format {%J %OH:%OM }
} 46800
test clock-29.1214 {time parsing} {
    clock scan {2440588 xiii:00:00 } \
        -gmt true -locale en_US_roman \
        -format {%J %OH:%M:%S }
} 46800
test clock-29.1215 {time parsing} {
    clock scan {2440588 xiii:?:? } \
        -gmt true -locale en_US_roman \
        -format {%J %OH:%OM:%OS }
} 46800
test clock-29.1216 {time parsing} {
    clock scan {2440588 xiii } \
        -gmt true -locale en_US_roman \
        -format {%J %Ok }
} 46800
test clock-29.1217 {time parsing} {
    clock scan {2440588 xiii:00 } \
        -gmt true -locale en_US_roman \
        -format {%J %Ok:%M }
} 46800
test clock-29.1218 {time parsing} {
    clock scan {2440588 xiii:? } \
        -gmt true -locale en_US_roman \
        -format {%J %Ok:%OM }
} 46800
test clock-29.1219 {time parsing} {
    clock scan {2440588 xiii:00:00 } \
        -gmt true -locale en_US_roman \
        -format {%J %Ok:%M:%S }
} 46800
test clock-29.1220 {time parsing} {
    clock scan {2440588 xiii:?:? } \
        -gmt true -locale en_US_roman \
        -format {%J %Ok:%OM:%OS }
} 46800
test clock-29.1221 {time parsing} {
    clock scan {2440588 01 PM} \
        -gmt true -locale en_US_roman \
        -format {%J %I %p}
} 46800
test clock-29.1222 {time parsing} {
    clock scan {2440588 01:00 PM} \
        -gmt true -locale en_US_roman \
        -format {%J %I:%M %p}
} 46800
test clock-29.1223 {time parsing} {
    clock scan {2440588 01:? PM} \
        -gmt true -locale en_US_roman \
        -format {%J %I:%OM %p}
} 46800
test clock-29.1224 {time parsing} {
    clock scan {2440588 01:00:00 PM} \
        -gmt true -locale en_US_roman \
        -format {%J %I:%M:%S %p}
} 46800
test clock-29.1225 {time parsing} {
    clock scan {2440588 01:?:? PM} \
        -gmt true -locale en_US_roman \
        -format {%J %I:%OM:%OS %p}
} 46800
test clock-29.1226 {time parsing} {
    clock scan {2440588  1 PM} \
        -gmt true -locale en_US_roman \
        -format {%J %l %p}
} 46800
test clock-29.1227 {time parsing} {
    clock scan {2440588  1:00 PM} \
        -gmt true -locale en_US_roman \
        -format {%J %l:%M %p}
} 46800
test clock-29.1228 {time parsing} {
    clock scan {2440588  1:? PM} \
        -gmt true -locale en_US_roman \
        -format {%J %l:%OM %p}
} 46800
test clock-29.1229 {time parsing} {
    clock scan {2440588  1:00:00 PM} \
        -gmt true -locale en_US_roman \
        -format {%J %l:%M:%S %p}
} 46800
test clock-29.1230 {time parsing} {
    clock scan {2440588  1:?:? PM} \
        -gmt true -locale en_US_roman \
        -format {%J %l:%OM:%OS %p}
} 46800
test clock-29.1231 {time parsing} {
    clock scan {2440588 i PM} \
        -gmt true -locale en_US_roman \
        -format {%J %OI %p}
} 46800
test clock-29.1232 {time parsing} {
    clock scan {2440588 i:00 PM} \
        -gmt true -locale en_US_roman \
        -format {%J %OI:%M %p}
} 46800
test clock-29.1233 {time parsing} {
    clock scan {2440588 i:? PM} \
        -gmt true -locale en_US_roman \
        -format {%J %OI:%OM %p}
} 46800
test clock-29.1234 {time parsing} {
    clock scan {2440588 i:00:00 PM} \
        -gmt true -locale en_US_roman \
        -format {%J %OI:%M:%S %p}
} 46800
test clock-29.1235 {time parsing} {
    clock scan {2440588 i:?:? PM} \
        -gmt true -locale en_US_roman \
        -format {%J %OI:%OM:%OS %p}
} 46800
test clock-29.1236 {time parsing} {
    clock scan {2440588 i PM} \
        -gmt true -locale en_US_roman \
        -format {%J %Ol %p}
} 46800
test clock-29.1237 {time parsing} {
    clock scan {2440588 i:00 PM} \
        -gmt true -locale en_US_roman \
        -format {%J %Ol:%M %p}
} 46800
test clock-29.1238 {time parsing} {
    clock scan {2440588 i:? PM} \
        -gmt true -locale en_US_roman \
        -format {%J %Ol:%OM %p}
} 46800
test clock-29.1239 {time parsing} {
    clock scan {2440588 i:00:00 PM} \
        -gmt true -locale en_US_roman \
        -format {%J %Ol:%M:%S %p}
} 46800
test clock-29.1240 {time parsing} {
    clock scan {2440588 i:?:? PM} \
        -gmt true -locale en_US_roman \
        -format {%J %Ol:%OM:%OS %p}
} 46800
test clock-29.1241 {time parsing} {
    clock scan {2440588 01 pm} \
        -gmt true -locale en_US_roman \
        -format {%J %I %P}
} 46800
test clock-29.1242 {time parsing} {
    clock scan {2440588 01:00 pm} \
        -gmt true -locale en_US_roman \
        -format {%J %I:%M %P}
} 46800
test clock-29.1243 {time parsing} {
    clock scan {2440588 01:? pm} \
        -gmt true -locale en_US_roman \
        -format {%J %I:%OM %P}
} 46800
test clock-29.1244 {time parsing} {
    clock scan {2440588 01:00:00 pm} \
        -gmt true -locale en_US_roman \
        -format {%J %I:%M:%S %P}
} 46800
test clock-29.1245 {time parsing} {
    clock scan {2440588 01:?:? pm} \
        -gmt true -locale en_US_roman \
        -format {%J %I:%OM:%OS %P}
} 46800
test clock-29.1246 {time parsing} {
    clock scan {2440588  1 pm} \
        -gmt true -locale en_US_roman \
        -format {%J %l %P}
} 46800
test clock-29.1247 {time parsing} {
    clock scan {2440588  1:00 pm} \
        -gmt true -locale en_US_roman \
        -format {%J %l:%M %P}
} 46800
test clock-29.1248 {time parsing} {
    clock scan {2440588  1:? pm} \
        -gmt true -locale en_US_roman \
        -format {%J %l:%OM %P}
} 46800
test clock-29.1249 {time parsing} {
    clock scan {2440588  1:00:00 pm} \
        -gmt true -locale en_US_roman \
        -format {%J %l:%M:%S %P}
} 46800
test clock-29.1250 {time parsing} {
    clock scan {2440588  1:?:? pm} \
        -gmt true -locale en_US_roman \
        -format {%J %l:%OM:%OS %P}
} 46800
test clock-29.1251 {time parsing} {
    clock scan {2440588 i pm} \
        -gmt true -locale en_US_roman \
        -format {%J %OI %P}
} 46800
test clock-29.1252 {time parsing} {
    clock scan {2440588 i:00 pm} \
        -gmt true -locale en_US_roman \
        -format {%J %OI:%M %P}
} 46800
test clock-29.1253 {time parsing} {
    clock scan {2440588 i:? pm} \
        -gmt true -locale en_US_roman \
        -format {%J %OI:%OM %P}
} 46800
test clock-29.1254 {time parsing} {
    clock scan {2440588 i:00:00 pm} \
        -gmt true -locale en_US_roman \
        -format {%J %OI:%M:%S %P}
} 46800
test clock-29.1255 {time parsing} {
    clock scan {2440588 i:?:? pm} \
        -gmt true -locale en_US_roman \
        -format {%J %OI:%OM:%OS %P}
} 46800
test clock-29.1256 {time parsing} {
    clock scan {2440588 i pm} \
        -gmt true -locale en_US_roman \
        -format {%J %Ol %P}
} 46800
test clock-29.1257 {time parsing} {
    clock scan {2440588 i:00 pm} \
        -gmt true -locale en_US_roman \
        -format {%J %Ol:%M %P}
} 46800
test clock-29.1258 {time parsing} {
    clock scan {2440588 i:? pm} \
        -gmt true -locale en_US_roman \
        -format {%J %Ol:%OM %P}
} 46800
test clock-29.1259 {time parsing} {
    clock scan {2440588 i:00:00 pm} \
        -gmt true -locale en_US_roman \
        -format {%J %Ol:%M:%S %P}
} 46800
test clock-29.1260 {time parsing} {
    clock scan {2440588 i:?:? pm} \
        -gmt true -locale en_US_roman \
        -format {%J %Ol:%OM:%OS %P}
} 46800
test clock-29.1261 {time parsing} {
    clock scan {2440588 13:00:01 } \
        -gmt true -locale en_US_roman \
        -format {%J %H:%M:%S }
} 46801
test clock-29.1262 {time parsing} {
    clock scan {2440588 13:?:i } \
        -gmt true -locale en_US_roman \
        -format {%J %H:%OM:%OS }
} 46801
test clock-29.1263 {time parsing} {
    clock scan {2440588 13:00:01 } \
        -gmt true -locale en_US_roman \
        -format {%J %k:%M:%S }
} 46801
test clock-29.1264 {time parsing} {
    clock scan {2440588 13:?:i } \
        -gmt true -locale en_US_roman \
        -format {%J %k:%OM:%OS }
} 46801
test clock-29.1265 {time parsing} {
    clock scan {2440588 xiii:00:01 } \
        -gmt true -locale en_US_roman \
        -format {%J %OH:%M:%S }
} 46801
test clock-29.1266 {time parsing} {
    clock scan {2440588 xiii:?:i } \
        -gmt true -locale en_US_roman \
        -format {%J %OH:%OM:%OS }
} 46801
test clock-29.1267 {time parsing} {
    clock scan {2440588 xiii:00:01 } \
        -gmt true -locale en_US_roman \
        -format {%J %Ok:%M:%S }
} 46801
test clock-29.1268 {time parsing} {
    clock scan {2440588 xiii:?:i } \
        -gmt true -locale en_US_roman \
        -format {%J %Ok:%OM:%OS }
} 46801
test clock-29.1269 {time parsing} {
    clock scan {2440588 01:00:01 PM} \
        -gmt true -locale en_US_roman \
        -format {%J %I:%M:%S %p}
} 46801
test clock-29.1270 {time parsing} {
    clock scan {2440588 01:?:i PM} \
        -gmt true -locale en_US_roman \
        -format {%J %I:%OM:%OS %p}
} 46801
test clock-29.1271 {time parsing} {
    clock scan {2440588  1:00:01 PM} \
        -gmt true -locale en_US_roman \
        -format {%J %l:%M:%S %p}
} 46801
test clock-29.1272 {time parsing} {
    clock scan {2440588  1:?:i PM} \
        -gmt true -locale en_US_roman \
        -format {%J %l:%OM:%OS %p}
} 46801
test clock-29.1273 {time parsing} {
    clock scan {2440588 i:00:01 PM} \
        -gmt true -locale en_US_roman \
        -format {%J %OI:%M:%S %p}
} 46801
test clock-29.1274 {time parsing} {
    clock scan {2440588 i:?:i PM} \
        -gmt true -locale en_US_roman \
        -format {%J %OI:%OM:%OS %p}
} 46801
test clock-29.1275 {time parsing} {
    clock scan {2440588 i:00:01 PM} \
        -gmt true -locale en_US_roman \
        -format {%J %Ol:%M:%S %p}
} 46801
test clock-29.1276 {time parsing} {
    clock scan {2440588 i:?:i PM} \
        -gmt true -locale en_US_roman \
        -format {%J %Ol:%OM:%OS %p}
} 46801
test clock-29.1277 {time parsing} {
    clock scan {2440588 01:00:01 pm} \
        -gmt true -locale en_US_roman \
        -format {%J %I:%M:%S %P}
} 46801
test clock-29.1278 {time parsing} {
    clock scan {2440588 01:?:i pm} \
        -gmt true -locale en_US_roman \
        -format {%J %I:%OM:%OS %P}
} 46801
test clock-29.1279 {time parsing} {
    clock scan {2440588  1:00:01 pm} \
        -gmt true -locale en_US_roman \
        -format {%J %l:%M:%S %P}
} 46801
test clock-29.1280 {time parsing} {
    clock scan {2440588  1:?:i pm} \
        -gmt true -locale en_US_roman \
        -format {%J %l:%OM:%OS %P}
} 46801
test clock-29.1281 {time parsing} {
    clock scan {2440588 i:00:01 pm} \
        -gmt true -locale en_US_roman \
        -format {%J %OI:%M:%S %P}
} 46801
test clock-29.1282 {time parsing} {
    clock scan {2440588 i:?:i pm} \
        -gmt true -locale en_US_roman \
        -format {%J %OI:%OM:%OS %P}
} 46801
test clock-29.1283 {time parsing} {
    clock scan {2440588 i:00:01 pm} \
        -gmt true -locale en_US_roman \
        -format {%J %Ol:%M:%S %P}
} 46801
test clock-29.1284 {time parsing} {
    clock scan {2440588 i:?:i pm} \
        -gmt true -locale en_US_roman \
        -format {%J %Ol:%OM:%OS %P}
} 46801
test clock-29.1285 {time parsing} {
    clock scan {2440588 13:00:59 } \
        -gmt true -locale en_US_roman \
        -format {%J %H:%M:%S }
} 46859
test clock-29.1286 {time parsing} {
    clock scan {2440588 13:?:lix } \
        -gmt true -locale en_US_roman \
        -format {%J %H:%OM:%OS }
} 46859
test clock-29.1287 {time parsing} {
    clock scan {2440588 13:00:59 } \
        -gmt true -locale en_US_roman \
        -format {%J %k:%M:%S }
} 46859
test clock-29.1288 {time parsing} {
    clock scan {2440588 13:?:lix } \
        -gmt true -locale en_US_roman \
        -format {%J %k:%OM:%OS }
} 46859
test clock-29.1289 {time parsing} {
    clock scan {2440588 xiii:00:59 } \
        -gmt true -locale en_US_roman \
        -format {%J %OH:%M:%S }
} 46859
test clock-29.1290 {time parsing} {
    clock scan {2440588 xiii:?:lix } \
        -gmt true -locale en_US_roman \
        -format {%J %OH:%OM:%OS }
} 46859
test clock-29.1291 {time parsing} {
    clock scan {2440588 xiii:00:59 } \
        -gmt true -locale en_US_roman \
        -format {%J %Ok:%M:%S }
} 46859
test clock-29.1292 {time parsing} {
    clock scan {2440588 xiii:?:lix } \
        -gmt true -locale en_US_roman \
        -format {%J %Ok:%OM:%OS }
} 46859
test clock-29.1293 {time parsing} {
    clock scan {2440588 01:00:59 PM} \
        -gmt true -locale en_US_roman \
        -format {%J %I:%M:%S %p}
} 46859
test clock-29.1294 {time parsing} {
    clock scan {2440588 01:?:lix PM} \
        -gmt true -locale en_US_roman \
        -format {%J %I:%OM:%OS %p}
} 46859
test clock-29.1295 {time parsing} {
    clock scan {2440588  1:00:59 PM} \
        -gmt true -locale en_US_roman \
        -format {%J %l:%M:%S %p}
} 46859
test clock-29.1296 {time parsing} {
    clock scan {2440588  1:?:lix PM} \
        -gmt true -locale en_US_roman \
        -format {%J %l:%OM:%OS %p}
} 46859
test clock-29.1297 {time parsing} {
    clock scan {2440588 i:00:59 PM} \
        -gmt true -locale en_US_roman \
        -format {%J %OI:%M:%S %p}
} 46859
test clock-29.1298 {time parsing} {
    clock scan {2440588 i:?:lix PM} \
        -gmt true -locale en_US_roman \
        -format {%J %OI:%OM:%OS %p}
} 46859
test clock-29.1299 {time parsing} {
    clock scan {2440588 i:00:59 PM} \
        -gmt true -locale en_US_roman \
        -format {%J %Ol:%M:%S %p}
} 46859
test clock-29.1300 {time parsing} {
    clock scan {2440588 i:?:lix PM} \
        -gmt true -locale en_US_roman \
        -format {%J %Ol:%OM:%OS %p}
} 46859
test clock-29.1301 {time parsing} {
    clock scan {2440588 01:00:59 pm} \
        -gmt true -locale en_US_roman \
        -format {%J %I:%M:%S %P}
} 46859
test clock-29.1302 {time parsing} {
    clock scan {2440588 01:?:lix pm} \
        -gmt true -locale en_US_roman \
        -format {%J %I:%OM:%OS %P}
} 46859
test clock-29.1303 {time parsing} {
    clock scan {2440588  1:00:59 pm} \
        -gmt true -locale en_US_roman \
        -format {%J %l:%M:%S %P}
} 46859
test clock-29.1304 {time parsing} {
    clock scan {2440588  1:?:lix pm} \
        -gmt true -locale en_US_roman \
        -format {%J %l:%OM:%OS %P}
} 46859
test clock-29.1305 {time parsing} {
    clock scan {2440588 i:00:59 pm} \
        -gmt true -locale en_US_roman \
        -format {%J %OI:%M:%S %P}
} 46859
test clock-29.1306 {time parsing} {
    clock scan {2440588 i:?:lix pm} \
        -gmt true -locale en_US_roman \
        -format {%J %OI:%OM:%OS %P}
} 46859
test clock-29.1307 {time parsing} {
    clock scan {2440588 i:00:59 pm} \
        -gmt true -locale en_US_roman \
        -format {%J %Ol:%M:%S %P}
} 46859
test clock-29.1308 {time parsing} {
    clock scan {2440588 i:?:lix pm} \
        -gmt true -locale en_US_roman \
        -format {%J %Ol:%OM:%OS %P}
} 46859
test clock-29.1309 {time parsing} {
    clock scan {2440588 13:01 } \
        -gmt true -locale en_US_roman \
        -format {%J %H:%M }
} 46860
test clock-29.1310 {time parsing} {
    clock scan {2440588 13:i } \
        -gmt true -locale en_US_roman \
        -format {%J %H:%OM }
} 46860
test clock-29.1311 {time parsing} {
    clock scan {2440588 13:01:00 } \
        -gmt true -locale en_US_roman \
        -format {%J %H:%M:%S }
} 46860
test clock-29.1312 {time parsing} {
    clock scan {2440588 13:i:? } \
        -gmt true -locale en_US_roman \
        -format {%J %H:%OM:%OS }
} 46860
test clock-29.1313 {time parsing} {
    clock scan {2440588 13:01 } \
        -gmt true -locale en_US_roman \
        -format {%J %k:%M }
} 46860
test clock-29.1314 {time parsing} {
    clock scan {2440588 13:i } \
        -gmt true -locale en_US_roman \
        -format {%J %k:%OM }
} 46860
test clock-29.1315 {time parsing} {
    clock scan {2440588 13:01:00 } \
        -gmt true -locale en_US_roman \
        -format {%J %k:%M:%S }
} 46860
test clock-29.1316 {time parsing} {
    clock scan {2440588 13:i:? } \
        -gmt true -locale en_US_roman \
        -format {%J %k:%OM:%OS }
} 46860
test clock-29.1317 {time parsing} {
    clock scan {2440588 xiii:01 } \
        -gmt true -locale en_US_roman \
        -format {%J %OH:%M }
} 46860
test clock-29.1318 {time parsing} {
    clock scan {2440588 xiii:i } \
        -gmt true -locale en_US_roman \
        -format {%J %OH:%OM }
} 46860
test clock-29.1319 {time parsing} {
    clock scan {2440588 xiii:01:00 } \
        -gmt true -locale en_US_roman \
        -format {%J %OH:%M:%S }
} 46860
test clock-29.1320 {time parsing} {
    clock scan {2440588 xiii:i:? } \
        -gmt true -locale en_US_roman \
        -format {%J %OH:%OM:%OS }
} 46860
test clock-29.1321 {time parsing} {
    clock scan {2440588 xiii:01 } \
        -gmt true -locale en_US_roman \
        -format {%J %Ok:%M }
} 46860
test clock-29.1322 {time parsing} {
    clock scan {2440588 xiii:i } \
        -gmt true -locale en_US_roman \
        -format {%J %Ok:%OM }
} 46860
test clock-29.1323 {time parsing} {
    clock scan {2440588 xiii:01:00 } \
        -gmt true -locale en_US_roman \
        -format {%J %Ok:%M:%S }
} 46860
test clock-29.1324 {time parsing} {
    clock scan {2440588 xiii:i:? } \
        -gmt true -locale en_US_roman \
        -format {%J %Ok:%OM:%OS }
} 46860
test clock-29.1325 {time parsing} {
    clock scan {2440588 01:01 PM} \
        -gmt true -locale en_US_roman \
        -format {%J %I:%M %p}
} 46860
test clock-29.1326 {time parsing} {
    clock scan {2440588 01:i PM} \
        -gmt true -locale en_US_roman \
        -format {%J %I:%OM %p}
} 46860
test clock-29.1327 {time parsing} {
    clock scan {2440588 01:01:00 PM} \
        -gmt true -locale en_US_roman \
        -format {%J %I:%M:%S %p}
} 46860
test clock-29.1328 {time parsing} {
    clock scan {2440588 01:i:? PM} \
        -gmt true -locale en_US_roman \
        -format {%J %I:%OM:%OS %p}
} 46860
test clock-29.1329 {time parsing} {
    clock scan {2440588  1:01 PM} \
        -gmt true -locale en_US_roman \
        -format {%J %l:%M %p}
} 46860
test clock-29.1330 {time parsing} {
    clock scan {2440588  1:i PM} \
        -gmt true -locale en_US_roman \
        -format {%J %l:%OM %p}
} 46860
test clock-29.1331 {time parsing} {
    clock scan {2440588  1:01:00 PM} \
        -gmt true -locale en_US_roman \
        -format {%J %l:%M:%S %p}
} 46860
test clock-29.1332 {time parsing} {
    clock scan {2440588  1:i:? PM} \
        -gmt true -locale en_US_roman \
        -format {%J %l:%OM:%OS %p}
} 46860
test clock-29.1333 {time parsing} {
    clock scan {2440588 i:01 PM} \
        -gmt true -locale en_US_roman \
        -format {%J %OI:%M %p}
} 46860
test clock-29.1334 {time parsing} {
    clock scan {2440588 i:i PM} \
        -gmt true -locale en_US_roman \
        -format {%J %OI:%OM %p}
} 46860
test clock-29.1335 {time parsing} {
    clock scan {2440588 i:01:00 PM} \
        -gmt true -locale en_US_roman \
        -format {%J %OI:%M:%S %p}
} 46860
test clock-29.1336 {time parsing} {
    clock scan {2440588 i:i:? PM} \
        -gmt true -locale en_US_roman \
        -format {%J %OI:%OM:%OS %p}
} 46860
test clock-29.1337 {time parsing} {
    clock scan {2440588 i:01 PM} \
        -gmt true -locale en_US_roman \
        -format {%J %Ol:%M %p}
} 46860
test clock-29.1338 {time parsing} {
    clock scan {2440588 i:i PM} \
        -gmt true -locale en_US_roman \
        -format {%J %Ol:%OM %p}
} 46860
test clock-29.1339 {time parsing} {
    clock scan {2440588 i:01:00 PM} \
        -gmt true -locale en_US_roman \
        -format {%J %Ol:%M:%S %p}
} 46860
test clock-29.1340 {time parsing} {
    clock scan {2440588 i:i:? PM} \
        -gmt true -locale en_US_roman \
        -format {%J %Ol:%OM:%OS %p}
} 46860
test clock-29.1341 {time parsing} {
    clock scan {2440588 01:01 pm} \
        -gmt true -locale en_US_roman \
        -format {%J %I:%M %P}
} 46860
test clock-29.1342 {time parsing} {
    clock scan {2440588 01:i pm} \
        -gmt true -locale en_US_roman \
        -format {%J %I:%OM %P}
} 46860
test clock-29.1343 {time parsing} {
    clock scan {2440588 01:01:00 pm} \
        -gmt true -locale en_US_roman \
        -format {%J %I:%M:%S %P}
} 46860
test clock-29.1344 {time parsing} {
    clock scan {2440588 01:i:? pm} \
        -gmt true -locale en_US_roman \
        -format {%J %I:%OM:%OS %P}
} 46860
test clock-29.1345 {time parsing} {
    clock scan {2440588  1:01 pm} \
        -gmt true -locale en_US_roman \
        -format {%J %l:%M %P}
} 46860
test clock-29.1346 {time parsing} {
    clock scan {2440588  1:i pm} \
        -gmt true -locale en_US_roman \
        -format {%J %l:%OM %P}
} 46860
test clock-29.1347 {time parsing} {
    clock scan {2440588  1:01:00 pm} \
        -gmt true -locale en_US_roman \
        -format {%J %l:%M:%S %P}
} 46860
test clock-29.1348 {time parsing} {
    clock scan {2440588  1:i:? pm} \
        -gmt true -locale en_US_roman \
        -format {%J %l:%OM:%OS %P}
} 46860
test clock-29.1349 {time parsing} {
    clock scan {2440588 i:01 pm} \
        -gmt true -locale en_US_roman \
        -format {%J %OI:%M %P}
} 46860
test clock-29.1350 {time parsing} {
    clock scan {2440588 i:i pm} \
        -gmt true -locale en_US_roman \
        -format {%J %OI:%OM %P}
} 46860
test clock-29.1351 {time parsing} {
    clock scan {2440588 i:01:00 pm} \
        -gmt true -locale en_US_roman \
        -format {%J %OI:%M:%S %P}
} 46860
test clock-29.1352 {time parsing} {
    clock scan {2440588 i:i:? pm} \
        -gmt true -locale en_US_roman \
        -format {%J %OI:%OM:%OS %P}
} 46860
test clock-29.1353 {time parsing} {
    clock scan {2440588 i:01 pm} \
        -gmt true -locale en_US_roman \
        -format {%J %Ol:%M %P}
} 46860
test clock-29.1354 {time parsing} {
    clock scan {2440588 i:i pm} \
        -gmt true -locale en_US_roman \
        -format {%J %Ol:%OM %P}
} 46860
test clock-29.1355 {time parsing} {
    clock scan {2440588 i:01:00 pm} \
        -gmt true -locale en_US_roman \
        -format {%J %Ol:%M:%S %P}
} 46860
test clock-29.1356 {time parsing} {
    clock scan {2440588 i:i:? pm} \
        -gmt true -locale en_US_roman \
        -format {%J %Ol:%OM:%OS %P}
} 46860
test clock-29.1357 {time parsing} {
    clock scan {2440588 13:01:01 } \
        -gmt true -locale en_US_roman \
        -format {%J %H:%M:%S }
} 46861
test clock-29.1358 {time parsing} {
    clock scan {2440588 13:i:i } \
        -gmt true -locale en_US_roman \
        -format {%J %H:%OM:%OS }
} 46861
test clock-29.1359 {time parsing} {
    clock scan {2440588 13:01:01 } \
        -gmt true -locale en_US_roman \
        -format {%J %k:%M:%S }
} 46861
test clock-29.1360 {time parsing} {
    clock scan {2440588 13:i:i } \
        -gmt true -locale en_US_roman \
        -format {%J %k:%OM:%OS }
} 46861
test clock-29.1361 {time parsing} {
    clock scan {2440588 xiii:01:01 } \
        -gmt true -locale en_US_roman \
        -format {%J %OH:%M:%S }
} 46861
test clock-29.1362 {time parsing} {
    clock scan {2440588 xiii:i:i } \
        -gmt true -locale en_US_roman \
        -format {%J %OH:%OM:%OS }
} 46861
test clock-29.1363 {time parsing} {
    clock scan {2440588 xiii:01:01 } \
        -gmt true -locale en_US_roman \
        -format {%J %Ok:%M:%S }
} 46861
test clock-29.1364 {time parsing} {
    clock scan {2440588 xiii:i:i } \
        -gmt true -locale en_US_roman \
        -format {%J %Ok:%OM:%OS }
} 46861
test clock-29.1365 {time parsing} {
    clock scan {2440588 01:01:01 PM} \
        -gmt true -locale en_US_roman \
        -format {%J %I:%M:%S %p}
} 46861
test clock-29.1366 {time parsing} {
    clock scan {2440588 01:i:i PM} \
        -gmt true -locale en_US_roman \
        -format {%J %I:%OM:%OS %p}
} 46861
test clock-29.1367 {time parsing} {
    clock scan {2440588  1:01:01 PM} \
        -gmt true -locale en_US_roman \
        -format {%J %l:%M:%S %p}
} 46861
test clock-29.1368 {time parsing} {
    clock scan {2440588  1:i:i PM} \
        -gmt true -locale en_US_roman \
        -format {%J %l:%OM:%OS %p}
} 46861
test clock-29.1369 {time parsing} {
    clock scan {2440588 i:01:01 PM} \
        -gmt true -locale en_US_roman \
        -format {%J %OI:%M:%S %p}
} 46861
test clock-29.1370 {time parsing} {
    clock scan {2440588 i:i:i PM} \
        -gmt true -locale en_US_roman \
        -format {%J %OI:%OM:%OS %p}
} 46861
test clock-29.1371 {time parsing} {
    clock scan {2440588 i:01:01 PM} \
        -gmt true -locale en_US_roman \
        -format {%J %Ol:%M:%S %p}
} 46861
test clock-29.1372 {time parsing} {
    clock scan {2440588 i:i:i PM} \
        -gmt true -locale en_US_roman \
        -format {%J %Ol:%OM:%OS %p}
} 46861
test clock-29.1373 {time parsing} {
    clock scan {2440588 01:01:01 pm} \
        -gmt true -locale en_US_roman \
        -format {%J %I:%M:%S %P}
} 46861
test clock-29.1374 {time parsing} {
    clock scan {2440588 01:i:i pm} \
        -gmt true -locale en_US_roman \
        -format {%J %I:%OM:%OS %P}
} 46861
test clock-29.1375 {time parsing} {
    clock scan {2440588  1:01:01 pm} \
        -gmt true -locale en_US_roman \
        -format {%J %l:%M:%S %P}
} 46861
test clock-29.1376 {time parsing} {
    clock scan {2440588  1:i:i pm} \
        -gmt true -locale en_US_roman \
        -format {%J %l:%OM:%OS %P}
} 46861
test clock-29.1377 {time parsing} {
    clock scan {2440588 i:01:01 pm} \
        -gmt true -locale en_US_roman \
        -format {%J %OI:%M:%S %P}
} 46861
test clock-29.1378 {time parsing} {
    clock scan {2440588 i:i:i pm} \
        -gmt true -locale en_US_roman \
        -format {%J %OI:%OM:%OS %P}
} 46861
test clock-29.1379 {time parsing} {
    clock scan {2440588 i:01:01 pm} \
        -gmt true -locale en_US_roman \
        -format {%J %Ol:%M:%S %P}
} 46861
test clock-29.1380 {time parsing} {
    clock scan {2440588 i:i:i pm} \
        -gmt true -locale en_US_roman \
        -format {%J %Ol:%OM:%OS %P}
} 46861
test clock-29.1381 {time parsing} {
    clock scan {2440588 13:01:59 } \
        -gmt true -locale en_US_roman \
        -format {%J %H:%M:%S }
} 46919
test clock-29.1382 {time parsing} {
    clock scan {2440588 13:i:lix } \
        -gmt true -locale en_US_roman \
        -format {%J %H:%OM:%OS }
} 46919
test clock-29.1383 {time parsing} {
    clock scan {2440588 13:01:59 } \
        -gmt true -locale en_US_roman \
        -format {%J %k:%M:%S }
} 46919
test clock-29.1384 {time parsing} {
    clock scan {2440588 13:i:lix } \
        -gmt true -locale en_US_roman \
        -format {%J %k:%OM:%OS }
} 46919
test clock-29.1385 {time parsing} {
    clock scan {2440588 xiii:01:59 } \
        -gmt true -locale en_US_roman \
        -format {%J %OH:%M:%S }
} 46919
test clock-29.1386 {time parsing} {
    clock scan {2440588 xiii:i:lix } \
        -gmt true -locale en_US_roman \
        -format {%J %OH:%OM:%OS }
} 46919
test clock-29.1387 {time parsing} {
    clock scan {2440588 xiii:01:59 } \
        -gmt true -locale en_US_roman \
        -format {%J %Ok:%M:%S }
} 46919
test clock-29.1388 {time parsing} {
    clock scan {2440588 xiii:i:lix } \
        -gmt true -locale en_US_roman \
        -format {%J %Ok:%OM:%OS }
} 46919
test clock-29.1389 {time parsing} {
    clock scan {2440588 01:01:59 PM} \
        -gmt true -locale en_US_roman \
        -format {%J %I:%M:%S %p}
} 46919
test clock-29.1390 {time parsing} {
    clock scan {2440588 01:i:lix PM} \
        -gmt true -locale en_US_roman \
        -format {%J %I:%OM:%OS %p}
} 46919
test clock-29.1391 {time parsing} {
    clock scan {2440588  1:01:59 PM} \
        -gmt true -locale en_US_roman \
        -format {%J %l:%M:%S %p}
} 46919
test clock-29.1392 {time parsing} {
    clock scan {2440588  1:i:lix PM} \
        -gmt true -locale en_US_roman \
        -format {%J %l:%OM:%OS %p}
} 46919
test clock-29.1393 {time parsing} {
    clock scan {2440588 i:01:59 PM} \
        -gmt true -locale en_US_roman \
        -format {%J %OI:%M:%S %p}
} 46919
test clock-29.1394 {time parsing} {
    clock scan {2440588 i:i:lix PM} \
        -gmt true -locale en_US_roman \
        -format {%J %OI:%OM:%OS %p}
} 46919
test clock-29.1395 {time parsing} {
    clock scan {2440588 i:01:59 PM} \
        -gmt true -locale en_US_roman \
        -format {%J %Ol:%M:%S %p}
} 46919
test clock-29.1396 {time parsing} {
    clock scan {2440588 i:i:lix PM} \
        -gmt true -locale en_US_roman \
        -format {%J %Ol:%OM:%OS %p}
} 46919
test clock-29.1397 {time parsing} {
    clock scan {2440588 01:01:59 pm} \
        -gmt true -locale en_US_roman \
        -format {%J %I:%M:%S %P}
} 46919
test clock-29.1398 {time parsing} {
    clock scan {2440588 01:i:lix pm} \
        -gmt true -locale en_US_roman \
        -format {%J %I:%OM:%OS %P}
} 46919
test clock-29.1399 {time parsing} {
    clock scan {2440588  1:01:59 pm} \
        -gmt true -locale en_US_roman \
        -format {%J %l:%M:%S %P}
} 46919
test clock-29.1400 {time parsing} {
    clock scan {2440588  1:i:lix pm} \
        -gmt true -locale en_US_roman \
        -format {%J %l:%OM:%OS %P}
} 46919
test clock-29.1401 {time parsing} {
    clock scan {2440588 i:01:59 pm} \
        -gmt true -locale en_US_roman \
        -format {%J %OI:%M:%S %P}
} 46919
test clock-29.1402 {time parsing} {
    clock scan {2440588 i:i:lix pm} \
        -gmt true -locale en_US_roman \
        -format {%J %OI:%OM:%OS %P}
} 46919
test clock-29.1403 {time parsing} {
    clock scan {2440588 i:01:59 pm} \
        -gmt true -locale en_US_roman \
        -format {%J %Ol:%M:%S %P}
} 46919
test clock-29.1404 {time parsing} {
    clock scan {2440588 i:i:lix pm} \
        -gmt true -locale en_US_roman \
        -format {%J %Ol:%OM:%OS %P}
} 46919
test clock-29.1405 {time parsing} {
    clock scan {2440588 13:59 } \
        -gmt true -locale en_US_roman \
        -format {%J %H:%M }
} 50340
test clock-29.1406 {time parsing} {
    clock scan {2440588 13:lix } \
        -gmt true -locale en_US_roman \
        -format {%J %H:%OM }
} 50340
test clock-29.1407 {time parsing} {
    clock scan {2440588 13:59:00 } \
        -gmt true -locale en_US_roman \
        -format {%J %H:%M:%S }
} 50340
test clock-29.1408 {time parsing} {
    clock scan {2440588 13:lix:? } \
        -gmt true -locale en_US_roman \
        -format {%J %H:%OM:%OS }
} 50340
test clock-29.1409 {time parsing} {
    clock scan {2440588 13:59 } \
        -gmt true -locale en_US_roman \
        -format {%J %k:%M }
} 50340
test clock-29.1410 {time parsing} {
    clock scan {2440588 13:lix } \
        -gmt true -locale en_US_roman \
        -format {%J %k:%OM }
} 50340
test clock-29.1411 {time parsing} {
    clock scan {2440588 13:59:00 } \
        -gmt true -locale en_US_roman \
        -format {%J %k:%M:%S }
} 50340
test clock-29.1412 {time parsing} {
    clock scan {2440588 13:lix:? } \
        -gmt true -locale en_US_roman \
        -format {%J %k:%OM:%OS }
} 50340
test clock-29.1413 {time parsing} {
    clock scan {2440588 xiii:59 } \
        -gmt true -locale en_US_roman \
        -format {%J %OH:%M }
} 50340
test clock-29.1414 {time parsing} {
    clock scan {2440588 xiii:lix } \
        -gmt true -locale en_US_roman \
        -format {%J %OH:%OM }
} 50340
test clock-29.1415 {time parsing} {
    clock scan {2440588 xiii:59:00 } \
        -gmt true -locale en_US_roman \
        -format {%J %OH:%M:%S }
} 50340
test clock-29.1416 {time parsing} {
    clock scan {2440588 xiii:lix:? } \
        -gmt true -locale en_US_roman \
        -format {%J %OH:%OM:%OS }
} 50340
test clock-29.1417 {time parsing} {
    clock scan {2440588 xiii:59 } \
        -gmt true -locale en_US_roman \
        -format {%J %Ok:%M }
} 50340
test clock-29.1418 {time parsing} {
    clock scan {2440588 xiii:lix } \
        -gmt true -locale en_US_roman \
        -format {%J %Ok:%OM }
} 50340
test clock-29.1419 {time parsing} {
    clock scan {2440588 xiii:59:00 } \
        -gmt true -locale en_US_roman \
        -format {%J %Ok:%M:%S }
} 50340
test clock-29.1420 {time parsing} {
    clock scan {2440588 xiii:lix:? } \
        -gmt true -locale en_US_roman \
        -format {%J %Ok:%OM:%OS }
} 50340
test clock-29.1421 {time parsing} {
    clock scan {2440588 01:59 PM} \
        -gmt true -locale en_US_roman \
        -format {%J %I:%M %p}
} 50340
test clock-29.1422 {time parsing} {
    clock scan {2440588 01:lix PM} \
        -gmt true -locale en_US_roman \
        -format {%J %I:%OM %p}
} 50340
test clock-29.1423 {time parsing} {
    clock scan {2440588 01:59:00 PM} \
        -gmt true -locale en_US_roman \
        -format {%J %I:%M:%S %p}
} 50340
test clock-29.1424 {time parsing} {
    clock scan {2440588 01:lix:? PM} \
        -gmt true -locale en_US_roman \
        -format {%J %I:%OM:%OS %p}
} 50340
test clock-29.1425 {time parsing} {
    clock scan {2440588  1:59 PM} \
        -gmt true -locale en_US_roman \
        -format {%J %l:%M %p}
} 50340
test clock-29.1426 {time parsing} {
    clock scan {2440588  1:lix PM} \
        -gmt true -locale en_US_roman \
        -format {%J %l:%OM %p}
} 50340
test clock-29.1427 {time parsing} {
    clock scan {2440588  1:59:00 PM} \
        -gmt true -locale en_US_roman \
        -format {%J %l:%M:%S %p}
} 50340
test clock-29.1428 {time parsing} {
    clock scan {2440588  1:lix:? PM} \
        -gmt true -locale en_US_roman \
        -format {%J %l:%OM:%OS %p}
} 50340
test clock-29.1429 {time parsing} {
    clock scan {2440588 i:59 PM} \
        -gmt true -locale en_US_roman \
        -format {%J %OI:%M %p}
} 50340
test clock-29.1430 {time parsing} {
    clock scan {2440588 i:lix PM} \
        -gmt true -locale en_US_roman \
        -format {%J %OI:%OM %p}
} 50340
test clock-29.1431 {time parsing} {
    clock scan {2440588 i:59:00 PM} \
        -gmt true -locale en_US_roman \
        -format {%J %OI:%M:%S %p}
} 50340
test clock-29.1432 {time parsing} {
    clock scan {2440588 i:lix:? PM} \
        -gmt true -locale en_US_roman \
        -format {%J %OI:%OM:%OS %p}
} 50340
test clock-29.1433 {time parsing} {
    clock scan {2440588 i:59 PM} \
        -gmt true -locale en_US_roman \
        -format {%J %Ol:%M %p}
} 50340
test clock-29.1434 {time parsing} {
    clock scan {2440588 i:lix PM} \
        -gmt true -locale en_US_roman \
        -format {%J %Ol:%OM %p}
} 50340
test clock-29.1435 {time parsing} {
    clock scan {2440588 i:59:00 PM} \
        -gmt true -locale en_US_roman \
        -format {%J %Ol:%M:%S %p}
} 50340
test clock-29.1436 {time parsing} {
    clock scan {2440588 i:lix:? PM} \
        -gmt true -locale en_US_roman \
        -format {%J %Ol:%OM:%OS %p}
} 50340
test clock-29.1437 {time parsing} {
    clock scan {2440588 01:59 pm} \
        -gmt true -locale en_US_roman \
        -format {%J %I:%M %P}
} 50340
test clock-29.1438 {time parsing} {
    clock scan {2440588 01:lix pm} \
        -gmt true -locale en_US_roman \
        -format {%J %I:%OM %P}
} 50340
test clock-29.1439 {time parsing} {
    clock scan {2440588 01:59:00 pm} \
        -gmt true -locale en_US_roman \
        -format {%J %I:%M:%S %P}
} 50340
test clock-29.1440 {time parsing} {
    clock scan {2440588 01:lix:? pm} \
        -gmt true -locale en_US_roman \
        -format {%J %I:%OM:%OS %P}
} 50340
test clock-29.1441 {time parsing} {
    clock scan {2440588  1:59 pm} \
        -gmt true -locale en_US_roman \
        -format {%J %l:%M %P}
} 50340
test clock-29.1442 {time parsing} {
    clock scan {2440588  1:lix pm} \
        -gmt true -locale en_US_roman \
        -format {%J %l:%OM %P}
} 50340
test clock-29.1443 {time parsing} {
    clock scan {2440588  1:59:00 pm} \
        -gmt true -locale en_US_roman \
        -format {%J %l:%M:%S %P}
} 50340
test clock-29.1444 {time parsing} {
    clock scan {2440588  1:lix:? pm} \
        -gmt true -locale en_US_roman \
        -format {%J %l:%OM:%OS %P}
} 50340
test clock-29.1445 {time parsing} {
    clock scan {2440588 i:59 pm} \
        -gmt true -locale en_US_roman \
        -format {%J %OI:%M %P}
} 50340
test clock-29.1446 {time parsing} {
    clock scan {2440588 i:lix pm} \
        -gmt true -locale en_US_roman \
        -format {%J %OI:%OM %P}
} 50340
test clock-29.1447 {time parsing} {
    clock scan {2440588 i:59:00 pm} \
        -gmt true -locale en_US_roman \
        -format {%J %OI:%M:%S %P}
} 50340
test clock-29.1448 {time parsing} {
    clock scan {2440588 i:lix:? pm} \
        -gmt true -locale en_US_roman \
        -format {%J %OI:%OM:%OS %P}
} 50340
test clock-29.1449 {time parsing} {
    clock scan {2440588 i:59 pm} \
        -gmt true -locale en_US_roman \
        -format {%J %Ol:%M %P}
} 50340
test clock-29.1450 {time parsing} {
    clock scan {2440588 i:lix pm} \
        -gmt true -locale en_US_roman \
        -format {%J %Ol:%OM %P}
} 50340
test clock-29.1451 {time parsing} {
    clock scan {2440588 i:59:00 pm} \
        -gmt true -locale en_US_roman \
        -format {%J %Ol:%M:%S %P}
} 50340
test clock-29.1452 {time parsing} {
    clock scan {2440588 i:lix:? pm} \
        -gmt true -locale en_US_roman \
        -format {%J %Ol:%OM:%OS %P}
} 50340
test clock-29.1453 {time parsing} {
    clock scan {2440588 13:59:01 } \
        -gmt true -locale en_US_roman \
        -format {%J %H:%M:%S }
} 50341
test clock-29.1454 {time parsing} {
    clock scan {2440588 13:lix:i } \
        -gmt true -locale en_US_roman \
        -format {%J %H:%OM:%OS }
} 50341
test clock-29.1455 {time parsing} {
    clock scan {2440588 13:59:01 } \
        -gmt true -locale en_US_roman \
        -format {%J %k:%M:%S }
} 50341
test clock-29.1456 {time parsing} {
    clock scan {2440588 13:lix:i } \
        -gmt true -locale en_US_roman \
        -format {%J %k:%OM:%OS }
} 50341
test clock-29.1457 {time parsing} {
    clock scan {2440588 xiii:59:01 } \
        -gmt true -locale en_US_roman \
        -format {%J %OH:%M:%S }
} 50341
test clock-29.1458 {time parsing} {
    clock scan {2440588 xiii:lix:i } \
        -gmt true -locale en_US_roman \
        -format {%J %OH:%OM:%OS }
} 50341
test clock-29.1459 {time parsing} {
    clock scan {2440588 xiii:59:01 } \
        -gmt true -locale en_US_roman \
        -format {%J %Ok:%M:%S }
} 50341
test clock-29.1460 {time parsing} {
    clock scan {2440588 xiii:lix:i } \
        -gmt true -locale en_US_roman \
        -format {%J %Ok:%OM:%OS }
} 50341
test clock-29.1461 {time parsing} {
    clock scan {2440588 01:59:01 PM} \
        -gmt true -locale en_US_roman \
        -format {%J %I:%M:%S %p}
} 50341
test clock-29.1462 {time parsing} {
    clock scan {2440588 01:lix:i PM} \
        -gmt true -locale en_US_roman \
        -format {%J %I:%OM:%OS %p}
} 50341
test clock-29.1463 {time parsing} {
    clock scan {2440588  1:59:01 PM} \
        -gmt true -locale en_US_roman \
        -format {%J %l:%M:%S %p}
} 50341
test clock-29.1464 {time parsing} {
    clock scan {2440588  1:lix:i PM} \
        -gmt true -locale en_US_roman \
        -format {%J %l:%OM:%OS %p}
} 50341
test clock-29.1465 {time parsing} {
    clock scan {2440588 i:59:01 PM} \
        -gmt true -locale en_US_roman \
        -format {%J %OI:%M:%S %p}
} 50341
test clock-29.1466 {time parsing} {
    clock scan {2440588 i:lix:i PM} \
        -gmt true -locale en_US_roman \
        -format {%J %OI:%OM:%OS %p}
} 50341
test clock-29.1467 {time parsing} {
    clock scan {2440588 i:59:01 PM} \
        -gmt true -locale en_US_roman \
        -format {%J %Ol:%M:%S %p}
} 50341
test clock-29.1468 {time parsing} {
    clock scan {2440588 i:lix:i PM} \
        -gmt true -locale en_US_roman \
        -format {%J %Ol:%OM:%OS %p}
} 50341
test clock-29.1469 {time parsing} {
    clock scan {2440588 01:59:01 pm} \
        -gmt true -locale en_US_roman \
        -format {%J %I:%M:%S %P}
} 50341
test clock-29.1470 {time parsing} {
    clock scan {2440588 01:lix:i pm} \
        -gmt true -locale en_US_roman \
        -format {%J %I:%OM:%OS %P}
} 50341
test clock-29.1471 {time parsing} {
    clock scan {2440588  1:59:01 pm} \
        -gmt true -locale en_US_roman \
        -format {%J %l:%M:%S %P}
} 50341
test clock-29.1472 {time parsing} {
    clock scan {2440588  1:lix:i pm} \
        -gmt true -locale en_US_roman \
        -format {%J %l:%OM:%OS %P}
} 50341
test clock-29.1473 {time parsing} {
    clock scan {2440588 i:59:01 pm} \
        -gmt true -locale en_US_roman \
        -format {%J %OI:%M:%S %P}
} 50341
test clock-29.1474 {time parsing} {
    clock scan {2440588 i:lix:i pm} \
        -gmt true -locale en_US_roman \
        -format {%J %OI:%OM:%OS %P}
} 50341
test clock-29.1475 {time parsing} {
    clock scan {2440588 i:59:01 pm} \
        -gmt true -locale en_US_roman \
        -format {%J %Ol:%M:%S %P}
} 50341
test clock-29.1476 {time parsing} {
    clock scan {2440588 i:lix:i pm} \
        -gmt true -locale en_US_roman \
        -format {%J %Ol:%OM:%OS %P}
} 50341
test clock-29.1477 {time parsing} {
    clock scan {2440588 13:59:59 } \
        -gmt true -locale en_US_roman \
        -format {%J %H:%M:%S }
} 50399
test clock-29.1478 {time parsing} {
    clock scan {2440588 13:lix:lix } \
        -gmt true -locale en_US_roman \
        -format {%J %H:%OM:%OS }
} 50399
test clock-29.1479 {time parsing} {
    clock scan {2440588 13:59:59 } \
        -gmt true -locale en_US_roman \
        -format {%J %k:%M:%S }
} 50399
test clock-29.1480 {time parsing} {
    clock scan {2440588 13:lix:lix } \
        -gmt true -locale en_US_roman \
        -format {%J %k:%OM:%OS }
} 50399
test clock-29.1481 {time parsing} {
    clock scan {2440588 xiii:59:59 } \
        -gmt true -locale en_US_roman \
        -format {%J %OH:%M:%S }
} 50399
test clock-29.1482 {time parsing} {
    clock scan {2440588 xiii:lix:lix } \
        -gmt true -locale en_US_roman \
        -format {%J %OH:%OM:%OS }
} 50399
test clock-29.1483 {time parsing} {
    clock scan {2440588 xiii:59:59 } \
        -gmt true -locale en_US_roman \
        -format {%J %Ok:%M:%S }
} 50399
test clock-29.1484 {time parsing} {
    clock scan {2440588 xiii:lix:lix } \
        -gmt true -locale en_US_roman \
        -format {%J %Ok:%OM:%OS }
} 50399
test clock-29.1485 {time parsing} {
    clock scan {2440588 01:59:59 PM} \
        -gmt true -locale en_US_roman \
        -format {%J %I:%M:%S %p}
} 50399
test clock-29.1486 {time parsing} {
    clock scan {2440588 01:lix:lix PM} \
        -gmt true -locale en_US_roman \
        -format {%J %I:%OM:%OS %p}
} 50399
test clock-29.1487 {time parsing} {
    clock scan {2440588  1:59:59 PM} \
        -gmt true -locale en_US_roman \
        -format {%J %l:%M:%S %p}
} 50399
test clock-29.1488 {time parsing} {
    clock scan {2440588  1:lix:lix PM} \
        -gmt true -locale en_US_roman \
        -format {%J %l:%OM:%OS %p}
} 50399
test clock-29.1489 {time parsing} {
    clock scan {2440588 i:59:59 PM} \
        -gmt true -locale en_US_roman \
        -format {%J %OI:%M:%S %p}
} 50399
test clock-29.1490 {time parsing} {
    clock scan {2440588 i:lix:lix PM} \
        -gmt true -locale en_US_roman \
        -format {%J %OI:%OM:%OS %p}
} 50399
test clock-29.1491 {time parsing} {
    clock scan {2440588 i:59:59 PM} \
        -gmt true -locale en_US_roman \
        -format {%J %Ol:%M:%S %p}
} 50399
test clock-29.1492 {time parsing} {
    clock scan {2440588 i:lix:lix PM} \
        -gmt true -locale en_US_roman \
        -format {%J %Ol:%OM:%OS %p}
} 50399
test clock-29.1493 {time parsing} {
    clock scan {2440588 01:59:59 pm} \
        -gmt true -locale en_US_roman \
        -format {%J %I:%M:%S %P}
} 50399
test clock-29.1494 {time parsing} {
    clock scan {2440588 01:lix:lix pm} \
        -gmt true -locale en_US_roman \
        -format {%J %I:%OM:%OS %P}
} 50399
test clock-29.1495 {time parsing} {
    clock scan {2440588  1:59:59 pm} \
        -gmt true -locale en_US_roman \
        -format {%J %l:%M:%S %P}
} 50399
test clock-29.1496 {time parsing} {
    clock scan {2440588  1:lix:lix pm} \
        -gmt true -locale en_US_roman \
        -format {%J %l:%OM:%OS %P}
} 50399
test clock-29.1497 {time parsing} {
    clock scan {2440588 i:59:59 pm} \
        -gmt true -locale en_US_roman \
        -format {%J %OI:%M:%S %P}
} 50399
test clock-29.1498 {time parsing} {
    clock scan {2440588 i:lix:lix pm} \
        -gmt true -locale en_US_roman \
        -format {%J %OI:%OM:%OS %P}
} 50399
test clock-29.1499 {time parsing} {
    clock scan {2440588 i:59:59 pm} \
        -gmt true -locale en_US_roman \
        -format {%J %Ol:%M:%S %P}
} 50399
test clock-29.1500 {time parsing} {
    clock scan {2440588 i:lix:lix pm} \
        -gmt true -locale en_US_roman \
        -format {%J %Ol:%OM:%OS %P}
} 50399
test clock-29.1501 {time parsing} {
    clock scan {2440588 23 } \
        -gmt true -locale en_US_roman \
        -format {%J %H }
} 82800
test clock-29.1502 {time parsing} {
    clock scan {2440588 23:00 } \
        -gmt true -locale en_US_roman \
        -format {%J %H:%M }
} 82800
test clock-29.1503 {time parsing} {
    clock scan {2440588 23:? } \
        -gmt true -locale en_US_roman \
        -format {%J %H:%OM }
} 82800
test clock-29.1504 {time parsing} {
    clock scan {2440588 23:00:00 } \
        -gmt true -locale en_US_roman \
        -format {%J %H:%M:%S }
} 82800
test clock-29.1505 {time parsing} {
    clock scan {2440588 23:?:? } \
        -gmt true -locale en_US_roman \
        -format {%J %H:%OM:%OS }
} 82800
test clock-29.1506 {time parsing} {
    clock scan {2440588 23 } \
        -gmt true -locale en_US_roman \
        -format {%J %k }
} 82800
test clock-29.1507 {time parsing} {
    clock scan {2440588 23:00 } \
        -gmt true -locale en_US_roman \
        -format {%J %k:%M }
} 82800
test clock-29.1508 {time parsing} {
    clock scan {2440588 23:? } \
        -gmt true -locale en_US_roman \
        -format {%J %k:%OM }
} 82800
test clock-29.1509 {time parsing} {
    clock scan {2440588 23:00:00 } \
        -gmt true -locale en_US_roman \
        -format {%J %k:%M:%S }
} 82800
test clock-29.1510 {time parsing} {
    clock scan {2440588 23:?:? } \
        -gmt true -locale en_US_roman \
        -format {%J %k:%OM:%OS }
} 82800
test clock-29.1511 {time parsing} {
    clock scan {2440588 xxiii } \
        -gmt true -locale en_US_roman \
        -format {%J %OH }
} 82800
test clock-29.1512 {time parsing} {
    clock scan {2440588 xxiii:00 } \
        -gmt true -locale en_US_roman \
        -format {%J %OH:%M }
} 82800
test clock-29.1513 {time parsing} {
    clock scan {2440588 xxiii:? } \
        -gmt true -locale en_US_roman \
        -format {%J %OH:%OM }
} 82800
test clock-29.1514 {time parsing} {
    clock scan {2440588 xxiii:00:00 } \
        -gmt true -locale en_US_roman \
        -format {%J %OH:%M:%S }
} 82800
test clock-29.1515 {time parsing} {
    clock scan {2440588 xxiii:?:? } \
        -gmt true -locale en_US_roman \
        -format {%J %OH:%OM:%OS }
} 82800
test clock-29.1516 {time parsing} {
    clock scan {2440588 xxiii } \
        -gmt true -locale en_US_roman \
        -format {%J %Ok }
} 82800
test clock-29.1517 {time parsing} {
    clock scan {2440588 xxiii:00 } \
        -gmt true -locale en_US_roman \
        -format {%J %Ok:%M }
} 82800
test clock-29.1518 {time parsing} {
    clock scan {2440588 xxiii:? } \
        -gmt true -locale en_US_roman \
        -format {%J %Ok:%OM }
} 82800
test clock-29.1519 {time parsing} {
    clock scan {2440588 xxiii:00:00 } \
        -gmt true -locale en_US_roman \
        -format {%J %Ok:%M:%S }
} 82800
test clock-29.1520 {time parsing} {
    clock scan {2440588 xxiii:?:? } \
        -gmt true -locale en_US_roman \
        -format {%J %Ok:%OM:%OS }
} 82800
test clock-29.1521 {time parsing} {
    clock scan {2440588 11 PM} \
        -gmt true -locale en_US_roman \
        -format {%J %I %p}
} 82800
test clock-29.1522 {time parsing} {
    clock scan {2440588 11:00 PM} \
        -gmt true -locale en_US_roman \
        -format {%J %I:%M %p}
} 82800
test clock-29.1523 {time parsing} {
    clock scan {2440588 11:? PM} \
        -gmt true -locale en_US_roman \
        -format {%J %I:%OM %p}
} 82800
test clock-29.1524 {time parsing} {
    clock scan {2440588 11:00:00 PM} \
        -gmt true -locale en_US_roman \
        -format {%J %I:%M:%S %p}
} 82800
test clock-29.1525 {time parsing} {
    clock scan {2440588 11:?:? PM} \
        -gmt true -locale en_US_roman \
        -format {%J %I:%OM:%OS %p}
} 82800
test clock-29.1526 {time parsing} {
    clock scan {2440588 11 PM} \
        -gmt true -locale en_US_roman \
        -format {%J %l %p}
} 82800
test clock-29.1527 {time parsing} {
    clock scan {2440588 11:00 PM} \
        -gmt true -locale en_US_roman \
        -format {%J %l:%M %p}
} 82800
test clock-29.1528 {time parsing} {
    clock scan {2440588 11:? PM} \
        -gmt true -locale en_US_roman \
        -format {%J %l:%OM %p}
} 82800
test clock-29.1529 {time parsing} {
    clock scan {2440588 11:00:00 PM} \
        -gmt true -locale en_US_roman \
        -format {%J %l:%M:%S %p}
} 82800
test clock-29.1530 {time parsing} {
    clock scan {2440588 11:?:? PM} \
        -gmt true -locale en_US_roman \
        -format {%J %l:%OM:%OS %p}
} 82800
test clock-29.1531 {time parsing} {
    clock scan {2440588 xi PM} \
        -gmt true -locale en_US_roman \
        -format {%J %OI %p}
} 82800
test clock-29.1532 {time parsing} {
    clock scan {2440588 xi:00 PM} \
        -gmt true -locale en_US_roman \
        -format {%J %OI:%M %p}
} 82800
test clock-29.1533 {time parsing} {
    clock scan {2440588 xi:? PM} \
        -gmt true -locale en_US_roman \
        -format {%J %OI:%OM %p}
} 82800
test clock-29.1534 {time parsing} {
    clock scan {2440588 xi:00:00 PM} \
        -gmt true -locale en_US_roman \
        -format {%J %OI:%M:%S %p}
} 82800
test clock-29.1535 {time parsing} {
    clock scan {2440588 xi:?:? PM} \
        -gmt true -locale en_US_roman \
        -format {%J %OI:%OM:%OS %p}
} 82800
test clock-29.1536 {time parsing} {
    clock scan {2440588 xi PM} \
        -gmt true -locale en_US_roman \
        -format {%J %Ol %p}
} 82800
test clock-29.1537 {time parsing} {
    clock scan {2440588 xi:00 PM} \
        -gmt true -locale en_US_roman \
        -format {%J %Ol:%M %p}
} 82800
test clock-29.1538 {time parsing} {
    clock scan {2440588 xi:? PM} \
        -gmt true -locale en_US_roman \
        -format {%J %Ol:%OM %p}
} 82800
test clock-29.1539 {time parsing} {
    clock scan {2440588 xi:00:00 PM} \
        -gmt true -locale en_US_roman \
        -format {%J %Ol:%M:%S %p}
} 82800
test clock-29.1540 {time parsing} {
    clock scan {2440588 xi:?:? PM} \
        -gmt true -locale en_US_roman \
        -format {%J %Ol:%OM:%OS %p}
} 82800
test clock-29.1541 {time parsing} {
    clock scan {2440588 11 pm} \
        -gmt true -locale en_US_roman \
        -format {%J %I %P}
} 82800
test clock-29.1542 {time parsing} {
    clock scan {2440588 11:00 pm} \
        -gmt true -locale en_US_roman \
        -format {%J %I:%M %P}
} 82800
test clock-29.1543 {time parsing} {
    clock scan {2440588 11:? pm} \
        -gmt true -locale en_US_roman \
        -format {%J %I:%OM %P}
} 82800
test clock-29.1544 {time parsing} {
    clock scan {2440588 11:00:00 pm} \
        -gmt true -locale en_US_roman \
        -format {%J %I:%M:%S %P}
} 82800
test clock-29.1545 {time parsing} {
    clock scan {2440588 11:?:? pm} \
        -gmt true -locale en_US_roman \
        -format {%J %I:%OM:%OS %P}
} 82800
test clock-29.1546 {time parsing} {
    clock scan {2440588 11 pm} \
        -gmt true -locale en_US_roman \
        -format {%J %l %P}
} 82800
test clock-29.1547 {time parsing} {
    clock scan {2440588 11:00 pm} \
        -gmt true -locale en_US_roman \
        -format {%J %l:%M %P}
} 82800
test clock-29.1548 {time parsing} {
    clock scan {2440588 11:? pm} \
        -gmt true -locale en_US_roman \
        -format {%J %l:%OM %P}
} 82800
test clock-29.1549 {time parsing} {
    clock scan {2440588 11:00:00 pm} \
        -gmt true -locale en_US_roman \
        -format {%J %l:%M:%S %P}
} 82800
test clock-29.1550 {time parsing} {
    clock scan {2440588 11:?:? pm} \
        -gmt true -locale en_US_roman \
        -format {%J %l:%OM:%OS %P}
} 82800
test clock-29.1551 {time parsing} {
    clock scan {2440588 xi pm} \
        -gmt true -locale en_US_roman \
        -format {%J %OI %P}
} 82800
test clock-29.1552 {time parsing} {
    clock scan {2440588 xi:00 pm} \
        -gmt true -locale en_US_roman \
        -format {%J %OI:%M %P}
} 82800
test clock-29.1553 {time parsing} {
    clock scan {2440588 xi:? pm} \
        -gmt true -locale en_US_roman \
        -format {%J %OI:%OM %P}
} 82800
test clock-29.1554 {time parsing} {
    clock scan {2440588 xi:00:00 pm} \
        -gmt true -locale en_US_roman \
        -format {%J %OI:%M:%S %P}
} 82800
test clock-29.1555 {time parsing} {
    clock scan {2440588 xi:?:? pm} \
        -gmt true -locale en_US_roman \
        -format {%J %OI:%OM:%OS %P}
} 82800
test clock-29.1556 {time parsing} {
    clock scan {2440588 xi pm} \
        -gmt true -locale en_US_roman \
        -format {%J %Ol %P}
} 82800
test clock-29.1557 {time parsing} {
    clock scan {2440588 xi:00 pm} \
        -gmt true -locale en_US_roman \
        -format {%J %Ol:%M %P}
} 82800
test clock-29.1558 {time parsing} {
    clock scan {2440588 xi:? pm} \
        -gmt true -locale en_US_roman \
        -format {%J %Ol:%OM %P}
} 82800
test clock-29.1559 {time parsing} {
    clock scan {2440588 xi:00:00 pm} \
        -gmt true -locale en_US_roman \
        -format {%J %Ol:%M:%S %P}
} 82800
test clock-29.1560 {time parsing} {
    clock scan {2440588 xi:?:? pm} \
        -gmt true -locale en_US_roman \
        -format {%J %Ol:%OM:%OS %P}
} 82800
test clock-29.1561 {time parsing} {
    clock scan {2440588 23:00:01 } \
        -gmt true -locale en_US_roman \
        -format {%J %H:%M:%S }
} 82801
test clock-29.1562 {time parsing} {
    clock scan {2440588 23:?:i } \
        -gmt true -locale en_US_roman \
        -format {%J %H:%OM:%OS }
} 82801
test clock-29.1563 {time parsing} {
    clock scan {2440588 23:00:01 } \
        -gmt true -locale en_US_roman \
        -format {%J %k:%M:%S }
} 82801
test clock-29.1564 {time parsing} {
    clock scan {2440588 23:?:i } \
        -gmt true -locale en_US_roman \
        -format {%J %k:%OM:%OS }
} 82801
test clock-29.1565 {time parsing} {
    clock scan {2440588 xxiii:00:01 } \
        -gmt true -locale en_US_roman \
        -format {%J %OH:%M:%S }
} 82801
test clock-29.1566 {time parsing} {
    clock scan {2440588 xxiii:?:i } \
        -gmt true -locale en_US_roman \
        -format {%J %OH:%OM:%OS }
} 82801
test clock-29.1567 {time parsing} {
    clock scan {2440588 xxiii:00:01 } \
        -gmt true -locale en_US_roman \
        -format {%J %Ok:%M:%S }
} 82801
test clock-29.1568 {time parsing} {
    clock scan {2440588 xxiii:?:i } \
        -gmt true -locale en_US_roman \
        -format {%J %Ok:%OM:%OS }
} 82801
test clock-29.1569 {time parsing} {
    clock scan {2440588 11:00:01 PM} \
        -gmt true -locale en_US_roman \
        -format {%J %I:%M:%S %p}
} 82801
test clock-29.1570 {time parsing} {
    clock scan {2440588 11:?:i PM} \
        -gmt true -locale en_US_roman \
        -format {%J %I:%OM:%OS %p}
} 82801
test clock-29.1571 {time parsing} {
    clock scan {2440588 11:00:01 PM} \
        -gmt true -locale en_US_roman \
        -format {%J %l:%M:%S %p}
} 82801
test clock-29.1572 {time parsing} {
    clock scan {2440588 11:?:i PM} \
        -gmt true -locale en_US_roman \
        -format {%J %l:%OM:%OS %p}
} 82801
test clock-29.1573 {time parsing} {
    clock scan {2440588 xi:00:01 PM} \
        -gmt true -locale en_US_roman \
        -format {%J %OI:%M:%S %p}
} 82801
test clock-29.1574 {time parsing} {
    clock scan {2440588 xi:?:i PM} \
        -gmt true -locale en_US_roman \
        -format {%J %OI:%OM:%OS %p}
} 82801
test clock-29.1575 {time parsing} {
    clock scan {2440588 xi:00:01 PM} \
        -gmt true -locale en_US_roman \
        -format {%J %Ol:%M:%S %p}
} 82801
test clock-29.1576 {time parsing} {
    clock scan {2440588 xi:?:i PM} \
        -gmt true -locale en_US_roman \
        -format {%J %Ol:%OM:%OS %p}
} 82801
test clock-29.1577 {time parsing} {
    clock scan {2440588 11:00:01 pm} \
        -gmt true -locale en_US_roman \
        -format {%J %I:%M:%S %P}
} 82801
test clock-29.1578 {time parsing} {
    clock scan {2440588 11:?:i pm} \
        -gmt true -locale en_US_roman \
        -format {%J %I:%OM:%OS %P}
} 82801
test clock-29.1579 {time parsing} {
    clock scan {2440588 11:00:01 pm} \
        -gmt true -locale en_US_roman \
        -format {%J %l:%M:%S %P}
} 82801
test clock-29.1580 {time parsing} {
    clock scan {2440588 11:?:i pm} \
        -gmt true -locale en_US_roman \
        -format {%J %l:%OM:%OS %P}
} 82801
test clock-29.1581 {time parsing} {
    clock scan {2440588 xi:00:01 pm} \
        -gmt true -locale en_US_roman \
        -format {%J %OI:%M:%S %P}
} 82801
test clock-29.1582 {time parsing} {
    clock scan {2440588 xi:?:i pm} \
        -gmt true -locale en_US_roman \
        -format {%J %OI:%OM:%OS %P}
} 82801
test clock-29.1583 {time parsing} {
    clock scan {2440588 xi:00:01 pm} \
        -gmt true -locale en_US_roman \
        -format {%J %Ol:%M:%S %P}
} 82801
test clock-29.1584 {time parsing} {
    clock scan {2440588 xi:?:i pm} \
        -gmt true -locale en_US_roman \
        -format {%J %Ol:%OM:%OS %P}
} 82801
test clock-29.1585 {time parsing} {
    clock scan {2440588 23:00:59 } \
        -gmt true -locale en_US_roman \
        -format {%J %H:%M:%S }
} 82859
test clock-29.1586 {time parsing} {
    clock scan {2440588 23:?:lix } \
        -gmt true -locale en_US_roman \
        -format {%J %H:%OM:%OS }
} 82859
test clock-29.1587 {time parsing} {
    clock scan {2440588 23:00:59 } \
        -gmt true -locale en_US_roman \
        -format {%J %k:%M:%S }
} 82859
test clock-29.1588 {time parsing} {
    clock scan {2440588 23:?:lix } \
        -gmt true -locale en_US_roman \
        -format {%J %k:%OM:%OS }
} 82859
test clock-29.1589 {time parsing} {
    clock scan {2440588 xxiii:00:59 } \
        -gmt true -locale en_US_roman \
        -format {%J %OH:%M:%S }
} 82859
test clock-29.1590 {time parsing} {
    clock scan {2440588 xxiii:?:lix } \
        -gmt true -locale en_US_roman \
        -format {%J %OH:%OM:%OS }
} 82859
test clock-29.1591 {time parsing} {
    clock scan {2440588 xxiii:00:59 } \
        -gmt true -locale en_US_roman \
        -format {%J %Ok:%M:%S }
} 82859
test clock-29.1592 {time parsing} {
    clock scan {2440588 xxiii:?:lix } \
        -gmt true -locale en_US_roman \
        -format {%J %Ok:%OM:%OS }
} 82859
test clock-29.1593 {time parsing} {
    clock scan {2440588 11:00:59 PM} \
        -gmt true -locale en_US_roman \
        -format {%J %I:%M:%S %p}
} 82859
test clock-29.1594 {time parsing} {
    clock scan {2440588 11:?:lix PM} \
        -gmt true -locale en_US_roman \
        -format {%J %I:%OM:%OS %p}
} 82859
test clock-29.1595 {time parsing} {
    clock scan {2440588 11:00:59 PM} \
        -gmt true -locale en_US_roman \
        -format {%J %l:%M:%S %p}
} 82859
test clock-29.1596 {time parsing} {
    clock scan {2440588 11:?:lix PM} \
        -gmt true -locale en_US_roman \
        -format {%J %l:%OM:%OS %p}
} 82859
test clock-29.1597 {time parsing} {
    clock scan {2440588 xi:00:59 PM} \
        -gmt true -locale en_US_roman \
        -format {%J %OI:%M:%S %p}
} 82859
test clock-29.1598 {time parsing} {
    clock scan {2440588 xi:?:lix PM} \
        -gmt true -locale en_US_roman \
        -format {%J %OI:%OM:%OS %p}
} 82859
test clock-29.1599 {time parsing} {
    clock scan {2440588 xi:00:59 PM} \
        -gmt true -locale en_US_roman \
        -format {%J %Ol:%M:%S %p}
} 82859
test clock-29.1600 {time parsing} {
    clock scan {2440588 xi:?:lix PM} \
        -gmt true -locale en_US_roman \
        -format {%J %Ol:%OM:%OS %p}
} 82859
test clock-29.1601 {time parsing} {
    clock scan {2440588 11:00:59 pm} \
        -gmt true -locale en_US_roman \
        -format {%J %I:%M:%S %P}
} 82859
test clock-29.1602 {time parsing} {
    clock scan {2440588 11:?:lix pm} \
        -gmt true -locale en_US_roman \
        -format {%J %I:%OM:%OS %P}
} 82859
test clock-29.1603 {time parsing} {
    clock scan {2440588 11:00:59 pm} \
        -gmt true -locale en_US_roman \
        -format {%J %l:%M:%S %P}
} 82859
test clock-29.1604 {time parsing} {
    clock scan {2440588 11:?:lix pm} \
        -gmt true -locale en_US_roman \
        -format {%J %l:%OM:%OS %P}
} 82859
test clock-29.1605 {time parsing} {
    clock scan {2440588 xi:00:59 pm} \
        -gmt true -locale en_US_roman \
        -format {%J %OI:%M:%S %P}
} 82859
test clock-29.1606 {time parsing} {
    clock scan {2440588 xi:?:lix pm} \
        -gmt true -locale en_US_roman \
        -format {%J %OI:%OM:%OS %P}
} 82859
test clock-29.1607 {time parsing} {
    clock scan {2440588 xi:00:59 pm} \
        -gmt true -locale en_US_roman \
        -format {%J %Ol:%M:%S %P}
} 82859
test clock-29.1608 {time parsing} {
    clock scan {2440588 xi:?:lix pm} \
        -gmt true -locale en_US_roman \
        -format {%J %Ol:%OM:%OS %P}
} 82859
test clock-29.1609 {time parsing} {
    clock scan {2440588 23:01 } \
        -gmt true -locale en_US_roman \
        -format {%J %H:%M }
} 82860
test clock-29.1610 {time parsing} {
    clock scan {2440588 23:i } \
        -gmt true -locale en_US_roman \
        -format {%J %H:%OM }
} 82860
test clock-29.1611 {time parsing} {
    clock scan {2440588 23:01:00 } \
        -gmt true -locale en_US_roman \
        -format {%J %H:%M:%S }
} 82860
test clock-29.1612 {time parsing} {
    clock scan {2440588 23:i:? } \
        -gmt true -locale en_US_roman \
        -format {%J %H:%OM:%OS }
} 82860
test clock-29.1613 {time parsing} {
    clock scan {2440588 23:01 } \
        -gmt true -locale en_US_roman \
        -format {%J %k:%M }
} 82860
test clock-29.1614 {time parsing} {
    clock scan {2440588 23:i } \
        -gmt true -locale en_US_roman \
        -format {%J %k:%OM }
} 82860
test clock-29.1615 {time parsing} {
    clock scan {2440588 23:01:00 } \
        -gmt true -locale en_US_roman \
        -format {%J %k:%M:%S }
} 82860
test clock-29.1616 {time parsing} {
    clock scan {2440588 23:i:? } \
        -gmt true -locale en_US_roman \
        -format {%J %k:%OM:%OS }
} 82860
test clock-29.1617 {time parsing} {
    clock scan {2440588 xxiii:01 } \
        -gmt true -locale en_US_roman \
        -format {%J %OH:%M }
} 82860
test clock-29.1618 {time parsing} {
    clock scan {2440588 xxiii:i } \
        -gmt true -locale en_US_roman \
        -format {%J %OH:%OM }
} 82860
test clock-29.1619 {time parsing} {
    clock scan {2440588 xxiii:01:00 } \
        -gmt true -locale en_US_roman \
        -format {%J %OH:%M:%S }
} 82860
test clock-29.1620 {time parsing} {
    clock scan {2440588 xxiii:i:? } \
        -gmt true -locale en_US_roman \
        -format {%J %OH:%OM:%OS }
} 82860
test clock-29.1621 {time parsing} {
    clock scan {2440588 xxiii:01 } \
        -gmt true -locale en_US_roman \
        -format {%J %Ok:%M }
} 82860
test clock-29.1622 {time parsing} {
    clock scan {2440588 xxiii:i } \
        -gmt true -locale en_US_roman \
        -format {%J %Ok:%OM }
} 82860
test clock-29.1623 {time parsing} {
    clock scan {2440588 xxiii:01:00 } \
        -gmt true -locale en_US_roman \
        -format {%J %Ok:%M:%S }
} 82860
test clock-29.1624 {time parsing} {
    clock scan {2440588 xxiii:i:? } \
        -gmt true -locale en_US_roman \
        -format {%J %Ok:%OM:%OS }
} 82860
test clock-29.1625 {time parsing} {
    clock scan {2440588 11:01 PM} \
        -gmt true -locale en_US_roman \
        -format {%J %I:%M %p}
} 82860
test clock-29.1626 {time parsing} {
    clock scan {2440588 11:i PM} \
        -gmt true -locale en_US_roman \
        -format {%J %I:%OM %p}
} 82860
test clock-29.1627 {time parsing} {
    clock scan {2440588 11:01:00 PM} \
        -gmt true -locale en_US_roman \
        -format {%J %I:%M:%S %p}
} 82860
test clock-29.1628 {time parsing} {
    clock scan {2440588 11:i:? PM} \
        -gmt true -locale en_US_roman \
        -format {%J %I:%OM:%OS %p}
} 82860
test clock-29.1629 {time parsing} {
    clock scan {2440588 11:01 PM} \
        -gmt true -locale en_US_roman \
        -format {%J %l:%M %p}
} 82860
test clock-29.1630 {time parsing} {
    clock scan {2440588 11:i PM} \
        -gmt true -locale en_US_roman \
        -format {%J %l:%OM %p}
} 82860
test clock-29.1631 {time parsing} {
    clock scan {2440588 11:01:00 PM} \
        -gmt true -locale en_US_roman \
        -format {%J %l:%M:%S %p}
} 82860
test clock-29.1632 {time parsing} {
    clock scan {2440588 11:i:? PM} \
        -gmt true -locale en_US_roman \
        -format {%J %l:%OM:%OS %p}
} 82860
test clock-29.1633 {time parsing} {
    clock scan {2440588 xi:01 PM} \
        -gmt true -locale en_US_roman \
        -format {%J %OI:%M %p}
} 82860
test clock-29.1634 {time parsing} {
    clock scan {2440588 xi:i PM} \
        -gmt true -locale en_US_roman \
        -format {%J %OI:%OM %p}
} 82860
test clock-29.1635 {time parsing} {
    clock scan {2440588 xi:01:00 PM} \
        -gmt true -locale en_US_roman \
        -format {%J %OI:%M:%S %p}
} 82860
test clock-29.1636 {time parsing} {
    clock scan {2440588 xi:i:? PM} \
        -gmt true -locale en_US_roman \
        -format {%J %OI:%OM:%OS %p}
} 82860
test clock-29.1637 {time parsing} {
    clock scan {2440588 xi:01 PM} \
        -gmt true -locale en_US_roman \
        -format {%J %Ol:%M %p}
} 82860
test clock-29.1638 {time parsing} {
    clock scan {2440588 xi:i PM} \
        -gmt true -locale en_US_roman \
        -format {%J %Ol:%OM %p}
} 82860
test clock-29.1639 {time parsing} {
    clock scan {2440588 xi:01:00 PM} \
        -gmt true -locale en_US_roman \
        -format {%J %Ol:%M:%S %p}
} 82860
test clock-29.1640 {time parsing} {
    clock scan {2440588 xi:i:? PM} \
        -gmt true -locale en_US_roman \
        -format {%J %Ol:%OM:%OS %p}
} 82860
test clock-29.1641 {time parsing} {
    clock scan {2440588 11:01 pm} \
        -gmt true -locale en_US_roman \
        -format {%J %I:%M %P}
} 82860
test clock-29.1642 {time parsing} {
    clock scan {2440588 11:i pm} \
        -gmt true -locale en_US_roman \
        -format {%J %I:%OM %P}
} 82860
test clock-29.1643 {time parsing} {
    clock scan {2440588 11:01:00 pm} \
        -gmt true -locale en_US_roman \
        -format {%J %I:%M:%S %P}
} 82860
test clock-29.1644 {time parsing} {
    clock scan {2440588 11:i:? pm} \
        -gmt true -locale en_US_roman \
        -format {%J %I:%OM:%OS %P}
} 82860
test clock-29.1645 {time parsing} {
    clock scan {2440588 11:01 pm} \
        -gmt true -locale en_US_roman \
        -format {%J %l:%M %P}
} 82860
test clock-29.1646 {time parsing} {
    clock scan {2440588 11:i pm} \
        -gmt true -locale en_US_roman \
        -format {%J %l:%OM %P}
} 82860
test clock-29.1647 {time parsing} {
    clock scan {2440588 11:01:00 pm} \
        -gmt true -locale en_US_roman \
        -format {%J %l:%M:%S %P}
} 82860
test clock-29.1648 {time parsing} {
    clock scan {2440588 11:i:? pm} \
        -gmt true -locale en_US_roman \
        -format {%J %l:%OM:%OS %P}
} 82860
test clock-29.1649 {time parsing} {
    clock scan {2440588 xi:01 pm} \
        -gmt true -locale en_US_roman \
        -format {%J %OI:%M %P}
} 82860
test clock-29.1650 {time parsing} {
    clock scan {2440588 xi:i pm} \
        -gmt true -locale en_US_roman \
        -format {%J %OI:%OM %P}
} 82860
test clock-29.1651 {time parsing} {
    clock scan {2440588 xi:01:00 pm} \
        -gmt true -locale en_US_roman \
        -format {%J %OI:%M:%S %P}
} 82860
test clock-29.1652 {time parsing} {
    clock scan {2440588 xi:i:? pm} \
        -gmt true -locale en_US_roman \
        -format {%J %OI:%OM:%OS %P}
} 82860
test clock-29.1653 {time parsing} {
    clock scan {2440588 xi:01 pm} \
        -gmt true -locale en_US_roman \
        -format {%J %Ol:%M %P}
} 82860
test clock-29.1654 {time parsing} {
    clock scan {2440588 xi:i pm} \
        -gmt true -locale en_US_roman \
        -format {%J %Ol:%OM %P}
} 82860
test clock-29.1655 {time parsing} {
    clock scan {2440588 xi:01:00 pm} \
        -gmt true -locale en_US_roman \
        -format {%J %Ol:%M:%S %P}
} 82860
test clock-29.1656 {time parsing} {
    clock scan {2440588 xi:i:? pm} \
        -gmt true -locale en_US_roman \
        -format {%J %Ol:%OM:%OS %P}
} 82860
test clock-29.1657 {time parsing} {
    clock scan {2440588 23:01:01 } \
        -gmt true -locale en_US_roman \
        -format {%J %H:%M:%S }
} 82861
test clock-29.1658 {time parsing} {
    clock scan {2440588 23:i:i } \
        -gmt true -locale en_US_roman \
        -format {%J %H:%OM:%OS }
} 82861
test clock-29.1659 {time parsing} {
    clock scan {2440588 23:01:01 } \
        -gmt true -locale en_US_roman \
        -format {%J %k:%M:%S }
} 82861
test clock-29.1660 {time parsing} {
    clock scan {2440588 23:i:i } \
        -gmt true -locale en_US_roman \
        -format {%J %k:%OM:%OS }
} 82861
test clock-29.1661 {time parsing} {
    clock scan {2440588 xxiii:01:01 } \
        -gmt true -locale en_US_roman \
        -format {%J %OH:%M:%S }
} 82861
test clock-29.1662 {time parsing} {
    clock scan {2440588 xxiii:i:i } \
        -gmt true -locale en_US_roman \
        -format {%J %OH:%OM:%OS }
} 82861
test clock-29.1663 {time parsing} {
    clock scan {2440588 xxiii:01:01 } \
        -gmt true -locale en_US_roman \
        -format {%J %Ok:%M:%S }
} 82861
test clock-29.1664 {time parsing} {
    clock scan {2440588 xxiii:i:i } \
        -gmt true -locale en_US_roman \
        -format {%J %Ok:%OM:%OS }
} 82861
test clock-29.1665 {time parsing} {
    clock scan {2440588 11:01:01 PM} \
        -gmt true -locale en_US_roman \
        -format {%J %I:%M:%S %p}
} 82861
test clock-29.1666 {time parsing} {
    clock scan {2440588 11:i:i PM} \
        -gmt true -locale en_US_roman \
        -format {%J %I:%OM:%OS %p}
} 82861
test clock-29.1667 {time parsing} {
    clock scan {2440588 11:01:01 PM} \
        -gmt true -locale en_US_roman \
        -format {%J %l:%M:%S %p}
} 82861
test clock-29.1668 {time parsing} {
    clock scan {2440588 11:i:i PM} \
        -gmt true -locale en_US_roman \
        -format {%J %l:%OM:%OS %p}
} 82861
test clock-29.1669 {time parsing} {
    clock scan {2440588 xi:01:01 PM} \
        -gmt true -locale en_US_roman \
        -format {%J %OI:%M:%S %p}
} 82861
test clock-29.1670 {time parsing} {
    clock scan {2440588 xi:i:i PM} \
        -gmt true -locale en_US_roman \
        -format {%J %OI:%OM:%OS %p}
} 82861
test clock-29.1671 {time parsing} {
    clock scan {2440588 xi:01:01 PM} \
        -gmt true -locale en_US_roman \
        -format {%J %Ol:%M:%S %p}
} 82861
test clock-29.1672 {time parsing} {
    clock scan {2440588 xi:i:i PM} \
        -gmt true -locale en_US_roman \
        -format {%J %Ol:%OM:%OS %p}
} 82861
test clock-29.1673 {time parsing} {
    clock scan {2440588 11:01:01 pm} \
        -gmt true -locale en_US_roman \
        -format {%J %I:%M:%S %P}
} 82861
test clock-29.1674 {time parsing} {
    clock scan {2440588 11:i:i pm} \
        -gmt true -locale en_US_roman \
        -format {%J %I:%OM:%OS %P}
} 82861
test clock-29.1675 {time parsing} {
    clock scan {2440588 11:01:01 pm} \
        -gmt true -locale en_US_roman \
        -format {%J %l:%M:%S %P}
} 82861
test clock-29.1676 {time parsing} {
    clock scan {2440588 11:i:i pm} \
        -gmt true -locale en_US_roman \
        -format {%J %l:%OM:%OS %P}
} 82861
test clock-29.1677 {time parsing} {
    clock scan {2440588 xi:01:01 pm} \
        -gmt true -locale en_US_roman \
        -format {%J %OI:%M:%S %P}
} 82861
test clock-29.1678 {time parsing} {
    clock scan {2440588 xi:i:i pm} \
        -gmt true -locale en_US_roman \
        -format {%J %OI:%OM:%OS %P}
} 82861
test clock-29.1679 {time parsing} {
    clock scan {2440588 xi:01:01 pm} \
        -gmt true -locale en_US_roman \
        -format {%J %Ol:%M:%S %P}
} 82861
test clock-29.1680 {time parsing} {
    clock scan {2440588 xi:i:i pm} \
        -gmt true -locale en_US_roman \
        -format {%J %Ol:%OM:%OS %P}
} 82861
test clock-29.1681 {time parsing} {
    clock scan {2440588 23:01:59 } \
        -gmt true -locale en_US_roman \
        -format {%J %H:%M:%S }
} 82919
test clock-29.1682 {time parsing} {
    clock scan {2440588 23:i:lix } \
        -gmt true -locale en_US_roman \
        -format {%J %H:%OM:%OS }
} 82919
test clock-29.1683 {time parsing} {
    clock scan {2440588 23:01:59 } \
        -gmt true -locale en_US_roman \
        -format {%J %k:%M:%S }
} 82919
test clock-29.1684 {time parsing} {
    clock scan {2440588 23:i:lix } \
        -gmt true -locale en_US_roman \
        -format {%J %k:%OM:%OS }
} 82919
test clock-29.1685 {time parsing} {
    clock scan {2440588 xxiii:01:59 } \
        -gmt true -locale en_US_roman \
        -format {%J %OH:%M:%S }
} 82919
test clock-29.1686 {time parsing} {
    clock scan {2440588 xxiii:i:lix } \
        -gmt true -locale en_US_roman \
        -format {%J %OH:%OM:%OS }
} 82919
test clock-29.1687 {time parsing} {
    clock scan {2440588 xxiii:01:59 } \
        -gmt true -locale en_US_roman \
        -format {%J %Ok:%M:%S }
} 82919
test clock-29.1688 {time parsing} {
    clock scan {2440588 xxiii:i:lix } \
        -gmt true -locale en_US_roman \
        -format {%J %Ok:%OM:%OS }
} 82919
test clock-29.1689 {time parsing} {
    clock scan {2440588 11:01:59 PM} \
        -gmt true -locale en_US_roman \
        -format {%J %I:%M:%S %p}
} 82919
test clock-29.1690 {time parsing} {
    clock scan {2440588 11:i:lix PM} \
        -gmt true -locale en_US_roman \
        -format {%J %I:%OM:%OS %p}
} 82919
test clock-29.1691 {time parsing} {
    clock scan {2440588 11:01:59 PM} \
        -gmt true -locale en_US_roman \
        -format {%J %l:%M:%S %p}
} 82919
test clock-29.1692 {time parsing} {
    clock scan {2440588 11:i:lix PM} \
        -gmt true -locale en_US_roman \
        -format {%J %l:%OM:%OS %p}
} 82919
test clock-29.1693 {time parsing} {
    clock scan {2440588 xi:01:59 PM} \
        -gmt true -locale en_US_roman \
        -format {%J %OI:%M:%S %p}
} 82919
test clock-29.1694 {time parsing} {
    clock scan {2440588 xi:i:lix PM} \
        -gmt true -locale en_US_roman \
        -format {%J %OI:%OM:%OS %p}
} 82919
test clock-29.1695 {time parsing} {
    clock scan {2440588 xi:01:59 PM} \
        -gmt true -locale en_US_roman \
        -format {%J %Ol:%M:%S %p}
} 82919
test clock-29.1696 {time parsing} {
    clock scan {2440588 xi:i:lix PM} \
        -gmt true -locale en_US_roman \
        -format {%J %Ol:%OM:%OS %p}
} 82919
test clock-29.1697 {time parsing} {
    clock scan {2440588 11:01:59 pm} \
        -gmt true -locale en_US_roman \
        -format {%J %I:%M:%S %P}
} 82919
test clock-29.1698 {time parsing} {
    clock scan {2440588 11:i:lix pm} \
        -gmt true -locale en_US_roman \
        -format {%J %I:%OM:%OS %P}
} 82919
test clock-29.1699 {time parsing} {
    clock scan {2440588 11:01:59 pm} \
        -gmt true -locale en_US_roman \
        -format {%J %l:%M:%S %P}
} 82919
test clock-29.1700 {time parsing} {
    clock scan {2440588 11:i:lix pm} \
        -gmt true -locale en_US_roman \
        -format {%J %l:%OM:%OS %P}
} 82919
test clock-29.1701 {time parsing} {
    clock scan {2440588 xi:01:59 pm} \
        -gmt true -locale en_US_roman \
        -format {%J %OI:%M:%S %P}
} 82919
test clock-29.1702 {time parsing} {
    clock scan {2440588 xi:i:lix pm} \
        -gmt true -locale en_US_roman \
        -format {%J %OI:%OM:%OS %P}
} 82919
test clock-29.1703 {time parsing} {
    clock scan {2440588 xi:01:59 pm} \
        -gmt true -locale en_US_roman \
        -format {%J %Ol:%M:%S %P}
} 82919
test clock-29.1704 {time parsing} {
    clock scan {2440588 xi:i:lix pm} \
        -gmt true -locale en_US_roman \
        -format {%J %Ol:%OM:%OS %P}
} 82919
test clock-29.1705 {time parsing} {
    clock scan {2440588 23:59 } \
        -gmt true -locale en_US_roman \
        -format {%J %H:%M }
} 86340
test clock-29.1706 {time parsing} {
    clock scan {2440588 23:lix } \
        -gmt true -locale en_US_roman \
        -format {%J %H:%OM }
} 86340
test clock-29.1707 {time parsing} {
    clock scan {2440588 23:59:00 } \
        -gmt true -locale en_US_roman \
        -format {%J %H:%M:%S }
} 86340
test clock-29.1708 {time parsing} {
    clock scan {2440588 23:lix:? } \
        -gmt true -locale en_US_roman \
        -format {%J %H:%OM:%OS }
} 86340
test clock-29.1709 {time parsing} {
    clock scan {2440588 23:59 } \
        -gmt true -locale en_US_roman \
        -format {%J %k:%M }
} 86340
test clock-29.1710 {time parsing} {
    clock scan {2440588 23:lix } \
        -gmt true -locale en_US_roman \
        -format {%J %k:%OM }
} 86340
test clock-29.1711 {time parsing} {
    clock scan {2440588 23:59:00 } \
        -gmt true -locale en_US_roman \
        -format {%J %k:%M:%S }
} 86340
test clock-29.1712 {time parsing} {
    clock scan {2440588 23:lix:? } \
        -gmt true -locale en_US_roman \
        -format {%J %k:%OM:%OS }
} 86340
test clock-29.1713 {time parsing} {
    clock scan {2440588 xxiii:59 } \
        -gmt true -locale en_US_roman \
        -format {%J %OH:%M }
} 86340
test clock-29.1714 {time parsing} {
    clock scan {2440588 xxiii:lix } \
        -gmt true -locale en_US_roman \
        -format {%J %OH:%OM }
} 86340
test clock-29.1715 {time parsing} {
    clock scan {2440588 xxiii:59:00 } \
        -gmt true -locale en_US_roman \
        -format {%J %OH:%M:%S }
} 86340
test clock-29.1716 {time parsing} {
    clock scan {2440588 xxiii:lix:? } \
        -gmt true -locale en_US_roman \
        -format {%J %OH:%OM:%OS }
} 86340
test clock-29.1717 {time parsing} {
    clock scan {2440588 xxiii:59 } \
        -gmt true -locale en_US_roman \
        -format {%J %Ok:%M }
} 86340
test clock-29.1718 {time parsing} {
    clock scan {2440588 xxiii:lix } \
        -gmt true -locale en_US_roman \
        -format {%J %Ok:%OM }
} 86340
test clock-29.1719 {time parsing} {
    clock scan {2440588 xxiii:59:00 } \
        -gmt true -locale en_US_roman \
        -format {%J %Ok:%M:%S }
} 86340
test clock-29.1720 {time parsing} {
    clock scan {2440588 xxiii:lix:? } \
        -gmt true -locale en_US_roman \
        -format {%J %Ok:%OM:%OS }
} 86340
test clock-29.1721 {time parsing} {
    clock scan {2440588 11:59 PM} \
        -gmt true -locale en_US_roman \
        -format {%J %I:%M %p}
} 86340
test clock-29.1722 {time parsing} {
    clock scan {2440588 11:lix PM} \
        -gmt true -locale en_US_roman \
        -format {%J %I:%OM %p}
} 86340
test clock-29.1723 {time parsing} {
    clock scan {2440588 11:59:00 PM} \
        -gmt true -locale en_US_roman \
        -format {%J %I:%M:%S %p}
} 86340
test clock-29.1724 {time parsing} {
    clock scan {2440588 11:lix:? PM} \
        -gmt true -locale en_US_roman \
        -format {%J %I:%OM:%OS %p}
} 86340
test clock-29.1725 {time parsing} {
    clock scan {2440588 11:59 PM} \
        -gmt true -locale en_US_roman \
        -format {%J %l:%M %p}
} 86340
test clock-29.1726 {time parsing} {
    clock scan {2440588 11:lix PM} \
        -gmt true -locale en_US_roman \
        -format {%J %l:%OM %p}
} 86340
test clock-29.1727 {time parsing} {
    clock scan {2440588 11:59:00 PM} \
        -gmt true -locale en_US_roman \
        -format {%J %l:%M:%S %p}
} 86340
test clock-29.1728 {time parsing} {
    clock scan {2440588 11:lix:? PM} \
        -gmt true -locale en_US_roman \
        -format {%J %l:%OM:%OS %p}
} 86340
test clock-29.1729 {time parsing} {
    clock scan {2440588 xi:59 PM} \
        -gmt true -locale en_US_roman \
        -format {%J %OI:%M %p}
} 86340
test clock-29.1730 {time parsing} {
    clock scan {2440588 xi:lix PM} \
        -gmt true -locale en_US_roman \
        -format {%J %OI:%OM %p}
} 86340
test clock-29.1731 {time parsing} {
    clock scan {2440588 xi:59:00 PM} \
        -gmt true -locale en_US_roman \
        -format {%J %OI:%M:%S %p}
} 86340
test clock-29.1732 {time parsing} {
    clock scan {2440588 xi:lix:? PM} \
        -gmt true -locale en_US_roman \
        -format {%J %OI:%OM:%OS %p}
} 86340
test clock-29.1733 {time parsing} {
    clock scan {2440588 xi:59 PM} \
        -gmt true -locale en_US_roman \
        -format {%J %Ol:%M %p}
} 86340
test clock-29.1734 {time parsing} {
    clock scan {2440588 xi:lix PM} \
        -gmt true -locale en_US_roman \
        -format {%J %Ol:%OM %p}
} 86340
test clock-29.1735 {time parsing} {
    clock scan {2440588 xi:59:00 PM} \
        -gmt true -locale en_US_roman \
        -format {%J %Ol:%M:%S %p}
} 86340
test clock-29.1736 {time parsing} {
    clock scan {2440588 xi:lix:? PM} \
        -gmt true -locale en_US_roman \
        -format {%J %Ol:%OM:%OS %p}
} 86340
test clock-29.1737 {time parsing} {
    clock scan {2440588 11:59 pm} \
        -gmt true -locale en_US_roman \
        -format {%J %I:%M %P}
} 86340
test clock-29.1738 {time parsing} {
    clock scan {2440588 11:lix pm} \
        -gmt true -locale en_US_roman \
        -format {%J %I:%OM %P}
} 86340
test clock-29.1739 {time parsing} {
    clock scan {2440588 11:59:00 pm} \
        -gmt true -locale en_US_roman \
        -format {%J %I:%M:%S %P}
} 86340
test clock-29.1740 {time parsing} {
    clock scan {2440588 11:lix:? pm} \
        -gmt true -locale en_US_roman \
        -format {%J %I:%OM:%OS %P}
} 86340
test clock-29.1741 {time parsing} {
    clock scan {2440588 11:59 pm} \
        -gmt true -locale en_US_roman \
        -format {%J %l:%M %P}
} 86340
test clock-29.1742 {time parsing} {
    clock scan {2440588 11:lix pm} \
        -gmt true -locale en_US_roman \
        -format {%J %l:%OM %P}
} 86340
test clock-29.1743 {time parsing} {
    clock scan {2440588 11:59:00 pm} \
        -gmt true -locale en_US_roman \
        -format {%J %l:%M:%S %P}
} 86340
test clock-29.1744 {time parsing} {
    clock scan {2440588 11:lix:? pm} \
        -gmt true -locale en_US_roman \
        -format {%J %l:%OM:%OS %P}
} 86340
test clock-29.1745 {time parsing} {
    clock scan {2440588 xi:59 pm} \
        -gmt true -locale en_US_roman \
        -format {%J %OI:%M %P}
} 86340
test clock-29.1746 {time parsing} {
    clock scan {2440588 xi:lix pm} \
        -gmt true -locale en_US_roman \
        -format {%J %OI:%OM %P}
} 86340
test clock-29.1747 {time parsing} {
    clock scan {2440588 xi:59:00 pm} \
        -gmt true -locale en_US_roman \
        -format {%J %OI:%M:%S %P}
} 86340
test clock-29.1748 {time parsing} {
    clock scan {2440588 xi:lix:? pm} \
        -gmt true -locale en_US_roman \
        -format {%J %OI:%OM:%OS %P}
} 86340
test clock-29.1749 {time parsing} {
    clock scan {2440588 xi:59 pm} \
        -gmt true -locale en_US_roman \
        -format {%J %Ol:%M %P}
} 86340
test clock-29.1750 {time parsing} {
    clock scan {2440588 xi:lix pm} \
        -gmt true -locale en_US_roman \
        -format {%J %Ol:%OM %P}
} 86340
test clock-29.1751 {time parsing} {
    clock scan {2440588 xi:59:00 pm} \
        -gmt true -locale en_US_roman \
        -format {%J %Ol:%M:%S %P}
} 86340
test clock-29.1752 {time parsing} {
    clock scan {2440588 xi:lix:? pm} \
        -gmt true -locale en_US_roman \
        -format {%J %Ol:%OM:%OS %P}
} 86340
test clock-29.1753 {time parsing} {
    clock scan {2440588 23:59:01 } \
        -gmt true -locale en_US_roman \
        -format {%J %H:%M:%S }
} 86341
test clock-29.1754 {time parsing} {
    clock scan {2440588 23:lix:i } \
        -gmt true -locale en_US_roman \
        -format {%J %H:%OM:%OS }
} 86341
test clock-29.1755 {time parsing} {
    clock scan {2440588 23:59:01 } \
        -gmt true -locale en_US_roman \
        -format {%J %k:%M:%S }
} 86341
test clock-29.1756 {time parsing} {
    clock scan {2440588 23:lix:i } \
        -gmt true -locale en_US_roman \
        -format {%J %k:%OM:%OS }
} 86341
test clock-29.1757 {time parsing} {
    clock scan {2440588 xxiii:59:01 } \
        -gmt true -locale en_US_roman \
        -format {%J %OH:%M:%S }
} 86341
test clock-29.1758 {time parsing} {
    clock scan {2440588 xxiii:lix:i } \
        -gmt true -locale en_US_roman \
        -format {%J %OH:%OM:%OS }
} 86341
test clock-29.1759 {time parsing} {
    clock scan {2440588 xxiii:59:01 } \
        -gmt true -locale en_US_roman \
        -format {%J %Ok:%M:%S }
} 86341
test clock-29.1760 {time parsing} {
    clock scan {2440588 xxiii:lix:i } \
        -gmt true -locale en_US_roman \
        -format {%J %Ok:%OM:%OS }
} 86341
test clock-29.1761 {time parsing} {
    clock scan {2440588 11:59:01 PM} \
        -gmt true -locale en_US_roman \
        -format {%J %I:%M:%S %p}
} 86341
test clock-29.1762 {time parsing} {
    clock scan {2440588 11:lix:i PM} \
        -gmt true -locale en_US_roman \
        -format {%J %I:%OM:%OS %p}
} 86341
test clock-29.1763 {time parsing} {
    clock scan {2440588 11:59:01 PM} \
        -gmt true -locale en_US_roman \
        -format {%J %l:%M:%S %p}
} 86341
test clock-29.1764 {time parsing} {
    clock scan {2440588 11:lix:i PM} \
        -gmt true -locale en_US_roman \
        -format {%J %l:%OM:%OS %p}
} 86341
test clock-29.1765 {time parsing} {
    clock scan {2440588 xi:59:01 PM} \
        -gmt true -locale en_US_roman \
        -format {%J %OI:%M:%S %p}
} 86341
test clock-29.1766 {time parsing} {
    clock scan {2440588 xi:lix:i PM} \
        -gmt true -locale en_US_roman \
        -format {%J %OI:%OM:%OS %p}
} 86341
test clock-29.1767 {time parsing} {
    clock scan {2440588 xi:59:01 PM} \
        -gmt true -locale en_US_roman \
        -format {%J %Ol:%M:%S %p}
} 86341
test clock-29.1768 {time parsing} {
    clock scan {2440588 xi:lix:i PM} \
        -gmt true -locale en_US_roman \
        -format {%J %Ol:%OM:%OS %p}
} 86341
test clock-29.1769 {time parsing} {
    clock scan {2440588 11:59:01 pm} \
        -gmt true -locale en_US_roman \
        -format {%J %I:%M:%S %P}
} 86341
test clock-29.1770 {time parsing} {
    clock scan {2440588 11:lix:i pm} \
        -gmt true -locale en_US_roman \
        -format {%J %I:%OM:%OS %P}
} 86341
test clock-29.1771 {time parsing} {
    clock scan {2440588 11:59:01 pm} \
        -gmt true -locale en_US_roman \
        -format {%J %l:%M:%S %P}
} 86341
test clock-29.1772 {time parsing} {
    clock scan {2440588 11:lix:i pm} \
        -gmt true -locale en_US_roman \
        -format {%J %l:%OM:%OS %P}
} 86341
test clock-29.1773 {time parsing} {
    clock scan {2440588 xi:59:01 pm} \
        -gmt true -locale en_US_roman \
        -format {%J %OI:%M:%S %P}
} 86341
test clock-29.1774 {time parsing} {
    clock scan {2440588 xi:lix:i pm} \
        -gmt true -locale en_US_roman \
        -format {%J %OI:%OM:%OS %P}
} 86341
test clock-29.1775 {time parsing} {
    clock scan {2440588 xi:59:01 pm} \
        -gmt true -locale en_US_roman \
        -format {%J %Ol:%M:%S %P}
} 86341
test clock-29.1776 {time parsing} {
    clock scan {2440588 xi:lix:i pm} \
        -gmt true -locale en_US_roman \
        -format {%J %Ol:%OM:%OS %P}
} 86341
test clock-29.1777 {time parsing} {
    clock scan {2440588 23:59:59 } \
        -gmt true -locale en_US_roman \
        -format {%J %H:%M:%S }
} 86399
test clock-29.1778 {time parsing} {
    clock scan {2440588 23:lix:lix } \
        -gmt true -locale en_US_roman \
        -format {%J %H:%OM:%OS }
} 86399
test clock-29.1779 {time parsing} {
    clock scan {2440588 23:59:59 } \
        -gmt true -locale en_US_roman \
        -format {%J %k:%M:%S }
} 86399
test clock-29.1780 {time parsing} {
    clock scan {2440588 23:lix:lix } \
        -gmt true -locale en_US_roman \
        -format {%J %k:%OM:%OS }
} 86399
test clock-29.1781 {time parsing} {
    clock scan {2440588 xxiii:59:59 } \
        -gmt true -locale en_US_roman \
        -format {%J %OH:%M:%S }
} 86399
test clock-29.1782 {time parsing} {
    clock scan {2440588 xxiii:lix:lix } \
        -gmt true -locale en_US_roman \
        -format {%J %OH:%OM:%OS }
} 86399
test clock-29.1783 {time parsing} {
    clock scan {2440588 xxiii:59:59 } \
        -gmt true -locale en_US_roman \
        -format {%J %Ok:%M:%S }
} 86399
test clock-29.1784 {time parsing} {
    clock scan {2440588 xxiii:lix:lix } \
        -gmt true -locale en_US_roman \
        -format {%J %Ok:%OM:%OS }
} 86399
test clock-29.1785 {time parsing} {
    clock scan {2440588 11:59:59 PM} \
        -gmt true -locale en_US_roman \
        -format {%J %I:%M:%S %p}
} 86399
test clock-29.1786 {time parsing} {
    clock scan {2440588 11:lix:lix PM} \
        -gmt true -locale en_US_roman \
        -format {%J %I:%OM:%OS %p}
} 86399
test clock-29.1787 {time parsing} {
    clock scan {2440588 11:59:59 PM} \
        -gmt true -locale en_US_roman \
        -format {%J %l:%M:%S %p}
} 86399
test clock-29.1788 {time parsing} {
    clock scan {2440588 11:lix:lix PM} \
        -gmt true -locale en_US_roman \
        -format {%J %l:%OM:%OS %p}
} 86399
test clock-29.1789 {time parsing} {
    clock scan {2440588 xi:59:59 PM} \
        -gmt true -locale en_US_roman \
        -format {%J %OI:%M:%S %p}
} 86399
test clock-29.1790 {time parsing} {
    clock scan {2440588 xi:lix:lix PM} \
        -gmt true -locale en_US_roman \
        -format {%J %OI:%OM:%OS %p}
} 86399
test clock-29.1791 {time parsing} {
    clock scan {2440588 xi:59:59 PM} \
        -gmt true -locale en_US_roman \
        -format {%J %Ol:%M:%S %p}
} 86399
test clock-29.1792 {time parsing} {
    clock scan {2440588 xi:lix:lix PM} \
        -gmt true -locale en_US_roman \
        -format {%J %Ol:%OM:%OS %p}
} 86399
test clock-29.1793 {time parsing} {
    clock scan {2440588 11:59:59 pm} \
        -gmt true -locale en_US_roman \
        -format {%J %I:%M:%S %P}
} 86399
test clock-29.1794 {time parsing} {
    clock scan {2440588 11:lix:lix pm} \
        -gmt true -locale en_US_roman \
        -format {%J %I:%OM:%OS %P}
} 86399
test clock-29.1795 {time parsing} {
    clock scan {2440588 11:59:59 pm} \
        -gmt true -locale en_US_roman \
        -format {%J %l:%M:%S %P}
} 86399
test clock-29.1796 {time parsing} {
    clock scan {2440588 11:lix:lix pm} \
        -gmt true -locale en_US_roman \
        -format {%J %l:%OM:%OS %P}
} 86399
test clock-29.1797 {time parsing} {
    clock scan {2440588 xi:59:59 pm} \
        -gmt true -locale en_US_roman \
        -format {%J %OI:%M:%S %P}
} 86399
test clock-29.1798 {time parsing} {
    clock scan {2440588 xi:lix:lix pm} \
        -gmt true -locale en_US_roman \
        -format {%J %OI:%OM:%OS %P}
} 86399
test clock-29.1799 {time parsing} {
    clock scan {2440588 xi:59:59 pm} \
        -gmt true -locale en_US_roman \
        -format {%J %Ol:%M:%S %P}
} 86399
test clock-29.1800 {time parsing} {
    clock scan {2440588 xi:lix:lix pm} \
        -gmt true -locale en_US_roman \
        -format {%J %Ol:%OM:%OS %P}
} 86399
# END testcases29

test clock-30.1 {clock add years} {
    set t [clock scan 2000-01-01 -format %Y-%m-%d -timezone :UTC]
    set f [clock add $t 1 year -timezone :UTC]
    clock format $f -format %Y-%m-%d -timezone :UTC
} {2001-01-01}
test clock-30.2 {clock add years - leap day} {
    set t [clock scan 2000-02-29 -format %Y-%m-%d -timezone :UTC]
    set f [clock add $t 1 years -timezone :UTC]
    clock format $f -format %Y-%m-%d -timezone :UTC
} {2001-02-28}
test clock-30.3 {clock add months} {
    set t [clock scan 2000-01-01 -format %Y-%m-%d -timezone :UTC]
    set f [clock add $t 1 month -timezone :UTC]
    clock format $f -format %Y-%m-%d -timezone :UTC
} {2000-02-01}
test clock-30.4 {clock add months, short month} {
    set t [clock scan 2000-01-31 -format %Y-%m-%d -timezone :UTC]
    set f [clock add $t 1 months -timezone :UTC]
    clock format $f -format %Y-%m-%d -timezone :UTC
} {2000-02-29}
test clock-30.5 {clock add months, end of year} {
    set t [clock scan 2000-12-01 -format %Y-%m-%d -timezone :UTC]
    set f [clock add $t 1 month -timezone :UTC]
    clock format $f -format %Y-%m-%d -timezone :UTC
} {2001-01-01}
test clock-30.6 {clock add months, one year one month vs 13 months} {
    set t [clock scan 2000-02-29 -format %Y-%m-%d -timezone :UTC]
    set f1 [clock add $t 1 year 1 month -timezone :UTC]
    set f2 [clock add $t 13 months -timezone :UTC]
    set x1 [clock format $f1 -format %Y-%m-%d -timezone :UTC]
    set x2 [clock format $f2 -format %Y-%m-%d -timezone :UTC]
    list $x1 $x2
} {2001-03-28 2001-03-29}
test clock-30.7 {clock add months, 1 year 1 month vs 1 month 1 year} {
    set t [clock scan 2000-02-29 -format %Y-%m-%d -timezone :UTC]
    set f1 [clock add $t 1 year 1 month -timezone :UTC]
    set f2 [clock add $t 1 month 1 year -timezone :UTC]
    set x1 [clock format $f1 -format %Y-%m-%d -timezone :UTC]
    set x2 [clock format $f2 -format %Y-%m-%d -timezone :UTC]
    list $x1 $x2
} {2001-03-28 2001-03-29}
test clock-30.8 {clock add months, negative} {
    set t [clock scan 2000-03-31 -format %Y-%m-%d -timezone :UTC]
    set f1 [clock add $t -1 month -timezone :UTC]
    set f2 [clock add $t -2 month -timezone :UTC]
    set f3 [clock add $t -3 month -timezone :UTC]
    set f4 [clock add $t -4 month -timezone :UTC]
    set x1 [clock format $f1 -format %Y-%m-%d -timezone :UTC]
    set x2 [clock format $f2 -format %Y-%m-%d -timezone :UTC]
    set x3 [clock format $f3 -format %Y-%m-%d -timezone :UTC]
    set x4 [clock format $f4 -format %Y-%m-%d -timezone :UTC]
    list $x1 $x2 $x3 $x4
} {2000-02-29 2000-01-31 1999-12-31 1999-11-30}
test clock-30.9 {clock add days} {
    set t [clock scan {2000-01-01 12:34:56} -format {%Y-%m-%d %H:%M:%S} \
	       -timezone :UTC]
    set f1 [clock add $t 1 day -timezone :UTC]
    set f2 [clock add $t -1 day -timezone :UTC]
    set x1 [clock format $f1 -format {%Y-%m-%d %H:%M:%S} -timezone :UTC]
    set x2 [clock format $f2 -format {%Y-%m-%d %H:%M:%S} -timezone :UTC]
    list $x1 $x2
} {{2000-01-02 12:34:56} {1999-12-31 12:34:56}}
test clock-30.10 {clock add days, spring DST conversion, before} {
    set t [clock scan {2004-04-03 01:59:59} -format {%Y-%m-%d %H:%M:%S} \
	       -timezone EST05:00EDT04:00,M4.1.0/02:00,M10.5.0/02:00]
    set f1 [clock add $t 1 day \
		-timezone EST05:00EDT04:00,M4.1.0/02:00,M10.5.0/02:00]
    set f2 [clock add $t 2 days \
		-timezone EST05:00EDT04:00,M4.1.0/02:00,M10.5.0/02:00]
    set x1 [clock format $f1 -format {%Y-%m-%d %H:%M:%S %z} \
		-timezone EST05:00EDT04:00,M4.1.0/02:00,M10.5.0/02:00]
    set x2 [clock format $f2 -format {%Y-%m-%d %H:%M:%S %z} \
		-timezone EST05:00EDT04:00,M4.1.0/02:00,M10.5.0/02:00]
    list $x1 $x2
} {{2004-04-04 01:59:59 -0500} {2004-04-05 01:59:59 -0400}}
test clock-30.11 {clock add days, spring DST conversion, bad case} {
    set t [clock scan {2004-04-03 02:30:00} -format {%Y-%m-%d %H:%M:%S} \
	       -timezone EST05:00EDT04:00,M4.1.0/02:00,M10.5.0/02:00]
    set f1 [clock add $t 1 day \
		-timezone EST05:00EDT04:00,M4.1.0/02:00,M10.5.0/02:00]
    set f2 [clock add $t 2 day \
		-timezone EST05:00EDT04:00,M4.1.0/02:00,M10.5.0/02:00]
    set x1 [clock format $f1 -format {%Y-%m-%d %H:%M:%S %z} \
		-timezone EST05:00EDT04:00,M4.1.0/02:00,M10.5.0/02:00]
    set x2 [clock format $f2 -format {%Y-%m-%d %H:%M:%S %z} \
		-timezone EST05:00EDT04:00,M4.1.0/02:00,M10.5.0/02:00]
    list $x1 $x2
} {{2004-04-04 03:30:00 -0400} {2004-04-05 02:30:00 -0400}}
test clock-30.12 {clock add days, spring DST conversion, after} {
    set t [clock scan {2004-04-03 03:00:00} -format {%Y-%m-%d %H:%M:%S} \
	       -timezone EST05:00EDT04:00,M4.1.0/02:00,M10.5.0/02:00]
    set f1 [clock add $t 1 day -timezone EST05:00EDT04:00,M4.1.0/02:00,M10.5.0/02:00]
    set f2 [clock add $t 2 day -timezone EST05:00EDT04:00,M4.1.0/02:00,M10.5.0/02:00]
    set x1 [clock format $f1 -format {%Y-%m-%d %H:%M:%S %z} \
		-timezone EST05:00EDT04:00,M4.1.0/02:00,M10.5.0/02:00]
    set x2 [clock format $f2 -format {%Y-%m-%d %H:%M:%S %z} \
		-timezone EST05:00EDT04:00,M4.1.0/02:00,M10.5.0/02:00]
    list $x1 $x2
} {{2004-04-04 03:00:00 -0400} {2004-04-05 03:00:00 -0400}}
test clock-30.13 {clock add days, fall DST conversion, before} {
    set t [clock scan {2004-10-30 00:59:59} -format {%Y-%m-%d %H:%M:%S} \
	       -timezone EST05:00EDT04:00,M4.1.0/02:00,M10.5.0/02:00]
    set f1 [clock add $t 1 day \
		-timezone EST05:00EDT04:00,M4.1.0/02:00,M10.5.0/02:00]
    set f2 [clock add $t 2 day \
		-timezone EST05:00EDT04:00,M4.1.0/02:00,M10.5.0/02:00]
    set x1 [clock format $f1 -format {%Y-%m-%d %H:%M:%S %z} \
		-timezone EST05:00EDT04:00,M4.1.0/02:00,M10.5.0/02:00]
    set x2 [clock format $f2 -format {%Y-%m-%d %H:%M:%S %z} \
		-timezone EST05:00EDT04:00,M4.1.0/02:00,M10.5.0/02:00]
    list $x1 $x2
} {{2004-10-31 00:59:59 -0400} {2004-11-01 00:59:59 -0500}}
test clock-30.14 {clock add days, fall DST conversion, bad case} {
    set t [clock scan {2004-10-30 01:30:00} -format {%Y-%m-%d %H:%M:%S} \
	       -timezone EST05:00EDT04:00,M4.1.0/02:00,M10.5.0/02:00]
    set f1 [clock add $t 1 day \
		-timezone EST05:00EDT04:00,M4.1.0/02:00,M10.5.0/02:00]
    set f2 [clock add $t 2 day \
		-timezone EST05:00EDT04:00,M4.1.0/02:00,M10.5.0/02:00]
    set x1 [clock format $f1 -format {%Y-%m-%d %H:%M:%S %z} \
		-timezone EST05:00EDT04:00,M4.1.0/02:00,M10.5.0/02:00]
    set x2 [clock format $f2 -format {%Y-%m-%d %H:%M:%S %z} \
		-timezone EST05:00EDT04:00,M4.1.0/02:00,M10.5.0/02:00]
    list $x1 $x2
} {{2004-10-31 01:30:00 -0400} {2004-11-01 01:30:00 -0500}}
test clock-30.15 {clock add days, fall DST conversion, after} {
    set t [clock scan {2004-10-30 02:30:00} -format {%Y-%m-%d %H:%M:%S} \
	       -timezone EST05:00EDT04:00,M4.1.0/02:00,M10.5.0/02:00]
    set f1 [clock add $t 1 day \
		-timezone EST05:00EDT04:00,M4.1.0/02:00,M10.5.0/02:00]
    set f2 [clock add $t 2 day \
		-timezone EST05:00EDT04:00,M4.1.0/02:00,M10.5.0/02:00]
    set x1 [clock format $f1 -format {%Y-%m-%d %H:%M:%S %z} \
		-timezone EST05:00EDT04:00,M4.1.0/02:00,M10.5.0/02:00]
    set x2 [clock format $f2 -format {%Y-%m-%d %H:%M:%S %z} \
		-timezone EST05:00EDT04:00,M4.1.0/02:00,M10.5.0/02:00]
    list $x1 $x2
} {{2004-10-31 02:30:00 -0500} {2004-11-01 02:30:00 -0500}}
test clock-30.16 {clock add weeks} {
    set t [clock scan {2000-01-01 12:34:56} -format {%Y-%m-%d %H:%M:%S} \
	       -timezone :UTC]
    set f1 [clock add $t 1 week -timezone :UTC]
    set f2 [clock add $t -1 weeks -timezone :UTC]
    set x1 [clock format $f1 -format {%Y-%m-%d %H:%M:%S} -timezone :UTC]
    set x2 [clock format $f2 -format {%Y-%m-%d %H:%M:%S} -timezone :UTC]
    list $x1 $x2
} {{2000-01-08 12:34:56} {1999-12-25 12:34:56}}
test clock-30.17 {clock add hours} {
    set t [clock scan {2000-01-01 12:34:56} -format {%Y-%m-%d %H:%M:%S} \
	       -timezone :UTC]
    set f1 [clock add $t 1 hour -timezone :UTC]
    set f2 [clock add $t -1 hours -timezone :UTC]
    set x1 [clock format $f1 -format {%Y-%m-%d %H:%M:%S} -timezone :UTC]
    set x2 [clock format $f2 -format {%Y-%m-%d %H:%M:%S} -timezone :UTC]
    list $x1 $x2
} {{2000-01-01 13:34:56} {2000-01-01 11:34:56}}
test clock-30.18 {clock add hours at DST conversion} {
    set t [clock scan {2004-04-04 01:00:00 -0500} \
	       -format {%Y-%m-%d %H:%M:%S %z} \
	       -timezone EST05:00EDT04:00,M4.1.0/02:00,M10.5.0/02:00]
    set f1 [clock add $t 1 hour -timezone EST05:00EDT04:00,M4.1.0/02:00,M10.5.0/02:00]
    set x1 [clock format $f1 -format {%Y-%m-%d %H:%M:%S %z} \
		-timezone EST05:00EDT04:00,M4.1.0/02:00,M10.5.0/02:00]
} {2004-04-04 03:00:00 -0400}
test clock-30.19 {clock add hours at DST conversion} {
    set t [clock scan {2004-10-31 01:00:00 -0400} \
	       -format {%Y-%m-%d %H:%M:%S %z} \
	       -timezone EST05:00EDT04:00,M4.1.0/02:00,M10.5.0/02:00]
    set f1 [clock add $t 1 hour \
		-timezone EST05:00EDT04:00,M4.1.0/02:00,M10.5.0/02:00]
    set x1 [clock format $f1 -format {%Y-%m-%d %H:%M:%S %z} \
		-timezone EST05:00EDT04:00,M4.1.0/02:00,M10.5.0/02:00]
} {2004-10-31 01:00:00 -0500}
test clock-30.20 {clock add minutes} {
    set t [clock scan {2000-01-01 12:34:56} -format {%Y-%m-%d %H:%M:%S} \
	       -timezone :UTC]
    set f1 [clock add $t 60 minute -timezone :UTC]
    set f2 [clock add $t -60 minutes -timezone :UTC]
    set x1 [clock format $f1 -format {%Y-%m-%d %H:%M:%S} -timezone :UTC]
    set x2 [clock format $f2 -format {%Y-%m-%d %H:%M:%S} -timezone :UTC]
    list $x1 $x2
} {{2000-01-01 13:34:56} {2000-01-01 11:34:56}}
test clock-30.21 {clock add minutes at DST conversion} {
    set t [clock scan {2004-04-04 01:00:00 -0500} \
	       -format {%Y-%m-%d %H:%M:%S %z} \
	       -timezone EST05:00EDT04:00,M4.1.0/02:00,M10.5.0/02:00]
    set f1 [clock add $t 60 minutes \
		-timezone EST05:00EDT04:00,M4.1.0/02:00,M10.5.0/02:00]
    set x1 [clock format $f1 -format {%Y-%m-%d %H:%M:%S %z} \
		-timezone EST05:00EDT04:00,M4.1.0/02:00,M10.5.0/02:00]
} {2004-04-04 03:00:00 -0400}
test clock-30.22 {clock add minutes at DST conversion} {
    set t [clock scan {2004-10-31 01:00:00 -0400} \
	       -format {%Y-%m-%d %H:%M:%S %z} \
	       -timezone EST05:00EDT04:00,M4.1.0/02:00,M10.5.0/02:00]
    set f1 [clock add $t 60 minutes \
		-timezone EST05:00EDT04:00,M4.1.0/02:00,M10.5.0/02:00]
    set x1 [clock format $f1 -format {%Y-%m-%d %H:%M:%S %z} \
		-timezone EST05:00EDT04:00,M4.1.0/02:00,M10.5.0/02:00]
} {2004-10-31 01:00:00 -0500}
test clock-30.23 {clock add seconds} {
    set t [clock scan {2000-01-01 12:34:56} -format {%Y-%m-%d %H:%M:%S} \
	       -timezone :UTC]
    set f1 [clock add $t 3600 second -timezone :UTC]
    set f2 [clock add $t -3600 seconds -timezone :UTC]
    set x1 [clock format $f1 -format {%Y-%m-%d %H:%M:%S} -timezone :UTC]
    set x2 [clock format $f2 -format {%Y-%m-%d %H:%M:%S} -timezone :UTC]
    list $x1 $x2
} {{2000-01-01 13:34:56} {2000-01-01 11:34:56}}
test clock-30.24 {clock add seconds at DST conversion} {
    set t [clock scan {2004-04-04 01:00:00 -0500} \
	       -format {%Y-%m-%d %H:%M:%S %z} \
	       -timezone EST05:00EDT04:00,M4.1.0/02:00,M10.5.0/02:00]
    set f1 [clock add $t 3600 seconds \
		-timezone EST05:00EDT04:00,M4.1.0/02:00,M10.5.0/02:00]
    set x1 [clock format $f1 -format {%Y-%m-%d %H:%M:%S %z} \
		-timezone EST05:00EDT04:00,M4.1.0/02:00,M10.5.0/02:00]
} {2004-04-04 03:00:00 -0400}
test clock-30.25 {clock add seconds at DST conversion} {
    set t [clock scan {2004-10-31 01:00:00 -0400} \
	       -format {%Y-%m-%d %H:%M:%S %z} \
	       -timezone EST05:00EDT04:00,M4.1.0/02:00,M10.5.0/02:00]
    set f1 [clock add $t 3600 seconds -timezone EST05:00EDT04:00,M4.1.0/02:00,M10.5.0/02:00]
    set x1 [clock format $f1 -format {%Y-%m-%d %H:%M:%S %z} \
		-timezone EST05:00EDT04:00,M4.1.0/02:00,M10.5.0/02:00]
} {2004-10-31 01:00:00 -0500}

test clock-31.1 {system locale} \
    -constraints win \
    -setup { 
	namespace eval ::tcl::clock {
	    namespace import -force ::testClock::registry
	}
	set noreg [info exists ::tcl::clock::NoRegistry]
	if {$noreg} {unset ::tcl::clock::NoRegistry}
	::tcl::clock::ClearCaches
    } \
    -body {
	clock format 0 -timezone :UTC -locale system -format %x
    } \
    -cleanup {
	namespace eval ::tcl::clock {
	    rename registry {}
	}
	if {$noreg} {set ::tcl::clock::NoRegistry {}}
	::tcl::clock::ClearCaches
    } \
    -result [clock format 0 -timezone :UTC -locale current \
		 -format {%d-%b-%Y}]

test clock-31.2 {system locale} \
    -constraints win \
    -setup { 
	namespace eval ::tcl::clock {
	    namespace import -force ::testClock::registry
	}
	set noreg [info exists ::tcl::clock::NoRegistry]
	if {$noreg} {unset ::tcl::clock::NoRegistry}
	::tcl::clock::ClearCaches
    } \
    -body {
	clock format 0 -timezone :UTC -locale system -format %Ex
    } \
    -cleanup {
	namespace eval ::tcl::clock {
	    rename registry {}
	}
	if {$noreg} {set ::tcl::clock::NoRegistry {}}
	::tcl::clock::ClearCaches
    } \
    -result [clock format 0 -timezone :UTC -locale current \
		 -format {the %d' day of %B %Y}]

test clock-31.3 {system locale} \
    -constraints win \
    -setup { 
	namespace eval ::tcl::clock {
	    namespace import -force ::testClock::registry
	}
	set noreg [info exists ::tcl::clock::NoRegistry]
	if {$noreg} {unset ::tcl::clock::NoRegistry}
	::tcl::clock::ClearCaches
    } \
    -body {
	clock format 0 -timezone :UTC -locale system -format %X
    } \
    -cleanup {
	namespace eval ::tcl::clock {
	    rename registry {}
	}
	if {$noreg} {set ::tcl::clock::NoRegistry {}}
	::tcl::clock::ClearCaches
    } \
    -result [clock format 0 -timezone :UTC -locale current \
		 -format {%l:%M:%S %p}]

test clock-31.4 {system locale} \
    -constraints win \
    -setup { 
	namespace eval ::tcl::clock {
	    namespace import -force ::testClock::registry
	}
	set noreg [info exists ::tcl::clock::NoRegistry]
	if {$noreg} {unset ::tcl::clock::NoRegistry}
	if { [info exists env(TZ)] } {
	    set oldTZ $env(TZ)
	    unset env(TZ)
	}
	if { [info exists env(TCL_TZ)] } {
	    set oldTclTZ $env(TCL_TZ)
	    unset env(TCL_TZ)
	}
	::tcl::clock::ClearCaches
    } \
    -body {
	clock format 0 -locale system -format %x
    } \
    -cleanup {
	namespace eval ::tcl::clock {
	    rename registry {}
	}
	if { [info exists oldTclTZ] } {
	    set env(TCL_TZ) $oldTclTZ
	}
	if { [info exists oldTZ] } {
	    set env(TZ) $oldTZ
	}
	if {$noreg} {set ::tcl::clock::NoRegistry {}}
	::tcl::clock::ClearCaches
    } \
    -result [clock format 0 -locale current -timezone EST5 \
		 -format {%d-%b-%Y}]

test clock-31.5 {system locale} \
    -constraints win \
    -setup { 
	namespace eval ::tcl::clock {
	    namespace import -force ::testClock::registry
	}
	set noreg [info exists ::tcl::clock::NoRegistry]
	if {$noreg} {unset ::tcl::clock::NoRegistry}
	if { [info exists env(TZ)] } {
	    set oldTZ $env(TZ)
	    unset env(TZ)
	}
	if { [info exists env(TCL_TZ)] } {
	    set oldTclTZ $env(TCL_TZ)
	    unset env(TCL_TZ)
	}
	::tcl::clock::ClearCaches
    } \
    -body {
	clock format 0 -locale system -format %Ex
    } \
    -cleanup {
	namespace eval ::tcl::clock {
	    rename registry {}
	}
	if {$noreg} {set ::tcl::clock::NoRegistry {}}
	if { [info exists oldTclTZ] } {
	    set env(TCL_TZ) $oldTclTZ
	}
	if { [info exists oldTZ] } {
	    set env(TZ) $oldTZ
	}
	::tcl::clock::ClearCaches
    } \
    -result [clock format 0 -locale current -timezone EST5 \
		 -format {the %d' day of %B %Y}]

test clock-31.6 {system locale} \
    -constraints win \
    -setup { 
	namespace eval ::tcl::clock {
	    namespace import -force ::testClock::registry
	}
	set noreg [info exists ::tcl::clock::NoRegistry]
	if {$noreg} {unset ::tcl::clock::NoRegistry}
	if { [info exists env(TZ)] } {
	    set oldTZ $env(TZ)
	    unset env(TZ)
	}
	if { [info exists env(TCL_TZ)] } {
	    set oldTclTZ $env(TCL_TZ)
	    unset env(TCL_TZ)
	}
	::tcl::clock::ClearCaches
    } \
    -body {
	clock format 0 -locale system -format "%X %Z"
    } \
    -cleanup {
	namespace eval ::tcl::clock {
	    rename registry {}
	}
	if {$noreg} {set ::tcl::clock::NoRegistry {}}
	if { [info exists oldTclTZ] } {
	    set env(TCL_TZ) $oldTclTZ
	}
	if { [info exists oldTZ] } {
	    set env(TZ) $oldTZ
	}
	::tcl::clock::ClearCaches
    } \
    -result [clock format 0 -locale current -timezone EST5 \
		 -format {%l:%M:%S %p %Z}]

test clock-32.1 {scan/format across the Gregorian change} {
    set problems {}
    set t [expr { wide(-6857395200) }]
    foreach d {       1  2 14 15 16
	       17 18 19 20 21 22 23
	       24 25 26 27 28 29 30 } \
	j {         245 246 258 259 260
            261 262 263 264 265 266 267
	    268 269 270 271 272 273 274 } {
	set u [format 1752-09-%02d $d]
	set s [clock format $t -format %Y-%m-%d \
		   -locale en_US_roman -timezone :UTC]
	if { $s ne $u } {
	    append problems "formatting $t: $s should be $u\n"
	}
	set v [clock scan $u -format %Y-%m-%d \
		   -locale en_US_roman -timezone :UTC]
	if { $t ne $v } {
	    append problems "scanning $u: $t should be $v\n"
	}
	set u [format 1752-%03d $j]
	set s [clock format $t -format %Y-%j \
		   -locale en_US_roman -timezone :UTC]
	if { $s ne $u } {
	    append problems "formatting $t: $s should be $u\n"
	}
	set v [clock scan $u -format %Y-%j \
		   -locale en_US_roman -timezone :UTC]
	if { $t ne $v } {
	    append problems "scanning $u: $t should be $v\n"
	}
	incr t 86400
    }
    set problems
} {}
			 
# Legacy tests

# clock clicks
test clock-33.1 {clock clicks tests} {
    expr [clock clicks]+1
    concat {}
} {}
test clock-33.2 {clock clicks tests} {
    set start [clock clicks]
    after 10
    set end [clock clicks]
    expr "$end > $start"
} {1}
test clock-33.3 {clock clicks tests} {
    list [catch {clock clicks foo} msg] $msg
} {1 {bad option "foo": must be -milliseconds or -microseconds}}
test clock-33.4 {clock clicks tests} {
    expr [clock clicks -milliseconds]+1
    concat {}
} {}
test clock-33.4a {clock milliseconds} {
    expr { [clock milliseconds] + 1 }
    concat {}
} {}
test clock-33.5 {clock clicks tests, millisecond timing test} {
    # This test can fail on a system that is so heavily loaded that
    # the test takes >60 ms to run.
    set start [clock clicks -milli]
    after 10
    set end [clock clicks -milli]
    # 60 msecs seems to be the max time slice under Windows 95/98
    expr {
	  ($end > $start) && (($end - $start) <= 60) ?
	  "ok" : 
	  "test should have taken 0-60 ms, actually took [expr $end - $start]"}
} {ok}
test clock-33.5a {clock tests, millisecond timing test} {
    # This test can fail on a system that is so heavily loaded that
    # the test takes >60 ms to run.
    set start [clock milliseconds]
    after 10
    set end [clock milliseconds]
    # 60 msecs seems to be the max time slice under Windows 95/98
    expr {
	  ($end > $start) && (($end - $start) <= 60) ?
	  "ok" : 
	  "test should have taken 0-60 ms, actually took [expr $end - $start]"}
} {ok}
test clock-33.6 {clock clicks, milli with too much abbreviation} {
    list [catch { clock clicks ? } msg] $msg
} {1 {bad option "?": must be -milliseconds or -microseconds}}
test clock-33.7 {clock clicks, milli with too much abbreviation} {
    list [catch { clock clicks - } msg] $msg
} {1 {ambiguous option "-": must be -milliseconds or -microseconds}}

test clock-33.8 {clock clicks test, microsecond timing test} {
    # This test can fail on a system that is so heavily loaded that
    # the test takes >60 ms to run.
    set start [clock clicks -micro]
    after 10
    set end [clock clicks -micro]
    expr {($end > $start) && (($end - $start) <= 60000)}
} {1}
test clock-33.8a {clock test, microsecond timing test} {
    # This test can fail on a system that is so heavily loaded that
    # the test takes >60 ms to run.
    set start [clock microseconds]
    after 10
    set end [clock microseconds]
    expr {($end > $start) && (($end - $start) <= 60000)}
} {1}

test clock-33.9 {clock clicks test, millis align with seconds} {
    set t1 [clock seconds]
    while { 1 } {
	set t2 [clock clicks -millis]
	set t3 [clock seconds]
	if { $t3 == $t1 } break
	set t1 $t3
    }
    expr { $t2 / 1000 == $t3 }
} {1}
test clock-33.9a {clock test, millis align with seconds} {
    set t1 [clock seconds]
    while { 1 } {
	set t2 [clock milliseconds]
	set t3 [clock seconds]
	if { $t3 == $t1 } break
	set t1 $t3
    }
    expr { $t2 / 1000 == $t3 }
} {1}

test clock-33.10 {clock clicks test, micros align with seconds} {
    set t1 [clock seconds]
    while { 1 } {
	set t2 [clock clicks -micros]
	set t3 [clock seconds]
	if { $t3 == $t1 } break
	set t1 $t3
    }
    expr { $t2 / 1000000 == $t3 }
} {1}
test clock-33.10a {clock test, micros align with seconds} {
    set t1 [clock seconds]
    while { 1 } {
	set t2 [clock microseconds]
	set t3 [clock seconds]
	if { $t3 == $t1 } break
	set t1 $t3
    }
    expr { $t2 / 1000000 == $t3 }
} {1}

test clock-33.11 {clock clicks test, millis align with micros} {
    set t1 [clock clicks -millis]
    while { 1 } {
	set t2 [clock clicks -micros]
	set t3 [clock clicks -millis]
	if { $t3 == $t1 } break
	set t1 $t3
    }
    expr { $t2 / 1000 == $t3 }
} {1}
test clock-33.11a {clock test, millis align with micros} {
    set t1 [clock milliseconds]
    while { 1 } {
	set t2 [clock microseconds]
	set t3 [clock milliseconds]
	if { $t3 == $t1 } break
	set t1 $t3
    }
    expr { $t2 / 1000 == $t3 }
} {1}

# clock scan
test clock-34.1 {clock scan tests} {
    list [catch {clock scan} msg] $msg
} {1 {wrong # args: should be "clock scan string ?-base seconds? ?-format string? ?-gmt boolean? ?-locale LOCALE? ?-timezone ZONE?"}}
test clock-34.2 {clock scan tests} {*}{
    -body {clock scan "bad-string"}
    -returnCodes error
    -match glob
    -result {unable to convert date-time string "bad-string"*}
}
test clock-34.3 {clock scan tests} {
    clock format [clock scan "14 Feb 92" -gmt true] \
      -format {%m/%d/%y %I:%M:%S %p} -gmt true
} {02/14/92 12:00:00 AM}
test clock-34.4 {clock scan tests} {
    clock format [clock scan "Feb 14, 1992 12:20 PM" -gmt true] \
      -format {%m/%d/%y %I:%M:%S %p} -gmt true
} {02/14/92 12:20:00 PM}
test clock-34.5 {clock scan tests} {
    clock format \
      [clock scan "Feb 14, 1992 12:20 PM" -base 319363200 -gmt true] \
      -format {%m/%d/%y %I:%M:%S %p} -gmt true
} {02/14/92 12:20:00 PM}
test clock-34.6 {clock scan tests} {
    set time [clock scan "Oct 23,1992 15:00"]
    clock format $time -format {%b %d,%Y %H:%M}
} {Oct 23,1992 15:00}
test clock-34.7 {clock scan tests} {
    set time [clock scan "Oct 23,1992 15:00 GMT"]
    clock format $time -format {%b %d,%Y %H:%M GMT} -gmt true
} {Oct 23,1992 15:00 GMT}
test clock-34.8 {clock scan tests} {
    set time [clock scan "Oct 23,1992 15:00" -gmt true]
    clock format $time -format {%b %d,%Y %H:%M GMT} -gmt true
} {Oct 23,1992 15:00 GMT}
test clock-34.9 {clock scan tests} {
    list [catch {clock scan "Jan 12" -bad arg} msg] $msg
} {1 {bad option "-bad", must be -base, -format, -gmt, -locale or -timezone}}
# The following two two tests test the two year date policy
test clock-34.10 {clock scan tests} {
    set time [clock scan "1/1/71" -gmt true]
    clock format $time -format {%b %d,%Y %H:%M GMT} -gmt true
} {Jan 01,1971 00:00 GMT}
test clock-34.11 {clock scan tests} {
    set time [clock scan "1/1/37" -gmt true]
    clock format $time -format {%b %d,%Y %H:%M GMT} -gmt true
} {Jan 01,2037 00:00 GMT}

test clock-34.12 {clock scan, relative times} {
    set time [clock scan "Oct 23, 1992 -1 day"]
    clock format $time -format {%b %d, %Y}
} "Oct 22, 1992"
test clock-34.13 {clock scan, ISO 8601 base date format} {
    set time [clock scan "19921023"]
    clock format $time -format {%b %d, %Y}
} "Oct 23, 1992"
test clock-34.14 {clock scan, ISO 8601 expanded date format} {
    set time [clock scan "1992-10-23"]
    clock format $time -format {%b %d, %Y}
} "Oct 23, 1992"
test clock-34.15 {clock scan, DD-Mon-YYYY format} {
    set time [clock scan "23-Oct-1992"]
    clock format $time -format {%b %d, %Y}
} "Oct 23, 1992"
test clock-34.16 {clock scan, ISO 8601 point in time format} {
    set time [clock scan "19921023T235959"]
    clock format $time -format {%b %d, %Y %H:%M:%S}
} "Oct 23, 1992 23:59:59"
test clock-34.17 {clock scan, ISO 8601 point in time format} {
    set time [clock scan "19921023 235959"]
    clock format $time -format {%b %d, %Y %H:%M:%S}
} "Oct 23, 1992 23:59:59"
test clock-34.18 {clock scan, ISO 8601 point in time format} {
    set time [clock scan "19921023T000000"]
    clock format $time -format {%b %d, %Y %H:%M:%S}
} "Oct 23, 1992 00:00:00"

# CLOCK SCAN REAL TESTS
# We use 5am PST, 31-12-1999 as the base for these scans because irrespective
# of your local timezone it should always give us times on December 31, 1999
set 5amPST 946645200
test clock-34.19 {clock scan, number meridian} {
    set t1 [clock scan "5 am" -base $5amPST -gmt true]
    set t2 [clock scan "5 pm" -base $5amPST -gmt true]
    set t3 [clock scan "5 a.m." -base $5amPST -gmt true]
    set t4 [clock scan "5 p.m." -base $5amPST -gmt true]
    list \
	    [clock format $t1 -format {%b %d, %Y %H:%M:%S} -gmt true] \
	    [clock format $t2 -format {%b %d, %Y %H:%M:%S} -gmt true] \
	    [clock format $t3 -format {%b %d, %Y %H:%M:%S} -gmt true] \
	    [clock format $t4 -format {%b %d, %Y %H:%M:%S} -gmt true]
} [list "Dec 31, 1999 05:00:00" "Dec 31, 1999 17:00:00" \
	"Dec 31, 1999 05:00:00" "Dec 31, 1999 17:00:00"]
test clock-34.20 {clock scan, number:number meridian} {
    clock format [clock scan "5:30 pm" -base $5amPST -gmt true] \
	    -format {%b %d, %Y %H:%M:%S} -gmt true
} "Dec 31, 1999 17:30:00"
test clock-34.21 {clock scan, number:number-timezone} {
    clock format [clock scan "00:00-0800" -gmt true -base $5amPST] \
	    -format {%b %d, %Y %H:%M:%S} -gmt true
} "Dec 31, 1999 08:00:00"
test clock-34.22 {clock scan, number:number:number o_merid} {
    clock format [clock scan "8:00:00" -gmt true -base $5amPST] \
	    -format {%b %d, %Y %H:%M:%S} -gmt true
} "Dec 31, 1999 08:00:00"
test clock-34.23 {clock scan, number:number:number o_merid} {
    clock format [clock scan "8:00:00 am" -gmt true -base $5amPST] \
	    -format {%b %d, %Y %H:%M:%S} -gmt true
} "Dec 31, 1999 08:00:00"
test clock-34.24 {clock scan, number:number:number o_merid} {
    clock format [clock scan "8:00:00 pm" -gmt true -base $5amPST] \
	    -format {%b %d, %Y %H:%M:%S} -gmt true
} "Dec 31, 1999 20:00:00"
test clock-34.25 {clock scan, number:number:number-timezone} {
    clock format [clock scan "00:00:30-0800" -gmt true -base $5amPST] \
	    -format {%b %d, %Y %H:%M:%S} -gmt true
} "Dec 31, 1999 08:00:30"
test clock-34.26 {clock scan, DST for days} {
    clock scan "tomorrow" -base [clock scan "19991031 00:00:00"]
} [clock scan "19991101 00:00:00"]
test clock-34.27 {clock scan, DST for days} {
    clock scan "yesterday" -base [clock scan "19991101 00:00:00"]
} [clock scan "19991031 00:00:00"]
test clock-34.28 {clock scan, day} {
    clock format [clock scan "Monday" -gmt true -base 946627200] \
	    -format {%b %d, %Y %H:%M:%S} -gmt true
} "Jan 03, 2000 00:00:00"
test clock-34.29 {clock scan, number/number} {
    clock format [clock scan "1/1" -gmt true -base 946627200] \
	    -format {%b %d, %Y %H:%M:%S} -gmt true
} "Jan 01, 1999 00:00:00"
test clock-34.30 {clock scan, number/number} {
    clock format [clock scan "1/1/1999" -gmt true -base 946627200] \
	    -format {%b %d, %Y %H:%M:%S} -gmt true
} "Jan 01, 1999 00:00:00"
test clock-34.31 {clock scan, number/number} {
    clock format [clock scan "19990101" -gmt true -base 946627200] \
	    -format {%b %d, %Y %H:%M:%S} -gmt true
} "Jan 01, 1999 00:00:00"
test clock-34.32 {clock scan, relative minutes} {
    clock scan "now + 1 minute" -base 946627200
} 946627260
test clock-34.33 {clock scan, relative minutes} {
    clock scan "now +1 minute" -base 946627200
} 946627260
test clock-34.34 {clock scan, relative minutes} {
    clock scan "now 1 minute" -base 946627200
} 946627260
test clock-34.35 {clock scan, relative minutes} {
    clock scan "now - 1 minute" -base 946627200
} 946627140
test clock-34.36 {clock scan, relative minutes} {
    clock scan "now -1 minute" -base 946627200
} 946627140
test clock-34.37 {clock scan, day of week} {
    clock format [clock scan "wednesday" -base [clock scan 20000112]] \
	    -format {%b %d, %Y}
} "Jan 12, 2000"
test clock-34.38 {clock scan, next day of week} {
    clock format [clock scan "next wednesday" -base [clock scan 20000112]] \
	    -format {%b %d, %Y}
} "Jan 19, 2000"
test clock-34.39 {clock scan, day of week} {
    clock format [clock scan "thursday" -base [clock scan 20000112]] \
	    -format {%b %d, %Y}
} "Jan 13, 2000"
test clock-34.40 {clock scan, next day of week} {
    clock format [clock scan "next thursday" -base [clock scan 20000112]] \
	    -format {%b %d, %Y}
} "Jan 20, 2000"

# weekday specification and base.
test clock-34.41 {2nd monday in november} {
    set res {}
    foreach i {91 92 93 94 95 96} {
      set nov8th [clock scan 11/8/$i]
      set monday [clock scan monday -base $nov8th]
      lappend res [clock format $monday -format %Y-%m-%d]
    }
    set res
} {1991-11-11 1992-11-09 1993-11-08 1994-11-14 1995-11-13 1996-11-11}
test clock-34.42 {2nd monday in november (2nd try)} {
    set res {}
    foreach i {91 92 93 94 95 96} {
      set nov1th [clock scan 11/1/$i]
      set monday [clock scan "2 monday" -base $nov1th]
      lappend res [clock format $monday -format %Y-%m-%d]
    }
    set res
} {1991-11-11 1992-11-09 1993-11-08 1994-11-14 1995-11-13 1996-11-11}
test clock-34.43 {last monday in november} {
    set res {}
    foreach i {91 92 93 94 95 96} {
      set dec1th [clock scan 12/1/$i]
      set monday [clock scan "monday 1 week ago" -base $dec1th]
      lappend res [clock format $monday -format %Y-%m-%d]
    }
    set res
} {1991-11-25 1992-11-30 1993-11-29 1994-11-28 1995-11-27 1996-11-25}

test clock-34.44 {2nd monday in november} {
    set res {}
    foreach i {91 92 93 94 95 96} {
      set nov8th [clock scan 11/8/$i -gmt 1]
      set monday [clock scan monday -base $nov8th -gmt 1]
      lappend res [clock format $monday -format %Y-%m-%d -gmt 1]
    }
    set res
} {1991-11-11 1992-11-09 1993-11-08 1994-11-14 1995-11-13 1996-11-11}
test clock-34.45 {2nd monday in november (2nd try)} {
    set res {}
    foreach i {91 92 93 94 95 96} {
      set nov1th [clock scan 11/1/$i -gmt 1]
      set monday [clock scan "2 monday" -base $nov1th -gmt 1]
      lappend res [clock format $monday -format %Y-%m-%d -gmt 1]
    }
    set res
} {1991-11-11 1992-11-09 1993-11-08 1994-11-14 1995-11-13 1996-11-11}
test clock-34.46 {last monday in november} {
    set res {}
    foreach i {91 92 93 94 95 96} {
      set dec1th [clock scan 12/1/$i -gmt 1]
      set monday [clock scan "monday 1 week ago" -base $dec1th -gmt 1]
      lappend res [clock format $monday -format %Y-%m-%d -gmt 1]
    }
    set res
} {1991-11-25 1992-11-30 1993-11-29 1994-11-28 1995-11-27 1996-11-25}
test clock-34.47 {ago with multiple relative units} {
    set base [clock scan "12/31/1999 00:00:00"]
    set res [clock scan "2 days 2 hours ago" -base $base]
    expr {$base - $res}
} 180000

test clock-34.48 {more than one ToD} {*}{
    -body {clock scan {10:00 11:00}} 
    -returnCodes error
    -result {unable to convert date-time string "10:00 11:00": more than one time of day in string}
}

test clock-34.49 {more than one date} {*}{
    -body {clock scan {1/1/2001 2/2/2002}} 
    -returnCodes error
    -result {unable to convert date-time string "1/1/2001 2/2/2002": more than one date in string}
}

test clock-34.50 {more than one time zone} {*}{
    -body {clock scan {10:00 EST CST}} 
    -returnCodes error
    -result {unable to convert date-time string "10:00 EST CST": more than one time zone in string}
}

test clock-34.51 {more than one weekday} {*}{
    -body {clock scan {Monday Tuesday}} 
    -returnCodes error
    -result {unable to convert date-time string "Monday Tuesday": more than one weekday in string}
}

test clock-34.52 {more than one ordinal month} {*}{
    -body {clock scan {next January next March}} 
    -returnCodes error
    -result {unable to convert date-time string "next January next March": more than one ordinal month in string}
}



# clock seconds
test clock-35.1 {clock seconds tests} {
    expr [clock seconds]+1
    concat {}
} {}
test clock-35.2 {clock seconds tests} {
    list [catch {clock seconds foo} msg] $msg
} {1 {wrong # args: should be "clock seconds"}}
test clock-35.3 {clock seconds tests} {
    set start [clock seconds]
    after 2000
    set end [clock seconds]
    expr "$end > $start"
} {1}


test clock-36.1 {clock scan next monthname} {
    clock format [clock scan "next june" -base [clock scan "june 1, 2000"]] \
	    -format %m.%Y
} "06.2001"
test clock-36.2 {clock scan next monthname} {
    clock format [clock scan "next july" -base [clock scan "june 1, 2000"]] \
	    -format %m.%Y
} "07.2000"
test clock-36.3 {clock scan next monthname} {
    clock format [clock scan "next may" -base [clock scan "june 1, 2000"]] \
	    -format %m.%Y
} "05.2001"

test clock-37.1 {%s gmt testing} {
    set s [clock seconds]
    set a [clock format $s -format %s -gmt 0]
    set b [clock format $s -format %s -gmt 1]
    # %s, being the difference between local and Greenwich, does not
    # depend on the time zone.
    set c [expr {$b-$a}]
} {0}

test clock-38.1 {regression - convertUTCToLocalViaC - east of Greenwich} \
    -setup {
	if { [info exists env(TZ)] } {
	    set oldTZ $env(TZ)
	}
	set env(TZ) CET-01:00CEST-02:00,M3.5.0/02:00,M10.5.0/03:00
    } \
    -body {
	clock format 0 -format %H:%M:%S -timezone :localtime
    } \
    -cleanup {
	if { [info exists oldTZ] } {
	    set env(TZ) $oldTZ
	    unset oldTZ
	} else {
	    unset env(TZ)
	}
    } \
    -result {01:00:00}

test clock-38.2 {make sure TZ is not cached after unset} \
    -setup {
	if { [info exists env(TZ)] } {
	    set oldTZ $env(TZ)
            unset env(TZ)
	}
	if { [info exists env(TCL_TZ)] } {
	    set oldTCLTZ $env(TCL_TZ)
            unset env(TCL_TZ)
	}
    } \
    -body {
        set t1 [clock format 0]
        # a time zone that is unlikely to anywhere
        set env(TZ) "+04:20"
        set t2 [clock format 0]
        unset env(TZ)
        set t3 [clock format 0]
        expr {$t1 eq $t3 && $t1 ne $t2}
    } \
    -cleanup {
        if { [info exists oldTZ] } {
            set env(TZ) $oldTZ
            unset oldTZ
        }
        if { [info exists oldTclTZ] } {
            set env(TCL_TZ) $oldTclTZ
            unset oldTclTZ
        }
    } \
    -result 1
        

test clock-39.1 {regression - synonym timezones} {
    clock format 0 -format {%H:%M:%S} -timezone :US/Eastern
} {19:00:00}

test clock-40.1 {regression - bad month with -timezone :localtime} \
    -setup {
	if { [info exists env(TZ)] } {
	    set oldTZ $env(TZ)
	}
	set env(TZ) UTC0
    } \
    -body {
	clock scan 2000-01-01T00:00:00 -timezone :localtime \
	    -format %Y-%m-%dT%H:%M:%S
    } \
    -cleanup {
	if { [info exists oldTZ] } {
	    set env(TZ) $oldTZ
	    unset oldTZ
	} else {
	    unset env(TZ)
	}
    } \
    -result 946684800

test clock-41.1 {regression test - format group %k when hour is 0 } {
    clock format 0 -format %k -gmt true
} { 0}

test clock-42.1 {regression test - %z in :localtime when west of Greenwich } \
    -setup {
	if { [info exists env(TZ)] } {
	    set oldTZ $env(TZ)
	}
	set env(TZ) EST5
    } \
    -body {
	clock format 0 -format %z -timezone :localtime
    } \
    -cleanup {
	if { [info exists oldTZ] } {
	    set env(TZ) $oldTZ
	    unset oldTZ
	} else {
	    unset env(TZ)
	}
    } \
    -result {-0500}

# 43.1 was a bad test - mktime returning -1 is an error according to posix.

test clock-44.1 {regression test - time zone name containing hyphen } \
    -setup {
	if { [info exists env(TZ)] } {
	    set oldTZ $env(TZ)
	}
	set env(TZ) US/East-Indiana
    } \
    -body {
	clock format 1098466496 -format %H:%M:%S%z -timezone US/East-Indiana
    } \
    -cleanup {
	if { [info exists oldTZ] } {
	    set env(TZ) $oldTZ
	    unset oldTZ
	} else {
	    unset env(TZ)
	}
    } \
    -result {12:34:56-0500}
    
test clock-45.1 {regression test - time zone containing only two digits} \
    -body {
	clock scan 1985-04-12T10:15:30+04 -format %Y-%m-%dT%H:%M:%S%Z
    } \
    -result 482134530

test clock-46.1 {regression test - month zero} \
    -body {
	clock scan 2004-00-00 -format %Y-%m-%d
    } -result [clock scan 2003-11-30 -format %Y-%m-%d]
test clock-46.2 {regression test - month zero} \
    -body {
	clock scan 20040000
    } -result [clock scan 2003-11-30 -format %Y-%m-%d]
test clock-46.3 {regression test - month thirteen} \
    -body {
	clock scan 2004-13-01 -format %Y-%m-%d
    } -result [clock scan 2005-01-01 -format %Y-%m-%d]
test clock-46.4 {regression test - month thirteen} \
    -body {
	clock scan 20041301
    } -result [clock scan 2005-01-01 -format %Y-%m-%d]

test clock-47.1 {regression test - four-digit time} {
    clock scan 0012
} [clock scan 0012 -format %H%M]
test clock-47.2 {regression test - four digit time} {
    clock scan 0039
} [clock scan 0039 -format %H%M]

test clock-48.1 {Bug 1185933: 'i' destroyed by clock init} -setup {
    interp create child
} -body {
    interp eval child {
	set i 12345
	clock format 0
	list [catch { set i } result] $result
    }
} -cleanup {
    interp delete child
} -result {0 12345}

test clock-49.1 {regression test - localtime with negative arg (Bug 1237907)} \
    -body {
	list [catch { 
	    clock format -86400 -timezone :localtime -format %Y
	} result] $result
    } \
    -match regexp \
    -result {0 1969|1 {localtime failed \(clock value may be too large/small to represent\)}}

test clock-49.2 {regression test - missing time zone file (Bug 1237907)} \
    -constraints win \
    -setup {
	# override the registry so that the test takes place in New York time
	namespace eval ::tcl::clock {
	    namespace import -force ::testClock::registry
	}
	set noreg [info exists ::tcl::clock::NoRegistry]
	if {$noreg} {unset ::tcl::clock::NoRegistry}
	if { [info exists env(TZ)] } {
	    set oldTZ $env(TZ)
	    unset env(TZ)
	}
	if { [info exists env(TCL_TZ)] } {
	    set oldTclTZ $env(TCL_TZ)
	    unset env(TCL_TZ)
	}
	# make it so New York time is a missing file
	dict set ::tcl::clock::WinZoneInfo \
	    {-18000 0 3600 0 11 0 1 2 0 0 0 0 3 0 2 2 0 0 0} \
	    :No/Such/File
	::tcl::clock::ClearCaches
    } \
    -body {
	list [::tcl::clock::GuessWindowsTimeZone] \
	    [clock format 0 -locale system -format "%H:%M:%S %Z"] \
	    [clock format -86400 -format "%Y"]
    } \
    -cleanup {
	# restore the registry and environment
	namespace eval ::tcl::clock {
	    rename registry {}
	}
	if {$noreg} {set ::tcl::clock::NoRegistry {}}
	if { [info exists oldTclTZ] } {
	    set env(TCL_TZ) $oldTclTZ
	}
	if { [info exists oldTZ] } {
	    set env(TZ) $oldTZ
	}
	# put New York back on the map
	dict set ::tcl::clock::WinZoneInfo \
	    {-18000 0 3600 0 11 0 1 2 0 0 0 0 3 0 2 2 0 0 0} \
	    :America/New_York
	::tcl::clock::ClearCaches
    } \
    -result {<-0500>+05:00:00<-0400>+04:00:00,M3.2.0/02:00:00,M11.1.0/02:00:00 {19:00:00 -0500} 1969}

test clock-50.1 {format / scan -1 as a local time} {
    if {[catch {
	clock scan \
	    [clock format -1 -format %Y%m%d%H%M%S -timezone :localtime] \
	    -format %Y%m%d%H%M%S -timezone :localtime
    } result]} {
	if { [regexp " too large" $result] } {
	    set result -1
	}
    }
    set result
} -1
test clock-50.2 {format / scan -2 as a local time} {
    if {[catch {
	clock scan \
	    [clock format -2 -format %Y%m%d%H%M%S -timezone :localtime] \
	    -format %Y%m%d%H%M%S -timezone :localtime
    } result]} {
	if { [regexp " too large" $result] } {
	    set result -2
	}
    }
    set result
} -2

test clock-51.1 {correct conversion of times in Sydney} {
    # Paul Mackerras reported a bug where DST rollover in New South Wales
    # was miscalculated.  The problem was that tclZIC.tcl had a
    # typo in the switch case where DST begins/ends at a given time
    # Standard Time (that is, winter time).
    set result {}
    foreach t {1130601599 1130601600 1130637599 1130637600} {
	lappend result [clock format $t -format %H:%M:%S \
			    -timezone :Australia/Sydney]
    }
    set result
} {01:59:59 03:00:00 12:59:59 13:00:00}

test clock-52.1 {Posix timezone and conversion on last Sunday} {
    # Martin Lemburg reported a bug where if tzdata is missing, then
    # times are converted incorrectly in locales where DST conversion
    # happens in the last (nominal 5th) week of a month.
    set result {}
    set timezone <MEZ>-01:00:00<MESZ>-02:00:00,M3.5.0/02:00:00,M10.5.0/01:00:00
    foreach t {1143334799 1143334800} {
	lappend result [clock format $t -format %H:%M:%S -timezone $timezone] \
	    [clock format $t -format %H:%M:%S -timezone :Europe/Berlin]
    }
    set result
} {01:59:59 01:59:59 03:00:00 03:00:00}

test clock-52.2 {correct conversion of times in Europe} {
   # [Bug 2207436]
   set result {}
   foreach t [list 1206838799 1206838800 1224982799 1224982800] {
       lappend result [clock format $t -format %H:%M:%S \
                           -timezone MET-1METDST]
       lappend result [clock format $t -format %H:%M:%S \
                           -timezone MET0METDST]
   }
   set result
} {01:59:59 00:59:59 03:00:00 02:00:00 02:59:59 01:59:59 02:00:00 01:00:00}

test clock-52.3 {correct conversion of times in Russia} {
   # [Bug 2207436]
   set result {}
   foreach t [list 1206799199 1206799200 1224943199 1224943200] {
       lappend result [clock format $t -format %H:%M:%S \
                           -timezone WST-12WSTDST]
   }
   set result
} {01:59:59 03:00:00 02:59:59 02:00:00}

test clock-52.4 {correct conversion of times in USA} {
   # [Bug 2207436]
   set result {}
   foreach t [list 1268549999 1268550000 1257055199 1257055200] {
       lappend result [clock format $t -format %H:%M:%S \
                           -timezone EST5EDT]
   }
   set result
} {01:59:59 03:00:00 01:59:59 01:00:00}

# Regression test for Bug # 1505383

test clock-53.1 {%EC %Ey} {
    clock format 0 -gmt true -locale en_US_roman -format %EC%Ey
} mcmlxx

# Test that glob-special characters can be handled in [clock]

test clock-54.1 {glob specials in [clock format]} \
    -setup {
	clock format 0 -gmt 1 -format %Y
    } \
    -body {
	clock format 0 -gmt 1 -format {*[%Y%m%d]*}
    } \
    -result {*[19700101]*}
test clock-54.2 {glob specials in [clock scan]} \
    -setup {
	clock scan 1970 -gmt 1 -format %Y
    } \
    -body {
	clock scan {*[19700101]*} -format {*[%Y%m%d]*} -gmt 1
    } \
    -result 0

test clock-55.1 {Common Era} {
    clock format -62135769600 -gmt 1 -format {%d %m %Y %EE}
} {01 01 0001 C.E.}
test clock-55.2 {Common Era} {
    clock format -62135769600 -gmt 1 -format {%d %m %Y %EE} -locale en_US_roman
} {01 01 0001 Anno Domini}
test clock-55.3 {Before the Common Era} {
    clock format -62135769601 -gmt 1 -format {%d %m %Y %EE}
} {31 12 0001 B.C.E.}
test clock-55.4 {Before the Common Era} {
    clock format -62135769601 -gmt 1 -format {%d %m %Y %EE} -locale en_US_roman
} {31 12 0001 Before Christ}
test clock-55.5 {Common Era} {
    clock scan {01 01 0001 C.E.} \
	-gmt 1 -format {%d %m %Y %EE} -locale en_US_roman
} -62135769600
test clock-55.6 {Common Era} {
    clock scan {01 01 0001 A.D.} \
	-gmt 1 -format {%d %m %Y %EE} -locale en_US_roman
} -62135769600
test clock-55.7 {Common Era} {
    clock scan {01 01 0001 Anno Domini} \
	-gmt 1 -format {%d %m %Y %EE} -locale en_US_roman
} -62135769600
test clock-55.8 {Before the Common Era} {
    clock scan {31 12 0001 B.C.E.} \
	-gmt 1 -format {%d %m %Y %EE} -locale en_US_roman
} -62135856000
test clock-55.9 {Common Era} {
    clock scan {31 12 0001 B.C.} \
	-gmt 1 -format {%d %m %Y %EE} -locale en_US_roman
} -62135856000
test clock-55.10 {Common Era} {
    clock scan {31 12 0001 Before Christ} \
	-gmt 1 -format {%d %m %Y %EE} -locale en_US_roman
} -62135856000

test clock-56.1 {use of zoneinfo, version 1} {*}{
    -setup {
	clock format [clock seconds]
	set tzdir [makeDirectory zoneinfo]
	set tzdir2 [makeDirectory Test $tzdir]
	set tzfile [makeFile {} PhoenixOne $tzdir2]
	set f [open $tzfile wb]
	puts -nonewline $f [binary format c* {
	    0x54 0x5a 0x69 0x66 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00
	    0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03
	    0x00 0x00 0x00 0x03 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x0a
	    0x00 0x00 0x00 0x03 0x00 0x00 0x00 0x0c 0x9e 0xa6 0x3a 0x90
	    0x9f 0xbb 0x07 0x80 0xa0 0x86 0x1c 0x90 0xa1 0x9a 0xe9 0x80
	    0xcb 0x89 0x0c 0x90 0xcf 0x17 0xdf 0x1c 0xcf 0x8f 0xe5 0xac
	    0xd0 0x81 0x1a 0x1c 0xfa 0xf8 0x75 0x10 0xfb 0xe8 0x58 0x00
	    0x00 0x01 0x00 0x01 0x02 0x01 0x02 0x01 0x00 0x01 0xff 0xff
	    0xab 0xa0 0x01 0x00 0xff 0xff 0x9d 0x90 0x00 0x04 0xff 0xff
	    0xab 0xa0 0x01 0x08 0x4d 0x44 0x54 0x00 0x4d 0x53 0x54 0x00
	    0x4d 0x57 0x54 0x00 0x00 0x00 0x00 0x00 0x00 0x00
	}]
	close $f
	set ::tcl::clock::ZoneinfoPaths \
	    [linsert $::tcl::clock::ZoneinfoPaths 0 $tzdir]
	::tcl::clock::ClearCaches
    }
    -cleanup {
	set ::tcl::clock::ZoneinfoPaths \
	    [lrange $::tcl::clock::ZoneinfoPaths 1 end]
	::tcl::clock::ClearCaches
	removeFile PhoenixOne $tzdir2
	removeDirectory Test $tzdir
	removeDirectory zoneinfo
    }
    -body {
	clock format 1072940400 -timezone :Test/PhoenixOne \
	    -format {%Y-%m-%d %H:%M:%S %Z}
    }
    -result {2004-01-01 00:00:00 MST}
}
	    
test clock-56.2 {use of zoneinfo, version 2} {*}{
    -setup {
	clock format [clock seconds]
	set tzdir [makeDirectory zoneinfo]
	set tzdir2 [makeDirectory Test $tzdir]
	set tzfile [makeFile {} PhoenixTwo $tzdir2]
	set f [open $tzfile wb]
	puts -nonewline $f [binary format c* {
	    0x54 0x5a 0x69 0x66 0x32 0x00 0x00 0x00 0x00 0x00 0x00 0x00
	    0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03
	    0x00 0x00 0x00 0x03 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x0a
	    0x00 0x00 0x00 0x03 0x00 0x00 0x00 0x0c 0x9e 0xa6 0x3a 0x90
	    0x9f 0xbb 0x07 0x80 0xa0 0x86 0x1c 0x90 0xa1 0x9a 0xe9 0x80
	    0xcb 0x89 0x0c 0x90 0xcf 0x17 0xdf 0x1c 0xcf 0x8f 0xe5 0xac
	    0xd0 0x81 0x1a 0x1c 0xfa 0xf8 0x75 0x10 0xfb 0xe8 0x58 0x00
	    0x00 0x01 0x00 0x01 0x02 0x01 0x02 0x01 0x00 0x01 0xff 0xff
	    0xab 0xa0 0x01 0x00 0xff 0xff 0x9d 0x90 0x00 0x04 0xff 0xff
	    0xab 0xa0 0x01 0x08 0x4d 0x44 0x54 0x00 0x4d 0x53 0x54 0x00
	    0x4d 0x57 0x54 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x54 0x5a
	    0x69 0x66 0x32 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00
	    0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x04 0x00 0x00
	    0x00 0x04 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x0b 0x00 0x00
	    0x00 0x04 0x00 0x00 0x00 0x10 0xff 0xff 0xff 0xff 0x5e 0x04
	    0x0c 0xb0 0xff 0xff 0xff 0xff 0x9e 0xa6 0x3a 0x90 0xff 0xff
	    0xff 0xff 0x9f 0xbb 0x07 0x80 0xff 0xff 0xff 0xff 0xa0 0x86
	    0x1c 0x90 0xff 0xff 0xff 0xff 0xa1 0x9a 0xe9 0x80 0xff 0xff
	    0xff 0xff 0xcb 0x89 0x0c 0x90 0xff 0xff 0xff 0xff 0xcf 0x17
	    0xdf 0x1c 0xff 0xff 0xff 0xff 0xcf 0x8f 0xe5 0xac 0xff 0xff
	    0xff 0xff 0xd0 0x81 0x1a 0x1c 0xff 0xff 0xff 0xff 0xfa 0xf8
	    0x75 0x10 0xff 0xff 0xff 0xff 0xfb 0xe8 0x58 0x00 0x02 0x01
	    0x02 0x01 0x02 0x03 0x02 0x03 0x02 0x01 0x02 0xff 0xff 0x96
	    0xee 0x00 0x00 0xff 0xff 0xab 0xa0 0x01 0x04 0xff 0xff 0x9d
	    0x90 0x00 0x08 0xff 0xff 0xab 0xa0 0x01 0x0c 0x4c 0x4d 0x54
	    0x00 0x4d 0x44 0x54 0x00 0x4d 0x53 0x54 0x00 0x4d 0x57 0x54
	    0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x0a 0x4d 0x53
	    0x54 0x37 0x0a
	}]
	close $f
	set ::tcl::clock::ZoneinfoPaths \
	    [linsert $::tcl::clock::ZoneinfoPaths 0 $tzdir]
	::tcl::clock::ClearCaches
    }
    -cleanup {
	set ::tcl::clock::ZoneinfoPaths \
	    [lrange $::tcl::clock::ZoneinfoPaths 1 end]
	::tcl::clock::ClearCaches
	removeFile PhoenixTwo $tzdir2
	removeDirectory Test $tzdir
	removeDirectory zoneinfo
    } 
    -body {
	clock format 1072940400 -timezone :Test/PhoenixTwo \
	    -format {%Y-%m-%d %H:%M:%S %Z}
    }
    -result {2004-01-01 00:00:00 MST}
}

test clock-56.3 {use of zoneinfo, version 2, Y2038 compliance} {*}{
    -setup {
	clock format [clock seconds]
	set tzdir [makeDirectory zoneinfo]
	set tzdir2 [makeDirectory Test $tzdir]
	set tzfile [makeFile {} TijuanaTwo $tzdir2]
	set f [open $tzfile wb]
	puts -nonewline $f [binary format c* {
            0x54 0x5a 0x69 0x66 0x32 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00
            0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x06 0x00 0x00
            0x00 0x06 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x95 0x00 0x00 0x00
            0x06 0x00 0x00 0x00 0x18 0xa5 0xb6 0xf6 0x80 0xa9 0x79 0x4f 0x70
            0xaf 0xf2 0x7c 0xf0 0xb6 0x66 0x64 0x70 0xb7 0x1b 0x10 0x00 0xb8
            0x0a 0xf2 0xf0 0xcb 0xea 0x8d 0x80 0xd2 0x23 0xf4 0x70 0xd2 0x99
            0xba 0x70 0xd7 0x1b 0x59 0x00 0xd8 0x91 0xb4 0xf0 0xe2 0x7e 0x59
            0xa0 0xe3 0x49 0x52 0x90 0xe4 0x5e 0x3b 0xa0 0xe5 0x29 0x34 0x90
            0xe6 0x47 0x58 0x20 0xe7 0x12 0x51 0x10 0xe8 0x27 0x3a 0x20 0xe8
            0xf2 0x33 0x10 0xea 0x07 0x1c 0x20 0xea 0xd2 0x15 0x10 0xeb 0xe6
            0xfe 0x20 0xec 0xb1 0xf7 0x10 0xed 0xc6 0xe0 0x20 0xee 0x91 0xd9
            0x10 0x0b 0xe0 0xaf 0xa0 0x0c 0xd9 0xcd 0x10 0x0d 0xc0 0x91 0xa0
            0x0e 0xb9 0xaf 0x10 0x0f 0xa9 0xae 0x20 0x10 0x99 0x91 0x10 0x11
            0x89 0x90 0x20 0x12 0x79 0x73 0x10 0x13 0x69 0x72 0x20 0x14 0x59
            0x55 0x10 0x15 0x49 0x54 0x20 0x16 0x39 0x37 0x10 0x17 0x29 0x36
            0x20 0x18 0x22 0x53 0x90 0x19 0x09 0x18 0x20 0x1a 0x02 0x35 0x90
            0x1a 0xf2 0x34 0xa0 0x1b 0xe2 0x17 0x90 0x1c 0xd2 0x16 0xa0 0x1d
            0xc1 0xf9 0x90 0x1e 0xb1 0xf8 0xa0 0x1f 0xa1 0xdb 0x90 0x20 0x76
            0x2b 0x20 0x21 0x81 0xbd 0x90 0x22 0x56 0x0d 0x20 0x23 0x6a 0xda
            0x10 0x24 0x35 0xef 0x20 0x25 0x4a 0xbc 0x10 0x26 0x15 0xd1 0x20
            0x27 0x2a 0x9e 0x10 0x27 0xfe 0xed 0xa0 0x29 0x0a 0x80 0x10 0x29
            0xde 0xcf 0xa0 0x2a 0xea 0x62 0x10 0x2b 0xbe 0xb1 0xa0 0x2c 0xd3
            0x7e 0x90 0x2d 0x9e 0x93 0xa0 0x2e 0xb3 0x60 0x90 0x2f 0x7e 0x75
            0xa0 0x30 0x93 0x42 0x90 0x31 0x67 0x92 0x20 0x32 0x73 0x24 0x90
            0x33 0x47 0x74 0x20 0x34 0x53 0x06 0x90 0x35 0x27 0x56 0x20 0x36
            0x32 0xe8 0x90 0x37 0x07 0x38 0x20 0x38 0x1c 0x05 0x10 0x38 0xe7
            0x1a 0x20 0x39 0xfb 0xe7 0x10 0x3a 0xc6 0xfc 0x20 0x3b 0xdb 0xc9
            0x10 0x3c 0xb0 0x18 0xa0 0x3d 0xbb 0xab 0x10 0x3e 0x8f 0xfa 0xa0
            0x3f 0x9b 0x8d 0x10 0x40 0x6f 0xdc 0xa0 0x41 0x84 0xa9 0x90 0x42
            0x4f 0xbe 0xa0 0x43 0x64 0x8b 0x90 0x44 0x2f 0xa0 0xa0 0x45 0x44
            0x6d 0x90 0x46 0x0f 0x82 0xa0 0x47 0x24 0x4f 0x90 0x47 0xf8 0x9f
            0x20 0x49 0x04 0x31 0x90 0x49 0xd8 0x81 0x20 0x4a 0xe4 0x13 0x90
            0x4b 0xb8 0x63 0x20 0x4c 0xcd 0x30 0x10 0x4d 0x98 0x45 0x20 0x4e
            0xad 0x12 0x10 0x4f 0x78 0x27 0x20 0x50 0x8c 0xf4 0x10 0x51 0x61
            0x43 0xa0 0x52 0x6c 0xd6 0x10 0x53 0x41 0x25 0xa0 0x54 0x4c 0xb8
            0x10 0x55 0x21 0x07 0xa0 0x56 0x2c 0x9a 0x10 0x57 0x00 0xe9 0xa0
            0x58 0x15 0xb6 0x90 0x58 0xe0 0xcb 0xa0 0x59 0xf5 0x98 0x90 0x5a
            0xc0 0xad 0xa0 0x5b 0xd5 0x7a 0x90 0x5c 0xa9 0xca 0x20 0x5d 0xb5
            0x5c 0x90 0x5e 0x89 0xac 0x20 0x5f 0x95 0x3e 0x90 0x60 0x69 0x8e
            0x20 0x61 0x7e 0x5b 0x10 0x62 0x49 0x70 0x20 0x63 0x5e 0x3d 0x10
            0x64 0x29 0x52 0x20 0x65 0x3e 0x1f 0x10 0x66 0x12 0x6e 0xa0 0x67
            0x1e 0x01 0x10 0x67 0xf2 0x50 0xa0 0x68 0xfd 0xe3 0x10 0x69 0xd2
            0x32 0xa0 0x6a 0xdd 0xc5 0x10 0x6b 0xb2 0x14 0xa0 0x6c 0xc6 0xe1
            0x90 0x6d 0x91 0xf6 0xa0 0x6e 0xa6 0xc3 0x90 0x6f 0x71 0xd8 0xa0
            0x70 0x86 0xa5 0x90 0x71 0x5a 0xf5 0x20 0x72 0x66 0x87 0x90 0x73
            0x3a 0xd7 0x20 0x74 0x46 0x69 0x90 0x75 0x1a 0xb9 0x20 0x76 0x2f
            0x86 0x10 0x76 0xfa 0x9b 0x20 0x78 0x0f 0x68 0x10 0x78 0xda 0x7d
            0x20 0x79 0xef 0x4a 0x10 0x7a 0xba 0x5f 0x20 0x7b 0xcf 0x2c 0x10
            0x7c 0xa3 0x7b 0xa0 0x7d 0xaf 0x0e 0x10 0x7e 0x83 0x5d 0xa0 0x7f
            0x8e 0xf0 0x10 0x01 0x02 0x01 0x02 0x03 0x02 0x04 0x05 0x02 0x03
            0x02 0x03 0x02 0x03 0x02 0x03 0x02 0x03 0x02 0x03 0x02 0x03 0x02
            0x03 0x02 0x03 0x02 0x03 0x02 0x03 0x02 0x03 0x02 0x03 0x02 0x03
            0x02 0x03 0x02 0x03 0x02 0x03 0x02 0x03 0x02 0x03 0x02 0x03 0x02
            0x03 0x02 0x03 0x02 0x03 0x02 0x03 0x02 0x03 0x02 0x03 0x02 0x03
            0x02 0x03 0x02 0x03 0x02 0x03 0x02 0x03 0x02 0x03 0x02 0x03 0x02
            0x03 0x02 0x03 0x02 0x03 0x02 0x03 0x02 0x03 0x02 0x03 0x02 0x03
            0x02 0x03 0x02 0x03 0x02 0x03 0x02 0x03 0x02 0x03 0x02 0x03 0x02
            0x03 0x02 0x03 0x02 0x03 0x02 0x03 0x02 0x03 0x02 0x03 0x02 0x03
            0x02 0x03 0x02 0x03 0x02 0x03 0x02 0x03 0x02 0x03 0x02 0x03 0x02
            0x03 0x02 0x03 0x02 0x03 0x02 0x03 0x02 0x03 0x02 0x03 0x02 0x03
            0x02 0x03 0x02 0x03 0x02 0x03 0x02 0x03 0x02 0xff 0xff 0x92 0x4c
            0x00 0x00 0xff 0xff 0x9d 0x90 0x00 0x04 0xff 0xff 0x8f 0x80 0x00
            0x08 0xff 0xff 0x9d 0x90 0x01 0x0c 0xff 0xff 0x9d 0x90 0x01 0x10
            0xff 0xff 0x9d 0x90 0x01 0x14 0x4c 0x4d 0x54 0x00 0x4d 0x53 0x54
            0x00 0x50 0x53 0x54 0x00 0x50 0x44 0x54 0x00 0x50 0x57 0x54 0x00
            0x50 0x50 0x54 0x00 0x00 0x00 0x00 0x00 0x00 0x01 0x00 0x00 0x00
            0x00 0x00 0x01 0x54 0x5a 0x69 0x66 0x32 0x00 0x00 0x00 0x00 0x00
            0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00
            0x06 0x00 0x00 0x00 0x06 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x95
            0x00 0x00 0x00 0x06 0x00 0x00 0x00 0x18 0xff 0xff 0xff 0xff 0xa5
            0xb6 0xf6 0x80 0xff 0xff 0xff 0xff 0xa9 0x79 0x4f 0x70 0xff 0xff
            0xff 0xff 0xaf 0xf2 0x7c 0xf0 0xff 0xff 0xff 0xff 0xb6 0x66 0x64
            0x70 0xff 0xff 0xff 0xff 0xb7 0x1b 0x10 0x00 0xff 0xff 0xff 0xff
            0xb8 0x0a 0xf2 0xf0 0xff 0xff 0xff 0xff 0xcb 0xea 0x8d 0x80 0xff
            0xff 0xff 0xff 0xd2 0x23 0xf4 0x70 0xff 0xff 0xff 0xff 0xd2 0x99
            0xba 0x70 0xff 0xff 0xff 0xff 0xd7 0x1b 0x59 0x00 0xff 0xff 0xff
            0xff 0xd8 0x91 0xb4 0xf0 0xff 0xff 0xff 0xff 0xe2 0x7e 0x59 0xa0
            0xff 0xff 0xff 0xff 0xe3 0x49 0x52 0x90 0xff 0xff 0xff 0xff 0xe4
            0x5e 0x3b 0xa0 0xff 0xff 0xff 0xff 0xe5 0x29 0x34 0x90 0xff 0xff
            0xff 0xff 0xe6 0x47 0x58 0x20 0xff 0xff 0xff 0xff 0xe7 0x12 0x51
            0x10 0xff 0xff 0xff 0xff 0xe8 0x27 0x3a 0x20 0xff 0xff 0xff 0xff
            0xe8 0xf2 0x33 0x10 0xff 0xff 0xff 0xff 0xea 0x07 0x1c 0x20 0xff
            0xff 0xff 0xff 0xea 0xd2 0x15 0x10 0xff 0xff 0xff 0xff 0xeb 0xe6
            0xfe 0x20 0xff 0xff 0xff 0xff 0xec 0xb1 0xf7 0x10 0xff 0xff 0xff
            0xff 0xed 0xc6 0xe0 0x20 0xff 0xff 0xff 0xff 0xee 0x91 0xd9 0x10
            0x00 0x00 0x00 0x00 0x0b 0xe0 0xaf 0xa0 0x00 0x00 0x00 0x00 0x0c
            0xd9 0xcd 0x10 0x00 0x00 0x00 0x00 0x0d 0xc0 0x91 0xa0 0x00 0x00
            0x00 0x00 0x0e 0xb9 0xaf 0x10 0x00 0x00 0x00 0x00 0x0f 0xa9 0xae
            0x20 0x00 0x00 0x00 0x00 0x10 0x99 0x91 0x10 0x00 0x00 0x00 0x00
            0x11 0x89 0x90 0x20 0x00 0x00 0x00 0x00 0x12 0x79 0x73 0x10 0x00
            0x00 0x00 0x00 0x13 0x69 0x72 0x20 0x00 0x00 0x00 0x00 0x14 0x59
            0x55 0x10 0x00 0x00 0x00 0x00 0x15 0x49 0x54 0x20 0x00 0x00 0x00
            0x00 0x16 0x39 0x37 0x10 0x00 0x00 0x00 0x00 0x17 0x29 0x36 0x20
            0x00 0x00 0x00 0x00 0x18 0x22 0x53 0x90 0x00 0x00 0x00 0x00 0x19
            0x09 0x18 0x20 0x00 0x00 0x00 0x00 0x1a 0x02 0x35 0x90 0x00 0x00
            0x00 0x00 0x1a 0xf2 0x34 0xa0 0x00 0x00 0x00 0x00 0x1b 0xe2 0x17
            0x90 0x00 0x00 0x00 0x00 0x1c 0xd2 0x16 0xa0 0x00 0x00 0x00 0x00
            0x1d 0xc1 0xf9 0x90 0x00 0x00 0x00 0x00 0x1e 0xb1 0xf8 0xa0 0x00
            0x00 0x00 0x00 0x1f 0xa1 0xdb 0x90 0x00 0x00 0x00 0x00 0x20 0x76
            0x2b 0x20 0x00 0x00 0x00 0x00 0x21 0x81 0xbd 0x90 0x00 0x00 0x00
            0x00 0x22 0x56 0x0d 0x20 0x00 0x00 0x00 0x00 0x23 0x6a 0xda 0x10
            0x00 0x00 0x00 0x00 0x24 0x35 0xef 0x20 0x00 0x00 0x00 0x00 0x25
            0x4a 0xbc 0x10 0x00 0x00 0x00 0x00 0x26 0x15 0xd1 0x20 0x00 0x00
            0x00 0x00 0x27 0x2a 0x9e 0x10 0x00 0x00 0x00 0x00 0x27 0xfe 0xed
            0xa0 0x00 0x00 0x00 0x00 0x29 0x0a 0x80 0x10 0x00 0x00 0x00 0x00
            0x29 0xde 0xcf 0xa0 0x00 0x00 0x00 0x00 0x2a 0xea 0x62 0x10 0x00
            0x00 0x00 0x00 0x2b 0xbe 0xb1 0xa0 0x00 0x00 0x00 0x00 0x2c 0xd3
            0x7e 0x90 0x00 0x00 0x00 0x00 0x2d 0x9e 0x93 0xa0 0x00 0x00 0x00
            0x00 0x2e 0xb3 0x60 0x90 0x00 0x00 0x00 0x00 0x2f 0x7e 0x75 0xa0
            0x00 0x00 0x00 0x00 0x30 0x93 0x42 0x90 0x00 0x00 0x00 0x00 0x31
            0x67 0x92 0x20 0x00 0x00 0x00 0x00 0x32 0x73 0x24 0x90 0x00 0x00
            0x00 0x00 0x33 0x47 0x74 0x20 0x00 0x00 0x00 0x00 0x34 0x53 0x06
            0x90 0x00 0x00 0x00 0x00 0x35 0x27 0x56 0x20 0x00 0x00 0x00 0x00
            0x36 0x32 0xe8 0x90 0x00 0x00 0x00 0x00 0x37 0x07 0x38 0x20 0x00
            0x00 0x00 0x00 0x38 0x1c 0x05 0x10 0x00 0x00 0x00 0x00 0x38 0xe7
            0x1a 0x20 0x00 0x00 0x00 0x00 0x39 0xfb 0xe7 0x10 0x00 0x00 0x00
            0x00 0x3a 0xc6 0xfc 0x20 0x00 0x00 0x00 0x00 0x3b 0xdb 0xc9 0x10
            0x00 0x00 0x00 0x00 0x3c 0xb0 0x18 0xa0 0x00 0x00 0x00 0x00 0x3d
            0xbb 0xab 0x10 0x00 0x00 0x00 0x00 0x3e 0x8f 0xfa 0xa0 0x00 0x00
            0x00 0x00 0x3f 0x9b 0x8d 0x10 0x00 0x00 0x00 0x00 0x40 0x6f 0xdc
            0xa0 0x00 0x00 0x00 0x00 0x41 0x84 0xa9 0x90 0x00 0x00 0x00 0x00
            0x42 0x4f 0xbe 0xa0 0x00 0x00 0x00 0x00 0x43 0x64 0x8b 0x90 0x00
            0x00 0x00 0x00 0x44 0x2f 0xa0 0xa0 0x00 0x00 0x00 0x00 0x45 0x44
            0x6d 0x90 0x00 0x00 0x00 0x00 0x46 0x0f 0x82 0xa0 0x00 0x00 0x00
            0x00 0x47 0x24 0x4f 0x90 0x00 0x00 0x00 0x00 0x47 0xf8 0x9f 0x20
            0x00 0x00 0x00 0x00 0x49 0x04 0x31 0x90 0x00 0x00 0x00 0x00 0x49
            0xd8 0x81 0x20 0x00 0x00 0x00 0x00 0x4a 0xe4 0x13 0x90 0x00 0x00
            0x00 0x00 0x4b 0xb8 0x63 0x20 0x00 0x00 0x00 0x00 0x4c 0xcd 0x30
            0x10 0x00 0x00 0x00 0x00 0x4d 0x98 0x45 0x20 0x00 0x00 0x00 0x00
            0x4e 0xad 0x12 0x10 0x00 0x00 0x00 0x00 0x4f 0x78 0x27 0x20 0x00
            0x00 0x00 0x00 0x50 0x8c 0xf4 0x10 0x00 0x00 0x00 0x00 0x51 0x61
            0x43 0xa0 0x00 0x00 0x00 0x00 0x52 0x6c 0xd6 0x10 0x00 0x00 0x00
            0x00 0x53 0x41 0x25 0xa0 0x00 0x00 0x00 0x00 0x54 0x4c 0xb8 0x10
            0x00 0x00 0x00 0x00 0x55 0x21 0x07 0xa0 0x00 0x00 0x00 0x00 0x56
            0x2c 0x9a 0x10 0x00 0x00 0x00 0x00 0x57 0x00 0xe9 0xa0 0x00 0x00
            0x00 0x00 0x58 0x15 0xb6 0x90 0x00 0x00 0x00 0x00 0x58 0xe0 0xcb
            0xa0 0x00 0x00 0x00 0x00 0x59 0xf5 0x98 0x90 0x00 0x00 0x00 0x00
            0x5a 0xc0 0xad 0xa0 0x00 0x00 0x00 0x00 0x5b 0xd5 0x7a 0x90 0x00
            0x00 0x00 0x00 0x5c 0xa9 0xca 0x20 0x00 0x00 0x00 0x00 0x5d 0xb5
            0x5c 0x90 0x00 0x00 0x00 0x00 0x5e 0x89 0xac 0x20 0x00 0x00 0x00
            0x00 0x5f 0x95 0x3e 0x90 0x00 0x00 0x00 0x00 0x60 0x69 0x8e 0x20
            0x00 0x00 0x00 0x00 0x61 0x7e 0x5b 0x10 0x00 0x00 0x00 0x00 0x62
            0x49 0x70 0x20 0x00 0x00 0x00 0x00 0x63 0x5e 0x3d 0x10 0x00 0x00
            0x00 0x00 0x64 0x29 0x52 0x20 0x00 0x00 0x00 0x00 0x65 0x3e 0x1f
            0x10 0x00 0x00 0x00 0x00 0x66 0x12 0x6e 0xa0 0x00 0x00 0x00 0x00
            0x67 0x1e 0x01 0x10 0x00 0x00 0x00 0x00 0x67 0xf2 0x50 0xa0 0x00
            0x00 0x00 0x00 0x68 0xfd 0xe3 0x10 0x00 0x00 0x00 0x00 0x69 0xd2
            0x32 0xa0 0x00 0x00 0x00 0x00 0x6a 0xdd 0xc5 0x10 0x00 0x00 0x00
            0x00 0x6b 0xb2 0x14 0xa0 0x00 0x00 0x00 0x00 0x6c 0xc6 0xe1 0x90
            0x00 0x00 0x00 0x00 0x6d 0x91 0xf6 0xa0 0x00 0x00 0x00 0x00 0x6e
            0xa6 0xc3 0x90 0x00 0x00 0x00 0x00 0x6f 0x71 0xd8 0xa0 0x00 0x00
            0x00 0x00 0x70 0x86 0xa5 0x90 0x00 0x00 0x00 0x00 0x71 0x5a 0xf5
            0x20 0x00 0x00 0x00 0x00 0x72 0x66 0x87 0x90 0x00 0x00 0x00 0x00
            0x73 0x3a 0xd7 0x20 0x00 0x00 0x00 0x00 0x74 0x46 0x69 0x90 0x00
            0x00 0x00 0x00 0x75 0x1a 0xb9 0x20 0x00 0x00 0x00 0x00 0x76 0x2f
            0x86 0x10 0x00 0x00 0x00 0x00 0x76 0xfa 0x9b 0x20 0x00 0x00 0x00
            0x00 0x78 0x0f 0x68 0x10 0x00 0x00 0x00 0x00 0x78 0xda 0x7d 0x20
            0x00 0x00 0x00 0x00 0x79 0xef 0x4a 0x10 0x00 0x00 0x00 0x00 0x7a
            0xba 0x5f 0x20 0x00 0x00 0x00 0x00 0x7b 0xcf 0x2c 0x10 0x00 0x00
            0x00 0x00 0x7c 0xa3 0x7b 0xa0 0x00 0x00 0x00 0x00 0x7d 0xaf 0x0e
            0x10 0x00 0x00 0x00 0x00 0x7e 0x83 0x5d 0xa0 0x00 0x00 0x00 0x00
            0x7f 0x8e 0xf0 0x10 0x01 0x02 0x01 0x02 0x03 0x02 0x04 0x05 0x02
            0x03 0x02 0x03 0x02 0x03 0x02 0x03 0x02 0x03 0x02 0x03 0x02 0x03
            0x02 0x03 0x02 0x03 0x02 0x03 0x02 0x03 0x02 0x03 0x02 0x03 0x02
            0x03 0x02 0x03 0x02 0x03 0x02 0x03 0x02 0x03 0x02 0x03 0x02 0x03
            0x02 0x03 0x02 0x03 0x02 0x03 0x02 0x03 0x02 0x03 0x02 0x03 0x02
            0x03 0x02 0x03 0x02 0x03 0x02 0x03 0x02 0x03 0x02 0x03 0x02 0x03
            0x02 0x03 0x02 0x03 0x02 0x03 0x02 0x03 0x02 0x03 0x02 0x03 0x02
            0x03 0x02 0x03 0x02 0x03 0x02 0x03 0x02 0x03 0x02 0x03 0x02 0x03
            0x02 0x03 0x02 0x03 0x02 0x03 0x02 0x03 0x02 0x03 0x02 0x03 0x02
            0x03 0x02 0x03 0x02 0x03 0x02 0x03 0x02 0x03 0x02 0x03 0x02 0x03
            0x02 0x03 0x02 0x03 0x02 0x03 0x02 0x03 0x02 0x03 0x02 0x03 0x02
            0x03 0x02 0x03 0x02 0x03 0x02 0x03 0x02 0x03 0x02 0xff 0xff 0x92
            0x4c 0x00 0x00 0xff 0xff 0x9d 0x90 0x00 0x04 0xff 0xff 0x8f 0x80
            0x00 0x08 0xff 0xff 0x9d 0x90 0x01 0x0c 0xff 0xff 0x9d 0x90 0x01
            0x10 0xff 0xff 0x9d 0x90 0x01 0x14 0x4c 0x4d 0x54 0x00 0x4d 0x53
            0x54 0x00 0x50 0x53 0x54 0x00 0x50 0x44 0x54 0x00 0x50 0x57 0x54
            0x00 0x50 0x50 0x54 0x00 0x00 0x00 0x00 0x00 0x00 0x01 0x00 0x00
            0x00 0x00 0x00 0x01 0x0a 0x50 0x53 0x54 0x38 0x50 0x44 0x54 0x2c
            0x4d 0x34 0x2e 0x31 0x2e 0x30 0x2c 0x4d 0x31 0x30 0x2e 0x35 0x2e
            0x30 0x0a
	}]
	close $f
	set ::tcl::clock::ZoneinfoPaths \
	    [linsert $::tcl::clock::ZoneinfoPaths 0 $tzdir]
	::tcl::clock::ClearCaches
    }
    -cleanup {
	set ::tcl::clock::ZoneinfoPaths \
	    [lrange $::tcl::clock::ZoneinfoPaths 1 end]
	::tcl::clock::ClearCaches
	removeFile TijuanaTwo $tzdir2
	removeDirectory Test $tzdir
	removeDirectory zoneinfo
    } 
    -body {
	clock format 2224738800 -timezone :Test/TijuanaTwo \
	    -format {%Y-%m-%d %H:%M:%S %Z}
    }
    -result {2040-07-01 00:00:00 PDT}
}

test clock-56.4 {Bug 3470928} {*}{
    -setup {
	clock format [clock seconds]
	set tzdir [makeDirectory zoneinfo]
	set tzdir2 [makeDirectory Test $tzdir]
	set tzfile [makeFile {} Windhoek $tzdir2]
	set f [open $tzfile wb]
	puts -nonewline $f [binary format c* {
            0x54 0x5a 0x69 0x66 0x32 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00
            0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x06 0x00 0x00
            0x00 0x06 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x5c 0x00 0x00 0x00
            0x06 0x00 0x00 0x00 0x13 0x82 0x46 0xcf 0x68 0xcc 0xae 0x8c 0x80
            0xcd 0x9e 0x6f 0x70 0x26 0x06 0xa7 0xe0 0x2d 0x9d 0xea 0xe0 0x2e
            0x69 0x1c 0x10 0x2f 0x7d 0xe9 0x00 0x30 0x48 0xfe 0x10 0x31 0x67
            0x05 0x80 0x32 0x28 0xe0 0x10 0x33 0x46 0xe7 0x80 0x34 0x11 0xfc
            0x90 0x35 0x26 0xc9 0x80 0x35 0xf1 0xde 0x90 0x37 0x06 0xab 0x80
            0x37 0xd1 0xc0 0x90 0x38 0xe6 0x8d 0x80 0x39 0xb1 0xa2 0x90 0x3a
            0xc6 0x6f 0x80 0x3b 0x91 0x84 0x90 0x3c 0xaf 0x8c 0x00 0x3d 0x71
            0x66 0x90 0x3e 0x8f 0x6e 0x00 0x3f 0x5a 0x83 0x10 0x40 0x6f 0x50
            0x00 0x41 0x3a 0x65 0x10 0x42 0x4f 0x32 0x00 0x43 0x1a 0x47 0x10
            0x44 0x2f 0x14 0x00 0x44 0xfa 0x29 0x10 0x46 0x0e 0xf6 0x00 0x46
            0xda 0x0b 0x10 0x47 0xf8 0x12 0x80 0x48 0xc3 0x27 0x90 0x49 0xd7
            0xf4 0x80 0x4a 0xa3 0x09 0x90 0x4b 0xb7 0xd6 0x80 0x4c 0x82 0xeb
            0x90 0x4d 0x97 0xb8 0x80 0x4e 0x62 0xcd 0x90 0x4f 0x77 0x9a 0x80
            0x50 0x42 0xaf 0x90 0x51 0x60 0xb7 0x00 0x52 0x22 0x91 0x90 0x53
            0x40 0x99 0x00 0x54 0x0b 0xae 0x10 0x55 0x20 0x7b 0x00 0x55 0xeb
            0x90 0x10 0x57 0x00 0x5d 0x00 0x57 0xcb 0x72 0x10 0x58 0xe0 0x3f
            0x00 0x59 0xab 0x54 0x10 0x5a 0xc0 0x21 0x00 0x5b 0x8b 0x36 0x10
            0x5c 0xa9 0x3d 0x80 0x5d 0x6b 0x18 0x10 0x5e 0x89 0x1f 0x80 0x5f
            0x54 0x34 0x90 0x60 0x69 0x01 0x80 0x61 0x34 0x16 0x90 0x62 0x48
            0xe3 0x80 0x63 0x13 0xf8 0x90 0x64 0x28 0xc5 0x80 0x64 0xf3 0xda
            0x90 0x66 0x11 0xe2 0x00 0x66 0xd3 0xbc 0x90 0x67 0xf1 0xc4 0x00
            0x68 0xbc 0xd9 0x10 0x69 0xd1 0xa6 0x00 0x6a 0x9c 0xbb 0x10 0x6b
            0xb1 0x88 0x00 0x6c 0x7c 0x9d 0x10 0x6d 0x91 0x6a 0x00 0x6e 0x5c
            0x7f 0x10 0x6f 0x71 0x4c 0x00 0x70 0x3c 0x61 0x10 0x71 0x5a 0x68
            0x80 0x72 0x1c 0x43 0x10 0x73 0x3a 0x4a 0x80 0x74 0x05 0x5f 0x90
            0x75 0x1a 0x2c 0x80 0x75 0xe5 0x41 0x90 0x76 0xfa 0x0e 0x80 0x77
            0xc5 0x23 0x90 0x78 0xd9 0xf0 0x80 0x79 0xa5 0x05 0x90 0x7a 0xb9
            0xd2 0x80 0x7b 0x84 0xe7 0x90 0x7c 0xa2 0xef 0x00 0x7d 0x6e 0x04
            0x10 0x7e 0x82 0xd1 0x00 0x7f 0x4d 0xe6 0x10 0x01 0x02 0x01 0x03
            0x05 0x04 0x05 0x04 0x05 0x04 0x05 0x04 0x05 0x04 0x05 0x04 0x05
            0x04 0x05 0x04 0x05 0x04 0x05 0x04 0x05 0x04 0x05 0x04 0x05 0x04
            0x05 0x04 0x05 0x04 0x05 0x04 0x05 0x04 0x05 0x04 0x05 0x04 0x05
            0x04 0x05 0x04 0x05 0x04 0x05 0x04 0x05 0x04 0x05 0x04 0x05 0x04
            0x05 0x04 0x05 0x04 0x05 0x04 0x05 0x04 0x05 0x04 0x05 0x04 0x05
            0x04 0x05 0x04 0x05 0x04 0x05 0x04 0x05 0x04 0x05 0x04 0x05 0x04
            0x05 0x04 0x05 0x04 0x05 0x04 0x05 0x04 0x05 0x04 0x00 0x00 0x15
            0x18 0x00 0x00 0x00 0x00 0x1c 0x20 0x00 0x05 0x00 0x00 0x2a 0x30
            0x01 0x05 0x00 0x00 0x1c 0x20 0x00 0x0a 0x00 0x00 0x1c 0x20 0x01
            0x0e 0x00 0x00 0x0e 0x10 0x00 0x01 0x53 0x57 0x41 0x54 0x00 0x53
            0x41 0x53 0x54 0x00 0x43 0x41 0x54 0x00 0x57 0x41 0x53 0x54 0x00
            0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x54
            0x5a 0x69 0x66 0x32 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00
            0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x07 0x00 0x00 0x00
            0x07 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x5d 0x00 0x00 0x00 0x07
            0x00 0x00 0x00 0x17 0xff 0xff 0xff 0xff 0x6d 0x7b 0x4b 0x78 0xff
            0xff 0xff 0xff 0x82 0x46 0xcf 0x68 0xff 0xff 0xff 0xff 0xcc 0xae
            0x8c 0x80 0xff 0xff 0xff 0xff 0xcd 0x9e 0x6f 0x70 0x00 0x00 0x00
            0x00 0x26 0x06 0xa7 0xe0 0x00 0x00 0x00 0x00 0x2d 0x9d 0xea 0xe0
            0x00 0x00 0x00 0x00 0x2e 0x69 0x1c 0x10 0x00 0x00 0x00 0x00 0x2f
            0x7d 0xe9 0x00 0x00 0x00 0x00 0x00 0x30 0x48 0xfe 0x10 0x00 0x00
            0x00 0x00 0x31 0x67 0x05 0x80 0x00 0x00 0x00 0x00 0x32 0x28 0xe0
            0x10 0x00 0x00 0x00 0x00 0x33 0x46 0xe7 0x80 0x00 0x00 0x00 0x00
            0x34 0x11 0xfc 0x90 0x00 0x00 0x00 0x00 0x35 0x26 0xc9 0x80 0x00
            0x00 0x00 0x00 0x35 0xf1 0xde 0x90 0x00 0x00 0x00 0x00 0x37 0x06
            0xab 0x80 0x00 0x00 0x00 0x00 0x37 0xd1 0xc0 0x90 0x00 0x00 0x00
            0x00 0x38 0xe6 0x8d 0x80 0x00 0x00 0x00 0x00 0x39 0xb1 0xa2 0x90
            0x00 0x00 0x00 0x00 0x3a 0xc6 0x6f 0x80 0x00 0x00 0x00 0x00 0x3b
            0x91 0x84 0x90 0x00 0x00 0x00 0x00 0x3c 0xaf 0x8c 0x00 0x00 0x00
            0x00 0x00 0x3d 0x71 0x66 0x90 0x00 0x00 0x00 0x00 0x3e 0x8f 0x6e
            0x00 0x00 0x00 0x00 0x00 0x3f 0x5a 0x83 0x10 0x00 0x00 0x00 0x00
            0x40 0x6f 0x50 0x00 0x00 0x00 0x00 0x00 0x41 0x3a 0x65 0x10 0x00
            0x00 0x00 0x00 0x42 0x4f 0x32 0x00 0x00 0x00 0x00 0x00 0x43 0x1a
            0x47 0x10 0x00 0x00 0x00 0x00 0x44 0x2f 0x14 0x00 0x00 0x00 0x00
            0x00 0x44 0xfa 0x29 0x10 0x00 0x00 0x00 0x00 0x46 0x0e 0xf6 0x00
            0x00 0x00 0x00 0x00 0x46 0xda 0x0b 0x10 0x00 0x00 0x00 0x00 0x47
            0xf8 0x12 0x80 0x00 0x00 0x00 0x00 0x48 0xc3 0x27 0x90 0x00 0x00
            0x00 0x00 0x49 0xd7 0xf4 0x80 0x00 0x00 0x00 0x00 0x4a 0xa3 0x09
            0x90 0x00 0x00 0x00 0x00 0x4b 0xb7 0xd6 0x80 0x00 0x00 0x00 0x00
            0x4c 0x82 0xeb 0x90 0x00 0x00 0x00 0x00 0x4d 0x97 0xb8 0x80 0x00
            0x00 0x00 0x00 0x4e 0x62 0xcd 0x90 0x00 0x00 0x00 0x00 0x4f 0x77
            0x9a 0x80 0x00 0x00 0x00 0x00 0x50 0x42 0xaf 0x90 0x00 0x00 0x00
            0x00 0x51 0x60 0xb7 0x00 0x00 0x00 0x00 0x00 0x52 0x22 0x91 0x90
            0x00 0x00 0x00 0x00 0x53 0x40 0x99 0x00 0x00 0x00 0x00 0x00 0x54
            0x0b 0xae 0x10 0x00 0x00 0x00 0x00 0x55 0x20 0x7b 0x00 0x00 0x00
            0x00 0x00 0x55 0xeb 0x90 0x10 0x00 0x00 0x00 0x00 0x57 0x00 0x5d
            0x00 0x00 0x00 0x00 0x00 0x57 0xcb 0x72 0x10 0x00 0x00 0x00 0x00
            0x58 0xe0 0x3f 0x00 0x00 0x00 0x00 0x00 0x59 0xab 0x54 0x10 0x00
            0x00 0x00 0x00 0x5a 0xc0 0x21 0x00 0x00 0x00 0x00 0x00 0x5b 0x8b
            0x36 0x10 0x00 0x00 0x00 0x00 0x5c 0xa9 0x3d 0x80 0x00 0x00 0x00
            0x00 0x5d 0x6b 0x18 0x10 0x00 0x00 0x00 0x00 0x5e 0x89 0x1f 0x80
            0x00 0x00 0x00 0x00 0x5f 0x54 0x34 0x90 0x00 0x00 0x00 0x00 0x60
            0x69 0x01 0x80 0x00 0x00 0x00 0x00 0x61 0x34 0x16 0x90 0x00 0x00
            0x00 0x00 0x62 0x48 0xe3 0x80 0x00 0x00 0x00 0x00 0x63 0x13 0xf8
            0x90 0x00 0x00 0x00 0x00 0x64 0x28 0xc5 0x80 0x00 0x00 0x00 0x00
            0x64 0xf3 0xda 0x90 0x00 0x00 0x00 0x00 0x66 0x11 0xe2 0x00 0x00
            0x00 0x00 0x00 0x66 0xd3 0xbc 0x90 0x00 0x00 0x00 0x00 0x67 0xf1
            0xc4 0x00 0x00 0x00 0x00 0x00 0x68 0xbc 0xd9 0x10 0x00 0x00 0x00
            0x00 0x69 0xd1 0xa6 0x00 0x00 0x00 0x00 0x00 0x6a 0x9c 0xbb 0x10
            0x00 0x00 0x00 0x00 0x6b 0xb1 0x88 0x00 0x00 0x00 0x00 0x00 0x6c
            0x7c 0x9d 0x10 0x00 0x00 0x00 0x00 0x6d 0x91 0x6a 0x00 0x00 0x00
            0x00 0x00 0x6e 0x5c 0x7f 0x10 0x00 0x00 0x00 0x00 0x6f 0x71 0x4c
            0x00 0x00 0x00 0x00 0x00 0x70 0x3c 0x61 0x10 0x00 0x00 0x00 0x00
            0x71 0x5a 0x68 0x80 0x00 0x00 0x00 0x00 0x72 0x1c 0x43 0x10 0x00
            0x00 0x00 0x00 0x73 0x3a 0x4a 0x80 0x00 0x00 0x00 0x00 0x74 0x05
            0x5f 0x90 0x00 0x00 0x00 0x00 0x75 0x1a 0x2c 0x80 0x00 0x00 0x00
            0x00 0x75 0xe5 0x41 0x90 0x00 0x00 0x00 0x00 0x76 0xfa 0x0e 0x80
            0x00 0x00 0x00 0x00 0x77 0xc5 0x23 0x90 0x00 0x00 0x00 0x00 0x78
            0xd9 0xf0 0x80 0x00 0x00 0x00 0x00 0x79 0xa5 0x05 0x90 0x00 0x00
            0x00 0x00 0x7a 0xb9 0xd2 0x80 0x00 0x00 0x00 0x00 0x7b 0x84 0xe7
            0x90 0x00 0x00 0x00 0x00 0x7c 0xa2 0xef 0x00 0x00 0x00 0x00 0x00
            0x7d 0x6e 0x04 0x10 0x00 0x00 0x00 0x00 0x7e 0x82 0xd1 0x00 0x00
            0x00 0x00 0x00 0x7f 0x4d 0xe6 0x10 0x01 0x02 0x03 0x02 0x04 0x06
            0x05 0x06 0x05 0x06 0x05 0x06 0x05 0x06 0x05 0x06 0x05 0x06 0x05
            0x06 0x05 0x06 0x05 0x06 0x05 0x06 0x05 0x06 0x05 0x06 0x05 0x06
            0x05 0x06 0x05 0x06 0x05 0x06 0x05 0x06 0x05 0x06 0x05 0x06 0x05
            0x06 0x05 0x06 0x05 0x06 0x05 0x06 0x05 0x06 0x05 0x06 0x05 0x06
            0x05 0x06 0x05 0x06 0x05 0x06 0x05 0x06 0x05 0x06 0x05 0x06 0x05
            0x06 0x05 0x06 0x05 0x06 0x05 0x06 0x05 0x06 0x05 0x06 0x05 0x06
            0x05 0x06 0x05 0x06 0x05 0x06 0x05 0x06 0x05 0x00 0x00 0x10 0x08
            0x00 0x00 0x00 0x00 0x15 0x18 0x00 0x04 0x00 0x00 0x1c 0x20 0x00
            0x09 0x00 0x00 0x2a 0x30 0x01 0x09 0x00 0x00 0x1c 0x20 0x00 0x0e
            0x00 0x00 0x1c 0x20 0x01 0x12 0x00 0x00 0x0e 0x10 0x00 0x05 0x4c
            0x4d 0x54 0x00 0x53 0x57 0x41 0x54 0x00 0x53 0x41 0x53 0x54 0x00
            0x43 0x41 0x54 0x00 0x57 0x41 0x53 0x54 0x00 0x00 0x00 0x00 0x00
            0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x0a 0x57 0x41
            0x54 0x2d 0x31 0x57 0x41 0x53 0x54 0x2c 0x4d 0x39 0x2e 0x31 0x2e
            0x30 0x2c 0x4d 0x34 0x2e 0x31 0x2e 0x30 0x0a
	}]
	close $f
	set ::tcl::clock::ZoneinfoPaths \
	    [linsert $::tcl::clock::ZoneinfoPaths 0 $tzdir]
	::tcl::clock::ClearCaches
    }
    -body {
	clock format 1326054606 -timezone :Test/Windhoek
    }
    -cleanup {
	set ::tcl::clock::ZoneinfoPaths \
	    [lrange $::tcl::clock::ZoneinfoPaths 1 end]
	::tcl::clock::ClearCaches
	removeFile Windhoek $tzdir2
	removeDirectory Test $tzdir
	removeDirectory zoneinfo
    } 
    -result {Sun Jan 08 22:30:06 WAST 2012}
}

test clock-57.1 {clock scan - abbreviated options} {
    clock scan 1970-01-01 -f %Y-%m-%d -g true
} 0

test clock-58.1 {clock l10n - Japanese localisation} {*}{
    -setup {
	proc backslashify { string } {
	    
	    set retval {}
	    foreach char [split $string {}] {
		scan $char %c ccode
		if { $ccode >= 0x0020 && $ccode < 0x007f
		     && $char ne "\{" && $char ne "\}" && $char ne "\["
		     && $char ne "\]" && $char ne "\\" && $char ne "\$" } {
		    append retval $char
		} else {
		    append retval \\u [format %04x $ccode]
		}
	    }
	    return $retval
	}
    }
    -body {
	set trouble {}
	foreach {date jdate} [list \
	    1872-12-31 \u897f\u66a61872\u5e7412\u670831\u65e5 \
	    1873-01-01 \u660e\u6cbb06\u5e7401\u670801\u65e5 \
	    1912-07-29 \u660e\u6cbb45\u5e7407\u670829\u65e5 \
	    1912-07-30 \u5927\u6b6301\u5e7407\u670830\u65e5 \
	    1926-12-24 \u5927\u6b6315\u5e7412\u670824\u65e5 \
	    1926-12-25 \u662d\u548c01\u5e7412\u670825\u65e5 \
	    1989-01-07 \u662d\u548c64\u5e7401\u670807\u65e5 \
	    1989-01-08 \u5e73\u621001\u5e7401\u670808\u65e5 \
	] {
	    set status [catch {
		set secs [clock scan $date \
			      -timezone +0900 \
			      -locale ja_JP \
			      -format %Y-%m-%d]
		set jda [clock format $secs \
			     -timezone +0900 \
			     -locale ja_JP \
			     -format %Ex]
	    } result]
	    if {$status != 0} {
		append trouble \n $date " gives error " $result
	    } elseif {$jda ne $jdate} {
		append trouble \n $date " converts to " \
		    [backslashify $jda] " and should be " \
		    [backslashify $jdate]
	    }
	    # There is no code for scanning dates on the locale's
	    # alternative calendar.
	    continue
	    set status [catch {
		set secs [clock scan $jdate \
			      -timezone +0900 \
			      -locale ja_JP \
			      -format %Ex]
		set da [clock format $secs \
			    -timezone +0900 \
			    -locale ja_JP \
			    -format %Y-%m-%d]
	    } result]
	    if {$status != 0} {
		append trouble \n [backslashify $jdate] " gives error " $result
	    } elseif {$da ne $date} {
		append trouble \n [backslashify $jdate] " converts to " \
		    $da " and should be " $date
	    }
	}
	set trouble
    }
    -cleanup {
	rename backslashify {}
    }
    -result {}
}

test clock-59.1 {military time zones} {
    set hour 0
    set base [clock scan "20000101 000000" -format "%Y%m%d %H%M%S" -gmt 1]
    set trouble {}
    foreach {pzone mzone} {
	Z Z  A N  B O  C P  D Q  E R  F S  G T  H U  I V  K W  L X  M Y
    } {
	catch {clock scan "20000101 000000 $pzone" \
		   -format "%Y%m%d %H%M%S %Z"} ps1
	catch {clock scan "20000101 000000 $pzone"} ps2
	catch {clock scan "20000101 000000 $mzone" \
		   -format "%Y%m%d %H%M%S %Z"} ms1
	catch {clock scan "20000101 000000 $mzone"} ms2
	if {$ps1 != $base - 3600 * $hour} {
	    lappend trouble [list pzone $pzone hour $hour ps1 is $ps1]
	}
	if {$ps2 != $base - 3600 * $hour} {
	    lappend trouble [list pzone $pzone ps2 is $ps2]
	}
	if {$ms1 != $base + 3600 * $hour} {
	    lappend trouble [list mzone $mzone ms1 is $ms1]
	}
	if {$ms2 != $base + 3600 * $hour} {
	    lappend trouble [list mzone $mzone ms2 is $ms2]
	}
	incr hour
    }
    join $trouble \n
} {}

# case-insensitive matching of weekday and month names [Bug 1781282]

test clock-60.1 {case insensitive weekday names} {
    clock scan "2000-W01 monday" -gmt true -format "%G-W%V %a"
} [clock scan "2000-W01-1" -gmt true -format "%G-W%V-%u"] 
test clock-60.2 {case insensitive weekday names} {
    clock scan "2000-W01 Monday" -gmt true -format "%G-W%V %a"
} [clock scan "2000-W01-1" -gmt true -format "%G-W%V-%u"] 
test clock-60.3 {case insensitive weekday names} {
    clock scan "2000-W01 MONDAY" -gmt true -format "%G-W%V %a"
} [clock scan "2000-W01-1" -gmt true -format "%G-W%V-%u"] 
test clock-60.4 {case insensitive weekday names} {
    clock scan "2000-W01 friday" -gmt true -format "%G-W%V %a"
} [clock scan "2000-W01-5" -gmt true -format "%G-W%V-%u"] 
test clock-60.5 {case insensitive weekday names} {
    clock scan "2000-W01 Friday" -gmt true -format "%G-W%V %a"
} [clock scan "2000-W01-5" -gmt true -format "%G-W%V-%u"] 
test clock-60.6 {case insensitive weekday names} {
    clock scan "2000-W01 FRIDAY" -gmt true -format "%G-W%V %a"
} [clock scan "2000-W01-5" -gmt true -format "%G-W%V-%u"] 
test clock-60.7 {case insensitive month names} {
    clock scan "1 january 2000" -gmt true -format "%d %b %Y"
} [clock scan "2000-01-01" -gmt true -format "%Y-%m-%d"] 
test clock-60.8 {case insensitive month names} {
    clock scan "1 January 2000" -gmt true -format "%d %b %Y"
} [clock scan "2000-01-01" -gmt true -format "%Y-%m-%d"] 
test clock-60.9 {case insensitive month names} {
    clock scan "1 JANUARY 2000" -gmt true -format "%d %b %Y"
} [clock scan "2000-01-01" -gmt true -format "%Y-%m-%d"] 
test clock-60.10 {case insensitive month names} {
    clock scan "1 december 2000" -gmt true -format "%d %b %Y"
} [clock scan "2000-12-01" -gmt true -format "%Y-%m-%d"] 
test clock-60.11 {case insensitive month names} {
    clock scan "1 December 2000" -gmt true -format "%d %b %Y"
} [clock scan "2000-12-01" -gmt true -format "%Y-%m-%d"] 
test clock-60.12 {case insensitive month names} {
    clock scan "1 DECEMBER 2000" -gmt true -format "%d %b %Y"
} [clock scan "2000-12-01" -gmt true -format "%Y-%m-%d"] 

test clock-61.1 {overflow of a wide integer on output} {*}{
    -body {
	clock format 0x8000000000000000 -format %s -gmt true
    } 
    -result {integer value too large to represent}
    -returnCodes error
}
test clock-61.2 {overflow of a wide integer on output} {*}{
    -body {
	clock format -0x8000000000000001 -format %s -gmt true
    } 
    -result {integer value too large to represent}
    -returnCodes error
}
test clock-61.3 {near-miss overflow of a wide integer on output} {
    clock format 0x7fffffffffffffff -format %s -gmt true
} [expr 0x7fffffffffffffff]
test clock-61.4 {near-miss overflow of a wide integer on output} {
    clock format -0x8000000000000000 -format %s -gmt true
} [expr -0x8000000000000000]

test clock-62.1 {Bug 1902423} {*}{
    -setup {::tcl::clock::ClearCaches}
    -body {
	set s 1204049747
	set f1 [clock format $s -format {%Y-%m-%d %T} -locale C]
	set f2 [clock format $s -format {%Y-%m-%d %H:%M:%S} -locale C]
	if {$f1 ne $f2} {
	    subst "$f2 is not $f1"
	} else {
	    subst "ok"
	}
    }
    -result ok
}

test clock-63.1 {Incorrect use of internal ConvertLocalToUTC command} {*}{
    -body {
	::tcl::clock::ConvertLocalToUTC {immaterial stuff} {} 12345
    }
    -returnCodes error
    -result {key "localseconds" not found in dictionary}
}

test clock-64.1 {:: in format string [Bug 2362156]} {*}{
    -body {
	clock scan 2001-02-03::04:05:06 -gmt 1 -format %Y-%m-%d::%H:%M:%S
    }
    -result 981173106
}
test clock-64.2 {:: in format string [Bug 2362156]} {*}{
    -body {
	clock format 981173106 -gmt 1 -format %Y-%m-%d::%H:%M:%S
    }
    -result 2001-02-03::04:05:06
}

test clock-65.1 {clock add, bad option [Bug 2481670]} {*}{
    -body {
	clock add 0 1 year -foo bar
    }
    -match glob
    -returnCodes error
    -result {bad option "-foo"*}
}

test clock-66.1 {clock scan, no date, never-before-seen timezone} {*}{
    -setup {
	::tcl::clock::ClearCaches
    }
    -body {
	clock scan 1200 \
	    -timezone {<EST>+05:00:00<EDT>+04:00:00,M3.2.0/02:00:00,M11.1.0/02:00:00} \
	    -base 1256529600 \
	    -format %H%M
    }
    -result 1256572800
}

test clock-67.1 {clock format, %% with a letter following [Bug 2819334]} {
    clock format [clock seconds] -format %%r
} %r

test clock-67.2 {Bug d19a30db57} -body {
    # error, not segfault
    tcl::clock::GetJulianDayFromEraYearMonthDay {} 2361222
} -returnCodes error -match glob -result *

test clock-67.3 {Bug d19a30db57} -body {
    # error, not segfault
    tcl::clock::GetJulianDayFromEraYearWeekDay {} 2361222
} -returnCodes error -match glob -result *

test clock-67.4 {Change format %x output on global locale change [Bug 4a0c163d24]} -setup {
    package require msgcat
    set current [msgcat::mclocale]
} -body {
    msgcat::mclocale de_de
    set res [regexp {^\d{2}\.\d{2}\.\d{4}$} [clock format 1 -locale current -format %x]]
    msgcat::mclocale en_uk
    lappend res [regexp {^\d{2}/\d{2}/\d{4}$} [clock format 1 -locale current -format %x]]
} -cleanup {
    msgcat::mclocale $current
} -result {1 1}

test clock-67.5 {Change scan %x output on global locale change [Bug 4a0c163d24]} -setup {
    package require msgcat
    set current [msgcat::mclocale]
} -body {
    msgcat::mclocale de_de
    set res [clock scan "01.01.1970" -locale current -format %x]
    msgcat::mclocale en_uk
    # This will fail without the bug fix, as still de_de is active
    expr {$res == [clock scan "01/01/1970" -locale current -format %x]}
} -cleanup {
    msgcat::mclocale $current
} -result {1}

# cleanup

namespace delete ::testClock
::tcl::clock::ClearCaches
::tcltest::cleanupTests
return

# Local Variables:
# mode: tcl
# End: