<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: How to convert string to date format! in Talend Studio</title>
    <link>https://community.qlik.com/t5/Talend-Studio/How-to-convert-string-to-date-format/m-p/2245486#M31329</link>
    <description>As you said, job compare is used to identify the differences between 2 jobs.&lt;BR /&gt;Its similar to code compare.</description>
    <pubDate>Tue, 22 Apr 2014 13:55:01 GMT</pubDate>
    <dc:creator>bkar81</dc:creator>
    <dc:date>2014-04-22T13:55:01Z</dc:date>
    <item>
      <title>How to convert string to date format!</title>
      <link>https://community.qlik.com/t5/Talend-Studio/How-to-convert-string-to-date-format/m-p/2245443#M31286</link>
      <description>&lt;P&gt;Hi Talend Support officer,&lt;BR /&gt;Can you tell me how can I convert the string data of "14/09/2001" from MS Access to DB2 date format ("yyyy-mm-dd") as "2001-09-14" by using tMap function in Talend Open Studio, please? &lt;BR /&gt;Thanks.&lt;BR /&gt;Regards,&lt;BR /&gt;KM&lt;/P&gt;</description>
      <pubDate>Sat, 16 Nov 2024 12:38:10 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/How-to-convert-string-to-date-format/m-p/2245443#M31286</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2024-11-16T12:38:10Z</dc:date>
    </item>
    <item>
      <title>Re: How to convert string to date format!</title>
      <link>https://community.qlik.com/t5/Talend-Studio/How-to-convert-string-to-date-format/m-p/2245444#M31287</link>
      <description>hi,&lt;BR /&gt;first convert the column to built-in schema &amp;amp; edit your date column from string to date datatype format "dd-mm-yyyy"&lt;BR /&gt;then in tmap use function  TalendDate.formatDate("yyyy-MM-dd",myDate) to get your desired format.&lt;BR /&gt;regards,&lt;BR /&gt;Jugal</description>
      <pubDate>Mon, 10 Oct 2011 07:18:01 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/How-to-convert-string-to-date-format/m-p/2245444#M31287</guid>
      <dc:creator>djugal</dc:creator>
      <dc:date>2011-10-10T07:18:01Z</dc:date>
    </item>
    <item>
      <title>Re: How to convert string to date format!</title>
      <link>https://community.qlik.com/t5/Talend-Studio/How-to-convert-string-to-date-format/m-p/2245445#M31288</link>
      <description>Hi Jugal,&lt;BR /&gt;Thanks for the tips.  I still having problem after I changed the column of the datatype from string to date for the input column.  Then in tmap, I put the function as TalendDate.parseDate("yyyy-MM-dd",PATIENT.Patient_DOB).  It still giving me this error as =&amp;gt;  Exception in thread "main" java.lang.Error: Unresolved compilation problem: &lt;BR /&gt;	The method parseDate(String, String) in the type TalendDate is not applicable for the arguments (String, Date).&lt;BR /&gt;Unfortunately, I am unable to provide you the dump screen due to network bandwidth limitation.  Can you help me with this error, please?  Thanks.&lt;BR /&gt;Regards,&lt;BR /&gt;KM</description>
      <pubDate>Mon, 10 Oct 2011 08:42:32 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/How-to-convert-string-to-date-format/m-p/2245445#M31288</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2011-10-10T08:42:32Z</dc:date>
    </item>
    <item>
      <title>Re: How to convert string to date format!</title>
      <link>https://community.qlik.com/t5/Talend-Studio/How-to-convert-string-to-date-format/m-p/2245446#M31289</link>
      <description>Try this function TalendDate.formatDate("yyyy-MM-dd",myDate)</description>
      <pubDate>Mon, 10 Oct 2011 10:50:39 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/How-to-convert-string-to-date-format/m-p/2245446#M31289</guid>
      <dc:creator>djugal</dc:creator>
      <dc:date>2011-10-10T10:50:39Z</dc:date>
    </item>
    <item>
      <title>Re: How to convert string to date format!</title>
      <link>https://community.qlik.com/t5/Talend-Studio/How-to-convert-string-to-date-format/m-p/2245447#M31290</link>
      <description>Hi
