|  | @@ -90,7 +90,9 @@ function writeCore() {
 | 
	
		
			
				|  |  |      rst.push('<cp:coreProperties xmlns:cp="http://schemas.openxmlformats.org/package/2006/metadata/core-properties" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:dcterms="http://purl.org/dc/terms/" xmlns:dcmitype="http://purl.org/dc/dcmitype/" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">');
 | 
	
		
			
				|  |  |      rst.push('<dc:creator>SmartCost</dc:creator>');
 | 
	
		
			
				|  |  |      rst.push('<cp:lastModifiedBy>SmartCost</cp:lastModifiedBy>');
 | 
	
		
			
				|  |  | -    let dt = new Date(), dtStr = dt.getFullYear() + '-' + p_fillZero(dt.getMonth()+1) + '-' + p_fillZero(dt.getDate()) + 'T' +
 | 
	
		
			
				|  |  | +    let dt = new Date();
 | 
	
		
			
				|  |  | +    dt.setDate(dt.getDate() - 8/24); //it's GMT time, so please add the server offset time ( -8 hours )
 | 
	
		
			
				|  |  | +    let dtStr = dt.getFullYear() + '-' + p_fillZero(dt.getMonth()+1) + '-' + p_fillZero(dt.getDate()) + 'T' +
 | 
	
		
			
				|  |  |          p_fillZero(dt.getHours()) + ':' + p_fillZero(dt.getMinutes()) + ':' + p_fillZero(dt.getSeconds()) + 'Z';
 | 
	
		
			
				|  |  |      rst.push('<dcterms:created xsi:type="dcterms:W3CDTF">' + dtStr + '</dcterms:created>');
 | 
	
		
			
				|  |  |      rst.push('<dcterms:modified xsi:type="dcterms:W3CDTF">' + dtStr + '</dcterms:modified>');
 |