How can i create a zip-file with multiple volumes

Hi,
i've to zip a large file (250 MB and more). But the zip file shouldn't be greater than 5 MB, because i have to send the file via E-Mail. So i've thought, that the solution of this problem can be to zip the large file in smaller zip-files, which are multiple volumes of a zip-archive. I've searched very long in WWW, but didn't find something. Perhaps you can help.
Sorry, about the bad english. :-)
Timo Bunger

Hi
Who said your english is bad ?. OK, are you looking for compressing the 250 MB file in to multiple versions using a java program ?. If not, there is a shareware you can download and split the file into multiple parts by specifying size of each part. You can send these parts via email and the other person can combine these parts into a single file again.
Find this @
http://www.freedownloadscenter.com/Utilities/File_Splitting_Utilities/EzSplit.html
You may need to read a bit about it on how to use.
Thanks
Srinivas

Similar Messages

  • How can I create a zip file with LabVIEW?

    I would like to compress my data (ASCII format) to an archive.
    I use LVZlib.vi to compress and decompress data but I would like to be able to read the output file with a software archiver such as PowerArchiver/WinZIP.
    Someone knows how I can create a file compatible with zip or gz standard format, thanks !

    >> Yes but I have to install a special archiver (with ms-dos ommand line ability
    >> such as pkzip,arc,rar,arj...) on the computer where I install my LV application.
    Search for "gnu tools for windows" and get zip.exe, gzip.exe, bzip2.exe and others (even the source, if you like). These are about 50kB files that run in place (no installation) - easy to include in a distributed app. Oh, since I'm logged in I'll attach a couple, though I don't have the source on this machine).
    Attachments:
    bin.zip ‏67 KB

  • How can I create a exe file with a tab control on it that work´s ?

    I have a VI with many controls and indicators,these are spread on a tab control.This tab control works with out any problems but if i create a exe file then the tab control is fixed. How can I create a exe file so that the tab control on it work´s ?

    I have made a new Posting with the same question but this time I added a screenshot of the VI.
    Attachments:
    project7.1.jpg ‏129 KB

  • How can I create a XMP List with multiple selection

    Hello,
    I try to build my own XMP custom panel. Herefore I need a couple of lists with the possibility for multiple selections (e.g. the choice for one language or multiple languages).
    But how is it possible to integrate a list into a panel? There is no XMPList inside the custom folder. I have experimented with the standard mx:list and an array collection for data binding into the list. But how can I write the user selection into an XMP field? Example: In the List the user choose three languages (DE, EN, FR). Is it possible to collect the choice into a string and to write the result into an XMP standard field (e.g. dc:description)?
    A further question is, if it's possible to use the "HTTPService" to bind an external xml-file with the languages and other informations into the panel or is it only possible to work with an array collection inside the code?
    Here is my code:
    <?xml version="1.0" encoding="utf-8"?>
    <fi:XMPForm
              xmlns:mx="http://www.adobe.com/2006/mxml"
              xmlns:fi="com.adobe.xmp.components.*" width="100%" height="100%"
              xmlns:Iptc4xmpCore ="http://iptc.org/std/Iptc4xmpCore/1.0/xmlns/"
              label="XMP-Custom Panel"
              initialize="ds.send()"
              >
         <!-- Each namespace prefix that is used within an xmpPath-attribute,
               MUST BE registered at the top of EACH panel where it is referenced -->
         <fi:XMPNamespaces>
              <fi:XMPNamespace prefix="dc" value="http://purl.org/dc/elements/1.1/"/>
         </fi:XMPNamespaces>
         <fi:XMPForm>
              <mx:HBox width="100%" height="26" verticalAlign="middle">
                   <mx:HRule width="50%"/>
                   <mx:Label text="Allgemeine Metadaten" fontSize="12" fontWeight="bold"/>
                   <fi:XMPSeparator width="50%"/>
              </mx:HBox>
              <fi:XMPFormItem
                        label="Titel"
                        labelTooltip="$$$/xmp/sdk/custompanels/Test/TitleToolTip=Dateiname" fontSize="11" width="100%">
                   <fi:XMPTextInput xmpPath="dc:title" xmpType="Localized" width="100%"/>
              </fi:XMPFormItem>
              <fi:XMPFormItem
                        label="Titel"
                        labelTooltip="$$$/xmp/sdk/custompanels/Test/TitleToolTip=Dateiname" fontSize="11" width="100%">
                   <fi:XMPTextInput xmpPath="dc:title" xmpType="Localized" width="100%"/>
              </fi:XMPFormItem>
              <fi:XMPFormItem
                        label="Druckkennzeichen"
                        labelTooltip="$$$/xmp/sdk/custompanels/Test/TitleToolTip=Dateiname" fontSize="11" width="100%">
                   <fi:XMPTextInput xmpPath="dc:title" xmpType="Localized" width="100%"/>
              </fi:XMPFormItem>
              <fi:XMPFormItem
                        label="Verfasser"
                        labelTooltip="$$$/xmp/sdk/custompanels/Test/TitleToolTip=Erzeuger des Dokumentes" fontSize="11" width="100%">
                   <fi:XMPComboBox xmpPath="dc:creator" width="100%"/>
              </fi:XMPFormItem>
              <fi:XMPFormItem
                        label="Versionsnummer"
                        labelTooltip="$$$/xmp/sdk/custompanels/Test/TitleToolTip=Dateiname" fontSize="11" width="100%">
                   <fi:XMPComboBox xmpPath="dc:creator" width="100%"/>
              </fi:XMPFormItem>
              <mx:HBox width="100%" height="26" verticalAlign="middle">
                   <mx:HRule width="50%"/>
                   <mx:Label text="Enthaltene Sprachen" fontSize="12" fontWeight="bold"/>
                   <fi:XMPSeparator width="50%"/>
              </mx:HBox>
              <!-- Beginn der Auswahl-Liste für die Sprachen -->
                 <mx:Script>
            <![CDATA[
                import flash.events.MouseEvent;
                import mx.controls.Alert;
                import mx.collections.ArrayCollection;
                private const NL:String = "\r";
                // A data provider created by using ActionScript
                [Bindable]
                private var subscriptions:ArrayCollection =
                    new ArrayCollection
                            {data:0, label:"Deutsch"},
                            {data:1, label:"Englisch"},
                            {data:2, label:"Französisch"},
                            {data:3, label:"Italienisch"}
                [Bindable]
                private var market:ArrayCollection =
                    new ArrayCollection
                            {data:0, label:"(Bitte Marktversion auswählen)"},
                            {data:1, label:"Marktversion Deutsch (M_DE)"},
                            {data:2, label:"Marktversion Englisch (M_EN)"},
                            {data:3, label:"Marktversion Frankreich (M_FR)"},
                            {data:4, label:"Marktversion Italien (M_IT)"}
                [Bindable]
                private var documenttyp:ArrayCollection =
                    new ArrayCollection
                            {data:0, label:"(Bitte Dokumenttyp auswählen)"},
                                  {data:1, label:"Gebrauchsanweisung"},
                            {data:2, label:"Ersatzteilkatalog"},
                            {data:3, label:"Service-Anleitung"},
                            {data:4, label:"Etikett"}
            ]]>
        </mx:Script>
                    <fi:XMPFormItem label="Sprachauswahl" width="100%">
                    <mx:List
                        id="userSubscriptions" rowCount="4"
                        allowMultipleSelection="true" width="100%"
                        dataProvider="{subscriptions}"
                    />
                </fi:XMPFormItem>
                    <mx:Text text="* Mehrfachauswahl möglich." fontWeight="normal" fontSize="10"/>
                <!-- Ende der Liste für die Auswahl von Sprachen -->
              <fi:XMPFormItem
                        label="Marktvariante"
                        labelTooltip="$$$/xmp/sdk/custompanels/Test/TitleToolTip=Dateiname" fontSize="11" width="100%">
                   <fi:XMPComboBox xmpPath="dc:creator" width="100%" dataProvider="{market}"/>
              </fi:XMPFormItem>
              <fi:XMPFormItem
                        label="Dokumenttyp"
                        labelTooltip="$$$/xmp/sdk/custompanels/Test/TitleToolTip=Dateiname" fontSize="11" width="100%">
                   <fi:XMPComboBox xmpPath="dc:creator" width="100%" dataProvider="{documenttyp}"/>
              </fi:XMPFormItem>
              <fi:XMPFormItem
                        label="Stichworte"
                        labelTooltip="$$$/xmp/sdk/custompanels/Test/TitleToolTip=Erzeuger des Dokumentes" fontSize="11" width="100%">
                   <fi:XMPTextArea/>
              </fi:XMPFormItem>
              <mx:HBox width="100%" height="26" verticalAlign="middle">
                   <mx:HRule width="50%"/>
                   <mx:Label text="Metadaten Photoshop" fontSize="12" fontWeight="bold"/>
                   <fi:XMPSeparator width="50%"/>
              </mx:HBox>
              <fi:XMPFormItem
                        label="Originalname FA"
                        labelTooltip="$$$/xmp/sdk/custompanels/Test/TitleToolTip=Dateiname" fontSize="11" width="100%" id="PS1">
                   <fi:XMPTextInput xmpPath="dc:title" xmpType="Localized" width="100%"/>
              </fi:XMPFormItem>
              <fi:XMPFormItem
                        label="Fotoauftragsnummer"
                        labelTooltip="$$$/xmp/sdk/custompanels/Test/TitleToolTip=Dateiname" fontSize="11" width="100%" id="PS2">
                   <fi:XMPTextInput xmpPath="dc:title" xmpType="Localized" width="100%"/>
              </fi:XMPFormItem>
              <fi:XMPFormItem
                        label="Interne Anmerkungen"
                        labelTooltip="$$$/xmp/sdk/custompanels/Test/TitleToolTip=Erzeuger des Dokumentes" fontSize="11" width="100%" id="PS3">
                   <fi:XMPTextArea/>
              </fi:XMPFormItem>
              <mx:Text text="* hier steht eine kleine Erläuterung" fontWeight="normal" fontSize="10"/>
         </fi:XMPForm>
    </fi:XMPForm>
    Any suggestions?
    Thank you in advance.
    Markus

    Hi Markus,
    the FileInfo SDK does not offer a ready-made list component allowing for multi-selection.
    So you would need to implement one using the FileInfo SDK API. Your component "XMPList" would inherit from mx:list and would need to implement the XMPRead and XMPWrite events and talk to the XMP using the IXMPAccess interface within those event handlers.
    Please have a look at the Programmer's Guide, section "XMP Flex components" and at the API description available in "docs" for further guidanc.
    Hope this helps
    Kind Regards
    Jörg
    Adobe XMP

  • How can I create a RAWpic-file with header(cluster of 8elements) and 2D Array?

    I have created a cluster with 8 "I32"elements (Header). I also got picture information into a 2D array (i converted information from a ROI into a 2Darray("Image pixels(I16)")
    Now I want to create a RAW picture file (first the header information followed by the picture information.)
    I think I have to convert the Header-cluster into an array with "cluster to array". But even this is not possible(Info:"you cannot combine 2 different clusters"). Then I have to combine the 2 arrays with "insert into array"??? But the header array would be a 1Darray if the "cluster to array conversation" works and the picture information is 2D.
    Can anyone help me please?

    I think this is actually pretty straightforward, barring any byte-order issues. Attached is an image that demonstrates what I think jotthape wants to do.
    The key is to let multiple Write File nodes do the work for you. There's no need to combine all the data into a single structure for the write, and avoiding that makes things easier in this case, because you don't have to worry about some of the data being I32 and the rest being I16.
    Give this a shot,
    John
    P.S. It does seem likely that you will run into byte-order problems if you want to read your custom RAW file in using some other piece of Windows software. You can check the forum and the NI site for info on byte order, then ask a new question if you're still having a problem.
    Attachments:
    writeRaw.png ‏8 KB

  • 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>

  • How can I create a "master" document with multiple variations?

    I designed a map that will be posted at a few dozen junctions with a "you are here" symbol.  Every one will be identical with the exception of this symbol.  I don't know if there is any way to do this while preserving a "master" map that can be edited all at once.  For example, I may need to change the location of the paths and it would be a real time saver if I didn't have to edit 20+ files (each with an arrow in a different spot but otherwise the same) separately.  Also, I will be sending the file over email to a professional printer, so I am very uncertain about what would be a standard way to format something like this and really wouldn't want to clog their email.
    I haven't been able to figure out an easy way to do this.  I'm wondering if it involves using multiple artboards, a feature that I'm not very familiar with, or if the easiest way is to have a layer for each symbol location and just save twenty files (whew) and send them to the printer as separate documents - which seems super clumsy.
    I have tried copying the artboard multiple times.  This was my best attempt at editing all at once: I created whatever I needed on one artboard, then dragged it to the symbols panel, then cut, then went to edit > paste on all artboards.  However, this doesn't allow me to simply fiddle with a path or object that already exists and I can't figure out how I would delete the same object from all artboards.
    If anyone has some thoughts, I'm pretty novice, so please keep it in simple terms. Also, I am in a bit of a time crunch, so speedy answers are much appreciated!  Thank you!

    Alright, that makes sense.  And yep...I've never worked with a professional printer so I wasn't sure if it is standard to have something that will require that much involvement in the set-up on their part, but I guess it's preferable to sending a bunch of separate documents.  Thanks so much for your help, Larry!

  • How can I create a GIF file ?

    Does anybody know, how can I create a Gif file with LV.
    I had used the print option (Print to HTML file) from LV but I can't use it
    when I
    create an application with appbuilder.
    Does anybody know another way to carry it out?
    Thanks in advance

    You understood me correctly but the properties of the documentation tool
    doesnt exist
    after building the application (Runtime Version). Only the Menu "File /
    Print Window" option is present. Therefor I looked for another way to do it.
    "Dennis Knutson" schrieb im Newsbeitrag
    news:506500000005000000A24C0000-1004225886000@exch​ange.ni.com...
    > I was talking about the properties of the documentation tool which
    > creates an html file and allows for the selection of GIF as an image
    > format. The GIF files are the front panel, diagram, and icon. You
    > didn't specify what you are trying to print but if you need something
    > else, let us know.

  • How can I create an Excel file?

    Hi,
    How can I create an Excel file using Forms 6i.
    What I'm doing is to create a file using TEXT_IO package an name it .XLS. If a read it double-clicking over the file, it opens Ok but If I open directly from Excel it opens the Convert dialog.
    I need to create an excel file as it was made from within Excel.
    Thank in advance,
    Benjamin

    When you are talking about subfiles, are you talking like Package contents of an application?
    Terminal application in Applications -> Utilities can give a command line grasp of all your files using the du command.
    Type
    man du
    when entering the terminal, followed by the enter key.
    Note, by default the terminal opens at the Home folder.   To navigate outside the Home folder enter "/Volumes/name of mounted drive/folder/subfolder" as your path.  If there are spaces in the name, putting quotes around the whole path can help.    If you end your du command with a > name.txt a text file with the name name.txt will be plugged into your Home directory.  That you can open with Excel and parse by /es thus giving you everything in Excel.

  • How can I Create a exe file were a tab control on it work`s

    I have a VI with many controls and indicators,these are spread on a tab control.This tab control works with out any problems but if i create a exe file then the tab control is fixed. How can I create a exe file so that the tab control on it work´s ?"
    Attachments:
    project7.1.jpg ‏129 KB

    Make the tab control a control and not an indicator. If you want to write
    to it you need to create a local variable.
    "Carlos-R." wrote in message
    news:[email protected]..
    I have a VI with many controls and indicators,these are spread on a
    tab control.This tab control works with out any problems but if i
    create a exe file then the tab control is fixed. How can I create a
    exe file so that the tab control on it work´s ?"

  • How can I create a jar file

    Hello!
    How can a create a jar file?
    I want to run an application just clicking in a icon.
    How can I do this?
    Thanks a lot.
    K�tia.

    Get to the command prompt
    change directories to the directory where the main class resides.
    Open your text editor and type the following in it:
    Manifest-Version: 1.0
    Main-Class: NameOfMainClass //Just name without ".class"!!!
    Created-By: Your Name Here
    Save this file as whatever you want to name it with ".mf" as the extension.
    Then go back into the command prompt and type the following:
    jar cfm "NameOfJarFile".jar "NameOfManifestFile".mf *.class
    (without the quote marks of course)
    Hit "Enter"
    This will jar it up and make it executable.
    If you have any images associated with the program you can add them in the same way as above. Just add *.gif or *.jpg after the *.class portion.
    Good luck!
    LEEMAX I. T.

  • How can i create a new user with only read rights ?

    How can i create a new user with only read rights ?

    You are asking about a Database User I hope.
    You can look into the Oracle 8i Documentation and find various privillages listed.
    In particular, you may find:
    Chapter 27 Privileges, Roles, and Security Policies
    an intresting chapter.
    You may want to do this with the various tools included with 8i - including the
    Oracle DBA Studio - expand the Security node and you can create USERS and ROLES.
    Or use SQL*Plus. To create a
    user / password named John / Smith, you would login to SQL*Plus as System/manager (or other) and type in:
    Create user John identified by Smith;
    Grant CONNECT to John;
    Grant SELECT ANY TABLE to John;
    commit;
    There is much more you can do
    depending on your needs.
    Please read the documentation.
    -John
    null

  • Oracle Forms - How can I create a Data Block with query

    Dear friends I have a question, I couldn't do this..
    I have a sql query, I want to show the datas of the query.. How can I do this. ?
    Data Block Wizard wants a table, view or stored procedure, but I have a query, how can I create a data block with my query.. I m waiting your helps..? Please...
    Semih

    Hi,
    You have two options
    1. create a view and base the block on the view
    2. create a block with a query Data Source Type of 'FROM clause query'
    Hope this helps
    Neil

  • How can i create a camera profile with camera raw?

    Hi
    how can i create a camera profile with camera raw without x-rite or other third software?
    i have a Colour Checker ,with different shade of gray and different colors
    i remember about a script or something like that
    i google a lot , but without luck
    can i create my camera raw profile using a color checker with photoshop acr ?
    i'm not sure but this should be the script http://simon.tindemans.eu/tools/acrcalibrator , right?
    but i don't know how use it
    is there a tutorial ? maybe a video to create a profile with camera raw
    thanks
    greetings

    Hello, I think that you search for https://www.adobe.com/cfusion/entitlement/index.cfm?e=labs%5Fdngprofileeditor
    Here is a PDF from adobe about it: http://wwwimages.adobe.com/www.adobe.com/content/dam/Adobe/en/products/photoshop/pdfs/cs6/ DNGProfile_EditorDocumentation.pdf
    And an article: http://www.luminous-landscape.com/reviews/accessories/dng-profiles.shtml

  • How can I create a sales order with reference to a purchase order?

    How can I create a sales order with reference to a purchase order?
    Thanks in advance...

    Hello,
    you can't create a sales order with reference to a purchase order. You can input customer PO nuber in the sales order Purchase Order number filed.
    Prase.

Maybe you are looking for

  • How can I add my previous icloud storage from my old iTunes ID to my new icloud  account

    how can I add my previous icloud storage from my old iTunes ID to my new icloud  account,

  • New concept

    Hi all I m facing problem to upload data through idoc.the scenario is like we receive electric meter reading in flat file format. And to upload that data JAVA code is written which will create an IDOC FILE this authorization is only give to 2-3 perso

  • Why Does Photoshop cs5 Camera RAW not open CRW files

    I need help bad.I am running Windows XP Pro.I had to get Adobe help to install a update to photoshop to get it to open.That part is working.Yesterday I tried to go thru some of my CRW Raw negatives,They will not open in camera raw or bridge or mini b

  • Import Non-SAP data into BW

    Please help with following query on Extracting the non-sap Data into BW.Please advice the full documentation on Loading,Transforming,Reporting for NON-SAP data into BW . Essentially, the Third party tool provides a matrix for maximizing either profit

  • Secure connection failed is a

    secure connection failed error msg pops up about every 3-4 minutes. it's driving me nuts- i don't have the time to keep removing this window every time it appears. i'm getting this msg for websites like yahoo, google, - hey, come on - these websites