&lt;BR /&gt;Use this way
&lt;BR /&gt;TalendDate.parseDate("yyyy-MM-dd",TalendDate.formatDate("dd/MM/yyyy"))
&lt;BR /&gt;This case work if the incoming data type is string else use parseDate directly with pattern "dd/MM/yyyy"</description>
      <pubDate>Mon, 10 Oct 2011 13:13:37 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/How-to-convert-string-to-date-format/m-p/2245447#M31290</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2011-10-10T13:13:37Z</dc:date>
    </item>
    <item>
      <title>Re: How to convert string to date format!</title>
      <link>https://community.qlik.com/t5/Talend-Studio/How-to-convert-string-to-date-format/m-p/2245448#M31291</link>
      <description>The problem is i have a string "2008013008013661" i got to truncate it to "20080130080136" then convert this string to date format which i should be able to insert into mySql db</description>
      <pubDate>Thu, 16 May 2013 06:50:01 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/How-to-convert-string-to-date-format/m-p/2245448#M31291</guid>
      <dc:creator>_AnonymousUser</dc:creator>
      <dc:date>2013-05-16T06:50:01Z</dc:date>
    </item>
    <item>
      <title>Re: How to convert string to date format!</title>
      <link>https://community.qlik.com/t5/Talend-Studio/How-to-convert-string-to-date-format/m-p/2245449#M31292</link>
      <description>I have a date object, and for NULL date i want to store blank in excel file. Please suggest any way</description>
      <pubDate>Wed, 18 Sep 2013 11:29:49 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/How-to-convert-string-to-date-format/m-p/2245449#M31292</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2013-09-18T11:29:49Z</dc:date>
    </item>
    <item>
      <title>Re: How to convert string to date format!</title>
      <link>https://community.qlik.com/t5/Talend-Studio/How-to-convert-string-to-date-format/m-p/2245450#M31293</link>
      <description>use Relational.ISNULL function to check if null. If null pass as null object</description>
      <pubDate>Wed, 18 Sep 2013 14:19:59 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/How-to-convert-string-to-date-format/m-p/2245450#M31293</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2013-09-18T14:19:59Z</dc:date>
    </item>
    <item>
      <title>Re: How to convert string to date format!</title>
      <link>https://community.qlik.com/t5/Talend-Studio/How-to-convert-string-to-date-format/m-p/2245451#M31294</link>
      <description>Hi can any one help me to solve this problem..........Hi , i have a source in excel with the following data&lt;BR /&gt;                                                                         id       name    dateofbirth     salary  hiredate&lt;BR /&gt;                                                                          1       xays      24/01/1994    100     05/07/2012    &lt;BR /&gt;                                                                          2        xyz       22/10/1991     200   04/02/2012&lt;BR /&gt;                                                                          3      kjsdj       04/02/1990     300   14/01/2008&lt;BR /&gt;                                                                          4       dfdkl      06/06/1989      400   16/02/2010 &lt;BR /&gt;here rowno1  24/01/1994,dateofbirth is displaying in excel as a general format&lt;BR /&gt;and rowno2    22/10/1994 dateofbirth is displaying in excel as a general format&lt;BR /&gt;and rowno 4   16/02/2010 hiredate is displaying in excel as a general format. so while iam loading this from excel to target  iam getting the following error  &lt;BR /&gt;                                The cell format is not date in row1 date of birth&lt;BR /&gt;                                The cell format is not date in row2 date of birth&lt;BR /&gt;                                The cell format is not date in row4 hire date         Because the above mentioned  rows are in general format in excel sheet.&lt;BR /&gt;my expetation is i want to get all the rows from source to target.&lt;BR /&gt;But if i used parsedate in tmap the complete date value has been changed like.....&lt;BR /&gt;row1 date is 24/01/1994 as changed to like this 01/12/95 and &lt;BR /&gt;row2. 22/10/1991 is changed to 10/10/19992&lt;BR /&gt;        can you show me the screen shot please for this solution</description>
      <pubDate>Tue, 28 Jan 2014 05:59:45 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/How-to-convert-string-to-date-format/m-p/2245451#M31294</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2014-01-28T05:59:45Z</dc:date>
    </item>
    <item>
      <title>Re: How to convert string to date format!</title>
      <link>https://community.qlik.com/t5/Talend-Studio/How-to-convert-string-to-date-format/m-p/2245452#M31295</link>
      <description>Hi Mahadevank,&lt;BR /&gt;Have you checked the date format of your output schema in tmap?</description>
      <pubDate>Tue, 28 Jan 2014 09:56:19 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/How-to-convert-string-to-date-format/m-p/2245452#M31295</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2014-01-28T09:56:19Z</dc:date>
    </item>
    <item>
      <title>Re: How to convert string to date format!</title>
      <link>https://community.qlik.com/t5/Talend-Studio/How-to-convert-string-to-date-format/m-p/2245453#M31296</link>
      <description>Hi remytom,&lt;BR /&gt;                  Thank you for your reply ,i got a proper result.</description>
      <pubDate>Thu, 30 Jan 2014 10:27:23 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/How-to-convert-string-to-date-format/m-p/2245453#M31296</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2014-01-30T10:27:23Z</dc:date>
    </item>
    <item>
      <title>Re: How to convert string to date format!</title>
      <link>https://community.qlik.com/t5/Talend-Studio/How-to-convert-string-to-date-format/m-p/2245454#M31297</link>
      <description>Hi anyone can help me how to solve this problem...........
