&#174 converts to

i need to enter
&#174 into the database, but when i use documentbuilder it converts it to ® in the xml
when i display the xsl fo (<xsl:value-of.......) using that xml the symbol shows up as
&#174; in plain text and not the symbol
is there any way to get the symbol to show?
thanks

small correction, the documentbuilder converts it to & amp ; # 1 7 4; in xml

Similar Messages

  • Combinations with Best Total value without Exceeding a maximum cost

    Hello,
    I have an interesting problem I am trying to solve and I am wondering if TSQL, or another tool like SSAS would be a good option for this. I am trying to find out the best performance from 8 parts while staying under a specific budget. Below is a generic
    example:
    I have to find the best combination of the following:
    3 Part A
    3 Part B
    1 Part C
    1 Part D(can be either A, B, or C)
    The raw data that I will be using will look something like this:
    Part #  |  Price   |  Value  | ID
    A          |  $22     |  44      |   1
    A          |  $21     |  42      |   2
    B          |  $20     |  41      |   3
    C          |  $18     |  37      |   4
    B          |  $17     |  35      |   5
    B          |  $2       |  1        |   200
    I will have over 200 combinations of parts in total (some A, some B, some C).
    In addition, I will have to find the best optimal total value for 100$ or less. It will be like Use it or Lose it 100$ so you want to be as close as possible without going over. 
    I am looking for something that can find out the optimal and rank it according to total value in a relatively quick amount of time. I know there are a lot of possibilities for this.
    The end result will be something like this:
    Total Value | Total Cost | A1 | A2 | A3 | B1 | B2 | B3 | C1 | D1
    240           |   100        | 1  |  6 |  15 | 2  |  5 | 20 |  4 |  3
    Let me know if you have any questions. Hopefully this makes some sense.

    CREATE TABLE [dbo].[OptimalCombo](
    [ID] [float] NULL,
    [Price] [money] NULL,
    [Value] [float] NULL,
    [Part] [nvarchar](255) NULL,
    INSERT OptimalCombo(ID,Price,Value,Part) VALUES('1',convert(money,'22.16'),'42.7302','A')
    INSERT OptimalCombo(ID,Price,Value,Part) VALUES('2',convert(money,'21.67'),'42.0798','A')
    INSERT OptimalCombo(ID,Price,Value,Part) VALUES('3',convert(money,'20.42'),'40.7089','A')
    INSERT OptimalCombo(ID,Price,Value,Part) VALUES('4',convert(money,'16.05'),'34.4474','B')
    INSERT OptimalCombo(ID,Price,Value,Part) VALUES('5',convert(money,'11.66'),'33.9312','A')
    INSERT OptimalCombo(ID,Price,Value,Part) VALUES('6',convert(money,'18.27'),'33.7518','A')
    INSERT OptimalCombo(ID,Price,Value,Part) VALUES('7',convert(money,'18.57'),'32.5026','C')
    INSERT OptimalCombo(ID,Price,Value,Part) VALUES('8',convert(money,'13.64'),'32.0993','A')
    INSERT OptimalCombo(ID,Price,Value,Part) VALUES('9',convert(money,'15.16'),'31.8969','B')
    INSERT OptimalCombo(ID,Price,Value,Part) VALUES('10',convert(money,'11.87'),'31.6139','C')
    INSERT OptimalCombo(ID,Price,Value,Part) VALUES('11',convert(money,'15.22'),'31.3825','C')
    INSERT OptimalCombo(ID,Price,Value,Part) VALUES('12',convert(money,'18.77'),'31.2071','A')
    INSERT OptimalCombo(ID,Price,Value,Part) VALUES('13',convert(money,'12.96'),'31.1526','B')
    INSERT OptimalCombo(ID,Price,Value,Part) VALUES('14',convert(money,'14.22'),'30.2834','A')
    INSERT OptimalCombo(ID,Price,Value,Part) VALUES('15',convert(money,'14.57'),'30.2159','B')
    INSERT OptimalCombo(ID,Price,Value,Part) VALUES('16',convert(money,'14.89'),'30.1422','B')
    INSERT OptimalCombo(ID,Price,Value,Part) VALUES('17',convert(money,'15.42'),'30.0975','C')
    INSERT OptimalCombo(ID,Price,Value,Part) VALUES('18',convert(money,'15.26'),'29.9128','A')
    INSERT OptimalCombo(ID,Price,Value,Part) VALUES('19',convert(money,'10.87'),'29.5804','B')
    INSERT OptimalCombo(ID,Price,Value,Part) VALUES('20',convert(money,'12.38'),'29.0499','A')
    INSERT OptimalCombo(ID,Price,Value,Part) VALUES('21',convert(money,'15.23'),'28.8299','B')
    INSERT OptimalCombo(ID,Price,Value,Part) VALUES('22',convert(money,'12.87'),'28.8112','A')
    INSERT OptimalCombo(ID,Price,Value,Part) VALUES('23',convert(money,'17.05'),'28.6106','A')
    INSERT OptimalCombo(ID,Price,Value,Part) VALUES('24',convert(money,'14.62'),'28.4499','B')
    INSERT OptimalCombo(ID,Price,Value,Part) VALUES('25',convert(money,'11.71'),'28.4443','B')
    INSERT OptimalCombo(ID,Price,Value,Part) VALUES('26',convert(money,'13.84'),'27.4249','C')
    INSERT OptimalCombo(ID,Price,Value,Part) VALUES('27',convert(money,'14.68'),'27.1489','B')
    INSERT OptimalCombo(ID,Price,Value,Part) VALUES('28',convert(money,'11.50'),'27.0866','B')
    INSERT OptimalCombo(ID,Price,Value,Part) VALUES('29',convert(money,'12.69'),'27.0484','A')
    INSERT OptimalCombo(ID,Price,Value,Part) VALUES('30',convert(money,'12.51'),'27.0121','B')
    INSERT OptimalCombo(ID,Price,Value,Part) VALUES('31',convert(money,'14.02'),'26.4007','A')
    INSERT OptimalCombo(ID,Price,Value,Part) VALUES('32',convert(money,'13.61'),'26.0659','C')
    INSERT OptimalCombo(ID,Price,Value,Part) VALUES('33',convert(money,'10.31'),'25.1806','B')
    INSERT OptimalCombo(ID,Price,Value,Part) VALUES('34',convert(money,'13.62'),'24.8248','B')
    INSERT OptimalCombo(ID,Price,Value,Part) VALUES('35',convert(money,'13.42'),'24.6756','A')
    INSERT OptimalCombo(ID,Price,Value,Part) VALUES('36',convert(money,'11.82'),'24.4752','C')
    INSERT OptimalCombo(ID,Price,Value,Part) VALUES('37',convert(money,'10.95'),'24.0582','A')
    INSERT OptimalCombo(ID,Price,Value,Part) VALUES('38',convert(money,'14.26'),'23.4754','B')
    INSERT OptimalCombo(ID,Price,Value,Part) VALUES('39',convert(money,'9.62'),'23.4578','B')
    INSERT OptimalCombo(ID,Price,Value,Part) VALUES('40',convert(money,'9.80'),'23.3932','B')
    INSERT OptimalCombo(ID,Price,Value,Part) VALUES('41',convert(money,'7.91'),'22.7474','A')
    INSERT OptimalCombo(ID,Price,Value,Part) VALUES('42',convert(money,'9.96'),'22.5954','A')
    INSERT OptimalCombo(ID,Price,Value,Part) VALUES('43',convert(money,'9.13'),'22.2856','C')
    INSERT OptimalCombo(ID,Price,Value,Part) VALUES('44',convert(money,'13.54'),'22.2192','A')
    INSERT OptimalCombo(ID,Price,Value,Part) VALUES('45',convert(money,'11.01'),'21.8734','A')
    INSERT OptimalCombo(ID,Price,Value,Part) VALUES('46',convert(money,'9.06'),'21.809','A')
    INSERT OptimalCombo(ID,Price,Value,Part) VALUES('47',convert(money,'10.56'),'21.7806','C')
    INSERT OptimalCombo(ID,Price,Value,Part) VALUES('48',convert(money,'10.10'),'21.5777','B')
    INSERT OptimalCombo(ID,Price,Value,Part) VALUES('49',convert(money,'9.17'),'21.5588','B')
    INSERT OptimalCombo(ID,Price,Value,Part) VALUES('50',convert(money,'8.31'),'21.4629','A')
    INSERT OptimalCombo(ID,Price,Value,Part) VALUES('51',convert(money,'8.66'),'20.9096','B')
    INSERT OptimalCombo(ID,Price,Value,Part) VALUES('52',convert(money,'12.33'),'20.7805','B')
    INSERT OptimalCombo(ID,Price,Value,Part) VALUES('53',convert(money,'12.18'),'20.7249','C')
    INSERT OptimalCombo(ID,Price,Value,Part) VALUES('54',convert(money,'10.90'),'20.7121','C')
    INSERT OptimalCombo(ID,Price,Value,Part) VALUES('55',convert(money,'9.66'),'20.6709','A')
    INSERT OptimalCombo(ID,Price,Value,Part) VALUES('56',convert(money,'10.14'),'20.5873','A')
    INSERT OptimalCombo(ID,Price,Value,Part) VALUES('57',convert(money,'10.11'),'20.5527','B')
    INSERT OptimalCombo(ID,Price,Value,Part) VALUES('58',convert(money,'11.63'),'20.5245','C')
    INSERT OptimalCombo(ID,Price,Value,Part) VALUES('59',convert(money,'8.91'),'20.3243','A')
    INSERT OptimalCombo(ID,Price,Value,Part) VALUES('60',convert(money,'7.33'),'19.9983','A')
    INSERT OptimalCombo(ID,Price,Value,Part) VALUES('61',convert(money,'12.44'),'19.9376','A')
    INSERT OptimalCombo(ID,Price,Value,Part) VALUES('62',convert(money,'10.39'),'19.8531','B')
    INSERT OptimalCombo(ID,Price,Value,Part) VALUES('63',convert(money,'9.49'),'19.7441','B')
    INSERT OptimalCombo(ID,Price,Value,Part) VALUES('64',convert(money,'10.41'),'19.54','B')
    INSERT OptimalCombo(ID,Price,Value,Part) VALUES('65',convert(money,'9.28'),'19.4863','B')
    INSERT OptimalCombo(ID,Price,Value,Part) VALUES('66',convert(money,'9.93'),'19.3653','A')
    INSERT OptimalCombo(ID,Price,Value,Part) VALUES('67',convert(money,'10.63'),'18.7178','B')
    INSERT OptimalCombo(ID,Price,Value,Part) VALUES('68',convert(money,'8.73'),'18.7176','A')
    INSERT OptimalCombo(ID,Price,Value,Part) VALUES('69',convert(money,'8.77'),'18.6663','B')
    INSERT OptimalCombo(ID,Price,Value,Part) VALUES('70',convert(money,'6.81'),'18.4952','A')
    INSERT OptimalCombo(ID,Price,Value,Part) VALUES('71',convert(money,'9.34'),'18.4944','B')
    INSERT OptimalCombo(ID,Price,Value,Part) VALUES('72',convert(money,'10.93'),'18.3211','A')
    INSERT OptimalCombo(ID,Price,Value,Part) VALUES('73',convert(money,'0.00'),'18.0332','A')
    INSERT OptimalCombo(ID,Price,Value,Part) VALUES('74',convert(money,'10.09'),'17.5418','B')
    INSERT OptimalCombo(ID,Price,Value,Part) VALUES('75',convert(money,'6.46'),'17.5339','A')
    INSERT OptimalCombo(ID,Price,Value,Part) VALUES('76',convert(money,'8.18'),'17.3633','B')
    INSERT OptimalCombo(ID,Price,Value,Part) VALUES('77',convert(money,'7.92'),'16.4754','B')
    INSERT OptimalCombo(ID,Price,Value,Part) VALUES('78',convert(money,'6.36'),'16.374','B')
    INSERT OptimalCombo(ID,Price,Value,Part) VALUES('79',convert(money,'9.20'),'16.2018','C')
    INSERT OptimalCombo(ID,Price,Value,Part) VALUES('80',convert(money,'10.09'),'16.2013','A')
    INSERT OptimalCombo(ID,Price,Value,Part) VALUES('81',convert(money,'8.78'),'15.7496','A')
    INSERT OptimalCombo(ID,Price,Value,Part) VALUES('82',convert(money,'4.95'),'15.6086','B')
    INSERT OptimalCombo(ID,Price,Value,Part) VALUES('83',convert(money,'8.20'),'15.4618','C')
    INSERT OptimalCombo(ID,Price,Value,Part) VALUES('84',convert(money,'7.63'),'15.3775','A')
    INSERT OptimalCombo(ID,Price,Value,Part) VALUES('85',convert(money,'7.06'),'15.2405','C')
    INSERT OptimalCombo(ID,Price,Value,Part) VALUES('86',convert(money,'8.18'),'15.2229','A')
    INSERT OptimalCombo(ID,Price,Value,Part) VALUES('87',convert(money,'6.88'),'15.1594','B')
    INSERT OptimalCombo(ID,Price,Value,Part) VALUES('88',convert(money,'7.46'),'15.0574','B')
    INSERT OptimalCombo(ID,Price,Value,Part) VALUES('89',convert(money,'9.97'),'14.4833','B')
    INSERT OptimalCombo(ID,Price,Value,Part) VALUES('90',convert(money,'8.45'),'14.3658','B')
    INSERT OptimalCombo(ID,Price,Value,Part) VALUES('91',convert(money,'5.54'),'14.353','A')
    INSERT OptimalCombo(ID,Price,Value,Part) VALUES('92',convert(money,'4.72'),'14.2415','C')
    INSERT OptimalCombo(ID,Price,Value,Part) VALUES('93',convert(money,'10.08'),'14.0523','A')
    INSERT OptimalCombo(ID,Price,Value,Part) VALUES('94',convert(money,'7.65'),'13.8778','C')
    INSERT OptimalCombo(ID,Price,Value,Part) VALUES('95',convert(money,'7.35'),'13.7063','B')
    INSERT OptimalCombo(ID,Price,Value,Part) VALUES('96',convert(money,'5.19'),'13.3039','A')
    INSERT OptimalCombo(ID,Price,Value,Part) VALUES('97',convert(money,'7.29'),'13.1952','A')
    INSERT OptimalCombo(ID,Price,Value,Part) VALUES('98',convert(money,'7.64'),'13.188','A')
    INSERT OptimalCombo(ID,Price,Value,Part) VALUES('99',convert(money,'7.74'),'13.0517','A')
    INSERT OptimalCombo(ID,Price,Value,Part) VALUES('100',convert(money,'2.62'),'12.9761','B')
    INSERT OptimalCombo(ID,Price,Value,Part) VALUES('101',convert(money,'4.35'),'12.834','A')
    INSERT OptimalCombo(ID,Price,Value,Part) VALUES('102',convert(money,'6.46'),'12.5904','A')
    INSERT OptimalCombo(ID,Price,Value,Part) VALUES('103',convert(money,'9.53'),'12.5893','B')
    INSERT OptimalCombo(ID,Price,Value,Part) VALUES('104',convert(money,'5.91'),'12.4486','B')
    INSERT OptimalCombo(ID,Price,Value,Part) VALUES('105',convert(money,'6.80'),'12.2639','B')
    INSERT OptimalCombo(ID,Price,Value,Part) VALUES('106',convert(money,'6.69'),'12.2329','B')
    INSERT OptimalCombo(ID,Price,Value,Part) VALUES('107',convert(money,'6.37'),'12.2204','B')
    INSERT OptimalCombo(ID,Price,Value,Part) VALUES('108',convert(money,'7.36'),'11.9331','A')
    INSERT OptimalCombo(ID,Price,Value,Part) VALUES('109',convert(money,'7.63'),'11.5979','A')
    INSERT OptimalCombo(ID,Price,Value,Part) VALUES('110',convert(money,'5.67'),'11.57','B')
    INSERT OptimalCombo(ID,Price,Value,Part) VALUES('111',convert(money,'6.52'),'11.5695','C')
    INSERT OptimalCombo(ID,Price,Value,Part) VALUES('112',convert(money,'6.74'),'11.5054','C')
    INSERT OptimalCombo(ID,Price,Value,Part) VALUES('113',convert(money,'6.37'),'10.979','A')
    INSERT OptimalCombo(ID,Price,Value,Part) VALUES('114',convert(money,'6.24'),'10.9037','C')
    INSERT OptimalCombo(ID,Price,Value,Part) VALUES('115',convert(money,'9.18'),'10.8605','B')
    INSERT OptimalCombo(ID,Price,Value,Part) VALUES('116',convert(money,'6.54'),'10.8433','B')
    INSERT OptimalCombo(ID,Price,Value,Part) VALUES('117',convert(money,'6.21'),'10.6319','A')
    INSERT OptimalCombo(ID,Price,Value,Part) VALUES('118',convert(money,'6.78'),'10.5205','B')
    INSERT OptimalCombo(ID,Price,Value,Part) VALUES('119',convert(money,'5.35'),'10.1602','A')
    INSERT OptimalCombo(ID,Price,Value,Part) VALUES('120',convert(money,'7.21'),'10.135','B')
    INSERT OptimalCombo(ID,Price,Value,Part) VALUES('121',convert(money,'5.03'),'9.96296','C')
    INSERT OptimalCombo(ID,Price,Value,Part) VALUES('122',convert(money,'6.48'),'9.95423','B')
    INSERT OptimalCombo(ID,Price,Value,Part) VALUES('123',convert(money,'7.31'),'9.94387','B')
    INSERT OptimalCombo(ID,Price,Value,Part) VALUES('124',convert(money,'5.03'),'9.71744','A')
    INSERT OptimalCombo(ID,Price,Value,Part) VALUES('125',convert(money,'6.30'),'9.63011','A')
    INSERT OptimalCombo(ID,Price,Value,Part) VALUES('126',convert(money,'6.06'),'9.60822','A')
    INSERT OptimalCombo(ID,Price,Value,Part) VALUES('127',convert(money,'4.96'),'9.54318','B')
    INSERT OptimalCombo(ID,Price,Value,Part) VALUES('128',convert(money,'3.65'),'9.36709','B')
    INSERT OptimalCombo(ID,Price,Value,Part) VALUES('129',convert(money,'6.38'),'9.26422','B')
    INSERT OptimalCombo(ID,Price,Value,Part) VALUES('130',convert(money,'4.13'),'9.11232','A')
    INSERT OptimalCombo(ID,Price,Value,Part) VALUES('131',convert(money,'4.79'),'9.08303','A')
    INSERT OptimalCombo(ID,Price,Value,Part) VALUES('132',convert(money,'7.17'),'8.94436','B')
    INSERT OptimalCombo(ID,Price,Value,Part) VALUES('133',convert(money,'6.48'),'8.89934','A')
    INSERT OptimalCombo(ID,Price,Value,Part) VALUES('134',convert(money,'5.65'),'8.87636','A')
    INSERT OptimalCombo(ID,Price,Value,Part) VALUES('135',convert(money,'4.27'),'8.87305','C')
    INSERT OptimalCombo(ID,Price,Value,Part) VALUES('136',convert(money,'7.83'),'8.73056','A')
    INSERT OptimalCombo(ID,Price,Value,Part) VALUES('137',convert(money,'6.13'),'7.96018','A')
    INSERT OptimalCombo(ID,Price,Value,Part) VALUES('138',convert(money,'6.28'),'7.911','B')
    INSERT OptimalCombo(ID,Price,Value,Part) VALUES('139',convert(money,'4.13'),'7.61774','C')
    INSERT OptimalCombo(ID,Price,Value,Part) VALUES('140',convert(money,'5.94'),'7.39469','A')
    INSERT OptimalCombo(ID,Price,Value,Part) VALUES('141',convert(money,'4.22'),'6.85944','A')
    INSERT OptimalCombo(ID,Price,Value,Part) VALUES('142',convert(money,'3.34'),'6.81982','B')
    INSERT OptimalCombo(ID,Price,Value,Part) VALUES('143',convert(money,'6.60'),'6.56834','A')
    INSERT OptimalCombo(ID,Price,Value,Part) VALUES('144',convert(money,'5.77'),'6.4892','C')
    INSERT OptimalCombo(ID,Price,Value,Part) VALUES('145',convert(money,'3.08'),'5.64715','B')
    INSERT OptimalCombo(ID,Price,Value,Part) VALUES('146',convert(money,'4.38'),'5.36118','B')
    INSERT OptimalCombo(ID,Price,Value,Part) VALUES('147',convert(money,'3.39'),'5.28177','B')
    INSERT OptimalCombo(ID,Price,Value,Part) VALUES('148',convert(money,'6.22'),'5.18103','B')
    INSERT OptimalCombo(ID,Price,Value,Part) VALUES('149',convert(money,'5.10'),'5.15438','A')
    INSERT OptimalCombo(ID,Price,Value,Part) VALUES('150',convert(money,'6.68'),'5.05164','B')
    INSERT OptimalCombo(ID,Price,Value,Part) VALUES('151',convert(money,'5.72'),'5.0001','C')
    INSERT OptimalCombo(ID,Price,Value,Part) VALUES('152',convert(money,'8.56'),'4.33456','B')
    INSERT OptimalCombo(ID,Price,Value,Part) VALUES('153',convert(money,'5.03'),'4.01306','A')
    INSERT OptimalCombo(ID,Price,Value,Part) VALUES('154',convert(money,'5.59'),'3.41515','B')
    INSERT OptimalCombo(ID,Price,Value,Part) VALUES('155',convert(money,'0.00'),'3.30027','A')
    INSERT OptimalCombo(ID,Price,Value,Part) VALUES('182',convert(money,'12.78'),'0','C')
    INSERT OptimalCombo(ID,Price,Value,Part) VALUES('181',convert(money,'8.39'),'0','B')
    INSERT OptimalCombo(ID,Price,Value,Part) VALUES('180',convert(money,'15.53'),'0','C')
    INSERT OptimalCombo(ID,Price,Value,Part) VALUES('179',convert(money,'10.40'),'0','B')
    INSERT OptimalCombo(ID,Price,Value,Part) VALUES('178',convert(money,'16.09'),'0','A')
    INSERT OptimalCombo(ID,Price,Value,Part) VALUES('177',convert(money,'7.49'),'0','C')
    INSERT OptimalCombo(ID,Price,Value,Part) VALUES('176',convert(money,'3.50'),'0','B')
    INSERT OptimalCombo(ID,Price,Value,Part) VALUES('175',convert(money,'6.70'),'0','A')
    INSERT OptimalCombo(ID,Price,Value,Part) VALUES('174',convert(money,'8.26'),'0','C')
    INSERT OptimalCombo(ID,Price,Value,Part) VALUES('173',convert(money,'0.00'),'0','B')
    INSERT OptimalCombo(ID,Price,Value,Part) VALUES('172',convert(money,'0.00'),'0','A')
    INSERT OptimalCombo(ID,Price,Value,Part) VALUES('171',convert(money,'9.07'),'0','B')
    INSERT OptimalCombo(ID,Price,Value,Part) VALUES('170',convert(money,'13.61'),'0','C')
    INSERT OptimalCombo(ID,Price,Value,Part) VALUES('161',convert(money,'9.17'),'0','A')
    INSERT OptimalCombo(ID,Price,Value,Part) VALUES('168',convert(money,'7.23'),'0','B')
    INSERT OptimalCombo(ID,Price,Value,Part) VALUES('167',convert(money,'0.00'),'0','B')
    INSERT OptimalCombo(ID,Price,Value,Part) VALUES('166',convert(money,'6.11'),'0','B')
    INSERT OptimalCombo(ID,Price,Value,Part) VALUES('165',convert(money,'7.86'),'0','A')
    INSERT OptimalCombo(ID,Price,Value,Part) VALUES('164',convert(money,'0.00'),'0','A')
    INSERT OptimalCombo(ID,Price,Value,Part) VALUES('163',convert(money,'7.52'),'0','C')
    INSERT OptimalCombo(ID,Price,Value,Part) VALUES('162',convert(money,'8.75'),'0','A')
    INSERT OptimalCombo(ID,Price,Value,Part) VALUES('183',convert(money,'5.05'),'0','B')
    INSERT OptimalCombo(ID,Price,Value,Part) VALUES('160',convert(money,'0.00'),'0','B')
    INSERT OptimalCombo(ID,Price,Value,Part) VALUES('159',convert(money,'0.00'),'0','C')
    INSERT OptimalCombo(ID,Price,Value,Part) VALUES('158',convert(money,'10.27'),'0','A')
    INSERT OptimalCombo(ID,Price,Value,Part) VALUES('157',convert(money,'6.85'),'0','A')
    INSERT OptimalCombo(ID,Price,Value,Part) VALUES('156',convert(money,'0.00'),'0','B')
    INSERT OptimalCombo(ID,Price,Value,Part) VALUES('169',convert(money,'8.08'),'0','A')
    INSERT OptimalCombo(ID,Price,Value,Part) VALUES('184',convert(money,'4.45'),'0','B')
    DML and DDL for the Raw table above.

  • JRE 1.5 VS. JRE 1.6 - Could not convert socket to TLS

    I have an applet that is trying to send an email through an SMTP server. It works just fine 1.6 but on 1.5 it blows up and I'm kind of at the end of my rope. Any help here would be great.
    I've had to set up the DummySSLSocketFactory as described in the JavaMail readme but still no luck on 1.5.
    Here is the error:
    DEBUG: setDebug: JavaMail version 1.4ea
    DEBUG: getProvider() returning javax.mail.Provider[TRANSPORT,smtp,com.sun.mail.smtp.SMTPTransport,Sun Microsystems, Inc.]
    DEBUG SMTP: useEhlo true, useAuth true
    DEBUG SMTP: trying to connect to host "mail.bluebottle.com", port 25, isSSL false
    220 fe0.bluebottle.com ESMTP Sendmail 8.13.1/8.13.1; Thu, 28 Jun 2007 08:25:34 -0700
    DEBUG SMTP: connected to host "mail.bluebottle.com", port: 25
    EHLO CC-FRED
    250-fe0.bluebottle.com Hello 207-174-73-129.officepartners.us [207.174.73.129] (may be forged), pleased to meet you
    250-ENHANCEDSTATUSCODES
    250-PIPELINING
    250-8BITMIME
    250-SIZE
    250-DSN
    250-AUTH LOGIN PLAIN
    250-STARTTLS
    250-DELIVERBY
    250 HELP
    DEBUG SMTP: Found extension "ENHANCEDSTATUSCODES", arg ""
    DEBUG SMTP: Found extension "PIPELINING", arg ""
    DEBUG SMTP: Found extension "8BITMIME", arg ""
    DEBUG SMTP: Found extension "SIZE", arg ""
    DEBUG SMTP: Found extension "DSN", arg ""
    DEBUG SMTP: Found extension "AUTH", arg "LOGIN PLAIN"
    DEBUG SMTP: Found extension "STARTTLS", arg ""
    DEBUG SMTP: Found extension "DELIVERBY", arg ""
    DEBUG SMTP: Found extension "HELP", arg ""
    STARTTLS
    220 2.0.0 Ready to start TLS
    javax.mail.MessagingException: Could not convert socket to TLS;
      nested exception is:
                    java.net.SocketException: com.cc.util.controller.email.DummySSLSocketFactory
                    at com.sun.mail.smtp.SMTPTransport.startTLS(SMTPTransport.java:1230)
                    at com.sun.mail.smtp.SMTPTransport.protocolConnect(SMTPTransport.java:378)
                    at javax.mail.Service.connect(Service.java:275)
                    at javax.mail.Service.connect(Service.java:156)
                    at javax.mail.Service.connect(Service.java:176)
                    at com.cc.util.discovery.DiscoveryService.sendViaSMTP(DiscoveryService.java:422)
                    at com.cc.util.discovery.DiscoveryService.discoverSMTPService(DiscoveryService.java:378)
                    at com.cc.util.discovery.DiscoveryService.discoverPOP3Service(DiscoveryService.java:330)
                    at com.cc.util.discovery.DiscoveryService.checkEmailService(DiscoveryService.java:126)
                    at com.cc.applet.CCNonBlockingThread$1.run(CCNonBlockingThread.java:180)
                    at java.security.AccessController.doPrivileged(Native Method)
                    at com.cc.applet.CCNonBlockingThread.processEventData(CCNonBlockingThread.java:178)
                    at com.cc.applet.CCNonBlockingThread.run(CCNonBlockingThread.java:139)
    Caused by: java.net.SocketException: com.cc.util.controller.email.DummySSLSocketFactory
                    at javax.net.ssl.DefaultSSLSocketFactory.createSocket(Unknown Source)
                    at com.sun.mail.util.SocketFetcher.startTLS(SocketFetcher.java:249)
                    at com.sun.mail.smtp.SMTPTransport.startTLS(SMTPTransport.java:1226)
                    ... 12 moreHere is the code:
                   Properties props = new Properties();
                   props.put("mail.smtp.auth", "true");
                   props.put("mail.smtp.host", smtpServer);
                   props.put("mail.smtp.starttls.enable","true");
                   // the line below is for java 1.5
                   java.security.Security.setProperty("ssl.SocketFactory.provider","com.cc.util.controller.email.DummySSLSocketFactory");
                   // these are for java 1.4
                  props.setProperty("mail.smtps.socketFactory.class","com.cc.util.controller.email.DummySSLSocketFactory");
                  props.setProperty("mail.smtps.socketFactory.fallback", "false");
                   Session session = Session.getInstance(props, null);
                   session.setDebug(true);
                   // -- Create a new message --
                   Message msg = new MimeMessage(session);
                   // -- Set the FROM and TO fields --
                   msg.setFrom(new InternetAddress(from));
                   msg.setRecipients(Message.RecipientType.TO,InternetAddress.parse(to, false));
                   // -- Set the subject and body text --
                   msg.setSubject(subject);
                   msg.setText(body);
                   // -- Set some other header information --
                   msg.setHeader("X-Mailer", "FuserDiscoveryProcess");
                   msg.setSentDate(new Date());
                   // -- Send the message --
                   Transport tr = session.getTransport("smtp");
                   tr.connect(username, password);
                   tr.sendMessage(msg,msg.getAllRecipients());
                   tr.close();
                   CCLogger.getLogger().log(Level.INFO, "Message sent OK.");

    new info it works on 1.5.0_10 but not 1.5.0_06 any ideas?

  • MailAPI SMTP sending error: 'Could not convert socket to TLS'

    I'm stucked with smtp authentication in a project.
    The process works on port 25 with no STARTTLS, but unfortunately our company server uses port 587 and STARTTLS.
    It seems that only the half of the authentication process could be successful, as the server accepts EHLO, but when it switches to secure the program fails with the exception:
    'Could not convert socket to TLS'
    The simplified code (from a sample app) is:
    public void SendMail() throws Exception{
            Properties props = new Properties();
            props.setProperty("mail.transport.protocol", "smtp");
            props.setProperty("mail.smtp.host", "smtpserver");
            props.setProperty("mail.smtp.port", "587");
            props.setProperty("mail.smtp.auth", "true");
            props.setProperty("mail.smtp.auth.ntlm.domain", "codomain");
            props.setProperty("mail.smtp.starttls.required", "true");
            props.setProperty("mail.smtp.auth.mechanisms", "LOGIN NTLM");
            Session mailSession = Session.getDefaultInstance(props, null);
            mailSession.setDebug(true);
            Transport transport = mailSession.getTransport();
            MimeMessage message = new MimeMessage(mailSession);
            message.setSubject("My subject");
            message.setFrom(new InternetAddress("[email protected]"));
            message.setContent("<h1>Hello world</h1>", "text/html");
            message.addRecipient(Message.RecipientType.TO,
                                new InternetAddress("[email protected]"));
            transport.connect("smtpserver", 587, "CODOMAIN\\myaccount", "mypass");
            transport.sendMessage(message,
            message.getRecipients(Message.RecipientType.TO));
            transport.close();
       }

    I'll copy the full message below:
    +2010.06.29. 12:03:10 mailapi_2.Main main+
    SEVERE: null
    javax.mail.MessagingException: Could not convert socket to TLS;+
    nested exception is:
    javax.net.ssl.SSLHandshakeException: sun.security.validator.ValidatorException: PKIX path building failed: sun.security.provider.certpath.SunCertPathBuilderException: unable to find valid certification path to requested target
    at com.sun.mail.smtp.SMTPTransport.startTLS(SMTPTransport.java:1652)
    at com.sun.mail.smtp.SMTPTransport.protocolConnect(SMTPTransport.java:534)
    at javax.mail.Service.connect(Service.java:291)
    at mailapi_2.SimpleMail.SendMail1(SimpleMail.java:59)
    at mailapi_2.Main.main(Main.java:23)
    Caused by: javax.net.ssl.SSLHandshakeException: sun.security.validator.ValidatorException: PKIX path building failed: sun.security.provider.certpath.SunCertPathBuilderException: unable to find valid certification path to requested target
    at com.sun.net.ssl.internal.ssl.Alerts.getSSLException(Alerts.java:174)
    at com.sun.net.ssl.internal.ssl.SSLSocketImpl.fatal(SSLSocketImpl.java:1591)
    at com.sun.net.ssl.internal.ssl.Handshaker.fatalSE(Handshaker.java:187)
    at com.sun.net.ssl.internal.ssl.Handshaker.fatalSE(Handshaker.java:181)
    at com.sun.net.ssl.internal.ssl.ClientHandshaker.serverCertificate(ClientHandshaker.java:1035)
    at com.sun.net.ssl.internal.ssl.ClientHandshaker.processMessage(ClientHandshaker.java:124)
    at com.sun.net.ssl.internal.ssl.Handshaker.processLoop(Handshaker.java:516)
    at com.sun.net.ssl.internal.ssl.Handshaker.process_record(Handshaker.java:454)
    at com.sun.net.ssl.internal.ssl.SSLSocketImpl.readRecord(SSLSocketImpl.java:884)
    at com.sun.net.ssl.internal.ssl.SSLSocketImpl.performInitialHandshake(SSLSocketImpl.java:1096)
    at com.sun.net.ssl.internal.ssl.SSLSocketImpl.startHandshake(SSLSocketImpl.java:1123)
    at com.sun.net.ssl.internal.ssl.SSLSocketImpl.startHandshake(SSLSocketImpl.java:1107)
    at com.sun.mail.util.SocketFetcher.configureSSLSocket(SocketFetcher.java:503)
    at com.sun.mail.util.SocketFetcher.startTLS(SocketFetcher.java:443)
    at com.sun.mail.smtp.SMTPTransport.startTLS(SMTPTransport.java:1647)
    +... 4 more+
    Caused by: sun.security.validator.ValidatorException: PKIX path building failed: sun.security.provider.certpath.SunCertPathBuilderException: unable to find valid certification path to requested target
    at sun.security.validator.PKIXValidator.doBuild(PKIXValidator.java:285)
    at sun.security.validator.PKIXValidator.engineValidate(PKIXValidator.java:191)
    at sun.security.validator.Validator.validate(Validator.java:218)
    at com.sun.net.ssl.internal.ssl.X509TrustManagerImpl.validate(X509TrustManagerImpl.java:126)
    at com.sun.net.ssl.internal.ssl.X509TrustManagerImpl.checkServerTrusted(X509TrustManagerImpl.java:209)
    Could not convert socket to TLS
    at com.sun.net.ssl.internal.ssl.X509TrustManagerImpl.checkServerTrusted(X509TrustManagerImpl.java:249)
    at com.sun.net.ssl.internal.ssl.ClientHandshaker.serverCertificate(ClientHandshaker.java:1014)
    +... 14 more+
    Caused by: sun.security.provider.certpath.SunCertPathBuilderException: unable to find valid certification path to requested target
    at sun.security.provider.certpath.SunCertPathBuilder.engineBuild(SunCertPathBuilder.java:174)
    at java.security.cert.CertPathBuilder.build(CertPathBuilder.java:238)
    at sun.security.validator.PKIXValidator.doBuild(PKIXValidator.java:280)
    +... 20 more+
    And the output panel before the exception:
    Sending mail...
    DEBUG: setDebug: JavaMail version 1.4.3
    +DEBUG: getProvider() returning javax.mail.Provider[TRANSPORT,smtp,com.sun.mail.smtp.SMTPTransport,Sun Microsystems, Inc]+
    DEBUG SMTP: useEhlo true, useAuth true
    DEBUG SMTP: trying to connect to host "smtpserver", port 587, isSSL false
    +220 exch.plt.local Microsoft ESMTP MAIL Service ready at Tue, 29 Jun 2010 12:03:08 +0200+
    DEBUG SMTP: connected to host "smtpserver", port: 587
    EHLO machine.codomain.local
    +250-smtpserver.codomain.local Hello [xxx.xxx.xxx.xxx]+
    +250-SIZE 15728640+
    +250-PIPELINING+
    +250-DSN+
    +250-ENHANCEDSTATUSCODES+
    +250-STARTTLS+
    +250-AUTH GSSAPI NTLM+
    +250-8BITMIME+
    +250-BINARYMIME+
    +250 CHUNKING+
    DEBUG SMTP: Found extension "SIZE", arg "15728640"
    DEBUG SMTP: Found extension "PIPELINING", arg ""
    DEBUG SMTP: Found extension "DSN", arg ""
    DEBUG SMTP: Found extension "ENHANCEDSTATUSCODES", arg ""
    DEBUG SMTP: Found extension "STARTTLS", arg ""
    DEBUG SMTP: Found extension "AUTH", arg "GSSAPI NTLM"
    DEBUG SMTP: Found extension "8BITMIME", arg ""
    DEBUG SMTP: Found extension "BINARYMIME", arg ""
    DEBUG SMTP: Found extension "CHUNKING", arg ""
    STARTTLS
    +220 2.0.0 SMTP server ready+

  • Issue in converting Struts view to JSF view using struts-faces integration

    Hi All,
    I am facing a issue in my Sruts to JSF conversion application using struts-faces.jar integration library.
    Need expert's help desperately as I am not able to use <s:form> tag in my new jsf page to call a struts action.
    I want to call a struts action from my web page designed using JSF,
    but it seems impossible without using <s:form> tag from struts-faces integration library.
    Please suggest how to resolve this...
    I am using WSAD 5.1 IDE with inbuilt Test environment WebSphere server
    JSF Version: Sun's RI 1.1
    Struts framework: 1.2.6
    Struts-Faces Integration Library version: 1.0
    I have configured a controller element in struts-config.xml file as has been suggested by different online
    documents I studied:
    <controller>
    <set-property property="processorClass"
    value="org.apache.struts.faces.application.FacesRequestProcessor"/>
    </controller>
    But configuring a controller does not allow my test server to start up properly and due to errors the ActionServlet also becomes unavailable.
    If I comment the controller and start the test server it starts fine but then I cannot access the converted jsf page which contains the <s:form action="/xxxxx.do"> tag.
    If now I get back to <h:form> tag instead of <s:form> tag with a <h:commandButton action="xxxx.do"/> for form submission in my jsf page, I see the html page generated with all components but now checking the html source generated I see
    <form action="/contextName/jspFolder/sameDisplayedPage.jsf"> which is not valid and never gets called successfully.
    I think someways I need to use the <s:form> tag with the controller configured properly to use the struts-faces integration library's request processor, to get things working. But HOW???
    Following is the error I get if I use the <controller> tag element in struts-config.xml file and start the server.
    This error appears on starting the server without accessing any application's jsp web page
    [6/12/06 15:31:14:109 IST] 3e311815 ActionServlet E org.apache.struts.action.ActionServlet Unable to initialize Struts ActionServlet due to an unexpected exception or error thrown, so marking the servlet as unavailable. Most likely, this is due to an incorrect or missing library dependency.
    [6/12/06 15:31:14:109 IST] 3e311815 ActionServlet E org.apache.struts.action.ActionServlet TRAS0014I: The following exception was logged java.lang.IllegalAccessError: org.apache.commons.digester.SetPropertyRule tried to access method org/apache/commons/beanutils/BeanUtils.setProperty(Ljava/lang/Object;Ljava/lang/String;Ljava/lang/Object;)V
    at org.apache.commons.digester.SetPropertyRule.begin(SetPropertyRule.java:198)
    at org.apache.commons.digester.Rule.begin(Rule.java:200)
    at org.apache.commons.digester.Digester.startElement(Digester.java:1273)
    at org.apache.xerces.parsers.AbstractSAXParser.startElement(Unknown Source)
    at org.apache.xerces.parsers.AbstractXMLDocumentParser.emptyElement(Unknown Source)
    at org.apache.xerces.impl.dtd.XMLDTDValidator.emptyElement(Unknown Source)
    at org.apache.xerces.impl.XMLNSDocumentScannerImpl.scanStartElement(Unknown Source)
    at org.apache.xerces.impl.XMLDocumentFragmentScannerImpl$FragmentContentDispatcher.dispatch(Unknown Source)
    at org.apache.xerces.impl.XMLDocumentFragmentScannerImpl.scanDocument(Unknown Source)
    at org.apache.xerces.parsers.XML11Configuration.parse(Unknown Source)
    at org.apache.xerces.parsers.DTDConfiguration.parse(Unknown Source)
    at org.apache.xerces.parsers.XMLParser.parse(Unknown Source)
    at org.apache.xerces.parsers.AbstractSAXParser.parse(Unknown Source)
    at org.apache.commons.digester.Digester.parse(Digester.java:1548)
    at org.apache.struts.action.ActionServlet.parseModuleConfigFile(ActionServlet.java:736)
    at org.apache.struts.action.ActionServlet.initModuleConfig(ActionServlet.java:685)
    at org.apache.struts.action.ActionServlet.init(ActionServlet.java:331)
    at javax.servlet.GenericServlet.init(GenericServlet.java:258)
    at com.ibm.ws.webcontainer.servlet.StrictServletInstance.doInit(StrictServletInstance.java:82)
    at com.ibm.ws.webcontainer.servlet.StrictLifecycleServlet._init(StrictLifecycleServlet.java:147)
    at com.ibm.ws.webcontainer.servlet.PreInitializedServletState.init(StrictLifecycleServlet.java:270)
    at com.ibm.ws.webcontainer.servlet.StrictLifecycleServlet.init(StrictLifecycleServlet.java:113)
    at com.ibm.ws.webcontainer.servlet.ServletInstance.init(ServletInstance.java:189)
    at javax.servlet.GenericServlet.init(GenericServlet.java:258)
    at com.ibm.ws.webcontainer.webapp.WebAppServletManager.addServlet(WebAppServletManager.java:870)
    at com.ibm.ws.webcontainer.webapp.WebAppServletManager.loadServlet(WebAppServletManager.java:224)
    at com.ibm.ws.webcontainer.webapp.WebAppServletManager.loadAutoLoadServlets(WebAppServletManager.java:542)
    at com.ibm.ws.webcontainer.webapp.WebApp.loadServletManager(WebApp.java:1277)
    at com.ibm.ws.webcontainer.webapp.WebApp.init(WebApp.java:283)
    at com.ibm.ws.webcontainer.srt.WebGroup.loadWebApp(WebGroup.java:387)
    at com.ibm.ws.webcontainer.srt.WebGroup.init(WebGroup.java:209)
    at com.ibm.ws.webcontainer.WebContainer.addWebApplication(WebContainer.java:987)
    at com.ibm.ws.runtime.component.WebContainerImpl.install(WebContainerImpl.java:136)
    at com.ibm.ws.runtime.component.WebContainerImpl.start(WebContainerImpl.java:356)
    at com.ibm.ws.runtime.component.ApplicationMgrImpl.start(ApplicationMgrImpl.java:418)
    at com.ibm.ws.runtime.component.DeployedApplicationImpl.fireDeployedObjectStart(DeployedApplicationImpl.java:787)
    at com.ibm.ws.runtime.component.DeployedModuleImpl.start(DeployedModuleImpl.java:354)
    at com.ibm.ws.runtime.component.DeployedApplicationImpl.start(DeployedApplicationImpl.java:575)
    at com.ibm.ws.runtime.component.ApplicationMgrImpl.startApplication(ApplicationMgrImpl.java:271)
    at com.ibm.ws.runtime.component.ApplicationMgrImpl.start(ApplicationMgrImpl.java:249)
    at com.ibm.ws.runtime.component.ContainerImpl.startComponents(ContainerImpl.java:536)
    at com.ibm.ws.runtime.component.ContainerImpl.start(ContainerImpl.java:413)
    at com.ibm.ws.runtime.component.ApplicationServerImpl.start(ApplicationServerImpl.java:125)
    at com.ibm.ws.runtime.component.ContainerImpl.startComponents(ContainerImpl.java:536)
    at com.ibm.ws.runtime.component.ContainerImpl.start(ContainerImpl.java:413)
    at com.ibm.ws.runtime.component.ServerImpl.start(ServerImpl.java:183)
    at com.ibm.ws.runtime.WsServer.start(WsServer.java:128)
    at com.ibm.ws.runtime.WsServer.main(WsServer.java:225)
    at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
    at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:79)
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:41)
    at java.lang.reflect.Method.invoke(Method.java:386)
    at com.ibm.ws.bootstrap.WSLauncher.main(WSLauncher.java:94)
    at com.ibm.etools.websphere.tools.runner.api.ServerRunnerV5$1.run(ServerRunnerV5.java:97)
    [6/12/06 15:31:14:188 IST] 3e311815 WebGroup E SRVE0020E: [Servlet Error]-[ActionServlet]: Failed to load servlet: javax.servlet.UnavailableException: org.apache.commons.digester.SetPropertyRule tried to access method org/apache/commons/beanutils/BeanUtils.setProperty(Ljava/lang/Object;Ljava/lang/String;Ljava/lang/Object;)V
    at org.apache.struts.action.ActionServlet.init(ActionServlet.java:366)
    at javax.servlet.GenericServlet.init(GenericServlet.java:258)
    at com.ibm.ws.webcontainer.servlet.StrictServletInstance.doInit(StrictServletInstance.java:82)
    at com.ibm.ws.webcontainer.servlet.StrictLifecycleServlet._init(StrictLifecycleServlet.java:147)
    at com.ibm.ws.webcontainer.servlet.PreInitializedServletState.init(StrictLifecycleServlet.java:270)
    at com.ibm.ws.webcontainer.servlet.StrictLifecycleServlet.init(StrictLifecycleServlet.java:113)
    at com.ibm.ws.webcontainer.servlet.ServletInstance.init(ServletInstance.java:189)
    at javax.servlet.GenericServlet.init(GenericServlet.java:258)
    at com.ibm.ws.webcontainer.webapp.WebAppServletManager.addServlet(WebAppServletManager.java:870)
    at com.ibm.ws.webcontainer.webapp.WebAppServletManager.loadServlet(WebAppServletManager.java:224)
    at com.ibm.ws.webcontainer.webapp.WebAppServletManager.loadAutoLoadServlets(WebAppServletManager.java:542)
    at com.ibm.ws.webcontainer.webapp.WebApp.loadServletManager(WebApp.java:1277)
    at com.ibm.ws.webcontainer.webapp.WebApp.init(WebApp.java:283)
    at com.ibm.ws.webcontainer.srt.WebGroup.loadWebApp(WebGroup.java:387)
    at com.ibm.ws.webcontainer.srt.WebGroup.init(WebGroup.java:209)
    at com.ibm.ws.webcontainer.WebContainer.addWebApplication(WebContainer.java:987)
    at com.ibm.ws.runtime.component.WebContainerImpl.install(WebContainerImpl.java:136)
    at com.ibm.ws.runtime.component.WebContainerImpl.start(WebContainerImpl.java:356)
    at com.ibm.ws.runtime.component.ApplicationMgrImpl.start(ApplicationMgrImpl.java:418)
    at com.ibm.ws.runtime.component.DeployedApplicationImpl.fireDeployedObjectStart(DeployedApplicationImpl.java:787)
    at com.ibm.ws.runtime.component.DeployedModuleImpl.start(DeployedModuleImpl.java:354)
    at com.ibm.ws.runtime.component.DeployedApplicationImpl.start(DeployedApplicationImpl.java:575)
    at com.ibm.ws.runtime.component.ApplicationMgrImpl.startApplication(ApplicationMgrImpl.java:271)
    at com.ibm.ws.runtime.component.ApplicationMgrImpl.start(ApplicationMgrImpl.java:249)
    at com.ibm.ws.runtime.component.ContainerImpl.startComponents(ContainerImpl.java:536)
    at com.ibm.ws.runtime.component.ContainerImpl.start(ContainerImpl.java:413)
    at com.ibm.ws.runtime.component.ApplicationServerImpl.start(ApplicationServerImpl.java:125)
    at com.ibm.ws.runtime.component.ContainerImpl.startComponents(ContainerImpl.java:536)
    at com.ibm.ws.runtime.component.ContainerImpl.start(ContainerImpl.java:413)
    at com.ibm.ws.runtime.component.ServerImpl.start(ServerImpl.java:183)
    at com.ibm.ws.runtime.WsServer.start(WsServer.java:128)
    at com.ibm.ws.runtime.WsServer.main(WsServer.java:225)
    at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
    at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:79)
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:41)
    at java.lang.reflect.Method.invoke(Method.java:386)
    at com.ibm.ws.bootstrap.WSLauncher.main(WSLauncher.java:94)
    at com.ibm.etools.websphere.tools.runner.api.ServerRunnerV5$1.run(ServerRunnerV5.java:97)
    (same error message re-iterates/repeats itself... and finally -
    Error 503: Failed to load target servlet [ActionServlet] comes in web-browser
    Following is the error which I get if I comment the <controller> element in the struts-config.xml file
    and use a <s:form action="xxxxx.do"> in the struts converted jsf page. The web-server starts fine, but
    accessing the jsf page givers error as:
    [6/12/06 15:38:00:781 IST] 696f19de WebGroup I SRVE0180I: [Sample Struts-JSF integration application] [training2] [Servlet.LOG]: /jsp/welcomeF.jsp: init
    [6/12/06 15:38:01:219 IST] 696f19de WebGroup E SRVE0026E: [Servlet Error]-[]: java.lang.NullPointerException
    at org.apache.struts.faces.renderer.FormRenderer.encodeBegin(FormRenderer.java:114)
    at javax.faces.component.UIComponentBase.encodeBegin(UIComponentBase.java:683)
    at javax.faces.webapp.UIComponentTag.encodeBegin(UIComponentTag.java:591)
    at javax.faces.webapp.UIComponentTag.doStartTag(UIComponentTag.java:478)
    at org.apache.jsp._welcomeF._jspService(_welcomeF.java:207)
    at com.ibm.ws.webcontainer.jsp.runtime.HttpJspBase.service(HttpJspBase.java:89)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
    at com.ibm.ws.webcontainer.jsp.servlet.JspServlet$JspServletWrapper.service(JspServlet.java:344)
    at com.ibm.ws.webcontainer.jsp.servlet.JspServlet.serviceJspFile(JspServlet.java:662)
    at com.ibm.ws.webcontainer.jsp.servlet.JspServlet.service(JspServlet.java:760)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
    at com.ibm.ws.webcontainer.servlet.StrictServletInstance.doService(StrictServletInstance.java:110)
    at com.ibm.ws.webcontainer.servlet.StrictLifecycleServlet._service(StrictLifecycleServlet.java:174)
    at com.ibm.ws.webcontainer.servlet.IdleServletState.service(StrictLifecycleServlet.java:313)
    at com.ibm.ws.webcontainer.servlet.StrictLifecycleServlet.service(StrictLifecycleServlet.java:116)
    at com.ibm.ws.webcontainer.servlet.ServletInstance.service(ServletInstance.java:283)
    at com.ibm.ws.webcontainer.servlet.ValidServletReferenceState.dispatch(ValidServletReferenceState.java:42)
    at com.ibm.ws.webcontainer.servlet.ServletInstanceReference.dispatch(ServletInstanceReference.java:40)
    at com.ibm.ws.webcontainer.webapp.WebAppRequestDispatcher.handleWebAppDispatch(WebAppRequestDispatcher.java:974)
    at com.ibm.ws.webcontainer.webapp.WebAppRequestDispatcher.dispatch(WebAppRequestDispatcher.java:555)
    at com.ibm.ws.webcontainer.webapp.WebAppRequestDispatcher.forward(WebAppRequestDispatcher.java:200)
    at com.sun.faces.context.ExternalContextImpl.dispatch(ExternalContextImpl.java:322)
    at com.sun.faces.application.ViewHandlerImpl.renderView(ViewHandlerImpl.java:130)
    at org.apache.struts.faces.application.ViewHandlerImpl.renderView(ViewHandlerImpl.java:130)
    at com.sun.faces.lifecycle.RenderResponsePhase.execute(RenderResponsePhase.java:87)
    at com.sun.faces.lifecycle.LifecycleImpl.phase(LifecycleImpl.java:200)
    at com.sun.faces.lifecycle.LifecycleImpl.render(LifecycleImpl.java:117)
    at javax.faces.webapp.FacesServlet.service(FacesServlet.java:198)
    at com.ibm.ws.webcontainer.servlet.StrictServletInstance.doService(StrictServletInstance.java:110)
    at com.ibm.ws.webcontainer.servlet.StrictLifecycleServlet._service(StrictLifecycleServlet.java:174)
    at com.ibm.ws.webcontainer.servlet.IdleServletState.service(StrictLifecycleServlet.java:313)
    at com.ibm.ws.webcontainer.servlet.StrictLifecycleServlet.service(StrictLifecycleServlet.java:116)
    at com.ibm.ws.webcontainer.servlet.ServletInstance.service(ServletInstance.java:283)
    at com.ibm.ws.webcontainer.servlet.ValidServletReferenceState.dispatch(ValidServletReferenceState.java:42)
    at com.ibm.ws.webcontainer.servlet.ServletInstanceReference.dispatch(ServletInstanceReference.java:40)
    at com.ibm.ws.webcontainer.webapp.WebAppRequestDispatcher.handleWebAppDispatch(WebAppRequestDispatcher.java:974)
    at com.ibm.ws.webcontainer.webapp.WebAppRequestDispatcher.dispatch(WebAppRequestDispatcher.java:555)
    at com.ibm.ws.webcontainer.webapp.WebAppRequestDispatcher.forward(WebAppRequestDispatcher.java:200)
    at org.apache.struts.action.RequestProcessor.doForward(RequestProcessor.java:1054)
    at org.apache.struts.action.RequestProcessor.internalModuleRelativeForward(RequestProcessor.java:992)
    at org.apache.struts.action.RequestProcessor.processForward(RequestProcessor.java:551)
    at org.apache.struts.action.RequestProcessor.process(RequestProcessor.java:209)
    at org.apache.struts.action.ActionServlet.process(ActionServlet.java:1192)
    at org.apache.struts.action.ActionServlet.doGet(ActionServlet.java:412)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:740)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
    at com.ibm.ws.webcontainer.servlet.StrictServletInstance.doService(StrictServletInstance.java:110)
    at com.ibm.ws.webcontainer.servlet.StrictLifecycleServlet._service(StrictLifecycleServlet.java:174)
    at com.ibm.ws.webcontainer.servlet.IdleServletState.service(StrictLifecycleServlet.java:313)
    at com.ibm.ws.webcontainer.servlet.StrictLifecycleServlet.service(StrictLifecycleServlet.java:116)
    at com.ibm.ws.webcontainer.servlet.ServletInstance.service(ServletInstance.java:283)
    at com.ibm.ws.webcontainer.servlet.ValidServletReferenceState.dispatch(ValidServletReferenceState.java:42)
    at com.ibm.ws.webcontainer.servlet.ServletInstanceReference.dispatch(ServletInstanceReference.java:40)
    at com.ibm.ws.webcontainer.webapp.WebAppRequestDispatcher.handleWebAppDispatch(WebAppRequestDispatcher.java:974)
    at com.ibm.ws.webcontainer.webapp.WebAppRequestDispatcher.dispatch(WebAppRequestDispatcher.java:555)
    at com.ibm.ws.webcontainer.webapp.WebAppRequestDispatcher.forward(WebAppRequestDispatcher.java:200)
    at com.ibm.ws.webcontainer.srt.WebAppInvoker.doForward(WebAppInvoker.java:119)
    at com.ibm.ws.webcontainer.srt.WebAppInvoker.handleInvocationHook(WebAppInvoker.java:276)
    at com.ibm.ws.webcontainer.cache.invocation.CachedInvocation.handleInvocation(CachedInvocation.java:71)
    at com.ibm.ws.webcontainer.srp.ServletRequestProcessor.dispatchByURI(ServletRequestProcessor.java:182)
    at com.ibm.ws.webcontainer.oselistener.OSEListenerDispatcher.service(OSEListener.java:334)
    at com.ibm.ws.webcontainer.http.HttpConnection.handleRequest(HttpConnection.java:56)
    at com.ibm.ws.http.HttpConnection.readAndHandleRequest(HttpConnection.java:618)
    at com.ibm.ws.http.HttpConnection.run(HttpConnection.java:439)
    at com.ibm.ws.util.ThreadPool$Worker.run(ThreadPool.java:593)
    Finally if I change my <s:form action="xxxxx.do"> tag to
    <h:form>
    <h:commandButton id="submit" action="xxxx.do" value="Submit" />
    I see the webpage coming up in the browser (no controller element used in struts-config.xml file this time)
    But in the html source of this html created from jsf I see
    <form id="_id2" method="post" action="/training2/jsp/welcomeF.faces" enctype="application/x-www-form-urlencoded">
    here form's action attribute is pointing to the same displayed page with the context name prefixed. I
    assume it is because jsf could not resolve the "xxxx.do" action to anything so set it to the same displayed page.
    May be I am wrong as usual...
    Below is the simple struts jsp page which I need to convert to jsf page as I am converting only the View part of application.
    I want to use the same struts beans and application logic at the back-end. At front-end I need UIComponents from JSF to be used.
    Following is the struts jsp page
    <%@ page language="java" contentType="text/html; charset=ISO-8859-1" pageEncoding="ISO-8859-1" %>
    <%@ taglib prefix="html" uri="/WEB-INF/lib/struts-html.tld" %>
    <%@ taglib prefix="bean" uri="/WEB-INF/lib/struts-bean.tld" %>
    <html:html>
    <html:base/>
    <html:messages id="messages" />
    <font style="color:red; font=weight:italic; font-family: century gothic">
    <html:errors/>
    </font>
    <BODY>
    <P>Sample Struts and JSF integration example</P>
    <P>This one is being displayed via Struts specific tags</P>
    <html:form action="validateUser.do">
    <bean:message key="label.name" /> : <html:text property="name" />
    <bean:message key="label.password" /> : <html:password property="password" />
    <bean:message key="label.age" /> : <html:text property="age" />
    <bean:message key="label.city" /> : <html:text property="city" />
    <bean:message key="label.address" /> : <html:text property="address" />
    <html:submit property="submit" value="Show info via Struts" />
    </html:form>
    </BODY>
    </html:html>
    I have converted it into the following jsf page
    <%@ page language="java" contentType="text/html; charset=ISO-8859-1" pageEncoding="ISO-8859-1" %>
    <%@ taglib uri="http://java.sun.com/jsf/core" prefix="f" %>
    <%@ taglib uri="http://java.sun.com/jsf/html" prefix="h" %>
    <%@ taglib uri="http://struts.apache.org/tags-faces" prefix="s" %>
    <f:view>
    <HTML><BODY>
    <f:verbatim><P>Sample Struts and JSF integration example</P></f:verbatim>
    <f:verbatim><P>This one is being displayed via JSF tags</P></f:verbatim>
    <h:form> <!-- Want to use s:form tag instead of this h:form tag -->
    <h:inputText id="name" value="#{userForm.name}" /><f:verbatim>
    </f:verbatim>
    <h:inputSecret id="password" value="#{userForm.password}" /><f:verbatim>
    </f:verbatim>
    <h:inputText id="age" value="#{userForm.age}" /><f:verbatim>
    </f:verbatim>
    <h:inputText id="city" value="#{userForm.city}" /><f:verbatim>
    </f:verbatim>
    <h:inputText id="address" value="#{userForm.address}" /><f:verbatim>
    </f:verbatim>
    <h:commandButton id="submit" action="#{user.facesAction}" value="Show info via Struts" />
    </h:form>
    </BODY></HTML>
    </f:view>
    I am very hopeful of some answer from respected group experts, please help me.
    I am in urgency of course but would not push for immed. response like other, just want some help for sure that is going to
    be extremely valuable to me. Anticipating a helping hand...
    Thanks and Regards
    Vishal Sharm
    Time's fun when you're having flies � Kermit, the Frog
    -------------------------------------------------------------------------

    I've managed to get this working Ok from JDeveloper:
    See:
    http://www.groundside.com/blog/content/DuncanMills/J2EE+Development/?permalink=573FDB6F8D918B9704907899635CABB1.txt
    http://www.groundside.com/blog/content/DuncanMills/J2EE+Development/?permalink=2B04ACE99A6437EDED775F15553D1DED.txt
    Basically you just have to fiddle around with Library settings to get this working OK.
    As to how useful this is, well that's up to you - I'd not regard Faces + Struts as a must use combination, rather it's a can mix if you really need to. Look at Faces and Faces navigation first and see if that actually gives you enough before you start to look at mixing.

  • Convert photoshop album SE 3.2 to Photoshop elements

    It seems simple enough.
    I have photoshop album SE 3.2 and it is working well with 8400 photos all tagged is various groups.  I downloaded Photoshop elements 8 and installed it(succesfully). I then tried to convert the database over.  It does 2% then comes up with:
          "The conversion operation failed.  Try repairing the catalog with the software that created it and retry conversion"
    I have checked every photo, hit the "reconnect all missing files" option under the file tab.  held the cntl key upon startup, used the oprimize and repair tabs in photoshop elements and nothing shows any errors but it still will not convert.
    Is there something obvious I am missing ?
    I have about 20 days left on my trial and I want to make sure it works before I buy it.
    Thanking you in advance.

    Thanks.  I can see a couple of messages that look like errors but do not know how to handle them.
    conversion log: C:/ProgramData/Adobe/Photoshop Album/Catalogs/My Catalog.psa to C:/ProgramData/Adobe/Elements Organizer/Catalogs/My Catalog elements1
    storing catalog guid = 538b246d-3a7f-4db0-83f5-d84a928e10be
    --- tag processing - reading tags ---
    p:1 -> user tag a:7 "People"
    p:2 -> user tag a:8 "Places"
    p:3 -> user tag a:9 "Events"
    p:4 -> user tag a:10 "Other"
    p:5 -> discarding top level import tag
    p:6 -> skipped
    unable to process tag p:6 "Shared - Incoming", a=000b0004 fa=04 ia=0b parent=0 next=7 firstchild=0
    p:7 -> discarding top level history tag
    p:8 -> discarding top level day note tag
    p:9 -> favorite rating 5
    p:10 -> discarding top level collection tag
    p:11 -> hidden tag a:12
    p:12 -> discarding top level history tag
    p:13 -> discarding top level history tag
    p:14 -> noted as creation
    p:15 -> discarding top level history tag
    p:16 -> discarding top level offline tag
    p:17 -> noted as stack
    p:18 -> skipped
    unable to process tag p:18 "", a=00130004 fa=04 ia=13 parent=0 next=19 firstchild=0
    p:19 -> discarding top level history tag
    p:20 -> skipped
    unable to process tag p:20 "", a=00150004 fa=04 ia=15 parent=0 next=21 firstchild=0
    p:21 -> skipped
    unable to process tag p:21 "", a=00160004 fa=04 ia=16 parent=0 next=0 firstchild=0
    p:22 -> user tag a:13 "Family"
    p:23 -> user tag a:14 "Friends"
    p:26 -> import a:16
    p:27 -> import a:25
    p:29 -> import a:30
    p:30 -> print history tag a:37
    p:31 -> collection tag a:41 "New House build"
    p:32 -> collection tag a:46 "Mum"
    p:33 -> collection tag a:51 "Dad"
    p:34 -> collection tag a:55 "Felicia"
    p:35 -> collection tag a:59 "Den"
    p:36 -> collection tag a:63 "Auntie Kathrene"
    p:37 -> collection tag a:66 "Uncle Brother"
    p:38 -> collection tag a:69 "Auntie Helen"
    p:39 -> collection tag a:72 "Yaya and Papau"
    p:40 -> collection tag a:75 "Auntie Jodie, Jack, Katie & Brianne"
    p:41 -> collection tag a:78 "Miranda"
    p:42 -> collection tag a:81 "Joshua, Lauchlan, Jordan & Heather"
    p:43 -> collection tag a:84 "Weddings and adult parties"
    p:45 -> collection tag a:88 "Holidays"
    p:46 -> collection tag a:91 "Outings"
    p:47 -> collection tag a:94 "Dor's relos"
    p:48 -> collection tag a:97 "Kids parties"
    p:49 -> collection tag a:101 "School"
    p:50 -> collection tag a:104 "Family birthdays"
    p:51 -> collection tag a:107 "Jess"
    p:52 -> collection tag a:110 "Easter"
    p:53 -> collection tag a:113 "Beach"
    p:54 -> collection tag a:116 "Bath time"
    p:55 -> collection tag a:119 "Christmas"
    p:56 -> collection tag a:122 "QLD House"
    p:57 -> collection tag a:125 "Fathers Day"
    p:58 -> collection tag a:128 "Maroubra home"
    p:59 -> collection tag a:131 "Friends"
    p:60 -> collection tag a:134 "Felicia's Christening"
    p:61 -> collection tag a:137 "Bryan's relos"
    p:62 -> collection tag a:140 "Den's Christening"
    p:63 -> collection tag a:143 "Football"
    p:64 -> collection tag a:146 "Den's birth"
    p:66 -> user tag a:149 "Felicia"
    p:67 -> user tag a:153 "Den"
    p:68 -> user tag a:156 "Mum"
    p:69 -> user tag a:160 "Dad"
    p:70 -> user tag a:163 "Christmas"
    p:71 -> user tag a:167 "Bath time"
    p:72 -> user tag a:170 "Auntie Helen"
    p:73 -> user tag a:174 "Auntie Jodie"
    p:74 -> user tag a:178 "AuntKathrene"
    p:75 -> user tag a:182 "Dad's relos"
    p:76 -> user tag a:185 "Mum's relos"
    p:77 -> user tag a:188 "Easters"
    p:78 -> user tag a:191 "Birthdays - Den"
    p:79 -> user tag a:194 "Birthdays - Mum"
    p:80 -> user tag a:197 "Birthdays - Felicia"
    p:81 -> user tag a:200 "Birthdays - Dad"
    p:82 -> user tag a:203 "Birthdays - Jess"
    p:83 -> user tag a:206 "Fathers days"
    p:84 -> user tag a:209 "Yaya & Papau"
    p:85 -> user tag a:212 "Friends"
    p:86 -> user tag a:216 "Joshua, Lauchlan, Heather or Jordan"
    p:87 -> user tag a:219 "Singapore"
    p:88 -> user tag a:222 "Vincentia"
    p:89 -> user tag a:225 "Gold Coast"
    p:90 -> user tag a:228 "Lake Macquarie"
    p:91 -> user tag a:231 "Coffs Harbour"
    p:92 -> user tag a:234 "Port Stephens"
    p:93 -> user tag a:237 "Mothers days"
    p:94 -> user tag a:240 "Sporting events"
    p:95 -> user tag a:243 "Museum"
    p:96 -> user tag a:246 "Easter show"
    p:97 -> user tag a:249 "Canberra"
    p:98 -> user tag a:252 "Fitness at Sydney Olympic"
    p:99 -> user tag a:255 "Fairy rides"
    p:100 -> user tag a:258 "Indoor play areas"
    p:101 -> user tag a:262 "Shows"
    p:102 -> user tag a:266 "Symbio Park"
    p:103 -> user tag a:269 "Parks & beaches"
    p:104 -> user tag a:272 "Taronga Zoo"
    p:105 -> user tag a:275 "NYE"
    p:106 -> user tag a:278 "Aquarium with Jess"
    p:107 -> user tag a:281 "Miranda home"
    p:108 -> user tag a:284 "Uncle Brother"
    p:109 -> print history tag a:287
    p:110 -> user tag a:290 "Jess"
    p:111 -> print history tag a:293
    p:112 -> print history tag a:296
    p:113 -> import a:299
    p:114 -> import a:304
    p:115 -> user tag a:309 "Schools"
    p:116 -> user tag a:313 "Kids parties"
    p:117 -> import a:316
    p:118 -> print history tag a:321
    p:119 -> print history tag a:324
    p:120 -> import a:327
    p:121 -> import a:332
    p:122 -> print history tag a:337
    p:123 -> print history tag a:340
    p:124 -> import a:343
    p:125 -> import a:348
    p:126 -> import a:353
    p:127 -> import a:358
    p:128 -> import a:363
    p:129 -> print history tag a:368
    p:130 -> import a:371
    p:131 -> import a:376
    p:132 -> import a:381
    p:133 -> import a:386
    p:134 -> import a:391
    p:135 -> user tag a:396 "Weddings & adult parties"
    p:136 -> import a:399
    p:137 -> import a:404
    p:138 -> import a:409
    p:139 -> print history tag a:414
    p:140 -> print history tag a:417
    p:141 -> print history tag a:420
    p:142 -> print history tag a:423
    p:143 -> print history tag a:426
    p:144 -> print history tag a:429
    p:145 -> print history tag a:432
    p:146 -> print history tag a:435
    p:148 -> import a:438
    p:149 -> import a:443
    p:150 -> import a:448
    p:151 -> import a:453
    p:152 -> import a:458
    p:153 -> import a:463
    p:154 -> user tag a:468 "New Car"
    p:155 -> user tag a:471 "Maroubra"
    p:156 -> import a:474
    p:157 -> print history tag a:479
    p:158 -> print history tag a:482
    p:159 -> import a:485
    p:160 -> import a:490
    p:161 -> user tag a:495 "Snow"
    p:162 -> print history tag a:498
    p:163 -> print history tag a:501
    p:164 -> print history tag a:504
    p:165 -> print history tag a:507
    p:166 -> print history tag a:510
    p:167 -> print history tag a:513
    p:168 -> user tag a:516 "Christenings"
    p:169 -> import a:519
    --- tag processing - reparenting user tags ---
    p:1 children = a:13 a:14
    p:2 children = a:219 a:222 a:225 a:228 a:231 a:234 a:281 a:471 a:495
    p:3 children = a:163 a:167 a:188 a:191 a:194 a:197 a:200 a:203 a:206 a:237 a:240 a:243 a:246 a:249 a:252 a:255 a:258 a:262 a:266 a:269 a:272 a:275 a:278 a:313 a:396 a:468 a:516
    p:4 children = a:309
    p:22 children = a:149 a:153 a:156 a:160 a:170 a:174 a:178 a:182 a:185 a:209 a:284 a:290
    p:23 children = a:212 a:216
    --- tag processing - reparenting collection tags ---
    p:10 children = a:41 a:46 a:51 a:55 a:59 a:63 a:66 a:69 a:72 a:75 a:78 a:81 a:84 a:88 a:91 a:94 a:97 a:101 a:104 a:107 a:110 a:113 a:116 a:119 a:122 a:125 a:128 a:131 a:134 a:137 a:140 a:143 a:146
    can't fix children for unmapped collection p10
    --- media processing - creating media ---
    adding volume for path "C:/Users/User/Pictures/Maroubra Lions.jpg", serial=471491471, description="VistaOS"
    created media a:525 for file "C:/Users/User/Pictures/Maroubra Lions.jpg"
    adding volume for path "G:/Pictures/Adobe/Digital Camera Photos/Den's Bday.jpg", serial=1881293147, description="G:"
    created media a:541 for file "G:/Pictures/Adobe/Digital Camera Photos/Den's Bday.jpg"
    created media a:549 for file "G:/desktop my documents 20080612/My Documents/My Pictures/Singapore old/DSC00549.JPG"
    created media a:557 for file "G:/desktop my documents 20080612/My Documents/My Pictures/Singapore old/DSC00550.JPG"
    The remaining messages are created media messages - the same as above.  It does 2791 out of 8440

  • Problem while Converting TiFF to PDF using OCR

    Hi,
    We have installed Adobe LiveCycle8.2 PDF Generator ES trail version, Acrobat Pro Extended 9.0.
    OS: Windows XP Service Pack3,
    App Server: WebSphere 6.1.0.19
    DB: SQL Server 2005 SP2.
    We are getting following error while converting TIFF images to PDF Using OCR.
    Error message on AdminUI screen:
    "Error Code:1000
    Error Message: ALC-PDG-001-000-Conversion failed because of an exception. Connection to failed service."
    Error messages in server log file:
    [10/10/08 18:16:50:015 IST] 00000043 ProcessResour W com.adobe.service.ProcessResource$ErrorReaderThread run BMC024: Service Native2PDFSvc: Process ProcessResource(name=pdfgen.exe,pid=0) terminated abnormally with error code {3}
    [10/10/08 18:16:50:218 IST] 00000035 ProcessResour A com.adobe.service.ProcessResource startProcess BMC505: Service Native2PDFSvc: Starting native process with command line "C:\\Program Files\\ibm\\WebSphere\\AppServer1\\profiles\\AppSrv01\\installedApps\\HDDLGSDMNK8897Node0 1Cell\\adobe\\server1\\Native2PDFSvc\\bin\\dll\\pdfgen.exe" PDF-NAf6c310002 -beginExecutable "C:\\Program Files\\IBM\\WebSphere\\AppServer1\\java\\jre\\bin\\javaw.exe" -endExecutable -Xmx64m -cp "C:/Program Files/ibm/WebSphere/AppServer1/profiles/AppSrv01/installedApps/HDDLGSDMNK8897Node01Cell/a dobe/server1/Native2PDFSvc/bin/adobe-appmon.jar;C:/Program Files/ibm/WebSphere/AppServer1/profiles/AppSrv01/installedApps/HDDLGSDMNK8897Node01Cell/a dobe/server1/Native2PDFSvc/bin/adobe-appmondata.jar;C:/Program Files/ibm/WebSphere/AppServer1/profiles/AppSrv01/installedApps/HDDLGSDMNK8897Node01Cell/a dobe/server1/Native2PDFSvc/bin/adobe-bslj.jar;C:/Program Files/ibm/WebSphere/AppServer1/profiles/AppSrv01/installedApps/HDDLGSDMNK8897Node01Cell/a dobe/server1/Native2PDFSvc/bin/adobe-csa.jar;C:/Program Files/ibm/WebSphere/AppServer1/profiles/AppSrv01/installedApps/HDDLGSDMNK8897Node01Cell/a dobe/server1/Native2PDFSvc/bin/adobe-generatepdf-client.jar;C:/Program Files/ibm/WebSphere/AppServer1/profiles/AppSrv01/installedApps/HDDLGSDMNK8897Node01Cell/a dobe/server1/Native2PDFSvc/bin/adobe-pdfg-common-jaxb.jar;C:/Program Files/ibm/WebSphere/AppServer1/profiles/AppSrv01/installedApps/HDDLGSDMNK8897Node01Cell/a dobe/server1/Native2PDFSvc/bin/adobe-pdfg-common.jar;C:/Program Files/ibm/WebSphere/AppServer1/profiles/AppSrv01/installedApps/HDDLGSDMNK8897Node01Cell/a dobe/server1/Native2PDFSvc/bin/adobe-pdfg-commonbmc.jar;C:/Program Files/ibm/WebSphere/AppServer1/profiles/AppSrv01/installedApps/HDDLGSDMNK8897Node01Cell/a dobe/server1/Native2PDFSvc/bin/adobe-pdfg-idl-bmc-websphere.jar;C:/Program Files/ibm/WebSphere/AppServer1/profiles/AppSrv01/installedApps/HDDLGSDMNK8897Node01Cell/a dobe/server1/Native2PDFSvc/bin/adobe-pdfg-idl-bmc.jar;C:/Program Files/ibm/WebSphere/AppServer1/profiles/AppSrv01/installedApps/HDDLGSDMNK8897Node01Cell/a dobe/server1/Native2PDFSvc/bin/adobe-utilities.jar;C:/Program Files/ibm/WebSphere/AppServer1/profiles/AppSrv01/installedApps/HDDLGSDMNK8897Node01Cell/a dobe/server1/Native2PDFSvc/bin/avalon-framework-4.1.5.jar;C:/Program Files/ibm/WebSphere/AppServer1/profiles/AppSrv01/installedApps/HDDLGSDMNK8897Node01Cell/a dobe/server1/Native2PDFSvc/bin/comfyj-2.4.jar;C:/Program Files/ibm/WebSphere/AppServer1/profiles/AppSrv01/installedApps/HDDLGSDMNK8897Node01Cell/a dobe/server1/Native2PDFSvc/bin/jacorb.jar;C:/Program Files/ibm/WebSphere/AppServer1/profiles/AppSrv01/installedApps/HDDLGSDMNK8897Node01Cell/a dobe/server1/Native2PDFSvc/bin/jaxb-api.jar;C:/Program Files/ibm/WebSphere/AppServer1/profiles/AppSrv01/installedApps/HDDLGSDMNK8897Node01Cell/a dobe/server1/Native2PDFSvc/bin/jaxb-impl.jar;C:/Program Files/ibm/WebSphere/AppServer1/profiles/AppSrv01/installedApps/HDDLGSDMNK8897Node01Cell/a dobe/server1/Native2PDFSvc/bin/jaxb-libs.jar;C:/Program Files/ibm/WebSphere/AppServer1/profiles/AppSrv01/installedApps/HDDLGSDMNK8897Node01Cell/a dobe/server1/Native2PDFSvc/bin/jniw2.9.5_acrobat1.1.jar;C:/Program Files/ibm/WebSphere/AppServer1/profiles/AppSrv01/installedApps/HDDLGSDMNK8897Node01Ce

    Error message continuation:
    [10/10/08 18:16:50:296 IST] 00000044 SystemOut O Command line '"C:\Program Files\IBM\WebSphere\AppServer1\java\jre\bin\javaw.exe"'
    [10/10/08 18:16:50:437 IST] 00000035 ExceptionUtil E CNTR0020E: EJB threw an unexpected (non-declared) exception during invocation of method "doRequiresNew" on bean "BeanId(LiveCycle8#adobe-dscf.jar#EjbTransactionBMTAdapter, null)". Exception data: java.lang.IllegalStateException: Connection to failed service.
    at com.adobe.service.ResourcePooler.allocateResource(ResourcePooler.java:87)
    at com.adobe.service.ConnectionFactoryManagerPeer.getConnectionResourceFromPool(ConnectionFa ctoryManagerPeer.java:79)
    at com.adobe.service.J2EEConnectionFactoryManagerPeerImpl.getConnection(J2EEConnectionFactor yManagerPeerImpl.java:84)
    at com.adobe.service.ConnectionFactoryRmiAdapter.getConnection(ConnectionFactoryRmiAdapter.j ava:53)
    at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
    at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:64)
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
    at java.lang.reflect.Method.invoke(Method.java:615)
    at com.ibm.rmi.util.ProxyUtil$4.run(ProxyUtil.java:727)
    at java.security.AccessController.doPrivileged(AccessController.java:241)
    at com.ibm.rmi.util.ProxyUtil.invokeWithClassLoaders(ProxyUtil.java:725)
    at com.ibm.CORBA.iiop.ClientDelegate.invoke(ClientDelegate.java:1123)
    at $Proxy80.getConnection(Unknown Source)
    at com.adobe.service._ConnectionFactoryRemote_Stub.getConnection(_ConnectionFactoryRemote_St ub.java:58)
    at com.adobe.pdfg.callbacks.NativeToPDFTransactionCallback.convertToPdf(NativeToPDFTransacti onCallback.java:185)
    at com.adobe.pdfg.callbacks.NativeToPDFTransactionCallback.doInTransaction(NativeToPDFTransa ctionCallback.java:163)
    at com.adobe.idp.dsc.transaction.impl.ejb.adapter.EjbTransactionBMTAdapterBean.doRequiresNew (EjbTransactionBMTAdapterBean.java:218)
    at com.adobe.idp.dsc.transaction.impl.ejb.adapter.EJSLocalStatelessEjbTransactionBMTAdapter_ 3af08fdf.doRequiresNew(Unknown Source)
    at com.adobe.idp.dsc.transaction.impl.ejb.EjbTransactionProvider.execute(EjbTransactionProvi der.java:133)
    at com.adobe.idp.dsc.transaction.impl.DefaultTransactionTemplate.execute(DefaultTransactionT emplate.java:79)
    at com.adobe.pdfg.BMCCaller.invokeInSMT(BMCCaller.java:769)
    at com.adobe.pdfg.Native2PdfCaller.callNativeBMC(Native2PdfCaller.java:779)
    at com.adobe.pdfg.Native2PdfCaller.createPDF(Native2PdfCaller.java:298)
    at com.adobe.pdfg.GeneratePDFImpl.createPDFCommon(GeneratePDFImpl.java:342)
    at com.adobe.pdfg.GeneratePDFImpl.createPDF(GeneratePDFImpl.java:172)
    at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
    at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:64)
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
    at java.lang.reflect.Method.invoke(Method.java:615)
    at com.adobe.idp.dsc.component.impl.DefaultPOJOInvokerImpl.invoke(DefaultPOJOInvokerImpl.jav a:118)
    at com.adobe.idp.dsc.interceptor.impl.InvocationInterceptor.intercept(InvocationInterceptor. java:140)
    at com.adobe.idp.dsc.interceptor.impl.RequestInterceptorChainImpl.proceed(RequestInterceptor ChainImpl.java:60)
    at com.adobe.idp.dsc.transaction.interceptor.TransactionInterceptor$1.doInTransaction(Transa ctionInterceptor.java:74)
    at com.adobe.idp.dsc.transaction.impl.ejb.adapter.EjbTransactionBMTAdapterBean.doBMT(EjbTran sactionBMTAdapterBean.java:197)
    at com.adobe.idp.dsc.transaction.impl.ejb.adapter.EJSLocalStatelessEjbTransactionBMTAdapter_ 3af08fdf.doBMT(Unknown Source)
    at com.adobe.idp.dsc.transaction.impl.ejb.EjbTransactionProvider.execute(EjbTransactionProvi der.java:95)
    at com.adobe.idp.dsc.transaction.interceptor.TransactionInterceptor.intercept(TransactionInt erceptor.java:72)
    at com.adobe.idp.dsc.interceptor.impl.RequestInterceptorChainImpl.proceed(RequestInterceptor ChainImpl.java:60)
    at com.adobe.idp.dsc.interceptor.impl.InvocationStrategyInterceptor.intercept(InvocationStra tegyInterceptor.java:55)
    at com.adobe.idp.dsc.interceptor.impl.RequestInterceptorChainImpl.proceed(RequestInterceptor ChainImpl.java:60)
    at com.adobe.idp.dsc.interceptor.impl.InvalidStateInterceptor.intercept(InvalidStateIntercep tor.java:37)
    at com.adobe.idp.dsc.interceptor.impl.RequestInterceptorChainImpl.proceed(RequestInterceptor ChainImpl.java:60)
    at com.adobe.idp.dsc.interceptor.impl.AuthorizationInterceptor.intercept(AuthorizationInterc eptor.java:102)
    at com.adobe.idp.dsc.interceptor.impl.RequestInterceptorChainImpl.proceed(RequestInterceptor ChainImpl.java:60)
    at com.adobe.idp.dsc.interceptor.impl.JMXInterceptor.intercept(JMXInterceptor.java:48)
    at com.adobe.idp.dsc.interceptor.impl.RequestInterceptorChainImpl.proceed(RequestInterceptor ChainImpl.java:60)
    at com.adobe.idp.dsc.engine.impl.ServiceEngineImpl.invoke(ServiceEngineImpl.java:115)
    at com.adobe.idp.dsc.routing.Router.routeRequest(Router.java:118)
    at com.adobe.idp.dsc.provider.impl.base.AbstractMessageReceiver.routeMessage(AbstractMessage Receiver.java:91)
    at com.adobe.idp.dsc.provider.impl.vm.VMMessageDispatcher.doSend(VMMessageDispatcher.java:21 5)
    at com.adobe.idp.dsc.provider.impl.base.AbstractMessageDispatcher.send(AbstractMessageDispat cher.java:57)
    at com.adobe.idp.dsc.clientsdk.ServiceClient.invoke(ServiceClient.java:208)
    at com.adobe.aes.web.create.CreatePDFAct.createPDF(CreatePDFAct.java:383)
    at com.adobe.aes.web.create.CreatePDFAct.createPDF2(CreatePDFAct.java:402)
    at com.adobe.aes.web.create.CreatePDFAct.execute(CreatePDFAct.java:174)
    at org.apache.struts.action.RequestProcessor.processActionPerform(RequestProcessor.java:431)
    at org.apache.struts.action.RequestProcessor.process(RequestProcessor.java:236)
    at org.apache.struts.action.ActionServlet.process(ActionServlet.java:1196)
    at org.apache.struts.action.ActionServlet.doPost(ActionServlet.java:432)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:763)
    at com.adobe.aes.web.AesActionServlet.service(AesActionServlet.java:63)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:856)
    at com.ibm.ws.webcontainer.servlet.ServletWrapper.service(ServletWrapper.java:1095)
    at com.ibm.ws.webcontainer.servlet.ServletWrapper.service(ServletWrapper.java:1036)
    at com.ibm.ws.webcontainer.filter.WebAppFilterChain.doFilter(WebAppFilterChain.java:145)
    at com.adobe.idp.um.auth.filter.AuthenticationFilter.doFilter(AuthenticationFilter.java:154)
    at com.ibm.ws.webcontainer.filter.FilterInstanceWrapper.doFilter(FilterInstanceWrapper.java: 190)
    at com.ibm.ws.webcontainer.filter.WebAppFilterChain.doFilter(WebAppFilterChain.java:130)
    at com.ibm.ws.webcontainer.filter.WebAppFilterChain._doFilter(WebAppFilterChain.java:87)
    at com.ibm.ws.webcontainer.filter.WebAppFilterManager.doFilter(WebAppFilterManager.java:832)
    at com.ibm.ws.webcontainer.filter.WebAppFilterManager.doFilter(WebAppFilterManager.java:679)
    at com.ibm.ws.webcontainer.servlet.ServletWrapper.handleRequest(ServletWrapper.java:565)
    at com.ibm.ws.wswebcontainer.servlet.ServletWrapper.handleRequest(ServletWrapper.java:478)
    at com.ibm.ws.webcontainer.servlet.CacheServletWrapper.handleRequest(CacheServletWrapper.jav a:90)
    at com.ibm.ws.webcontainer.WebContainer.handleRequest(WebContainer.java:748)
    at com.ibm.ws.wswebcontainer.WebContainer.handleRequest(WebContainer.java:1461)
    at com.ibm.ws.webcontainer.channel.WCChannelLink.ready(WCChannelLink.java:118)
    at com.ibm.ws.http.channel.inbound.impl.HttpInboundLink.handleDiscrimination(HttpInboundLink .java:458)
    at com.ibm.ws.http.channel.inbound.impl.HttpInboundLink.handleNewInformation(HttpInboundLink .java:387)
    at com.ibm.ws.http.channel.inbound.impl.HttpInboundLink.ready(HttpInboundLink.java:267)
    at com.ibm.ws.tcp.channel.impl.NewConnectionInitialReadCallback.sendToDiscriminators(NewConn ectionInitialReadCallback.java:214)

  • Exception --- Value can not be converted to requested type.Error Code: 0

    Inside my query, I try to use function,like
    Expression formattedRegDateCol = regDateCol.getFunction("to_char", "YYYY/MM/DD");
    sometimes query works fine and sometimes got following exception, can anyone here help me out..
    Internal Exception: java.sql.SQLException: [BEA][Oracle JDBC Driver]Value can not be converted to requested type.Error Code: 0
    Call:SELECT COUNT(*), to_char(REG_DATE, 'YYYY/MM/DD') FROM SYSTEM_DETAIL WHERE ((REG_DATE BETWEEN {ts '2008-08-10 00:00:00.0'} AND {ts '2008-09-30 23:59:59.0'}) AND (GEOGRAPHIC_ID = 104)) GROUP BY to_char(REG_DATE, 'YYYY/MM/DD') ORDER BY to_char(REG_DATE, 'YYYY/MM/DD') ASC
    Query:ReportQuery(com.cad.registration.RegistrationDetailImpl)
         at com.cad.report.data.DocumentReturnedDataGenImpl.loadData(DocumentReturnedDataGenImpl.java:130)
         at com.cad.report.data.AbstractDataGen.getReport(AbstractDataGen.java:96)
         at com.cad.report.command.ProcessReportRequestOnMessage.run(ProcessReportRequestOnMessage.java:74)
         at com.cad.registration.command.AbstractCommand.execute(AbstractCommand.java:106)
         at com.cad.flow.core.Run.run(Unknown Source)
         at com.cad.flow.core.WorkflowComponent.run(Unknown Source)
         at com.cad.flow.ejbs.WorkflowManagerBean.execute(WorkflowManagerBean.java:238)
         at com.cad.flow.ejbs.WorkflowManagerBean.execute(WorkflowManagerBean.java:135)
         at com.cad.flow.ejbs.WorkflowManager_uh667k_EOImpl.execute(WorkflowManager_uh667k_EOImpl.java:132)
         at com.cad.flow.ejbs.WorkflowManager_uh667k_EOImpl_WLSkel.invoke(Unknown Source)
         at weblogic.rmi.internal.ServerRequest.sendReceive(ServerRequest.java:174)
         at weblogic.rmi.cluster.ClusterableRemoteRef.invoke(ClusterableRemoteRef.java:335)
         at weblogic.rmi.cluster.ClusterableRemoteRef.invoke(ClusterableRemoteRef.java:252)
         at com.cad.flow.ejbs.WorkflowManager_uh667k_EOImpl_1001_WLStub.execute(Unknown Source)
         at com.cad.util.WorkflowProxy.runWorkflow(WorkflowProxy.java:128)
         at com.cad.kbd.messenger.listener.mdb.ReportRequestMDB.onMessage(ReportRequestMDB.java:84)
         at weblogic.ejb.container.internal.MDListener.execute(MDListener.java:466)
         at weblogic.ejb.container.internal.MDListener.transactionalOnMessage(MDListener.java:371)
         at weblogic.ejb.container.internal.MDListener.onMessage(MDListener.java:327)
         at weblogic.jms.client.JMSSession.onMessage(JMSSession.java:4072)
         at weblogic.jms.client.JMSSession.execute(JMSSession.java:3964)
         at weblogic.jms.client.JMSSession$UseForRunnable.run(JMSSession.java:4490)
         at weblogic.work.SelfTuningWorkManagerImpl$WorkAdapterImpl.run(SelfTuningWorkManagerImpl.java:464)
         at weblogic.work.ExecuteThread.execute(ExecuteThread.java:200)
         at weblogic.work.ExecuteThread.run(ExecuteThread.java:172)
    Caused by: Exception [TOPLINK-4002] (Oracle TopLink - 10g Release 3 (10.1.3.3.0) (Build 070620)): oracle.toplink.exceptions.DatabaseException
    Internal Exception: java.sql.SQLException: [BEA][Oracle JDBC Driver]Value can not be converted to requested type.Error Code: 0
    Call:SELECT COUNT(*), to_char(REG_DATE, 'YYYY/MM/DD') FROM SYSTEM_DETAIL WHERE ((REG_DATE BETWEEN {ts '2008-08-10 00:00:00.0'} AND {ts '2008-09-30 23:59:59.0'}) AND (GEOGRAPHIC_ID = 104)) GROUP BY to_char(REG_DATE, 'YYYY/MM/DD') ORDER BY to_char(REG_DATE, 'YYYY/MM/DD') ASC
    Query:ReportQuery(com.cad.registration.RegistrationDetailImpl)
         at oracle.toplink.exceptions.DatabaseException.sqlException(DatabaseException.java:282)
         at oracle.toplink.internal.databaseaccess.DatabaseAccessor.getObject(DatabaseAccessor.java:988)
         at oracle.toplink.internal.databaseaccess.DatabaseAccessor.fetchRow(DatabaseAccessor.java:780)
         at oracle.toplink.internal.databaseaccess.DatabaseAccessor.basicExecuteCall(DatabaseAccessor.java:562)
         at oracle.toplink.internal.databaseaccess.DatabaseAccessor.executeCall(DatabaseAccessor.java:441)
         at oracle.toplink.threetier.ServerSession.executeCall(ServerSession.java:457)
         at oracle.toplink.internal.queryframework.DatasourceCallQueryMechanism.executeCall(DatasourceCallQueryMechanism.java:117)
         at oracle.toplink.internal.queryframework.DatasourceCallQueryMechanism.executeCall(DatasourceCallQueryMechanism.java:103)
         at oracle.toplink.internal.queryframework.DatasourceCallQueryMechanism.executeSelectCall(DatasourceCallQueryMechanism.java:174)
         at oracle.toplink.internal.queryframework.DatasourceCallQueryMechanism.selectAllRows(DatasourceCallQueryMechanism.java:481)
         at oracle.toplink.internal.queryframework.ExpressionQueryMechanism.selectAllRowsFromTable(ExpressionQueryMechanism.java:825)
         at oracle.toplink.internal.queryframework.ExpressionQueryMechanism.selectAllReportQueryRows(ExpressionQueryMechanism.java:791)
         at oracle.toplink.queryframework.ReportQuery.executeDatabaseQuery(ReportQuery.java:518)
         at oracle.toplink.queryframework.DatabaseQuery.execute(DatabaseQuery.java:620)
         at oracle.toplink.queryframework.ObjectLevelReadQuery.execute(ObjectLevelReadQuery.java:779)
         at oracle.toplink.queryframework.ReadAllQuery.execute(ReadAllQuery.java:451)
         at oracle.toplink.publicinterface.Session.internalExecuteQuery(Session.java:2089)
         at oracle.toplink.publicinterface.Session.executeQuery(Session.java:993)
         at oracle.toplink.publicinterface.Session.executeQuery(Session.java:965)
         at oracle.toplink.publicinterface.Session.executeQuery(Session.java:878)
         at com.cad.persistence.toplink.TopLinkPersistenceBrokerImpl.executeQuery(TopLinkPersistenceBrokerImpl.java:420)
         at com.cad.report.data.DocumentSys.getSummitedDocumentNumber(DocumentSys.java:332)
         at com.cad.report.data.DocumentSys.loadData(DocumentSys.java:110)
         ... 24 more
    Caused by: java.sql.SQLException: [BEA][Oracle JDBC Driver]Value can not be converted to requested type.
         at weblogic.jdbc.base.BaseExceptions.createException(Unknown Source)
         at weblogic.jdbc.base.BaseExceptions.getException(Unknown Source)
         at weblogic.jdbc.base.BaseData.getTimestamp(Unknown Source)
         at weblogic.jdbc.base.BaseResultSet.getTimestamp(Unknown Source)
         at weblogic.jdbc.wrapper.ResultSet_weblogic_jdbc_base_BaseResultSet.getTimestamp(Unknown Source)
         at oracle.toplink.internal.databaseaccess.DatabaseAccessor.getObjectThroughOptimizedDataConversion(DatabaseAccessor.java:1038)
         at oracle.toplink.internal.databaseaccess.DatabaseAccessor.getObject(DatabaseAccessor.java:942)
         ... 45 more

    Here is my code
    ExpressionBuilder builder = new ExpressionBuilder();
    ReportQuery query = new ReportQuery(RegistrationDetailImpl.class, builder);
    query.addArgument("startTime");
    query.addArgument("endTime");
    query.addArgument("lro");
    Expression lroCol = builder.get("lro");
    Expression regDateCol = builder.get(
    QueryConstants.RegistrationDetailQueryConstants.REGISTRATION_NUMBER_COL).get(
    QueryConstants.RegistrationDetailQueryConstants.REGISTRATION_DATE_COL);
    Expression formattedRegDateCol = regDateCol.getFunction("to_char", "YYYY/MM/DD");
    Expression timeExp = regDateCol.between(builder.getParameter("startTime"), builder
    .getParameter("endTime"));
    Expression lroExp = lroCol.equal(builder.getParameter("lro"));
    query.setSelectionCriteria(timeExp.and(lroExp));
    query.addCount();
    query.addAttribute("regDate", formattedRegDateCol);
    query.addGrouping(formattedRegDateCol);
    query.addOrdering(formattedRegDateCol.ascending());
    descriptor.getDescriptorQueryManager().addQuery("testquery", query);

  • Is there Converting Pantone Colors to CMYK presets?

    I have been trying to convert both Pantone Colors to CMYK and CMYK to Pantones on a few of my projects.  I walk throught the steps but nothing happens.  My counterpart which has CS5.5 also is able to do it both ways just fine.  Is there a pre-set someplace that I need to be aware of? 
    Thanks,

    Pantone to CMYK
    Claick on the swatch and change
    to
    CMYK to Pantone
    Put the cmyk values in Photoshop, then change the color model. or use this script
    //CMYK to Pantone v.2 -- CS, CS2
    //>=--------------------------------------
    //                    this script compares the color values of a selected CMYK object to
    //                    the imbedded list of PMS Solid colors, and returns the closest match(es)
    //                    Matching is based on cumulative (C+M+Y+K) values, so the PMS color with the
    //                    least total color divergence is always chosen.
    //                    If colors are equally divergent, multiple matches will be displayed.
    //                    If no object is selected, or if the wrong type of object is selected,
    //                    user is prompted to manually enter CMYK values.
    //                    as of V.2 RGB colors are also accepted.
    //>=--------------------------------------
    // JS code (c) copyright: John Wundes ( [email protected] ) www.wundes.com
    //copyright full text here:  http://www.wundes.com/js4ai/copyright.txt
    if (activeDocument.documentColorSpace == "DocumentColorSpace.RGB")
              var space = "RGB";
    }else{
              var space = "CMYK";
    var PMSLibs = confirm("Do you wish to include pastels? y/n");
    // Array of Pantone Colors and CMYK equivilants
    //Solids:
    var solidNames = ["PANTONE 100 C","PANTONE 101 C","PANTONE 102 C","PANTONE 103 C","PANTONE 104 C","PANTONE 105 C","PANTONE 106 C","PANTONE 107 C","PANTONE 108 C","PANTONE 109 C","PANTONE 110 C","PANTONE 111 C","PANTONE 112 C","PANTONE 113 C","PANTONE 114 C","PANTONE 115 C","PANTONE 116 C","PANTONE 117 C","PANTONE 118 C","PANTONE 119 C","PANTONE 120 C","PANTONE 1205 C","PANTONE 121 C","PANTONE 1215 C","PANTONE 122 C","PANTONE 1225 C","PANTONE 123 C","PANTONE 1235 C","PANTONE 124 C","PANTONE 1245 C","PANTONE 125 C","PANTONE 1255 C","PANTONE 126 C","PANTONE 1265 C","PANTONE 127 C","PANTONE 128 C","PANTONE 129 C","PANTONE 130 C","PANTONE 131 C","PANTONE 132 C","PANTONE 133 C","PANTONE 134 C","PANTONE 1345 C","PANTONE 135 C","PANTONE 1355 C","PANTONE 136 C","PANTONE 1365 C","PANTONE 137 C","PANTONE 1375 C","PANTONE 138 C","PANTONE 1385 C","PANTONE 139 C","PANTONE 1395 C","PANTONE 140 C","PANTONE 1405 C","PANTONE 141 C","PANTONE 142 C","PANTONE 143 C","PANTONE 144 C","PANTONE 145 C","PANTONE 146 C","PANTONE 147 C","PANTONE 148 C","PANTONE 1485 C","PANTONE 149 C","PANTONE 1495 C","PANTONE 150 C","PANTONE 1505 C","PANTONE 151 C","PANTONE 152 C","PANTONE 1525 C","PANTONE 153 C","PANTONE 1535 C","PANTONE 154 C","PANTONE 1545 C","PANTONE 155 C","PANTONE 1555 C","PANTONE 156 C","PANTONE 1565 C","PANTONE 157 C","PANTONE 1575 C","PANTONE 158 C","PANTONE 1585 C","PANTONE 159 C","PANTONE 1595 C","PANTONE 160 C","PANTONE 1605 C","PANTONE 161 C","PANTONE 1615 C","PANTONE 162 C","PANTONE 1625 C","PANTONE 163 C","PANTONE 1635 C","PANTONE 164 C","PANTONE 1645 C","PANTONE 165 C","PANTONE 1655 C","PANTONE 166 C","PANTONE 1665 C","PANTONE 167 C","PANTONE 1675 C","PANTONE 168 C","PANTONE 1685 C","PANTONE 169 C","PANTONE 170 C","PANTONE 171 C","PANTONE 172 C","PANTONE 173 C","PANTONE 174 C","PANTONE 175 C","PANTONE 176 C","PANTONE 1765 C","PANTONE 1767 C","PANTONE 177 C","PANTONE 1775 C","PANTONE 1777 C","PANTONE 178 C","PANTONE 1785 C","PANTONE 1787 C","PANTONE 1788 C","PANTONE 179 C","PANTONE 1795 C","PANTONE 1797 C","PANTONE 180 C","PANTONE 1805 C","PANTONE 1807 C","PANTONE 181 C","PANTONE 1815 C","PANTONE 1817 C","PANTONE 182 C","PANTONE 183 C","PANTONE 184 C","PANTONE 185 C","PANTONE 186 C","PANTONE 187 C","PANTONE 188 C","PANTONE 189 C","PANTONE 1895 C","PANTONE 190 C","PANTONE 1905 C","PANTONE 191 C","PANTONE 1915 C","PANTONE 192 C","PANTONE 1925 C","PANTONE 193 C","PANTONE 1935 C","PANTONE 194 C","PANTONE 1945 C","PANTONE 195 C","PANTONE 1955 C","PANTONE 196 C","PANTONE 197 C","PANTONE 198 C","PANTONE 199 C","PANTONE 200 C","PANTONE 201 C","PANTONE 202 C","PANTONE 203 C","PANTONE 204 C","PANTONE 205 C","PANTONE 206 C","PANTONE 207 C","PANTONE 208 C","PANTONE 209 C","PANTONE 210 C","PANTONE 211 C","PANTONE 212 C","PANTONE 213 C","PANTONE 214 C","PANTONE 215 C","PANTONE 216 C","PANTONE 217 C","PANTONE 218 C","PANTONE 219 C","PANTONE 220 C","PANTONE 221 C","PANTONE 222 C","PANTONE 223 C","PANTONE 224 C","PANTONE 225 C","PANTONE 226 C","PANTONE 227 C","PANTONE 228 C","PANTONE 229 C","PANTONE 230 C","PANTONE 231 C","PANTONE 232 C","PANTONE 233 C","PANTONE 234 C","PANTONE 235 C","PANTONE 236 C","PANTONE 2365 C","PANTONE 237 C","PANTONE 2375 C","PANTONE 238 C","PANTONE 2385 C","PANTONE 239 C","PANTONE 2395 C","PANTONE 240 C","PANTONE 2405 C","PANTONE 241 C","PANTONE 2415 C","PANTONE 242 C","PANTONE 2425 C","PANTONE 243 C","PANTONE 244 C","PANTONE 245 C","PANTONE 246 C","PANTONE 247 C","PANTONE 248 C","PANTONE 249 C","PANTONE 250 C","PANTONE 251 C","PANTONE 252 C","PANTONE 253 C","PANTONE 254 C","PANTONE 255 C","PANTONE 256 C","PANTONE 2562 C","PANTONE 2563 C","PANTONE 2567 C","PANTONE 257 C","PANTONE 2572 C","PANTONE 2573 C","PANTONE 2577 C","PANTONE 258 C","PANTONE 2582 C","PANTONE 2583 C","PANTONE 2587 C","PANTONE 259 C","PANTONE 2592 C","PANTONE 2593 C","PANTONE 2597 C","PANTONE 260 C","PANTONE 2602 C","PANTONE 2603 C","PANTONE 2607 C","PANTONE 261 C","PANTONE 2612 C","PANTONE 2613 C","PANTONE 2617 C","PANTONE 262 C","PANTONE 2622 C","PANTONE 2623 C","PANTONE 2627 C","PANTONE 263 C","PANTONE 2635 C","PANTONE 264 C","PANTONE 2645 C","PANTONE 265 C","PANTONE 2655 C","PANTONE 266 C","PANTONE 2665 C","PANTONE 267 C","PANTONE 268 C","PANTONE 2685 C","PANTONE 269 C","PANTONE 2695 C","PANTONE 270 C","PANTONE 2705 C","PANTONE 2706 C","PANTONE 2707 C","PANTONE 2708 C","PANTONE 271 C","PANTONE 2715 C","PANTONE 2716 C","PANTONE 2717 C","PANTONE 2718 C","PANTONE 272 C","PANTONE 2725 C","PANTONE 2726 C","PANTONE 2727 C","PANTONE 2728 C","PANTONE 273 C","PANTONE 2735 C","PANTONE 2736 C","PANTONE 2738 C","PANTONE 274 C","PANTONE 2745 C","PANTONE 2746 C","PANTONE 2747 C","PANTONE 2748 C","PANTONE 275 C","PANTONE 2755 C","PANTONE 2756 C","PANTONE 2757 C","PANTONE 2758 C","PANTONE 276 C","PANTONE 2765 C","PANTONE 2766 C","PANTONE 2767 C","PANTONE 2768 C","PANTONE 277 C","PANTONE 278 C","PANTONE 279 C","PANTONE 280 C","PANTONE 281 C","PANTONE 282 C","PANTONE 283 C","PANTONE 284 C","PANTONE 285 C","PANTONE 286 C","PANTONE 287 C","PANTONE 288 C","PANTONE 289 C","PANTONE 290 C","PANTONE 2905 C","PANTONE 291 C","PANTONE 2915 C","PANTONE 292 C","PANTONE 2925 C","PANTONE 293 C","PANTONE 2935 C","PANTONE 294 C","PANTONE 2945 C","PANTONE 295 C","PANTONE 2955 C","PANTONE 296 C","PANTONE 2965 C","PANTONE 297 C","PANTONE 2975 C","PANTONE 298 C","PANTONE 2985 C","PANTONE 299 C","PANTONE 2995 C","PANTONE 300 C","PANTONE 3005 C","PANTONE 301 C","PANTONE 3015 C","PANTONE 302 C","PANTONE 3025 C","PANTONE 303 C","PANTONE 3035 C","PANTONE 304 C","PANTONE 305 C","PANTONE 306 C","PANTONE 307 C","PANTONE 308 C","PANTONE 309 C","PANTONE 310 C","PANTONE 3105 C","PANTONE 311 C","PANTONE 3115 C","PANTONE 312 C","PANTONE 3125 C","PANTONE 313 C","PANTONE 3135 C","PANTONE 314 C","PANTONE 3145 C","PANTONE 315 C","PANTONE 3155 C","PANTONE 316 C","PANTONE 3165 C","PANTONE 317 C","PANTONE 318 C","PANTONE 319 C","PANTONE 320 C","PANTONE 321 C","PANTONE 322 C","PANTONE 323 C","PANTONE 324 C","PANTONE 3242 C","PANTONE 3245 C","PANTONE 3248 C","PANTONE 325 C","PANTONE 3252 C","PANTONE 3255 C","PANTONE 3258 C","PANTONE 326 C","PANTONE 3262 C","PANTONE 3265 C","PANTONE 3268 C","PANTONE 327 C","PANTONE 3272 C","PANTONE 3275 C","PANTONE 3278 C","PANTONE 328 C","PANTONE 3282 C","PANTONE 3285 C","PANTONE 3288 C","PANTONE 329 C","PANTONE 3292 C","PANTONE 3295 C","PANTONE 3298 C","PANTONE 330 C","PANTONE 3302 C","PANTONE 3305 C","PANTONE 3308 C","PANTONE 331 C","PANTONE 332 C","PANTONE 333 C","PANTONE 334 C","PANTONE 335 C","PANTONE 336 C","PANTONE 337 C","PANTONE 3375 C","PANTONE 338 C","PANTONE 3385 C","PANTONE 339 C","PANTONE 3395 C","PANTONE 340 C","PANTONE 3405 C","PANTONE 341 C","PANTONE 3415 C","PANTONE 342 C","PANTONE 3425 C","PANTONE 343 C","PANTONE 3435 C","PANTONE 344 C","PANTONE 345 C","PANTONE 346 C","PANTONE 347 C","PANTONE 348 C","PANTONE 349 C","PANTONE 350 C","PANTONE 351 C","PANTONE 352 C","PANTONE 353 C","PANTONE 354 C","PANTONE 355 C","PANTONE 356 C","PANTONE 357 C","PANTONE 358 C","PANTONE 359 C","PANTONE 360 C","PANTONE 361 C","PANTONE 362 C","PANTONE 363 C","PANTONE 364 C","PANTONE 365 C","PANTONE 366 C","PANTONE 367 C","PANTONE 368 C","PANTONE 369 C","PANTONE 370 C","PANTONE 371 C","PANTONE 372 C","PANTONE 373 C","PANTONE 374 C","PANTONE 375 C","PANTONE 376 C","PANTONE 377 C","PANTONE 378 C","PANTONE 379 C","PANTONE 380 C","PANTONE 381 C","PANTONE 382 C","PANTONE 383 C","PANTONE 384 C","PANTONE 385 C","PANTONE 386 C","PANTONE 387 C","PANTONE 388 C","PANTONE 389 C","PANTONE 390 C","PANTONE 391 C","PANTONE 392 C","PANTONE 393 C","PANTONE 3935 C","PANTONE 394 C","PANTONE 3945 C","PANTONE 395 C","PANTONE 3955 C","PANTONE 396 C","PANTONE 3965 C","PANTONE 397 C","PANTONE 3975 C","PANTONE 398 C","PANTONE 3985 C","PANTONE 399 C","PANTONE 3995 C","PANTONE 400 C","PANTONE 401 C","PANTONE 402 C","PANTONE 403 C","PANTONE 404 C","PANTONE 405 C","PANTONE 406 C","PANTONE 407 C","PANTONE 408 C","PANTONE 409 C","PANTONE 410 C","PANTONE 411 C","PANTONE 412 C","PANTONE 413 C","PANTONE 414 C","PANTONE 415 C","PANTONE 416 C","PANTONE 417 C","PANTONE 418 C","PANTONE 419 C","PANTONE 420 C","PANTONE 421 C","PANTONE 422 C","PANTONE 423 C","PANTONE 424 C","PANTONE 425 C","PANTONE 426 C","PANTONE 427 C","PANTONE 428 C","PANTONE 429 C","PANTONE 430 C","PANTONE 431 C","PANTONE 432 C","PANTONE 433 C","PANTONE 434 C","PANTONE 435 C","PANTONE 436 C","PANTONE 437 C","PANTONE 438 C","PANTONE 439 C","PANTONE 440 C","PANTONE 441 C","PANTONE 442 C","PANTONE 443 C","PANTONE 444 C","PANTONE 445 C","PANTONE 446 C","PANTONE 447 C","PANTONE 448 C","PANTONE 4485 C","PANTONE 449 C","PANTONE 4495 C","PANTONE 450 C","PANTONE 4505 C","PANTONE 451 C","PANTONE 4515 C","PANTONE 452 C","PANTONE 4525 C","PANTONE 453 C","PANTONE 4535 C","PANTONE 454 C","PANTONE 4545 C","PANTONE 455 C","PANTONE 456 C","PANTONE 457 C","PANTONE 458 C","PANTONE 459 C","PANTONE 460 C","PANTONE 461 C","PANTONE 462 C","PANTONE 4625 C","PANTONE 463 C","PANTONE 4635 C","PANTONE 464 C","PANTONE 4645 C","PANTONE 465 C","PANTONE 4655 C","PANTONE 466 C","PANTONE 4665 C","PANTONE 467 C","PANTONE 4675 C","PANTONE 468 C","PANTONE 4685 C","PANTONE 469 C","PANTONE 4695 C","PANTONE 470 C","PANTONE 4705 C","PANTONE 471 C","PANTONE 4715 C","PANTONE 472 C","PANTONE 4725 C","PANTONE 473 C","PANTONE 4735 C","PANTONE 474 C","PANTONE 4745 C","PANTONE 475 C","PANTONE 4755 C","PANTONE 476 C","PANTONE 477 C","PANTONE 478 C","PANTONE 479 C","PANTONE 480 C","PANTONE 481 C","PANTONE 482 C","PANTONE 483 C","PANTONE 484 C","PANTONE 485 C","PANTONE 486 C","PANTONE 487 C","PANTONE 488 C","PANTONE 489 C","PANTONE 490 C","PANTONE 491 C","PANTONE 492 C","PANTONE 493 C","PANTONE 494 C","PANTONE 495 C","PANTONE 496 C","PANTONE 497 C","PANTONE 4975 C","PANTONE 498 C","PANTONE 4985 C","PANTONE 499 C","PANTONE 4995 C","PANTONE 500 C","PANTONE 5005 C","PANTONE 501 C","PANTONE 5015 C","PANTONE 502 C","PANTONE 5025 C","PANTONE 503 C","PANTONE 5035 C","PANTONE 504 C","PANTONE 505 C","PANTONE 506 C","PANTONE 507 C","PANTONE 508 C","PANTONE 509 C","PANTONE 510 C","PANTONE 511 C","PANTONE 5115 C","PANTONE 512 C","PANTONE 5125 C","PANTONE 513 C","PANTONE 5135 C","PANTONE 514 C","PANTONE 5145 C","PANTONE 515 C","PANTONE 5155 C","PANTONE 516 C","PANTONE 5165 C","PANTONE 517 C","PANTONE 5175 C","PANTONE 518 C","PANTONE 5185 C","PANTONE 519 C","PANTONE 5195 C","PANTONE 520 C","PANTONE 5205 C","PANTONE 521 C","PANTONE 5215 C","PANTONE 522 C","PANTONE 5225 C","PANTONE 523 C","PANTONE 5235 C","PANTONE 524 C","PANTONE 5245 C","PANTONE 525 C","PANTONE 5255 C","PANTONE 526 C","PANTONE 5265 C","PANTONE 527 C","PANTONE 5275 C","PANTONE 528 C","PANTONE 5285 C","PANTONE 529 C","PANTONE 5295 C","PANTONE 530 C","PANTONE 5305 C","PANTONE 531 C","PANTONE 5315 C","PANTONE 532 C","PANTONE 533 C","PANTONE 534 C","PANTONE 535 C","PANTONE 536 C","PANTONE 537 C","PANTONE 538 C","PANTONE 539 C","PANTONE 5395 C","PANTONE 540 C","PANTONE 5405 C","PANTONE 541 C","PANTONE 5415 C","PANTONE 542 C","PANTONE 5425 C","PANTONE 543 C","PANTONE 5435 C","PANTONE 544 C","PANTONE 5445 C","PANTONE 545 C","PANTONE 5455 C","PANTONE 546 C","PANTONE 5463 C","PANTONE 5467 C","PANTONE 547 C","PANTONE 5473 C","PANTONE 5477 C","PANTONE 548 C","PANTONE 5483 C","PANTONE 5487 C","PANTONE 549 C","PANTONE 5493 C","PANTONE 5497 C","PANTONE 550 C","PANTONE 5503 C","PANTONE 5507 C","PANTONE 551 C","PANTONE 5513 C","PANTONE 5517 C","PANTONE 552 C","PANTONE 5523 C","PANTONE 5527 C","PANTONE 553 C","PANTONE 5535 C","PANTONE 554 C","PANTONE 5545 C","PANTONE 555 C","PANTONE 5555 C","PANTONE 556 C","PANTONE 5565 C","PANTONE 557 C","PANTONE 5575 C","PANTONE 558 C","PANTONE 5585 C","PANTONE 559 C","PANTONE 5595 C","PANTONE 560 C","PANTONE 5605 C","PANTONE 561 C","PANTONE 5615 C","PANTONE 562 C","PANTONE 5625 C","PANTONE 563 C","PANTONE 5635 C","PANTONE 564 C","PANTONE 5645 C","PANTONE 565 C","PANTONE 5655 C","PANTONE 566 C","PANTONE 5665 C","PANTONE 567 C","PANTONE 568 C","PANTONE 569 C","PANTONE 570 C","PANTONE 571 C","PANTONE 572 C","PANTONE 573 C","PANTONE 574 C","PANTONE 5743 C","PANTONE 5747 C","PANTONE 575 C","PANTONE 5753 C","PANTONE 5757 C","PANTONE 576 C","PANTONE 5763 C","PANTONE 5767 C","PANTONE 577 C","PANTONE 5773 C","PANTONE 5777 C","PANTONE 578 C","PANTONE 5783 C","PANTONE 5787 C","PANTONE 579 C","PANTONE 5793 C","PANTONE 5797 C","PANTONE 580 C","PANTONE 5803 C","PANTONE 5807 C","PANTONE 581 C","PANTONE 5815 C","PANTONE 582 C","PANTONE 5825 C","PANTONE 583 C","PANTONE 5835 C","PANTONE 584 C","PANTONE 5845 C","PANTONE 585 C","PANTONE 5855 C","PANTONE 586 C","PANTONE 5865 C","PANTONE 587 C","PANTONE 5875 C","PANTONE 600 C","PANTONE 601 C","PANTONE 602 C","PANTONE 603 C","PANTONE 604 C","PANTONE 605 C","PANTONE 606 C","PANTONE 607 C","PANTONE 608 C","PANTONE 609 C","PANTONE 610 C","PANTONE 611 C","PANTONE 612 C","PANTONE 613 C","PANTONE 614 C","PANTONE 615 C","PANTONE 616 C","PANTONE 617 C","PANTONE 618 C","PANTONE 619 C","PANTONE 620 C","PANTONE 621 C","PANTONE 622 C","PANTONE 623 C","PANTONE 624 C","PANTONE 625 C","PANTONE 626 C","PANTONE 627 C","PANTONE 628 C","PANTONE 629 C","PANTONE 630 C","PANTONE 631 C","PANTONE 632 C","PANTONE 633 C","PANTONE 634 C","PANTONE 635 C","PANTONE 636 C","PANTONE 637 C","PANTONE 638 C","PANTONE 639 C","PANTONE 640 C","PANTONE 641 C","PANTONE 642 C","PANTONE 643 C","PANTONE 644 C","PANTONE 645 C","PANTONE 646 C","PANTONE 647 C","PANTONE 648 C","PANTONE 649 C","PANTONE 650 C","PANTONE 651 C","PANTONE 652 C","PANTONE 653 C","PANTONE 654 C","PANTONE 655 C","PANTONE 656 C","PANTONE 657 C","PANTONE 658 C","PANTONE 659 C","PANTONE 660 C","PANTONE 661 C","PANTONE 662 C","PANTONE 663 C","PANTONE 664 C","PANTONE 665 C","PANTONE 666 C","PANTONE 667 C","PANTONE 668 C","PANTONE 669 C","PANTONE 670 C","PANTONE 671 C","PANTONE 672 C","PANTONE 673 C","PANTONE 674 C","PANTONE 675 C","PANTONE 676 C","PANTONE 677 C","PANTONE 678 C","PANTONE 679 C","PANTONE 680 C","PANTONE 681 C","PANTONE 682 C","PANTONE 683 C","PANTONE 684 C","PANTONE 685 C","PANTONE 686 C","PANTONE 687 C","PANTONE 688 C","PANTONE 689 C","PANTONE 690 C","PANTONE 691 C","PANTONE 692 C","PANTONE 693 C","PANTONE 694 C","PANTONE 695 C","PANTONE 696 C","PANTONE 697 C","PANTONE 698 C","PANTONE 699 C","PANTONE 700 C","PANTONE 701 C","PANTONE 702 C","PANTONE 703 C","PANTONE 704 C","PANTONE 705 C","PANTONE 706 C","PANTONE 707 C","PANTONE 708 C","PANTONE 709 C","PANTONE 710 C","PANTONE 711 C","PANTONE 712 C","PANTONE 713 C","PANTONE 714 C","PANTONE 715 C","PANTONE 716 C","PANTONE 717 C","PANTONE 718 C","PANTONE 719 C","PANTONE 720 C","PANTONE 721 C","PANTONE 722 C","PANTONE 723 C","PANTONE 724 C","PANTONE 725 C","PANTONE 726 C","PANTONE 727 C","PANTONE 728 C","PANTONE 729 C","PANTONE 730 C","PANTONE 731 C","PANTONE 732 C","PANTONE 7401 C","PANTONE 7402 C","PANTONE 7403 C","PANTONE 7404 C","PANTONE 7405 C","PANTONE 7406 C","PANTONE 7407 C","PANTONE 7408 C","PANTONE 7409 C","PANTONE 7410 C","PANTONE 7411 C","PANTONE 7412 C","PANTONE 7413 C","PANTONE 7414 C","PANTONE 7415 C","PANTONE 7416 C","PANTONE 7417 C","PANTONE 7418 C","PANTONE 7419 C","PANTONE 7420 C","PANTONE 7421 C","PANTONE 7422 C","PANTONE 7423 C","PANTONE 7424 C","PANTONE 7425 C","PANTONE 7426 C","PANTONE 7427 C","PANTONE 7428 C","PANTONE 7429 C","PANTONE 7430 C","PANTONE 7431 C","PANTONE 7432 C","PANTONE 7433 C","PANTONE 7434 C","PANTONE 7435 C","PANTONE 7436 C","PANTONE 7437 C","PANTONE 7438 C","PANTONE 7439 C","PANTONE 7440 C","PANTONE 7441 C","PANTONE 7442 C","PANTONE 7443 C","PANTONE 7444 C","PANTONE 7445 C","PANTONE 7446 C","PANTONE 7447 C","PANTONE 7448 C","PANTONE 7449 C","PANTONE 7450 C","PANTONE 7451 C","PANTONE 7452 C","PANTONE 7453 C","PANTONE 7454 C","PANTONE 7455 C","PANTONE 7456 C","PANTONE 7457 C","PANTONE 7458 C","PANTONE 7459 C","PANTONE 7460 C","PANTONE 7461 C","PANTONE 7462 C","PANTONE 7463 C","PANTONE 7464 C","PANTONE 7465 C","PANTONE 7466 C","PANTONE 7467 C","PANTONE 7468 C","PANTONE 7469 C","PANTONE 7470 C","PANTONE 7471 C","PANTONE 7472 C","PANTONE 7473 C","PANTONE 7474 C","PANTONE 7475 C","PANTONE 7476 C","PANTONE 7477 C","PANTONE 7478 C","PANTONE 7479 C","PANTONE 7480 C","PANTONE 7481 C","PANTONE 7482 C","PANTONE 7483 C","PANTONE 7484 C","PANTONE 7485 C","PANTONE 7486 C","PANTONE 7487 C","PANTONE 7488 C","PANTONE 7489 C","PANTONE 7490 C","PANTONE 7491 C","PANTONE 7492 C","PANTONE 7493 C","PANTONE 7494 C","PANTONE 7495 C","PANTONE 7496 C","PANTONE 7497 C","PANTONE 7498 C","PANTONE 7499 C","PANTONE 7500 C","PANTONE 7501 C","PANTONE 7502 C","PANTONE 7503 C","PANTONE 7504 C","PANTONE 7505 C","PANTONE 7506 C","PANTONE 7507 C","PANTONE 7508 C","PANTONE 7509 C","PANTONE 7510 C","PANTONE 7511 C","PANTONE 7512 C","PANTONE 7513 C","PANTONE 7514 C","PANTONE 7515 C","PANTONE 7516 C","PANTONE 7517 C","PANTONE 7518 C","PANTONE 7519 C","PANTONE 7520 C","PANTONE 7521 C","PANTONE 7522 C","PANTONE 7523 C","PANTONE 7524 C","PANTONE 7525 C","PANTONE 7526 C","PANTONE 7527 C","PANTONE 7528 C","PANTONE 7529 C","PANTONE 7530 C","PANTONE 7531 C","PANTONE 7532 C","PANTONE 7533 C","PANTONE 7534 C","PANTONE 7535 C","PANTONE 7536 C","PANTONE 7537 C","PANTONE 7538 C","PANTONE 7539 C","PANTONE 7540 C","PANTONE 7541 C","PANTONE 7542 C","PANTONE 7543 C","PANTONE 7544 C","PANTONE 7545 C","PANTONE 7546 C","PANTONE 7547 C","PANTONE 8003 C","PANTONE 801 C","PANTONE 802 C","PANTONE 8021 C","PANTONE 803 C","PANTONE 804 C","PANTONE 805 C","PANTONE 806 C","PANTONE 8062 C","PANTONE 807 C","PANTONE 808 C","PANTONE 809 C","PANTONE 810 C","PANTONE 8100 C","PANTONE 811 C","PANTONE 812 C","PANTONE 813 C","PANTONE 814 C","PANTONE 8201 C","PANTONE 8281 C","PANTONE 8321 C","PANTONE 871 C","PANTONE 872 C","PANTONE 873 C","PANTONE 874 C","PANTONE 875 C","PANTONE 876 C","PANTONE 877 C","PANTONE Black 2 C","PANTONE Black 3 C","PANTONE Black 4 C","PANTONE Black 5 C","PANTONE Black 6 C","PANTONE Black 7 C","PANTONE Black C","PANTONE Black C 1","PANTONE Blue 072 C","PANTONE Blue 072 C 1","PANTONE Cool Gray 1 C","PANTONE Cool Gray 10 C","PANTONE Cool Gray 11 C","PANTONE Cool Gray 2 C","PANTONE Cool Gray 3 C","PANTONE Cool Gray 4 C","PANTONE Cool Gray 5 C","PANTONE Cool Gray 6 C","PANTONE Cool Gray 7 C","PANTONE Cool Gray 8 C","PANTONE Cool Gray 9 C","PANTONE Green C","PANTONE Green C 1","PANTONE Hexachrome Black C","PANTONE Hexachrome Cyan C","PANTONE Hexachrome Green C","PANTONE Hexachrome Magenta C","PANTONE Hexachrome Orange C","PANTONE Hexachrome Yellow C","PANTONE Orange 021 C","PANTONE Orange 021 C 1","PANTONE Process Black C","PANTONE Process Blue C","PANTONE Process Blue C 1","PANTONE Process Cyan C","PANTONE Process Magenta C","PANTONE Process Yellow C","PANTONE Purple C","PANTONE Purple C 1","PANTONE Red 032 C","PANTONE Red 032 C 1","PANTONE Reflex Blue C","PANTONE Reflex Blue C 1","PANTONE Rhodamine Red C","PANTONE Rhodamine Red C 1","PANTONE Rubine Red C","PANTONE Rubine Red C 1","PANTONE Violet C","PANTONE Violet C 1","PANTONE Warm Gray 1 C","PANTONE Warm Gray 10 C","PANTONE Warm Gray 11 C","PANTONE Warm Gray 2 C","PANTONE Warm Gray 3 C","PANTONE Warm Gray 4 C","PANTONE Warm Gray 5 C","PANTONE Warm Gray 6 C","PANTONE Warm Gray 7 C","PANTONE Warm Gray 8 C","PANTONE Warm Gray 9 C","PANTONE Warm Red C","PANTONE Warm Red C 1","PANTONE Yellow 012 C","PANTONE Yellow C","PANTONE Yellow C 1"];
    var solidRGB = [[255,247,151],[255,244,83],[255,242.00000077486,4.00000023655593],[219.000002145767,1970 00003457069,0],[192.000003755093,174.000004827976,0],[149.000006318092,136.000007092953,0] ,[255,239.000000953674,111.000000983477],[255,234.000001251698,83.0000026524067],[255,229. 000001549721,18.0000008270144],[255,221.000002026558,0],[240.00000089407,202.000003159046, 0],[197.000003457069,169.000005125999,1.00000005913898],[173.000004887581,150.000006258488 ,0],[255,230.000001490116,116.000000685453],[255,227.00000166893,99.0000016987324],[255,22 4.000001847744,79.0000028908253],[255,210.000002682209,0],[222.000001966953,180.0000044703 48,7.000000057742],[196.000003516674,159.000005722046,6.00000011734664],[150.000006258488, 129.000007510185,0],[255,227.00000166893,132.000007331371],[255,238.000001013279,187.00000 4053116],[255,222.000001966953,108.000001162291],[255,228.000001609325,156.00000590086],[2 55,210.000002682209,79.0000028908253],[255,212.000002563,120.000000447035],[255,196.000003 516674,37.0000015944242],[253.000000119209,187.000004053116,48.0000009387732],[238.0000010 13279,178.000004589558,17.0000008866191],[213.000002503395,159.000005722046,15.00000005587 94],[197.000003457069,150.000006258488,11.0000002942979],[179.000004529953,135.00000715255 7,7.000000057742],[173.000004887581,133.000007271767,5.00000017695129],[144.000006616116,1 09.000001102686,0],[255,231.000001430511,148.000006377697],[255,222.000001966953,117.00000 0625849],[255,212.000002563,87.0000024139881],[253.000000119209,184.00000423193,19.0000007 674098],[231.000001430511,166.000005304813,20.0000007078052],[187.000004053116,140.0000068 54534,10.0000003539026],[136.000007092953,109.000001102686,0],[255,224.000001847744,155.00 0005960464],[255,219.000002145767,149.000006318092],[255,208.000002801418,123.000000268221 ],[255,207.000002861023,130.000007450581],[253.000000119209,191.000003814697,87.0000024139 881],[253.000000119209,188.000003993511,95.000001937151],[251.000000238419,176.00000470876 7,52.0000007003546],[250.000000298023,166.000005304813,52.0000007003546],[245.000000596046 ,159.000005722046,26.0000003501773],[232.000001370907,148.000006377697,25.0000004097819],[ 200.000003278255,138.000006973743,17.0000008866191],[171.00000500679,113.000000864267,10.0 000003539026],[138.000006973743,104.000001400709,0],[120.000000447035,82.0000027120113,0], [255,209.000002741814,139.000006914139],[253.000000119209,190.000003874302,86.000002473592 8],[251.000000238419,176.000004708767,63.0000000447035],[248.000000417233,152.000006139278 ,29.0000001713634],[229.000001549721,142.000006735325,26.0000003501773],[178.000004589558, 115.000000745058,14.000000115484],[135.000007152557,101.000001579523,0],[255,216.000002324 581,167.000005245209],[253.000000119209,193.000003695488,129.000007510185],[253.0000001192 09,202.000003159046,144.000006616116],[251.000000238419,181.000004410744,103.000001460314] ,[251.000000238419,177.000004649162,97.0000018179417],[249.000000357628,163.000005483627,8 0.0000028312206],[248.000000417233,152.000006139278,40.0000014156103],[243.000000715256,14 3.00000667572,29.0000001713634],[222.000001966953,121.00000038743,28.000000230968],[209.00 0002741814,131.000007390976,22.0000005885959],[166.000005304813,96.0000018775463,12.000000 2346933],[175.000004768372,110.000001043081,13.0000001750886],[102.000001519918,54.0000005 811453,0],[255,224.000001847744,187.000004053116],[253.000000119209,205.000002980232,167.0 00005245209],[253.000000119209,204.000003039837,153.000006079674],[250.000000298023,180.00 0004470348,133.000007271767],[249.000000357628,162.000005543232,94.0000019967556],[248.000 000417233,158.000005781651,89.0000022947788],[245.000000596046,128.00000756979,37.00000159 44242],[246.000000536442,137.000007033348,51.0000007599592],[227.00000166893,111.000000983 477,30.0000001117587],[232.000001370907,125.000000149012,29.0000001713634],[177.0000046491 62,92.0000021159649,17.0000008866191],[182.000004351139,102.000001519918,18.0000008270144] ,[118.000000566244,66.0000036656857,0],[156.00000590086,86.0000024735928,7.000000057742],[ 254.000000059605,220.000002086163,194.000003635883],[251.000000238419,188.000003993511,155 .000005960464],[251.000000238419,187.000004053116,143.00000667572],[249.000000357628,171.0 0000500679,132.000007331371],[248.000000417233,156.00000590086,87.0000024139881],[247.0000 00476837,151.000006198883,98.000001758337],[245.000000596046,132.000007331371,38.000001534 8196],[244.000000655651,124.000000208616,48.0000009387732],[244.000000655651,123.000000268 221,32.0000018924475],[243.000000715256,116.000000685453,33.0000018328428],[208.0000028014 18,111.000000983477,26.0000003501773],[185.000004172325,89.0000022947788,21.0000006482005] ,[126.000000089407,67.000003606081,0],[153.000006079674,71.0000033676624,8.00000047311187] ,[252.000000178814,210.000002682209,193.000003695488],[249.000000357628,169.000005125999,1 37.000007033348],[246.000000536442,144.000006616116,93.0000020563602],[244.000000655651,12 0.000000447035,54.0000005811453],[232.000001370907,108.000001162291,31.0000000521541],[168 .000005185604,77.0000030100346,16.0000009462237],[124.000000208616,58.0000003427267,0],[25 1.000000238419,201.000003218651,191.000003814697],[248.000000417233,175.000004768372,173.0 00004887581],[250.000000298023,197.000003457069,198.000003397465],[247.000000476837,160.00 0005662441,139.000006914139],[246.000000536442,157.000005841255,154.000006020069],[244.000 000655651,136.000007092953,135.000007152557],[245.000000596046,134.000007212162,107.000001 221895],[243.000000715256,119.000000506639,110.000001043081],[241.000000834465,99.00000169 87324,93.0000020563602],[240.00000089407,81.000002771616,51.0000007599592],[241.0000008344 65,93.0000020563602,34.0000017732382],[238.000001013279,52.0000007003546,36.0000016540289] ,[227.00000166893,27.0000002905726,35.0000017136335],[217.000002264977,84.000002592802,30. 0000001117587],[191.000003814697,49.0000008791685,26.0000003501773],[181.000004410744,18.0 000008270144,27.0000002905726],[146.000006496906,60.0000002235174,6.00000011734664],[138.0 00006973743,31.0000000521541,3.00000005867332],[111.000000983477,18.0000008270144,0],[250. 000000298023,200.000003278255,203.000003099442],[246.000000536442,160.000005662441,166.000 005304813],[243.000000715256,118.000000566244,121.00000038743],[239.000000953674,62.000000 1043081,66.0000036656857],[227.00000166893,24.0000004693866,54.0000005811453],[196.0000035 16674,18.0000008270144,48.0000009387732],[139.000006914139,15.0000000558794,4.000000236555 93],[247.000000476837,178.000004589558,191.000003814697],[249.000000357628,196.00000351667 4,206.000002920628],[244.000000655651,143.00000667572,156.00000590086],[247.000000476837,1 70.000005066395,188.000003993511],[241.000000834465,100.000001639128,119.000000506639],[24 1.000000834465,111.000000983477,145.000006556511],[237.000001072884,24.0000004693866,73.00 00032484531],[237.000001072884,21.0000006482005,86.0000024735928],[209.000002741814,18.000 0008270144,66.0000036656857],[224.000001847744,19.0000007674098,79.0000028908253],[171.000 00500679,5.00000017695129,52.0000007003546],[198.000003397465,12.0000002346933,70.00000342 72671],[130.000007450581,0,36.0000016540289],[163.000005483627,2.00000011827797,52.0000007 003546],[250.000000298023,202.000003159046,214.00000244379],[246.000000536442,162.00000554 3232,182.000004351139],[241.000000834465,95.000001937151,124.000000208616],[237.0000010728 84,22.0000005885959,79.0000028908253],[211.000002622604,17.0000008866191,69.0000034868717] ,[178.000004589558,8.00000047311187,56.000000461936],[152.000006139278,0,46.0000010579824] ,[248.000000417233,185.000004172325,205.000002980232],[243.000000715256,138.000006973743,1 78.000004589558],[239.000000953674,80.0000028312206,145.000006556511],[228.000001609325,14 .000000115484,98.000001758337],[198.000003397465,6.00000011734664,81.000002771616],[163.00 0005483627,0,70.0000034272671],[134.000007212162,0,56.000000461936],[247.000000476837,175. 000004768372,195.000003576279],[244.000000655651,144.000006616116,175.000004768372],[241.0 00000834465,109.000001102686,154.000006020069],[238.000001013279,44.0000011771917,116.0000 00685453],[219.000002145767,9.00000041350722,98.000001758337],[182.000004351139,0,80.00000 28312206],[142.000006735325,12.0000002346933,58.0000003427267],[249.000000357628,198.00000 3397465,220.000002086163],[236.000001132488,131.000007390976,181.000004410744],[234.000001 251698,68.0000035464764,152.000006139278],[202.000003159046,0,108.000001162291],[177.00000 4649162,0,92.0000021159649],[124.000000208616,0,64.0000037848949],[245.000000596046,162.00 0005543232,198.000003397465],[238.000001013279,128.00000756979,179.000004529953],[235.0000 01192093,82.0000027120113,157.000005841255],[236.000001132488,11.0000002942979,141.0000067 9493],[198.000003397465,0,111.000000983477],[156.00000590086,0,88.0000023543835],[122.0000 00327826,0,60.0000002235174],[247.000000476837,185.000004172325,212.000002563],[239.000000 953674,149.000006318092,191.000003814697],[232.000001370907,119.000000506639,175.000004768 372],[214.00000244379,12.0000002346933,140.000006854534],[175.000004768372,0,110.000001043 081],[151.000006198883,0,93.0000020563602],[244.000000655651,191.000003814697,217.00000226 4977],[242.00000077486,197.000003457069,220.000002086163],[235.000001192093,153.0000060796 74,194.000003635883],[219.000002145767,135.000007152557,185.000004172325],[227.00000166893 ,126.000000089407,178.000004589558],[200.000003278255,89.0000022947788,161.000005602837],[ 215.000002384186,91.0000021755695,161.000005602837],[185.000004172325,47.0000009983778,146 .000006496906],[201.000003218651,48.0000009387732,146.000006496906],[173.000004887581,32.0 000018924475,142.000006735325],[181.000004410744,26.0000003501773,138.000006973743],[162.0 00005543232,25.0000004097819,132.000007331371],[130.000007450581,0,83.0000026524067],[133. 000007271767,12.0000002346933,112.000000923872],[234.000001251698,191.000003814697,217.000 002264977],[223.000001907349,170.000005066395,206.000002920628],[211.000002622604,140.0000 06854534,189.000003933907],[182.000004351139,63.0000000447035,151.000006198883],[169.00000 5125999,33.0000018328428,142.000006735325],[158.000005781651,33.0000018328428,139.00000691 4139],[126.000000089407,12.0000002346933,110.000001043081],[235.000001192093,212.000002563 ,231.000001430511],[215.000002384186,166.000005304813,204.000003039837],[191.000003814697, 131.000007390976,185.000004172325],[157.000005841255,51.0000007599592,147.000006437302],[1 45.000006556511,39.000001475215,143.00000667572],[115.000000745058,20.0000007078052,114.00 0000804663],[230.000001490116,206.000002920628,228.000001609325],[202.000003159046,170.000 005066395,208.000002801418],[195.000003576279,171.00000500679,210.000002682209],[179.00000 4529953,161.000005602837,206.000002920628],[212.000002563,174.000004827976,210.00000268220 9],[177.000004649162,143.00000667572,194.000003635883],[177.000004649162,149.000006318092, 198.000003397465],[156.00000590086,141.00000679493,195.000003576279],[154.000006020069,91. 0000021755695,164.000005424023],[149.000006318092,97.0000018179417,168.000005185604],[147. 000006437302,111.000000983477,177.000004649162],[122.000000327826,104.000001400709,174.000 004827976],[120.000000447035,29.0000001713634,126.000000089407],[127.000000029802,64.00000 37848949,152.000006139278],[124.000000208616,65.0000037252903,153.000006079674],[82.000002 7120113,46.0000010579824,145.000006556511],[112.000000923872,20.0000007078052,113.00000086 4267],[119.000000506639,39.000001475215,139.000006914139],[110.000001043081,41.00000135600 57,141.00000679493],[84.000002592802,41.0000013560057,136.000007092953],[101.000001579523, 3.00000005867332,96.0000018775463],[108.000001162291,32.0000018924475,127.000000029802],[1 08.000001162291,32.0000018924475,126.000000089407],[83.0000026524067,36.0000016540289,127. 000000029802],[86.0000024735928,0,78.0000029504299],[84.000002592802,7.000000057742,91.000 0021755695],[97.0000018179417,16.0000009462237,106.0000012815],[73.0000032484531,23.000000 5289912,109.000001102686],[223.000001907349,215.000002384186,235.000001192093],[181.000004 410744,178.000004589558,217.000002264977],[185.000004172325,178.000004589558,216.000002324 581],[154.000006020069,155.000005960464,205.000002980232],[129.000007510185,119.0000005066 39,183.000004291534],[126.000000089407,129.000007510185,190.000003874302],[90.000002235174 2,64.0000037848949,153.000006079674],[113.000000864267,111.000000983477,179.000004529953], [73.0000032484531,47.0000009983778,146.000006496906],[79.0000028908253,38.0000015348196,13 1.000007390976],[51.0000007599592,41.0000013560057,133.000007271767],[70.0000034272671,22. 0000005885959,107.000001221895],[38.0000015348196,8.00000047311187,89.0000022947788],[173. 000004887581,176.000004708767,216.000002324581],[152.000006139278,165.000005364418,212.000 002563],[202.000003159046,217.000002264977,239.000000953674],[207.000002861023,224.0000018 47744,243.000000715256],[184.00000423193,208.000002801418,237.000001072884],[147.000006437 302,152.000006139278,204.000003039837],[118.000000566244,133.000007271767,194.000003635883 ],[139.000006914139,164.000005424023,212.000002563],[176.000004708767,202.000003159046,234 .000001251698],[90.0000022351742,135.000007152557,197.000003457069],[117.000000625849,129. 000007510185,191.000003814697],[82.0000027120113,97.0000018179417,172.000004947186],[75.00 00031292439,99.0000016987324,174.000004827976],[78.0000029504299,132.000007331371,196.0000 03516674],[0,92.0000021159649,171.00000500679],[39.000001475215,49.0000008791685,139.00000 6914139],[39.000001475215,54.0000005811453,145.000006556511],[35.0000017136335,62.00000010 43081,153.000006079674],[27.0000002905726,66.0000036656857,152.000006139278],[34.000001773 2382,31.0000000521541,114.000000804663],[35.0000017136335,47.0000009983778,132.00000733137 1],[33.0000018328428,54.0000005811453,139.000006914139],[19.0000007674098,61.0000001639128 ,141.00000679493],[25.0000004097819,57.0000004023314,137.000007033348],[29.0000001713634,1 7.0000008866191,96.0000018775463],[30.0000001117587,33.0000018328428,113.000000864267],[28 .000000230968,38.0000015348196,116.000000685453],[6.00000011734664,52.0000007003546,122.00 0000327826],[1.00000005913898,58.0000003427267,129.000007510185],[15.0000000558794,0,78.00 00029504299],[21.0000006482005,20.0000007078052,95.000001937151],[17.0000008866191,23.0000 005289912,94.0000019967556],[0,36.0000016540289,93.0000020563602],[0,45.0000011175871,106. 0000012815],[180.000004470348,213.000002503395,240.00000089407],[150.000006258488,192.0000 03755093,230.000001490116],[81.000002771616,144.000006616116,205.000002980232],[0,73.00000 32484531,144.000006616116],[0,61.0000001639128,125.000000149012],[0,45.0000011175871,98.00 0001758337],[159.000005722046,203.000003099442,237.000001072884],[108.000001162291,173.000 004887581,223.000001907349],[0,124.000000208616,194.000003635883],[0,93.0000020563602,170. 000005066395],[0,83.0000026524067,155.000005960464],[0,75.0000031292439,141.00000679493],[ 0,43.0000012367964,92.0000021159649],[185.000004172325,224.000001847744,247.000000476837], [139.000006914139,210.000002682209,244.000000655651],[164.000005424023,214.00000244379,244 .000000655651],[84.000002592802,188.000003993511,235.000001192093],[120.000000447035,189.0 00003933907,232.000001370907],[0,150.000006258488,214.00000244379],[0,103.000001460314,177 .000004649162],[0,118.000000566244,191.000003814697],[0,85.0000025331974,150.000006258488] ,[0,105.000001341105,170.000005066395],[0,68.0000035464764,124.000000208616],[0,82.0000027 120113,136.000007092953],[0,45.0000011175871,86.0000024735928],[0,58.0000003427267,99.0000 016987324],[114.000000804663,205.000002980232,244.000000655651],[173.000004887581,224.0000 01847744,237.000001072884],[19.0000007674098,181.000004410744,234.000001251698],[80.000002 8312206,200.000003278255,232.000001370907],[0,157.000005841255,220.000002086163],[0,164.00 0005424023,227.00000166893],[0,120.000000447035,193.000003695488],[0,129.000007510185,198. 000003397465],[0,101.000001579523,164.000005424023],[0,114.000000804663,174.000004827976], [0,84.000002592802,128.00000756979],[0,90.0000022351742,132.000007331371],[0,63.0000000447 035,95.000001937151],[0,73.0000032484531,99.0000016987324],[173.000004887581,223.000001907 349,232.000001370907],[112.000000923872,205.000002980232,227.00000166893],[0,188.000003993 511,228.000001609325],[0,120.000000447035,174.000004827976],[0,104.000001400709,146.000006 496906],[0,73.0000032484531,96.0000018775463],[137.000007033348,212.000002563,226.00000172 8535],[138.000006973743,211.000002622604,223.000001907349],[65.0000037252903,196.000003516 674,220.000002086163],[70.0000034272671,195.000003576279,210.000002682209],[0,174.00000482 7976,219.000002145767],[0,181.000004410744,204.000003039837],[0,154.000006020069,200.00000 3278255],[0,159.000005722046,194.000003635883],[0,131.000007390976,168.000005185604],[0,14 0.000006854534,168.000005185604],[0,113.000000864267,143.00000667572],[0,120.000000447035, 138.000006973743],[0,79.0000028908253,90.0000022351742],[0,83.0000026524067,93.00000205636 02],[206.000002920628,235.000001192093,234.000001251698],[154.000006020069,215.00000238418 6,219.000002145767],[113.000000864267,203.000003099442,210.000002682209],[0,160.0000056624 41,175.000004768372],[0,139.000006914139,153.000006079674],[0,124.000000208616,133.0000072 71767],[0,107.000001221895,110.000001043081],[181.000004410744,225.000001788139,225.000001 788139],[158.000005781651,216.000002324581,213.000002503395],[166.000005304813,218.0000022 05372,212.000002563],[142.000006735325,210.000002682209,202.000003159046],[103.00000146031 4,199.00000333786,198.000003397465],[131.000007390976,207.000002861023,202.000003159046],[ 126.000000089407,205.000002980232,195.000003576279],[97.0000018179417,197.000003457069,186 .00000411272],[0,177.000004649162,176.000004708767],[34.0000017732382,188.000003993511,185 .000004172325],[53.0000006407499,189.000003933907,178.000004589558],[0,175.000004768372,15 8.000005781651],[0,147.000006437302,143.00000667572],[0,169.000005125999,166.000005304813] ,[0,172.000004947186,161.000005602837],[0,160.000005662441,142.000006735325],[0,126.000000 089407,122.000000327826],[0,149.000006318092,143.00000667572],[0,158.000005781651,147.0000 06437302],[0,142.000006735325,126.000000089407],[0,108.000001162291,103.000001460314],[0,1 08.000001162291,100.000001639128],[0,140.000006854534,127.000000029802],[0,113.00000086426 7,97.0000018179417],[0,89.0000022947788,83.0000026524067],[0,77.0000030100346,66.000003665 6857],[0,87.0000024139881,70.0000034272671],[0,72.0000033080578,58.0000003427267],[192.000 003755093,228.000001609325,218.000002205372],[177.000004649162,222.000001966953,210.000002 682209],[143.00000667572,210.000002682209,197.000003457069],[0,162.000005543232,137.000007 033348],[0,128.00000756979,102.000001519918],[0,105.000001341105,81.000002771616],[175.000 004768372,221.000002026558,210.000002682209],[165.000005364418,217.000002264977,201.000003 218651],[133.000007271767,206.000002920628,188.000003993511],[139.000006914139,207.0000028 61023,186.00000411272],[0,177.000004649162,147.000006437302],[93.0000020563602,194.0000036 35883,165.000005364418],[0,155.000005960464,122.000000327826],[0,176.000004708767,133.0000 07271767],[0,130.000007450581,101.000001579523],[0,138.000006973743,94.0000019967556],[0,1 11.000000983477,81.000002771616],[0,112.000000923872,74.0000031888485],[0,87.0000024139881 ,60.0000002235174],[0,80.0000028312206,47.0000009983778],[186.00000411272,224.000001847744 ,205.000002980232],[158.000005781651,213.000002503395,188.000003993511],[115.000000745058, 198.000003397465,161.000005602837],[0,161.000005602837,96.0000018775463],[0,136.0000070929 53,81.000002771616],[0,112.000000923872,60.0000002235174],[0,72.0000033080578,18.000000827 0144],[211.000002622604,235.000001192093,219.000002145767],[186.00000411272,224.0000018477 44,201.000003218651],[159.000005722046,213.000002503395,181.000004410744],[0,177.000004649 162,90.0000022351742],[0,169.000005125999,79.0000028908253],[0,133.000007271767,63.0000000 447035],[0,98.000001758337,37.0000015944242],[189.000003933907,222.000001966953,177.000004 649162],[167.000005245209,213.000002503395,157.000005841255],[115.000000745058,193.0000036 95488,103.000001460314],[84.000002592802,185.000004172325,72.0000033080578],[74.0000031888 485,169.000005125999,66.0000036656857],[67.000003606081,149.000006318092,57.0000004023314] ,[56.000000461936,124.000000208616,43.0000012367964],[225.000001788139,237.000001072884,19 5.000003576279],[208.000002801418,228.000001609325,166.000005304813],[179.000004529953,216 .000002324581,140.000006854534],[122.000000327826,193.000003695488,66.0000036656857],[109. 000001102686,179.000004529953,63.0000000447035],[93.0000020563602,151.000006198883,50.0000 008195639],[79.0000028908253,110.000001043081,24.0000004693866],[231.000001430511,239.0000 00953674,188.000003993511],[218.000002205372,231.000001430511,162.000005543232],[200.00000 3278255,223.000001907349,142.000006735325],[160.000005662441,206.000002920628,103.00000146 0314],[140.000006854534,198.000003397465,63.0000000447035],[120.000000447035,162.000005543 232,47.0000009983778],[86.0000024735928,108.000001162291,17.0000008866191],[237.0000010728 84,237.000001072884,138.000006973743],[228.000001609325,231.000001430511,108.000001162291] ,[214.00000244379,224.000001847744,61.0000001639128],[193.000003695488,215.000002384186,47 .0000009983778],[178.000004589558,187.000004053116,30.0000001117587],[159.000005722046,166 .000005304813,23.0000005289912],[129.000007510185,124.000000208616,0],[244.000000655651,24 0.00000089407,142.000006735325],[235.000001192093,234.000001251698,102.000001519918],[226. 000001728535,230.000001490116,91.0000021755695],[213.000002503395,224.000001847744,77.0000 030100346],[194.000003635883,205.000002980232,35.0000017136335],[163.000005483627,165.0000 05364418,16.0000009462237],[141.00000679493,139.000006914139,0],[251.000000238419,242.0000 0077486,144.000006616116],[255,243.000000715256,115.000000745058],[246.000000536442,237.00 0001072884,95.000001937151],[253.000000119209,239.000000953674,66.0000036656857],[242.0000 0077486,235.000001192093,69.0000034868717],[247.000000476837,236.000001132488,0],[235.0000 01192093,231.000001430511,41.0000013560057],[243.000000715256,234.000001251698,0],[212.000 002563,209.000002741814,15.0000000558794],[195.000003576279,182.000004351139,0],[184.00000 423193,179.000004529953,8.00000047311187],[168.000005185604,153.000006079674,0],[164.00000 5424023,154.000006020069,0],[122.000000327826,111.000000983477,0],[218.000002205372,211.00 0002622604,204.000003039837],[203.000003099442,193.000003695488,182.000004351139],[187.000 004053116,176.000004708767,163.000005483627],[161.000005602837,151.000006198883,137.000007 033348],[136.000007092953,126.000000089407,110.000001043081],[105.000001341105,94.00000199 67556,73.0000032484531],[217.000002264977,207.000002861023,202.000003159046],[197.00000345 7069,184.00000423193,177.000004649162],[179.000004529953,165.000005364418,158.000005781651 ],[157.000005841255,141.00000679493,133.000007271767],[135.000007152557,116.000000685453,1 06.0000012815],[104.000001400709,79.0000028908253,64.0000037848949],[38.0000015348196,17.0 000008866191,0],[211.000002622604,210.000002682209,196.000003516674],[189.000003933907,188 .000003993511,175.000004768372],[166.000005304813,166.000005304813,152.000006139278],[148. 000006377697,147.000006437302,131.000007390976],[117.000000625849,117.000000625849,97.0000 018179417],[95.000001937151,96.0000018775463,75.0000031292439],[3.00000005867332,24.000000 4693866,13.0000001750886],[220.000002086163,221.000002026558,222.000001966953],[197.000003 457069,198.000003397465,200.000003278255],[182.000004351139,184.00000423193,186.0000041127 2],[159.000005722046,161.000005602837,164.000005424023],[126.000000089407,128.00000756979, 130.000007450581],[95.000001937151,96.0000018775463,98.000001758337],[39.000001475215,36.0 000016540289,36.0000016540289],[228.000001609325,229.000001549721,230.000001490116],[207.0 00002861023,212.000002563,216.000002324581],[176.000004708767,182.000004351139,187.0000040 53116],[147.000006437302,155.000005960464,161.000005602837],[106.0000012815,115.0000007450 58,123.000000268221],[69.0000034868717,85.0000025331974,96.0000018775463],[22.000000588595 9,39.000001475215,50.0000008195639],[234.000001251698,225.000001788139,220.000002086163],[ 219.000002145767,209.000002741814,205.000002980232],[195.000003576279,182.000004351139,177 .000004649162],[151.000006198883,137.000007033348,129.000007510185],[91.0000021755695,88.0 000023543835,54.0000005811453],[74.0000031888485,74.0000031888485,48.0000009387732],[63.00 00000447035,62.0000001043081,41.0000013560057],[217.000002264977,226.000001728535,218.0000 02205372],[194.000003635883,205.000002980232,197.000003457069],[165.000005364418,179.00000 4529953,171.00000500679],[139.000006914139,155.000005960464,146.000006496906],[94.00000199 67556,110.000001043081,102.000001519918],[76.0000030696392,90.0000022351742,82.00000271201 13],[68.0000035464764,77.0000030100346,62.0000001043081],[82.0000027120113,79.000002890825 3,38.0000015348196],[110.000001043081,83.0000026524067,0],[89.0000022947788,88.00000235438 35,43.0000012367964],[156.00000590086,125.000000149012,13.0000001750886],[103.000001460314 ,100.000001639128,47.0000009983778],[177.000004649162,149.000006318092,58.0000003427267],[ 178.000004589558,170.000005066395,126.000000089407],[203.000003099442,182.000004351139,118 .000000566244],[197.000003457069,193.000003695488,157.000005841255],[218.000002205372,199. 00000333786,147.000006437302],[219.000002145767,215.000002384186,189.000003933907],[231.00 0001430511,216.000002324581,171.00000500679],[230.000001490116,229.000001549721,211.000002 622604],[241.000000834465,229.000001549721,200.000003278255],[118.000000566244,97.00000181 79417,0],[162.000005543232,136.000007092953,0],[194.000003635883,162.000005543232,4.000000 23655593],[233.000001311302,214.00000244379,102.000001519918],[242.00000077486,225.0000017 88139,139.000006914139],[246.000000536442,231.000001430511,161.000005602837],[248.00000041 7233,237.000001072884,180.000004470348],[90.0000022351742,71.0000033676624,28.000000230968 ],[87.0000024139881,39.000001475215,0],[127.000000029802,86.0000024735928,27.0000002905726 ],[155.000005960464,95.000001937151,14.000000115484],[158.000005781651,102.000001519918,20 .0000007078052],[190.000003874302,133.000007271767,76.0000030696392],[206.000002920628,170 .000005066395,122.000000327826],[212.000002563,166.000005304813,124.000000208616],[224.000 001847744,194.000003635883,152.000006139278],[229.000001549721,193.000003695488,159.000005 722046],[231.000001430511,210.000002682209,173.000004887581],[239.000000953674,214.0000024 4379,188.000003993511],[238.000001013279,225.000001788139,197.000003457069],[244.000000655 651,226.000001728535,207.000002861023],[121.00000038743,68.0000035464764,0],[91.0000021755 695,20.0000007078052,0],[176.000004708767,96.0000018775463,16.0000009462237],[144.00000661 6116,73.0000032484531,45.0000011175871],[206.000002920628,112.000000923872,25.000000409781 9],[176.000004708767,118.000000566244,96.0000018775463],[251.000000238419,180.000004470348 ,128.00000756979],[196.000003516674,146.000006496906,126.000000089407],[253.000000119209,2 03.000003099442,163.000005483627],[218.000002205372,180.000004470348,163.000005483627],[25 4.000000059605,219.000002145767,188.000003993511],[229.000001549721,197.000003457069,182.0 00004351139],[254.000000059605,228.000001609325,201.000003218651],[238.000001013279,217.00 0002264977,204.000003039837],[83.0000026524067,48.0000009387732,26.0000003501773],[104.000 001400709,50.0000008195639,31.0000000521541],[124.000000208616,53.0000006407499,32.0000018 924475],[184.00000423193,139.000006914139,115.000000745058],[216.000002324581,181.00000441 0744,163.000005483627],[229.000001549721,204.000003039837,188.000003993511],[239.000000953 674,223.000001907349,210.000002682209],[122.000000327826,22.0000005885959,0],[179.00000452 9953,35.0000017136335,23.0000005289912],[238.000001013279,50.0000008195639,36.000001654028 9],[247.000000476837,156.00000590086,136.000007092953],[249.000000357628,180.000004470348, 166.000005304813],[251.000000238419,199.00000333786,189.000003933907],[253.000000119209,22 1.000002026558,213.000002503395],[100.000001639128,34.0000017732382,0],[137.000007033348,4 9.0000008791685,1.00000005913898],[180.000004470348,83.0000026524067,64.0000037848949],[23 3.000001311302,152.000006139278,155.000005960464],[249.000000357628,186.00000411272,191.00 0003814697],[251.000000238419,204.000003039837,204.000003039837],[252.000000178814,219.000 002145767,216.000002324581],[89.0000022947788,31.0000000521541,0],[84.000002592802,25.0000 004097819,0],[124.000000208616,59.0000002831221,0],[147.000006437302,79.0000028908253,70.0 000034272671],[144.000006616116,77.0000030100346,3.00000005867332],[175.000004768372,110.0 00001043081,101.000001579523],[223.000001907349,158.000005781651,157.000005841255],[199.00 000333786,141.00000679493,134.000007212162],[241.000000834465,190.000003874302,190.0000038 74302],[225.000001788139,181.000004410744,178.000004589558],[247.000000476837,212.00000256 3,208.000002801418],[234.000001251698,201.000003218651,195.000003576279],[253.000000119209 ,229.000001549721,223.000001907349],[244.000000655651,222.000001966953,214.00000244379],[8 7.0000024139881,28.000000230968,31.0000000521541],[118.000000566244,33.0000018328428,35.00 00017136335],[138.000006973743,37.0000015944242,41.0000013560057],[221.000002026558,155.00 0005960464,165.000005364418],[237.000001072884,180.000004470348,192.000003755093],[250.000 000298023,204.000003039837,210.000002682209],[252.000000178814,218.000002205372,220.000002 086163],[98.000001758337,26.0000003501773,75.0000031292439],[92.0000021159649,41.000001356 0057,70.0000034272671],[134.000007212162,33.0000018328428,116.000000685453],[120.000000447 035,73.0000032484531,106.0000012815],[154.000006020069,77.0000030100346,158.000005781651], [149.000006318092,110.000001043081,142.000006735325],[210.000002682209,145.000006556511,19 1.000003814697],[180.000004470348,147.000006437302,177.000004649162],[228.000001609325,172 .000004947186,206.000002920628],[208.000002801418,181.000004410744,201.000003218651],[239. 000000953674,196.000003516674,220.000002086163],[230.000001490116,211.000002622604,220.000 002086163],[251.000000238419,217.000002264977,232.000001370907],[237.000001072884,226.0000 01728535,232.000001370907],[90.0000022351742,32.0000018924475,73.0000032484531],[76.000003 0696392,36.0000016540289,50.0000008195639],[108.000001162291,39.000001475215,105.000001341 105],[95.000001937151,57.0000004023314,68.0000035464764],[124.000000208616,43.000001236796 4,131.000007390976],[144.000006616116,117.000000625849,120.000000447035],[184.00000423193, 144.000006616116,194.000003635883],[186.00000411272,163.000005483627,171.00000500679],[206 .000002920628,168.000005185604,206.000002920628],[209.000002741814,188.000003993511,195.00 0003576279],[222.000001966953,193.000003695488,220.000002086163],[225.000001788139,212.000 002563,213.000002503395],[234.000001251698,217.000002264977,234.000001251698],[236.0000011 32488,229.000001549721,227.00000166893],[83.0000026524067,46.0000010579824,99.000001698732 4],[0,33.0000018328428,91.0000021755695],[101.000001579523,45.0000011175871,137.0000070333 48],[54.0000005811453,60.0000002235174,116.000000685453],[106.0000012815,44.0000011771917, 145.000006556511],[84.000002592802,98.000001758337,146.000006496906],[155.000005960464,125 .000000149012,185.000004172325],[145.000006556511,148.000006377697,182.000004351139],[186. 00000411272,157.000005841255,202.000003159046],[181.000004410744,187.000004053116,212.0000 02563],[204.000003039837,178.000004589558,213.000002503395],[201.000003218651,206.00000292 0628,225.000001788139],[223.000001907349,204.000003039837,228.000001609325],[223.000001907 349,222.000001966953,233.000001311302],[24.0000004693866,60.0000002235174,71.0000033676624 ],[30.0000001117587,65.0000037252903,100.000001639128],[23.0000005289912,74.0000031888485, 124.000000208616],[149.000006318092,168.000005185604,202.000003159046],[174.000004827976,1 88.000003993511,214.00000244379],[195.000003576279,208.000002801418,227.00000166893],[220. 000002086163,226.000001728535,237.000001072884],[0,43.0000012367964,84.000002592802],[0,39 .000001475215,76.0000030696392],[0,55.0000005215406,104.000001400709],[58.0000003427267,11 0.000001043081,143.00000667572],[0,70.0000034272671,127.000000029802],[93.0000020563602,13 5.000007152557,161.000005602837],[86.0000024735928,159.000005722046,211.000002622604],[127 .000000029802,161.000005602837,182.000004351139],[143.00000667572,195.000003576279,233.000 001311302],[185.000004172325,199.00000333786,212.000002563],[172.000004947186,212.00000256 3,241.000000834465],[204.000003039837,214.00000244379,223.000001907349],[194.000003635883, 224.000001847744,246.000000536442],[216.000002324581,227.00000166893,233.000001311302],[0, 50.0000008195639,77.0000030100346],[0,55.0000005215406,69.0000034868717],[0,33.00000183284 28,36.0000016540289],[0,57.0000004023314,90.0000022351742],[0,106.0000012815,113.000000864 267],[33.0000018328428,83.0000026524067,82.0000027120113],[0,68.0000035464764,106.00000128 15],[56.000000461936,147.000006437302,155.000005960464],[89.0000022947788,122.000000327826 ,123.000000268221],[86.0000024735928,155.000005960464,189.000003933907],[114.000000804663, 174.000004827976,182.000004351139],[146.000006496906,165.000005364418,164.000005424023],[1 26.000000089407,176.000004708767,204.000003039837],[156.00000590086,197.000003457069,201.0 00003218651],[174.000004827976,187.000004053116,186.00000411272],[160.000005662441,195.000 003576279,218.000002205372],[195.000003576279,223.000001907349,224.000001847744],[197.0000 03457069,209.000002741814,207.000002861023],[194.000003635883,219.000002145767,232.0000013 70907],[216.000002324581,233.000001311302,232.000001370907],[213.000002503395,222.00000196 6953,220.000002086163],[17.0000008866191,68.0000035464764,50.0000008195639],[0,63.00000004 47035,45.0000011175871],[0,84.000002592802,61.0000001639128],[52.0000007003546,113.0000008 64267,90.0000022351742],[0,103.000001460314,78.0000029504299],[97.0000018179417,144.000006 616116,128.00000756979],[114.000000804663,163.000005483627,146.000006496906],[139.00000691 4139,174.000004827976,161.000005602837],[154.000006020069,194.000003635883,185.00000417232 5],[173.000004887581,199.00000333786,188.000003993511],[188.000003993511,214.00000244379,2 05.000002980232],[201.000003218651,218.000002205372,209.000002741814],[204.000003039837,22 4.000001847744,217.000002264977],[218.000002205372,229.000001549721,220.000002086163],[0,7 2.0000033080578,51.0000007599592],[0,38.0000015348196,22.0000005885959],[0,104.00000140070 9,87.0000024139881],[56.000000461936,99.0000016987324,81.000002771616],[0,133.000007271767 ,118.000000566244],[110.000001043081,136.000007092953,120.000000447035],[116.000000685453, 199.00000333786,184.00000423193],[159.000005722046,173.000004887581,158.000005781651],[158 .000005781651,216.000002324581,210.000002682209],[188.000003993511,197.000003457069,186.00 000411272],[194.000003635883,229.000001549721,224.000001847744],[204.000003039837,212.0000 02563,202.000003159046],[217.000002264977,238.000001013279,230.000001490116],[217.00000226 4977,224.000001847744,216.000002324581],[0,79.0000028908253,57.0000004023314],[0,125.00000 0149012,104.000001400709],[0,146.000006496906,126.000000089407],[130.000007450581,206.0000 02920628,193.000003695488],[171.00000500679,220.000002086163,212.000002563],[194.000003635 883,229.000001549721,222.000001966953],[217.000002264977,238.000001013279,232.000001370907 ],[69.0000034868717,90.0000022351742,33.0000018328428],[51.0000007599592,70.0000034272671, 13.0000001750886],[58.0000003427267,76.0000030696392,0],[76.0000030696392,114.000000804663 ,29.0000001713634],[86.0000024735928,100.000001639128,35.0000017136335],[103.000001460314, 119.000000506639,24.0000004693866],[92.0000021159649,135.000007152557,39.000001475215],[11 4.000000804663,122.000000327826,53.0000006407499],[148.000006377697,155.000005960464,81.00 0002771616],[179.000004529953,204.000003039837,148.000006377697],[158.000005781651,163.000 005483627,116.000000685453],[176.000004708767,181.000004410744,121.00000038743],[195.00000 3576279,215.000002384186,164.000005424023],[184.00000423193,188.000003993511,155.000005960 464],[210.000002682209,214.00000244379,171.00000500679],[206.000002920628,224.000001847744 ,179.000004529953],[206.000002920628,208.000002801418,180.000004470348],[221.000002026558, 224.000001847744,189.000003933907],[219.000002145767,232.000001370907,196.000003516674],[2 23.000001907349,225.000001788139,206.000002920628],[240.00000089407,240.00000089407,216.00 0002324581],[103.000001460314,98.000001758337,0],[91.0000021755695,86.0000024735928,0],[13 9.000006914139,141.00000679493,9.00000041350722],[132.000007331371,122.000000327826,24.000 0004693866],[175.000004768372,188.000003993511,34.0000017732382],[170.000005066395,159.000 005722046,78.0000029504299],[217.000002264977,218.000002205372,86.0000024735928],[191.0000 03814697,182.000004351139,120.000000447035],[226.000001728535,228.000001609325,119.0000005 06639],[217.000002264977,211.000002622604,164.000005424023],[236.000001132488,237.00000107 2884,148.000006377697],[227.00000166893,222.000001966953,182.000004351139],[244.0000006556 51,243.000000715256,173.000004887581],[231.000001430511,226.000001728535,183.000004291534] ,[255,250.000000298023,196.000003516674],[255,249.000000357628,173.000004887581],[255,247. 000000476837,153.000006079674],[255,241.000000834465,110.000001043081],[253.000000119209,2 34.000001251698,51.0000007599592],[244.000000655651,220.000002086163,0],[231.000001430511, 207.000002861023,0],[253.000000119209,247.000000476837,213.000002503395],[252.000000178814 ,243.000000715256,185.000004172325],[248.000000417233,237.000001072884,155.000005960464],[ 245.000000596046,232.000001370907,129.000007510185],[235.000001192093,215.000002384186,34. 0000017732382],[215.000002384186,195.000003576279,0],[192.000003755093,173.000004887581,0] ,[246.000000536442,241.000000834465,205.000002980232],[242.00000077486,232.000001370907,18 7.000004053116],[236.000001132488,223.000001907349,167.000005245209],[220.000002086163,206 .000002920628,135.000007152557],[192.000003755093,174.000004827976,44.0000011771917],[164. 000005424023,148.000006377697,0],[143.00000667572,129.000007510185,0],[214.00000244379,233 .000001311302,225.000001788139],[185.000004172325,218.000002205372,204.000003039837],[157. 000005841255,200.000003278255,186.00000411272],[118.000000566244,174.000004827976,153.0000 06079674],[77.0000030100346,145.000006556511,122.000000327826],[0,92.0000021159649,66.0000 036656857],[0,56.000000461936,30.0000001117587],[204.000003039837,234.000001251698,238.000 001013279],[163.000005483627,219.000002145767,230.000001490116],[126.000000089407,208.0000 02801418,224.000001847744],[38.0000015348196,188.000003993511,214.00000244379],[0,168.0000 05185604,203.000003099442],[0,138.000006973743,176.000004708767],[0,118.000000566244,152.0 00006139278],[168.000005185604,221.000002026558,232.000001370907],[131.000007390976,210.00 0002682209,228.000001609325],[98.000001758337,202.000003159046,227.00000166893],[0,182.000 004351139,221.000002026558],[0,165.000005364418,217.000002264977],[0,143.00000667572,197.0 00003457069],[0,127.000000029802,177.000004649162],[204.000003039837,222.000001966953,240. 00000089407],[178.000004589558,206.000002920628,231.000001430511],[135.000007152557,178.00 0004589558,216.000002324581],[103.000001460314,153.000006079674,200.000003278255],[78.0000 029504299,138.000006973743,190.000003874302],[0,85.0000025331974,149.000006318092],[0,52.0 000007003546,104.000001400709],[220.000002086163,230.000001490116,243.000000715256],[184.0 0000423193,207.000002861023,233.000001311302],[145.000006556511,176.000004708767,213.00000 2503395],[114.000000804663,153.000006079674,198.000003397465],[0,82.0000027120113,149.0000 06318092],[0,61.0000001639128,120.000000447035],[0,47.0000009983778,101.000001579523],[214 .00000244379,231.000001430511,247.000000476837],[189.000003933907,216.000002324581,241.000 000834465],[173.000004887581,197.000003457069,231.000001430511],[115.000000745058,156.0000 0590086,210.000002682209],[4.00000023655593,108.000001162291,182.000004351139],[0,84.00000 2592802,158.000005781651],[0,75.0000031292439,145.000006556511],[232.000001370907,233.0000 01311302,245.000000596046],[222.000001966953,223.000001907349,241.000000834465],[194.00000 3635883,197.000003457069,224.000001847744],[162.000005543232,160.000005662441,199.00000333 786],[115.000000745058,115.000000745058,168.000005185604],[81.000002771616,78.000002950429 9,133.000007271767],[53.0000006407499,44.0000011771917,102.000001519918],[252.000000178814 ,227.00000166893,238.000001013279],[246.000000536442,212.000002563,229.000001549721],[237. 000001072884,182.000004351139,211.000002622604],[229.000001549721,152.000006139278,194.000 003635883],[220.000002086163,117.000000625849,174.000004827976],[196.000003516674,17.00000 08866191,136.000007092953],[182.000004351139,0,114.000000804663],[244.000000655651,224.000 001847744,237.000001072884],[240.00000089407,207.000002861023,227.00000166893],[234.000001 251698,194.000003635883,220.000002086163],[215.000002384186,156.00000590086,195.0000035762 79],[188.000003993511,118.000000566244,172.000004947186],[169.000005125999,78.000002950429 9,145.000006556511],[139.000006914139,0,90.0000022351742],[244.000000655651,214.0000024437 9,227.00000166893],[240.00000089407,196.000003516674,215.000002384186],[235.000001192093,1 83.000004291534,206.000002920628],[212.000002563,146.000006496906,179.000004529953],[192.0 00003755093,115.000000745058,157.000005841255],[160.000005662441,66.0000036656857,118.0000 00566244],[125.000000149012,0,73.0000032484531],[248.000000417233,218.000002205372,215.000 002384186],[244.000000655651,200.000003278255,201.000003218651],[234.000001251698,180.0000 04470348,184.00000423193],[225.000001788139,162.000005543232,160.000005662441],[203.000003 099442,126.000000089407,128.00000756979],[177.000004649162,96.0000018775463,98.00000175833 7],[157.000005841255,74.0000031888485,72.0000033080578],[252.000000178814,219.000002145767 ,218.000002205372],[250.000000298023,204.000003039837,205.000002980232],[248.000000417233, 179.000004529953,186.00000411272],[246.000000536442,161.000005602837,168.000005185604],[22 9.000001549721,109.000001102686,123.000000268221],[206.000002920628,70.0000034272671,82.00 00027120113],[180.000004470348,46.0000010579824,52.0000007003546],

  • Enquiry on converting a *.txt file to a *.pdf file

    Enquiry on converting a *.txt file to a *.pdf file
    Aim of this software: Let the user to choose a *.txt file to convert it to a *.pdf file.
    1. User clicks a choose file button. [chooseFileButton]
    2. User clicks the Export 2 button [exportButton2]
    3. User clicks the Text -> PDF button [pdfConverterButton]
    After choosing the file and click the choose file button:
    System prints out (for debbuging use...)
    ---------------------------Print from Trans.java - method transMemory--------------------
    File's name: file.txt
    File's path: C:\Users\charles\Desktop\netbean\Pdfproject1\file.txt
    After clicking the Export 2 button, system prints out:
    ---------------Print out the File's name - from DataOut.java - getData() Method-------------------------
    File's Name: file.txt
    ----------------Print out the file's path - from DataOut.java - getData() Method--------------
    File's path: C:\Users\charles\Desktop\netbean\Pdfproject1\file.txt
    The file now being read by the system: transNameData.txt
    The data being copied to this file: copyOfFileName.txt Destination
    This file has been copied: file.txt Original
    The following content has been copied:
    ---start of content - from TheFile.java - save2() method---
    Some content.....................................
    --------end of content--------
    Jul 18, 2010 3:32:04 PM mainFrame1 exportButton2ActionPerformed
    SEVERE: null
    java.io.IOException: Permission denied
    at java.io.FileInputStream.readBytes(Native Method)
    at java.io.FileInputStream.read(FileInputStream.java:199)
    at java.io.DataInputStream.read(DataInputStream.java:132)
    at sun.nio.cs.StreamDecoder.readBytes(StreamDecoder.java:264)
    at sun.nio.cs.StreamDecoder.implRead(StreamDecoder.java:306)
    at sun.nio.cs.StreamDecoder.read(StreamDecoder.java:158)
    at java.io.InputStreamReader.read(InputStreamReader.java:167)
    at java.io.BufferedReader.fill(BufferedReader.java:136)
    at java.io.BufferedReader.readLine(BufferedReader.java:299)
    at java.io.BufferedReader.readLine(BufferedReader.java:362)
    at TheFile.save2(TheFile.java:144)
    at mainFrame1.exportButton2ActionPerformed(mainFrame1.java:168)
    at mainFrame1.access$200(mainFrame1.java:30)
    at mainFrame1$3.actionPerformed(mainFrame1.java:79)
    at java.awt.Button.processActionEvent(Button.java:392)
    at java.awt.Button.processEvent(Button.java:360)
    at java.awt.Component.dispatchEventImpl(Component.java:4630)
    at java.awt.Component.dispatchEvent(Component.java:4460)
    at java.awt.EventQueue.dispatchEvent(EventQueue.java:599)
    at java.awt.EventDispatchThread.pumpOneEventForFilters(EventDispatchThread.java:269)
    at java.awt.EventDispatchThread.pumpEventsForFilter(EventDispatchThread.java:184)
    at java.awt.EventDispatchThread.pumpEventsForHierarchy(EventDispatchThread.java:174)
    at java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:169)
    at java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:161)
    at java.awt.EventDispatchThread.run(EventDispatchThread.java:122)
    After clicking the text -> PDF button, system prints out:
    The following data is called by the PDF converter button...
    ---------------Print out the File's name - from DataOut.java - getData() Method-------------------------
    File's Name: file.txt
    ----------------Print out the file's path - from DataOut.java - getData() Method--------------
    File's path: C:\Users\charles\Desktop\netbean\Pdfproject1\file.txt
    MakePdf.java is loading... - createPdf() method
    File you have chosen and this file will be converted to a PDF file: file.txt
    And the content of the file is:
    ---start of content--- (Info from MakePdf.java)
    Some content.....................................
    ---end of content---
    Print out the content again: Some content..................................... ---> Info from SubClass DocToPdf of MakePdf.java
    Exception in thread "AWT-EventQueue-0" ExceptionConverter: java.io.IOException: The document has no pages.
    at com.lowagie.text.pdf.PdfPages.writePageTree(Unknown Source)
    at com.lowagie.text.pdf.PdfWriter.close(Unknown Source)
    at com.lowagie.text.pdf.PdfDocument.close(Unknown Source)
    at com.lowagie.text.Document.close(Unknown Source)
    at MakePdf$DocToPdf.createDoc(MakePdf.java:140)
    at MakePdf.createPdf(MakePdf.java:97)
    at TheFile.forPdfUse(TheFile.java:267)
    at mainFrame1.pdfConverterButtonActionPerformed(mainFrame1.java:184)
    at mainFrame1.access$300(mainFrame1.java:30)
    at mainFrame1$4.actionPerformed(mainFrame1.java:86)
    at javax.swing.AbstractButton.fireActionPerformed(AbstractButton.java:1995)
    at javax.swing.AbstractButton$Handler.actionPerformed(AbstractButton.java:2318)
    at javax.swing.DefaultButtonModel.fireActionPerformed(DefaultButtonModel.java:387)
    at javax.swing.DefaultButtonModel.setPressed(DefaultButtonModel.java:242)
    at javax.swing.plaf.basic.BasicButtonListener.mouseReleased(BasicButtonListener.java:236)
    at java.awt.Component.processMouseEvent(Component.java:6263)
    at javax.swing.JComponent.processMouseEvent(JComponent.java:3267)
    at java.awt.Component.processEvent(Component.java:6028)
    at java.awt.Container.processEvent(Container.java:2041)
    at java.awt.Component.dispatchEventImpl(Component.java:4630)
    at java.awt.Container.dispatchEventImpl(Container.java:2099)
    at java.awt.Component.dispatchEvent(Component.java:4460)
    at java.awt.LightweightDispatcher.retargetMouseEvent(Container.java:4574)
    at java.awt.LightweightDispatcher.processMouseEvent(Container.java:4238)
    at java.awt.LightweightDispatcher.dispatchEvent(Container.java:4168)
    at java.awt.Container.dispatchEventImpl(Container.java:2085)
    at java.awt.Window.dispatchEventImpl(Window.java:2478)
    at java.awt.Component.dispatchEvent(Component.java:4460)
    at java.awt.EventQueue.dispatchEvent(EventQueue.java:599)
    at java.awt.EventDispatchThread.pumpOneEventForFilters(EventDispatchThread.java:269)
    at java.awt.EventDispatchThread.pumpEventsForFilter(EventDispatchThread.java:184)
    at java.awt.EventDispatchThread.pumpEventsForHierarchy(EventDispatchThread.java:174)
    at java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:169)
    at java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:161)
    at java.awt.EventDispatchThread.run(EventDispatchThread.java:122)
    BUILD SUCCESSFUL (total time: 1 minute 41 seconds)

    Source code: MakePdf.java
    import com.lowagie.text.DocumentException;
    import java.util.logging.Level;
    import java.util.logging.Logger;
    import javax.swing.*;
    import java.lang.String;
    import java.io.*;
    public class TheFile {
    String pathData;
    String nameData;
         public void PrepareJFileChooserData2(){
            try {
                // Create a object for JFileChooser.
                final JFileChooser choose = new JFileChooser();
                choose.showOpenDialog(null);
                File file = new File(choose.getSelectedFile(), "");
                pathData = file.getPath(); //get the path of the chosen file
                nameData = file.getName(); //get the name of the chosen file
                //Try to copy file to a temp file.
                Cfile2 cfile = new Cfile2();
                cfile.writeFile(nameData); // write nameData into the temp.txt file.
                //return pathData;
            } catch (IOException ex) {
                Logger.getLogger(TheFile.class.getName()).log(Level.SEVERE, null, ex);
          public String getPathName(){
                return pathData;
          public String getNameData(){
              return nameData;
        public class Cfile2{
        public void writeFile(String fName) throws IOException {
            PrintWriter pr = new PrintWriter(new File("temp.txt"));
            pr.println();
            pr.print("\n");
            pr.write("-------------------From SubClass - Cfile2 in TheFile.java----------------------");
            pr.write("File Name: " +nameData); // write the value of nameData to temp.txt
            pr.print("\n");
            pr.write("File's Path: "+pathData); // write the value of pathData to temp.txt
            pr.print("\n");
            pr.print("-------------------------------------------------------------------------------");
            pr.flush();  // Flush the data.
            pr.close();  // Close to unlock and flush to disk.
        public void save2() throws FileNotFoundException, IOException{
           // Copy and print out the file's name only
           String fileName = "transNameData.txt";
           File originFile = new File(fileName); //open the file to read
           System.out.println("The file now being read by the system: " +originFile);  //originFile = transNameData.txt
           File destinationFile = new File("copyOfFileName.txt"); // open another file and prepare to write in
        try {
            //Start trying to write data to file - copyOfFileName.txt
          byte[] readData = new byte[2048];
          FileInputStream fis = new FileInputStream(new File(fileName)); // Seems it writes the value of transNameData.txt to copy.txt
          int count = fis.available();
          if(count>0){
          FileOutputStream fos = new FileOutputStream(destinationFile);
          int i = fis.read(readData);
          while (i != -1) {
            fos.write(readData, 0, i);
            i = fis.read(readData);
          System.out.println("The data being copied to this file: " +destinationFile+ " Destination");
          fos.flush();
          fos.close();
          fis.close();
            }else{
              System.out.print("Error");
        } catch (IOException e) {
          System.out.println(e);
        // Copy the content of the file only
        FileInputStream fstream = new FileInputStream("transNameData.txt");
        // Get the object of DataInputStream
        DataInputStream in = new DataInputStream(fstream);
        BufferedReader br = new BufferedReader(new InputStreamReader(in));
        String strLine;
        //Read File Line By Line
        while ((strLine = br.readLine()) != null)   {
          // Print the content on the console
          System.out.println ("This file has been copied: " +strLine+ " Original"); //Work successfully, strLine has the value [file's title]
          File newDestinationFile = new File("ContentCopy.txt"); //Open the newCopy.txt file
          byte[] newReadData = new byte[2048];
          FileInputStream newFileInputStream = new FileInputStream(new File(strLine)); // See whether it can write it in... ok done!
          //String newString = newReadData.toString();
          //System.out.print("Content that has been copied: " +newString); //It prints out data in byte form...?!
          FileOutputStream newFileOutputStream = new FileOutputStream(newDestinationFile);
          int i = newFileInputStream.read(newReadData);
          while (i != -1) {
            newFileOutputStream.write(newReadData, 0, i);
            i = newFileInputStream.read(newReadData);
        FileInputStream newfstream = new FileInputStream(strLine);
        // Get the object of DataInputStream
        DataInputStream newin = new DataInputStream(newfstream);
            BufferedReader newbr = new BufferedReader(new InputStreamReader(newin));
        String content;
        //Read File Line By Line
        while ((content = newbr.readLine()) != null)   {
          // Print the content on the console
            System.out.println("\n");
            System.out.println("The following content has been copied: ");
            System.out.println(" ");
            System.out.println("---start of content - from TheFile.java - save2() method---");
            System.out.println(" ");
            System.out.println(content);
            System.out.println(" ");
            System.out.println("--------end of content--------");
        //Close the input stream
        in.close();
        //Close the input stream
        in.close();
    //----------- start PDF parser  ---> to txt format -------
       public void pdf() throws FileNotFoundException, IOException{
        //-----again--
       FileInputStream inStream = new FileInputStream("transNameData.txt");
        // Get the object of DataInputStream
        DataInputStream in = new DataInputStream(inStream);
            BufferedReader br = new BufferedReader(new InputStreamReader(in));
        String strLine;
        //Read File Line By Line
        while ((strLine = br.readLine()) != null)   {
          // Print the content on the console
          System.out.println ("Watch out: " +strLine+ "  ---> It should be printed successfully!!"); //Work successfully
        //---again......
        PDFTextParser pdftextparser = new PDFTextParser();
        pdftextparser.pdftoText(strLine);
        public void forPdfUse() throws FileNotFoundException, IOException, DocumentException{
            MakePdf makePdf = new MakePdf();
            makePdf.createPdf();
    }

  • Convert package to function..

    can anyone convert this package to function so that we can use it in sql command..
    {color:#993300}create or replace package metaphone
    is
    function generate(s varchar2) return varchar2;
    end metaphone;
    show errors;{color}
    {color:#993300}create or replace package body metaphone
    is
    type rule_rec is record
    f_off integer,
    f_match varchar2(10),
    f_result varchar2(10)
    type rule_tab is table of rule_rec index by binary_integer;
    g_rules rule_tab;
    g_vowels constant varchar2(5) := 'AEIOU';
    function cmp_rule
    p_rule rule_rec,
    p_off pls_integer,
    p_str varchar2
    ) return boolean;
    function generate(s varchar2) return varchar2
    is
    l_s varchar2(32767);
    l_r varchar2(32767);
    begin
    -- get rid of non-alpha characters
    for i in 1..length(s) loop
    if upper(substr(s,i,1)) between 'A' and 'Z' then
    l_s := l_s || upper(substr(s,i,1));
    end if;
    end loop;
    if l_s is null then
    return null;
    end if;
    -- clean up the word a bit
    if l_s like 'AE%' or l_s like 'GN%' or l_s like 'KN%'
    or l_s like 'PN%' or l_s like 'WR%'
    then
    l_s := substr(l_s,2); -- drop first letter
    elsif l_s like 'X%' then
    l_s := 'S' || substr(l_s,2); -- change to S
    elsif l_s like 'WH%' then
    l_s := 'W' || substr(l_s,2); -- change to W
    end if;
    for i in 1..length(l_s) loop
    if i &gt; 1 and substr(l_s,i-1,1) = substr(l_s,i,1)
    and substr(l_s,i,1) != 'C'
    then
    -- drop the second of doubled letter except C
    null;
    elsif instr(g_vowels,substr(l_s,i,1)) &gt; 0 then
    -- ignore all except initial vowels
    if i = 1 then
    l_r := l_r || substr(l_s,i,1);
    end if;
    elsif substr(l_s,i,2) = 'GH'
    and i &lt; length(l_s)-2
    and instr(g_vowels,substr(l_s,i+1,1)) = 0
    then
    -- a difficult rule:
    -- silent if in "gh" and not at end or before a vowel
    null;
    else
    -- scan for word patterns
    for r in 1..g_rules.count loop
    if cmp_rule(g_rules(r),i,l_s) then
    l_r := l_r || g_rules(r).f_result;
    exit;
    end if;
    end loop;
    end if;
    end loop;
    return l_r;
    end generate;
    procedure add_rule(p_off integer,p_match varchar2,p_result varchar2)
    is
    l_rule_rec rule_rec;
    begin
    l_rule_rec.f_off := p_off;
    l_rule_rec.f_match := p_match;
    l_rule_rec.f_result := p_result;
    g_rules(g_rules.count+1) := l_rule_rec;
    end add_rule;
    function cmp_rule
    p_rule rule_rec,
    p_off pls_integer,
    p_str varchar2
    ) return Boolean
    is
    ch1 char;
    ch2 char;
    begin
    if p_rule.f_match like '%c%' or p_rule.f_match like '%v%' then
    for i in 1..length(p_rule.f_match) loop
    ch1 := substr(p_rule.f_match,i,1);
    ch2 := substr(p_str,p_off+p_rule.f_off+i,1);
    if ch2 is null then
    return false;
    end if;
    if ch1 = 'v' then
    if instr(g_vowels,ch2) = 0 then
    return false;
    end if;
    elsif ch1 = 'c' then
    if instr(g_vowels,ch2) != 0 then
    return false;
    end if;
    elsif ch1 != ch2 then
    return false;
    end if;
    end loop;
    return true;
    end if;
    if p_off &lt;= -p_rule.f_off then
    return false;
    end if;
    return p_rule.f_match
    = substr(p_str,p_off+p_rule.f_off,length(p_rule.f_match));
    end cmp_rule;
    begin
    -- initialize the rules table
    -- order is important
    add_rule(-1,'MB',null);
    add_rule(0,'B','B');
    add_rule(0,'CIA','X');
    add_rule(0,'CH','X');
    add_rule(0,'CI','S');
    add_rule(0,'CE','S');
    add_rule(0,'CY','S');
    add_rule(0,'C','K');
    add_rule(0,'DGE','J');
    add_rule(0,'DGY','J');
    add_rule(0,'DGI','J');
    add_rule(0,'D','T');
    add_rule(0,'F','F');
    add_rule(0,'GN',null);
    add_rule(0,'GNED',null);
    add_rule(0,'GI','J');
    add_rule(0,'GE','J');
    add_rule(0,'GY','J');
    add_rule(0,'G','K');
    add_rule(-1,'vHc',null);
    add_rule(-1,'CH',null);
    add_rule(-1,'PH',null);
    add_rule(-1,'SH',null);
    add_rule(-1,'TH',null);
    add_rule(0,'H','H');
    add_rule(0,'J','J');
    add_rule(-1,'CK',null);
    add_rule(0,'K','K');
    add_rule(0,'L','L');
    add_rule(0,'M','M');
    add_rule(0,'N','N');
    add_rule(0,'PH','F');
    add_rule(0,'P','P');
    add_rule(0,'Q','K');
    add_rule(0,'R','R');
    add_rule(0,'SH','X');
    add_rule(0,'SIO','X');
    add_rule(0,'SIA','X');
    add_rule(0,'S','S');
    add_rule(0,'TIA','X');
    add_rule(0,'TIO','X');
    add_rule(0,'TH','0');
    add_rule(0,'TCH',null);
    add_rule(0,'T','T');
    add_rule(0,'V','F');
    add_rule(0,'Wv','W');
    add_rule(0,'W',null);
    add_rule(0,'X','KS');
    add_rule(0,'Yv','Y');
    add_rule(0,'Y',null);
    add_rule(0,'Z','S');
    end metaphone;
    show errors;{color}
    {color:#993300}source
    http://www.zdnetasia.com/builder/architect/db/0,39044553,39200579,00.htm
    Regards
    venkat...
    {color}

    Its already a function. Only thing is that its within a package. So you can just use it in SQL like this.
    SELECT package_name.function_name FROM dual;See below...
    SQL> create or replace package metaphone
      2  is
      3      function generate(s varchar2) return varchar2;
      4  end metaphone;
      5  /
    Package created.
    SQL> show errors;
    No errors.
    SQL>
    SQL> create or replace package body metaphone
      2  is
      3      type rule_rec is record
      4      (
      5          f_off       integer,
      6          f_match     varchar2(10),
      7          f_result    varchar2(10)
      8      );
      9      type rule_tab is table of rule_rec index by binary_integer;
    10      g_rules rule_tab;
    11      g_vowels constant varchar2(5) := 'AEIOU';
    12      --
    13      function cmp_rule
    14      (
    15          p_rule rule_rec,
    16          p_off pls_integer,
    17          p_str varchar2
    18      ) return boolean;
    19      --
    20      function generate(s varchar2) return varchar2
    21      is
    22          l_s varchar2(32767);
    23          l_r varchar2(32767);
    24      begin
    25          -- get rid of non-alpha characters
    26          for i in 1..length(s) loop
    27              if upper(substr(s,i,1)) between 'A' and 'Z' then
    28                  l_s := l_s || upper(substr(s,i,1));
    29              end if;
    30          end loop;
    31          if l_s is null then
    32              return null;
    33          end if;
    34          -- clean up the word a bit
    35          if l_s like 'AE%' or l_s like 'GN%' or l_s like 'KN%'
    36          or l_s like 'PN%' or l_s like 'WR%'
    37          then
    38              l_s := substr(l_s,2);           -- drop first letter
    39          elsif l_s like 'X%' then
    40              l_s := 'S' || substr(l_s,2);    -- change to S
    41          elsif l_s like 'WH%' then
    42              l_s := 'W' || substr(l_s,2);    -- change to W
    43          end if;
    44          for i in 1..length(l_s) loop
    45              if i > 1 and substr(l_s,i-1,1) = substr(l_s,i,1)
    46                  and substr(l_s,i,1) != 'C'
    47              then
    48                  -- drop the second of doubled letter except C
    49                  null;
    50              elsif instr(g_vowels,substr(l_s,i,1)) > 0 then
    51                  -- ignore all except initial vowels
    52              if i = 1 then
    53                  l_r := l_r || substr(l_s,i,1);
    54              end if;
    55              elsif substr(l_s,i,2) = 'GH'
    56                  and i < length(l_s)-2
    57                  and instr(g_vowels,substr(l_s,i+1,1)) = 0
    58              then
    59                  -- a difficult rule:
    60                  -- silent if in "gh" and not at end or before a vowel
    61                  null;
    62              else
    63                  -- scan for word patterns
    64                  for r in 1..g_rules.count loop
    65                      if cmp_rule(g_rules(r),i,l_s) then
    66                          l_r := l_r || g_rules(r).f_result;
    67                          exit;
    68                      end if;
    69                  end loop;
    70              end if;
    71          end loop;
    72          return l_r;
    73      end generate;
    74      --
    75      procedure add_rule(p_off integer,p_match varchar2,p_result varchar2)
    76      is
    77          l_rule_rec  rule_rec;
    78      begin
    79          l_rule_rec.f_off := p_off;
    80          l_rule_rec.f_match := p_match;
    81          l_rule_rec.f_result := p_result;
    82          g_rules(g_rules.count+1) := l_rule_rec;
    83      end add_rule;
    84      --
    85      function cmp_rule
    86      (
    87          p_rule rule_rec,
    88          p_off pls_integer,
    89          p_str varchar2
    90      ) return Boolean
    91      is
    92          ch1 char;
    93          ch2 char;
    94      begin
    95          if p_rule.f_match like '%c%' or p_rule.f_match like '%v%' then
    96              for i in 1..length(p_rule.f_match) loop
    97                  ch1 := substr(p_rule.f_match,i,1);
    98                  ch2 := substr(p_str,p_off+p_rule.f_off+i,1);
    99                  if ch2 is null then
    100                      return false;
    101                  end if;
    102                  if ch1 = 'v' then
    103                      if instr(g_vowels,ch2) = 0 then
    104                          return false;
    105                      end if;
    106                  elsif ch1 = 'c' then
    107                      if instr(g_vowels,ch2) != 0 then
    108                          return false;
    109                      end if;
    110                  elsif ch1 != ch2 then
    111                      return false;
    112                  end if;
    113              end loop;
    114              return true;
    115          end if;
    116          if p_off <= -p_rule.f_off then
    117              return false;
    118          end if;
    119          return p_rule.f_match
    120                  = substr(p_str,p_off+p_rule.f_off,length(p_rule.f_match));
    121      end cmp_rule;
    122  begin
    123      -- initialize the rules table
    124      -- order is important
    125      add_rule(-1,'MB',null);
    126      add_rule(0,'B','B');
    127      add_rule(0,'CIA','X');
    128      add_rule(0,'CH','X');
    129      add_rule(0,'CI','S');
    130      add_rule(0,'CE','S');
    131      add_rule(0,'CY','S');
    132      add_rule(0,'C','K');
    133      add_rule(0,'DGE','J');
    134      add_rule(0,'DGY','J');
    135      add_rule(0,'DGI','J');
    136      add_rule(0,'D','T');
    137      add_rule(0,'F','F');
    138      add_rule(0,'GN',null);
    139      add_rule(0,'GNED',null);
    140      add_rule(0,'GI','J');
    141      add_rule(0,'GE','J');
    142      add_rule(0,'GY','J');
    143      add_rule(0,'G','K');
    144      add_rule(-1,'vHc',null);
    145      add_rule(-1,'CH',null);
    146      add_rule(-1,'PH',null);
    147      add_rule(-1,'SH',null);
    148      add_rule(-1,'TH',null);
    149      add_rule(0,'H','H');
    150      add_rule(0,'J','J');
    151      add_rule(-1,'CK',null);
    152      add_rule(0,'K','K');
    153      add_rule(0,'L','L');
    154      add_rule(0,'M','M');
    155      add_rule(0,'N','N');
    156      add_rule(0,'PH','F');
    157      add_rule(0,'P','P');
    158      add_rule(0,'Q','K');
    159      add_rule(0,'R','R');
    160      add_rule(0,'SH','X');
    161      add_rule(0,'SIO','X');
    162      add_rule(0,'SIA','X');
    163      add_rule(0,'S','S');
    164      add_rule(0,'TIA','X');
    165      add_rule(0,'TIO','X');
    166      add_rule(0,'TH','0');
    167      add_rule(0,'TCH',null);
    168      add_rule(0,'T','T');
    169      add_rule(0,'V','F');
    170      add_rule(0,'Wv','W');
    171      add_rule(0,'W',null);
    172      add_rule(0,'X','KS');
    173      add_rule(0,'Yv','Y');
    174      add_rule(0,'Y',null);
    175      add_rule(0,'Z','S');
    176  end metaphone;
    177  /
    Package body created.
    SQL> select metaphone.generate('stephens') from dual
      2  /
    METAPHONE.GENERATE('STEPHENS')
    STFNSEdited by: Karthick_Arp on Jan 14, 2009 11:29 PM

  • Converter Web Client: get compiler error when run URL

    When I try to run the Converter's web client with the the URL:
    http://localhost:8000/converter
    I got a compiler error on the lines:
    import Converter;
    import ConverterHome;
    The J2EE server wants to have a "." after the Converter and ConverterHome.
    Any one has any idea?
    The error messages are:
    HTTP Status 500 -
    type Exception report
    message
    description The server encountered an internal error () that prevented it from fulfilling this request.
    exception
    org.apache.jasper.JasperException: Unable to compile class for JSP
    An error occurred at line: -1 in the jsp file: null
    Generated servlet error:
    [javac] Compiling 1 source file
    C:\app\j2sdkee1.4\web\repository\Standard-Engine\localhost\converter\index_jsp.java:7: '.' expected
    import Converter;
    ^
    C:\app\j2sdkee1.4\web\repository\Standard-Engine\localhost\converter\index_jsp.java:8: '.' expected
    import ConverterHome;
    ^
    C:\app\j2sdkee1.4\web\repository\Standard-Engine\localhost\converter\index_jsp.java:20: cannot resolve symbol
    symbol : class Converter
    location: class org.apache.jsp.index_jsp
    private Converter converter = null;
    ^
    C:\app\j2sdkee1.4\web\repository\Standard-Engine\localhost\converter\index_jsp.java:26: cannot resolve symbol
    symbol : class ConverterHome
    location: class org.apache.jsp.index_jsp
    ConverterHome home = (ConverterHome)PortableRemoteObject.narrow(objRef, ConverterHome.class);
    ^
    C:\app\j2sdkee1.4\web\repository\Standard-Engine\localhost\converter\index_jsp.java:26: cannot resolve symbol
    symbol : class ConverterHome
    location: class org.apache.jsp.index_jsp
    ConverterHome home = (ConverterHome)PortableRemoteObject.narrow(objRef, ConverterHome.class);
    ^
    C:\app\j2sdkee1.4\web\repository\Standard-Engine\localhost\converter\index_jsp.java:26: cannot resolve symbol
    symbol : class ConverterHome
    location: class org.apache.jsp.index_jsp
    ConverterHome home = (ConverterHome)PortableRemoteObject.narrow(objRef, ConverterHome.class);
    ^
    6 errors
         at org.apache.jasper.compiler.DefaultErrorHandler.javacError(DefaultErrorHandler.java:125)
         at org.apache.jasper.compiler.ErrorDispatcher.javacError(ErrorDispatcher.java:293)
         at org.apache.jasper.compiler.Compiler.generateClass(Compiler.java:387)
         at org.apache.jasper.compiler.Compiler.compile(Compiler.java:410)
         at org.apache.jasper.JspCompilationContext.compile(JspCompilationContext.java:570)
         at org.apache.jasper.servlet.JspServletWrapper.service(JspServletWrapper.java:295)
         at org.apache.jasper.servlet.JspServlet.serviceJspFile(JspServlet.java:289)
         at org.apache.jasper.servlet.JspServlet.service(JspServlet.java:240)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
         at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
         at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
         at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
         at java.lang.reflect.Method.invoke(Method.java:324)
         at org.apache.catalina.util.SecurityUtil$1.run(SecurityUtil.java:200)
         at java.security.AccessController.doPrivileged(Native Method)
         at javax.security.auth.Subject.doAsPrivileged(Subject.java:499)
         at org.apache.catalina.util.SecurityUtil.execute(SecurityUtil.java:210)
         at org.apache.catalina.util.SecurityUtil.doAsPrivilege(SecurityUtil.java:147)
         at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:274)
         at org.apache.catalina.core.ApplicationFilterChain.access$000(ApplicationFilterChain.java:99)
         at org.apache.catalina.core.ApplicationFilterChain$1.run(ApplicationFilterChain.java:177)
         at java.security.AccessController.doPrivileged(Native Method)
         at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:173)
         at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:271)
         at org.apache.catalina.core.StandardPipeline$StandardPipelineValveContext.invokeNext(StandardPipeline.java:643)
         at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:480)
         at org.apache.catalina.core.ContainerBase.invoke(ContainerBase.java:995)
         at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:191)
         at org.apache.catalina.core.StandardPipeline$StandardPipelineValveContext.invokeNext(StandardPipeline.java:643)
         at org.apache.catalina.valves.CertificatesValve.invoke(CertificatesValve.java:246)
         at org.apache.catalina.core.StandardPipeline$StandardPipelineValveContext.invokeNext(StandardPipeline.java:641)
         at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:480)
         at org.apache.catalina.core.ContainerBase.invoke(ContainerBase.java:995)
         at org.apache.catalina.core.StandardContext.invoke(StandardContext.java:2505)
         at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:180)
         at org.apache.catalina.core.StandardPipeline$StandardPipelineValveContext.invokeNext(StandardPipeline.java:643)
         at org.apache.catalina.valves.ErrorDispatcherValve.invoke(ErrorDispatcherValve.java:170)
         at org.apache.catalina.core.StandardPipeline$StandardPipelineValveContext.invokeNext(StandardPipeline.java:641)
         at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:172)
         at org.apache.catalina.core.StandardPipeline$StandardPipelineValveContext.invokeNext(StandardPipeline.java:641)
         at com.sun.enterprise.webservice.EjbWebServiceValve.invoke(EjbWebServiceValve.java:133)
         at org.apache.catalina.core.StandardPipeline$StandardPipelineValveContext.invokeNext(StandardPipeline.java:641)
         at org.apache.catalina.authenticator.SingleSignOn.invoke(SingleSignOn.java:383)
         at org.apache.catalina.core.StandardPipeline$StandardPipelineValveContext.invokeNext(StandardPipeline.java:641)
         at org.apache.catalina.valves.AccessLogValve.invoke(AccessLogValve.java:469)
         at org.apache.catalina.core.StandardPipeline$StandardPipelineValveContext.invokeNext(StandardPipeline.java:641)
         at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:480)
         at org.apache.catalina.core.ContainerBase.invoke(ContainerBase.java:995)
         at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:174)
         at org.apache.catalina.core.StandardPipeline$StandardPipelineValveContext.invokeNext(StandardPipeline.java:643)
         at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:480)
         at org.apache.catalina.core.ContainerBase.invoke(ContainerBase.java:995)
         at org.apache.coyote.tomcat5.CoyoteAdapter.service(CoyoteAdapter.java:223)
         at org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:405)
         at org.apache.coyote.http11.Http11Protocol$Http11ConnectionHandler.processConnection(Http11Protocol.java:380)
         at org.apache.tomcat.util.net.TcpWorkerThread.runIt(PoolTcpEndpoint.java:508)
         at org.apache.tomcat.util.threads.ThreadPool$ControlRunnable.run(ThreadPool.java:533)
         at java.lang.Thread.run(Thread.java:536)
    Apache Tomcat/5.0

    I have exactly the same error.
    Me too, I'm running on Win XP. And I have had lots of trouble to deploy the converter.
    I cannot install J2EE 1.3 as I am supposed to write a report on how Web Services may help my company. By the moment I can only say it takes me much more time than expected to run the J2EE 1.3 tutorial. As SUN didn't deliver a tutorial one can use.
    So by the moment if anyone can HELP me to finish this converter tutorial I will be thankful.
    Bye
    Manuel Acevedo

  • Bulk convert cdr vector to transparent psd

    Hi Guys,
    I need a little help, basically I have approx 200 .cdr vector files with black logos of various sizes, I need these converting to white logos with a transparent background not exceeding 275pixels x or y in .psd format (i dont ask alot!) an example can be seen here http://174.120.242.250/~kieranm/done.zip, i just need to find a way to make these changes and batch process.
    Hope you guys might be able to help.
    Kind Regards,
    Kieran

    Thanks for the suggestion, but I would never InDesign or any other WYSIWYG editor to design my ebooks, I'm afraid! I started doing web design almost two decades ago, and got into ebooks a year or two ago, and do all my coding "by hand" -- I would never do it any other way. No offense to Adobe or any fans of ID, of course!
    As I mentioned in my last follow-up, I did manage to figure out (via a tutorial on another site) how to get my SVG to be transparent, but I still just can't seem to figure out how to get the file size down. I've tried saving with all different sorts of options selected, but even still I can't get my image (that I've been using just to try to figure things out) below ~280k -- whereas the same image as a transparent PNG is a mere 18k. Speaking with others on the MobileReads forum, this seems ridiculously large, and there should be some way of getting the file size down. I'm actually thinking of looking into third-party programs (freeware, probably!) which might provide a solution, i.e. where I can create/save an SVG in Illustrator, but then run it through some other proggie just to get rid of all the "crap" and bring the file size down to something reasonable.
    And my only other question (that's left over) is regarding that "Save for Web and Devices" option, of course -- I gather that's something that must have come out after CS6, though?

  • IPhoto 11 crashes when converting library

    I just installed iPhoto 11 from the install DVD.   I have used iPhoto 9 for years with no problems - but wanted to upgrade to 11 prior to converting to Lion.
    Had made a Time Machine backup of all my photo libraries prior to the install.
    Upon launching iPhoto 11 for the first time, it says my library must be converted and it starts, but then crashes.  As a test, I had it open another (smaller) library, and it converted it and opened fine.   So, it must not be the application...   Here is the crash report from the library it won't convert:
    Process:         iPhoto [375]
    Path:            /Applications/iPhoto.app/Contents/MacOS/iPhoto
    Identifier:      com.apple.iPhoto
    Version:         9.1.5 (9.1.5)
    Build Info:      iPhotoProject-6150000~1
    Code Type:       X86 (Native)
    Parent Process:  launchd [100]
    Date/Time:       2011-09-18 05:47:15.726 -0500
    OS Version:      Mac OS X 10.6.8 (10K549)
    Report Version:  6
    Interval Since Last Report:          522704 sec
    Crashes Since Last Report:           15
    Per-App Interval Since Last Report:  2243 sec
    Per-App Crashes Since Last Report:   9
    Anonymous UUID:                      70311CC7-0D15-474D-86FF-4FE156F9B711
    Exception Type:  EXC_BAD_ACCESS (SIGBUS)
    Exception Codes: KERN_PROTECTION_FAILURE at 0x0000000000000006
    Crashed Thread:  0  Dispatch queue: com.apple.main-thread
    Thread 0 Crashed:  Dispatch queue: com.apple.main-thread
    0   com.apple.CoreFoundation                0x90b5a106 __CFCopyFormattingDescription + 38
    1   com.apple.CoreFoundation                0x90b532a0 _CFStringAppendFormatAndArgumentsAux + 6496
    2   com.apple.CoreFoundation                0x90b51909 _CFStringCreateWithFormatAndArgumentsAux + 105
    3   com.apple.CoreFoundation                0x90b5a0de CFStringCreateWithFormatAndArguments + 46
    4   MetadataLib.dylib                       0x9814a67a readRawTiffPropsFromPath + 161264
    5   MetadataLib.dylib                       0x98130102 readRawTiffPropsFromPath + 53368
    6   MetadataLib.dylib                       0x981302e1 readRawTiffPropsFromPath + 53847
    7   MetadataLib.dylib                       0x98122c2c readRawTiffProps + 11836
    8   MetadataLib.dylib                       0x98122c62 readRawTiffProps + 11890
    9   MetadataLib.dylib                       0x98157572 readRawTiffPropsFromPath + 214248
    10  MetadataLib.dylib                       0x9811fc25 readMakerNoteProps + 137
    11  com.apple.ImageIO.framework             0x97fd9ffd readMakerNoteProps + 153
    12  com.apple.ImageIO.framework             0x97f550c7 readProps + 1132
    13  com.apple.ImageIO.framework             0x97f54fd2 readProps + 887
    14  com.apple.ImageIO.framework             0x97f6bf93 readTiffPropsFromData + 236
    15  com.apple.ImageIO.framework             0x97f6be9a readExifData + 92
    16  com.apple.ImageIO.framework             0x97f69bde initImageJPEG + 2222
    17  com.apple.ImageIO.framework             0x97f69326 _CGImagePluginInitJPEG + 69
    18  com.apple.ImageIO.framework             0x97f52334 makeImagePlus + 690
    19  com.apple.ImageIO.framework             0x97f51f2e _CGImageSourceGetPropertiesAtIndexInternal + 75
    20  com.apple.ImageIO.framework             0x97f51eaf CGImageSourceCopyPropertiesAtIndex + 127
    21  com.apple.RedRock                       0x01d28312 -[RKMetadata initWithPath:cgImageSource:imageIOMethodVersion:includeFileAttributes:includeRa w:sidecarFile:movie:] + 434
    22  com.apple.RedRock                       0x01d28157 -[RKMetadata initWithPath:imageIOMethodVersion:includeRaw:sidecarFile:] + 87
    23  com.apple.RedRock                       0x01dcaa61 -[RKMetadata initWithPath:] + 65
    24  com.apple.iPhoto                        0x0024f89f 0x1000 + 2418847
    25  com.apple.iPhoto                        0x0003a809 0x1000 + 235529
    26  com.apple.iPhoto                        0x000357e6 0x1000 + 215014
    27  com.apple.iPhoto                        0x00034796 0x1000 + 210838
    28  com.apple.iPhoto                        0x0003244b 0x1000 + 201803
    29  com.apple.iPhoto                        0x000320f9 0x1000 + 200953
    30  com.apple.iPhoto                        0x00031a03 0x1000 + 199171
    31  com.apple.iPhoto                        0x0002fa2e 0x1000 + 191022
    32  com.apple.Foundation                    0x96dd0409 __NSFireDelayedPerform + 537
    33  com.apple.CoreFoundation                0x90b64a6b __CFRunLoopRun + 8059
    34  com.apple.CoreFoundation                0x90b623f4 CFRunLoopRunSpecific + 452
    35  com.apple.CoreFoundation                0x90b62221 CFRunLoopRunInMode + 97
    36  com.apple.HIToolbox                     0x907c4e04 RunCurrentEventLoopInMode + 392
    37  com.apple.HIToolbox                     0x907c4bb9 ReceiveNextEventCommon + 354
    38  com.apple.HIToolbox                     0x907c4a3e BlockUntilNextEventMatchingListInMode + 81
    39  com.apple.AppKit                        0x97415595 _DPSNextEvent + 847
    40  com.apple.AppKit                        0x97414dd6 -[NSApplication nextEventMatchingMask:untilDate:inMode:dequeue:] + 156
    41  com.apple.AppKit                        0x973d71f3 -[NSApplication run] + 821
    42  com.apple.AppKit                        0x973cf289 NSApplicationMain + 574
    43  com.apple.iPhoto                        0x0000f092 0x1000 + 57490
    44  com.apple.iPhoto                        0x0000ec65 0x1000 + 56421
    Thread 1:  Dispatch queue: com.apple.libdispatch-manager
    0   libSystem.B.dylib                       0x90079382 kevent + 10
    1   libSystem.B.dylib                       0x90079a9c _dispatch_mgr_invoke + 215
    2   libSystem.B.dylib                       0x90078f59 _dispatch_queue_invoke + 163
    3   libSystem.B.dylib                       0x90078cfe _dispatch_worker_thread2 + 240
    4   libSystem.B.dylib                       0x90078781 _pthread_wqthread + 390
    5   libSystem.B.dylib                       0x900785c6 start_wqthread + 30
    Thread 2:
    0   libSystem.B.dylib                       0x900785a8 start_wqthread + 0
    Thread 3:
    0   libSystem.B.dylib                       0x90052b5a semaphore_timedwait_signal_trap + 10
    1   libSystem.B.dylib                       0x900806e1 _pthread_cond_wait + 1066
    2   libSystem.B.dylib                       0x900af5a8 pthread_cond_timedwait_relative_np + 47
    3   com.apple.Foundation                    0x96df695c -[NSCondition waitUntilDate:] + 453
    4   com.apple.Foundation                    0x96daf451 -[NSConditionLock lockWhenCondition:beforeDate:] + 279
    5   com.apple.Foundation                    0x96daf334 -[NSConditionLock lockWhenCondition:] + 69
    6   com.apple.proxtcore                     0x016e346f -[XTMsgQueue waitForMessage] + 47
    7   com.apple.proxtcore                     0x016e2250 -[XTThread run:] + 400
    8   com.apple.Foundation                    0x96dba564 -[NSThread main] + 45
    9   com.apple.Foundation                    0x96dba514 __NSThread__main__ + 1499
    10  libSystem.B.dylib                       0x90080259 _pthread_start + 345
    11  libSystem.B.dylib                       0x900800de thread_start + 34
    Thread 4:
    0   libSystem.B.dylib                       0x90052afa mach_msg_trap + 10
    1   libSystem.B.dylib                       0x90053267 mach_msg + 68
    2   com.apple.CoreFoundation                0x90b6330f __CFRunLoopRun + 2079
    3   com.apple.CoreFoundation                0x90b623f4 CFRunLoopRunSpecific + 452
    4   com.apple.CoreFoundation                0x90b62221 CFRunLoopRunInMode + 97
    5   com.apple.Foundation                    0x96df4227 -[NSRunLoop(NSRunLoop) runMode:beforeDate:] + 279
    6   com.apple.proxtcore                     0x016e46a5 -[XTRunLoopThread run:] + 453
    7   com.apple.Foundation                    0x96dba564 -[NSThread main] + 45
    8   com.apple.Foundation                    0x96dba514 __NSThread__main__ + 1499
    9   libSystem.B.dylib                       0x90080259 _pthread_start + 345
    10  libSystem.B.dylib                       0x900800de thread_start + 34
    Thread 5:
    0   libSystem.B.dylib                       0x90052afa mach_msg_trap + 10
    1   libSystem.B.dylib                       0x90053267 mach_msg + 68
    2   com.apple.CoreFoundation                0x90b6330f __CFRunLoopRun + 2079
    3   com.apple.CoreFoundation                0x90b623f4 CFRunLoopRunSpecific + 452
    4   com.apple.CoreFoundation                0x90b62221 CFRunLoopRunInMode + 97
    5   com.apple.Foundation                    0x96df4227 -[NSRunLoop(NSRunLoop) runMode:beforeDate:] + 279
    6   com.apple.proxtcore                     0x016e46a5 -[XTRunLoopThread run:] + 453
    7   com.apple.Foundation                    0x96dba564 -[NSThread main] + 45
    8   com.apple.Foundation                    0x96dba514 __NSThread__main__ + 1499
    9   libSystem.B.dylib                       0x90080259 _pthread_start + 345
    10  libSystem.B.dylib                       0x900800de thread_start + 34
    Thread 6:
    0   libSystem.B.dylib                       0x90080aa2 __semwait_signal + 10
    1   libSystem.B.dylib                       0x900ac9c5 nanosleep$UNIX2003 + 188
    2   libSystem.B.dylib                       0x900ac903 usleep$UNIX2003 + 61
    3   com.apple.AppKit                        0x9757ee2d -[NSUIHeartBeat _heartBeatThread:] + 2039
    4   com.apple.Foundation                    0x96dba564 -[NSThread main] + 45
    5   com.apple.Foundation                    0x96dba514 __NSThread__main__ + 1499
    6   libSystem.B.dylib                       0x90080259 _pthread_start + 345
    7   libSystem.B.dylib                       0x900800de thread_start + 34
    Thread 7:
    0   libSystem.B.dylib                       0x90052b5a semaphore_timedwait_signal_trap + 10
    1   libSystem.B.dylib                       0x900806e1 _pthread_cond_wait + 1066
    2   libSystem.B.dylib                       0x900af5a8 pthread_cond_timedwait_relative_np + 47
    3   com.apple.Foundation                    0x96df695c -[NSCondition waitUntilDate:] + 453
    4   com.apple.Foundation                    0x96daf451 -[NSConditionLock lockWhenCondition:beforeDate:] + 279
    5   com.apple.Foundation                    0x96daf334 -[NSConditionLock lockWhenCondition:] + 69
    6   com.apple.proxtcore                     0x016e346f -[XTMsgQueue waitForMessage] + 47
    7   com.apple.proxtcore                     0x016e2250 -[XTThread run:] + 400
    8   com.apple.Foundation                    0x96dba564 -[NSThread main] + 45
    9   com.apple.Foundation                    0x96dba514 __NSThread__main__ + 1499
    10  libSystem.B.dylib                       0x90080259 _pthread_start + 345
    11  libSystem.B.dylib                       0x900800de thread_start + 34
    Thread 8:
    0   libSystem.B.dylib                       0x900b0e8e pwrite$UNIX2003 + 10
    1   com.apple.iLifeSQLAccess                0x017b7ade unixWrite + 94
    2   com.apple.iLifeSQLAccess                0x017b7a6d sqlite3OsWrite + 45
    3   com.apple.iLifeSQLAccess                0x017b925b pager_write_pagelist + 219
    4   com.apple.iLifeSQLAccess                0x017b8d54 sqlite3PagerCommitPhaseOne + 1412
    5   com.apple.iLifeSQLAccess                0x017a596e sqlite3BtreeCommitPhaseOne + 94
    6   com.apple.iLifeSQLAccess                0x017a557a sqlite3VdbeHalt + 1786
    7   com.apple.iLifeSQLAccess                0x017a4ab4 sqlite3Step + 37620
    8   com.apple.iLifeSQLAccess                0x0179b5b8 sqlite3_step + 88
    9   com.apple.iLifeSQLAccess                0x017bba1e -[HgKPreparedSql updateWithArgs:] + 174
    10  com.apple.iLifeSQLAccess                0x017de15e -[HgKDatabaseManager commitAndBeginNewTransaction] + 494
    11  com.apple.RedRock                       0x01d1d70a -[RKInfoDictionaryMgr writeInfoDictionaries:writtenModels:] + 1610
    12  com.apple.RedRock                       0x01d1cdd4 -[RKInfoDictionaryMgr writeSomeInfoDictionaries] + 276
    13  com.apple.RedRock                       0x01d1c80d -[RKDatabaseComponent saveSomeInfoDictionaries] + 157
    14  com.apple.RedRock                       0x01d1cc5a -[RKDatabaseComponent saveSomeInfoDictionaries:] + 42
    15  com.apple.proxtcore                     0x016e4893 -[XTSubscription postMessage:] + 227
    16  com.apple.proxtcore                     0x016e44cd -[XTList makeObjectsPerformSelector:withObject:] + 61
    17  com.apple.proxtcore                     0x016e3ed6 -[XTDistributor distributeMessage:] + 502
    18  com.apple.proxtcore                     0x016e3b1c -[XTThread handleMessage:] + 796
    19  com.apple.proxtcore                     0x016e2266 -[XTThread run:] + 422
    20  com.apple.Foundation                    0x96dba564 -[NSThread main] + 45
    21  com.apple.Foundation                    0x96dba514 __NSThread__main__ + 1499
    22  libSystem.B.dylib                       0x90080259 _pthread_start + 345
    23  libSystem.B.dylib                       0x900800de thread_start + 34
    Thread 9:
    0   libSystem.B.dylib                       0x90052b5a semaphore_timedwait_signal_trap + 10
    1   libSystem.B.dylib                       0x900806e1 _pthread_cond_wait + 1066
    2   libSystem.B.dylib                       0x900af5a8 pthread_cond_timedwait_relative_np + 47
    3   com.apple.Foundation                    0x96df695c -[NSCondition waitUntilDate:] + 453
    4   com.apple.Foundation                    0x96daf451 -[NSConditionLock lockWhenCondition:beforeDate:] + 279
    5   com.apple.Foundation                    0x96daf334 -[NSConditionLock lockWhenCondition:] + 69
    6   com.apple.proxtcore                     0x016e346f -[XTMsgQueue waitForMessage] + 47
    7   com.apple.proxtcore                     0x016e2250 -[XTThread run:] + 400
    8   com.apple.Foundation                    0x96dba564 -[NSThread main] + 45
    9   com.apple.Foundation                    0x96dba514 __NSThread__main__ + 1499
    10  libSystem.B.dylib                       0x90080259 _pthread_start + 345
    11  libSystem.B.dylib                       0x900800de thread_start + 34
    Thread 10:
    0   libSystem.B.dylib                       0x90052b5a semaphore_timedwait_signal_trap + 10
    1   libSystem.B.dylib                       0x900806e1 _pthread_cond_wait + 1066
    2   libSystem.B.dylib                       0x900af5a8 pthread_cond_timedwait_relative_np + 47
    3   com.apple.Foundation                    0x96df695c -[NSCondition waitUntilDate:] + 453
    4   com.apple.Foundation                    0x96daf451 -[NSConditionLock lockWhenCondition:beforeDate:] + 279
    5   com.apple.Foundation                    0x96daf334 -[NSConditionLock lockWhenCondition:] + 69
    6   com.apple.proxtcore                     0x016e346f -[XTMsgQueue waitForMessage] + 47
    7   com.apple.proxtcore                     0x016e2250 -[XTThread run:] + 400
    8   com.apple.Foundation                    0x96dba564 -[NSThread main] + 45
    9   com.apple.Foundation                    0x96dba514 __NSThread__main__ + 1499
    10  libSystem.B.dylib                       0x90080259 _pthread_start + 345
    11  libSystem.B.dylib                       0x900800de thread_start + 34
    Thread 11:
    0   libSystem.B.dylib                       0x90052afa mach_msg_trap + 10
    1   libSystem.B.dylib                       0x90053267 mach_msg + 68
    2   com.apple.CoreFoundation                0x90b6330f __CFRunLoopRun + 2079
    3   com.apple.CoreFoundation                0x90b623f4 CFRunLoopRunSpecific + 452
    4   com.apple.CoreFoundation                0x90b62221 CFRunLoopRunInMode + 97
    5   com.apple.Foundation                    0x96df4227 -[NSRunLoop(NSRunLoop) runMode:beforeDate:] + 279
    6   com.apple.proxtcore                     0x016e46a5 -[XTRunLoopThread run:] + 453
    7   com.apple.Foundation                    0x96dba564 -[NSThread main] + 45
    8   com.apple.Foundation                    0x96dba514 __NSThread__main__ + 1499
    9   libSystem.B.dylib                       0x90080259 _pthread_start + 345
    10  libSystem.B.dylib                       0x900800de thread_start + 34
    Thread 12:
    0   libSystem.B.dylib                       0x90052b5a semaphore_timedwait_signal_trap + 10
    1   libSystem.B.dylib                       0x900806e1 _pthread_cond_wait + 1066
    2   libSystem.B.dylib                       0x900af5a8 pthread_cond_timedwait_relative_np + 47
    3   com.apple.Foundation                    0x96df695c -[NSCondition waitUntilDate:] + 453
    4   com.apple.Foundation                    0x96daf451 -[NSConditionLock lockWhenCondition:beforeDate:] + 279
    5   com.apple.Foundation                    0x96daf334 -[NSConditionLock lockWhenCondition:] + 69
    6   com.apple.proxtcore                     0x016e346f -[XTMsgQueue waitForMessage] + 47
    7   com.apple.proxtcore                     0x016e2250 -[XTThread run:] + 400
    8   com.apple.Foundation                    0x96dba564 -[NSThread main] + 45
    9   com.apple.Foundation                    0x96dba514 __NSThread__main__ + 1499
    10  libSystem.B.dylib                       0x90080259 _pthread_start + 345
    11  libSystem.B.dylib                       0x900800de thread_start + 34
    Thread 13:
    0   libSystem.B.dylib                       0x90052b5a semaphore_timedwait_signal_trap + 10
    1   libSystem.B.dylib                       0x900806e1 _pthread_cond_wait + 1066
    2   libSystem.B.dylib                       0x900af5a8 pthread_cond_timedwait_relative_np + 47
    3   com.apple.Foundation                    0x96df695c -[NSCondition waitUntilDate:] + 453
    4   com.apple.Foundation                    0x96daf451 -[NSConditionLock lockWhenCondition:beforeDate:] + 279
    5   com.apple.Foundation                    0x96daf334 -[NSConditionLock lockWhenCondition:] + 69
    6   com.apple.proxtcore                     0x016e346f -[XTMsgQueue waitForMessage] + 47
    7   com.apple.proxtcore                     0x016e2250 -[XTThread run:] + 400
    8   com.apple.Foundation                    0x96dba564 -[NSThread main] + 45
    9   com.apple.Foundation                    0x96dba514 __NSThread__main__ + 1499
    10  libSystem.B.dylib                       0x90080259 _pthread_start + 345
    11  libSystem.B.dylib                       0x900800de thread_start + 34
    Thread 14:
    0   libSystem.B.dylib                       0x90052b5a semaphore_timedwait_signal_trap + 10
    1   libSystem.B.dylib                       0x900806e1 _pthread_cond_wait + 1066
    2   libSystem.B.dylib                       0x900af5a8 pthread_cond_timedwait_relative_np + 47
    3   com.apple.Foundation                    0x96df695c -[NSCondition waitUntilDate:] + 453
    4   com.apple.Foundation                    0x96daf451 -[NSConditionLock lockWhenCondition:beforeDate:] + 279
    5   com.apple.Foundation                    0x96daf334 -[NSConditionLock lockWhenCondition:] + 69
    6   com.apple.proxtcore                     0x016e346f -[XTMsgQueue waitForMessage] + 47
    7   com.apple.proxtcore                     0x016e2250 -[XTThread run:] + 400
    8   com.apple.Foundation                    0x96dba564 -[NSThread main] + 45
    9   com.apple.Foundation                    0x96dba514 __NSThread__main__ + 1499
    10  libSystem.B.dylib                       0x90080259 _pthread_start + 345
    11  libSystem.B.dylib                       0x900800de thread_start + 34
    Thread 15:
    0   libSystem.B.dylib                       0x90052b5a semaphore_timedwait_signal_trap + 10
    1   libSystem.B.dylib                       0x900806e1 _pthread_cond_wait + 1066
    2   libSystem.B.dylib                       0x900af5a8 pthread_cond_timedwait_relative_np + 47
    3   com.apple.Foundation                    0x96df695c -[NSCondition waitUntilDate:] + 453
    4   com.apple.Foundation                    0x96daf451 -[NSConditionLock lockWhenCondition:beforeDate:] + 279
    5   com.apple.Foundation                    0x96daf334 -[NSConditionLock lockWhenCondition:] + 69
    6   com.apple.proxtcore                     0x016e346f -[XTMsgQueue waitForMessage] + 47
    7   com.apple.proxtcore                     0x016e2250 -[XTThread run:] + 400
    8   com.apple.Foundation                    0x96dba564 -[NSThread main] + 45
    9   com.apple.Foundation                    0x96dba514 __NSThread__main__ + 1499
    10  libSystem.B.dylib                       0x90080259 _pthread_start + 345
    11  libSystem.B.dylib                       0x900800de thread_start + 34
    Thread 16:
    0   libSystem.B.dylib                       0x90052b5a semaphore_timedwait_signal_trap + 10
    1   libSystem.B.dylib                       0x900806e1 _pthread_cond_wait + 1066
    2   libSystem.B.dylib                       0x900af5a8 pthread_cond_timedwait_relative_np + 47
    3   com.apple.Foundation                    0x96df695c -[NSCondition waitUntilDate:] + 453
    4   com.apple.Foundation                    0x96daf451 -[NSConditionLock lockWhenCondition:beforeDate:] + 279
    5   com.apple.Foundation                    0x96daf334 -[NSConditionLock lockWhenCondition:] + 69
    6   com.apple.proxtcore                     0x016e346f -[XTMsgQueue waitForMessage] + 47
    7   com.apple.proxtcore                     0x016e2250 -[XTThread run:] + 400
    8   com.apple.Foundation                    0x96dba564 -[NSThread main] + 45
    9   com.apple.Foundation                    0x96dba514 __NSThread__main__ + 1499
    10  libSystem.B.dylib                       0x90080259 _pthread_start + 345
    11  libSystem.B.dylib                       0x900800de thread_start + 34
    Thread 17:
    0   libSystem.B.dylib                       0x90052b5a semaphore_timedwait_signal_trap + 10
    1   libSystem.B.dylib                       0x900806e1 _pthread_cond_wait + 1066
    2   libSystem.B.dylib                       0x900af5a8 pthread_cond_timedwait_relative_np + 47
    3   com.apple.Foundation                    0x96df695c -[NSCondition waitUntilDate:] + 453
    4   com.apple.Foundation                    0x96daf451 -[NSConditionLock lockWhenCondition:beforeDate:] + 279
    5   com.apple.Foundation                    0x96daf334 -[NSConditionLock lockWhenCondition:] + 69
    6   com.apple.proxtcore                     0x016e346f -[XTMsgQueue waitForMessage] + 47
    7   com.apple.proxtcore                     0x016e2250 -[XTThread run:] + 400
    8   com.apple.Foundation                    0x96dba564 -[NSThread main] + 45
    9   com.apple.Foundation                    0x96dba514 __NSThread__main__ + 1499
    10  libSystem.B.dylib                       0x90080259 _pthread_start + 345
    11  libSystem.B.dylib                       0x900800de thread_start + 34
    Thread 18:
    0   libSystem.B.dylib                       0x90052b5a semaphore_timedwait_signal_trap + 10
    1   libSystem.B.dylib                       0x900806e1 _pthread_cond_wait + 1066
    2   libSystem.B.dylib                       0x900af5a8 pthread_cond_timedwait_relative_np + 47
    3   com.apple.Foundation                    0x96df695c -[NSCondition waitUntilDate:] + 453
    4   com.apple.Foundation                    0x96daf451 -[NSConditionLock lockWhenCondition:beforeDate:] + 279
    5   com.apple.Foundation                    0x96daf334 -[NSConditionLock lockWhenCondition:] + 69
    6   com.apple.proxtcore                     0x016e346f -[XTMsgQueue waitForMessage] + 47
    7   com.apple.proxtcore                     0x016e2250 -[XTThread run:] + 400
    8   com.apple.Foundation                    0x96dba564 -[NSThread main] + 45
    9   com.apple.Foundation                    0x96dba514 __NSThread__main__ + 1499
    10  libSystem.B.dylib                       0x90080259 _pthread_start + 345
    11  libSystem.B.dylib                       0x900800de thread_start + 34
    Thread 19:
    0   libSystem.B.dylib                       0x90052b5a semaphore_timedwait_signal_trap + 10
    1   libSystem.B.dylib                       0x900806e1 _pthread_cond_wait + 1066
    2   libSystem.B.dylib                       0x900af5a8 pthread_cond_timedwait_relative_np + 47
    3   com.apple.Foundation                    0x96df695c -[NSCondition waitUntilDate:] + 453
    4   com.apple.Foundation                    0x96daf451 -[NSConditionLock lockWhenCondition:beforeDate:] + 279
    5   com.apple.Foundation                    0x96daf334 -[NSConditionLock lockWhenCondition:] + 69
    6   com.apple.proxtcore                     0x016e346f -[XTMsgQueue waitForMessage] + 47
    7   com.apple.proxtcore                     0x016e2250 -[XTThread run:] + 400
    8   com.apple.Foundation                    0x96dba564 -[NSThread main] + 45
    9   com.apple.Foundation                    0x96dba514 __NSThread__main__ + 1499
    10  libSystem.B.dylib                       0x90080259 _pthread_start + 345
    11  libSystem.B.dylib                       0x900800de thread_start + 34
    Thread 20:
    0   libSystem.B.dylib                       0x90052b5a semaphore_timedwait_signal_trap + 10
    1   libSystem.B.dylib                       0x900806e1 _pthread_cond_wait + 1066
    2   libSystem.B.dylib                       0x900af5a8 pthread_cond_timedwait_relative_np + 47
    3   com.apple.Foundation                    0x96df695c -[NSCondition waitUntilDate:] + 453
    4   com.apple.Foundation                    0x96daf451 -[NSConditionLock lockWhenCondition:beforeDate:] + 279
    5   com.apple.Foundation                    0x96daf334 -[NSConditionLock lockWhenCondition:] + 69
    6   com.apple.proxtcore                     0x016e346f -[XTMsgQueue waitForMessage] + 47
    7   com.apple.proxtcore                     0x016e2250 -[XTThread run:] + 400
    8   com.apple.Foundation                    0x96dba564 -[NSThread main] + 45
    9   com.apple.Foundation                    0x96dba514 __NSThread__main__ + 1499
    10  libSystem.B.dylib                       0x90080259 _pthread_start + 345
    11  libSystem.B.dylib                       0x900800de thread_start + 34
    Thread 21:
    0   libSystem.B.dylib                       0x90052b5a semaphore_timedwait_signal_trap + 10
    1   libSystem.B.dylib                       0x900806e1 _pthread_cond_wait + 1066
    2   libSystem.B.dylib                       0x900af5a8 pthread_cond_timedwait_relative_np + 47
    3   com.apple.Foundation                    0x96df695c -[NSCondition waitUntilDate:] + 453
    4   com.apple.Foundation                    0x96daf451 -[NSConditionLock lockWhenCondition:beforeDate:] + 279
    5   com.apple.Foundation                    0x96daf334 -[NSConditionLock lockWhenCondition:] + 69
    6   com.apple.proxtcore                     0x016e346f -[XTMsgQueue waitForMessage] + 47
    7   com.apple.proxtcore                     0x016e2250 -[XTThread run:] + 400
    8   com.apple.Foundation                    0x96dba564 -[NSThread main] + 45
    9   com.apple.Foundation                    0x96dba514 __NSThread__main__ + 1499
    10  libSystem.B.dylib                       0x90080259 _pthread_start + 345
    11  libSystem.B.dylib                       0x900800de thread_start + 34
    Thread 22:
    0   libSystem.B.dylib                       0x90052b5a semaphore_timedwait_signal_trap + 10
    1   libSystem.B.dylib                       0x900806e1 _pthread_cond_wait + 1066
    2   libSystem.B.dylib                       0x900af5a8 pthread_cond_timedwait_relative_np + 47
    3   com.apple.Foundation                    0x96df695c -[NSCondition waitUntilDate:] + 453
    4   com.apple.Foundation                    0x96daf451 -[NSConditionLock lockWhenCondition:beforeDate:] + 279
    5   com.apple.Foundation                    0x96daf334 -[NSConditionLock lockWhenCondition:] + 69
    6   com.apple.proxtcore                     0x016e346f -[XTMsgQueue waitForMessage] + 47
    7   com.apple.proxtcore                     0x016e2250 -[XTThread run:] + 400
    8   com.apple.Foundation                    0x96dba564 -[NSThread main] + 45
    9   com.apple.Foundation                    0x96dba514 __NSThread__main__ + 1499
    10  libSystem.B.dylib                       0x90080259 _pthread_start + 345
    11  libSystem.B.dylib                       0x900800de thread_start + 34
    Thread 23:
    0   libSystem.B.dylib                       0x90052b5a semaphore_timedwait_signal_trap + 10
    1   libSystem.B.dylib                       0x900806e1 _pthread_cond_wait + 1066
    2   libSystem.B.dylib                       0x900af5a8 pthread_cond_timedwait_relative_np + 47
    3   com.apple.Foundation                    0x96df695c -[NSCondition waitUntilDate:] + 453
    4   com.apple.Foundation                    0x96daf451 -[NSConditionLock lockWhenCondition:beforeDate:] + 279
    5   com.apple.Foundation                    0x96daf334 -[NSConditionLock lockWhenCondition:] + 69
    6   com.apple.proxtcore                     0x016e346f -[XTMsgQueue waitForMessage] + 47
    7   com.apple.proxtcore                     0x016e2250 -[XTThread run:] + 400
    8   com.apple.Foundation                    0x96dba564 -[NSThread main] + 45
    9   com.apple.Foundation                    0x96dba514 __NSThread__main__ + 1499
    10  libSystem.B.dylib                       0x90080259 _pthread_start + 345
    11  libSystem.B.dylib                       0x900800de thread_start + 34
    Thread 24:
    0   libSystem.B.dylib                       0x90052afa mach_msg_trap + 10
    1   libSystem.B.dylib                       0x90053267 mach_msg + 68
    2   com.apple.CoreFoundation                0x90b6330f __CFRunLoopRun + 2079
    3   com.apple.CoreFoundation                0x90b623f4 CFRunLoopRunSpecific + 452
    4   com.apple.CoreFoundation                0x90b62221 CFRunLoopRunInMode + 97
    5   com.apple.Foundation                    0x96df32c4 +[NSURLConnection(NSURLConnectionReallyInternal) _resourceLoadLoop:] + 329
    6   com.apple.Foundation                    0x96dba564 -[NSThread main] + 45
    7   com.apple.Foundation                    0x96dba514 __NSThread__main__ + 1499
    8   libSystem.B.dylib                       0x90080259 _pthread_start + 345
    9   libSystem.B.dylib                       0x900800de thread_start + 34
    Thread 25:  com.apple.CFSocket.private
    0   libSystem.B.dylib                       0x90071ac6 select$DARWIN_EXTSN + 10
    1   com.apple.CoreFoundation                0x90ba2c83 __CFSocketManager + 1091
    2   libSystem.B.dylib                       0x90080259 _pthread_start + 345
    3   libSystem.B.dylib                       0x900800de thread_start + 34
    Thread 26:
    0   libSystem.B.dylib                       0x90052b42 semaphore_wait_signal_trap + 10
    1   libSystem.B.dylib                       0x90058646 pthread_mutex_lock + 490
    2   com.apple.Foundation                    0x96da76db -[NSRecursiveLock lock] + 28
    3   com.apple.iLifeSQLAccess                0x017d39f5 -[HgSqlOperation main] + 373
    4   com.apple.iLifeSQLAccess                0x017d3729 -[RAOperationQueueImpl _runOperationFromList:sourceList:] + 73
    5   com.apple.iLifeSQLAccess                0x017ba4f3 -[RAOperationQueueImpl _workThread] + 403
    6   com.apple.Foundation                    0x96dba564 -[NSThread main] + 45
    7   com.apple.Foundation                    0x96dba514 __NSThread__main__ + 1499
    8   libSystem.B.dylib                       0x90080259 _pthread_start + 345
    9   libSystem.B.dylib                       0x900800de thread_start + 34
    Thread 27:
    0   libSystem.B.dylib                       0x90052afa mach_msg_trap + 10
    1   libSystem.B.dylib                       0x90053267 mach_msg + 68
    2   com.apple.iLifeSQLAccess                0x017ba5d1 -[RALatchTrigger wait] + 81
    3   com.apple.iLifeSQLAccess                0x017ba4c6 -[RAOperationQueueImpl _workThread] + 358
    4   com.apple.Foundation                    0x96dba564 -[NSThread main] + 45
    5   com.apple.Foundation                    0x96dba514 __NSThread__main__ + 1499
    6   libSystem.B.dylib                       0x90080259 _pthread_start + 345
    7   libSystem.B.dylib                       0x900800de thread_start + 34
    Thread 28:
    0   libSystem.B.dylib                       0x90052b5a semaphore_timedwait_signal_trap + 10
    1   libSystem.B.dylib                       0x900806e1 _pthread_cond_wait + 1066
    2   libSystem.B.dylib                       0x900af5a8 pthread_cond_timedwait_relative_np + 47
    3   com.apple.Foundation                    0x96df695c -[NSCondition waitUntilDate:] + 453
    4   com.apple.Foundation                    0x96daf451 -[NSConditionLock lockWhenCondition:beforeDate:] + 279
    5   com.apple.Foundation                    0x96daf334 -[NSConditionLock lockWhenCondition:] + 69
    6   com.apple.RedRock                       0x01cd7aad -[RKAsyncImageRenderer _backgroundRenderThread:] + 173
    7   com.apple.proxtcore                     0x016eea8c -[XTThreadSendOnlyDetached _detachedMessageHandler:] + 220
    8   com.apple.proxtcore                     0x016e4893 -[XTSubscription postMessage:] + 227
    9   com.apple.proxtcore                     0x016e4096 -[XTDistributor distributeMessage:] + 950
    10  com.apple.proxtcore                     0x016e3b1c -[XTThread handleMessage:] + 796
    11  com.apple.proxtcore                     0x016e2266 -[XTThread run:] + 422
    12  com.apple.Foundation                    0x96dba564 -[NSThread main] + 45
    13  com.apple.Foundation                    0x96dba514 __NSThread__main__ + 1499
    14  libSystem.B.dylib                       0x90080259 _pthread_start + 345
    15  libSystem.B.dylib                       0x900800de thread_start + 34
    Thread 29:
    0   libSystem.B.dylib                       0x900785a8 start_wqthread + 0
    Thread 30:
    0   libSystem.B.dylib                       0x90078412 __workq_kernreturn + 10
    1   libSystem.B.dylib                       0x900789a8 _pthread_wqthread + 941
    2   libSystem.B.dylib                       0x900785c6 start_wqthread + 30
    Thread 31:
    0   libSystem.B.dylib                       0x90078412 __workq_kernreturn + 10
    1   libSystem.B.dylib                       0x900789a8 _pthread_wqthread + 941
    2   libSystem.B.dylib                       0x900785c6 start_wqthread + 30
    Thread 32:
    0   libSystem.B.dylib                       0x90078412 __workq_kernreturn + 10
    1   libSystem.B.dylib                       0x900789a8 _pthread_wqthread + 941
    2   libSystem.B.dylib                       0x900785c6 start_wqthread + 30
    Thread 33:
    0   libSystem.B.dylib                       0x90052b5a semaphore_timedwait_signal_trap + 10
    1   libSystem.B.dylib                       0x900806e1 _pthread_cond_wait + 1066
    2   libSystem.B.dylib                       0x900af5a8 pthread_cond_timedwait_relative_np + 47
    3   ...ple.CoreServices.CarbonCore          0x99ed7b90 TSWaitOnConditionTimedRelative + 242
    4   ...ple.CoreServices.CarbonCore          0x99ed78ce TSWaitOnSemaphoreCommon + 511
    5   ...ickTimeComponents.component          0x94fe6e35 ReadSchedulerThreadEntryPoint + 4698
    6   libSystem.B.dylib                       0x90080259 _pthread_start + 345
    7   libSystem.B.dylib                       0x900800de thread_start + 34
    Thread 0 crashed with X86 Thread State (32-bit):
      eax: 0x00000000  ebx: 0x90b5a0f4  ecx: 0x00000000  edx: 0x00000000
      edi: 0x00000001  esi: 0x00000000  ebp: 0xbfffbde8  esp: 0xbfffbdb0
       ss: 0x0000001f  efl: 0x00010202  eip: 0x90b5a106   cs: 0x00000017
       ds: 0x0000001f   es: 0x0000001f   fs: 0x00000000   gs: 0x00000037
      cr2: 0x00000006
    Binary Images:
        0x1000 -   0xeffff7  com.apple.iPhoto 9.1.5 (9.1.5) <65AA38DF-C3AF-A06F-62AA-254A854FA060> /Applications/iPhoto.app/Contents/MacOS/iPhoto
    0x1056000 -  0x113dfef  org.python.python 2.6.1 (2.6.1) <4FFD855C-1C5A-9206-A695-8C9904F1DA84> /System/Library/Frameworks/Python.framework/Versions/2.6/Python
    0x1188000 -  0x11b1fff  com.apple.iPhoto.Tessera 1.1 (48.10) <39FACFA3-C1A1-CC57-9874-CF0E2EB0684C> /Applications/iPhoto.app/Contents/Frameworks/Tessera.framework/Versions/A/Tesse ra
    0x11ca000 -  0x11f1ff3  com.apple.iPhoto.Tellus 1.3 (48.10) <BE3ADEF1-C058-3660-60C5-5AC69CD5414D> /Applications/iPhoto.app/Contents/Frameworks/Tellus.framework/Versions/A/Tellus
    0x1210000 -  0x121aff7  com.apple.iphoto.AccountConfigurationPlugin 1.1 (1) <44FEAB1C-0E0B-7E80-82A5-5CF6287CF5DF> /Applications/iPhoto.app/Contents/Frameworks/AccountConfigurationPlugin.framewo rk/Versions/A/AccountConfigurationPlugin
    0x1228000 -  0x123fff7  com.apple.iLifeFaceRecognition 1.0 (21) <AD53D7A2-F0B2-FF76-5C6D-C23B234AB50E> /Library/Frameworks/iLifeFaceRecognition.framework/Versions/A/iLifeFaceRecognit ion
    0x124e000 -  0x1279fff  com.apple.DiscRecordingUI 5.0.9 (5090.4.2) <3E6CC284-2F1B-9EDB-0B56-872F962669A2> /System/Library/Frameworks/DiscRecordingUI.framework/Versions/A/DiscRecordingUI
    0x1291000 -  0x129cff3  com.apple.UpgradeChecker 1.0 (1.1) <851A0E5A-D23A-45B9-5CAD-6C9119E663F9> /Applications/iPhoto.app/Contents/Frameworks/UpgradeChecker.framework/Versions/ A/UpgradeChecker
    0x12a4000 -  0x12a4ff7  com.apple.iLifeSlideshow 2.2.0 (842) <2A6D9FAA-2136-00BA-4B10-83A6A513F70E> /Library/Frameworks/iLifeSlideshow.framework/Versions/A/iLifeSlideshow
    0x12a7000 -  0x151cff7  com.apple.iLifePageLayout 1.2 (147.18) <AF260C68-E5A4-254A-1544-76C3106C3AF8> /Library/Frameworks/iLifePageLayout.framework/Versions/A/iLifePageLayout
    0x15e2000 -  0x1681ff3  com.apple.MobileMe 11 (1.0.3) <8E95CD1B-525E-748C-743A-EB0E369B05F6> /Applications/iPhoto.app/Contents/Frameworks/MobileMe.framework/Versions/A/Mobi leMe
    0x16de000 -  0x1738fe7  com.apple.proxtcore 1.2 (134.18) <7ACD0BC2-93C7-9E11-F8F3-AEF3908930CD> /Applications/iPhoto.app/Contents/Frameworks/ProXTCore.framework/Versions/A/Pro XTCore
    0x1786000 -  0x184bff7  com.apple.iLifeSQLAccess 1.5 (21.17) <0BB2C541-323E-FA72-8EC6-CC136E8DB90B> /Library/Frameworks/iLifeSQLAccess.framework/Versions/A/iLifeSQLAccess
    0x188c000 -  0x18bafe7  com.apple.ProUtils 1.0 (113.2) <173AC540-F424-037B-33C6-544E4D59FB6B> /Applications/iPhoto.app/Contents/Frameworks/ProUtils.framework/Versions/A/ProU tils
    0x18d7000 -  0x192cff7  com.apple.iLifeKit 1.2 (79.15) <835E6632-A9E9-0EE3-BBC2-0BCFE5635887> /Library/Frameworks/iLifeKit.framework/Versions/A/iLifeKit
    0x1972000 -  0x1baafff  com.apple.prokit 7.0.1 (1331.1) <327AFA15-E955-02EF-3E57-E2558B645698> /System/Library/PrivateFrameworks/ProKit.framework/Versions/A/ProKit
    0x1cb2000 -  0x210afff  com.apple.RedRock 1.6 (223.52) <36B6AAF4-9636-DDBC-D2AD-57BABDB74CFC> /Applications/iPhoto.app/Contents/Frameworks/RedRock.framework/Versions/A/RedRo ck
    0x2341000 -  0x24d8fe3  com.apple.geode 1.4 (141.21) <A1F4432E-F07C-4F78-966F-F10DEFD22CC6> /Applications/iPhoto.app/Contents/Frameworks/Geode.framework/Versions/A/Geode
    0x2573000 -  0x257aff7  com.apple.MediaSync 1.0 (120.10) <CDAF79B6-1660-BA73-DCA7-71304BC9B179> /Applications/iPhoto.app/Contents/Frameworks/MediaSync.framework/Versions/A/Med iaSync
    0x2582000 -  0x2637fe7  libcrypto.0.9.7.dylib 0.9.7 (compatibility 0.9.7) <AACC86C0-86B4-B1A7-003F-2A0AF68973A2> /usr/lib/libcrypto.0.9.7.dylib
    0x267d000 -  0x267efff +eOkaoCom.dylib ??? (???) <2DE16B47-23E7-73DB-1297-C928E40DFC31> /Library/Frameworks/iLifeFaceRecognition.framework/Versions/A/Resources/eOkaoCo m.dylib
    0x2682000 -  0x26a7ff2 +eOkaoPt.dylib ??? (???) <831D49D0-43A0-21A0-2662-2207E3BE0FF6> /Library/Frameworks/iLifeFaceRecognition.framework/Versions/A/Resources/eOkaoPt .dylib
    0x26ae000 -  0x26e2fe7 +eOkaoDt.dylib ??? (???) <5693A28E-8C94-0F5F-150E-3B17CF753F64> /Library/Frameworks/iLifeFaceRecognition.framework/Versions/A/Resources/eOkaoDt .dylib
    0x26e8000 -  0x284ffff +eOkaoFr.dylib ??? (???) <E355FB47-C5EF-50CF-621A-9B17A50E2850> /Library/Frameworks/iLifeFaceRecognition.framework/Versions/A/Resources/eOkaoFr .dylib
    0x2853000 -  0x287dff7  com.apple.iLifeSlideshowCore 2.2.0 (231) <528B45B0-E240-7B24-49C4-D44D2DD5E633> /Library/Frameworks/iLifeSlideshow.framework/Versions/A/Frameworks/iLifeSlidesh owCore.framework/Versions/A/iLifeSlideshowCore
    0x2891000 -  0x299dfe3  com.apple.iLifeSlideshowProducer 2.2.0 (610) <569FC422-C0D8-A3B8-D7F4-F0E401B18A19> /Library/Frameworks/iLifeSlideshow.framework/Versions/A/Frameworks/iLifeSlidesh owProducer.framework/Versions/A/iLifeSlideshowProducer
    0x29e9000 -  0x2b52ff3  com.apple.iLifeSlideshowRenderer 2.2.0 (672) <8A340CB3-60EA-2798-0871-779ECE1F3DDC> /Library/Frameworks/iLifeSlideshow.framework/Versions/A/Frameworks/iLifeSlidesh owRenderer.framework/Versions/A/iLifeSlideshowRenderer
    0x2bae000 -  0x2bc7ff7  com.apple.iLifeSlideshowExporter 2.2.0 (249) <A2FA2CDE-575A-7CBD-BF9F-91BFCC43CE87> /Library/Frameworks/iLifeSlideshow.framework/Versions/A/Frameworks/iLifeSlidesh owExporter.framework/Versions/A/iLifeSlideshowExporter
    0x2bd4000 -  0x2bfdfe3  com.apple.audio.CoreAudioKit 1.6.1 (1.6.1) <7FFBD485-5251-776A-CC44-4470DD84112B> /System/Library/Frameworks/CoreAudioKit.framework/Versions/A/CoreAudioKit
    0x2c0e000 -  0x2c8fff7  com.apple.NyxAudioAnalysis 12.2 (12.2) <925917F5-EBD7-7995-7C0B-9D542C8FD775> /Library/Frameworks/NyxAudioAnalysis.framework/Versions/A/NyxAudioAnalysis
    0x2cae000 -  0x2cd5fe7  com.apple.ExpressCheckout 1.0 (1.0) <8C20C42F-E2E4-AD1D-00CA-EF117A8B2563> /Library/Frameworks/iLifePageLayout.framework/Versions/A/Frameworks/ExpressChec kout.framework/Versions/A/ExpressCheckout
    0x2cf9000 -  0x2d34ffb  com.apple.iLifeImageAnalysis 1.0 (2) <F26DB8EE-9764-6377-6072-DCC191D4FADA> /Library/Frameworks/iLifePageLayout.framework/Versions/A/Frameworks/iLifeImageA nalysis.framework/Versions/A/iLifeImageAnalysis
    0x2d7e000 -  0x2d82ff3  com.apple.audio.AudioIPCPlugIn 1.1.6 (1.1.6) <E9CB576C-283B-1DB2-0C69-E7C914BD7922> /System/Library/Extensions/AudioIPCDriver.kext/Contents/Resources/AudioIPCPlugI n.bundle/Contents/MacOS/AudioIPCPlugIn
    0x2d87000 -  0x2d8dff7  com.apple.audio.AppleHDAHALPlugIn 2.0.5 (2.0.5f14) <38E3C1A4-84E4-C105-B55F-8FC4C154036D> /System/Library/Extensions/AppleHDA.kext/Contents/PlugIns/AppleHDAHALPlugIn.bun dle/Contents/MacOS/AppleHDAHALPlugIn
    0x3a00000 -  0x3a72fff +com.DivXInc.DivXDecoder 6.4.0 (6.4.0) /Library/QuickTime/DivX Decoder.component/Contents/MacOS/DivX Decoder
    0x3c67000 -  0x3c69ff7  libclparser.dylib ??? (???) <F1C02810-AEEA-F661-FCED-DEA4EB7524D7> /System/Library/Frameworks/OpenCL.framework/Libraries/libclparser.dylib
    0x1b9d0000 - 0x1b9f4fe7  GLRendererFloat ??? (???) <AD081A9B-1424-1F17-3C68-9803EBA37E8D> /System/Library/Frameworks/OpenGL.framework/Resources/GLRendererFloat.bundle/GL RendererFloat
    0x1e8f6000 - 0x1ea6fff7  GLEngine ??? (???) <64C74F67-44B5-7DEF-CCA6-C8A9FF9BB60A> /System/Library/Frameworks/OpenGL.framework/Resources/GLEngine.bundle/GLEngine
    0x1eaa1000 - 0x1eeb4fef  com.apple.ATIRadeonX2000GLDriver 1.6.36 (6.3.6) <257CAA1D-6573-2932-E344-E96F6C9CDA84> /System/Library/Extensions/ATIRadeonX2000GLDriver.bundle/Contents/MacOS/ATIRade onX2000GLDriver
    0x1eef6000 - 0x1eefaff7  libcldcpuengine.dylib 1.5.6 (compatibility 1.0.0) <EF10CD42-F20F-EB7B-FC29-2AA973D5758D> /System/Library/Frameworks/OpenCL.framework/Libraries/libcldcpuengine.dylib
    0x1f00f000 - 0x1f0a9ff7  unorm8_argb.dylib 1.5.6 (compatibility 1.0.0) <F486B4F7-B6B0-88F5-8A0C-570566F74618> /System/Library/Frameworks/OpenCL.framework/Libraries/ImageFormats/unorm8_argb. dylib
    0x25ab9000 - 0x25c9ffef  com.apple.audio.codecs.Components 2.0.3 (2.0.3) <8DA1B494-CD97-D4CC-3D5D-FACFAAE9D968> /System/Library/Components/AudioCodecs.component/Contents/MacOS/AudioCodecs
    0x27000000 - 0x273e5fe7  QuickTimeH264.scalar ??? (???) <CE0DE83D-B2F4-E4CE-A392-7C22A83F67A1> /System/Library/QuickTime/QuickTimeH264.component/Contents/Resources/QuickTimeH 264.scalar
    0x70000000 - 0x700cbfff  com.apple.audio.units.Components 1.6.5 (1.6.5) <E50D0989-0609-EAF7-3B3B-B10D7847BAA5> /System/Library/Components/CoreAudio.component/Contents/MacOS/CoreAudio
    0x8fe00000 - 0x8fe4163b  dyld 132.1 (???) <4CDE4F04-0DD6-224E-ACE5-3C06E169A801> /usr/lib/dyld
    0x90003000 - 0x90034ff7  libGLImage.dylib ??? (???) <0EE86397-A867-0BBA-E5B1-B800E43FC5CF> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLImage.dyl ib
    0x90035000 - 0x90051fe3  com.apple.openscripting 1.3.1 (???) <2A748037-D1C0-6D47-2C4A-0562AF799AC9> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/OpenScripting .framework/Versions/A/OpenScripting
    0x90052000 - 0x901f9ff7  libSystem.B.dylib 125.2.11 (compatibility 1.0.0) <2DCD13E3-1BD1-6F25-119A-3863A3848B90> /usr/lib/libSystem.B.dylib
    0x901fa000 - 0x902c5fef  com.apple.CoreServices.OSServices 359.2 (359.2) <7C16D9C8-6F41-5754-17F7-2659D9DD9579> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServi ces.framework/Versions/A/OSServices
    0x902e6000 - 0x90378fe7  com.apple.print.framework.PrintCore 6.3 (312.7) <7410D1B2-655D-68DA-D4B9-2C65747B6817> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ PrintCore.framework/Versions/A/PrintCore
    0x90379000 - 0x90474fff  com.apple.PubSub 1.0.5 (65.28) <DD6B2666-9858-5745-A44D-0CA2309222B3> /System/Library/Frameworks/PubSub.framework/Versions/A/PubSub
    0x90475000 - 0x904befe7  libTIFF.dylib ??? (???) <579DC328-567D-A74C-4BCE-1D1C729E3F6D> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libTIFF.dylib
    0x904f8000 - 0x90625ffb  com.apple.MediaToolbox 0.484.52 (484.52) <C9035045-D1B4-1B1F-7354-B00D1094D804> /System/Library/PrivateFrameworks/MediaToolbox.framework/Versions/A/MediaToolbo x
    0x90637000 - 0x906f3fff  com.apple.ColorSync 4.6.6 (4.6.6) <7CD8B191-039A-02C3-EA5E-4194EC59995B> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ColorSync.framework/Versions/A/ColorSync
    0x906f4000 - 0x9078ffe7  com.apple.ApplicationServices.ATS 275.16 (???) <873C8B8A-B563-50F7-7628-524EE9E8DF0F> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/ATS
    0x90790000 - 0x90ab4fef  com.apple.HIToolbox 1.6.5 (???) <21164164-41CE-61DE-C567-32E89755CB34> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.fra mework/Versions/A/HIToolbox
    0x90abc000 - 0x90adcfe7  libresolv.9.dylib 41.0.0 (compatibility 1.0.0) <BF7FF2F6-5FD3-D78F-77BC-9E2CB2A5E309> /usr/lib/libresolv.9.dylib
    0x90aea000 - 0x90b25fe7  com.apple.DebugSymbols 1.1 (70) <05013716-CFCF-801E-5535-D0643869BDCD> /System/Library/PrivateFrameworks/DebugSymbols.framework/Versions/A/DebugSymbol s
    0x90b26000 - 0x90ca1fe7  com.apple.CoreFoundation 6.6.5 (550.43) <10B8470A-88B7-FC74-1C2F-E5CBD966C051> /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
    0x90ca2000 - 0x90cadff7  libCSync.A.dylib 545.0.0 (compatibility 64.0.0) <287DECA3-7821-32B6-724D-AE03A9A350F9> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCSync.A.dylib
    0x90cae000 - 0x90d5afe7  com.apple.CFNetwork 454.12.4 (454.12.4) <DEDCD006-389F-967F-3405-EDF541F406D7> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CFNetwo rk.framework/Versions/A/CFNetwork
    0x90d5b000 - 0x90dbcfe7  com.apple.CoreText 151.10 (???) <5C2DEFBE-D54B-4DC7-D456-9ED02880BE98> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreText.framework/Versions/A/CoreText
    0x90dbd000 - 0x90dc2ff7  com.apple.AOSNotification 1.2.0 (124) <3CDBCEB8-1078-7152-10CE-001B772AF04F> /System/Library/PrivateFrameworks/AOSNotification.framework/Versions/A/AOSNotif ication
    0x90dc3000 - 0x90dd8ff7  com.apple.iChat.InstantMessage 5.0.5 (747) <4E1D077E-3733-5565-ADB9-C9B2C3EC89BE> /System/Library/Frameworks/InstantMessage.framework/Versions/A/InstantMessage
    0x90dd9000 - 0x91294ff7  com.apple.VideoToolbox 0.484.52 (484.52) <F7CF9485-A932-1305-9AA6-3F7AC38B8B15> /System/Library/PrivateFrameworks/VideoToolbox.framework/Versions/A/VideoToolbo x
    0x912ae000 - 0x91318fe7  libstdc++.6.dylib 7.9.0 (compatibility 7.0.0) <411D87F4-B7E1-44EB-F201-F8B4F9227213> /usr/lib/libstdc++.6.dylib
    0x9134f000 - 0x913b3ffb  com.apple.htmlrendering 72 (1.1.4) <4D451A35-FAB6-1288-71F6-F24A4B6E2371> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HTMLRendering .framework/Versions/A/HTMLRendering
    0x913b4000 - 0x9210efe7  com.apple.WebCore 6534 (6534.50) <492FD955-DCB6-2E2D-3F51-CF295516877A> /System/Library/Frameworks/WebKit.framework/Versions/A/Frameworks/WebCore.frame work/Versions/A/WebCore
    0x9210f000 - 0x92152ff7  com.apple.NavigationServices 3.5.4 (182) <8DC6FD4A-6C74-9C23-A4C3-715B44A8D28C> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/NavigationSer vices.framework/Versions/A/NavigationServices
    0x92153000 - 0x9217aff7  com.apple.quartzfilters 1.6.0 (1.6.0) <879A3B93-87A6-88FE-305D-DF1EAED04756> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuartzFilters .framework/Versions/A/QuartzFilters
    0x9217b000 - 0x92184ff7  com.apple.DiskArbitration 2.3 (2.3) <E9C40767-DA6A-6CCB-8B00-2D5706753000> /System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitration
    0x92264000 - 0x9228afe3  com.apple.speech.LatentSemanticMappingFramework 2.7.2 (2.7.2) <5986E77D-F10B-D037-5584-B73B1B352918> /System/Library/Frameworks/LatentSemanticMapping.framework/Versions/A/LatentSem anticMapping
    0x92297000 - 0x922acfff  com.apple.ImageCapture 6.1 (6.1) <B909459A-EAC9-A7C8-F2A9-CD757CDB59E8> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/ImageCapture. framework/Version

    Thanks for your reply, Terence.
    Removing the .mov files didn't help at all.  
    I have 7 iphoto libraries created with iPhoto 9.   When launching iPhoto 11, it converted 5 of those libraries with no problems. 
    But, it would crash when converting two of them.   iPhoto Library Mgr couldn't help with those two, as they were grayed out in the library selection pane and iPhoto Lib. Mgr wouldn't recognize them until they were opened with iPhoto 11.   So, now I was really stuck.   In scouring the internet for other ideas, I removed the DivXcodec file from the OS.   That helped a bit, in that iPhoto 11 would now open and convert them.   Problem was -- my library now only showed 800 of 8,000 photos.   I ran iPhoto Lib. Mgr. to rebuild.  It never brought in any of my other photos.   Tried holding the option key down while launching iPhoto to rebuild -- same thing.   Most of my photos were missing.
    At this point, I was really frustrated with iPhoto.   I mentioned that I could open the library in Aperture.  So I noticed when iPhoto's library was open (with the 800 photos) - I could click on the "Show Aperature Library" in the file menu.   That brought up a small window with ALL the photos in Aperture Library.   I then dragged in all the Events one by one into iPhoto.   Took some work and lots of time, but basically rebuilt my iPhoto Library that way.   It did save the metadata, etc.   Reorganized my Albums, etc., and thought all was good to go.
    When I checked the library size of the original iPhoto library (created in iPhoto 9) -- it was appox. 15 GB.   My newly created library I just worked on for hours is only 3.2 GB.  Yet, I have all my photos from the old library in it.   Now, I see that all the photos imported into iPhoto from Aperture are about 1/4th the size of the originals.  For instance, a photo that was originally 800 KB is now 143 KB. 
    So, now here I am with a library that holds much smaller resolution photos than the originals were.
    I guess I'm totally fed up with iPhoto 11 at this point and have decided to move to Aperture to work with my libraries.  Even though iPhoto has served my needs perfectly to this point, I'm going to learn Aperture and not deal with this again with any new iPhoto versions that come out.
    Sorry for my rant, but this has been not only frustrating, but has cost me many hours of time to try to get my iPhoto libraries working in iPhoto 11.   And, still, have no idea what was causing the the problem with these two libraries (which imported with no problems into Aperture).  Like you said, it could be a single corrupted or damaged jpeg file  -- but how would you find that "needle in the haystack"?   iPhoto 11, in my opinion, is not a reliable program for photo management when it has these kind of issues.   Thankfully, I had Aperture as an alternative.  What would I do if I hadn't??   I can't imagine the time it would take to redo my 8,000 photo library manually.  It would be impossible to import, tag, organize and and go thru all these photos again.

  • Adobe Flash Player 11.8.800.174+as3无法读取js对像中中文字符

    测试环境:window7,IE10,Adobe Flash Player 11.8.800.174
    使用var _obj:Object= ExternalInterface.call("jsobject");读取当前页面中js返回的一个函数jsobject(类型为object)
    如果是数字和英文,则能正确读取,如果是中文,则出现乱码,如果包含"退出全屏"这四个字符,则读取不出来
    以下附上相关代码
    actionscript3.0
    package  {
    import flash.display.MovieClip;
    import flash.text.TextField;
    import flash.system.System;
    import flash.external.ExternalInterface;
    public class getobject extends MovieClip {
      public function getobject() {
       init();
      private function init(){
       var _test:TextField=new TextField();
       _test.width=200;
       _test.height=200;
       addChild(_test);
       if(ExternalInterface.available){
        var _obj:Object= ExternalInterface.call("jsobject");
        var _str:String="";
        for(var k in _obj){
         _str+=k+":"+_obj[k]+"\n";
        _test.text=_str;
    html:
    <!-- saved from url=(0014)about:internet -->
    <!DOCTYPE html>
    <head>
    <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
    <title>getobject</title>
    </head>
    <body>
    <script type="text/javascript">
      function jsobject(){
      var _obj={
       a:'1',
       b:'退出全屏'
      return _obj;
    </script>
         <object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" id="ExternalInterfaceExample" width="550" height="400" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab">
             <param name="movie" value="getobject.swf" />
             <param name="quality" value="high" />
             <param name="bgcolor" value="#869ca7" />
             <param name="allowScriptAccess" value="sameDomain" />
             <embed src="getobject.swf" quality="high" bgcolor="#869ca7" width="500" height="375" name="ExternalInterfaceExample" align="middle" play="true" loop="false" quality="high" allowScriptAccess="sameDomain" type="application/x-shockwave-flash" pluginspage="http://www.macromedia.com/go/getflashplayer">
             </embed>
         </object>
    </body>
    </html>
    如果 var _obj函数里的b项为英文或数字,则正常。如果为中文则是乱码,如果是退出全屏。则直接读取不出来。其它浏览器或ie下其它版本的flashplay正常

    (Amusing Google translation to follow) If google reads you correctly, you're having a multibyte issue transferring data over ExternalInterface. Have you tried simply encoding it to Base64 before sending the data? Here's an example JavaScript Base64 converter:
    http://www.webtoolkit.info/javascript-base64.html
    (google translate):
    如果谷歌读取正确的话,你有一个多字节的问题过ExternalInterface的数据传输。您是否尝试过简单的编码为Base64在发送数据前?下面是一个例子JavaScript的使用 Base64转换器:
    http://www.webtoolkit.info/javascript-base64.html

Maybe you are looking for

  • I7-3820 oc genie multiply problem

    hi just flashed bios to 4,7 with new me drivers then switch off Pc and press co button boot normal. Check multiplier was set for 40x in Command C and Cpu-Z now restart Pc again and after boot iv notice that multiply is set on 37x in CC and Cpu-Z but

  • Help with viewing mail...

    I'm having a very annoying problem viewing mail on my new macbook pro. On my old macbook ( 4 years old ) the messages were viewed differently; I could see the sender on half the inbox window and the image or body details underneath without opening a

  • SOAP or HTTP interface

    Hello, I'd like to use Berkeley DB XML remotely. Has anyone released a REST or SOAP wrapper around it ? Thanks, Fabrice

  • HT4623 Had to restore phone.  It's stuck at activate.  All started with backing up, told to update, update, told error, restore, told couldn't complete.

    I went to backup phone on desktop.  Got message that I needed to update.  Back-up first.  After backup, went to update system.  As it was in process of updating, said there was an error and would have to restore.  Phone showed image of usb connected

  • Scorm will not load random questions

    Good afternoon. Moodle 1.9 Cp7 My SCORM will not load when I have used random questions from a pool. I published the same course with a set amount of questions and it loads perfectly. Does anyone know of an issue with using random questions? Thank yo