{"id":22226,"date":"2024-12-09T14:50:31","date_gmt":"2024-12-09T14:50:31","guid":{"rendered":"https:\/\/v-er.eu\/share-placement\/"},"modified":"2025-12-02T17:21:50","modified_gmt":"2025-12-02T17:21:50","slug":"share-placement","status":"publish","type":"page","link":"https:\/\/v-er.eu\/de\/share-placement\/","title":{"rendered":"Filter-de"},"content":{"rendered":"<script>\ndocument.addEventListener('alpine:init', () => {\n  \/\/ Alpine Store f\u00fcr die L\u00e4nderauswahl\n  Alpine.store('countrySelector', {\n    selectedCountry: localStorage.getItem('prospectus_selected_country') || '',\n    \n    setCountry(country) {\n      this.selectedCountry = country;\n      if (country) {\n        localStorage.setItem('prospectus_selected_country', country);\n      }\n    },\n    \n    clearCountry() {\n      this.selectedCountry = '';\n      localStorage.removeItem('prospectus_selected_country');\n    },\n    \n    getCountry() {\n      return this.selectedCountry;\n    }\n  });\n\n  \/\/ Alpine Data Component\n  Alpine.data('prospectusFilter', () => ({\n    showModal: false,\n    isChecking: false,\n    termsCountries: [\n      'DZ', 'BJ', 'BF', 'BI', 'CV', 'CM', 'CF', 'TD', 'KM', 'CD', 'CG', 'DJ', \n      'EG', 'GQ', 'SZ', 'ET', 'GA', 'GM', 'JO', 'KZ', 'KW', 'KG', 'LA', 'LB', \n      'MY', 'MV', 'MN', 'MM', 'NP', 'KP', 'OM', 'PK', 'PS', 'PH', 'QA', 'SA', \n      'SG', 'KR', 'LK', 'SY', 'TJ', 'TH', 'TL', 'TR', 'TM', 'AE', 'UZ', 'VN', \n      'YE', 'AL', 'AD', 'AM', 'AT', 'AZ', 'BY', 'BE', 'BA', 'BG', 'HR', 'CY', \n      'CZ', 'DK', 'EE', 'FI', 'FR', 'GE', 'DE', 'GR', 'HU', 'IS', 'IE', 'IT', \n      'KZ', 'XK', 'LV', 'LI', 'LT', 'LU', 'MT', 'MD', 'MC', 'ME', 'NL', 'MK', \n      'NO', 'PL', 'PT', 'RO', 'RU', 'SM', 'RS', 'SK', 'SI', 'ES', 'SE', 'CH', \n      'UA', 'GB', 'VA', 'GH', 'GN', 'GW', 'CI', 'KE', 'LR', 'LY', 'MG', 'ML', \n      'MR', 'MU', 'MA', 'NE', 'NG', 'RW', 'AU', 'FJ', 'KI', 'MH', 'FM', 'NR', \n      'NZ', 'PW', 'PG', 'SB', 'TO', 'TV', 'VU', 'ST', 'SN', 'SC', 'SL', 'SO', \n      'AF', 'AM', 'AZ', 'BH', 'BD', 'BT', 'BN', 'KH', 'CN', 'CY', 'GE', 'IN', \n      'ID', 'IR', 'IQ', 'IL', 'AR', 'BO', 'BR', 'CL', 'CO', 'EC', 'GY', 'PY', \n      'PE', 'SR', 'UY', 'VE'\n    ],\n    restrictedCountries: ['US'],\n    deniedRedirectUrl: 'https:\/\/v-er.eu\/announcement\/',\n    targetUrl: 'https:\/\/v-er.eu\/de\/announcement\/',\n\n    init() {\n      \/\/ Pr\u00fcfe auf Reset-Parameter\n      const urlParams = new URLSearchParams(window.location.search);\n      if (urlParams.get('reset') === '1') {\n        \/\/ L\u00f6sche localStorage\n        this.$store.countrySelector.clearCountry();\n        \n        \/\/ Entferne reset Parameter und lade neu\n        urlParams.delete('reset');\n        const newUrl = window.location.pathname + (urlParams.toString() ? '?' + urlParams.toString() : '');\n        window.location.replace(newUrl);\n        return;\n      }\n      \n      \/\/ Nur auto-redirect wenn nicht bereits processing\n      const isProcessing = urlParams.has('stored_country');\n      \n      \/\/ Pr\u00fcfe beim Laden, ob bereits ein Land im Store gespeichert ist\n      \/\/ Aber nur wenn wir nicht bereits einen stored_country Parameter haben\n      const savedCountry = this.$store.countrySelector.getCountry();\n      if (savedCountry && !isProcessing) {\n        \/\/ Automatisch weiterleiten basierend auf gespeicherter Auswahl\n        this.autoRedirect(savedCountry);\n      }\n    },\n\n    autoRedirect(country) {\n      this.isChecking = true;\n\n      \/\/ Erstelle die aktuelle URL mit dem gespeicherten Land als Parameter\n      \/\/ Damit die PHP-Logik die Session setzen kann\n      const currentUrl = new URL(window.location.href);\n      currentUrl.searchParams.set('stored_country', country);\n      \n      \/\/ Bewahre den redirect_to Parameter, falls vorhanden\n      \/\/ (wichtig, wenn von einer gesch\u00fctzten Seite hierher weitergeleitet wurde)\n      \n      \/\/ Reload mit dem Parameter, damit PHP die Session setzen kann\n      window.location.href = currentUrl.toString();\n    },\n    \n    checkCountry() {\n      const selectedCountry = this.$store.countrySelector.getCountry();\n      \n      if (!selectedCountry) return;\n\n      \/\/ Speichere das Land dauerhaft im Store\/localStorage\n      this.$store.countrySelector.setCountry(selectedCountry);\n\n      \/\/ Pr\u00fcfe ob es ein eingeschr\u00e4nktes Land ist (z.B. USA)\n      if (this.restrictedCountries.includes(selectedCountry)) {\n        \/\/ Weiterleitung zur Content B Seite\n        if (this.deniedRedirectUrl) {\n          window.location.href = this.deniedRedirectUrl;\n        } else {\n          window.location.href = this.targetUrl + '?access=denied&reason=restricted';\n        }\n        return;\n      }\n\n      \/\/ Normale L\u00e4nder mit Terms-Pr\u00fcfung\n      if (this.termsCountries.includes(selectedCountry)) {\n        this.showModal = true;\n        document.body.style.overflow = 'hidden';\n      } else {\n        \/\/ Land nicht erlaubt - zur Content B Seite\n        if (this.deniedRedirectUrl) {\n          window.location.href = this.deniedRedirectUrl;\n        } else {\n          window.location.href = this.targetUrl + '?access=denied&reason=country';\n        }\n      }\n    },\n\n    closeModal() {\n      this.showModal = false;\n      document.body.style.overflow = '';\n    }\n  }));\n});\n<\/script>\n\n<div class=\"max-w-4xl mx-auto p-8\" \n  x-data=\"prospectusFilter\"\n  x-init=\"init()\">\n  \n  <div x-show=\"isChecking\" class=\"space-y-4 text-center\">\n    <div class=\"inline-block animate-spin rounded-full h-12 w-12 border-b-2 border-gray-900\"><\/div>\n    <p class=\"text-gray-600\">Checking selection&#8230;&#8230;<\/p>\n  <\/div>\n\n  <div x-show=\"!isChecking\" class=\"space-y-8\">\n    <h1 class=\"text-3xl font-bold\"><\/h1>\n    <p class=\"text-gray-600\">Wichtige Informationen Der Zugriff auf die Informationen in diesem Bereich der Website ist aus regulatorischen Gr\u00fcnden eingeschr\u00e4nkt.<\/p>\n    \n    <div class=\"space-y-4\">\n      <p class=\"font-medium\">Bitte w\u00e4hlen Sie Ihr Land aus<\/p>\n      \n      <div class=\"relative\">\n        <select\n          x-model=\"$store.countrySelector.selectedCountry\"\n          class=\"w-full p-4 border border-gray-300 rounded-lg appearance-none bg-white\"\n        >\n          <option value=\"\">Select your country<\/option>\n          \n          \n                      <option value=\"AF\">Afghanistan<\/option>\n                      <option value=\"AL\">Albania<\/option>\n                      <option value=\"DZ\">Algeria<\/option>\n                      <option value=\"AD\">Andorra<\/option>\n                      <option value=\"AO\">Angola<\/option>\n                      <option value=\"AG\">Antigua and Barbuda<\/option>\n                      <option value=\"AR\">Argentina<\/option>\n                      <option value=\"AM\">Armenia<\/option>\n                      <option value=\"AU\">Australia<\/option>\n                      <option value=\"AT\">Austria<\/option>\n                      <option value=\"AZ\">Azerbaijan<\/option>\n                      <option value=\"BS\">Bahamas<\/option>\n                      <option value=\"BH\">Bahrain<\/option>\n                      <option value=\"BD\">Bangladesh<\/option>\n                      <option value=\"BB\">Barbados<\/option>\n                      <option value=\"BY\">Belarus<\/option>\n                      <option value=\"BE\">Belgium<\/option>\n                      <option value=\"BZ\">Belize<\/option>\n                      <option value=\"BJ\">Benin<\/option>\n                      <option value=\"BT\">Bhutan<\/option>\n                      <option value=\"BO\">Bolivia<\/option>\n                      <option value=\"BA\">Bosnia and Herzegovina<\/option>\n                      <option value=\"BW\">Botswana<\/option>\n                      <option value=\"BR\">Brazil<\/option>\n                      <option value=\"BN\">Brunei<\/option>\n                      <option value=\"BG\">Bulgaria<\/option>\n                      <option value=\"BF\">Burkina Faso<\/option>\n                      <option value=\"BI\">Burundi<\/option>\n                      <option value=\"KH\">Cambodia<\/option>\n                      <option value=\"CM\">Cameroon<\/option>\n                      <option value=\"CA\">Canada<\/option>\n                      <option value=\"CV\">Cape Verde<\/option>\n                      <option value=\"CF\">Central African Republic<\/option>\n                      <option value=\"TD\">Chad<\/option>\n                      <option value=\"CL\">Chile<\/option>\n                      <option value=\"CN\">China<\/option>\n                      <option value=\"CO\">Colombia<\/option>\n                      <option value=\"KM\">Comoros<\/option>\n                      <option value=\"CD\">Congo (Democratic Republic)<\/option>\n                      <option value=\"CG\">Congo (Republic)<\/option>\n                      <option value=\"CR\">Costa Rica<\/option>\n                      <option value=\"HR\">Croatia<\/option>\n                      <option value=\"CU\">Cuba<\/option>\n                      <option value=\"CY\">Cyprus<\/option>\n                      <option value=\"CZ\">Czech Republic<\/option>\n                      <option value=\"DK\">Denmark<\/option>\n                      <option value=\"DJ\">Djibouti<\/option>\n                      <option value=\"DM\">Dominica<\/option>\n                      <option value=\"DO\">Dominican Republic<\/option>\n                      <option value=\"EC\">Ecuador<\/option>\n                      <option value=\"EG\">Egypt<\/option>\n                      <option value=\"SV\">El Salvador<\/option>\n                      <option value=\"GQ\">Equatorial Guinea<\/option>\n                      <option value=\"ER\">Eritrea<\/option>\n                      <option value=\"EE\">Estonia<\/option>\n                      <option value=\"SZ\">Eswatini (Swaziland)<\/option>\n                      <option value=\"ET\">Ethiopia<\/option>\n                      <option value=\"FJ\">Fiji<\/option>\n                      <option value=\"FI\">Finland<\/option>\n                      <option value=\"FR\">France<\/option>\n                      <option value=\"GA\">Gabon<\/option>\n                      <option value=\"GM\">Gambia<\/option>\n                      <option value=\"GE\">Georgia<\/option>\n                      <option value=\"DE\">Germany<\/option>\n                      <option value=\"GH\">Ghana<\/option>\n                      <option value=\"GR\">Greece<\/option>\n                      <option value=\"GD\">Grenada<\/option>\n                      <option value=\"GT\">Guatemala<\/option>\n                      <option value=\"GN\">Guinea<\/option>\n                      <option value=\"GW\">Guinea-Bissau<\/option>\n                      <option value=\"GY\">Guyana<\/option>\n                      <option value=\"HT\">Haiti<\/option>\n                      <option value=\"HN\">Honduras<\/option>\n                      <option value=\"HU\">Hungary<\/option>\n                      <option value=\"IS\">Iceland<\/option>\n                      <option value=\"IN\">India<\/option>\n                      <option value=\"ID\">Indonesia<\/option>\n                      <option value=\"IR\">Iran<\/option>\n                      <option value=\"IQ\">Iraq<\/option>\n                      <option value=\"IE\">Ireland<\/option>\n                      <option value=\"IL\">Israel<\/option>\n                      <option value=\"IT\">Italy<\/option>\n                      <option value=\"CI\">Ivory Coast (C\u00f4te d&#039;Ivoire)<\/option>\n                      <option value=\"JM\">Jamaica<\/option>\n                      <option value=\"JP\">Japan<\/option>\n                      <option value=\"JO\">Jordan<\/option>\n                      <option value=\"KZ\">Kazakhstan<\/option>\n                      <option value=\"KE\">Kenya<\/option>\n                      <option value=\"KI\">Kiribati<\/option>\n                      <option value=\"XK\">Kosovo<\/option>\n                      <option value=\"KW\">Kuwait<\/option>\n                      <option value=\"KG\">Kyrgyzstan<\/option>\n                      <option value=\"LA\">Laos<\/option>\n                      <option value=\"LV\">Latvia<\/option>\n                      <option value=\"LB\">Lebanon<\/option>\n                      <option value=\"LS\">Lesotho<\/option>\n                      <option value=\"LR\">Liberia<\/option>\n                      <option value=\"LY\">Libya<\/option>\n                      <option value=\"LI\">Liechtenstein<\/option>\n                      <option value=\"LT\">Lithuania<\/option>\n                      <option value=\"LU\">Luxembourg<\/option>\n                      <option value=\"MG\">Madagascar<\/option>\n                      <option value=\"MW\">Malawi<\/option>\n                      <option value=\"MY\">Malaysia<\/option>\n                      <option value=\"MV\">Maldives<\/option>\n                      <option value=\"ML\">Mali<\/option>\n                      <option value=\"MT\">Malta<\/option>\n                      <option value=\"MH\">Marshall Islands<\/option>\n                      <option value=\"MR\">Mauritania<\/option>\n                      <option value=\"MU\">Mauritius<\/option>\n                      <option value=\"MX\">Mexico<\/option>\n                      <option value=\"FM\">Micronesia<\/option>\n                      <option value=\"MD\">Moldova<\/option>\n                      <option value=\"MC\">Monaco<\/option>\n                      <option value=\"MN\">Mongolia<\/option>\n                      <option value=\"ME\">Montenegro<\/option>\n                      <option value=\"MA\">Morocco<\/option>\n                      <option value=\"MZ\">Mozambique<\/option>\n                      <option value=\"MM\">Myanmar (Burma)<\/option>\n                      <option value=\"NA\">Namibia<\/option>\n                      <option value=\"NR\">Nauru<\/option>\n                      <option value=\"NP\">Nepal<\/option>\n                      <option value=\"NL\">Netherlands<\/option>\n                      <option value=\"NZ\">New Zealand<\/option>\n                      <option value=\"NI\">Nicaragua<\/option>\n                      <option value=\"NE\">Niger<\/option>\n                      <option value=\"NG\">Nigeria<\/option>\n                      <option value=\"KP\">North Korea<\/option>\n                      <option value=\"MK\">North Macedonia<\/option>\n                      <option value=\"NO\">Norway<\/option>\n                      <option value=\"OM\">Oman<\/option>\n                      <option value=\"PK\">Pakistan<\/option>\n                      <option value=\"PW\">Palau<\/option>\n                      <option value=\"PS\">Palestine<\/option>\n                      <option value=\"PA\">Panama<\/option>\n                      <option value=\"PG\">Papua New Guinea<\/option>\n                      <option value=\"PY\">Paraguay<\/option>\n                      <option value=\"PE\">Peru<\/option>\n                      <option value=\"PH\">Philippines<\/option>\n                      <option value=\"PL\">Poland<\/option>\n                      <option value=\"PT\">Portugal<\/option>\n                      <option value=\"QA\">Qatar<\/option>\n                      <option value=\"RO\">Romania<\/option>\n                      <option value=\"RU\">Russia<\/option>\n                      <option value=\"RW\">Rwanda<\/option>\n                      <option value=\"KN\">Saint Kitts and Nevis<\/option>\n                      <option value=\"LC\">Saint Lucia<\/option>\n                      <option value=\"VC\">Saint Vincent and the Grenadines<\/option>\n                      <option value=\"WS\">Samoa<\/option>\n                      <option value=\"SM\">San Marino<\/option>\n                      <option value=\"SA\">Saudi Arabia<\/option>\n                      <option value=\"SN\">Senegal<\/option>\n                      <option value=\"RS\">Serbia<\/option>\n                      <option value=\"SC\">Seychelles<\/option>\n                      <option value=\"SL\">Sierra Leone<\/option>\n                      <option value=\"SG\">Singapore<\/option>\n                      <option value=\"SK\">Slovakia<\/option>\n                      <option value=\"SI\">Slovenia<\/option>\n                      <option value=\"SB\">Solomon Islands<\/option>\n                      <option value=\"SO\">Somalia<\/option>\n                      <option value=\"ZA\">South Africa<\/option>\n                      <option value=\"KR\">South Korea<\/option>\n                      <option value=\"SS\">South Sudan<\/option>\n                      <option value=\"ES\">Spain<\/option>\n                      <option value=\"LK\">Sri Lanka<\/option>\n                      <option value=\"SD\">Sudan<\/option>\n                      <option value=\"SR\">Suriname<\/option>\n                      <option value=\"SE\">Sweden<\/option>\n                      <option value=\"CH\">Switzerland<\/option>\n                      <option value=\"SY\">Syria<\/option>\n                      <option value=\"ST\">S\u00e3o Tom\u00e9 and Pr\u00edncipe<\/option>\n                      <option value=\"TJ\">Tajikistan<\/option>\n                      <option value=\"TZ\">Tanzania<\/option>\n                      <option value=\"TH\">Thailand<\/option>\n                      <option value=\"TL\">Timor-Leste<\/option>\n                      <option value=\"TG\">Togo<\/option>\n                      <option value=\"TO\">Tonga<\/option>\n                      <option value=\"TT\">Trinidad and Tobago<\/option>\n                      <option value=\"TN\">Tunisia<\/option>\n                      <option value=\"TR\">Turkey<\/option>\n                      <option value=\"TM\">Turkmenistan<\/option>\n                      <option value=\"TV\">Tuvalu<\/option>\n                      <option value=\"UG\">Uganda<\/option>\n                      <option value=\"UA\">Ukraine<\/option>\n                      <option value=\"AE\">United Arab Emirates<\/option>\n                      <option value=\"GB\">United Kingdom<\/option>\n                      <option value=\"US\">United States<\/option>\n                      <option value=\"UY\">Uruguay<\/option>\n                      <option value=\"UZ\">Uzbekistan<\/option>\n                      <option value=\"VU\">Vanuatu<\/option>\n                      <option value=\"VA\">Vatican City<\/option>\n                      <option value=\"VE\">Venezuela<\/option>\n                      <option value=\"VN\">Vietnam<\/option>\n                      <option value=\"YE\">Yemen<\/option>\n                      <option value=\"ZM\">Zambia<\/option>\n                      <option value=\"ZW\">Zimbabwe<\/option>\n                  <\/select>\n        <div class=\"absolute inset-y-0 right-0 flex items-center px-2 pointer-events-none\">\n          <svg class=\"w-4 h-4 text-gray-400\" fill=\"none\" stroke=\"currentColor\" viewBox=\"0 0 24 24\">\n            <path d=\"M19 9l-7 7-7-7\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"\/>\n          <\/svg>\n        <\/div>\n      <\/div>\n\n      <button\n        @click=\"checkCountry()\"\n        x-bind:disabled=\"!$store.countrySelector.selectedCountry\"\n        class=\"btn btn-primary\"\n        type=\"button\"\n      >\n        Confirm\n      <\/button>\n    <\/div>\n  <\/div>\n\n  <div\n    x-show=\"showModal\"\n    x-cloak\n    class=\"fixed inset-0 bg-black\/50 flex items-center justify-center p-4 z-50\"\n  >\n    <div class=\"bg-white rounded-lg max-w-2xl w-full max-h-[80vh] overflow-y-auto\">\n      <div class=\"p-6 space-y-6\">\n        <h2 class=\"text-xl font-bold\">Terms and Conditions<\/h2>\n        <div class=\"prose prose-sm\">\n          <p>DISCLAIMER \u2013 IMPORTANT<\/p>\n<p>ELECTRONIC VERSIONS OF THE MATERIALS YOU ARE SEEKING TO ACCESS ARE BEING MADE AVAILABLE ON THIS WEBPAGE BY VULCAN ENERGY RESOURCES LIMITED (the &#8220;Company&#8221;) IN GOOD FAITH AND FOR INFORMATION PURPOSES ONLY.<\/p>\n<p>THESE MATERIALS ARE NOT DIRECTED AT OR ACCESSIBLE BY PERSONS LOCATED IN THE UNITED STATES (INCLUDING ITS TERRITORIES AND POSSESSIONS, ANY STATE OF THE UNITED STATES OF AMERICA OR THE DISTRICT OF COLUMBIA), CANADA, JAPAN OR SOUTH AFRICA OR PERSONS IN ANY OTHER JURISDICTION WHERE THE DISTRIBUTION OF THESE MATERIALS WOULD BREACH ANY APPLICABLE LAW OR REGULATION OR WOULD REQUIRE ANY REGISTRATION OR LICENSING WITHIN SUCH JURISDICTION.<\/p>\n<p>Please read this notice carefully \u2013 it applies to all persons who view this webpage. Please note that the disclaimer set out below may be altered or updated. You should read it in full each time you visit the site.  <\/p>\n<p>Viewing the materials you are seeking to access may not be lawful in certain jurisdictions. In other jurisdictions, only certain categories of person may be allowed to view such materials. Any persons who wish to view these materials must first satisfy themselves that they are not subject to any local requirements that prohibit or restrict them from doing so.  <\/p>\n<p>The information in the following pages is not intended for, and is not to be made available to, persons in the United States, Canada, Japan or South Africa. Any announcements regarding securities offerings, or references to securities offerings, that are contained on these pages do not constitute an offering of those securities. Any offering of securities will be made by way of a prospectus that contains detailed information about the issuer and the offered securities, including a discussion of risks, the issuer&#8217;s business and relevant financial information.  <\/p>\n<p>In particular, none of the materials herein are an offer of securities for sale in the United States. Any securities referred to in these materials have not been and will not be registered under the US Securities Act of 1933, as amended (the &#8220;US Securities Act&#8221;), or under the securities laws of any state or other jurisdiction of the United States, and may not be offered or sold in the United States absent registration except pursuant to an exemption from, or in a transaction not subject to, the registration requirements of the US Securities Act and in accordance with any applicable securities laws of any state or other jurisdiction of the United States. There will be no public offering of securities in the United States.  <\/p>\n<p>Any securities referred to in these materials have not been and will not be registered under the securities laws of Canada, Japan or South Africa and may not be offered or sold within such jurisdictions except pursuant to an applicable exemption from and in compliance with any applicable securities laws.<\/p>\n<p>These materials are only addressed to and directed at persons in member states of the European Economic Area (including Germany) who are \u201cqualified investors\u201d (&#8220;Qualified Investors&#8221;) within the meaning of Article 2(e) of Regulation (EU) 2017\/1129, as amended (the &#8220;Prospectus Regulation&#8221;). Any investment or investment activity to which these materials relate is only available, in any member state of the European Economic Area (including Germany), to and will only be engaged in with Qualified Investors. Any other persons who receive these materials in the European Economic Area (including Germany) should not rely on or act upon it.  <\/p>\n<p>In the United Kingdom, these materials are only addressed to, and are directed at personswho are (a) &#8220;qualified investors&#8221; as defined in Article 2 of the UK Prospectus Regulation (Regulation (EU) 2017\/1129 which forms part of the law of England and Wales by virtue of the European Union (Withdrawal) Act 2018) and either (i) persons who have professional experience in matters related to investments and who are investment professionals within the meaning of Article 19(5) of the Financial Services and Markets Act 2000 (Financial Promotion) Order 2005 (as amended) of the United Kingdom (the &#8220;Financial Promotion Order&#8221;), or (ii) persons who fall within Articles 49(2)(a) to (d) (&#8220;high net worth companies, unincorporated associations etc.&#8221;) of the Financial Promotion Order; or (b) any other persons to whom this information may otherwise lawfully be directed (all such persons under (a) and (b) together being referred to as &#8220;relevant persons&#8221;). Any investment or investment activity to which these materials relate is only available, in the United Kingdom, to and will only be engaged in with relevant persons. Any other persons who receive these materials in the United Kingdom should not rely on or act upon them.<\/p>\n<p>If you are not permitted to view materials on this webpage or are in any doubt as to whether you are permitted to view these materials, please exit this webpage.<\/p>\n<p>This document is not a prospectus, product disclosure statement or other disclosure or offer document under the Corporations Act 2001 (Cth) or any other Australian laws, and will not be lodged with the Australian Securities and Investments Commission or any other financial service regulator. This document does not constitute an offer or solicitation or an invitation or recommendation to subscribe for, acquire or buy securities of the Company, or any other financial products or securities, in Australia. <\/p>\n<p>These materials must not be released or otherwise forwarded, distributed or sent, directly or indirectly, in whole or in part, in or into the United States, Canada, Japan, South Africa or any jurisdiction where the distribution of these materials would breach any applicable law or regulation or would require any registration or licensing within such jurisdiction.<\/p>\n<p>Basis of access<\/p>\n<p>Access to electronic versions of these materials is being made available on this webpage by the Company in good faith and for information purposes only. Persons seeking access to this webpage represent and warrant to the Company that they are doing so for information purposes only. Making press announcements and other documents available in electronic format does not constitute an offer to sell or the solicitation of an offer to buy securities in the Company. Further, it does not constitute a recommendation by the Company or any other party to sell or buy securities in the Company.   <\/p>\n<p>Confirmation of understanding and acceptance of disclaimer<\/p>\n<p>By clicking on the &#8220;I Agree&#8221; button below, I confirm that:<\/p>\n<p>(A) I am not resident in or accessing this website from the United States, Canada, Japan, South Africa or any other jurisdiction where accessing these materials is unlawful;<br \/>\n(B) I agree that I will not transmit or otherwise send any materials accessible on this website to any person resident or located in the United States, Canada, Japan, South Africa or any other jurisdiction where to do so would breach any applicable law or regulation; and<br \/>\n(C) I have read and understood the disclaimer set out above, I understand that it may affect my rights and I agree to be bound by its terms. I confirm that I am permitted to proceed to electronic versions of the materials. <\/p>\n\n        <\/div>\n        <div class=\"flex justify-end gap-4 pt-4 border-t\">\n          <button \n            @click=\"closeModal()\"\n            class=\"btn btn-secondary !bg-coral-red !text-white\"\n            type=\"button\"\n          >\n            Decline\n          <\/button>\n          <button \n            @click=\"window.location.href = targetUrl + '?access=granted'\"\n            class=\"btn btn-primary\"\n            type=\"button\"\n          >\n            Accept\n          <\/button>\n        <\/div>\n      <\/div>\n    <\/div>\n  <\/div>\n<\/div>\n","protected":false},"excerpt":{"rendered":"","protected":false},"author":1,"featured_media":0,"parent":0,"menu_order":0,"comment_status":"closed","ping_status":"closed","template":"","meta":[],"acf":[],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v20.13 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>Filter-de - VULCAN ENERGY RESOURCES<\/title>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/v-er.eu\/de\/share-placement\/\" \/>\n<meta property=\"og:locale\" content=\"de_DE\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Filter-de - VULCAN ENERGY RESOURCES\" \/>\n<meta property=\"og:url\" content=\"https:\/\/v-er.eu\/de\/share-placement\/\" \/>\n<meta property=\"og:site_name\" content=\"VULCAN ENERGY RESOURCES\" \/>\n<meta property=\"article:modified_time\" content=\"2025-12-02T17:21:50+00:00\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"WebPage\",\"@id\":\"https:\/\/v-er.eu\/de\/share-placement\/\",\"url\":\"https:\/\/v-er.eu\/de\/share-placement\/\",\"name\":\"Filter-de - VULCAN ENERGY RESOURCES\",\"isPartOf\":{\"@id\":\"https:\/\/v-er.eu\/#website\"},\"datePublished\":\"2024-12-09T14:50:31+00:00\",\"dateModified\":\"2025-12-02T17:21:50+00:00\",\"breadcrumb\":{\"@id\":\"https:\/\/v-er.eu\/de\/share-placement\/#breadcrumb\"},\"inLanguage\":\"de-DE\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/v-er.eu\/de\/share-placement\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/v-er.eu\/de\/share-placement\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/v-er.eu\/de\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Filter-de\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/v-er.eu\/#website\",\"url\":\"https:\/\/v-er.eu\/\",\"name\":\"VULCAN ENERGY RESOURCES\",\"description\":\"Vulcan\u2019s purpose is to empower a net zero carbon future, aiming to supply lithium chemicals and renewable energy from Europe, for Europe from its Zero Carbon Lithium\u2122 Project.\",\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/v-er.eu\/?s={search_term_string}\"},\"query-input\":\"required name=search_term_string\"}],\"inLanguage\":\"de-DE\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Filter-de - VULCAN ENERGY RESOURCES","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/v-er.eu\/de\/share-placement\/","og_locale":"de_DE","og_type":"article","og_title":"Filter-de - VULCAN ENERGY RESOURCES","og_url":"https:\/\/v-er.eu\/de\/share-placement\/","og_site_name":"VULCAN ENERGY RESOURCES","article_modified_time":"2025-12-02T17:21:50+00:00","twitter_card":"summary_large_image","schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"WebPage","@id":"https:\/\/v-er.eu\/de\/share-placement\/","url":"https:\/\/v-er.eu\/de\/share-placement\/","name":"Filter-de - VULCAN ENERGY RESOURCES","isPartOf":{"@id":"https:\/\/v-er.eu\/#website"},"datePublished":"2024-12-09T14:50:31+00:00","dateModified":"2025-12-02T17:21:50+00:00","breadcrumb":{"@id":"https:\/\/v-er.eu\/de\/share-placement\/#breadcrumb"},"inLanguage":"de-DE","potentialAction":[{"@type":"ReadAction","target":["https:\/\/v-er.eu\/de\/share-placement\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/v-er.eu\/de\/share-placement\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/v-er.eu\/de\/"},{"@type":"ListItem","position":2,"name":"Filter-de"}]},{"@type":"WebSite","@id":"https:\/\/v-er.eu\/#website","url":"https:\/\/v-er.eu\/","name":"VULCAN ENERGY RESOURCES","description":"Vulcan\u2019s purpose is to empower a net zero carbon future, aiming to supply lithium chemicals and renewable energy from Europe, for Europe from its Zero Carbon Lithium\u2122 Project.","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/v-er.eu\/?s={search_term_string}"},"query-input":"required name=search_term_string"}],"inLanguage":"de-DE"}]}},"_links":{"self":[{"href":"https:\/\/v-er.eu\/de\/wp-json\/wp\/v2\/pages\/22226"}],"collection":[{"href":"https:\/\/v-er.eu\/de\/wp-json\/wp\/v2\/pages"}],"about":[{"href":"https:\/\/v-er.eu\/de\/wp-json\/wp\/v2\/types\/page"}],"author":[{"embeddable":true,"href":"https:\/\/v-er.eu\/de\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/v-er.eu\/de\/wp-json\/wp\/v2\/comments?post=22226"}],"version-history":[{"count":9,"href":"https:\/\/v-er.eu\/de\/wp-json\/wp\/v2\/pages\/22226\/revisions"}],"predecessor-version":[{"id":22236,"href":"https:\/\/v-er.eu\/de\/wp-json\/wp\/v2\/pages\/22226\/revisions\/22236"}],"wp:attachment":[{"href":"https:\/\/v-er.eu\/de\/wp-json\/wp\/v2\/media?parent=22226"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}