&lt;BR /&gt; 
&lt;BR /&gt; I have a date in my Excel file is 01-JAN-06. 01 represents the day of the week, JAN represents the month and 06 represents the year. The Excel file also contains date values of 00-XXX-00 which represent no date. For example a column containing last purchase date data would look like this:"DateOfLastOrder"
&lt;BR /&gt;"01-JAN-06"
&lt;BR /&gt;"02-JAN-06"
&lt;BR /&gt;"00-XXX-00"
&lt;BR /&gt;"03-DEC-05"The value of 00-XXX-00 means that there is no purchase date.I want to bring these columns into my table and replace the 00-XXX-00 values with a NULL.
&lt;BR /&gt;The table of tmssqloutput Data Type is datetime.</description>
      <pubDate>Tue, 04 Feb 2014 10:47:22 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/How-to-convert-string-to-date-format/m-p/2245454#M31297</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2014-02-04T10:47:22Z</dc:date>
    </item>
    <item>
      <title>Re: How to convert string to date format!</title>
      <link>https://community.qlik.com/t5/Talend-Studio/How-to-convert-string-to-date-format/m-p/2245455#M31298</link>
      <description>Hi anyone can help me how to solve this problem........... 
&lt;BR /&gt; 
&lt;BR /&gt; I have a date in my Excel file is 01-JAN-06. 01 represents the day of the week, JAN represents the month and 06 represents the year. The Excel file also contains date values of 00-XXX-00 which represent no date. For example a column containing last purchase date data would look like this:"DateOfLastOrder" 
&lt;BR /&gt;"01-JAN-06" 
&lt;BR /&gt;"02-JAN-06" 
&lt;BR /&gt;"00-XXX-00" 
&lt;BR /&gt;"03-DEC-05"The value of 00-XXX-00 means that there is no purchase date.I want to bring these columns into my table and replace the 00-XXX-00 values with a NULL. 
&lt;BR /&gt;The table of tmssqloutput Data Type is datetime. 
&lt;BR /&gt; This is the error iam getting: only the date between january 1 1753 and december 31 9999 are accepted .</description>
      <pubDate>Tue, 04 Feb 2014 10:48:29 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/How-to-convert-string-to-date-format/m-p/2245455#M31298</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2014-02-04T10:48:29Z</dc:date>
    </item>
    <item>
      <title>Re: How to convert string to date format!</title>
      <link>https://community.qlik.com/t5/Talend-Studio/How-to-convert-string-to-date-format/m-p/2245456#M31299</link>
      <description>This code could help for the replacement. This is used in tjavarow component after the file is read. &lt;BR /&gt;if (TalendDate.isDate(input_row.HD,"dd-MM-yyyy") == true)&lt;BR /&gt;output_row.HD = TalendDate.parseDate("dd-MM-yyyy",input_row.HD);&lt;BR /&gt;else &lt;BR /&gt;output_row.HD = null;</description>
      <pubDate>Wed, 05 Feb 2014 09:24:31 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/How-to-convert-string-to-date-format/m-p/2245456#M31299</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2014-02-05T09:24:31Z</dc:date>
    </item>
    <item>
      <title>Re: How to convert string to date format!</title>
      <link>https://community.qlik.com/t5/Talend-Studio/How-to-convert-string-to-date-format/m-p/2245457#M31300</link>
      <description>Hi, any one can provide me one snapshot for joblet with example, because i am confusing with schema while creating joblet in talend enterprise edition. 
