JFrame Graphics SVG Or Absolute ?

I'm doing a Java graphical display of an application's output so that the eventual user can use this as a sort of working drawing for fabricating a customised part.
The first snag is that since lines can only be defined between 2 points (x1, y1) & (x2, y2) and since we have to enter integers for all co-ordinates (their being pixels), there is going to be a finite error in the line positions.
My plan was to convert this JFrame output to an SVG or EPS file and then let the craftsman print this out at true scale as his working drawing.
But I am afraid that enlarging an erroneous drawing will lead to still greater errors in the finished component.
I am in a position to draw these lines using a starting point and an angle, yet I see no method to do this.
In fact, the arc drawing methods also specify integer angle parameters.
Can anyone give me any guidance on this ?
Or do I just have to draw these as best I can, label them and add a table of precise angles for these lines ?

Coordinates don't have to be integers. They have to be integers at the moment you draw them, but not necessarily does that have to be the case when you store them in memory.
Computer graphics generally work on a model which defines the coordinates using floating point numbers and eventually that model is rasterized to the screen, calculating the proper 2D integer coordinates. Perhaps you too should be using basic 2D vector math and models when defining and transforming your data (for example scaling it) and only come time to draw the stuff (using Graphics2D methods) you translate whatever model you're using to proper 2D coordinates.