&lt;BR /&gt;here i am doing concatinating fname+lastname=full name in variable tmap 
&lt;BR /&gt;Here i have used schema for emp table for joblet and how can i use this for another job ............. 
&lt;BR /&gt; In another job i have customer table............. 
&lt;BR /&gt; 
&lt;span class="lia-inline-image-display-wrapper" image-alt="0683p000009M8c7.jpg"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/132047iDD613D14540C1528/image-size/large?v=v2&amp;amp;px=999" role="button" title="0683p000009M8c7.jpg" alt="0683p000009M8c7.jpg" /&gt;&lt;/span&gt; 
&lt;span class="lia-inline-image-display-wrapper" image-alt="0683p000009MADv.jpg"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/142536i572AE8D2F4D1F11D/image-size/large?v=v2&amp;amp;px=999" role="button" title="0683p000009MADv.jpg" alt="0683p000009MADv.jpg" /&gt;&lt;/span&gt;</description>
      <pubDate>Thu, 13 Feb 2014 05:45:03 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/How-to-convert-string-to-date-format/m-p/2245457#M31300</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2014-02-13T05:45:03Z</dc:date>
    </item>
    <item>
      <title>Re: How to convert string to date format!</title>
      <link>https://community.qlik.com/t5/Talend-Studio/How-to-convert-string-to-date-format/m-p/2245458#M31301</link>
      <description>Hi mahadevank, 
&lt;BR /&gt;Have you ever checked the document 
&lt;A href="https://help.talend.com/display/TalendDataIntegrationStudioUserGuide54EN/11.+Designing+a+Joblet" target="_blank" rel="nofollow noopener noreferrer"&gt;TalendHelpCenter&lt;span class="lia-inline-image-display-wrapper" image-alt="0683p000009MACJ.png"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/133049iD780B7DE0116E4D1/image-size/large?v=v2&amp;amp;px=999" role="button" title="0683p000009MACJ.png" alt="0683p000009MACJ.png" /&gt;&lt;/span&gt;esigning+a+Joblet&lt;/A&gt;. 
&lt;BR /&gt;Best regards 
&lt;BR /&gt;Sabrina</description>
      <pubDate>Thu, 13 Feb 2014 06:30:04 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/How-to-convert-string-to-date-format/m-p/2245458#M31301</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2014-02-13T06:30:04Z</dc:date>
    </item>
    <item>
      <title>Re: How to convert string to date format!</title>
      <link>https://community.qlik.com/t5/Talend-Studio/How-to-convert-string-to-date-format/m-p/2245459#M31302</link>
      <description>Hi, Yes already i have studied talend help centre about joblet but i can't understand...........&lt;BR /&gt;In my job i have a source like this.......                  emp table&lt;BR /&gt;                                                        empid   firstname  lastname  gender maritalstatus dob &lt;BR /&gt;here i created joblet with tmap,sorter,filter&lt;BR /&gt;joblet.................&lt;BR /&gt;INPUT(emptable)-tmap-sorter-filter-OUTPUT.&lt;BR /&gt; joblet mean&amp;gt; reuse this transformation logic for multiple job.&lt;BR /&gt;But here i used emp table from INPUT to OUTPUT with all the above mentioned component in joblet.&lt;BR /&gt;so if i want to use this joblet for another job means i have to use this only for emp table as a source not for another table as a source in this job.&lt;BR /&gt;My question is:&lt;BR /&gt;1. So what is the use for joblet........... when i have a customer table with the following columns&lt;BR /&gt;      customerid   firstname   lastname  city phoneno email   in  a job (here how to use that joblet)&lt;BR /&gt;2. And In talend help center  they created one joblet for one source and they used this joblet in another job without mentioning the source of a job. whether it is same source or different.&lt;BR /&gt; If it is same what is the use of it..........&lt;BR /&gt;3. I need one example joblet and one job using (that joblet) to understand with schema for both.</description>
      <pubDate>Thu, 13 Feb 2014 09:45:26 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/How-to-convert-string-to-date-format/m-p/2245459#M31302</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2014-02-13T09:45:26Z</dc:date>
    </item>
    <item>
      <title>Re: How to convert string to date format!</title>
      <link>https://community.qlik.com/t5/Talend-Studio/How-to-convert-string-to-date-format/m-p/2245460#M31303</link>
      <description>Hi any one can help me to solve this issue 
&lt;BR /&gt; I have a source in excel like id name date 
&lt;BR /&gt; 10 Ravi 18/05/2014 
&lt;BR /&gt; 20 Naraine 06/12/2013 
&lt;BR /&gt; 30 Mahesh 23/10/2012 
&lt;BR /&gt; 40 Ganesh 09/10/2010 
&lt;BR /&gt;Note : 
&lt;BR /&gt;Now i want to load the entire rows of data in to tmssqloutput, but iam getting only the rows which in MM/dd/ yyyy format in source. 
&lt;BR /&gt;Because its considering the source in MM/dd/yyyy format , so i got only the rows which is less than 12 month like 09/10/2010 and 06/12/2013. 
&lt;BR /&gt; 
&lt;BR /&gt;But i entered the rows in excel in the meaning of dd/MM/yyyy............... if i used parsed date fuction in tmap i got all the rows. this is only ok for tlogrow but not for tmssqloutput. 
&lt;BR /&gt; if i used tmssqloutput i got this error...... only the date between january 1 1753 and december 31 9999 are accepted. Any solution for this..............</description>
      <pubDate>Mon, 03 Mar 2014 13:43:28 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/How-to-convert-string-to-date-format/m-p/2245460#M31303</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2014-03-03T13:43:28Z</dc:date>
    </item>
    <item>
      <title>Re: How to convert string to date format!</title>
      <link>https://community.qlik.com/t5/Talend-Studio/How-to-convert-string-to-date-format/m-p/2245461#M31304</link>
      <description>Hi mahadevank, &lt;BR /&gt;&lt;BLOCKQUOTE&gt;&lt;TABLE border="1"&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TD&gt;But i entered the rows in excel in the meaning of dd/MM/yyyy............... if i used parsed date fuction in tmap i got all the rows. this is only ok for tlogrow but not for tmssqloutput.&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;/BLOCKQUOTE&gt;&lt;BR /&gt;How did you parsed date fuction in tmap? What the error looks like? Data truncation?&lt;BR /&gt;Best regards&lt;BR /&gt;Sabrina</description>
      <pubDate>Tue, 04 Mar 2014 06:47:34 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/How-to-convert-string-to-date-format/m-p/2245461#M31304</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2014-03-04T06:47:34Z</dc:date>
    </item>
    <item>
      <title>Re: How to convert string to date format!</title>
      <link>https://community.qlik.com/t5/Talend-Studio/How-to-convert-string-to-date-format/m-p/2245462#M31305</link>
      <description>Hi thanks for your response..................Here i explainde my job and error, which i got. 
&lt;BR /&gt;JOB: tFileInputExcel- tmap- tmssqloutput 
&lt;BR /&gt;1. if i used Date column with date datatype in tfileinputexcel, i got only few rows like which i said on previous post and my error is "The cell format is not Date in row 1 and column 4 
&lt;BR /&gt; "The cell format is not Date in row 3 and column 4. 
&lt;BR /&gt;2. If i used Date column with string datatype in tfileinputexcel , i did not get any row in tmssqloutput 
&lt;BR /&gt;Tfileinputecxel(Date date)-tmap output as date datatype. error is Only dates between January 1, 1753 and December 31, 9999 are accepted. 
&lt;BR /&gt;My expectation is , i want to load all the rows of data into tmssqloutput......... 
&lt;BR /&gt; 
&lt;span class="lia-inline-image-display-wrapper" image-alt="0683p000009MAAd.jpg"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/148994iCD343DFB15C5D450/image-size/large?v=v2&amp;amp;px=999" role="button" title="0683p000009MAAd.jpg" alt="0683p000009MAAd.jpg" /&gt;&lt;/span&gt; 
&lt;span class="lia-inline-image-display-wrapper" image-alt="0683p000009MAE0.jpg"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/151868iE7662F7B87B2182C/image-size/large?v=v2&amp;amp;px=999" role="button" title="0683p000009MAE0.jpg" alt="0683p000009MAE0.jpg" /&gt;&lt;/span&gt;</description>
      <pubDate>Tue, 04 Mar 2014 09:22:43 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/How-to-convert-string-to-date-format/m-p/2245462#M31305</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2014-03-04T09:22:43Z</dc:date>
    </item>
  </channel>
</rss>