Similar Messages

  • Could I use graphics svg in Adobe Muse?

    Hello, I'm looking for is it posible import graphics svg in Adobe Muse.
    Thanks and regards

    @Nathan – I'm relative new to Muse so bear with me…
    I also tried using the width and height controls in Muse to resize after pasting in the SVG code. Didn't work as expected. Rotating the SVG was no problem, scaling was. Maybe there is something in the code I'm using from Illustrator, that is preventing this.
    Here some SVG code from Illustrator that is defining width, height, viewBox etc.pp.:
    <?xml version="1.0" encoding="utf-8"?>
    <!-- Generator: Adobe Illustrator 15.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0)  -->
    <!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
    <svg version="1.1" id="Ebene_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
        width="54px" height="50px" viewBox="0 0 54 50" enable-background="new 0 0 54 50" xml:space="preserve">
    However, I looked up the SVG documentation at:
    Coordinate Systems, Transformations and Units – SVG 1.1 (Second Edition)
    and found some ways to scale the SVG. I'm not through with my testing, but it seems, that changing the viewBox parameters could be sufficient to scale the whole SVG graphic.
    Or we could use the transform property to get scaling properly. If we enclose the pure graphic code with the g tag, we could use transform like this:
    <svg>
    <desc>Scales the element enclosed with g to 200% (uniform scaling in x and y)</desc>
    <g transform="scale(2)">
    <desc>Include the code for the graphic here</desc>
    </g>
    </svg>
    For none-uniform scaling (x and y scaled differently) you could use a second argument in scale() :
    <svg>
    <desc>Scales the element enclosed with g to 250% in x direction and 300% in y direction</desc>
    <g transform="scale(2.5 3)">
    <desc>Include the code for the graphic here</desc>
    </g>
    </svg>
    Also possible is the insertion of the title tag like this:
    <svg>
    <desc>Scales the element enclosed with g to 250% in x direction and 300% in y direction</desc>
    <g transform="scale(2.5 3)">
    <desc>Include the code for the graphic here</desc>
    <title>This is my SVG graphic</title>
    </g>
    </svg>
    So if you mouse over the graphic in the browser you'll get a tool tip what the graphic is about.
    Uwe

  • Can I use Scalable Vector Graphics (.SVG) in RoboHelp 11 projects?

    I need to import .SVGs into my RoboHelp 11 HTML5 project, but that file type doesn't seem to be supported. I tried pasting the appropriate HTML code into a topic, but the SVG graphic doesn't show. Am I missing something, or is there a work-around?

    Hi folks
    Simple Simon here.
    First off, I totally agree with Erik in that you should file a Feature Request.
    Secondly, I know that many folks aren't really all that keen on mucking with code. So here's one solution that involves minimal code muckage, (yep, muckage is a technical term. I just invented it!)
    Add your SVG to Baggage where you want it.
    Insert an image where you want your SVG to appear.
    Click and drag the SVG from Baggage to the spot just beyond the image.
    Double-click the SVG link and copy what appears in the Link to area. Then delete the link.
    Click once on the image, then click the HTML tab.
    Now just paste what you copied between the img tags.
    Cheers... Rick

  • Jframe graphics glitch

    hello
    sorry if this is a dumb question. i have to make a simple paint program for a class of mine, using two jframe panels; one would have the options (line, square, color for example) and the other would be the frame you draw on. the problem is, the background of the options frame somehow gets onto the other frame, but only on the top and left side, for maybe 50ish pixels from the edge. i can post screenshots or source code if necessary, but has anyone else had this problem before?

    import java.awt.*;
    public class ControlDriver{
      public static void main(String[] args){
        DisplayWindow display = new DisplayWindow();
        DisplayWindow controls = new DisplayWindow();
        DisplayPanel p = new DisplayPanel();
        ControlPanel c = new ControlPanel(p);
        controls.addPanel(c);
        controls.showFrame();
        display.addPanel(p);
        display.showFrame();
    import java.awt.*;
    import javax.swing.*;
    import java.awt.event.*;
    public class ControlPanel extends JPanel implements ActionListener{
      JButton colorButton = new JButton("ColorSwitch");
      DisplayPanel slavePanel;
      public ControlPanel(DisplayPanel p){
        slavePanel = p;
        this.add(colorButton);
        setBackground(Color.yellow);
      public void paintComponent(Graphics g){
        super.paintComponent(g);
      public void actionPerformed(ActionEvent e){}
    import java.awt.*;
    import javax.swing.*;
    import javax.swing.event.*;
    import java.awt.event.*;
    public class DisplayPanel extends JPanel implements MouseMotionListener{
      int x = Integer.MIN_VALUE;
      int y = Integer.MIN_VALUE;
      int oldx = Integer.MIN_VALUE;
      int oldy = Integer.MIN_VALUE;
      public DisplayPanel() {
        addMouseMotionListener(this);
      public void paintComponent(Graphics g){
        setBackground(Color.white);
        g.drawLine(oldx, oldy, x, y);
        public void mouseDragged(MouseEvent e){
        oldx = x;
        oldy = y;
        x = e.getX();
        y = e.getY();
        repaint();
      public void mouseMoved(MouseEvent e){}
    import java.awt.*;
    import javax.swing.*;
    public  class DisplayWindow extends JFrame{
      private Container c;
      public DisplayWindow(){
        super("Display");
        c = this.getContentPane();
      public void addPanel(JPanel p){
        p.setPreferredSize(new Dimension(700,300));
        c.add(p);
      public void showFrame(){
        this.pack();
        this.setVisible(true);
        this.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
    }This is the most compact version of the code that still gives the problem, ive noticed 1 out of 4 times or so i dont get it, so if it works fine for you at first then try it a few more times. thanks!

  • Pasted Ai graphics (svg) have jagged edges

    I am working on an animation in Edge Animate and have been copy and pasting all the assets from Illustrator. I noticed that the result, whether it is in the Edge interface or the published HTML file, has jagged edges. I assumed that they would be smooth since Edge was creating vector files, but that is not the case.
    Here's what I'm seeing:
    Thank you in advance for any help you can provide!

    We were able to solve the above issue that Micah was facing with SVG. Posting this here for the benefit of others seeing the same issue.
    Description:
    In Edge Animate CC there existed a SVG pixilation issue which is observed on browsers when any SVG content is animated with “scale up” transform. To solve this problem in Edge Animate CC 2014 we are scaling up the container div by a factor of 10 (which is by default) and then using image filtering to reduce the resolution based on the inverse scale. Property panel will show this inverse transform scale since that is the transform scale applied to the svg element.
    This scale factor can be changed from:
    1.      Close Animate
    2.      Open the preference folder:
    a.      Windows: C:\Users\{username}\AppData\Roaming\Adobe\Edge Animate\4.0.0\
    b.      Mac: /Users/{username}/Library/Prefrences/Adobe/EdgeAnimate/4.0.0/
    3.      Open the AppPrefs.xml file in a text editor.
    4.      Search for the Current line in AppPrefs.xml:
    <key>SvgAntiScaleFactor</key>
    <float>10</float>
    Update this to:
    <key>SvgAntiScaleFactor</key>
    <float>1</float>
    5.      Launch Animate
    6.      Now try to copy the assets from Ai to Edge and check if you still see the jagged edges. Note: reopening the old composition with the new preference settings will not help. You will need to re-copy the assets with the new preference setting for this to work.
    Thanks,
    Sujai

  • SVG saved in Illustrator won't show up on Chrome and is blowing up on Safari

    Hello. First time here, so bear with me in case I'm doing something wrong.
    So, I have to create almost 500 maps for this wine store website. They want the maps to be SVG files, because their website is responsive, so SVG would be the format that goes along with every platform without losing quality.
    I was saving all the directly from Illustrator, but when I opened up those SVGs, the objects were completely out of the artboard. So I exported all the artboards in EPS format and used a batch action script to open each one and save as SVG.
    That seemed to work. But when I took the files for them to upload in their website using Magento, the images weren't showing in Chrome and were blown up in Safari, completely oversized in relation to the original artboard size. This all happened in iOS, if it's of any importance.
    Now, I don't understand nothing about coding or anything, so I was wondering if there's something I could do in Illustrator to prevent this from happening.
    Here's the entire code for one of the files as an example, in case anyone wanna take a look:
    <?xml version="1.0" encoding="utf-8"?>
    <!-- Generator: Adobe Illustrator 17.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
    <!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd" [
    <!ENTITY ns_extend "http://ns.adobe.com/Extensibility/1.0/">
    <!ENTITY ns_ai "http://ns.adobe.com/AdobeIllustrator/10.0/">
    <!ENTITY ns_graphs "http://ns.adobe.com/Graphs/1.0/">
    <!ENTITY ns_vars "http://ns.adobe.com/Variables/1.0/">
    <!ENTITY ns_imrep "http://ns.adobe.com/ImageReplacement/1.0/">
    <!ENTITY ns_sfw "http://ns.adobe.com/SaveForWeb/1.0/">
    <!ENTITY ns_custom "http://ns.adobe.com/GenericCustomNamespace/1.0/">
    <!ENTITY ns_adobe_xpath "http://ns.adobe.com/XPath/1.0/">
    ]>
    <svg version="1.1" id="Layer_1" xmlns:x="&ns_extend;" xmlns:i="&ns_ai;" xmlns:graph="&ns_graphs;"
    xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" viewBox="-6910.8 -7404 215 165"
    enable-background="new -6910.8 -7404 215 165" xml:space="preserve">
    <metadata>
    <sfw xmlns="&ns_sfw;">
    <slices></slices>
    <sliceSourceBounds height="149.6" width="197.6" bottomLeftOrigin="true" x="-6904.6" y="8324.7"></sliceSourceBounds>
    </sfw>
    </metadata>
    <circle fill="#A5E32A" fill-opacity="0.2" cx="-6866.1" cy="-7283.2" r="38"/>
    <polygon fill="#FFFFFF" stroke="#A5E32A" stroke-width="0.5" points="-6891.1,-7281.1 -6889.5,-7281.1 -6887.2,-7282.8
    -6885,-7283.4 -6883.1,-7283.4 -6879.6,-7283.4 -6878.8,-7283.2 -6878,-7282.7 -6877.3,-7282.1 -6874.2,-7281.7 -6870.5,-7280.9
    -6870.2,-7280.4 -6869.6,-7279 -6869.6,-7278.1 -6869,-7277.8 -6867.3,-7276.1 -6866.6,-7275 -6866,-7272.1 -6865,-7270.7
    -6863.6,-7269.8 -6862.9,-7269.6 -6862.7,-7270.2 -6861.7,-7271.4 -6859.9,-7274 -6858.4,-7275.5 -6857.7,-7275.8 -6857.6,-7275
    -6857.7,-7274.5 -6857.9,-7273.5 -6858.2,-7272.2 -6858.3,-7271.5 -6859.1,-7271 -6859.8,-7270.9 -6860,-7270.2 -6860.6,-7269.4
    -6860.6,-7268.6 -6861.4,-7266.5 -6861.1,-7266 -6860.3,-7265.9 -6859.1,-7265.7 -6857.4,-7265.7 -6856.7,-7266.3 -6856.8,-7267.1
    -6857.7,-7268.1 -6858.3,-7268.3 -6858.6,-7268.8 -6859.2,-7269.1 -6858.4,-7269.2 -6857.4,-7269.4 -6856.5,-7269.9
    -6855.7,-7270.6 -6855.3,-7271.2 -6854.6,-7270.4 -6855,-7269.9 -6855.4,-7269.2 -6855.8,-7268.6 -6856,-7266.6 -6855.7,-7266.5
    -6854.6,-7266.7 -6853.9,-7267.1 -6853,-7265.7 -6852.4,-7265.1 -6851.6,-7264 -6851.3,-7263.3 -6851.6,-7261.9 -6851.4,-7261.4
    -6850.7,-7260.4 -6850.6,-7259.5 -6850.2,-7258.4 -6849.3,-7257.1 -6848.7,-7256.2 -6847.5,-7255.9 -6846.8,-7255.8
    -6846.8,-7306.3 -6891.2,-7306.5 "/>
    <g>
    <path fill="#A5E32A" d="M-6814.9-7277.7c-0.1-1-0.6-1.3-1.1-1.3c-0.7,0-1,0.4-1,1.2c0,2,4.2,3,4.2,6.2c0,2-1.3,3-3.2,3
    c-1.9,0-3-1.5-3.1-3.3l1.9-0.3c0.1,1.2,0.6,1.8,1.2,1.8c0.7,0,1.2-0.4,1.2-1.1c0-2.4-4.2-3-4.2-6.4c0-1.9,1.2-3,3.2-3
    c1.7,0,2.7,1.2,2.8,2.9L-6814.9-7277.7z"/>
    <path fill="#A5E32A" d="M-6811.3-7277.8c0-1.7,1-3,3.1-3s3.1,1.4,3.1,3v6.1c0,1.7-1,3-3.1,3s-3.1-1.4-3.1-3V-7277.8z
    M-6809.2-7271.7c0,0.9,0.3,1.3,1.1,1.3s1.1-0.4,1.1-1.3v-6c0-0.9-0.3-1.3-1.1-1.3s-1.1,0.4-1.1,1.3V-7271.7z"/>
    <path fill="#A5E32A" d="M-6803-7280.7h2v9c0,0.9,0.3,1.3,1.1,1.3c0.7,0,1.1-0.4,1.1-1.3v-9h2v8.9c0,2-1.2,3.2-3.1,3.2
    s-3.1-1.1-3.1-3.2V-7280.7z"/>
    <path fill="#A5E32A" d="M-6793.6-7278.9h-2v-1.8h6v1.8h-2v10.1h-2V-7278.9z"/>
    <path fill="#A5E32A" d="M-6788.4-7268.8v-11.9h2v4.8h2.2v-4.8h2v11.9h-2v-5.3h-2.2v5.3H-6788.4z"/>
    </g>
    <g>
    <path fill="#A5E32A" d="M-6818.5-7253h-2l2.2-11.9h2.5l2.2,11.9h-2l-0.4-2.6h-2.2L-6818.5-7253z M-6817.9-7257.4h1.6l-0.8-5.1h0
    L-6817.9-7257.4z"/>
    <path fill="#A5E32A" d="M-6812.4-7264.9h2v9c0,0.9,0.3,1.3,1.1,1.3c0.7,0,1.1-0.4,1.1-1.3v-9h2v8.9c0,2-1.2,3.2-3.1,3.2
    s-3.1-1.1-3.1-3.2V-7264.9z"/>
    <path fill="#A5E32A" d="M-6800.4-7262c-0.1-1-0.6-1.3-1.1-1.3c-0.7,0-1,0.4-1,1.2c0,2,4.2,3,4.2,6.2c0,2-1.3,3-3.2,3
    c-1.9,0-3-1.5-3.1-3.3l1.9-0.3c0.1,1.2,0.6,1.8,1.2,1.8c0.7,0,1.2-0.4,1.2-1.1c0-2.4-4.2-3-4.2-6.4c0-1.9,1.2-3,3.2-3
    c1.7,0,2.7,1.2,2.8,2.9L-6800.4-7262z"/>
    <path fill="#A5E32A" d="M-6795.6-7263.1h-2v-1.8h6v1.8h-2v10.1h-2V-7263.1z"/>
    <path fill="#A5E32A" d="M-6788.4-7253h-2v-11.9h2.9c2.3,0,3.5,1,3.5,3.5c0,1.9-0.7,2.7-1.4,3l1.7,5.4h-2.1l-1.5-4.9
    c-0.3,0-0.7,0-1.1,0V-7253z M-6788.4-7259.6h0.7c1.1,0,1.5-0.4,1.5-1.8c0-1.4-0.4-1.8-1.5-1.8h-0.7V-7259.6z"/>
    <path fill="#A5E32A" d="M-6781-7253h-2l2.2-11.9h2.5l2.2,11.9h-2l-0.4-2.6h-2.2L-6781-7253z M-6780.3-7257.4h1.6l-0.8-5.1h0
    L-6780.3-7257.4z"/>
    <path fill="#A5E32A" d="M-6774.9-7253v-11.9h2v10.1h3.2v1.8H-6774.9z"/>
    <path fill="#A5E32A" d="M-6768.2-7253v-11.9h2v11.9H-6768.2z"/>
    <path fill="#A5E32A" d="M-6762.7-7253h-2l2.2-11.9h2.5l2.2,11.9h-2l-0.4-2.6h-2.2L-6762.7-7253z M-6762-7257.4h1.6l-0.8-5.1h0
    L-6762-7257.4z"/>
    </g>
    <path fill="#A5E32A" d="M-6812.6-7361.3l2.4-0.2l0.8-1l1.3-1.5l0.9-2.4l0.8-1.6l-0.4-1.1l0.5-2.3l2.4-2.1l1.6,2.3l0.5-0.5l-0.1-0.8
    l-0.6-1.4l0.5-0.6l0.6-0.4l1.1,0.4h0.8l0.7-0.9v-0.9l0.4-1.4l1.1-2l2.6-2.4l0.8-0.5h1h0.5l0.5-0.1l0.5-0.9l0.6-0.1l0.9,0.4l0.9,0.6
    l0.5,0.6l0.6,0.5l0.5,0.8l0.5,0.4l0.9,0.6h0.9l0.9-0.3l1.1-0.6l0.3-1.6l1-1.6l1.3-2l0.1-1.4l1.1-1.1l1.4-0.3l1.6-0.4l1.5-0.5
    l1.9-0.8l-0.4-0.6l-1-0.1l-0.6-0.6l-0.4-0.6l0.3-0.5l0.7-0.3h0.8l0.6,0.4l2.3,1l1.8,0.4l1.7,0.5l1.1,1.1l0.6-0.4l0.9,0.1l1.4,1
    l0.4-1.5l0.5-0.6l1-0.5l1.3-0.4l1-0.6l0.7-1l0.8,0.8l-0.4,0.8l-0.8,0.5l-0.4,0.5v0.8l0.7,0.3l0.9,0.6l0.4,0.5v0.9l-1.3,1.9l-0.9,1
    h-1.8l0.8,1.1l-0.3,1.1l-1.5,2.4l7.5,4.5l3.4,1.8l1.9,2.1l2.4,1.3l1.5-1.3l1.5-1.5l0.2-1.3l0.6-1.1l0.2-2l0.1-2.9l-0.4-2.5l0.6-1.8
    l-0.3-0.6l1-1.4l-0.1-1.4l1.6-2.4l0.1-2.1l1.5-1.2l3.4,9.1l-0.4,1.5l0.4,1.2l1.1,0.8l1,0.4l1,0.2l0.6,0.5l0.9,0.4l0.5,0.3l0.9,1.4
    l-0.4,1.9l0.2,2.5l1.6,2.4l1,1l-0.5,1.6l-0.6,1.3l0.9,1.4l1,1.6l3.4,2.8l1.1,0.9l0.4,0.5l1.1,0.1l0.7,1.1l-0.4,1.1l0.9,2l0.5,1
    l0.3,3l0.5,0.3l1.3-1l0.5,0.9h1.5l-0.3,2.6l0.8,1l1.3,1.4l1.6,1.6l0.6,1.4l0.6,1.6l0.6,0.7l1.4-2.3l0.6,1.6l-0.6,1.8l-0.4,1.4
    l0.1,1.4v1.9l0.1,1.4l-0.3,1.1l0.3,1.9l0.1,1.9l-0.9,1.4l-0.7,0.5l0.1,2l-0.4,0.9l-1.4,3l-1.9,3.4l-0.3,1.4l-0.9,0.5l-2.1,1.6
    l-1.6,2l-1,1.8l-1.4,2.4l-1.6,3l-0.8,0.8l-0.6,0.4l-0.4,3.1l-0.8,1l-0.5,0.6l-1.1,0.3l-3.1-0.1l-1.8,0.5l-0.5,0.5l-1.2,0.4l-0.6,0.4
    l-0.6,1.2l-0.5,1.1l-1.8-1.5l-1.3-1.1l-0.9-0.4h-1l-1.5,0.5l-3.1-0.8l-1.9-0.4l-0.8-0.5l-1.1-0.1l-2-0.3l-0.4-0.6l-0.8-1.9l-0.4-1.2
    l-0.6-0.8l0.2-1l-0.1-0.9l-0.8-1.1l-1-1.4l-0.6-0.5l-1.4,0.5l0.6-2l0.3-0.8c0,0,0.5-0.6,0.1-0.8c-0.4-0.1-1-0.4-1-0.4l-1.1,0.9
    l-0.5,0.7l-0.5,0.3l1,0.8l0.5,1.4l-0.4,0.5h-1h-1.6l-0.9-0.6l0.5-0.9l0.6-0.5l-0.5-0.5v-0.5l0.1-0.6l1.1,0.1l0.8-1l0.1-2l0.6-1.5
    l-0.6-0.6l-1.3,1l-0.9,1.1l-1,1.3l-1.4,2.1l-1-0.8l-0.8-0.8l-0.9-2.6l-0.8-1.6l-2.1-1.4l-0.4-1.5l-1.7-0.9l-1.9-0.4l-1.3-0.1l-1-0.8
    l-1.5-1l-2.1,0.1h-2.4l-1.5,0.2l-1.3,0.5l-0.9,0.6l-0.6,0.9h-2.4l-1.1,0.1l-2.5,0.6l-1.3,0.6l-1.6,0.6l-1.6,1l-0.9,1.1l-1.5,1.6
    l-1,1.8l-6.1,0.9l-2.5,0.1l-1.6,0.1l-1.3,0.9l-2.1,2.3l-1.1,0.9l-2.1,0.3l-1.6,1l-1.1-0.2l-0.4-0.5l-0.6,0.6l-0.6-1.1l-1-0.6
    l-1.4-0.8l-0.8-1.3v-0.9l0.8-0.5l0.8-1.9l0.2-2.4l-0.6-2l-0.3-0.9l-1.6-1.5l-0.6-2l-1.3-2.6l-0.5-1.8l-0.5-1.9l-1.1-1.5l-1.1-0.5
    l-0.5-1.7l-1.4-1.9l-2-2.1l-0.8-1l0.5-0.6l0.6,1l0.6-1l1.3,0.6l0.5-0.4l-1.8-2.5l-0.5-1.1l-0.5-0.9v-1l0.4-1.5v-1.3l-0.3-2.3
    l0.3-1.5l0.5-1.3l0.7,1l0.9-0.7l2.1-1.6l1.4-1.5l1.3-1.3l1.4-1.3l1.1-0.5l0.8,0.4l1.1,0.2l3.3-2.1l2.5-1.9L-6812.6-7361.3z"/>
    <polygon fill="#A5E32A" points="-6780.8,-7393.4 -6778.3,-7391.5 -6777.7,-7392 -6777,-7392.7 -6777.2,-7393.5 -6779,-7393.9 "/>
    <polygon fill="#A5E32A" points="-6781.3,-7392.6 -6781.8,-7391.7 -6781.1,-7391.6 -6780.3,-7390.6 -6780.1,-7391.9 "/>
    <polygon fill="#A6CE39" stroke="#A6CE39" stroke-width="0.1973" points="-6738.7,-7291.9 -6735.5,-7290.1 -6733.9,-7290.1
    -6730.8,-7290.4 -6729.8,-7290.9 -6729,-7288.1 -6729.8,-7287 -6730.8,-7285.5 -6731,-7284.4 -6731.7,-7282 -6732.4,-7282.6
    -6733.2,-7282.4 -6734.5,-7281.5 -6735.4,-7281.2 -6736.8,-7282.7 -6738.4,-7285.6 -6738.9,-7288 "/>
    <path fill="#A5E32A" d="M-6812.6-7361.3l2.4-0.2l0.8-1l1.3-1.5l0.9-2.4l0.8-1.6l-0.4-1.1l0.5-2.3l2.4-2.1l1.6,2.3l0.5-0.5l-0.1-0.8
    l-0.6-1.4l0.5-0.6l0.6-0.4l1.1,0.4h0.8l0.7-0.9v-0.9l0.4-1.4l1.1-2l2.6-2.4l0.8-0.5h1h0.5l0.5-0.1l0.5-0.9l0.6-0.1l0.9,0.4l0.9,0.6
    l0.5,0.6l0.6,0.5l0.5,0.8l0.5,0.4l0.9,0.6h0.9l0.9-0.3l1.1-0.6l0.3-1.6l1-1.6l1.3-2l0.1-1.4l1.1-1.1l1.4-0.3l1.6-0.4l1.5-0.5
    l1.9-0.8l-0.4-0.6l-1-0.1l-0.6-0.6l-0.4-0.6l0.3-0.5l0.7-0.3h0.8l0.6,0.4l2.3,1l1.8,0.4l1.7,0.5l1.1,1.1l0.6-0.4l0.9,0.1l1.4,1
    l0.4-1.5l0.5-0.6l1-0.5l1.3-0.4l1-0.6l0.7-1l0.8,0.8l-0.4,0.8l-0.8,0.5l-0.4,0.5v0.8l0.7,0.3l0.9,0.6l0.4,0.5v0.9l-1.3,1.9l-0.9,1
    h-1.8l0.8,1.1l-0.3,1.1l-1.5,2.4l7.5,4.5l3.4,1.8l1.9,2.1l2.4,1.3l1.5-1.3l1.5-1.5l0.2-1.3l0.6-1.1l0.2-2l0.1-2.9l-0.4-2.5l0.6-1.8
    l-0.3-0.6l1-1.4l-0.1-1.4l1.6-2.4l0.1-2.1l1.5-1.2l3.4,9.1l-0.4,1.5l0.4,1.2l1.1,0.8l1,0.4l1,0.2l0.6,0.5l0.9,0.4l0.5,0.3l0.9,1.4
    l-0.4,1.9l0.2,2.5l1.6,2.4l1,1l-0.5,1.6l-0.6,1.3l0.9,1.4l1,1.6l3.4,2.8l1.1,0.9l0.4,0.5l1.1,0.1l0.7,1.1l-0.4,1.1l0.9,2l0.5,1
    l0.3,3l0.5,0.3l1.3-1l0.5,0.9h1.5l-0.3,2.6l0.8,1l1.3,1.4l1.6,1.6l0.6,1.4l0.6,1.6l0.6,0.7l1.4-2.3l0.6,1.6l-0.6,1.8l-0.4,1.4
    l0.1,1.4v1.9l0.1,1.4l-0.3,1.1l0.3,1.9l0.1,1.9l-0.9,1.4l-0.7,0.5l0.1,2l-0.4,0.9l-1.4,3l-1.9,3.4l-0.3,1.4l-0.9,0.5l-2.1,1.6
    l-1.6,2l-1,1.8l-1.4,2.4l-1.6,3l-0.8,0.8l-0.6,0.4l-0.4,3.1l-0.8,1l-0.5,0.6l-1.1,0.3l-3.1-0.1l-1.8,0.5l-0.5,0.5l-1.2,0.4l-0.6,0.4
    l-0.6,1.2l-0.5,1.1l-1.8-1.5l-1.3-1.1l-0.9-0.4h-1l-1.5,0.5l-3.1-0.8l-1.9-0.4l-0.8-0.5l-1.1-0.1l-2-0.3l-0.4-0.6l-0.8-1.9l-0.4-1.2
    l-0.6-0.8l0.2-1l-0.1-0.9l-0.8-1.1l-1-1.4l-0.6-0.5l-1.4,0.5l0.6-2l0.3-0.8c0,0,0.5-0.6,0.1-0.8c-0.4-0.1-1-0.4-1-0.4l-1.1,0.9
    l-0.5,0.7l-0.5,0.3l1,0.8l0.5,1.4l-0.4,0.5h-1h-1.6l-0.9-0.6l0.5-0.9l0.6-0.5l-0.5-0.5v-0.5l0.1-0.6l1.1,0.1l0.8-1l0.1-2l0.6-1.5
    l-0.6-0.6l-1.3,1l-0.9,1.1l-1,1.3l-1.4,2.1l-1-0.8l-0.8-0.8l-0.9-2.6l-0.8-1.6l-2.1-1.4l-0.4-1.5l-1.7-0.9l-1.9-0.4l-1.3-0.1l-1-0.8
    l-1.5-1l-2.1,0.1h-2.4l-1.5,0.2l-1.3,0.5l-0.9,0.6l-0.6,0.9h-2.4l-1.1,0.1l-2.5,0.6l-1.3,0.6l-1.6,0.6l-1.6,1l-0.9,1.1l-1.5,1.6
    l-1,1.8l-6.1,0.9l-2.5,0.1l-1.6,0.1l-1.3,0.9l-2.1,2.3l-1.1,0.9l-2.1,0.3l-1.6,1l-1.1-0.2l-0.4-0.5l-0.6,0.6l-0.6-1.1l-1-0.6
    l-1.4-0.8l-0.8-1.3v-0.9l0.8-0.5l0.8-1.9l0.2-2.4l-0.6-2l-0.3-0.9l-1.6-1.5l-0.6-2l-1.3-2.6l-0.5-1.8l-0.5-1.9l-1.1-1.5l-1.1-0.5
    l-0.5-1.7l-1.4-1.9l-2-2.1l-0.8-1l0.5-0.6l0.6,1l0.6-1l1.3,0.6l0.5-0.4l-1.8-2.5l-0.5-1.1l-0.5-0.9v-1l0.4-1.5v-1.3l-0.3-2.3
    l0.3-1.5l0.5-1.3l0.7,1l0.9-0.7l2.1-1.6l1.4-1.5l1.3-1.3l1.4-1.3l1.1-0.5l0.8,0.4l1.1,0.2l3.3-2.1l2.5-1.9L-6812.6-7361.3z"/>
    <polygon fill="#A5E32A" points="-6780.8,-7393.4 -6778.3,-7391.5 -6777.7,-7392 -6777,-7392.7 -6777.2,-7393.5 -6779,-7393.9 "/>
    <polygon fill="#A5E32A" points="-6781.3,-7392.6 -6781.8,-7391.7 -6781.1,-7391.6 -6780.3,-7390.6 -6780.1,-7391.9 "/>
    <polygon fill="#A5E32A" points="-6738.7,-7291.9 -6735.5,-7290.1 -6733.9,-7290.1 -6730.8,-7290.4 -6729.8,-7290.9 -6729,-7288.1
    -6729.8,-7287 -6730.8,-7285.5 -6731,-7284.4 -6731.7,-7282 -6732.4,-7282.6 -6733.2,-7282.4 -6734.5,-7281.5 -6735.4,-7281.2
    -6736.8,-7282.7 -6738.4,-7285.6 -6738.9,-7288 "/>
    <path fill="#A5E32A" fill-opacity="0.2" d="M-6734.8-7323.3c0,16.6-13.5,30.1-30.1,30.1c-16.6,0-30.1-13.5-30.1-30.1
    c0-16.6,13.5-30.1,30.1-30.1C-6748.3-7353.4-6734.8-7339.9-6734.8-7323.3z"/>
    <g>
    <path fill="#FFFFFF" d="M-6798.2-7355.1h-2.1l2.4-12.8h2.7l2.4,12.8h-2.1l-0.4-2.8h-2.4L-6798.2-7355.1z M-6797.5-7359.8h1.8
    l-0.9-5.5h0L-6797.5-7359.8z"/>
    <path fill="#FFFFFF" d="M-6791.6-7367.9h2.2v9.7c0,0.9,0.4,1.4,1.2,1.4c0.8,0,1.2-0.5,1.2-1.4v-9.7h2.2v9.6c0,2.2-1.3,3.4-3.4,3.4
    s-3.4-1.2-3.4-3.4V-7367.9z"/>
    <path fill="#FFFFFF" d="M-6778.7-7364.7c-0.1-1.1-0.7-1.4-1.2-1.4c-0.7,0-1.1,0.5-1.1,1.3c0,2.2,4.5,3.2,4.5,6.7
    c0,2.1-1.4,3.3-3.5,3.3c-2,0-3.2-1.6-3.3-3.6l2.1-0.3c0.1,1.3,0.6,1.9,1.3,1.9c0.8,0,1.3-0.4,1.3-1.2c0-2.5-4.5-3.2-4.5-6.9
    c0-2,1.2-3.2,3.4-3.2c1.8,0,2.9,1.3,3.1,3.1L-6778.7-7364.7z"/>
    <path fill="#FFFFFF" d="M-6773.6-7366h-2.1v-1.9h6.5v1.9h-2.1v10.9h-2.2V-7366z"/>
    <path fill="#FFFFFF" d="M-6765.8-7355.1h-2.2v-12.8h3.1c2.5,0,3.7,1,3.7,3.8c0,2.1-0.8,2.9-1.5,3.2l1.9,5.8h-2.2l-1.6-5.3
    c-0.3,0-0.7,0.1-1.1,0.1V-7355.1z M-6765.8-7362.1h0.8c1.2,0,1.6-0.4,1.6-2c0-1.5-0.4-2-1.6-2h-0.8V-7362.1z"/>
    <path fill="#FFFFFF" d="M-6757.8-7355.1h-2.1l2.4-12.8h2.7l2.4,12.8h-2.1l-0.4-2.8h-2.4L-6757.8-7355.1z M-6757.1-7359.8h1.8
    l-0.9-5.5h0L-6757.1-7359.8z"/>
    <path fill="#FFFFFF" d="M-6751.3-7355.1v-12.8h2.2v10.9h3.5v1.9H-6751.3z"/>
    <path fill="#FFFFFF" d="M-6744-7355.1v-12.8h2.2v12.8H-6744z"/>
    <path fill="#FFFFFF" d="M-6738.1-7355.1h-2.1l2.4-12.8h2.7l2.4,12.8h-2.1l-0.4-2.8h-2.4L-6738.1-7355.1z M-6737.4-7359.8h1.8
    l-0.9-5.5h0L-6737.4-7359.8z"/>
    </g>
    <line fill="none" stroke="#C0F90D" x1="-6831.7" y1="-7299.6" x2="-6793.4" y2="-7312.4"/>
    <polygon fill="#FFFFFF" stroke="#A5E32A" stroke-width="0.5" points="-6784.8,-7321.5 -6783.4,-7321.5 -6781.4,-7323
    -6779.6,-7323.4 -6778,-7323.4 -6775.1,-7323.5 -6774.4,-7323.3 -6773.7,-7322.8 -6773.1,-7322.3 -6770.5,-7322 -6767.4,-7321.3
    -6767.1,-7320.9 -6766.7,-7319.7 -6766.7,-7319 -6766.1,-7318.7 -6764.7,-7317.3 -6764.1,-7316.3 -6763.6,-7313.9 -6762.7,-7312.8
    -6761.6,-7312 -6761,-7311.8 -6760.8,-7312.3 -6760,-7313.3 -6758.5,-7315.5 -6757.2,-7316.8 -6756.6,-7317 -6756.5,-7316.4
    -6756.6,-7316 -6756.8,-7315.1 -6757,-7314 -6757.2,-7313.4 -6757.8,-7313 -6758.4,-7312.9 -6758.5,-7312.3 -6759.1,-7311.6
    -6759,-7310.9 -6759.7,-7309.2 -6759.5,-7308.8 -6758.8,-7308.7 -6757.8,-7308.6 -6756.4,-7308.6 -6755.8,-7309.1 -6755.9,-7309.7
    -6756.6,-7310.6 -6757.1,-7310.8 -6757.4,-7311.1 -6757.9,-7311.5 -6757.2,-7311.5 -6756.4,-7311.7 -6755.7,-7312.1 -6755,-7312.6
    -6754.6,-7313.2 -6754,-7312.5 -6754.4,-7312.1 -6754.7,-7311.5 -6755,-7310.9 -6755.2,-7309.3 -6754.9,-7309.3 -6754,-7309.4
    -6753.4,-7309.8 -6752.7,-7308.5 -6752.2,-7308 -6751.5,-7307.1 -6751.2,-7306.6 -6751.5,-7305.4 -6751.4,-7304.9 -6750.8,-7304.1
    -6750.7,-7303.3 -6750.3,-7302.4 -6749.5,-7301.3 -6749.1,-7300.6 -6748.1,-7300.3 -6747.5,-7300.2 -6747.5,-7342.7
    -6784.8,-7342.9 "/>
    <circle fill="none" stroke="#C0F90D" cx="-6866.1" cy="-7283.2" r="38"/>
    <path fill="none" stroke="#C0F90D" d="M-6734.8-7323.3c0,16.6-13.5,30.1-30.1,30.1c-16.6,0-30.1-13.5-30.1-30.1
    c0-16.6,13.5-30.1,30.1-30.1C-6748.3-7353.4-6734.8-7339.9-6734.8-7323.3z"/>
    </svg>
    Thanks in advance.

    Homer...this very same thing has happened to me today. Have you found a solution yet?

  • I am using illustrator CS5. How can I create a svg file with rollover to show one more layer?

    Actually i used illustrator to draw a map, I want to rollover a selected area to show one more layer within the same SVG which include information about that area.

    I don't need to change "name" to "europe", etc in js? and just use the 2 paragraphs that you advice?
    And yes, thanks for reminding to remove "s_x5F" from s_china.
    I run the code below but nothing happen...
    <?xml version="1.0" encoding="utf-8"?>
    <!-- Generator: Adobe Illustrator 15.0.2, SVG Export Plug-In . SVG Version: 6.00 Build 0)  -->
    <!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
    <svg version="1.1" id="map_1_" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
      width="740px" height="490px" viewBox="0 0 740 490" style="enable-background:new 0 0 740 490;" xml:space="preserve">
    <style type="text/css">
    <![CDATA[
      .st0{display:inline;fill:none;stroke:#0591CC;stroke-miterlimit:10;}
      .st1{opacity:0.4;fill:#0591CC;enable-background:new    ;}
      .st3{display:inline;fill:#323232;}
      .st4{display:inline;fill:#333332;}
      .st6{display:inline;fill:#0591CC;}
      .st7{fill:#6CA843;}
      .st8{font-size:14;}
      .st9{font-size:18;}
      .st10{display:none;}
      .st11{display:inline;fill:none;stroke:#FFFFFF;stroke-miterlimit:10;}
      .st12{display:inline;opacity:0.4;fill:#0591CC;enable-background:new    ;}
    ]]>
    </style>
    <defs>
      <script  xlink:href="global.js"  language="JavaScript">
      </script>
    </defs>
    <g id="Map">
      <polygon class="st7" points="453.388,293.277 451.714,293.759 451.951,294.734 450.87,298.133 451.714,301.406 450.271,305.172
      451.894,307.146 454.59,308.93 457.621,307.239 459.144,306.384 459.742,300.802 455.993,296.357 "/>
      <polygon class="st7" points="213.404,177.038 213.79,173.275 209.989,172.671 206.362,173.367 207.498,175.74 211.517,178.643 "/>
      <path class="st7" d="M337.372,391.073l-2.397-6.431h-1.08l-1.196,4.729l-1.078,0.485c0,0-1.613,7.058-2.396,7.039
      c-0.783-0.019-10.909,4.365-10.909,4.365l-3.546,4.852l0.069,3.888l-0.342,2.229c0,0,1.242,5.519,1.302,5.655
      c0.058,0.142-5.514,8.979-5.514,8.979l0.695,7.844l3.378,8.176l4.317,0.605l3.354-3.521l2.639,0.367l1.438-2.062l12.579-28.271
      l-4.792-5.224l0.84-4.122l2.88,2.063l1.438-0.607v-1.456l-1.2-1.697L337.372,391.073z"/>
      <polygon class="st7" points="133.252,16.032 131.931,16.333 130.616,16.639 130.135,17.488 131.216,18.581 133.854,16.64 "/>
      <polygon class="st7" points="174.366,166.847 172.925,167.696 173.87,169.137 174.919,167.923 "/>
      <polygon class="st7" points="192.464,167.09 195.099,165.995 195.34,163.934 193.06,161.02 191.383,162.718 "/>
      <path class="st7" d="M194.5,153.743h-2.277l-0.6,2.306l2.039,0.847C193.662,156.896,194.615,154.535,194.5,153.743z"/>
      <polygon class="st7" points="116.592,64.079 122.573,62.787 128.94,61.411 132.414,57.889 132.414,56.194 133.495,53.28
      130.136,50.368 126.9,52.066 124.865,51.583 120.909,53.28 118.629,50.976 115.965,53.588 114.793,54.736 113.356,53.887
      114.316,52.433 112.279,50.367 110.838,51.217 108.803,54.129 107.124,54.493 106.764,55.585 108.202,56.797 107.124,58.499
      108.56,59.954 108.202,62.865 "/>
      <path class="st7" d="M512.108,264.098l3.176,6.816l2.316,6.116l1.351,4.233l-0.135,2.053l-0.342,5.229l1.437,1.455l-1.799,8.131
      l0.839,1.216l2.639,0.241l5.153,5.822l0.313,1.582l1.966,9.828l8.985,8.975l2.876-0.241l0.601-1.216l-0.957-1.938l-0.121-5.174
      l-0.02-0.981l-0.104-4.399l-2.637-1.455l-1.347-2.334l-0.646-1.115l-1.724-2.983l-4.334-1.847l-1.658-0.702l-0.598-4.976
      l-4.557-4.129l-0.148-3.848l2.064-2.215l-0.211-6.268l-0.192-5.521l-0.074-2.169l0.837-1.459l1.439,0.243l1.68,6.432l6.111,1.457
      l1.918,4.129l6.712,4.366l0.274,3.364l0.8,4.146l0.604,1.714l1.678-0.482l4.077-6.797l2.875-0.85l4.076-6.438l-0.878-13.567
      l-0.325-3.298l-2.873-1.698l-2.214-2.177l-5.817-5.712l-3.474-6.429l1.788-9.192l1.686-3.913l6.354-0.605v2.912l3.354,5.279
      l0.598-0.911l-0.236-4.853l6.83-3.276l2.638-3.52l1.438,0.974l1.201-0.974h5.152l2.037-3.397c0.133-0.216,2.877-2.063,2.877-2.063
      l1.078-3.518l2.035-1.457l2.039-3.517l-1.653-4.73l3.69-9.224l-1.438-1.455v-2.065l-5.277-4l2.639-2.063
      c0,0,0.124-1.451-0.236-1.819c-0.364-0.372-2.877-1.7-2.877-1.7v-3.155c0,0-4.047-6.114-4.075-6.187
      c-0.03-0.07-3.476-2.307-3.476-2.307s-2.26-5.316-2.279-5.58c-0.02-0.267,1.626-5.334,1.681-5.46
      c0.052-0.127,2.876-1.82,2.876-1.82l-1.077-1.943l-6.114-1.211l-1.917,0.85l-8.149-1.455l-1.679-1.7c0,0-0.054-3.16,0-3.276
      c0.052-0.117,5.989-3.761,5.989-3.761l1.806-3.76l3.95,1.697v5.336h0.962l2.873-2.908l2.521-0.971l2.753,1.03l2.757,1.032
      l-0.599,4.975l1.2,1.454l5.993,1.214l0.84,3.761l1.796,2.064l0.239,4.002l4.075,5.218l1.92-0.484l2.873-4.733v-6.673l-3.354-4.974
      l-3.837-2.061l-3.113-4.371V141.49l1.676-1.093l2.4-3.885l4.791,2.063l3.479-2.912l1.436-9.342l-3.115-18.929L579.957,87.98
      l-6.592-1.819l-2.877,2.914l-0.838-0.608V86.77h-2.275l-1.201-1.698l-2.639-0.367l-0.837-1.698l1.798-1.821l0.479-1.695
      l-0.84-14.319l1.198-0.85l15.821-0.604V61.17l3.118-0.608l3.233,3.157l7.188-1.457l1.918-1.7l-2.515-2.671v-9.218l4.553,3.395
      l3.236,0.368v-1.458l-2.397-4.368l0.36-2.306l1.44,0.484l1.074,3.278l4.674,3.759l0.604,11.407l-2.039,4.85l4.557,5.583l4.199,3.17
      l8.504,7.264l3.941,2.595l3.85,3.594l4.557,1.698l-1.682-7.521l0.839-0.607V82.16l-3.714-1.454v-3.52l2.519-0.85l-0.238-1.213
      l-4.316-3.155l0.24-3.885l-3.715-0.847l-9.473-9.585l-0.6-5.583l2.638,1.214l1.439-2.912l1.679-0.604l3.477,1.454l3.957-0.241
      v-6.674l2.875-4.368l4.075-0.362l0.233-2.062l-4.79-1.095l-4.077-3.274l-6.949-1.7l-1.078-2.303h2.277l0.235-1.217l-1.914-2.912
      l1.439-0.849l5.393,1.7l3.716-1.454l2.396,1.211l6.233,0.608l1.436-1.217l-3.115-2.303l0.237-0.852l-1.077-2.304l-2.277,0.487
      c0,0-3.821-2.207-4.312-2.307c-0.496-0.099-4.677,0-4.677,0l-0.602,1.819l-5.925-3.385l-37.701-3.044l-1.201,1.09l4.913,4.975
      l-0.835,0.608l-3.476-0.608l-3.479-2.062l-12.345-1.091l-7.794,2.91l-0.835-1.455c-0.139-0.251-6.354-3.336-6.354-4.125
      c0-0.789-21.812,0.849-21.812,0.849l-4.08-2.546l-6.592-0.608l-1.198,3.154l-3.714-1.454l-0.238-1.943h-12.706v1.943l1.681,0.97
      l0.598,2.55l-0.84,0.603l-3.718-0.603L494.5,17.73l-4.559-0.243l-0.235,2.062l-13.544-4.125l-2.64-3.76l-12.943-0.852v2.308h-2.517
      l-5.276,1.09l-3.951-2.306l-10.067-1.455l-1.438,2.307l-1.195-0.487l-0.239-1.456l-1.443-0.606l-1.194,0.606l-3.731-1.152
      l0.254,3.701l-5.377,1.76l-4.896,0.378l-0.869-0.924l4.555-0.365l6.949-6.915l-3.473-2.062l0.835-1.455l-0.598-1.459l-3.118-1.695
      l-11.51,2.305l-3.474-1.821l-0.603-1.093l-4.727,0.321l-1.271,0.527l0.24,2.669l-0.838,1.095l-10.908,1.454l-1.677-1.454
      l-14.146,4.73l-5.149,6.31l-4.916,1.211l0.538,5.433l8.934,1.848l3.476,4.978l-0.838,1.7l-1.802-0.611l-1.677-2.911l-8.029-4.001
      l-3.717-0.608l-1.797,2.668l1.438,1.7l0.357,1.214l-3.234,0.241l-2.877-5.823l-1.68-0.605l-1.8,2.667v1.458l2.041,2.304
      l4.912,7.039l5.158-0.365l5.511,3.761l-0.358,1.216h-1.438l-4.316-2.67l-1.918,1.454l1.438,2.428l-0.358,4.004l-4.556,1.213
      l1.078,3.518l-3.718,0.242l-4.911-1.453V47.46l6.71-1.7l0.841-1.211l0.239-4.974l-2.518-2.062l-6.952-8.98l-2.038-6.429
      l-1.677-1.457l-3.237,0.604l-4.558-0.604l0.104,2.707l0.142,3.724l-2.279,1.214v1.092l1.438,1.458l2.036,4.365h1.68l5.752,4.369
      l-0.837,1.819l-6.595-2.672h-3.477l-0.84-1.21l-8.389-1.941h-2.873l1.797,3.396l-1.439,2.911h-1.438l-1.198-2.303l-1.438-0.853
      l-1.078,0.853l-6.354,0.849v1.819l-2.036,2.306l-1.678-0.605l0.84-2.549l-0.84-0.608l-4.072,1.457h-4.079l-3.716,1.455
      l-2.031,4.611l-2.877,0.608l-3.118-2.307l1.196-3.52l-1.196-2.062l-6.354-1.698l-0.237,1.455l1.438,1.697l1.077,4.128
      c0,0,4.781,6.755,4.913,6.429c0.133-0.32-0.6,1.7-0.6,1.7h-1.077l-4.313-3.154h-3.477l-3.72,3.154l4.916,4.609v1.822l-11.268-4.733
      l-1.198,1.214l3.236,5.582l-2.038,1.089l-4.913-3.151l-0.242-4.125l-7.79-7.128l9.467,3.121h5.519l4.555-2.911l-0.241-3.518
      l-11.507-6.188c0,0-8.496-0.789-9.467-1.093l-3.237-2.303l-2.799,0.204l-3.796,0.28l-2.038-0.85l2.638-2.062v-1.943l-1.646-0.205
      l-3.507,0.691l-1.802-3.397l-2.038,0.483l-0.24,1.822l-2.878,1.697h-2.634l-1.078,1.457l-4.913,0.365l-0.602,3.151l-4.912,0.608
      l-0.838,2.063l-3.479,0.849l-0.479,2.547l-1.581,0.802l-8.483,6.478l-0.602,2.671l-7.785,7.887l0.84,2.062l-7.793,2.307
      l-0.479,1.697l-3.838,1.214l-0.479,1.697l4.794,2.063l-1.68,2.062l1.201,1.698l-2.878,2.67l0.241,2.306v3.761l2.878,0.849
      l7.19-2.912l1.197-2.913l3.116,4.128l2.277,10.802L206,99.026l3.231-0.849V96.96l4.794-1.454l0.358-4.857l0.125-1.672l0.116-1.6
      l5.754-5.218v-4.125l-3.118-1.698l-0.354-5.786l1.191-3.921l7.19-3.152l1.68-4.612l5.508-4.368l2.278,0.852l2.638,3.154
      l-2.04,2.061l-1.479,0.569l-4.511,1.736l-2.872,2.304l0.152,1.843l0.092,1.079l0.521,6.203l0.672,2.889l3.71,0.241l1.437,2.064
      l12.949-2.064l2.31,0.739l2.25,0.717l0.838,1.457l-3.958,0.365l-2.637,1.092l-9.475,1.211l-1.197,1.698l0.958,1.457l1.44,0.608
      l1.438,2.062l-0.957,2.912l-1.682,0.605l-5.148-2.912l-1.795,1.454l2.162,7.011l0.232,0.756l-1.198,1.214l-2.275,0.606
      l-2.879,2.549l-5.15-1.698l-8.629,4.122l-3.237,0.244l-1.436-2.303h-1.08l-2.037,1.454l-3.711,0.849l-3.836-2.062v-3.517
      l1.799-0.244v-1.697l2.273-2.43l-2.034-5.459l-4.558,1.095l-1.798,3.883l1.199,1.94l-0.068,1.628l-0.172,4.195l1.438,1.214
      l-0.599,2.303l-2.767,0.588l-5.862,1.231v4.004l-1.198,0.365l-2.277-1.455l-1.677,1.09l-2.639,5.826l-1.198-0.85l-3.957,0.606
      v3.154l-3.326,2.813l-1.828,1.92l-1.799,0.241l-3.472-2.304l-1.683,0.24v2.019l-0.835,2.109l-3.292-0.698l-2.464-0.518
      l-1.798,1.216l8.15,5.215l3.116,8.494l-4.555,8.129l-3.835,0.605l-1.682-1.211l-8.866-0.244l-2.877-1.822l-6.112,3.522l1.126,5.474
      l0.312,1.807l-3.115,11.038l1.081,2.671l-0.84,1.697l0.84,2.306c0,0,6.817,1.571,6.95,0.972l2.037,3.154l13.784-0.849l8.628-9.586
      l-1.197-3.52l2.036-4.123l8.991-5.464l2.519-6.428l10.067,1.698l2.039-2.304l4.313-2.671l2.876,1.457l0.237,4.368l7.79,4.366
      l11.263,9.1l-0.148,6.128l1.828,0.304l2.278-4.126l-1.077-3.518l1.077-1.095l4.911,1.943l0.363-0.849l-1.441-1.697l-6.351-4.371
      l-0.839-2.063l-7.548-3.151l-0.604-3.883l-4.553-4.006l-0.597-2.911l2.033-2.062l2.639,1.457l2.007,2.031l4.158,3.463l5.046,3.079
      l5.443,3.315l1.681,2.425l1.199,5.221l2.875,5.823l3.712,0.849v1.214l3.626,1.85l-2.785,1.548l0.356,3.883l0.843,1.092h2.877
      l0.841-6.066l2.483-0.546l-1.587-2.974l-1.439-5.43l2.809,0.932l0.898-0.042c0,0-1.676-3.057-1.726-3.345h3.715l2.037-1.7
      l4.316,3.763l3.929-1.3l3.025-1.006v1.943l-3.476,1.573l-2.64,0.246l-1.08,2.061l1.682,1.457l-1.201,3.519l2.878,1.701
      l-0.841,1.695l2.64,1.821l1.44,2.912l2.275-1.214l3.475,1.821l2.878-2.67l1.679-0.606l4.075,3.276h2.276l4.557-2.67l6.107,0.849
      l-1.229,2.753l-1.645,3.676l1.077,3.763l-1.077,4.369l-0.84,6.671l-1.691,1.944c-1.892,0.129-4.563,0.342-4.658,0.483
      c-0.153,0.22-4.074-1.822-4.074-1.822s-9.989,2.982-10.068,3.279c-0.084,0.295-2.576-0.9-2.576-0.9l-8.334-0.921l-2.879-2.063
      h-3.116l-5.277-3.395l-6.83,1.092l-2.635,2.061l1.798,4.368l-2.396,1.457l-10.549-2.671l-6.351-6.063l-6.353-0.852l-7.785-6.432
      l1.798-2.668l0.243-3.419l0.235-3.256l0.358-2.546l-4.078-0.363l-11.146,0.363l-4.074,2.306l-3.712-1.214l-12.109,2.668
      l-5.511,3.521l-4.558,0.852l-2.638-1.457l-4.312,1.09l-3.118-1.939l-2.638,0.241l-4.792,7.521l-8.391,6.19l-1.198,2.547l1.198,6.19
      l-6.951,8.37l-5.021,1.964l-1.811,0.706l-1.173,2.104l-1.862,2.216l-3.917,4.658l0.357,2.426l-3.836,4.371l0.963,2.91l-3.536,3.238
      l-2.814,2.583l-1.44,4.003l0.928,1.001l2.85-1.241l-0.062,2.307l-2.036,7.279l2.277,4.976l-2.04,5.537l-2.756,9.264l2.877,2.673
      l-0.225,2.899l-0.136,1.711l6.114,1.822v2.305l1.678,2.062l-0.601,2.307l6.112,7.283l0.84,4.365l4.555,2.913l2.037,3.765
      l9.229,6.672l4.554,1.219l9.467-3.279l8.152,0.604l2.047-0.348l7.838-2.406l7.172-1.75l3.917-0.955l5.754,1.941l2.276,3.883
      l2.877,2.311l1.802-0.207l5.629-0.646l3.836,4.367l0.839,4.369l-0.69,1.906l-1.241,3.43l-0.706,1.947l0.359,3.395l-1.797,0.971
      l-0.239,1.941l1.081,0.365v2.061l8.389,10.68l1.646,2.854l2.904,5.03l-0.839,2.912l2.037,7.035v5.219l1.438,3.517l0.602,4.368
      l-6.111,11.046l-1.083,10.799l0.678,6.664l0.404,2.069l4.072,5.457l0.749,2.479l0.928,3.104l2.398,4.975l0.241,5.221l2.032,5.576
      l0.185,2.729l0.416,6.252l1.081,4.975l3.714,2.914l1.124,3.412l3.552,10.783v7.277l6.83,4.129l2.396-2.066l12.587-0.604
      l4.915-3.398h4.315l3.869-2.281l4.163-2.451l2.429-2.816l5.878-6.826l5.479-6.373l1.437-3.517l-0.838-4.854l2.035-3.881
      l8.633-4.609l-0.47-7.631l-0.369-6.076l-1.198-4.612l7.189-9.099c0,0,7.316-2.354,8.027-2.916s7.793-7.521,7.793-7.521
      l-1.079-6.069l0.438-11.112l0.045-1.142l-2.83-6.106l-1.725-6.996l0.838-4.366l-2.875-3.765l2.037-7.64l7.188-8.979l2.036-4.73
      h1.081l10.071-12.498l4.07-1.457l10.904-15.408l2.279-7.523l2.876-2.91l1.196-4.735l3.117-4.366l-2.274-2.31l-0.239-3.759
      l-1.8-0.364l-3.116,2.429l-5.754,0.853l-4.312,2.907l-10.311,1.095l-3.46-2.047l-2.293-1.354l2.58,1.389l0.537-3.814l-0.663-2.411
      l-0.536-1.955l-7.434-9.589l-5.989-2.913l-3.128-8.665c0,0-5.77-7.417-5.863-7.958s-0.838-6.675-0.838-6.675l-1.77-3.287
      l-1.945-3.625l-8.03-13.711l-4.933-12.029l0.105-1.211l3.628,3.049l1.676-2.668l1.802,4.729l8.866,8.738l0.359,6.912l5.992,3.278
      l1.197,3.155l-0.599,2.666l2.517,6.92l6.11,4.729l6.835,15.045l-1.018,1.382l1.612,2.504l0.359,3.764l2.305,3.202l3.093,2.016
      l5.753-3.519l10.829-1.465l3.312-4.363l8.631-3.762l0.837-2.668l2.984-0.945l6.244-1.967l3.72-4.854l5.511-4.977v-5.58l4.797-5.825
      l0.602-3.517l-4.914-3.764l-4.796-0.24l-4.315-4.369v-6.672l-1.798-0.607l-5.989,9.342l-1.8-0.364l-4.797,1.21l-2.396-2.303v-2.911
      l-1.677-2.425l-0.842,2.668l-1.438-0.852l-0.363-1.095l-1.677-5.093l-8.026-7.523l-1.8-4.123l4.075-1.94h3.716l3.235,2.911
      l-0.36,1.092l2.278,4.369l3.476,1.818l3.717,3.155l6.354,0.85l2.273-2.063l3.234-0.849l3.12,1.455l2.637,5.22l12.581,2.425
      l1.441-1.212l9.826,0.604l4.558-1.215l3.231,0.853l-0.355,2.426l5.273,5.22l2.515-0.608l0.36,2.67l2.271,0.35l2.283,1.349
      l-0.599,1.214l-1.684,0.243v1.455l2.878,3.76l3.715,1.454l3.479-0.603l0.235-6.31l2.04-2.062l0.842,1.093l-0.603,3.879l2.396,6.92
      l0.842,11.038l5.752,10.557l1.987,6.568l8.68,14.427l-0.96,1.697l2.636,6.435l3.719,0.607l3.716-4.37l-0.84-1.457l2.277-4.368
      l0.355-3.886l2.519-8.127l-1.916-7.892l10.907-12.5l3.476-6.672l5.755-5.58v-3.763l3.526-3.161l-0.042-1.999l0.83,0.033l0.84,2.58
      l2.876-0.365l2.036-2.974l1.92-2.483l5.272,3.76l0.479,5.218l1.858,2.27l1.021,1.247l3.206,2.291l2.064,1.471l2.097,5.019
      l1.858,3.11l0.451,3.562l0.39,3.107l1.795,0.609l1.784-1.972l2.173-2.397l2.877,0.852L512.108,264.098z M239.227,160.717
      l-2.185,0.303l3.994-0.592L239.227,160.717z M240.65,88.67l-2.629,0.162l8.25-0.85L240.65,88.67z M211.378,284.071l-1.063-1.544
      l-1.758-1.758c0.082-0.183-1.1-1.354-1.022-1.537l-0.258-0.203c-0.207-0.414,0.082-0.769,0.439-0.869
      c0.43-0.125,0.896-0.041,1.358-0.041c-0.262,0.604,1.313,0.58,0.453,1.383c1.911,0.377,2.466,2.512,4.244,3.378L211.378,284.071z
      M275.327,375.216c0,0.06-0.007,0.125,0,0.185c-0.013-0.067-0.007-0.157-0.007-0.219l-1.438-0.517l-1.345-1.185l-0.911-1.272
      l-0.486-1.771l-0.141-0.916l-1.121-0.5l-0.275-0.84l-1.114-1.346l-0.976-1.695l-0.215-1.561l-1.048-0.141l-0.765-0.701l0.067-1.201
      l0.561-1.35l-0.073-1.342c0,0-0.485-1.91-0.485-2.117c0-0.213,0.438-1.199,0.438-1.199l0.75,0.213l0.83,0.912l0.829,1.256
      l0.775,2.104l0.058,1.484c0,0,0.644,1.094,0.717,1.305c0.071,0.213,0.42,0.494,0.42,0.494s0.273,0.781,0.273,1.129
      c0,0.359-0.486,0.287-0.486,0.287s0.282,0.988,0.422,1.344c0.139,0.356,0.487,0.92,0.487,0.92h0.905l0.348,0.354l0.913,1.484
      l0.277,0.775l-0.562,0.492v0.775l1.188,1.348c0,0,0.493,1.273,0.7,1.48c0.207,0.215,0.555,0.846,0.555,0.846L275.327,375.216z
      M286.565,382.95c0.066,0.28,0.208,1.268,0.142,1.479c-0.073,0.207,0.764,1.269,0.764,1.269v1.133l0.115,0.647l-0.01-0.013
      l0.312,2.189l0.492,2.26l-0.071,1.272c0,0-0.701,1.203-0.77,1.414c-0.071,0.209,0.066,1.276,0.066,1.276l1.189,2.115l1.117,1.269
      c0,0,0.903,0.28,1.112,0.28c0.211,0,0.696,0.707,0.696,0.707l-0.102,0.459l-0.948-0.239l-0.903-0.22l-0.345,0.285l-0.771-0.144
      l-0.559-0.916l-0.421-0.142l-0.138,0.283l-0.628,0.062l-0.487-1.19l-0.842-2.896l-0.274-1.413l-0.492-1.134l0.28-0.707l0.632-0.637
      l-0.632-5.295v-1.56l-0.345-0.279l-0.417-1.131l-0.215-1.623v-0.852h0.694l1.255,0.635
      C286.071,381.604,286.489,382.663,286.565,382.95z M276.862,337.864l1.257-1.767l1.047-1.058l0.484,0.28l0.495,0.916h0.691
      l1.262,0.216l1.531,0.641c0,0,1.073,0.777,1.351,1.136c0.283,0.351,0.396,1.051,0.396,1.407c0,0.349-0.279,0.914-0.279,0.914
      l-1.06,0.033c0,0,0.084,0.017,0.066,0.121c-0.062,0.278-0.192,0.836-0.192,1.188c0,0.489-0.626,1.125-0.771,1.483
      c-0.14,0.354-0.346,0.424-0.346,0.424l-0.979-0.069l-0.487,0.845l-0.908-0.066h-0.695l0.276,0.488l0.979,0.142l0.979,0.354
      l0.766-0.354l0.771-0.142l0.629,0.496l0.07,0.639H283l-0.901,0.22l-0.913-0.22l-1.253,0.354l-0.979-0.135l-0.274-0.646
      l-0.632-0.418c0,0-0.069,1.062-0.069,1.27c0,0.211,0.069,0.777,0.069,0.984c0,0.217-0.555,0.645-0.555,0.645l-0.699-0.074
      l0.135-0.568v-0.775c0,0-0.345-0.354-0.276-0.635c0.071-0.283-0.212-1.836-0.212-1.836l-0.344-0.428v-1.197l-0.397-0.855
      l0.604-0.633v-0.984l-0.134-1.27L276.862,337.864z M345.187,176.979l-0.835,0.212l-0.348,0.496l-0.485,0.144l-1.334,0.421
      l-0.974,0.919l-0.767,0.07l-1.534,0.709l-0.907,0.422h-0.488l-0.632-0.422l-1.673,0.14l-1.188-0.281l-0.561-0.425h-2.72
      l-1.257-0.919l-0.068-1.273l0.632-1.413l0.414-1.27l0.066-1.556l0.493-0.92l-0.562-0.775l-0.348-1.413l0.348-1.059l0.279-1.131
      l-0.139-0.847l-0.282-0.709l0.07-0.921l0.491-0.138l0.764-0.354l0.212-0.706l-0.275-0.992l-0.771-0.775l-1.324-1.126l-1.116-0.994
      l-0.905-1.41l-0.56-1.2L326,157.06l-0.701-0.919l0.068-0.989l-0.14-0.634l-0.419-0.072l-0.561-1.129l-0.693-0.568l-0.142-0.425
      l-0.35-1.128l-0.77-0.495l-0.631-1.131l-0.976-1.343h-1.325l-0.417-1.554l-0.419-0.636l-0.07-1.695l0.348-0.14l0.561-1.129
      l1.395-0.637l0.978-0.846l0.353-1.275l1.535-0.21l0.207-0.567h0.699l0.837,0.709l0.771-0.142l0.624-0.846l0.632-1.416l1.465,0.354
      l0.975-0.564l2.096-0.072l0.838-0.284l0.628-0.21l0.7,0.566h0.695l0.419-0.849l0.697,0.14l1.328,0.072l0.56,1.273l0.209,1.977
      l0.208,2.051l0.067,1.198l-0.835-0.212l-0.771-0.211l-0.416,0.07l-1.188-0.354l-2.305,0.495v1.058l-0.419,0.707l-0.764,0.499v2.894
      l1.037,1.341l1.263,0.776l1.468,0.142l0.271,0.495l0.704,0.281h1.188l0.766,0.847l0.277,1.206l-0.485,1.413l0.419,0.849l0.141,1.48
      l0.209,1.907l0.421,0.635l0.769-0.423c0,0,0.625-2.191,0.625-2.4c0-0.213,1.186-0.426,1.186-0.426l0.7,0.426l0.142,1.412
      l1.046,1.129l-0.354,1.768l-1.254,0.991l-1.047-0.355l-0.978-0.776h-1.046l-0.069,0.917l0.413,0.14l0.915,2.334l0.14,0.707
      c0,0,0.557,0.069,0.832,0.139c0.284,0.071,0.142,0.92,0.142,0.92l-0.142,1.13l0.63,0.283l0.489-0.354c0,0,0.835,0.423,0.904,0.636
      c0.069,0.212-0.135,0.989-0.135,0.989l-0.071,0.991l0.908,0.491l0.348,1.134l0.697,0.637c0,0,0.138,1.268,0.138,1.692
      c0,0.424,0.423,1.129,0.351,1.34c-0.065,0.216,0.495,1.413,0.495,1.413L345.187,176.979z M362.427,138.409l-0.07,0.916
      l-0.836,0.428l0.698,1.837l0.208,0.986l-0.563,0.142l-1.11-0.918l-0.417,1.837l-1.604,0.844l-1.469,0.072l-0.84-0.352l-0.205,0.352
      l-1.331-0.139l-0.208-0.85l-0.491-1.129l0.145-0.636l-0.488-1.131l0.276-0.916l-0.276-0.991l-0.209-1.201l1.661,0.052
      c-0.296,0.629-0.182,2.456,0.35,2.87c0.663,0.515,1.829,0.292,2.113-0.21c0.282-0.5-0.566-1.796-0.566-1.796
      c0.007-0.453-0.277-0.613-0.74-0.873l-1.146-0.176l0.632-1.562v-0.849l1.121-0.137l2.72-1.559l0.625,0.143l0.212,0.988l0.561,1.131
      l0.903,0.209l0.768,1.559L362.427,138.409z M419.092,134.38l-1.256,0.282l-1.676,1.415l-0.905,0.425l-1.604-0.566l-0.771,0.142
      l-1.531,0.282l-0.845,0.637l-3.065,1.125l-1.119,0.148l-0.906-0.287l-0.769,0.496l-0.488,0.073l-1.604,0.916l-0.14,0.494
      l0.694,1.343l-0.834,0.425l0.071,0.422l-0.145,0.284l-0.417-0.424l-1.464-1.766l-0.837-0.987l-0.213-0.641l0.562-0.14l0.831-0.706
      l-0.136-0.918l0.769-0.567l0.562,0.284l0.416-0.424l0.555-0.564l0.91,0.143l0.904-0.282l1.469-0.639l2.231-0.282l1.604-0.707
      c0,0,2.164,0.357,2.373,0.357c0.212,0,1.118-0.285,1.118-0.285l3.213-0.212l1.322-0.706l0.769,0.209l0.7,0.847L419.092,134.38z
      M502.489,99.131l-0.071,0.71l0.278,1.62l-0.628,0.281l-0.421-0.207l-0.206,0.635l0.278,0.561c0,0,0.416,0.497,0.624,0.71
      c0.209,0.209-0.415,0.776-0.415,0.776h-0.768l-1.126,1.837l-0.758,0.989l-2.023,0.916l-0.771,0.143l-0.488-0.422l-1.742,1.482
      l-0.91,0.637l-1.321,0.919l-1.539,0.14l-0.417-0.566l0.489-0.353l0.558-0.425l0.352-0.352l-0.072,0.637h0.422l4.533-5.158
      l0.841-0.844l0.348-0.851l1.604-1.553l0.628-0.707l-0.14-1.979l-0.418-1.835l-0.07-1.695l-0.624-0.285l-0.074-0.849l0.634-0.353
      l0.965-0.636l0.281-0.492l0.565,0.35l0.414,0.991l1.189,1.273c0,0,0.142,1.128,0.063,1.343c-0.063,0.21-0.063,0.916,0,1.126
      c0.076,0.215,0.352,0.637,0.422,0.851C503.043,98.707,502.489,99.131,502.489,99.131z"/>
      <polygon class="st7" points="308.482,16.639 311.843,14.743 313.638,13.122 318.549,12.517 320.823,10.815 324.781,9.603
      327.18,5.476 326.22,3.78 324.303,3.78 322.265,6.449 309.56,7.904 309.052,9.118 307.882,11.905 303.568,11.905 302.971,15.184
      301.771,15.424 301.241,16.731 300.693,18.093 307.526,18.579 "/>
      <polygon class="st7" points="318.55,32.896 318.788,34.958 322.295,35.413 322.596,34.73 321.069,32.29 319.629,31.682 "/>
      <path class="st7" d="M36.649,37.509l1.917-0.85V34.11l0.36-0.97l0,0c0.145,0.135,1.677,0.365,1.677,0.365l1.438-0.852l-0.839-1.816
      l-2.638-0.611l-0.479,1.214c0,0,0.695,1.561,0.84,1.699l-4.316,0.605C34.71,34.437,36.649,37.509,36.649,37.509z"/>
      <polygon class="st7" points="340.963,18.339 342.043,17.123 340.364,15.668 338.925,16.639 339.163,18.094 "/>
      <polygon class="st7" points="662.732,339.614 661.938,339.055 660.935,339.691 660.26,340.116 661.533,341.282 "/>
      <polygon class="st7" points="501.213,2.319 508.044,1.472 508.646,0.259 499.414,-0.834 498.337,0.259 498.817,2.077 "/>
      <polygon class="st7" points="295.776,40.179 296.379,37.873 294.336,37.024 293.501,38.718 294.101,40.419 "/>
      <polygon class="st7" points="493.062,0.016 491.383,-1.803 489.107,-1.198 482.994,-2.654 480.116,-1.441 480.116,2.566
      491.984,3.534 "/>
      <polygon class="st7" points="495.699,10.449 495.699,10.45 499.413,6.93 497.377,6.081 493.422,8.752 494.259,10.449 "/>
      <polygon class="st7" points="301.53,29.379 305.842,31.683 313.876,32.291 313.876,30.837 310.401,27.679 307.28,22.1
      300.692,21.854 300.093,24.767 298.055,27.315 299.254,29.743 "/>
      <polygon class="st7" points="231.842,32.791 231.244,31.88 229.147,32.488 229.745,33.549 "/>
      <polygon class="st7" points="149.315,33.505 146.439,34.11 146.199,36.05 149.074,36.05 "/>
      <path class="st7" d="M111.439,41.391l3.717-1.819v-2.547l-6.595-0.974l-6.952,1.822l-2.037-1.459l0.841-2.061l5.753-0.608
      l1.478-2.549l-4.353-1.454v-1.455l3.476-0.367l1.438,2.306l2.636,2.428l6.354,1.943v-2.306l-6.354-4.004l-0.84-3.52l0.839-1.213
      l2.878-0.607l4.555,3.884l1.199-1.214L118.63,22.1l1.08-0.608l4.313,2.914l0.603-0.852l-1.2-4.611c0,0-0.116-3.712,0-3.758
      c0.119-0.05,2.638,1.938,2.638,1.938l2.035-0.484l-0.355-4.733l-1.68-2.547l3.715-3.276V4.02h-3.114l-2.877,2.428l-4.676,2.306
      l-1.437-1.214l-0.24-2.064l6.591-4.61l8.633,0.85l2.396-1.729L23.944-0.06l3.116,0.924L25.143,2.93L21.85,2.415L16.991,2.93
      l-0.479,1.09l4.315,0.608l0.236,2.06l15.823,0.608l4.552,4.007v4.122l0.96,2.669l-3.234,7.279l0.6,0.243l4.076-2.67l1.079,1.213
      l-0.602,1.214l1.2,2.306l-0.839,1.093l0.597,4.368l-4.674,4.974l-1.677,3.761L34.61,42.24l-2.274,1.455l0.839,2.551L31.975,47.7
      l-0.839,2.909l1.437,1.457L30.3,55.345l1.677,2.062l-0.839,1.94l1.198,1.457l-1.438,1.82l1.679,1.696l-0.84,2.307l0.84,1.214
      l-0.6,2.306h2.039l3.714,1.214l2.037-1.214h2.637l-0.96,2.306l0.602,1.455l-1.077,1.457l1.438,2.061l9.108-6.064l-0.239-1.457
      l2.278-1.455v-1.214l2.037-2.064l5.515-3.396l-1.201-2.428l0.905-1.319l0.295-2.079l2.52-0.603l1.57-1.488l1.9-1.791l1.68,0.971
      l1.201-0.603l2.034,0.846l2.278-1.697l2.637,0.852l5.155-4.734l7.789-4.368l4.931-0.385l5.378-1.313L111.439,41.391z"/>
      <polygon class="st7" points="149.912,97.809 151.711,97.809 152.548,101.329 157.463,102.784 157.942,106.544 157.463,107.394
      153.988,107.394 153.75,108.809 153.397,110.885 153.149,112.367 149.911,113.823 150.271,115.279 152.188,115.279 156.265,116.13
      155.067,117.344 151.711,117.585 148.235,120.255 149.074,121.105 158.305,120.255 163.457,117.95 166.933,118.554 168.97,116.492
      168.371,114.676 171.246,111.762 170.406,109.821 165.494,111.522 165.338,109.614 165.149,107.349 164.893,104.242
      162.858,100.117 156.025,96.115 156.505,95.505 158.901,95.265 161.42,91.139 160.34,89.922 153.987,89.68 154.587,88.833
      158.303,87.011 159.138,85.314 157.941,84.099 154.225,84.099 148.473,93.199 "/>
      <polygon class="st7" points="137.33,111.276 134.691,112.366 134.092,114.187 136.131,115.642 139.246,114.431 143.559,113.581
      145.769,112.461 146.568,111.542 148.294,106.273 149.911,102.175 148.835,100.476 146.198,100.476 142.013,99 141.044,98.655
      140.205,99.626 140.303,101.036 140.399,102.351 140.445,103.024 139.246,103.389 136.131,107.149 136.97,108.847 "/>
      <path class="st7" d="M202.288,1.473h1.438l1.198,0.605l-1.438,3.155l5.395,2.062l1.797,2.062l1.676-0.605
      c0,0,1.417-5.882,1.438-6.188c0.021-0.308,1.678-4.007,1.678-4.007l-2.275-1.818l-5.988,2.427l-1.439-1.454l-3.477-0.367
      l-0.84,1.456l0.349,1.105L202.288,1.473z"/>
      <polygon class="st7" points="213.57,40.95 214.391,40.42 214.167,39.918 213.267,40.602 "/>
      <polygon class="st7" points="205.556,46.44 206.901,45.755 206.603,45.15 205.406,45.755 "/>
      <polygon class="st7" points="209.597,43.331 210.079,43.694 210.919,43.088 210.648,42.726 "/>
      <polygon class="st7" points="551.195,249.836 551.195,252.139 553.827,252.991 557.307,251.291 558.386,244.619 557.007,244.014
      554.07,246.076 "/>
      <polygon class="st7" points="615.976,283.086 616.516,286.242 617.787,285.468 617.041,282.738 "/>
      <path class="st7" d="M625.808,314.861c0-0.719-0.497-1.299-1.104-1.299c-0.604,0-1.104,0.58-1.104,1.299
      c0,0.718,0.498,1.3,1.104,1.3C625.311,316.161,625.808,315.579,625.808,314.861z"/>
      <ellipse class="st7" cx="623.497" cy="342.759" rx="0.946" ry="0.964"/>
      <path class="st7" d="M606.119,285.791l2.603-0.158l2.278-4.369c0,0-0.795-1.324-1.076-1.092c-0.284,0.236-4.678,1.092-4.678,1.092
      L606.119,285.791z"/>
      <path class="st7" d="M622.509,348.852l1.436,2.67l2.039-1.213v-1.457c0,0-1.03-0.851-1.679-0.851S622.509,348.852,622.509,348.852z
      "/>
      <polygon class="st7" points="243.155,185.167 250.35,186.38 250.591,184.316 242.796,183.104 242.555,184.315 "/>
      <path class="st7" d="M611.961,274.833l-1.438-4.613c0,0-2.139-0.993-2.401-0.85c-0.253,0.146-2.724,0.153-2.724,0.153l5.604,6.277
      L611.961,274.833z"/>
      <polygon class="st7" points="616.516,276.896 614.836,277.5 617.565,280.964 618.194,280.415 "/>
      <path class="st7" d="M623.945,303.714l0.36-1.455l-0.839-8.979l-2.638-3.275c0,0-2.132-0.077-2.041,0
      c0.095,0.076-0.236,2.303-0.236,2.303l-2.479,1.268c0,0-1.947,1.974-2.195,2.258c-0.252,0.281-1.078-0.609-1.078-0.609
      l-4.679,2.426v3.763l3.858-2.709c0,0,3.216,1.873,3.336,2.104c0.118,0.231-0.48,3.766-0.48,3.766l2.518,2.912h2.037l1.44-4.979
      l2.275,1.82L623.945,303.714z"/>
      <polygon class="st7" points="630.656,170.001 631.137,166.603 634.369,167.696 634.613,166.603 632.935,163.086 632.574,159.566
      630.298,157.259 629.459,151.678 622.028,142.094 619.151,144.156 619.556,147.124 623.105,152.285 622.508,155.806
      623.944,158.957 621.666,162.233 619.389,162.717 618.551,159.808 617.352,159.808 616.752,161.262 617.711,165.993
      615.673,169.513 609.322,170.365 607.884,173.882 606.206,174.125 605.245,175.822 606.444,177.642 610.161,177.642
      610.522,174.974 612.441,174.124 620.828,174.729 623.466,177.641 624.902,177.036 625.382,175.338 623.466,173.274
      622.268,170.969 623.704,169.999 626.578,171.21 627.422,170.366 "/>
      <polygon class="st7" points="647.577,348.126 646.116,348.001 648.399,352.37 649.593,351.52 649.836,349.702 648.995,348.245 "/>
      <polygon class="st7" points="640.365,370.689 641.805,370.085 642.166,368.628 640.727,368.628 "/>
      <path class="st7" d="M647.601,359.568c-0.767-0.002-1.392,0.556-1.392,1.242c0,0.686,0.625,1.24,1.392,1.24
      c0.771,0,1.396-0.557,1.396-1.24C648.995,360.125,648.371,359.568,647.601,359.568z"/>
      <path class="st7" d="M705.086,379.428l-0.238-2.066l-5.516-8.367l2.036-2.676l-0.361-0.896l-0.475-1.16l-5.516-3.521l-2.276-4.366
      l-10.669-8.736l-4.059-0.213l-5.171-0.271l-7.188-4.733l-5.155,3.521l-2.278,4.123h-1.438l-1.97-2.455l-2.585-1.911l0.84-1.457
      v-4.73l-5.513-3.762l-2.279,2.303h-2.272l-1.201,2.673l1.796,2.062l5.996,0.485c0,0,1.798,2.744,2.016,2.655
      c-0.018,0.693,0.023,3.775,0.023,3.775l0.841,2.668l2.278,1.09l3.231,4.369l3.953,0.973l4.077,2.548l1.284,5.252l-0.686,5.303
      l-3.232-0.363v1.455l1.195,0.359l2.037-1.449l0,0l1.077,1.697l3.715,0.244l3.076,2.331l1.241,0.939l6.951,1.092l1.2-1.092
      l-0.967-2.91l3.24-3.519h2.035l6.596,2.666l3.478,9.586l9.71,2.549l1.192-0.848L705.086,379.428z"/>
      <polygon class="st7" points="637.338,343.876 639.525,344.239 640.113,343.102 636.816,342.497 "/>
      <polygon class="st7" points="627.781,342.175 629.803,341.889 630.432,340.968 630.525,340.372 627.225,340.829 "/>
      <path class="st7" d="M638.69,348.245l-5.156-0.606l-2.875,1.213l0.479,1.213h3.835l4.793,1.095v-1.097
      C639.771,350.184,638.69,348.245,638.69,348.245z"/>
      <polygon class="st7" points="630.657,336.961 630.657,335.141 633.531,335.141 633.774,334.046 632.575,332.833 632.337,327.861
      630.299,327.861 629.222,325.311 627.422,327.01 628.263,329.92 628.263,333.68 "/>
      <polygon class="st7" points="611,290.607 611,286.85 609.924,286.85 608.944,289.915 "/>
      <polygon class="st7" points="257.118,181.792 257.38,181.329 257.224,180.539 256.555,180.145 255.673,180.554 255.534,181.359
      256.232,182.043 "/>
      <polygon class="st7" points="625.984,137.482 626.341,136.268 628.262,133.965 629.221,131.294 625.984,126.32 621.8,127.189
      617.216,125.967 614.479,124.013 612.442,123.773 612.442,124.621 613.879,126.32 616.516,131.658 616.275,132.751
      613.641,132.511 615.074,138.331 616.754,139.787 619.153,139.787 618.552,137.119 619.631,136.267 "/>
      <polygon class="st7" points="278.517,183.104 275.644,183.736 273.006,184.316 272.526,186.38 273.364,186.985 277.32,186.015 "/>
      <path class="st7" d="M589.784,218.653l-1.193,0.849c0.095,0.178-1.443,6.796-1.443,6.796l3.479,6.675c0,0,1.886,0.455,2.036-0.367
      c0.147-0.819,0-1.939,0-1.939l-1.437-1.819l0.238-8.375L589.784,218.653z"/>
      <polygon class="st7" points="250.291,170.886 249.834,170.384 249.235,170.301 248.852,170.465 248.539,170.86 248.488,171.484
      249.121,172.165 250.094,171.92 "/>
      <polygon class="st7" points="254.215,183.285 253.705,184.176 254.035,184.869 254.93,185.06 255.498,184.579 255.578,184.372
      255.575,183.883 254.895,183.207 "/>
      <polygon class="st7" points="617.712,328.225 613.038,330.775 605.848,329.682 600.095,333.079 599.855,335.986 597.317,340.025
      594.943,345.331 595.779,348.607 597.576,349.702 598.416,352.007 597.221,358.802 599.018,359.286 602.732,355.891
      601.984,351.456 603.571,350.062 602.136,346.788 603.813,345.939 604.771,346.788 604.409,350.062 606.209,356.739
      607.287,356.739 611.002,354.673 607.047,343.025 612.802,337.205 610.767,336.6 605.61,340.118 602.137,338.052 602.92,334.796
      604.409,332.835 618.791,331.624 619.392,328.227 617.712,328.227 "/>
      <polygon class="st7" points="247.126,165.648 246.871,166.241 247.409,166.905 247.874,166.1 "/>
      <polygon class="st7" points="594.103,289.396 596.138,287.939 595.538,284.176 593.74,285.391 593.502,288.911 591.228,290.852
      588.591,297.282 590.386,297.646 "/>
      <path class="st7" d="M245.075,171.455c-0.001,0,0.245-0.834,0.401-1.105l-1.324-0.587l-1.071-0.477l-0.286,0.715l1.159,0.737
      L245.075,171.455z"/>
      <polygon class="st7" points="594.698,326.766 591.467,323.855 592.307,321.43 590.027,317.672 591.825,316.574 590.867,313.906
      594.699,313.664 594.944,311.844 597.221,311.6 597.221,309.782 593.504,307.234 591.467,307.234 590.387,302.864 586.909,302.864
      583.393,309.169 582.238,311.241 579.36,311.6 573.125,319.975 570.731,319.975 568.811,321.793 568.213,327.252 564.736,326.766
      560.183,327.618 559.971,328.618 561.025,333.441 560.421,337.204 563.534,341.812 563.057,344.48 564.976,346.548
      568.213,346.548 572.003,348.57 578.521,348.85 578.737,350.969 578.882,352.369 580.32,353.215 582.836,351.762 592.307,332.59
      595.541,329.316 "/>
      <polygon class="st7" points="572.766,365.475 568.211,361.71 561.26,362.807 556.944,360.253 550.951,359.286 545.799,363.165
      546.278,364.018 548.314,363.654 552.63,368.02 555.506,367.536 559.822,368.384 561.861,368.02 569.801,371.061 577.918,372.996
      578.281,370.086 573.605,367.777 "/>
      <path class="st7" d="M549.154,349.46l-8.025-10.19v-3.281l-0.844-2.307l-2.637,0.364l-0.24-1.815l-5.51-7.28l-1.682-0.24
      l-10.664-12.258l-9.71-2.304l-0.604,1.095l0.84,2.666l5.995,6.432l1.796,3.763l4.316,2.666l0.24,5.463l4.072,4.731l2.521,6.675
      l11.505,14.192c0,0,4.146,1.244,4.314,1.217c0.165-0.034,2.876-2.065,2.876-2.065L549.154,349.46z"/>
      <polygon class="st7" points="616.753,343.271 618.193,343.271 618.835,341.736 616.439,342.195 "/>
      <polygon class="st7" points="602.134,276.898 602.73,275.803 601.533,273.74 598.655,273.74 598.655,274.833 600.934,277.262 "/>
      <polygon class="st7" points="601.892,270.675 603.328,269.613 601.296,266.46 600.095,261.484 601.892,260.025 602.731,255.658
      600.451,248.986 595.18,248.986 594.343,252.75 595.78,257.359 593.505,260.025 593.505,262.333 593.503,262.333 598.416,269.613
      "/>
      <polygon class="st7" points="610.765,121.469 611.961,120.011 614.836,119.043 614.836,117.949 608.12,113.218 605.607,108.363
      609.323,106.912 600.45,98.174 594.942,95.503 593.503,90.526 591.466,89.92 586.071,85.919 583.435,85.555 585.711,90.527
      591.057,96.943 603.811,112.127 608.12,119.649 "/>
      <ellipse class="st7" cx="603.448" cy="307.531" rx="1.253" ry="1.134"/>
    </g>
    <path id="europe" onmouseover="showMe(this);" onmouseout="hideMe(this);" class="st1" d="M123.694,127.567
      c0-46.341,37.567-83.908,83.908-83.908c46.349,0,83.915,37.567,83.915,83.908c0,46.342-37.566,83.908-83.915,83.908
      C161.261,211.476,123.694,173.909,123.694,127.567z"/>
    <g id="europe_hover" class="st10">
      <path id="europe_on" class="st12" d="M123.694,127.567c0-46.341,37.567-83.908,83.908-83.908c46.349,0,83.915,37.567,83.915,83.908
      c0,46.342-37.566,83.908-83.915,83.908C161.261,211.476,123.694,173.909,123.694,127.567z"/>
      <text id="europe_title" transform="matrix(1 0 0 1 1.1331 103.4023)" class="st6 st2 st9">Europe</text>
      <polyline id="europe_line1" class="st0" points="1.134,109.898 114,109.898 124.448,116.277 "/>
      <line id="europe_line2" class="st11" x1="124.448" y1="116.277" x2="147.5" y2="130.75"/>
      <text transform="matrix(1 0 0 1 1.1331 130.75)" class="st3 st5 st8">Baltic States, Riga</text>
      <text transform="matrix(1 0 0 1 1.1331 150.75)" class="st3 st5 st8">Bulgaria, Sofia</text>
      <text transform="matrix(1 0 0 1 1.1331 170.75)" class="st3 st5 st8">Germany, Hamburg </text>
      <text transform="matrix(1 0 0 1 1.1331 190.75)" class="st3 st5 st8">Italy, Milan</text>
      <text transform="matrix(1 0 0 1 1.1331 210.75)" class="st3 st5 st8">Romania, Sibiu</text>
      <text transform="matrix(1 0 0 1 1.1331 230.75)" class="st3 st5 st8">Turkey, Istanbul</text>
      <text transform="matrix(1 0 0 1 1.1331 250.75)" class="st3 st5 st8">Turkey, Izmir</text>
    </g>
    <circle id="n_china" onmouseover="showMe(this);" onmouseout="hideMe(this);" class="st1" cx="535.401" cy="171.693" r="31.172"/>
    <g id="n_x5F_china_hover" class="st10">
      <circle id="n_china_on" class="st12" cx="535.401" cy="171.693" r="31.172"/>
      <text id="n_china_title" transform="matrix(1 0 0 1 636.8401 112.7305)" class="st6 st2 st9">North China</text>
      <polyline id="n_china_line1" class="st0" points="736.469,119.23 636.85,119.23 563.303,157.579 "/>
      <line id="n_china_line2" class="st11" x1="546.053" y1="166.25" x2="563.303" y2="157.579"/>
      <text transform="matrix(1 0 0 1 636.8401 139.666)" class="st4 st5 st8">Qingdao</text>
      <text transform="matrix(1 0 0 1 636.8401 159.666)" class="st4 st5 st8">Shanghai</text>
    </g>
    <circle id="s_china" onmouseover="showMe(this);" onmouseout="hideMe(this);" class="st1" cx="555.402" cy="214.026" r="31.172"/>
    <g id="s_china_hover" class="st10">
      <circle id="s_china_on" class="st12" cx="555.402" cy="214.026" r="31.172"/>
      <text id="s_china_title" transform="matrix(1 0 0 1 636.844 197.2979)" class="st6 st2 st9">South China</text>
      <polyline id="s_china_line1" class="st0" points="736.469,203.798 636.85,203.798 586.509,215.995 "/>
      <line id="s_china_line2" class="st11" x1="568.345" y1="220.417" x2="586.509" y2="215.995"/>
      <text transform="matrix(1 0 0 1 636.844 224.2344)" class="st4 st5 st8">Dongguan</text>
      <text transform="matrix(1 0 0 1 636.844 244.2344)" class="st4 st5 st8">Hong Kong</text>
      <text transform="matrix(1 0 0 1 636.844 264.2344)" class="st4 st5 st8">Xiamen</text>
    </g>
    <circle id="india" onmouseover="showMe(this);" onmouseout="hideMe(this);" class="st1" cx="450.069" cy="260.693" r="53.839"/>
    <g id="india_hover" class="st10">
      <circle id="india_on" class="st12" cx="450.069" cy="260.693" r="53.839"/>
      <text id="india_title" transform="matrix(1 0 0 1 345.0662 321.583)" class="st6 st2 st9">India</text>
      <line id="india_line2" class="st11" x1="468.979" y1="311.176" x2="468.979" y2="285.875"/>
      <polyline id="india_line1" class="st0" points="345.071,328.083 468.979,328.083 468.979,311.176 "/>
      <text transform="matrix(1 0 0 1 345.0662 348.5176)" class="st4 st5 st8">Bangladesh, Dhaka</text>
      <text transform="matrix(1 0 0 1 345.0662 368.5176)" class="st4 st5 st8">India, Delhi</text>
      <text transform="matrix(1 0 0 1 345.0662 388.5176)" class="st4 st5 st8">India, Mumbai</text>
    </g>
    <circle id="se_asia" onmouseover="showMe(this);" onmouseout="hideMe(this);" class="st1" cx="574.369" cy="312.013" r="71.839"/>
    <g id="se_asia_hover" class="st10">
      <circle id="se_asia_on" class="st12" cx="574.369" cy="312.013" r="71.839"/>
      <text id="se_asia_title" transform="matrix(1 0 0 1 465.8616 392)" class="st6 st2 st9">SE Asia</text>
      <line id="se_asia_line2" class="st11" x1="586.387" y1="389.083" x2="586.387" y2="361"/>
      <polyline id="se_asia_line1" class="st0" points="465.861,398.5 586.387,398.5 586.387,383.271 "/>
      <text transform="matrix(1 0 0 1 465.8616 418.9355)" class="st4 st5 st8">Indonesia, Jakarta</text>
      <text transform="matrix(1 0 0 1 465.8616 438.9355)" class="st4 st5 st8">Singapore</text>
      <text transform="matrix(1 0 0 1 465.8616 458.9355)" class="st4 st5 st8">Thailand, Bangkok</text>
      <text transform="matrix(1 0 0 1 465.8616 478.9355)" class="st4 st5 st8">Vietnam, Ho Chi Minh City</text>
    </g>
    </svg>

  • Is it possible to add a graphics card to my laptop?

    I have a Hp Pavilion Dm4 with built in hd graphics since its absolutly afaule I wish to add a graphics card into the computer. I will list all the specs here so you guys know what im using. 
    System Information
    Time of this report: 8/11/2011, 22:29:45
    Machine name: KENNETH-HP
    Operating System: Windows 7 Home Premium 64-bit (6.1, Build 7601) Service Pack 1 (7601.win7sp1_gdr.110622-1506)
    Language: English (Regional Setting: English)
    System Manufacturer: Hewlett-Packard
    System Model: HP Pavilion dm4 Notebook PC
    BIOS: Default System BIOS
    Processor: Intel(R) Core(TM) i5 CPU M 460 @ 2.53GHz (4 CPUs), ~2.5GHz
    Memory: 4096MB RAM
    Available OS Memory: 3894MB RAM
    Page File: 3932MB used, 3853MB available
    Windows Dir: C:\Windows
    DirectX Version: DirectX 11
    DX Setup Parameters: Not found
    User DPI Setting: Using System DPI
    System DPI Setting: 96 DPI (100 percent)
    DWM DPI Scaling: Disabled
    DxDiag Version: 6.01.7601.17514 32bit Unicode
    DxDiag Notes
    Display Tab 1: No problems found.
    Sound Tab 1: No problems found.
    Sound Tab 2: No problems found.
    Input Tab: No problems found.
    DirectX Debug Levels
    Direct3D: 0/4 (retail)
    DirectDraw: 0/4 (retail)
    DirectInput: 0/5 (retail)
    DirectMusic: 0/5 (retail)
    DirectPlay: 0/9 (retail)
    DirectSound: 0/5 (retail)
    DirectShow: 0/6 (retail)
    Display Devices
    Card name: Intel(R) HD Graphics
    Manufacturer: Intel Corporation
    Chip type: Intel(R) HD Graphics (Core i5)
    DAC type: Internal
    Device Key: Enum\PCI\VEN_8086&DEV_0046&SUBSYS_146A103C&REV_02
    Display Memory: 1696 MB
    Dedicated Memory: 64 MB
    Shared Memory: 1632 MB
    Current Mode: 1366 x 768 (32 bit) (60Hz)
    Monitor Name: Generic PnP Monitor
    Monitor Model: unknown
    Monitor Id: AUO223C
    Native Mode: 1366 x 768(p) (60.098Hz)
    Output Type: Internal
    Driver Name: igdumd64.dll,igd10umd64.dll,igdumdx32,igd10umd32
    Driver File Version: 8.15.0010.2189 (English)
    Driver Version: 8.15.10.2189
    DDI Version: 10
    Driver Model: WDDM 1.1
    Driver Attributes: Final Retail
    Driver Date/Size: 7/28/2010 21:10:36, 6547968 bytes
    WHQL Logo'd: Yes
    WHQL Date Stamp:
    Device Identifier: {D7B78E66-4306-11CF-017B-6034A2C2C535}
    Vendor ID: 0x8086
    Device ID: 0x0046
    SubSys ID: 0x146A103C
    Revision ID: 0x0002
    Driver Strong Name: oem27.inf:Intel.Mfg.NTamd64:iILKM0:8.15.10.2189ci\ven_8086&dev_0046&subsys_146a103c
    Rank Of Driver: 00E60001
    Video Accel: ModeMPEG2_A ModeMPEG2_C ModeWMV9_B ModeWMV9_C ModeVC1_B ModeVC1_C
    Deinterlace Caps: {BF752EF6-8CC4-457A-BE1B-08BD1CAEEE9F}: Format(In/Out)=(YUY2,YUY2) Frames(Prev/Fwd/Back)=(0,0,1) Caps=VideoProcess_YUV2RGB VideoProcess_StretchX VideoProcess_StretchY VideoProcess_AlphaBlend DeinterlaceTech_EdgeFiltering
    {335AA36E-7884-43A4-9C91-7F87FAF3E37E}: Format(In/Out)=(YUY2,YUY2) Frames(Prev/Fwd/Back)=(0,0,0) Caps=VideoProcess_YUV2RGB VideoProcess_StretchX VideoProcess_StretchY VideoProcess_AlphaBlend DeinterlaceTech_BOBVerticalStretch
    {5A54A0C9-C7EC-4BD9-8EDE-F3C75DC4393B}: Format(In/Out)=(YUY2,YUY2) Frames(Prev/Fwd/Back)=(0,0,0) Caps=VideoProcess_YUV2RGB VideoProcess_StretchX VideoProcess_StretchY VideoProcess_AlphaBlend
    {BF752EF6-8CC4-457A-BE1B-08BD1CAEEE9F}: Format(In/Out)=(UYVY,YUY2) Frames(Prev/Fwd/Back)=(0,0,1) Caps=VideoProcess_YUV2RGB VideoProcess_StretchX VideoProcess_StretchY VideoProcess_AlphaBlend DeinterlaceTech_EdgeFiltering
    {335AA36E-7884-43A4-9C91-7F87FAF3E37E}: Format(In/Out)=(UYVY,YUY2) Frames(Prev/Fwd/Back)=(0,0,0) Caps=VideoProcess_YUV2RGB VideoProcess_StretchX VideoProcess_StretchY VideoProcess_AlphaBlend DeinterlaceTech_BOBVerticalStretch
    {5A54A0C9-C7EC-4BD9-8EDE-F3C75DC4393B}: Format(In/Out)=(UYVY,YUY2) Frames(Prev/Fwd/Back)=(0,0,0) Caps=VideoProcess_YUV2RGB VideoProcess_StretchX VideoProcess_StretchY VideoProcess_AlphaBlend
    {BF752EF6-8CC4-457A-BE1B-08BD1CAEEE9F}: Format(In/Out)=(YV12,YUY2) Frames(Prev/Fwd/Back)=(0,0,1) Caps=VideoProcess_YUV2RGB VideoProcess_StretchX VideoProcess_StretchY VideoProcess_AlphaBlend DeinterlaceTech_EdgeFiltering
    {335AA36E-7884-43A4-9C91-7F87FAF3E37E}: Format(In/Out)=(YV12,YUY2) Frames(Prev/Fwd/Back)=(0,0,0) Caps=VideoProcess_YUV2RGB VideoProcess_StretchX VideoProcess_StretchY VideoProcess_AlphaBlend DeinterlaceTech_BOBVerticalStretch
    {5A54A0C9-C7EC-4BD9-8EDE-F3C75DC4393B}: Format(In/Out)=(YV12,YUY2) Frames(Prev/Fwd/Back)=(0,0,0) Caps=VideoProcess_YUV2RGB VideoProcess_StretchX VideoProcess_StretchY VideoProcess_AlphaBlend
    {BF752EF6-8CC4-457A-BE1B-08BD1CAEEE9F}: Format(In/Out)=(NV12,YUY2) Frames(Prev/Fwd/Back)=(0,0,1) Caps=VideoProcess_YUV2RGB VideoProcess_StretchX VideoProcess_StretchY VideoProcess_AlphaBlend DeinterlaceTech_EdgeFiltering
    {335AA36E-7884-43A4-9C91-7F87FAF3E37E}: Format(In/Out)=(NV12,YUY2) Frames(Prev/Fwd/Back)=(0,0,0) Caps=VideoProcess_YUV2RGB VideoProcess_StretchX VideoProcess_StretchY VideoProcess_AlphaBlend DeinterlaceTech_BOBVerticalStretch
    {5A54A0C9-C7EC-4BD9-8EDE-F3C75DC4393B}: Format(In/Out)=(NV12,YUY2) Frames(Prev/Fwd/Back)=(0,0,0) Caps=VideoProcess_YUV2RGB VideoProcess_StretchX VideoProcess_StretchY VideoProcess_AlphaBlend
    {BF752EF6-8CC4-457A-BE1B-08BD1CAEEE9F}: Format(In/Out)=(IMC1,YUY2) Frames(Prev/Fwd/Back)=(0,0,1) Caps=VideoProcess_YUV2RGB VideoProcess_StretchX VideoProcess_StretchY VideoProcess_AlphaBlend DeinterlaceTech_EdgeFiltering
    {335AA36E-7884-43A4-9C91-7F87FAF3E37E}: Format(In/Out)=(IMC1,YUY2) Frames(Prev/Fwd/Back)=(0,0,0) Caps=VideoProcess_YUV2RGB VideoProcess_StretchX VideoProcess_StretchY VideoProcess_AlphaBlend DeinterlaceTech_BOBVerticalStretch
    {5A54A0C9-C7EC-4BD9-8EDE-F3C75DC4393B}: Format(In/Out)=(IMC1,YUY2) Frames(Prev/Fwd/Back)=(0,0,0) Caps=VideoProcess_YUV2RGB VideoProcess_StretchX VideoProcess_StretchY VideoProcess_AlphaBlend
    {BF752EF6-8CC4-457A-BE1B-08BD1CAEEE9F}: Format(In/Out)=(IMC2,YUY2) Frames(Prev/Fwd/Back)=(0,0,1) Caps=VideoProcess_YUV2RGB VideoProcess_StretchX VideoProcess_StretchY VideoProcess_AlphaBlend DeinterlaceTech_EdgeFiltering
    {335AA36E-7884-43A4-9C91-7F87FAF3E37E}: Format(In/Out)=(IMC2,YUY2) Frames(Prev/Fwd/Back)=(0,0,0) Caps=VideoProcess_YUV2RGB VideoProcess_StretchX VideoProcess_StretchY VideoProcess_AlphaBlend DeinterlaceTech_BOBVerticalStretch
    {5A54A0C9-C7EC-4BD9-8EDE-F3C75DC4393B}: Format(In/Out)=(IMC2,YUY2) Frames(Prev/Fwd/Back)=(0,0,0) Caps=VideoProcess_YUV2RGB VideoProcess_StretchX VideoProcess_StretchY VideoProcess_AlphaBlend
    {BF752EF6-8CC4-457A-BE1B-08BD1CAEEE9F}: Format(In/Out)=(IMC3,YUY2) Frames(Prev/Fwd/Back)=(0,0,1) Caps=VideoProcess_YUV2RGB VideoProcess_StretchX VideoProcess_StretchY VideoProcess_AlphaBlend DeinterlaceTech_EdgeFiltering
    {335AA36E-7884-43A4-9C91-7F87FAF3E37E}: Format(In/Out)=(IMC3,YUY2) Frames(Prev/Fwd/Back)=(0,0,0) Caps=VideoProcess_YUV2RGB VideoProcess_StretchX VideoProcess_StretchY VideoProcess_AlphaBlend DeinterlaceTech_BOBVerticalStretch
    {5A54A0C9-C7EC-4BD9-8EDE-F3C75DC4393B}: Format(In/Out)=(IMC3,YUY2) Frames(Prev/Fwd/Back)=(0,0,0) Caps=VideoProcess_YUV2RGB VideoProcess_StretchX VideoProcess_StretchY VideoProcess_AlphaBlend
    {BF752EF6-8CC4-457A-BE1B-08BD1CAEEE9F}: Format(In/Out)=(IMC4,YUY2) Frames(Prev/Fwd/Back)=(0,0,1) Caps=VideoProcess_YUV2RGB VideoProcess_StretchX VideoProcess_StretchY VideoProcess_AlphaBlend DeinterlaceTech_EdgeFiltering
    {335AA36E-7884-43A4-9C91-7F87FAF3E37E}: Format(In/Out)=(IMC4,YUY2) Frames(Prev/Fwd/Back)=(0,0,0) Caps=VideoProcess_YUV2RGB VideoProcess_StretchX VideoProcess_StretchY VideoProcess_AlphaBlend DeinterlaceTech_BOBVerticalStretch
    {5A54A0C9-C7EC-4BD9-8EDE-F3C75DC4393B}: Format(In/Out)=(IMC4,YUY2) Frames(Prev/Fwd/Back)=(0,0,0) Caps=VideoProcess_YUV2RGB VideoProcess_StretchX VideoProcess_StretchY VideoProcess_AlphaBlend
    D3D9 Overlay: Supported
    DXVA-HD: Supported
    DDraw Status: Enabled
    D3D Status: Enabled
    AGP Status: Enabled
    Sound Devices
    Description: Speakers and Headphones (IDT High Definition Audio CODEC)
    Default Sound Playback: Yes
    Default Voice Playback: Yes
    Hardware ID: HDAUDIO\FUNC_01&VEN_111D&DEV_7605&SUBSYS_103C146A&REV_1004
    Manufacturer ID: 1
    Product ID: 100
    Type: WDM
    Driver Name: stwrt64.sys
    Driver Version: 6.10.6324.0000 (English)
    Driver Attributes: Final Retail
    WHQL Logo'd: Yes
    Date and Size: 7/3/2011 11:39:56, 520192 bytes
    Other Files:
    Driver Provider: IDT
    HW Accel Level: Basic
    Cap Flags: 0xF1F
    Min/Max Sample Rate: 100, 200000
    Static/Strm HW Mix Bufs: 1, 0
    Static/Strm HW 3D Bufs: 0, 0
    HW Memory: 0
    Voice Management: No
    EAX(tm) 2.0 Listen/Src: No, No
    I3DL2(tm) Listen/Src: No, No
    Sensaura(tm) ZoomFX(tm): No
    Description: Communications Headphones (IDT High Definition Audio CODEC)
    Default Sound Playback: No
    Default Voice Playback: No
    Hardware ID: HDAUDIO\FUNC_01&VEN_111D&DEV_7605&SUBSYS_103C146A&REV_1004
    Manufacturer ID: 1
    Product ID: 100
    Type: WDM
    Driver Name: stwrt64.sys
    Driver Version: 6.10.6324.0000 (English)
    Driver Attributes: Final Retail
    WHQL Logo'd: Yes
    Date and Size: 7/3/2011 11:39:56, 520192 bytes
    Other Files:
    Driver Provider: IDT
    HW Accel Level: Basic
    Cap Flags: 0xF1F
    Min/Max Sample Rate: 100, 200000
    Static/Strm HW Mix Bufs: 1, 0
    Static/Strm HW 3D Bufs: 0, 0
    HW Memory: 0
    Voice Management: No
    EAX(tm) 2.0 Listen/Src: No, No
    I3DL2(tm) Listen/Src: No, No
    Sensaura(tm) ZoomFX(tm): No
    Sound Capture Devices
    Description: Headset Mic (IDT High Definition Audio CODEC)
    Default Sound Capture: Yes
    Default Voice Capture: No
    Driver Name: stwrt64.sys
    Driver Version: 6.10.6324.0000 (English)
    Driver Attributes: Final Retail
    Date and Size: 7/3/2011 11:39:56, 520192 bytes
    Cap Flags: 0x1
    Format Flags: 0xFFFFF
    Description: Internal Mic (IDT High Definition Audio CODEC)
    Default Sound Capture: No
    Default Voice Capture: No
    Driver Name: stwrt64.sys
    Driver Version: 6.10.6324.0000 (English)
    Driver Attributes: Final Retail
    Date and Size: 7/3/2011 11:39:56, 520192 bytes
    Cap Flags: 0x1
    Format Flags: 0xFFFFF
    Description: Microphone (Screaming Bee Audio)
    Default Sound Capture: No
    Default Voice Capture: Yes
    Driver Name: ScreamingBAudio64.sys
    Driver Version: 2.00.0003.0000 (English)
    Driver Attributes: Final Retail
    Date and Size: 7/1/2010 14:21:50, 38992 bytes
    Cap Flags: 0x1
    Format Flags: 0xFFFFF
    Description: Stereo Mix (IDT High Definition Audio CODEC)
    Default Sound Capture: No
    Default Voice Capture: No
    Driver Name: stwrt64.sys
    Driver Version: 6.10.6324.0000 (English)
    Driver Attributes: Final Retail
    Date and Size: 7/3/2011 11:39:56, 520192 bytes
    Cap Flags: 0x1
    Format Flags: 0xFFFFF
    DirectInput Devices
    Device Name: Mouse
    Attached: 1
    Controller ID: n/a
    Vendor/Product ID: n/a
    FF Driver: n/a
    Device Name: Keyboard
    Attached: 1
    Controller ID: n/a
    Vendor/Product ID: n/a
    FF Driver: n/a
    Poll w/ Interrupt: No
    USB Devices
    + USB Root Hub
    | Vendor/Product ID: 0x8086, 0x3B3C
    | Matching Device ID: usb\root_hub20
    | Service: usbhub
    |
    +-+ Generic USB Hub
    | | Vendor/Product ID: 0x8087, 0x0020
    | | Location: Port_#0001.Hub_#0001
    | | Matching Device ID: usb\class_09
    | | Service: usbhub
    | |
    | +-+ Logitech USB Cordless Mouse
    | | | Vendor/Product ID: 0x046D, 0xC501
    | | | Location: Port_#0001.Hub_#0003
    | | | Matching Device ID: usb\vid_046d&pid_c501
    | | | Service: HidUsb
    | | |
    | | +-+ Logitech USB Cordless Mouse
    | | | | Vendor/Product ID: 0x046D, 0xC501
    | | | | Matching Device ID: hid\vid_046d&pid_c501
    | | | | Service: mouhid
    Gameport Devices
    PS/2 Devices
    + Standard PS/2 Keyboard
    | Matching Device ID: *pnp0303
    | Service: i8042prt
    |
    + Terminal Server Keyboard Driver
    | Matching Device ID: root\rdp_kbd
    | Upper Filters: kbdclass
    | Service: TermDD
    |
    + Synaptics PS/2 Port TouchPad
    | Matching Device ID: *syn1e21
    | Upper Filters: SynTP
    | Service: i8042prt
    |
    + Terminal Server Mouse Driver
    | Matching Device ID: root\rdp_mou
    | Upper Filters: mouclass
    | Service: TermDD
    Disk & DVD/CD-ROM Drives
    Drive: C:
    Free Space: 374.5 GB
    Total Space: 585.9 GB
    File System: NTFS
    Model: TOSHIBA MK6465GSX
    Drive: D:
    Free Space: 3.5 GB
    Total Space: 24.2 GB
    File System: NTFS
    Model: TOSHIBA MK6465GSX
    Drive: I:
    Free Space: 0.1 GB
    Total Space: 0.1 GB
    File System: FAT32
    Model: TOSHIBA MK6465GSX
    Drive: E:
    Model: hp CDDVDW TS-U633J
    Driver: c:\windows\system32\drivers\cdrom.sys, 6.01.7601.17514 (English), , 0 bytes
    System Devices
    Name: Intel(R) processor DRAM Controller - 0044
    Device ID: PCI\VEN_8086&DEV_0044&SUBSYS_146A103C&REV_02\3&11583659&0&00
    Driver: n/a
    Name: Reserved - 2D12
    Device ID: PCI\VEN_8086&DEV_2D12&SUBSYS_146A103C&REV_05\3&4F11E61&0&12
    Driver: n/a
    Name: Intel(R) 5 Series/3400 Series Chipset Family PCI Express Root Port 1 - 3B42
    Device ID: PCI\VEN_8086&DEV_3B42&SUBSYS_146A103C&REV_05\3&11583659&0&E0
    Driver: n/a
    Name: QPI Physical 0 - 2D11
    Device ID: PCI\VEN_8086&DEV_2D11&SUBSYS_146A103C&REV_05\3&4F11E61&0&11
    Driver: n/a
    Name: Intel(R) 5 Series/3400 Series Chipset Family USB Enhanced Host Controller - 3B3C
    Device ID: PCI\VEN_8086&DEV_3B3C&SUBSYS_146A103C&REV_05\3&11583659&0&D0
    Driver: n/a
    Name: QPI Link 0 - 2D10
    Device ID: PCI\VEN_8086&DEV_2D10&SUBSYS_146A103C&REV_05\3&4F11E61&0&10
    Driver: n/a
    Name: Intel(R) 5 Series/3400 Series Chipset Family USB Enhanced Host Controller - 3B34
    Device ID: PCI\VEN_8086&DEV_3B34&SUBSYS_146A103C&REV_05\3&11583659&0&E8
    Driver: n/a
    Name: QuickPath Architecture System Address Decoder - 2D01
    Device ID: PCI\VEN_8086&DEV_2D01&SUBSYS_146A103C&REV_05\3&4F11E61&0&01
    Driver: n/a
    Name: Intel(R) Turbo Boost Technology Driver
    Device ID: PCI\VEN_8086&DEV_3B32&SUBSYS_146A103C&REV_05\3&11583659&0&FE
    Driver: n/a
    Name: QuickPath Architecture Generic Non-core Registers - 2C62
    Device ID: PCI\VEN_8086&DEV_2C62&SUBSYS_146A103C&REV_05\3&4F11E61&0&00
    Driver: n/a
    Name: Intel(R) 5 Series/3400 Series Chipset Family SMBus Controller - 3B30
    Device ID: PCI\VEN_8086&DEV_3B30&SUBSYS_146A103C&REV_05\3&11583659&0&FB
    Driver: n/a
    Name: Intel(R) 82801 PCI Bridge - 2448
    Device ID: PCI\VEN_8086&DEV_2448&SUBSYS_146A103C&REV_A5\3&11583659&0&F0
    Driver: n/a
    Name: Intel(R) Management Engine Interface
    Device ID: PCI\VEN_8086&DEV_3B64&SUBSYS_146A103C&REV_06\3&11583659&0&B0
    Driver: n/a
    Name: Intel(R) 5 Series 4 Port SATA AHCI Controller
    Device ID: PCI\VEN_8086&DEV_3B29&SUBSYS_146A103C&REV_05\3&11583659&0&FA
    Driver: n/a
    Name: Intel(R) Centrino(R) Advanced-N 6250 AGN
    Device ID: PCI\VEN_8086&DEV_0089&SUBSYS_13118086&REV_57\4&39E0C3A1&0&00E1
    Driver: n/a
    Name: High Definition Audio Controller
    Device ID: PCI\VEN_8086&DEV_3B56&SUBSYS_146A103C&REV_05\3&11583659&0&D8
    Driver: n/a
    Name: Intel(R) HM55 Express Chipset LPC Interface Controller - 3B09
    Device ID: PCI\VEN_8086&DEV_3B09&SUBSYS_146A103C&REV_05\3&11583659&0&F8
    Driver: n/a
    Name: Intel(R) HD Graphics
    Device ID: PCI\VEN_8086&DEV_0046&SUBSYS_146A103C&REV_02\3&11583659&0&10
    Driver: n/a
    Name: Reserved - 2D13
    Device ID: PCI\VEN_8086&DEV_2D13&SUBSYS_146A103C&REV_05\3&4F11E61&0&13
    Driver: n/a
    Name: Intel(R) 5 Series/3400 Series Chipset Family PCI Express Root Port 2 - 3B44
    Device ID: PCI\VEN_8086&DEV_3B44&SUBSYS_146A103C&REV_05\3&11583659&0&E1
    Driver: n/a
    DirectShow Filters
    DirectShow Filters:
    WMAudio Decoder DMO,0x00800800,1,1,WMADMOD.DLL,6.01.7601.17514
    WMAPro over S/PDIF DMO,0x00600800,1,1,WMADMOD.DLL,6.01.7601.17514
    WMSpeech Decoder DMO,0x00600800,1,1,WMSPDMOD.DLL,6.01.7601.17514
    MP3 Decoder DMO,0x00600800,1,1,mp3dmod.dll,6.01.7600.16385
    Mpeg4s Decoder DMO,0x00800001,1,1,mp4sdecd.dll,6.01.7600.16385
    WMV Screen decoder DMO,0x00600800,1,1,wmvsdecd.dll,6.01.7601.17514
    WMVideo Decoder DMO,0x00800001,1,1,wmvdecod.dll,6.01.7601.17514
    Mpeg43 Decoder DMO,0x00800001,1,1,mp43decd.dll,6.01.7600.16385
    Mpeg4 Decoder DMO,0x00800001,1,1,mpg4decd.dll,6.01.7600.16385
    CyberLink Audio Decoder (HP),0x00201000,1,1,Claud.ax,8.04.0000.2822
    MSDVD Audio Wizard (HP),0x00200001,1,1,CLAudWizard.ax,1.00.0000.4414
    WMT VIH2 Fix,0x00200000,1,1,WLXVAFilt.dll,15.04.3538.0513
    Record Queue,0x00200000,1,1,WLXVAFilt.dll,15.04.3538.0513
    WMT Switch Filter,0x00200000,1,1,WLXVAFilt.dll,15.04.3538.0513
    WMT Virtual Renderer,0x00200000,1,0,WLXVAFilt.dll,15.04.3538.0513
    WMT DV Extract,0x00200000,1,1,WLXVAFilt.dll,15.04.3538.0513
    WMT Virtual Source,0x00200000,0,1,WLXVAFilt.dll,15.04.3538.0513
    WMT Sample Information Filter,0x00200000,1,1,WLXVAFilt.dll,15.04.3538.0513
    CyberLink MPEG Video Encoder,0x00200000,1,1,P2GVidEnc.ax,6.00.0001.2226
    CyberLink MP3/WAV Wrapper,0x00200000,1,1,P2GMP3Wrap.ax,3.07.0000.1314
    CyberLink Line21 Decoder Filter (HP),0x00200000,0,2,CLLine21.ax,4.00.0000.10324
    DV Muxer,0x00400000,0,0,qdv.dll,6.06.7601.17514
    CyberLink AudioCD Filter,0x00200000,0,1,P2GAudioCD.ax,5.00.0000.1321
    Color Space Converter,0x00400001,1,1,quartz.dll,6.06.7601.17514
    WM ASF Reader,0x00400000,0,0,qasf.dll,12.00.7601.17514
    Screen Capture filter,0x00200000,0,1,wmpsrcwp.dll,12.00.7601.17514
    AVI Splitter,0x00600000,1,1,quartz.dll,6.06.7601.17514
    VGA 16 Color Ditherer,0x00400000,1,1,quartz.dll,6.06.7601.17514
    SBE2MediaTypeProfile,0x00200000,0,0,sbe.dll,6.06.7601.17528
    Indeo® video 5.10 Compression Filter,0x00200000,1,1,ir50_32.dll,5.2562.0015.0055
    CyberLink Editing Service 3.0 (Source),0x00200000,0,2,P2GEdtKrn.dll,3.00.0000.2911
    Microsoft DTV-DVD Video Decoder,0x005fffff,2,4,msmpeg2vdec.dll,6.01.7140.0000
    DS Video Buffer Filter,0x00200000,1,1,DSBuffer_Video.ax,1.02.0015.0000
    AC3 Parser Filter,0x00600000,1,1,mpg2splt.ax,6.06.7601.17528
    StreamBufferSink,0x00200000,0,0,sbe.dll,6.06.7601.17528
    MJPEG Decompressor,0x00600000,1,1,quartz.dll,6.06.7601.17514
    Indeo® video 5.10 Decompression Filter,0x00640000,1,1,ir50_32.dll,5.2562.0015.0055
    MPEG-I Stream Splitter,0x00600000,1,2,quartz.dll,6.06.7601.17514
    SAMI (CC) Parser,0x00400000,1,1,quartz.dll,6.06.7601.17514
    P2G Video Decoder,0x00200000,2,3,P2GVSD.ax,6.00.0000.2310
    MainConcept AAC Encoder,0x00100000,1,1,mc_enc_aac_ds.ax,8.00.0000.43595
    VBI Codec,0x00600000,1,4,VBICodec.ax,6.06.7601.17514
    MPEG-2 Splitter,0x005fffff,1,0,mpg2splt.ax,6.06.7601.17528
    Closed Captions Analysis Filter,0x00200000,2,5,cca.dll,6.06.7601.17514
    SBE2FileScan,0x00200000,0,0,sbe.dll,6.06.7601.17528
    Microsoft MPEG-2 Video Encoder,0x00200000,1,1,msmpeg2enc.dll,6.01.7601.17514
    Internal Script Command Renderer,0x00800001,1,0,quartz.dll,6.06.7601.17514
    CyberLink Video Regulator,0x00200000,1,1,P2GRGL.ax,2.00.0000.3328
    P2G Audio Decoder,0x00200000,1,1,P2GAud.ax,6.01.0000.3601
    MPEG Audio Decoder,0x03680001,1,1,quartz.dll,6.06.7601.17514
    DV Splitter,0x00600000,1,2,qdv.dll,6.06.7601.17514
    Video Mixing Renderer 9,0x00200000,1,0,quartz.dll,6.06.7601.17514
    CyberLink Video Effect,0x00200000,1,1,P2GVidFx.ax,1.00.0000.2030
    Cyberlink SubTitle(HP),0x00200000,2,1,CLSubTitle.ax,1.00.0001.7222
    CyberLink Audio Noise Reduction,0x00200000,1,1,P2GAuNRWrapper.ax,2.00.0000.1017
    Microsoft MPEG-2 Encoder,0x00200000,2,1,msmpeg2enc.dll,6.01.7601.17514
    CyberLink Load Image Filter,0x00200000,0,1,CLImage.ax,3.00.0000.2307
    CyberLink MPEG-2 Splitter,0x00200000,1,2,P2Gm2spliter.ax,2.04.0000.2301
    CyberLink Audio VolumeBooster,0x00200000,1,1,P2GVB.ax,1.00.0000.1008
    ACM Wrapper,0x00600000,1,1,quartz.dll,6.06.7601.17514
    Video Renderer,0x00800001,1,0,quartz.dll,6.06.7601.17514
    MPEG-2 Video Stream Analyzer,0x00200000,0,0,sbe.dll,6.06.7601.17528
    Cyberlink Dump Dispatch Filter,0x00200000,1,0,P2GDumpDispatch.ax,1.02.0001.2412
    MainConcept Network Renderer,0x00200000,1,0,mc_net_renderer_ds.ax,8.00.0000.43134
    Line 21 Decoder,0x00600000,1,1,qdvd.dll,6.06.7601.17514
    Video Port Manager,0x00600000,2,1,quartz.dll,6.06.7601.17514
    Video Renderer,0x00400000,1,0,quartz.dll,6.06.7601.17514
    CyberLink Audio Effect (HP),0x00200000,1,1,ClAudFx.ax,6.00.0000.7209
    CyberLink Audio Resampler,0x00200000,1,1,P2GAuRsmpl.ax,1.00.0000.2625
    File Writer,0x00200000,1,0,WLXVAFilt.dll,15.04.3538.0513
    VPS Decoder,0x00200000,0,0,WSTPager.ax,6.06.7601.17514
    WM ASF Writer,0x00400000,0,0,qasf.dll,12.00.7601.17514
    CyberLink MPEG-1 Splitter,0x00200000,1,2,P2Gm1spliter.ax,2.04.0000.2301
    CyberLink Tzan Filter (HP),0x00200000,1,1,CLTzan.ax,3.05.0000.2722
    VBI Surface Allocator,0x00600000,1,1,vbisurf.ax,6.01.7601.17514
    File writer,0x00200000,1,0,qcap.dll,6.06.7601.17514
    iTV Data Sink,0x00600000,1,0,itvdata.dll,6.06.7601.17514
    iTV Data Capture filter,0x00600000,1,1,itvdata.dll,6.06.7601.17514
    Cyberlink File Reader (Async.),0x00200000,0,1,P2GReader.ax,3.00.0000.3016
    CyberLink M2V Writer,0x00200000,1,0,P2GM2VWriter.ax,1.03.0000.2017
    Cyberlink Dump Filter,0x00200000,1,0,P2GDump.ax,3.00.0000.7122
    CyberLink Video Stabilizer,0x00200000,1,1,P2GVideoStabilizer.ax,1.00.0000.1017
    CyberLink DVD Navigator (HP),0x00200000,0,3,CLNavX.ax,8.00.0000.4023
    CyberLink PCM Wrapper,0x00200000,1,1,P2GPCMEnc.ax,1.01.0000.0321
    DVD Navigator,0x00200000,0,3,qdvd.dll,6.06.7601.17514
    Overlay Mixer2,0x00200000,1,1,qdvd.dll,6.06.7601.17514
    AVI Draw,0x00600064,9,1,quartz.dll,6.06.7601.17514
    RDP DShow Redirection Filter,0xffffffff,1,0,DShowRdpFilter.dll,
    Microsoft MPEG-2 Audio Encoder,0x00200000,1,1,msmpeg2enc.dll,6.01.7601.17514
    WST Pager,0x00200000,1,1,WSTPager.ax,6.06.7601.17514
    MPEG-2 Demultiplexer,0x00600000,1,1,mpg2splt.ax,6.06.7601.17528
    DV Video Decoder,0x00800000,1,1,qdv.dll,6.06.7601.17514
    SampleGrabber,0x00200000,1,1,qedit.dll,6.06.7601.17514
    Null Renderer,0x00200000,1,0,qedit.dll,6.06.7601.17514
    MPEG-2 Sections and Tables,0x005fffff,1,0,Mpeg2Data.ax,6.06.7601.17514
    Microsoft AC3 Encoder,0x00200000,1,1,msac3enc.dll,6.01.7601.17514
    StreamBufferSource,0x00200000,0,0,sbe.dll,6.06.7601.17528
    CyberLink TimeStretch Filter (CES),0x00200000,1,1,P2Gauts.ax,1.00.0000.2212
    Smart Tee,0x00200000,1,2,qcap.dll,6.06.7601.17514
    Overlay Mixer,0x00200000,0,0,qdvd.dll,6.06.7601.17514
    CyberLink TL MPEG Splitter,0x00200000,1,2,P2GTLMSplter.ax,3.02.0000.2219
    AVI Decompressor,0x00600000,1,1,quartz.dll,6.06.7601.17514
    CyberLink MPEG Muxer,0x00200000,2,1,P2GMpgMux.ax,5.01.0000.1723
    MainConcept MPEG Multiplexer-Plus,0x00200000,1,1,mcmpeg2mux.ax,7.06.0000.35746
    CyberLink Video/SP Decoder (HP),0x00200000,2,3,CLVsd.ax,8.04.0000.1622
    WD Audio Filter,0x00200000,0,1,WDAudioFilter.dll,1.02.0015.0000
    AVI/WAV File Source,0x00400000,0,2,quartz.dll,6.06.7601.17514
    Wave Parser,0x00400000,1,1,quartz.dll,6.06.7601.17514
    MIDI Parser,0x00400000,1,1,quartz.dll,6.06.7601.17514
    Multi-file Parser,0x00400000,1,1,quartz.dll,6.06.7601.17514
    File stream renderer,0x00400000,1,1,quartz.dll,6.06.7601.17514
    Microsoft DTV-DVD Audio Decoder,0x005fffff,1,1,msmpeg2adec.dll,6.01.7140.0000
    StreamBufferSink2,0x00200000,0,0,sbe.dll,6.06.7601.17528
    AVI Mux,0x00200000,1,0,qcap.dll,6.06.7601.17514
    Line 21 Decoder 2,0x00600002,1,1,quartz.dll,6.06.7601.17514
    File Source (Async.),0x00400000,0,1,quartz.dll,6.06.7601.17514
    File Source (URL),0x00400000,0,1,quartz.dll,6.06.7601.17514
    P2G Video Regulator,0x00200000,1,1,P2GResample.ax,2.05.0000.1818
    WDSource Filter,0x00200000,0,1,WDSourceFilter.dll,1.02.0015.0000
    P2G Audio Encoder,0x00200000,2,0,P2GAudEnc.ax,2.00.0000.4815
    Infinite Pin Tee Filter,0x00200000,1,1,qcap.dll,6.06.7601.17514
    Enhanced Video Renderer,0x00200000,1,0,evr.dll,6.01.7601.17514
    BDA MPEG2 Transport Information Filter,0x00200000,2,0,psisrndr.ax,6.06.7601.17514
    MPEG Video Decoder,0x40000001,1,1,quartz.dll,6.06.7601.17514
    CyberLink MPEG Decoder,0x00200000,2,3,P2GMVD.ax,5.00.0000.0929
    WDM Streaming Tee/Splitter Devices:
    Tee/Sink-to-Sink Converter,0x00200000,1,1,ksproxy.ax,6.01.7601.17514
    Video Compressors:
    Ligos MPEG-2 Encoder (Intel) v1.9-MT,0x00000000,1,1,LigosDMOVid.dll,1.02.0015.0000
    WMVideo8 Encoder DMO,0x00600800,1,1,wmvxencd.dll,6.01.7600.16385
    WMVideo9 Encoder DMO,0x00600800,1,1,wmvencod.dll,6.01.7600.16385
    MSScreen 9 encoder DMO,0x00600800,1,1,wmvsencd.dll,6.01.7600.16385
    DV Video Encoder,0x00200000,0,0,qdv.dll,6.06.7601.17514
    Indeo® video 5.10 Compression Filter,0x00100000,1,1,ir50_32.dll,5.2562.0015.0055
    MJPEG Compressor,0x00200000,0,0,quartz.dll,6.06.7601.17514
    Cinepak Codec by Radius,0x00200000,1,1,qcap.dll,6.06.7601.17514
    Intel IYUV codec,0x00200000,1,1,qcap.dll,6.06.7601.17514
    Indeo® video 5.10,0x00200000,1,1,qcap.dll,6.06.7601.17514
    Intel IYUV codec,0x00200000,1,1,qcap.dll,6.06.7601.17514
    Microsoft RLE,0x00200000,1,1,qcap.dll,6.06.7601.17514
    Microsoft Video 1,0x00200000,1,1,qcap.dll,6.06.7601.17514
    Audio Compressors:
    WM Speech Encoder DMO,0x00600800,1,1,WMSPDMOE.DLL,6.01.7600.16385
    WMAudio Encoder DMO,0x00600800,1,1,WMADMOE.DLL,6.01.7600.16385
    MainConcept AAC Encoder,0x00100000,1,1,mc_enc_aac_ds.ax,8.00.0000.43595
    IMA ADPCM,0x00200000,1,1,quartz.dll,6.06.7601.17514
    PCM,0x00200000,1,1,quartz.dll,6.06.7601.17514
    Microsoft ADPCM,0x00200000,1,1,quartz.dll,6.06.7601.17514
    GSM 6.10,0x00200000,1,1,quartz.dll,6.06.7601.17514
    Messenger Audio Codec,0x00200000,1,1,quartz.dll,6.06.7601.17514
    CCITT A-Law,0x00200000,1,1,quartz.dll,6.06.7601.17514
    CCITT u-Law,0x00200000,1,1,quartz.dll,6.06.7601.17514
    MPEG Layer-3,0x00200000,1,1,quartz.dll,6.06.7601.17514
    Audio Capture Sources:
    Headset Mic (IDT High Definitio,0x00200000,0,0,qcap.dll,6.06.7601.17514
    Internal Mic (IDT High Definiti,0x00200000,0,0,qcap.dll,6.06.7601.17514
    Microphone (Screaming Bee Audio,0x00200000,0,0,qcap.dll,6.06.7601.17514
    Stereo Mix (IDT High Definition,0x00200000,0,0,qcap.dll,6.06.7601.17514
    PBDA CP Filters:
    PBDA DTFilter,0x00600000,1,1,CPFilters.dll,6.06.7601.17528
    PBDA ETFilter,0x00200000,0,0,CPFilters.dll,6.06.7601.17528
    PBDA PTFilter,0x00200000,0,0,CPFilters.dll,6.06.7601.17528
    Midi Renderers:
    Default MidiOut Device,0x00800000,1,0,quartz.dll,6.06.7601.17514
    Microsoft GS Wavetable Synth,0x00200000,1,0,quartz.dll,6.06.7601.17514
    WDM Streaming Capture Devices:
    ,0x00000000,0,0,,
    MuxedIn1,0x00200000,1,1,ksproxy.ax,6.01.7601.17514
    MuxedIn,0x00200000,1,1,ksproxy.ax,6.01.7601.17514
    ,0x00000000,0,0,,
    HP Webcam Splitter,0x00200000,0,1,ksproxy.ax,6.01.7601.17514
    ManyCam Virtual Webcam,0x00200000,1,2,ksproxy.ax,6.01.7601.17514
    Screaming Bee Wave,0x00200000,1,1,ksproxy.ax,6.01.7601.17514
    HP Webcam,0x00200000,1,1,ksproxy.ax,6.01.7601.17514
    WDM Streaming Rendering Devices:
    HpOut,0x00200000,1,1,ksproxy.ax,6.01.7601.17514
    ,0x00000000,0,0,,
    ,0x00000000,0,0,,
    Speaker,0x00200000,1,1,ksproxy.ax,6.01.7601.17514
    ,0x00000000,0,0,,
    BDA Network Providers:
    Microsoft ATSC Network Provider,0x00200000,0,1,MSDvbNP.ax,6.06.7601.17514
    Microsoft DVBC Network Provider,0x00200000,0,1,MSDvbNP.ax,6.06.7601.17514
    Microsoft DVBS Network Provider,0x00200000,0,1,MSDvbNP.ax,6.06.7601.17514
    Microsoft DVBT Network Provider,0x00200000,0,1,MSDvbNP.ax,6.06.7601.17514
    Microsoft Network Provider,0x00200000,0,1,MSNP.ax,6.06.7601.17514
    Video Capture Sources:
    HP Webcam Splitter,0x00200000,0,1,ksproxy.ax,6.01.7601.17514
    ManyCam Virtual Webcam,0x00200000,1,2,ksproxy.ax,6.01.7601.17514
    HP Webcam,0x00200000,1,1,ksproxy.ax,6.01.7601.17514
    ManyCam Video Source,0x00200000,0,2,VideoSrcroq.dll,2.06.0000.0055
    Multi-Instance Capable VBI Codecs:
    VBI Codec,0x00600000,1,4,VBICodec.ax,6.06.7601.17514
    BDA Transport Information Renderers:
    BDA MPEG2 Transport Information Filter,0x00600000,2,0,psisrndr.ax,6.06.7601.17514
    MPEG-2 Sections and Tables,0x00600000,1,0,Mpeg2Data.ax,6.06.7601.17514
    BDA CP/CA Filters:
    Decrypt/Tag,0x00600000,1,1,EncDec.dll,6.06.7601.17528
    Encrypt/Tag,0x00200000,0,0,EncDec.dll,6.06.7601.17528
    PTFilter,0x00200000,0,0,EncDec.dll,6.06.7601.17528
    XDS Codec,0x00200000,0,0,EncDec.dll,6.06.7601.17528
    WDM Streaming Communication Transforms:
    Tee/Sink-to-Sink Converter,0x00200000,1,1,ksproxy.ax,6.01.7601.17514
    Audio Renderers:
    Speakers and Headphones (IDT Hi,0x00200000,1,0,quartz.dll,6.06.7601.17514
    CyberLink Audio Renderer (HP),0x00200000,1,0,cladr.ax,7.00.0000.2519
    Communications Headphones (IDT ,0x00200000,1,0,quartz.dll,6.06.7601.17514
    Default DirectSound Device,0x00800000,1,0,quartz.dll,6.06.7601.17514
    Default WaveOut Device,0x00200000,1,0,quartz.dll,6.06.7601.17514
    DirectSound: Communications Headphones (IDT High Definition Audio CODEC),0x00200000,1,0,quartz.dll,6.06.7601.17514
    DirectSound: Speakers and Headphones (IDT High Definition Audio CODEC),0x00200000,1,0,quartz.dll,6.06.7601.17514
    EVR Power Information
    Current Setting: {5C67A112-A4C9-483F-B4A7-1D473BECAFDC} (Quality)
    Quality Flags: 2576
    Enabled:
    Force throttling
    Allow half deinterlace
    Allow scaling
    Decode Power Usage: 100
    Balanced Flags: 1424
    Enabled:
    Force throttling
    Allow batching
    Force half deinterlace
    Force scaling
    Decode Power Usage: 50
    PowerFlags: 1424
    Enabled:
    Force throttling
    Allow batching
    Force half deinterlace
    Force scaling
    Decode Power Usage: 0

    System board for use in models with 1 GB of discrete graphics memory 616244-001
    System board for use in models with 512 MB of discrete graphics memory 608203-001
    System board for use in models with UMA graphics 608204-001
    http://h10032.www1.hp.com/ctg/Manual/c02437489.pdf
    Graphics is built into the motherboard.
    Can only upgrade with new motherboard.
    Only a few laptops have graphics cards that can be up graded. "Like Alienware"
    Good luck.
    HP Expert Tester "Now testing HP Pavilion 15t i3-4030U Win8.1, 6GB RAM and 750GB HDD"
    Loaner Program”HP Split 13 x2 13r010dx i3-4012Y Win8.1, 4GB RAM and 500GB Hybrid HDD”
    Microsoft Registered Refurbisher
    Registered Microsoft Partner
    Apple Certified Macintosh Technician Certification in progress.

  • IE + SVG = "Cannot display XML page" ?

    Dear friends,
       I am from Taiwan.  I have a question about SVG display on IE. 
       I have a very simply SVG file as the following code.  I installed Ferdora R12 with apache web server (192.168.0.8) inside my company.
    I installed Tomcat 6.0 on my PC(192.168.0.100, window 7 with IE8.0).  I put this SVG file on Fedora, and I can see the vector graphs through
    Chrome and Firefox, but not IE(already installed SVG viewer, with the error message as following).  I put this SVG file on my PC, I can see the vector graphs by IE, Chrome and Firefox through Tomcat or opening file directly. I even put this SVG file on the web server of my company, and vector graphs can be displayed well through all of IE, Chrome and Firefox.
      The problem seems only happen in the situation "Fedora R12 + IE".  Do you have any idea of this problem?  I really need your help.
      Thank you.
    ======= Code =============
    <?xml version="1.0" encoding="UTF-8" standalone="no"?>
    <!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.//EN"
    "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
    <svg id="svg00" version="1.1" xmlns="http://www.w3.org/2000/svg" >
    <svg id="svg01" x="0" y="0" width="654.1" height="654.1" version="1.1" xmlns="http://www.w3.org/2000/svg"
    xmlns:xlink="http://www.w3.org/1999/xlink">
        <a xlink:href="http://www.w3.org//Graphics//SVG//Overview.htm8">
            <rect x="10" y="10" width="100" height="30" rx="10" ry="10"
                  style="fill:lightgrey"/>
            <text x="30" y="30" font-size="12">Click here</text>
        </a>
        <a xlink:href="http://www.ibm.com//developerworks/">
            <circle cx="100" cy="100" r="50" style="fill:grey"/>
            <text x="80" y="100" font-size="12">Or here</text>
        </a>
        <a xlink:href="http://www.ibm.com/" target="new">
            <polygon
                  points="60 160,165 172,180 60,290 290,272 280,172 285,250 255"
                  style="fill:dimgrey"/>
            <text x="160" y="200" font-size="12">Or even here</text>
        </a>
    </svg>
    </svg>
    ==========================
    The error message is in Chinese, but I translate it as possible as I can.
    ====== Error message ==========
    Cannot display XML page
    Cannot use style table (or form) to view XML input. Please correct this problem and reload this page, or try again later.
    Unidentified error with processing resourse
    There is something wrong with 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd'
    =============================

    Hi,
    The string is not correctly formed ( a quote and a concatenation ) :
    Your url :
    v_url:=nvl(v_rep_port,'http://'||v_rep_HOST ||':'||v_rep_port||')||'/reports/rwservlet/getjobid'||substr(v_rep,instr(v_rep,'_',-1)+1)||'?'||'server='||v_rep_svr;
    The Correction :
    v_url:=nvl(v_rep_port,'http://'||v_rep_HOST ||':'||v_rep_port)||'/reports/rwservlet/getjobid'||substr(v_rep,instr(v_rep,'_',-1)+1)||'?'||'server='||v_rep_svr;
    Hope it helps
    Mohamed Dadi

  • SVG file with links to other SVG files - links don't work

    I have an SVG image with a few dozen linked images, all of which are pointing to external SVG files. If I open the main SVG in a web browser, it loads up correctly with all the linked images, so I know the file is correct.
    When I open it in illustrator, I get the following message:
    Could not find a plug-in to read the linked file "test.svg". Choose Replace to select another file or Ignore to leave the link unchanged.
    If I choose Ignore, the file loads up but the linked SVGs are removed. Obviously Illustrator doesn't really need a plugin to read an SVG file, because it loads the main SVG with no problem.
    Meanwhile I have other links pointing to PNG files which all work fine. In fact I can open the main SVG, find one of the PNG links, and click Re-Link, and then link them to an SVG, and this will work! Although it doesn't work as desired, instead of making a link, it seems to import the external SVG's layers, which is not desired.
    I'm pretty sure it's just one of those things that will never work, but does anyone have any thoughts on making it work?
    FYI here's some source code from the main SVG, where it links to the external SVG:
    <image overflow="visible" width="420" height="300" id="_x30_1_13_" xlink:href="images\graphics\SVG\test.svg"  transform="matrix(0.2534 0 0 0.2534 438.8486 458.8145)">
                        </image>
    this link, to a PNG, works just fine:
    <image overflow="visible" width="420" height="300" id="_x30_1_14_" xlink:href="images\graphics\211.png"  transform="matrix(0.2534 0 0 0.2534 246.3306 458.8145)">
                        </image>
    and like I said, both links work fine when the main SVG is opened in a web browser.

    I think the problem is that illustrator just isn't capable of linking to an SVG from within an SVG. Try it yourself with two very simple files, I just did.
    create a "main.svg" with just a line
    create a "link.svg" with another line
    save a copy of link.svg as link.png (using export to web)
    -- now you have three files, put them all in the same directory just to make life easy
    in main.svg, file >> place >> link.png
    -- illustrator will place the PNG as a linked image
    in main.svg, file >> place >> link.svg
    -- illustrator will import layers from the SVG, it will not place it as a linked image
    If you save this file and open in a text editor, you'll see your image link to the PNG file, and you'll see two <line/> elements, one that you had in main.svg and another that you had in link.svg (it has now been imported into main.svg)
    In the text editor, try duplicating the image link, and change the href of your duplicate to link.svg, then save.
    Re-open main.svg in illustrator. It should give you the error message about the linked svg, the same one I saw originally.
    I did all this using CS6. Then I tried opening the final main.svg file in CC and saw the same error message.

  • SVG text doesn't display correctly in Illustrator

    The following SVG (generated via Cairo) displays correctly within browsers (Firefox and Safari), but not within Illustrator: the glyph symbols are drawn at the wrong scale, upside-down, and on top of one another. Is the problem within the SVG file itself? That doesn't seem likely, given that the browsers have no problem with the file. If the problem is within Illustrator... what is the root of the problem, and is there any possible workaround?
    <?xml version="1.0" encoding="UTF-8"?>
    <svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="700pt" height="700pt" viewBox="0 0 700 700" version="1.1">
    <defs>
    <g>
    <symbol overflow="visible" id="glyph0-0">
    <path style="stroke:none;" d="M 11.3125 -9.078125 C 8.914062 -9.078125 7.253906 -8.800781 6.328125 -8.25 C 5.410156 -7.695312 4.953125 -6.765625 4.953125 -5.453125 C 4.953125 -4.398438 5.296875 -3.5625 5.984375 -2.9375 C 6.679688 -2.320
    312 7.625 -2.015625 8.8125 -2.015625 C 10.457031 -2.015625 11.773438 -2.597656 12.765625 -3.765625 C 13.765625 -4.929688 14.265625 -6.476562 14.265625 -8.40625 L 14.265625 -9.078125 Z M 17.21875 -10.296875 L 17.21875 0 L 14.265625 0 L 1
    4.265625 -2.734375 C 13.585938 -1.640625 12.742188 -0.832031 11.734375 -0.3125 C 10.722656 0.207031 9.488281 0.46875 8.03125 0.46875 C 6.175781 0.46875 4.703125 -0.046875 3.609375 -1.078125 C 2.523438 -2.117188 1.984375 -3.507812 1.9843
    75 -5.25 C 1.984375 -7.28125 2.660156 -8.8125 4.015625 -9.84375 C 5.378906 -10.875 7.410156 -11.390625 10.109375 -11.390625 L 14.265625 -11.390625 L 14.265625 -11.6875 C 14.265625 -13.050781 13.8125 -14.101562 12.90625 -14.84375 C 12.00
    7812 -15.59375 10.753906 -15.96875 9.140625 -15.96875 C 8.109375 -15.96875 7.101562 -15.84375 6.125 -15.59375 C 5.144531 -15.351562 4.203125 -14.984375 3.296875 -14.484375 L 3.296875 -17.21875 C 4.390625 -17.644531 5.445312 -17.960938 6
    .46875 -18.171875 C 7.488281 -18.378906 8.476562 -18.484375 9.4375 -18.484375 C 12.050781 -18.484375 14 -17.804688 15.28125 -16.453125 C 16.570312 -15.097656 17.21875 -13.046875 17.21875 -10.296875 Z M 17.21875 -10.296875 "/>
    </symbol>
    <symbol overflow="visible" id="glyph0-1">
    <path style="stroke:none;" d="M 16.0625 -9 C 16.0625 -11.1875 15.613281 -12.898438 14.71875 -14.140625 C 13.820312 -15.378906 12.585938 -16 11.015625 -16 C 9.453125 -16 8.222656 -15.378906 7.328125 -14.140625 C 6.429688 -12.898438 5.984
    375 -11.1875 5.984375 -9 C 5.984375 -6.820312 6.429688 -5.113281 7.328125 -3.875 C 8.222656 -2.632812 9.453125 -2.015625 11.015625 -2.015625 C 12.585938 -2.015625 13.820312 -2.632812 14.71875 -3.875 C 15.613281 -5.113281 16.0625 -6.8203
    12 16.0625 -9 Z M 5.984375 -15.3125 C 6.597656 -16.382812 7.378906 -17.179688 8.328125 -17.703125 C 9.285156 -18.222656 10.425781 -18.484375 11.75 -18.484375 C 13.9375 -18.484375 15.710938 -17.613281 17.078125 -15.875 C 18.453125 -14.13
    2812 19.140625 -11.84375 19.140625 -9 C 19.140625 -6.164062 18.453125 -3.878906 17.078125 -2.140625 C 15.710938 -0.398438 13.9375 0.46875 11.75 0.46875 C 10.425781 0.46875 9.285156 0.207031 8.328125 -0.3125 C 7.378906 -0.832031 6.597656
    -1.628906 5.984375 -2.703125 L 5.984375 0 L 3 0 L 3 -25.078125 L 5.984375 -25.078125 Z M 5.984375 -15.3125 "/>
    </symbol>
    <symbol overflow="visible" id="glyph0-2">
    <path style="stroke:none;" d="M 16.09375 -17.359375 L 16.09375 -14.578125 C 15.257812 -15.046875 14.421875 -15.394531 13.578125 -15.625 C 12.734375 -15.851562 11.878906 -15.96875 11.015625 -15.96875 C 9.097656 -15.96875 7.609375 -15.359
    375 6.546875 -14.140625 C 5.484375 -12.921875 4.953125 -11.207031 4.953125 -9 C 4.953125 -6.800781 5.484375 -5.09375 6.546875 -3.875 C 7.609375 -2.65625 9.097656 -2.046875 11.015625 -2.046875 C 11.878906 -2.046875 12.734375 -2.160156 13
    .578125 -2.390625 C 14.421875 -2.617188 15.257812 -2.96875 16.09375 -3.4375 L 16.09375 -0.6875 C 15.269531 -0.300781 14.414062 -0.015625 13.53125 0.171875 C 12.644531 0.367188 11.703125 0.46875 10.703125 0.46875 C 7.984375 0.46875 5.820
    312 -0.382812 4.21875 -2.09375 C 2.625 -3.800781 1.828125 -6.101562 1.828125 -9 C 1.828125 -11.945312 2.632812 -14.265625 4.25 -15.953125 C 5.863281 -17.640625 8.078125 -18.484375 10.890625 -18.484375 C 11.804688 -18.484375 12.695312 -1
    8.390625 13.5625 -18.203125 C 14.4375 -18.015625 15.28125 -17.734375 16.09375 -17.359375 Z M 16.09375 -17.359375 "/>
    </symbol>
    </g>
    </defs>
    <g id="surface1">
    <g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
      <use xlink:href="#glyph0-0" x="100" y="130.94043"/>
      <use xlink:href="#glyph0-1" x="120.222656" y="130.94043"/>
      <use xlink:href="#glyph0-2" x="141.169922" y="130.94043"/>
    </g>
    </g>
    </svg>

    Yes, a browser displays it fine. But they also often display invalid html code fine. Your code does validate. And InkScape does open it fine. InkScape does have it in the root rather than on a layer, don't know if that is making a difference to Illustrator or not. Nothing else I have that opens SVG files deals with it as well as Illustrator.
    Here is the same file, text put back and resized down a bit. Run it through validation. You'll note Illustrator does not use the MathML 2.0 extensions. Perhaps that is the hang up.
    <?xml version="1.0" encoding="utf-8"?>
    <!-- Generator: Adobe Illustrator 15.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0)  -->
    <!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
    <svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
    width="612px" height="792px" viewBox="0 0 612 792" enable-background="new 0 0 612 792" xml:space="preserve">
    <symbol  id="glyph0-0" viewBox="-7.617 -9.477 15.234 18.953">
    <path id="path9_1_" fill="#010101" d="M1.711-0.07c-2.398,0-4.059,0.277-4.984,0.828c-0.918,0.555-1.375,1.484-1.375,2.797
    c0,1.055,0.344,1.891,1.031,2.516c0.695,0.617,1.641,0.922,2.828,0.922c1.645,0,2.961-0.582, 3.953-1.75
    c1-1.164,1.5-2.711,1.5-4.641V-0.07H1.711z M7.617-1.289V9.008H4.664V6.273c-0.68,1.094-1.523,1.902-2.531,2.422
    C1.121,9.215-0.113,9.477-1.57,9.477c-1.855,0-3.328-0.516-4.422-1.547C-7.078,6.891-7.617,5 .5-7.617,3.758
    c0-2.031,0.676-3.563,2.031-4.594c1.363-1.031,3.395-1.547,6.094-1.547h4.156V-2.68c0-1.363- 0.453-2.414-1.359-3.156
    c-0.898-0.75-2.152-1.125-3.766-1.125c-1.031,0-2.039,0.125-3.016,0.375c-0.98,0.242-1.922,0 .609-2.828,1.109v-2.734
    c1.094-0.426,2.148-0.742,3.172-0.953c1.02-0.207,2.008-0.313,2.969-0.313c2.613,0,4.563,0.6 8,5.844,2.031
    C6.969-6.09,7.617-4.039,7.617-1.289z"/>
    </symbol>
    <symbol  id="glyph0-1" viewBox="-8.07 -12.773 16.141 25.547">
    <path id="path12_1_" fill="#010101" d="M4.992,3.305c0-2.188-0.449-3.898-1.344-5.141C2.75-3.074,1.516-3.695-0.055-3.695
    c-1.563,0-2.793,0.621-3.688,1.859c-0.898,1.242-1.344,2.953-1.344,5.141c0,2.18,0.445,3.887 ,1.344,5.125
    c0.895,1.242,2.125,1.859,3.688,1.859c1.57,0,2.805-0.617,3.703-1.859C4.543,7.191,4.992,5.4 84,4.992,3.305z M-5.086-3.008
    c0.613-1.07,1.395-1.867,2.344-2.391C-1.785-5.918-0.645-6.18,0.68-6.18c2.188,0,3.961,0.871 ,5.328,2.609
    C7.383-1.828,8.07,0.461,8.07,3.305c0,2.836-0.688,5.121-2.063,6.859c-1.367,1.742-3.141,2.6 09-5.328,2.609
    c-1.324,0-2.465-0.262-3.422-0.781c-0.949-0.52-1.73-1.316-2.344-2.391v2.703H-8.07v-25.078h 2.984V-3.008z"/>
    </symbol>
    <symbol  id="glyph0-2" viewBox="-7.133 -9.477 14.266 18.953">
    <path id="path15_1_" fill="#010101" d="M7.133-8.352v2.781C6.297-6.039,5.461-6.387,4.617-6.617
    C3.773-6.844,2.918-6.961,2.055-6.961c-1.918,0-3.406,0.609-4.469,1.828s-1.594,2.934-1.594, 5.141c0,2.199,0.531,3.906,1.594,5.125
    s2.551,1.828,4.469,1.828c0.863,0,1.719-0.113,2.563-0.344c0.844-0.227,1.68-0.578,2.516-1.0 47v2.75
    C6.309,8.707,5.453,8.992,4.57,9.18C3.684,9.375,2.742,9.477,1.742,9.477c-2.719,0-4.883-0.8 52-6.484-2.563
    c-1.594-1.707-2.391-4.008-2.391-6.906c0-2.945,0.805-5.266,2.422-6.953c1.613-1.688,3.828-2 .531,6.641-2.531
    c0.914,0,1.805,0.094,2.672,0.281C5.477-9.008,6.32-8.727,7.133-8.352z"/>
    </symbol>
    <use xlink:href="#glyph0-0"  width="15.234" height="18.953" id="use20" x="-7.617" y="-9.477" transform="matrix(6.3499 0 0 6.3499 102.2407 253.0596)" overflow="visible"/>
    <use xlink:href="#glyph0-1"  width="16.141" height="25.547" id="use22" x="-8.07" y="-12.773" transform="matrix(6.2672 0 0 6.2672 218.9004 233.1802)" overflow="visible"/>
    <use xlink:href="#glyph0-2"  width="14.266" height="18.953" id="use24" x="-7.133" y="-9.477" transform="matrix(6.3016 0 0 -6.3016 326.4082 253.5166)" overflow="visible"/>
    </svg>
    Take care, Mike

  • SVG objects with the feSpecularLighting filter effect do not display

    When I open a Scalable Vector Graphics (.svg) file in Firefox, any objects having filters that contain the <feSpecularLighting> filter primitive, do not display at all and in rare cases, even causes Firefox to crash.
    For example:
    *http://upload.wikimedia.org/wikipedia/commons/e/ee/Video_game_health_bar.svg
    It should render like this:
    *http://upload.wikimedia.org/wikipedia/commons/thumb/e/ee/Video_game_health_bar.svg/3000px-Video_game_health_bar.svg.png

    In order to get the SVG file to render like the PNG, you need to edit kernelUnitLength from 0.01 to approximately 1.0 (or delete it). Not sure whether something might have changed in how Firefox handles this attribute to cause such a drastic difference.
    I should test in a clean profile to see whether I get the same result...
    ''Edit: Same result in a clean profile, i.e., no extensions or settings changes from factory default.''

  • How can display svg file by using applet

    Hi ,
    my problem is ..
    1. I have one servlet which is generating svg file by using batik package.
    2.There is one Applet which receives SVG file from Servlet ..
    From here i dont have dont doubts.. then my doubt is
    3. How can display that svg file on the browser..
    please help me if u know any ,
    thanks regards,
    Balu

    Maybe this page can help you?
    http://www.w3c.org/Graphics/SVG/

  • URGENT!!!! help me!Where I can get package com.sun.awt.svg.*

    Hello,everybody!
    I want to know Where I can get package com.sun.awt.svg.* ??

    Requirements
    JDK 1.3 Software -
    To use the Graphics2D SVG Generator, you need to have installed the Java 2 Software Developer's Kit (SDK). You can obtain the Java 2 SDK from the Sun Java 2 web site (http://java.sun.com/j2se/).
    The Graphics2D SVG Generator software was tested with version 1.3, so you should use the same version or a newer one.
    DOM Implementation -
    A DOM level 1 implementation is needed to use the Graphics2D SVG Generator. You can obtain a Java language DOM implementation from the following:
    Apache Xerces (http://xml.apache.org/xerces-j/index.html)
    Sun Microsystem's Project X
    (http://developer.java.sun.com/developer/products/xml)
    You also need to put the corresponding jar files in the classpath. The following table shows commands for doing this.
    Operating System DOM Implementation Command
    Windows 98 Xerces set classpath=%classpath%;
    xercesinstalldir\xerces.jar
    Windows 98 Project X set classpath=%classpath%;
    projectxinstalldir\xml.jar
    UNIX Xerces setenv CLASSPATH ${CLASSPATH}:
    xercesInstallDir/xerces.jar
    UNIX Project X setenv CLASSPATH ${CLASSPATH}:
    projectxinstalldir/xml.jar
    SVG Viewer
    To view the generated SVG files, you need to have an SVG viewer. You can find a list of available SVG viewers at the W3C SVG web site (http://www.w3.org/Graphics/SVG/SVG-Implementations).
    top of the page
    Installing the Graphics2D SVG Generator Software
    IMPORTANT:
    Before installing the software, make sure you agree to the license terms.
    To install the software, perform the following steps:
    Step 1: Uncompress the distribution file in the desired installation directory. Use these commands (from the command line):
    > cd installDir
    > jar xf j2d2svg.zip
    The j2d2svg.jar file expands into a directory (j2d2svg) that contains the following:
    README.html (this file) -- Provides important information about installing and using the Graphics2D SVG Generator.
    svggraphic_license.html -- License agreement.
    svggen.jar -- A jar (java archive) file that contains the SVGGraphics2D classes.
    glf.jar -- A jar file that contains the Graphic Layers Framework classes.
    svggenDoc.jar -- A jar file that contains the software's API documentation in HTML.
    HelloSVG.java -- Example file.
    HelloManipulatedSVG.java -- Example file.
    Step 2: Add svggen.jar to the classpath.
    On Windows, use this command:
    - set classpath=%classpath%;<j2d2svginstalldir>\svggen.jar
    On UNIX, use this command:
    - setenv CLASSPATH=${CLASSPATH}:j2d2svginstalldir/svggen.jar
    To use the Graphic Layer Framework conversion utility (i.e., to use the com.sun.awt.svg.util.GlfSVGPrettyPrint), you will also need to add the glf.jar file to your classpath. However, this is not required to run the examples.

  • SVG is being resized when saved from Illustrator CC

    Hello All!
    I am encountering an issue that has arose since the latest update for Illustrator CC (64-bit). When I come to save a file as an SVG (from my original AI file) the artboard's proportions change, and the size of the SVG changes. I am using Windows 7.
    Any suggestions as to what's going wrong would be welcome!
    Thanks!

    Hi rcbmoose
    Yes, I too am saving out from an original AI file.
    I've located the issue within the SVG code.
    The file should be defaulted to 30x30px, but when the SVG is opened, the image fills the parent space. Here's the SVG code for the problem file:
    <?xml version="1.0" encoding="utf-8"?>
    <!-- Generator: Adobe Illustrator 17.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0)  -->
    <!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
    <svg version="1.1" id="Main_Window" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" viewBox="0 0 30 30" enable-background="new 0 0 30 30" xml:space="preserve">
    <rect fill-rule="evenodd" clip-rule="evenodd" fill="#E8E8E8" width="30" height="30"/>
    <path id="tst_x5F_eml_x5F_scss_x5F_win" fill-rule="evenodd" clip-rule="evenodd" fill="#3D3D3D" d="M26,9.625L15.261,20.375l0,0    l-2.759,2.762l-2.759-2.762l0,0L4,14.627l2.759-2.762l5.742,5.748L23.241,6.864L26,9.625z"/>
    </svg>
    I've found a temporary work around. Here's the file sized correcly:
    <?xml version="1.0" encoding="utf-8"?>
    <!-- Generator: Adobe Illustrator 17.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0)  -->
    <!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
    <svg version="1.1" id="Main_Window" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" width="30" height="30" viewBox="0 0 30 30" enable-background="new 0 0 30 30" xml:space="preserve">
    <rect fill-rule="evenodd" clip-rule="evenodd" fill="#E8E8E8" width="30" height="30"/>
    <path id="tst_x5F_eml_x5F_scss_x5F_win" fill-rule="evenodd" clip-rule="evenodd" fill="#3D3D3D" d="M26,9.625L15.261,20.375l0,0    l-2.759,2.762l-2.759-2.762l0,0L4,14.627l2.759-2.762l5.742,5.748L23.241,6.864L26,9.625z"/>
    </svg>
    The width and height values are missing from the first svg tag (highlighted in code above). You can save your SVG file, and then add these values into the tag yourself via a text editor (i.e. Notepad if you're using windows, or the equivalent on MAC)
    This works, but it's not right that we have to do this. This wasn't nessessary before the latest update.
    Hope this helps.
    Zac

Maybe you are looking for

  • When trying to update in the mac store I get notice that I have updates available for other accounts. I only have one account how do I fix it?

    I saw Brett Terpstra's answer in his quickTip fixing the other account issue in the mac app store issue and followed those directions and still have this issue.  I have only one apple ID and still can't update the basics such as Iphoto...

  • How to download iphoto into an external hard drive

    I have a MacBook Air - PowerBook G4 - 15" 1)  What is the easiest way to download iphotp "PHOTOS" to an external hard drive? 2)  After it has downloaded, I want to leave the photos still in my computer. Can I do that?     will it just happen to be st

  • My webpage does not show on Firefox, but it does on other browsers

    I have a personal website, http://www.kryshu.com that I have created myself on Dreamweaver. I have 7 pages and all except one appear on Firefox. Everything was fine until a couple of months ago when I updated some of the pages, again on Dreamweaver.

  • WMI Scripts not Running Across VPN

    Hi I have a strange problem where i have 2 sites connected  using  a VPN on 2  CISCO877.  But WMI scripts are not running across the link. if i pull these out an replace them with a Draytek, the scripts run fine. Broad Lane LAN ----- Cisco 877 ======

  • Structured mapping

    Hi Is there anything like structure mapping in xi ?? or otherwise whatever the mappings that we use like ABAP, XSLT, JAVA etc .......will be called as structure mapping ?? If I got to choose out of these which XI supports a. Structure Mapping b. Node