<?xml version="1.0"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en">
	<id>https://wiki.diyon.top/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=Goblinmoder</id>
	<title>/gwik/ - User contributions [en]</title>
	<link rel="self" type="application/atom+xml" href="https://wiki.diyon.top/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=Goblinmoder"/>
	<link rel="alternate" type="text/html" href="https://wiki.diyon.top/index.php/Special:Contributions/Goblinmoder"/>
	<updated>2026-09-20T10:33:50Z</updated>
	<subtitle>User contributions</subtitle>
	<generator>MediaWiki 1.42.1</generator>
	<entry>
		<id>https://wiki.diyon.top/index.php?title=User:Goblinmoder&amp;diff=1037</id>
		<title>User:Goblinmoder</title>
		<link rel="alternate" type="text/html" href="https://wiki.diyon.top/index.php?title=User:Goblinmoder&amp;diff=1037"/>
		<updated>2026-01-28T13:15:00Z</updated>

		<summary type="html">&lt;p&gt;Goblinmoder: /* discord pill */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;=== dosecalculator.cpp ===&lt;br /&gt;
&amp;lt;syntaxhighlight lang=&amp;quot;c++&amp;quot; line&amp;gt;&lt;br /&gt;
 #include &amp;lt;iostream&amp;gt;&lt;br /&gt;
 &lt;br /&gt;
 using namespace std;&lt;br /&gt;
 &lt;br /&gt;
 void estimate (float days, float mg)&lt;br /&gt;
 {&lt;br /&gt;
     int type;&lt;br /&gt;
     cout &amp;lt;&amp;lt; &amp;quot;\n\nchoose your e2\n1 - een\n2 - ev\n\n&amp;quot;;&lt;br /&gt;
     cin &amp;gt;&amp;gt; type;&lt;br /&gt;
     &lt;br /&gt;
     float avg;&lt;br /&gt;
     switch (type)&lt;br /&gt;
     {&lt;br /&gt;
         case 1:&lt;br /&gt;
             avg = (mg * 490) / days;&lt;br /&gt;
             cout &amp;lt;&amp;lt; &amp;quot;\n== een estimates (pg/ml) ==\naverage e2: &amp;quot; &amp;lt;&amp;lt;  avg &amp;lt;&amp;lt; &amp;quot;\npeak e2: &amp;quot; &amp;lt;&amp;lt; avg * 1.07 &amp;lt;&amp;lt; &amp;quot;\ntrough e2: &amp;quot; &amp;lt;&amp;lt; avg * 0.93;&lt;br /&gt;
         break;&lt;br /&gt;
         case 2:&lt;br /&gt;
             avg = (mg * 453.25) / days;&lt;br /&gt;
             cout &amp;lt;&amp;lt; &amp;quot;\n== ev estimates (pg/ml) ==\naverage e2: &amp;quot; &amp;lt;&amp;lt;  avg &amp;lt;&amp;lt; &amp;quot;\npeak e2: &amp;quot; &amp;lt;&amp;lt; avg * 1.45 &amp;lt;&amp;lt; &amp;quot;\ntrough e2: &amp;quot; &amp;lt;&amp;lt; avg * 0.51;&lt;br /&gt;
         break;&lt;br /&gt;
     }&lt;br /&gt;
 }&lt;br /&gt;
 &lt;br /&gt;
 float dosageC ()&lt;br /&gt;
 {&lt;br /&gt;
     bool mode;&lt;br /&gt;
     cout &amp;lt;&amp;lt; &amp;quot;input 1 for mg to mL conversion or 0 for mL to mg conversion: &amp;quot;;&lt;br /&gt;
     cin &amp;gt;&amp;gt; mode;&lt;br /&gt;
     &lt;br /&gt;
     if (mode) &lt;br /&gt;
     {&lt;br /&gt;
         float conc;&lt;br /&gt;
         cout &amp;lt;&amp;lt; &amp;quot;your vial&#039;s concentration per 10mL (in mg): &amp;quot;;&lt;br /&gt;
         cin &amp;gt;&amp;gt; conc;&lt;br /&gt;
         &lt;br /&gt;
         float mg;&lt;br /&gt;
         cout &amp;lt;&amp;lt; &amp;quot;dosage (in mg): &amp;quot;;&lt;br /&gt;
         cin &amp;gt;&amp;gt; mg;&lt;br /&gt;
         &lt;br /&gt;
         float dose = (10/conc) * mg;&lt;br /&gt;
         cout &amp;lt;&amp;lt; &amp;quot;your dose of &amp;quot; &amp;lt;&amp;lt; mg &amp;lt;&amp;lt; &amp;quot;mg is equivalent to &amp;quot; &amp;lt;&amp;lt; dose &amp;lt;&amp;lt; &amp;quot;mL&amp;quot;; &lt;br /&gt;
     &lt;br /&gt;
         return mg;&lt;br /&gt;
     }&lt;br /&gt;
     else &lt;br /&gt;
     {&lt;br /&gt;
         float conc;&lt;br /&gt;
         cout &amp;lt;&amp;lt; &amp;quot;your vial&#039;s concentration per 10mL (in mg): &amp;quot;;&lt;br /&gt;
         cin &amp;gt;&amp;gt; conc;&lt;br /&gt;
         &lt;br /&gt;
         float ml;&lt;br /&gt;
         cout &amp;lt;&amp;lt; &amp;quot;dosage (in ml): &amp;quot;;&lt;br /&gt;
         cin &amp;gt;&amp;gt; ml;&lt;br /&gt;
         &lt;br /&gt;
         float dose = (conc/10) * ml;&lt;br /&gt;
         cout &amp;lt;&amp;lt; &amp;quot;your dose of &amp;quot; &amp;lt;&amp;lt; ml &amp;lt;&amp;lt; &amp;quot;mL is equivalent to &amp;quot; &amp;lt;&amp;lt; dose &amp;lt;&amp;lt; &amp;quot;mg&amp;quot;;&lt;br /&gt;
     &lt;br /&gt;
         return dose;&lt;br /&gt;
     }&lt;br /&gt;
     &lt;br /&gt;
     &lt;br /&gt;
 }&lt;br /&gt;
 &lt;br /&gt;
 int main() &lt;br /&gt;
 {&lt;br /&gt;
     float mg = dosageC();&lt;br /&gt;
     &lt;br /&gt;
     string ans; &lt;br /&gt;
     cout &amp;lt;&amp;lt; &amp;quot;\nwould you like to estimate your blood test results (not a definitive point of reference)? (Y/N): &amp;quot; &amp;lt;&amp;lt; endl;&lt;br /&gt;
     cin &amp;gt;&amp;gt; ans;&lt;br /&gt;
     &lt;br /&gt;
     if (ans == &amp;quot;Y&amp;quot;) &lt;br /&gt;
     {&lt;br /&gt;
         int days;&lt;br /&gt;
         cout &amp;lt;&amp;lt; &amp;quot;days per injection: &amp;quot;;&lt;br /&gt;
         cin &amp;gt;&amp;gt; days;&lt;br /&gt;
         &lt;br /&gt;
         estimate(days, mg);&lt;br /&gt;
     } &lt;br /&gt;
     else cout &amp;lt;&amp;lt; &amp;quot;\nok!&amp;quot;;&lt;br /&gt;
 &lt;br /&gt;
     return 0;&lt;br /&gt;
 }&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== stand for ==&lt;br /&gt;
&lt;br /&gt;
* TDD, TGD, TCD.&lt;br /&gt;
* trans liberation.&lt;br /&gt;
* &#039;&#039;&#039;diyhrt.&#039;&#039;&#039;&lt;/div&gt;</summary>
		<author><name>Goblinmoder</name></author>
	</entry>
	<entry>
		<id>https://wiki.diyon.top/index.php?title=Doctors&amp;diff=1028</id>
		<title>Doctors</title>
		<link rel="alternate" type="text/html" href="https://wiki.diyon.top/index.php?title=Doctors&amp;diff=1028"/>
		<updated>2025-10-18T11:34:15Z</updated>

		<summary type="html">&lt;p&gt;Goblinmoder: added mourikhs&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{#seo:&lt;br /&gt;
|title_mode=replace&lt;br /&gt;
|title=Doctors&lt;br /&gt;
|description=List of doctors documented, most of which are from real life encounters, opinions are non-definitive.&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
== Ψυχίατροι ==&lt;br /&gt;
{| class=&amp;quot;wikitable sortable&amp;quot;&lt;br /&gt;
|+&lt;br /&gt;
!✅/🟨/🟧/❌&lt;br /&gt;
!Όνομα&lt;br /&gt;
!Περιοχή&lt;br /&gt;
!Δημόσιο/Ιδιωτικό&lt;br /&gt;
!Επικοινωνία&lt;br /&gt;
!Τιμή&lt;br /&gt;
!Οδός&lt;br /&gt;
!Διαδικτυακά&lt;br /&gt;
!Κριτικές&lt;br /&gt;
!Σημειώσεις&lt;br /&gt;
|-&lt;br /&gt;
|✅&lt;br /&gt;
|Καρατζαφέρης Λυκούργος&lt;br /&gt;
|Αθήνα / Διαδικτυακά&lt;br /&gt;
|Ιδιωτικό&lt;br /&gt;
|Σταθερό: 2177207765&lt;br /&gt;
Τηλέφωνο: 6944302577&lt;br /&gt;
|30-70 ευρώ, 1-2 συνεδρίες για γνωμάτευση.&lt;br /&gt;
|Αμφιτρύωνος 78, Αττική, 11853.&lt;br /&gt;
|Κάνει και online αλλά προτιμάει irl.&lt;br /&gt;
|&lt;br /&gt;
* 2 ✅&lt;br /&gt;
* 0 🟨&lt;br /&gt;
* 0 🟧&lt;br /&gt;
* 0 ❌&lt;br /&gt;
| -&lt;br /&gt;
|-&lt;br /&gt;
|✅&lt;br /&gt;
|Μαρία Αναστασάκη&lt;br /&gt;
|Ηράκλειο / Διαδικτυακά&lt;br /&gt;
|Ιδιωτικό&lt;br /&gt;
|Σταθερό: 2810223940&lt;br /&gt;
Τηλέφωνο: 6980566188&lt;br /&gt;
&lt;br /&gt;
E-mail: [mailto:anastasakitherapy@gmail.com anastasakitherapy@gmail.com]&lt;br /&gt;
|40Ε ανα συνεδρία / 90Ε (γνωμάτευση)&lt;br /&gt;
|Λεωφόρος Ιωνίας 136, Ηράκλειο [Δήμος], Ηράκλειο, 71305&lt;br /&gt;
|Ναι.&lt;br /&gt;
|&lt;br /&gt;
* 2 ✅&lt;br /&gt;
* 1 🟨&lt;br /&gt;
* 0 🟧&lt;br /&gt;
* 0 ❌&lt;br /&gt;
| Μπορεί να είναι δύσκολη η επικοινωνία.&lt;br /&gt;
|-&lt;br /&gt;
|✅&lt;br /&gt;
|Κατερίνα Χαλκιαδάκη&lt;br /&gt;
|Ηράκλειο / Διαδικτυακά&lt;br /&gt;
|Ιδιωτικό&lt;br /&gt;
|Σταθερό: 2810223940&lt;br /&gt;
|40Ε ανα συνεδρία / 90Ε (γνωμάτευση)&lt;br /&gt;
|Λεωφόρος Ιωνίας 136, Ηράκλειο [Δήμος], Ηράκλειο, 71305&lt;br /&gt;
|Ναι.&lt;br /&gt;
|&lt;br /&gt;
* 1 ✅&lt;br /&gt;
* 0 🟨&lt;br /&gt;
* 0 🟧&lt;br /&gt;
* 0 ❌&lt;br /&gt;
|Συνάδελφος της Αναστασάκη.&lt;br /&gt;
|-&lt;br /&gt;
|✅&lt;br /&gt;
|Ελένη Ζαχάρη&lt;br /&gt;
|Αθήνα&lt;br /&gt;
|Ιδιωτικό&lt;br /&gt;
|Τηλέφωνο: 6942493053&lt;br /&gt;
|50-70€ το ραντεβού (γνωμάτευση σε 2 συνεδρίες)&lt;br /&gt;
|Χατζηκώστα 8Α, Πλατεία Μαβίλη, Αττική.&lt;br /&gt;
|Ναι.&lt;br /&gt;
|&lt;br /&gt;
* 1 ✅&lt;br /&gt;
* 0 🟨&lt;br /&gt;
* 0 🟧&lt;br /&gt;
* 0 ❌&lt;br /&gt;
| -&lt;br /&gt;
|-&lt;br /&gt;
|✅&lt;br /&gt;
|Γεωργιλαδάκης Ιωάννης&lt;br /&gt;
|Ηράκλειο&lt;br /&gt;
|Ιδιωτικό&lt;br /&gt;
|Σταθερό: 2107442019&lt;br /&gt;
|50€ το ραντεβού. (Στο [https://www.doctoranytime.gr/d/Psychiatros/georgiladakis-ioannis site]&amp;lt;nowiki&amp;gt; αναφέρεται το εξής: &amp;quot;Πιστοποιητικά/Βεβαιώσεις | Από 20€ έως 40€&amp;quot;)&amp;lt;/nowiki&amp;gt;&lt;br /&gt;
|Πλατεία Ρήγα Φεραίου 13, Ηράκλειο, Κρήτη.&lt;br /&gt;
|Λογικά όχι πια (writer&#039;s conclusion, citation needed)&lt;br /&gt;
|&lt;br /&gt;
* 1 ✅&lt;br /&gt;
* 0 🟨&lt;br /&gt;
* 0 🟧&lt;br /&gt;
* 0 ❌&lt;br /&gt;
| -&lt;br /&gt;
|-&lt;br /&gt;
|✅&lt;br /&gt;
|Πάγκαλος Γεώργιος&lt;br /&gt;
|Θεσσαλονίκη&lt;br /&gt;
|Ιδιωτικό&lt;br /&gt;
|Τηλέφωνο: 6933091536&lt;br /&gt;
|100€ ανα συνεδρία &lt;br /&gt;
|Καρόλου Ντηλ 25, 54623&lt;br /&gt;
|Ναι.&lt;br /&gt;
|&lt;br /&gt;
* 1 ✅&lt;br /&gt;
* 0 🟨&lt;br /&gt;
* 0 🟧&lt;br /&gt;
* 0 ❌&lt;br /&gt;
| -&lt;br /&gt;
|-&lt;br /&gt;
|🟨&lt;br /&gt;
|Δημήτρης Ξυλάς&lt;br /&gt;
|Θεσσαλονίκη&lt;br /&gt;
|Ιδιωτικό&lt;br /&gt;
|Σταθερό: 2310236236&lt;br /&gt;
|70€ αναγκαστικό ψυχομετρικό τεστ και 60€ η συνεδρία&lt;br /&gt;
|Εγνατία 70 &amp;amp; Χαλκέων 16, 546 24&lt;br /&gt;
| -&lt;br /&gt;
|&lt;br /&gt;
* 0 ✅&lt;br /&gt;
* 1 🟨&lt;br /&gt;
* 0 🟧&lt;br /&gt;
* 0 ❌&lt;br /&gt;
|Δεν είναι NB friendly.&lt;br /&gt;
|-&lt;br /&gt;
|🟨&lt;br /&gt;
|Σταυριανάκος Κυριάκος&lt;br /&gt;
|Αθήνα / Διαδικτυακά&lt;br /&gt;
|Ιδιωτικό&lt;br /&gt;
| Σταθερό: 2108064113&lt;br /&gt;
| 70€ ανα ραντεβού (επι 6 μήνες gatekeeping)&lt;br /&gt;
| Θησέως 15-17, Μαρούσι 151 24&lt;br /&gt;
| Ναι.&lt;br /&gt;
|&lt;br /&gt;
* 0 ✅&lt;br /&gt;
* 2 🟨&lt;br /&gt;
* 0 🟧&lt;br /&gt;
* 0 ❌&lt;br /&gt;
| Διάβασε καλά την τιμή.&lt;br /&gt;
|-&lt;br /&gt;
|🟧&lt;br /&gt;
|Μεταξάς Σπυρίδων&lt;br /&gt;
|Αθήνα&lt;br /&gt;
|Ιδιωτικό&lt;br /&gt;
|Σταθερό: 2107116438&lt;br /&gt;
|70 ευρώ με κάρτα, 60 ευρώ χωρίς.&lt;br /&gt;
|Ρόδου 17, Μαρούσι, Αττική.&lt;br /&gt;
|Όχι.&lt;br /&gt;
|&lt;br /&gt;
* 1 ✅&lt;br /&gt;
* 0 🟨&lt;br /&gt;
* 0 🟧&lt;br /&gt;
* 1 ❌&lt;br /&gt;
| Με MTF ήταν super friendly, ενώ με FTM το ακριβώς αντίθετο. &lt;br /&gt;
|-&lt;br /&gt;
|🟧 &lt;br /&gt;
|Σαρρηγιανίδης Αλέξιος&lt;br /&gt;
|Θεσσαλονίκη&lt;br /&gt;
|Δημόσιο&lt;br /&gt;
| -&lt;br /&gt;
| -&lt;br /&gt;
| Ιπποκράτειο Θεσσαλονίκης&lt;br /&gt;
| Όχι.&lt;br /&gt;
|&lt;br /&gt;
* 0 ✅&lt;br /&gt;
* 0 🟨&lt;br /&gt;
* 1 🟧&lt;br /&gt;
* 0 ❌&lt;br /&gt;
| Δεν είναι κακός απλώς προτείνει τον Πάγκαλο (δλ. πήγαινε κατ&#039; ευθείαν εκεί) και έπειτα τον &#039;&#039;Μπουφίδη&#039;&#039; (γι&#039; αυτό και είναι 🟧 και όχι 🟨/✅) &lt;br /&gt;
|-&lt;br /&gt;
|❌&lt;br /&gt;
|Φλούδας Γεώργιος&lt;br /&gt;
|Αθήνα&lt;br /&gt;
|Δημόσιο&lt;br /&gt;
| -&lt;br /&gt;
| -&lt;br /&gt;
| -&lt;br /&gt;
| Όχι.&lt;br /&gt;
|&lt;br /&gt;
* 1 ✅&lt;br /&gt;
* 1 🟨&lt;br /&gt;
* 0 🟧&lt;br /&gt;
* 7 ❌&lt;br /&gt;
| -&lt;br /&gt;
|-&lt;br /&gt;
|❌&lt;br /&gt;
|Ηρακλής Μουρίκης&lt;br /&gt;
|Αθήνα&lt;br /&gt;
|Δημόσιο&lt;br /&gt;
| -&lt;br /&gt;
| -&lt;br /&gt;
| -&lt;br /&gt;
|Όχι.&lt;br /&gt;
|&lt;br /&gt;
* 0 ✅&lt;br /&gt;
* 0 🟨&lt;br /&gt;
* 0 🟧&lt;br /&gt;
* 3 ❌&lt;br /&gt;
| -&lt;br /&gt;
|-&lt;br /&gt;
|❌&lt;br /&gt;
|Απαζίδου Παρθένα&lt;br /&gt;
|Θεσσαλονίκη&lt;br /&gt;
|Δημόσιο&lt;br /&gt;
| -&lt;br /&gt;
| -&lt;br /&gt;
| Νοσοκομείο Αφροδισίων  &amp;amp; Δερματικών Νόσων Θεσσαλονίκης (παράρτημα Ιπποκράτειου στην Δελφών 124)&lt;br /&gt;
| Όχι.&lt;br /&gt;
|&lt;br /&gt;
* 0 ✅&lt;br /&gt;
* 0 🟨&lt;br /&gt;
* 0 🟧&lt;br /&gt;
* 1 ❌&lt;br /&gt;
|Δεν γνωρίζει απο &amp;quot;τρανς θέματα&amp;quot;.&lt;br /&gt;
|-&lt;br /&gt;
|❌ &lt;br /&gt;
|Λουκάς Αθανασιάδης&lt;br /&gt;
|Θεσσαλονίκη&lt;br /&gt;
|Δημόσιο&lt;br /&gt;
| -&lt;br /&gt;
| -&lt;br /&gt;
| -&lt;br /&gt;
| Όχι.&lt;br /&gt;
|&lt;br /&gt;
* 0 ✅&lt;br /&gt;
* 0 🟨&lt;br /&gt;
* 0 🟧&lt;br /&gt;
* 3 ❌&lt;br /&gt;
|Gatekeeping, zero tolenace στο diy, σπατάλη 2+ χρόνων.&lt;br /&gt;
|-&lt;br /&gt;
|❌&lt;br /&gt;
|Μπουφίδης Σταύρος&lt;br /&gt;
|Θεσσαλονίκη&lt;br /&gt;
|Ιδιωτικό&lt;br /&gt;
|Σταθερό: 2310253793&lt;br /&gt;
|&amp;quot;100€ μετρητά, 80€ κά- α όχι, συγνώμη, 80€ μέτρητα. 100€ κάρτα&amp;quot;&lt;br /&gt;
|Ερμού 36, Θεσσαλονίκη, 54623&lt;br /&gt;
|Όχι.&lt;br /&gt;
|&lt;br /&gt;
* 0 ✅&lt;br /&gt;
* 0 🟨&lt;br /&gt;
* 0 🟧&lt;br /&gt;
* 2 ❌&lt;br /&gt;
|Αν σ&#039; αρέσει να πληρώνεις για να σε κάνουν gatekeep, είναι τέλειος.&lt;br /&gt;
|-&lt;br /&gt;
|❌&lt;br /&gt;
|Καλλιόπη Προκοπάκη&lt;br /&gt;
|Αθήνα&lt;br /&gt;
|Ιδιωτικό&lt;br /&gt;
| -&lt;br /&gt;
| -&lt;br /&gt;
| -&lt;br /&gt;
| -&lt;br /&gt;
|&lt;br /&gt;
* 0 ✅&lt;br /&gt;
* 0 🟨&lt;br /&gt;
* 0 🟧&lt;br /&gt;
* 1 ❌&lt;br /&gt;
|Είναι κατά τον γάμο ομόφυλων ζευγαριών.&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== Ψυχολόγοι ==&lt;br /&gt;
{| class=&amp;quot;wikitable sortable&amp;quot;&lt;br /&gt;
|+&lt;br /&gt;
!✅/🟨/🟧/❌&lt;br /&gt;
!Όνομα&lt;br /&gt;
!Περιοχή&lt;br /&gt;
!Δημόσιο/Ιδιωτικό&lt;br /&gt;
!Επικοινωνία&lt;br /&gt;
!Τιμή&lt;br /&gt;
!Οδός&lt;br /&gt;
!Διαδικτυακά&lt;br /&gt;
!Κριτικές&lt;br /&gt;
!Σημειώσεις&lt;br /&gt;
|-&lt;br /&gt;
|✅&lt;br /&gt;
|Γεωργία Καμπόλη&lt;br /&gt;
|Άνω Λιόσια / Διαδικτυακά&lt;br /&gt;
|Ιδιωτικό&lt;br /&gt;
| Τηλέφωνο: 6931170170 &lt;br /&gt;
Email: geokaboli@gmail.com &lt;br /&gt;
&lt;br /&gt;
Email (στην ιστοσελίδα): info@kabolipsychologist.gr&lt;br /&gt;
| -&lt;br /&gt;
| Οδ. Ελύτη 2, Άνω Λιόσια 133 41&lt;br /&gt;
| Ναι.&lt;br /&gt;
|&lt;br /&gt;
* 1 ✅&lt;br /&gt;
* 0 🟨&lt;br /&gt;
* 0 🟧&lt;br /&gt;
* 0 ❌&lt;br /&gt;
| -&lt;br /&gt;
|-&lt;br /&gt;
|❌&lt;br /&gt;
|Γιαντσίδου Βασιλική&lt;br /&gt;
|Ορεστιάδα&lt;br /&gt;
|Ιδιωτικό&lt;br /&gt;
| -&lt;br /&gt;
| -&lt;br /&gt;
| -&lt;br /&gt;
| -&lt;br /&gt;
| -&lt;br /&gt;
| Στον κώλο της μαϊμούς, δεν θα βγάλεις άκρη, why bother?&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== Παιδοψυχίατροι ==&lt;br /&gt;
{| class=&amp;quot;wikitable sortable&amp;quot;&lt;br /&gt;
|+&lt;br /&gt;
!✅/🟨/🟧/❌&lt;br /&gt;
!Όνομα&lt;br /&gt;
!Περιοχή&lt;br /&gt;
!Δημόσιο/Ιδιωτικό&lt;br /&gt;
!Επικοινωνία&lt;br /&gt;
!Τιμή&lt;br /&gt;
!Οδός&lt;br /&gt;
!Διαδικτυακά&lt;br /&gt;
!Κριτικές&lt;br /&gt;
!Σημειώσεις&lt;br /&gt;
|-&lt;br /&gt;
|❌&lt;br /&gt;
|Στέλλα/Στυλιανή Βαγιωνά&lt;br /&gt;
|Θεσσαλονίκη&lt;br /&gt;
|Ιδιωτικό&lt;br /&gt;
| -&lt;br /&gt;
|70€ (χωρίς απόδειξη)&lt;br /&gt;
| -&lt;br /&gt;
| -&lt;br /&gt;
|&lt;br /&gt;
* 0 ✅&lt;br /&gt;
* 0 🟨&lt;br /&gt;
* 0 🟧&lt;br /&gt;
* 1 ❌&lt;br /&gt;
| -&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== Ενδοκρινολόγοι ==&lt;br /&gt;
{| class=&amp;quot;wikitable sortable&amp;quot;&lt;br /&gt;
|+&lt;br /&gt;
!✅/🟨/🟧/❌&lt;br /&gt;
!Όνομα&lt;br /&gt;
!Περιοχή&lt;br /&gt;
!Δημόσιο/Ιδιωτικό&lt;br /&gt;
!Επικοινωνία&lt;br /&gt;
!Τιμή&lt;br /&gt;
!Οδός&lt;br /&gt;
!Διαδικτυακά&lt;br /&gt;
!Κριτικές&lt;br /&gt;
!Σημειώσεις&lt;br /&gt;
|-&lt;br /&gt;
|✅&lt;br /&gt;
|Γιουλάντα Πέτκοβα&lt;br /&gt;
|Ρέθυμνο&lt;br /&gt;
|Ιδιωτικό&lt;br /&gt;
|Σταθερό: 2831053220&lt;br /&gt;
Κινητό: 6937294404&lt;br /&gt;
&lt;br /&gt;
Email: valiapetg@gmail.com&lt;br /&gt;
|50€&lt;br /&gt;
|Δημητρακάκη Σ. 31, Ρέθυμνο 741 32&lt;br /&gt;
| Ναι&lt;br /&gt;
|&lt;br /&gt;
*1 ✅&lt;br /&gt;
* 0 🟨&lt;br /&gt;
* 0 🟧&lt;br /&gt;
* 0 ❌&lt;br /&gt;
| - Ενδεχομένως να θέλει χαρτί για συνταγογράφηση, &#039;&#039;&#039;για αιματολογικές&#039;&#039;&#039; δεν έχει ζητήσει.&lt;br /&gt;
- Δεν έχει θέμα με DIY.&lt;br /&gt;
|-&lt;br /&gt;
|🟨&lt;br /&gt;
|Κούκκου Ευτυχία&lt;br /&gt;
|Αθήνα&lt;br /&gt;
|Δημόσιο&lt;br /&gt;
| -&lt;br /&gt;
| -&lt;br /&gt;
| Γ.Ν. Έλενα Βενιζέλου, Αθήνα 115 21&lt;br /&gt;
| Όχι.&lt;br /&gt;
|&lt;br /&gt;
* 4 ✅&lt;br /&gt;
* 0 🟨&lt;br /&gt;
* 1 🟧&lt;br /&gt;
* 1 ❌&lt;br /&gt;
| - Θέλει διάγνωση. &lt;br /&gt;
- Κάνει περίεργο misgendering μερικές φορές.&lt;br /&gt;
|-&lt;br /&gt;
|✅&lt;br /&gt;
|Θεώδορος Θωμάς&lt;br /&gt;
|Αθήνα&lt;br /&gt;
|Ιδιωτικό&lt;br /&gt;
| Σταθερό: 2106436115&lt;br /&gt;
| 80-100€ η συνεδρία&lt;br /&gt;
| Λεωφ. Κηφισίας 5, 115 23 Αμπελόκηποι, Αθήνα&lt;br /&gt;
| -&lt;br /&gt;
|&lt;br /&gt;
* 5 ✅&lt;br /&gt;
* 1 🟨&lt;br /&gt;
* 0 🟧&lt;br /&gt;
* 0 ❌&lt;br /&gt;
| - Θέλει διάγνωση. &lt;br /&gt;
- Έχει γράψει &#039;&#039;&#039;50mg androcur&#039;&#039;&#039; ανά &#039;&#039;&#039;μέρα&#039;&#039;&#039;. Παρ&#039; όλα αυτά δεν έχει υπάρξει άλλο περιστατικό σαν αυτό, οπότε &#039;&#039;&#039;δεν είναι fully conclusive&#039;&#039;&#039; το &amp;quot;Έγραψε παράξενη δοσολογία μια φορά σε μια κοπέλα.&amp;quot; &lt;br /&gt;
|-&lt;br /&gt;
|✅&lt;br /&gt;
|Σκαράκης Νικήτας&lt;br /&gt;
|Αθήνα&lt;br /&gt;
|Ιδιωτικό&lt;br /&gt;
| Σταθερό:  2107117965&lt;br /&gt;
| 50€ η συνεδρία&lt;br /&gt;
| Κυκλαμίνων 7 (Περιοχή Αγίου Ιεροθέου), Περιστέρι, Αττική&lt;br /&gt;
| Ναι. (60€ η συνεδρία)&lt;br /&gt;
|&lt;br /&gt;
* 1 ✅&lt;br /&gt;
* 0 🟨&lt;br /&gt;
* 0 🟧&lt;br /&gt;
* 0 ❌&lt;br /&gt;
| - Θέλει διάγνωση.&lt;br /&gt;
|-&lt;br /&gt;
|✅&lt;br /&gt;
|Στέργιος Κιούρας&lt;br /&gt;
|Θεσσαλονίκη&lt;br /&gt;
|Ιδιωτικό&lt;br /&gt;
| Σταθερό: 2310256498&lt;br /&gt;
| 50€ η συνεδρία&lt;br /&gt;
| Ερμού 36, Θεσσαλονίκη 546 23&lt;br /&gt;
| -&lt;br /&gt;
|&lt;br /&gt;
* 1 ✅&lt;br /&gt;
* 0 🟨&lt;br /&gt;
* 0 🟧&lt;br /&gt;
* 0 ❌&lt;br /&gt;
| - &#039;&#039;&#039;Δεν ζήτησε&#039;&#039;&#039; διάγνωση.&lt;br /&gt;
|-&lt;br /&gt;
|🟨&lt;br /&gt;
|Θεμιστοκλής Καλτσάς&lt;br /&gt;
|Θεσσαλονίκη&lt;br /&gt;
|Ιδιωτικό&lt;br /&gt;
| Σταθερό: 2310238719&lt;br /&gt;
| 50€ η συνεδρία&lt;br /&gt;
| Παλαιών Πατρών Γερμανού 21, Θεσσαλονίκη&lt;br /&gt;
| -&lt;br /&gt;
|&lt;br /&gt;
* 1 ✅&lt;br /&gt;
* 1 🟨&lt;br /&gt;
* 0 🟧&lt;br /&gt;
* 0 ❌&lt;br /&gt;
| - Δεν έχει θέμα με DIY, &#039;&#039;&#039;δεν ζήτησε άμεσα&#039;&#039;&#039; διάγνωση, αλλά &#039;&#039;&#039;την θέλει&#039;&#039;&#039; γενικότερα (δλ. αν δεν έχεις θα στη ζητήσει μελλοντικά μεσω e-mail)&lt;br /&gt;
- Έχει θέμα με τα &amp;quot;υψηλά&amp;quot; επίπεδα (π.χ. κανονικά pg/ml e2 στην μονοθεραπεία με injections είναι περίεργα γι&#039; αυτόν)&lt;br /&gt;
- Ζητάει διάγνωση στα άτομα που δεν λαμβάνουν DIY HRT.&lt;br /&gt;
- Ημι-συχνό misgendering.&lt;br /&gt;
|-&lt;br /&gt;
|✅&lt;br /&gt;
|Παναγιώτης Μ. Μπουντούρης&lt;br /&gt;
|Σύρος&lt;br /&gt;
|Ιδιωτικό&lt;br /&gt;
|Σταθερό: 2281082030&lt;br /&gt;
Κινητό: 6946545831&lt;br /&gt;
|30€ η πρώτη συνεδρία&lt;br /&gt;
10€ η συνταγή&lt;br /&gt;
|Κλεισθένους 15, Ερμούπολη, 84100, Κυκλάδων&lt;br /&gt;
| -&lt;br /&gt;
|&lt;br /&gt;
* 1 ✅&lt;br /&gt;
* 0 🟨&lt;br /&gt;
* 0 🟧&lt;br /&gt;
* 0 ❌&lt;br /&gt;
| -&lt;br /&gt;
|-&lt;br /&gt;
|🟨&lt;br /&gt;
|Κωνσταντίνος Α. Τούλης&lt;br /&gt;
|Θεσσαλονίκη&lt;br /&gt;
|Ιδιωτικό&lt;br /&gt;
|Τηλέφωνο: 2310222799&lt;br /&gt;
|50€ η συνεδρία&lt;br /&gt;
|Μητροπόλεως 73, Θεσσαλονίκη 546 22&lt;br /&gt;
| -&lt;br /&gt;
|&lt;br /&gt;
* 0 ✅&lt;br /&gt;
* 1 🟨&lt;br /&gt;
* 0 🟧&lt;br /&gt;
* 0 ❌&lt;br /&gt;
| - Θέλει διάγνωση.&lt;br /&gt;
|-&lt;br /&gt;
|❌&lt;br /&gt;
|Πουλάκος Πάυλος&lt;br /&gt;
|Θεσσαλονίκη&lt;br /&gt;
|Ιδιωτικό&lt;br /&gt;
|Σταθερό: 2105579147&lt;br /&gt;
|50€ η συνεδρία &lt;br /&gt;
|Τσιμισκή Ιωάννη 69, Αγία Σοφία, 546 22&lt;br /&gt;
| -&lt;br /&gt;
|&lt;br /&gt;
* 0 ✅&lt;br /&gt;
* 0 🟨&lt;br /&gt;
* 0 🟧&lt;br /&gt;
* 1 ❌&lt;br /&gt;
| - 100mg cypro ανά μέρα χωρίς προειδοποίηση στο cyclacur για τα πορτοκαλί/καφέ χάπια (πολύ κακό)&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== Δερματολόγοι/Αφροδισιολόγοι/Laser Κλινικές ==&lt;br /&gt;
{| class=&amp;quot;wikitable sortable&amp;quot;&lt;br /&gt;
|+&lt;br /&gt;
!✅/🟨/🟧/❌&lt;br /&gt;
!Όνομα&lt;br /&gt;
!Περιοχή&lt;br /&gt;
!Είδος&lt;br /&gt;
!Δημόσιο/Ιδιωτικό&lt;br /&gt;
!Επικοινωνία&lt;br /&gt;
!Τιμή&lt;br /&gt;
!Διαδικτυακά&lt;br /&gt;
!Κριτικές&lt;br /&gt;
!Σημειώσεις&lt;br /&gt;
|-&lt;br /&gt;
|❌&lt;br /&gt;
|Ζαχαρίας Ι. Ανδρεαδάκης&lt;br /&gt;
|Αθήνα&lt;br /&gt;
|Δερματολόγος/Αφροδισιολόγος/Laser&lt;br /&gt;
|Ιδιωτικό&lt;br /&gt;
| -&lt;br /&gt;
| -&lt;br /&gt;
| -&lt;br /&gt;
|&lt;br /&gt;
* 0 ✅&lt;br /&gt;
* 0 🟨&lt;br /&gt;
* 0 🟧&lt;br /&gt;
* 1 ❌&lt;br /&gt;
| -&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== Χειρούργοι ==&lt;br /&gt;
{| class=&amp;quot;wikitable sortable&amp;quot;&lt;br /&gt;
|+&lt;br /&gt;
!✅/🟨/🟧/❌&lt;br /&gt;
!Όνομα&lt;br /&gt;
!Περιοχή&lt;br /&gt;
!Δημόσιο/Ιδιωτικό&lt;br /&gt;
!Επικοινωνία&lt;br /&gt;
!Τιμή&lt;br /&gt;
!Οδός&lt;br /&gt;
!Διαδικτυακά&lt;br /&gt;
!Κριτικές&lt;br /&gt;
!Σημειώσεις&lt;br /&gt;
|-&lt;br /&gt;
|✅&lt;br /&gt;
|Ηλίας Μεξής&lt;br /&gt;
|Αθήνα&lt;br /&gt;
|Ιδιωτικό&lt;br /&gt;
| Σταθερό: 2114068315&lt;br /&gt;
| Top surgery ~3000€&lt;br /&gt;
|Αγ. Θεοδώρων 10, 14562 Κηφισιά&lt;br /&gt;
| -&lt;br /&gt;
|&lt;br /&gt;
* 1 ✅&lt;br /&gt;
* 0 🟨&lt;br /&gt;
* 0 🟧&lt;br /&gt;
* 0 ❌&lt;br /&gt;
| - Δεν ζητάει γνωμάτευση.&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== Δικηγόροι ==&lt;br /&gt;
{| class=&amp;quot;wikitable sortable&amp;quot;&lt;br /&gt;
|+&lt;br /&gt;
!✅/🟨/🟧/❌&lt;br /&gt;
!Όνομα&lt;br /&gt;
!Περιοχή&lt;br /&gt;
!Δημόσιο/Ιδιωτικό&lt;br /&gt;
!Επικοινωνία&lt;br /&gt;
!Τιμή&lt;br /&gt;
!Οδός&lt;br /&gt;
!Διαδικτυακά&lt;br /&gt;
!Κριτικές&lt;br /&gt;
!Σημειώσεις&lt;br /&gt;
|-&lt;br /&gt;
|✅&lt;br /&gt;
|Αθηνά Καλογρίδη&lt;br /&gt;
|Θεσσαλονίκη&lt;br /&gt;
|Ιδιωτικό&lt;br /&gt;
| Σταθερό: 2310220704&lt;br /&gt;
| 125€ αίτηση&lt;br /&gt;
125€ δικαστήριο&lt;br /&gt;
43€ εισαγγελέας&lt;br /&gt;
| Κομνηνών 20, Θεσσαλονίκη, 54624, ΘΕΣΣΑΛΟΝΙΚΗΣ&lt;br /&gt;
| -&lt;br /&gt;
|&lt;br /&gt;
* 1 ✅&lt;br /&gt;
* 0 🟨&lt;br /&gt;
* 0 🟧&lt;br /&gt;
* 0 ❌&lt;br /&gt;
| -&lt;br /&gt;
|}&lt;/div&gt;</summary>
		<author><name>Goblinmoder</name></author>
	</entry>
	<entry>
		<id>https://wiki.diyon.top/index.php?title=Doctors&amp;diff=1027</id>
		<title>Doctors</title>
		<link rel="alternate" type="text/html" href="https://wiki.diyon.top/index.php?title=Doctors&amp;diff=1027"/>
		<updated>2025-10-18T11:30:44Z</updated>

		<summary type="html">&lt;p&gt;Goblinmoder: floudas fix 2&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{#seo:&lt;br /&gt;
|title_mode=replace&lt;br /&gt;
|title=Doctors&lt;br /&gt;
|description=List of doctors documented, most of which are from real life encounters, opinions are non-definitive.&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
== Ψυχίατροι ==&lt;br /&gt;
{| class=&amp;quot;wikitable sortable&amp;quot;&lt;br /&gt;
|+&lt;br /&gt;
!✅/🟨/🟧/❌&lt;br /&gt;
!Όνομα&lt;br /&gt;
!Περιοχή&lt;br /&gt;
!Δημόσιο/Ιδιωτικό&lt;br /&gt;
!Επικοινωνία&lt;br /&gt;
!Τιμή&lt;br /&gt;
!Οδός&lt;br /&gt;
!Διαδικτυακά&lt;br /&gt;
!Κριτικές&lt;br /&gt;
!Σημειώσεις&lt;br /&gt;
|-&lt;br /&gt;
|✅&lt;br /&gt;
|Καρατζαφέρης Λυκούργος&lt;br /&gt;
|Αθήνα / Διαδικτυακά&lt;br /&gt;
|Ιδιωτικό&lt;br /&gt;
|Σταθερό: 2177207765&lt;br /&gt;
Τηλέφωνο: 6944302577&lt;br /&gt;
|30-70 ευρώ, 1-2 συνεδρίες για γνωμάτευση.&lt;br /&gt;
|Αμφιτρύωνος 78, Αττική, 11853.&lt;br /&gt;
|Κάνει και online αλλά προτιμάει irl.&lt;br /&gt;
|&lt;br /&gt;
* 2 ✅&lt;br /&gt;
* 0 🟨&lt;br /&gt;
* 0 🟧&lt;br /&gt;
* 0 ❌&lt;br /&gt;
| -&lt;br /&gt;
|-&lt;br /&gt;
|✅&lt;br /&gt;
|Μαρία Αναστασάκη&lt;br /&gt;
|Ηράκλειο / Διαδικτυακά&lt;br /&gt;
|Ιδιωτικό&lt;br /&gt;
|Σταθερό: 2810223940&lt;br /&gt;
Τηλέφωνο: 6980566188&lt;br /&gt;
&lt;br /&gt;
E-mail: [mailto:anastasakitherapy@gmail.com anastasakitherapy@gmail.com]&lt;br /&gt;
|40Ε ανα συνεδρία / 90Ε (γνωμάτευση)&lt;br /&gt;
|Λεωφόρος Ιωνίας 136, Ηράκλειο [Δήμος], Ηράκλειο, 71305&lt;br /&gt;
|Ναι.&lt;br /&gt;
|&lt;br /&gt;
* 2 ✅&lt;br /&gt;
* 1 🟨&lt;br /&gt;
* 0 🟧&lt;br /&gt;
* 0 ❌&lt;br /&gt;
| Μπορεί να είναι δύσκολη η επικοινωνία.&lt;br /&gt;
|-&lt;br /&gt;
|✅&lt;br /&gt;
|Κατερίνα Χαλκιαδάκη&lt;br /&gt;
|Ηράκλειο / Διαδικτυακά&lt;br /&gt;
|Ιδιωτικό&lt;br /&gt;
|Σταθερό: 2810223940&lt;br /&gt;
|40Ε ανα συνεδρία / 90Ε (γνωμάτευση)&lt;br /&gt;
|Λεωφόρος Ιωνίας 136, Ηράκλειο [Δήμος], Ηράκλειο, 71305&lt;br /&gt;
|Ναι.&lt;br /&gt;
|&lt;br /&gt;
* 1 ✅&lt;br /&gt;
* 0 🟨&lt;br /&gt;
* 0 🟧&lt;br /&gt;
* 0 ❌&lt;br /&gt;
|Συνάδελφος της Αναστασάκη.&lt;br /&gt;
|-&lt;br /&gt;
|✅&lt;br /&gt;
|Ελένη Ζαχάρη&lt;br /&gt;
|Αθήνα&lt;br /&gt;
|Ιδιωτικό&lt;br /&gt;
|Τηλέφωνο: 6942493053&lt;br /&gt;
|50-70€ το ραντεβού (γνωμάτευση σε 2 συνεδρίες)&lt;br /&gt;
|Χατζηκώστα 8Α, Πλατεία Μαβίλη, Αττική.&lt;br /&gt;
|Ναι.&lt;br /&gt;
|&lt;br /&gt;
* 1 ✅&lt;br /&gt;
* 0 🟨&lt;br /&gt;
* 0 🟧&lt;br /&gt;
* 0 ❌&lt;br /&gt;
| -&lt;br /&gt;
|-&lt;br /&gt;
|✅&lt;br /&gt;
|Γεωργιλαδάκης Ιωάννης&lt;br /&gt;
|Ηράκλειο&lt;br /&gt;
|Ιδιωτικό&lt;br /&gt;
|Σταθερό: 2107442019&lt;br /&gt;
|50€ το ραντεβού. (Στο [https://www.doctoranytime.gr/d/Psychiatros/georgiladakis-ioannis site]&amp;lt;nowiki&amp;gt; αναφέρεται το εξής: &amp;quot;Πιστοποιητικά/Βεβαιώσεις | Από 20€ έως 40€&amp;quot;)&amp;lt;/nowiki&amp;gt;&lt;br /&gt;
|Πλατεία Ρήγα Φεραίου 13, Ηράκλειο, Κρήτη.&lt;br /&gt;
|Λογικά όχι πια (writer&#039;s conclusion, citation needed)&lt;br /&gt;
|&lt;br /&gt;
* 1 ✅&lt;br /&gt;
* 0 🟨&lt;br /&gt;
* 0 🟧&lt;br /&gt;
* 0 ❌&lt;br /&gt;
| -&lt;br /&gt;
|-&lt;br /&gt;
|✅&lt;br /&gt;
|Πάγκαλος Γεώργιος&lt;br /&gt;
|Θεσσαλονίκη&lt;br /&gt;
|Ιδιωτικό&lt;br /&gt;
|Τηλέφωνο: 6933091536&lt;br /&gt;
|100€ ανα συνεδρία &lt;br /&gt;
|Καρόλου Ντηλ 25, 54623&lt;br /&gt;
|Ναι.&lt;br /&gt;
|&lt;br /&gt;
* 1 ✅&lt;br /&gt;
* 0 🟨&lt;br /&gt;
* 0 🟧&lt;br /&gt;
* 0 ❌&lt;br /&gt;
| -&lt;br /&gt;
|-&lt;br /&gt;
|🟨&lt;br /&gt;
|Δημήτρης Ξυλάς&lt;br /&gt;
|Θεσσαλονίκη&lt;br /&gt;
|Ιδιωτικό&lt;br /&gt;
|Σταθερό: 2310236236&lt;br /&gt;
|70€ αναγκαστικό ψυχομετρικό τεστ και 60€ η συνεδρία&lt;br /&gt;
|Εγνατία 70 &amp;amp; Χαλκέων 16, 546 24&lt;br /&gt;
| -&lt;br /&gt;
|&lt;br /&gt;
* 0 ✅&lt;br /&gt;
* 1 🟨&lt;br /&gt;
* 0 🟧&lt;br /&gt;
* 0 ❌&lt;br /&gt;
|Δεν είναι NB friendly.&lt;br /&gt;
|-&lt;br /&gt;
|🟨&lt;br /&gt;
|Σταυριανάκος Κυριάκος&lt;br /&gt;
|Αθήνα / Διαδικτυακά&lt;br /&gt;
|Ιδιωτικό&lt;br /&gt;
| Σταθερό: 2108064113&lt;br /&gt;
| 70€ ανα ραντεβού (επι 6 μήνες gatekeeping)&lt;br /&gt;
| Θησέως 15-17, Μαρούσι 151 24&lt;br /&gt;
| Ναι.&lt;br /&gt;
|&lt;br /&gt;
* 0 ✅&lt;br /&gt;
* 2 🟨&lt;br /&gt;
* 0 🟧&lt;br /&gt;
* 0 ❌&lt;br /&gt;
| Διάβασε καλά την τιμή.&lt;br /&gt;
|-&lt;br /&gt;
|🟧&lt;br /&gt;
|Μεταξάς Σπυρίδων&lt;br /&gt;
|Αθήνα&lt;br /&gt;
|Ιδιωτικό&lt;br /&gt;
|Σταθερό: 2107116438&lt;br /&gt;
|70 ευρώ με κάρτα, 60 ευρώ χωρίς.&lt;br /&gt;
|Ρόδου 17, Μαρούσι, Αττική.&lt;br /&gt;
|Όχι.&lt;br /&gt;
|&lt;br /&gt;
* 1 ✅&lt;br /&gt;
* 0 🟨&lt;br /&gt;
* 0 🟧&lt;br /&gt;
* 1 ❌&lt;br /&gt;
| Με MTF ήταν super friendly, ενώ με FTM το ακριβώς αντίθετο. &lt;br /&gt;
|-&lt;br /&gt;
|🟧 &lt;br /&gt;
|Σαρρηγιανίδης Αλέξιος&lt;br /&gt;
|Θεσσαλονίκη&lt;br /&gt;
|Δημόσιο&lt;br /&gt;
| -&lt;br /&gt;
| -&lt;br /&gt;
| Ιπποκράτειο Θεσσαλονίκης&lt;br /&gt;
| Όχι.&lt;br /&gt;
|&lt;br /&gt;
* 0 ✅&lt;br /&gt;
* 0 🟨&lt;br /&gt;
* 1 🟧&lt;br /&gt;
* 0 ❌&lt;br /&gt;
| Δεν είναι κακός απλώς προτείνει τον Πάγκαλο (δλ. πήγαινε κατ&#039; ευθείαν εκεί) και έπειτα τον &#039;&#039;Μπουφίδη&#039;&#039; (γι&#039; αυτό και είναι 🟧 και όχι 🟨/✅) &lt;br /&gt;
|-&lt;br /&gt;
|❌&lt;br /&gt;
|Φλούδας Γεώργιος&lt;br /&gt;
|Αθήνα&lt;br /&gt;
|Δημόσιο&lt;br /&gt;
| -&lt;br /&gt;
| -&lt;br /&gt;
| -&lt;br /&gt;
| Όχι.&lt;br /&gt;
|&lt;br /&gt;
* 1 ✅&lt;br /&gt;
* 1 🟨&lt;br /&gt;
* 0 🟧&lt;br /&gt;
* 7 ❌&lt;br /&gt;
| -&lt;br /&gt;
|-&lt;br /&gt;
|❌&lt;br /&gt;
|Απαζίδου Παρθένα&lt;br /&gt;
|Θεσσαλονίκη&lt;br /&gt;
|Δημόσιο&lt;br /&gt;
| -&lt;br /&gt;
| -&lt;br /&gt;
| Νοσοκομείο Αφροδισίων  &amp;amp; Δερματικών Νόσων Θεσσαλονίκης (παράρτημα Ιπποκράτειου στην Δελφών 124)&lt;br /&gt;
| Όχι.&lt;br /&gt;
|&lt;br /&gt;
* 0 ✅&lt;br /&gt;
* 0 🟨&lt;br /&gt;
* 0 🟧&lt;br /&gt;
* 1 ❌&lt;br /&gt;
|Δεν γνωρίζει απο &amp;quot;τρανς θέματα&amp;quot;.&lt;br /&gt;
|-&lt;br /&gt;
|❌ &lt;br /&gt;
|Λουκάς Αθανασιάδης&lt;br /&gt;
|Θεσσαλονίκη&lt;br /&gt;
|Δημόσιο&lt;br /&gt;
| -&lt;br /&gt;
| -&lt;br /&gt;
| -&lt;br /&gt;
| Όχι.&lt;br /&gt;
|&lt;br /&gt;
* 0 ✅&lt;br /&gt;
* 0 🟨&lt;br /&gt;
* 0 🟧&lt;br /&gt;
* 3 ❌&lt;br /&gt;
|Gatekeeping, zero tolenace στο diy, σπατάλη 2+ χρόνων.&lt;br /&gt;
|-&lt;br /&gt;
|❌&lt;br /&gt;
|Μπουφίδης Σταύρος&lt;br /&gt;
|Θεσσαλονίκη&lt;br /&gt;
|Ιδιωτικό&lt;br /&gt;
|Σταθερό: 2310253793&lt;br /&gt;
|&amp;quot;100€ μετρητά, 80€ κά- α όχι, συγνώμη, 80€ μέτρητα. 100€ κάρτα&amp;quot;&lt;br /&gt;
|Ερμού 36, Θεσσαλονίκη, 54623&lt;br /&gt;
|Όχι.&lt;br /&gt;
|&lt;br /&gt;
* 0 ✅&lt;br /&gt;
* 0 🟨&lt;br /&gt;
* 0 🟧&lt;br /&gt;
* 2 ❌&lt;br /&gt;
|Αν σ&#039; αρέσει να πληρώνεις για να σε κάνουν gatekeep, είναι τέλειος.&lt;br /&gt;
|-&lt;br /&gt;
|❌&lt;br /&gt;
|Καλλιόπη Προκοπάκη&lt;br /&gt;
|Αθήνα&lt;br /&gt;
|Ιδιωτικό&lt;br /&gt;
| -&lt;br /&gt;
| -&lt;br /&gt;
| -&lt;br /&gt;
| -&lt;br /&gt;
|&lt;br /&gt;
* 0 ✅&lt;br /&gt;
* 0 🟨&lt;br /&gt;
* 0 🟧&lt;br /&gt;
* 1 ❌&lt;br /&gt;
|Είναι κατά τον γάμο ομόφυλων ζευγαριών.&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== Ψυχολόγοι ==&lt;br /&gt;
{| class=&amp;quot;wikitable sortable&amp;quot;&lt;br /&gt;
|+&lt;br /&gt;
!✅/🟨/🟧/❌&lt;br /&gt;
!Όνομα&lt;br /&gt;
!Περιοχή&lt;br /&gt;
!Δημόσιο/Ιδιωτικό&lt;br /&gt;
!Επικοινωνία&lt;br /&gt;
!Τιμή&lt;br /&gt;
!Οδός&lt;br /&gt;
!Διαδικτυακά&lt;br /&gt;
!Κριτικές&lt;br /&gt;
!Σημειώσεις&lt;br /&gt;
|-&lt;br /&gt;
|✅&lt;br /&gt;
|Γεωργία Καμπόλη&lt;br /&gt;
|Άνω Λιόσια / Διαδικτυακά&lt;br /&gt;
|Ιδιωτικό&lt;br /&gt;
| Τηλέφωνο: 6931170170 &lt;br /&gt;
Email: geokaboli@gmail.com &lt;br /&gt;
&lt;br /&gt;
Email (στην ιστοσελίδα): info@kabolipsychologist.gr&lt;br /&gt;
| -&lt;br /&gt;
| Οδ. Ελύτη 2, Άνω Λιόσια 133 41&lt;br /&gt;
| Ναι.&lt;br /&gt;
|&lt;br /&gt;
* 1 ✅&lt;br /&gt;
* 0 🟨&lt;br /&gt;
* 0 🟧&lt;br /&gt;
* 0 ❌&lt;br /&gt;
| -&lt;br /&gt;
|-&lt;br /&gt;
|❌&lt;br /&gt;
|Γιαντσίδου Βασιλική&lt;br /&gt;
|Ορεστιάδα&lt;br /&gt;
|Ιδιωτικό&lt;br /&gt;
| -&lt;br /&gt;
| -&lt;br /&gt;
| -&lt;br /&gt;
| -&lt;br /&gt;
| -&lt;br /&gt;
| Στον κώλο της μαϊμούς, δεν θα βγάλεις άκρη, why bother?&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== Παιδοψυχίατροι ==&lt;br /&gt;
{| class=&amp;quot;wikitable sortable&amp;quot;&lt;br /&gt;
|+&lt;br /&gt;
!✅/🟨/🟧/❌&lt;br /&gt;
!Όνομα&lt;br /&gt;
!Περιοχή&lt;br /&gt;
!Δημόσιο/Ιδιωτικό&lt;br /&gt;
!Επικοινωνία&lt;br /&gt;
!Τιμή&lt;br /&gt;
!Οδός&lt;br /&gt;
!Διαδικτυακά&lt;br /&gt;
!Κριτικές&lt;br /&gt;
!Σημειώσεις&lt;br /&gt;
|-&lt;br /&gt;
|❌&lt;br /&gt;
|Στέλλα/Στυλιανή Βαγιωνά&lt;br /&gt;
|Θεσσαλονίκη&lt;br /&gt;
|Ιδιωτικό&lt;br /&gt;
| -&lt;br /&gt;
|70€ (χωρίς απόδειξη)&lt;br /&gt;
| -&lt;br /&gt;
| -&lt;br /&gt;
|&lt;br /&gt;
* 0 ✅&lt;br /&gt;
* 0 🟨&lt;br /&gt;
* 0 🟧&lt;br /&gt;
* 1 ❌&lt;br /&gt;
| -&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== Ενδοκρινολόγοι ==&lt;br /&gt;
{| class=&amp;quot;wikitable sortable&amp;quot;&lt;br /&gt;
|+&lt;br /&gt;
!✅/🟨/🟧/❌&lt;br /&gt;
!Όνομα&lt;br /&gt;
!Περιοχή&lt;br /&gt;
!Δημόσιο/Ιδιωτικό&lt;br /&gt;
!Επικοινωνία&lt;br /&gt;
!Τιμή&lt;br /&gt;
!Οδός&lt;br /&gt;
!Διαδικτυακά&lt;br /&gt;
!Κριτικές&lt;br /&gt;
!Σημειώσεις&lt;br /&gt;
|-&lt;br /&gt;
|✅&lt;br /&gt;
|Γιουλάντα Πέτκοβα&lt;br /&gt;
|Ρέθυμνο&lt;br /&gt;
|Ιδιωτικό&lt;br /&gt;
|Σταθερό: 2831053220&lt;br /&gt;
Κινητό: 6937294404&lt;br /&gt;
&lt;br /&gt;
Email: valiapetg@gmail.com&lt;br /&gt;
|50€&lt;br /&gt;
|Δημητρακάκη Σ. 31, Ρέθυμνο 741 32&lt;br /&gt;
| Ναι&lt;br /&gt;
|&lt;br /&gt;
*1 ✅&lt;br /&gt;
* 0 🟨&lt;br /&gt;
* 0 🟧&lt;br /&gt;
* 0 ❌&lt;br /&gt;
| - Ενδεχομένως να θέλει χαρτί για συνταγογράφηση, &#039;&#039;&#039;για αιματολογικές&#039;&#039;&#039; δεν έχει ζητήσει.&lt;br /&gt;
- Δεν έχει θέμα με DIY.&lt;br /&gt;
|-&lt;br /&gt;
|🟨&lt;br /&gt;
|Κούκκου Ευτυχία&lt;br /&gt;
|Αθήνα&lt;br /&gt;
|Δημόσιο&lt;br /&gt;
| -&lt;br /&gt;
| -&lt;br /&gt;
| Γ.Ν. Έλενα Βενιζέλου, Αθήνα 115 21&lt;br /&gt;
| Όχι.&lt;br /&gt;
|&lt;br /&gt;
* 4 ✅&lt;br /&gt;
* 0 🟨&lt;br /&gt;
* 1 🟧&lt;br /&gt;
* 1 ❌&lt;br /&gt;
| - Θέλει διάγνωση. &lt;br /&gt;
- Κάνει περίεργο misgendering μερικές φορές.&lt;br /&gt;
|-&lt;br /&gt;
|✅&lt;br /&gt;
|Θεώδορος Θωμάς&lt;br /&gt;
|Αθήνα&lt;br /&gt;
|Ιδιωτικό&lt;br /&gt;
| Σταθερό: 2106436115&lt;br /&gt;
| 80-100€ η συνεδρία&lt;br /&gt;
| Λεωφ. Κηφισίας 5, 115 23 Αμπελόκηποι, Αθήνα&lt;br /&gt;
| -&lt;br /&gt;
|&lt;br /&gt;
* 5 ✅&lt;br /&gt;
* 1 🟨&lt;br /&gt;
* 0 🟧&lt;br /&gt;
* 0 ❌&lt;br /&gt;
| - Θέλει διάγνωση. &lt;br /&gt;
- Έχει γράψει &#039;&#039;&#039;50mg androcur&#039;&#039;&#039; ανά &#039;&#039;&#039;μέρα&#039;&#039;&#039;. Παρ&#039; όλα αυτά δεν έχει υπάρξει άλλο περιστατικό σαν αυτό, οπότε &#039;&#039;&#039;δεν είναι fully conclusive&#039;&#039;&#039; το &amp;quot;Έγραψε παράξενη δοσολογία μια φορά σε μια κοπέλα.&amp;quot; &lt;br /&gt;
|-&lt;br /&gt;
|✅&lt;br /&gt;
|Σκαράκης Νικήτας&lt;br /&gt;
|Αθήνα&lt;br /&gt;
|Ιδιωτικό&lt;br /&gt;
| Σταθερό:  2107117965&lt;br /&gt;
| 50€ η συνεδρία&lt;br /&gt;
| Κυκλαμίνων 7 (Περιοχή Αγίου Ιεροθέου), Περιστέρι, Αττική&lt;br /&gt;
| Ναι. (60€ η συνεδρία)&lt;br /&gt;
|&lt;br /&gt;
* 1 ✅&lt;br /&gt;
* 0 🟨&lt;br /&gt;
* 0 🟧&lt;br /&gt;
* 0 ❌&lt;br /&gt;
| - Θέλει διάγνωση.&lt;br /&gt;
|-&lt;br /&gt;
|✅&lt;br /&gt;
|Στέργιος Κιούρας&lt;br /&gt;
|Θεσσαλονίκη&lt;br /&gt;
|Ιδιωτικό&lt;br /&gt;
| Σταθερό: 2310256498&lt;br /&gt;
| 50€ η συνεδρία&lt;br /&gt;
| Ερμού 36, Θεσσαλονίκη 546 23&lt;br /&gt;
| -&lt;br /&gt;
|&lt;br /&gt;
* 1 ✅&lt;br /&gt;
* 0 🟨&lt;br /&gt;
* 0 🟧&lt;br /&gt;
* 0 ❌&lt;br /&gt;
| - &#039;&#039;&#039;Δεν ζήτησε&#039;&#039;&#039; διάγνωση.&lt;br /&gt;
|-&lt;br /&gt;
|🟨&lt;br /&gt;
|Θεμιστοκλής Καλτσάς&lt;br /&gt;
|Θεσσαλονίκη&lt;br /&gt;
|Ιδιωτικό&lt;br /&gt;
| Σταθερό: 2310238719&lt;br /&gt;
| 50€ η συνεδρία&lt;br /&gt;
| Παλαιών Πατρών Γερμανού 21, Θεσσαλονίκη&lt;br /&gt;
| -&lt;br /&gt;
|&lt;br /&gt;
* 1 ✅&lt;br /&gt;
* 1 🟨&lt;br /&gt;
* 0 🟧&lt;br /&gt;
* 0 ❌&lt;br /&gt;
| - Δεν έχει θέμα με DIY, &#039;&#039;&#039;δεν ζήτησε άμεσα&#039;&#039;&#039; διάγνωση, αλλά &#039;&#039;&#039;την θέλει&#039;&#039;&#039; γενικότερα (δλ. αν δεν έχεις θα στη ζητήσει μελλοντικά μεσω e-mail)&lt;br /&gt;
- Έχει θέμα με τα &amp;quot;υψηλά&amp;quot; επίπεδα (π.χ. κανονικά pg/ml e2 στην μονοθεραπεία με injections είναι περίεργα γι&#039; αυτόν)&lt;br /&gt;
- Ζητάει διάγνωση στα άτομα που δεν λαμβάνουν DIY HRT.&lt;br /&gt;
- Ημι-συχνό misgendering.&lt;br /&gt;
|-&lt;br /&gt;
|✅&lt;br /&gt;
|Παναγιώτης Μ. Μπουντούρης&lt;br /&gt;
|Σύρος&lt;br /&gt;
|Ιδιωτικό&lt;br /&gt;
|Σταθερό: 2281082030&lt;br /&gt;
Κινητό: 6946545831&lt;br /&gt;
|30€ η πρώτη συνεδρία&lt;br /&gt;
10€ η συνταγή&lt;br /&gt;
|Κλεισθένους 15, Ερμούπολη, 84100, Κυκλάδων&lt;br /&gt;
| -&lt;br /&gt;
|&lt;br /&gt;
* 1 ✅&lt;br /&gt;
* 0 🟨&lt;br /&gt;
* 0 🟧&lt;br /&gt;
* 0 ❌&lt;br /&gt;
| -&lt;br /&gt;
|-&lt;br /&gt;
|🟨&lt;br /&gt;
|Κωνσταντίνος Α. Τούλης&lt;br /&gt;
|Θεσσαλονίκη&lt;br /&gt;
|Ιδιωτικό&lt;br /&gt;
|Τηλέφωνο: 2310222799&lt;br /&gt;
|50€ η συνεδρία&lt;br /&gt;
|Μητροπόλεως 73, Θεσσαλονίκη 546 22&lt;br /&gt;
| -&lt;br /&gt;
|&lt;br /&gt;
* 0 ✅&lt;br /&gt;
* 1 🟨&lt;br /&gt;
* 0 🟧&lt;br /&gt;
* 0 ❌&lt;br /&gt;
| - Θέλει διάγνωση.&lt;br /&gt;
|-&lt;br /&gt;
|❌&lt;br /&gt;
|Πουλάκος Πάυλος&lt;br /&gt;
|Θεσσαλονίκη&lt;br /&gt;
|Ιδιωτικό&lt;br /&gt;
|Σταθερό: 2105579147&lt;br /&gt;
|50€ η συνεδρία &lt;br /&gt;
|Τσιμισκή Ιωάννη 69, Αγία Σοφία, 546 22&lt;br /&gt;
| -&lt;br /&gt;
|&lt;br /&gt;
* 0 ✅&lt;br /&gt;
* 0 🟨&lt;br /&gt;
* 0 🟧&lt;br /&gt;
* 1 ❌&lt;br /&gt;
| - 100mg cypro ανά μέρα χωρίς προειδοποίηση στο cyclacur για τα πορτοκαλί/καφέ χάπια (πολύ κακό)&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== Δερματολόγοι/Αφροδισιολόγοι/Laser Κλινικές ==&lt;br /&gt;
{| class=&amp;quot;wikitable sortable&amp;quot;&lt;br /&gt;
|+&lt;br /&gt;
!✅/🟨/🟧/❌&lt;br /&gt;
!Όνομα&lt;br /&gt;
!Περιοχή&lt;br /&gt;
!Είδος&lt;br /&gt;
!Δημόσιο/Ιδιωτικό&lt;br /&gt;
!Επικοινωνία&lt;br /&gt;
!Τιμή&lt;br /&gt;
!Διαδικτυακά&lt;br /&gt;
!Κριτικές&lt;br /&gt;
!Σημειώσεις&lt;br /&gt;
|-&lt;br /&gt;
|❌&lt;br /&gt;
|Ζαχαρίας Ι. Ανδρεαδάκης&lt;br /&gt;
|Αθήνα&lt;br /&gt;
|Δερματολόγος/Αφροδισιολόγος/Laser&lt;br /&gt;
|Ιδιωτικό&lt;br /&gt;
| -&lt;br /&gt;
| -&lt;br /&gt;
| -&lt;br /&gt;
|&lt;br /&gt;
* 0 ✅&lt;br /&gt;
* 0 🟨&lt;br /&gt;
* 0 🟧&lt;br /&gt;
* 1 ❌&lt;br /&gt;
| -&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== Χειρούργοι ==&lt;br /&gt;
{| class=&amp;quot;wikitable sortable&amp;quot;&lt;br /&gt;
|+&lt;br /&gt;
!✅/🟨/🟧/❌&lt;br /&gt;
!Όνομα&lt;br /&gt;
!Περιοχή&lt;br /&gt;
!Δημόσιο/Ιδιωτικό&lt;br /&gt;
!Επικοινωνία&lt;br /&gt;
!Τιμή&lt;br /&gt;
!Οδός&lt;br /&gt;
!Διαδικτυακά&lt;br /&gt;
!Κριτικές&lt;br /&gt;
!Σημειώσεις&lt;br /&gt;
|-&lt;br /&gt;
|✅&lt;br /&gt;
|Ηλίας Μεξής&lt;br /&gt;
|Αθήνα&lt;br /&gt;
|Ιδιωτικό&lt;br /&gt;
| Σταθερό: 2114068315&lt;br /&gt;
| Top surgery ~3000€&lt;br /&gt;
|Αγ. Θεοδώρων 10, 14562 Κηφισιά&lt;br /&gt;
| -&lt;br /&gt;
|&lt;br /&gt;
* 1 ✅&lt;br /&gt;
* 0 🟨&lt;br /&gt;
* 0 🟧&lt;br /&gt;
* 0 ❌&lt;br /&gt;
| - Δεν ζητάει γνωμάτευση.&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== Δικηγόροι ==&lt;br /&gt;
{| class=&amp;quot;wikitable sortable&amp;quot;&lt;br /&gt;
|+&lt;br /&gt;
!✅/🟨/🟧/❌&lt;br /&gt;
!Όνομα&lt;br /&gt;
!Περιοχή&lt;br /&gt;
!Δημόσιο/Ιδιωτικό&lt;br /&gt;
!Επικοινωνία&lt;br /&gt;
!Τιμή&lt;br /&gt;
!Οδός&lt;br /&gt;
!Διαδικτυακά&lt;br /&gt;
!Κριτικές&lt;br /&gt;
!Σημειώσεις&lt;br /&gt;
|-&lt;br /&gt;
|✅&lt;br /&gt;
|Αθηνά Καλογρίδη&lt;br /&gt;
|Θεσσαλονίκη&lt;br /&gt;
|Ιδιωτικό&lt;br /&gt;
| Σταθερό: 2310220704&lt;br /&gt;
| 125€ αίτηση&lt;br /&gt;
125€ δικαστήριο&lt;br /&gt;
43€ εισαγγελέας&lt;br /&gt;
| Κομνηνών 20, Θεσσαλονίκη, 54624, ΘΕΣΣΑΛΟΝΙΚΗΣ&lt;br /&gt;
| -&lt;br /&gt;
|&lt;br /&gt;
* 1 ✅&lt;br /&gt;
* 0 🟨&lt;br /&gt;
* 0 🟧&lt;br /&gt;
* 0 ❌&lt;br /&gt;
| -&lt;br /&gt;
|}&lt;/div&gt;</summary>
		<author><name>Goblinmoder</name></author>
	</entry>
	<entry>
		<id>https://wiki.diyon.top/index.php?title=Doctors&amp;diff=1026</id>
		<title>Doctors</title>
		<link rel="alternate" type="text/html" href="https://wiki.diyon.top/index.php?title=Doctors&amp;diff=1026"/>
		<updated>2025-10-18T11:29:45Z</updated>

		<summary type="html">&lt;p&gt;Goblinmoder: floudas fix&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{#seo:&lt;br /&gt;
|title_mode=replace&lt;br /&gt;
|title=Doctors&lt;br /&gt;
|description=List of doctors documented, most of which are from real life encounters, opinions are non-definitive.&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
== Ψυχίατροι ==&lt;br /&gt;
{| class=&amp;quot;wikitable sortable&amp;quot;&lt;br /&gt;
|+&lt;br /&gt;
!✅/🟨/🟧/❌&lt;br /&gt;
!Όνομα&lt;br /&gt;
!Περιοχή&lt;br /&gt;
!Δημόσιο/Ιδιωτικό&lt;br /&gt;
!Επικοινωνία&lt;br /&gt;
!Τιμή&lt;br /&gt;
!Οδός&lt;br /&gt;
!Διαδικτυακά&lt;br /&gt;
!Κριτικές&lt;br /&gt;
!Σημειώσεις&lt;br /&gt;
|-&lt;br /&gt;
|✅&lt;br /&gt;
|Καρατζαφέρης Λυκούργος&lt;br /&gt;
|Αθήνα / Διαδικτυακά&lt;br /&gt;
|Ιδιωτικό&lt;br /&gt;
|Σταθερό: 2177207765&lt;br /&gt;
Τηλέφωνο: 6944302577&lt;br /&gt;
|30-70 ευρώ, 1-2 συνεδρίες για γνωμάτευση.&lt;br /&gt;
|Αμφιτρύωνος 78, Αττική, 11853.&lt;br /&gt;
|Κάνει και online αλλά προτιμάει irl.&lt;br /&gt;
|&lt;br /&gt;
* 2 ✅&lt;br /&gt;
* 0 🟨&lt;br /&gt;
* 0 🟧&lt;br /&gt;
* 0 ❌&lt;br /&gt;
| -&lt;br /&gt;
|-&lt;br /&gt;
|✅&lt;br /&gt;
|Μαρία Αναστασάκη&lt;br /&gt;
|Ηράκλειο / Διαδικτυακά&lt;br /&gt;
|Ιδιωτικό&lt;br /&gt;
|Σταθερό: 2810223940&lt;br /&gt;
Τηλέφωνο: 6980566188&lt;br /&gt;
&lt;br /&gt;
E-mail: [mailto:anastasakitherapy@gmail.com anastasakitherapy@gmail.com]&lt;br /&gt;
|40Ε ανα συνεδρία / 90Ε (γνωμάτευση)&lt;br /&gt;
|Λεωφόρος Ιωνίας 136, Ηράκλειο [Δήμος], Ηράκλειο, 71305&lt;br /&gt;
|Ναι.&lt;br /&gt;
|&lt;br /&gt;
* 2 ✅&lt;br /&gt;
* 1 🟨&lt;br /&gt;
* 0 🟧&lt;br /&gt;
* 0 ❌&lt;br /&gt;
| Μπορεί να είναι δύσκολη η επικοινωνία.&lt;br /&gt;
|-&lt;br /&gt;
|✅&lt;br /&gt;
|Κατερίνα Χαλκιαδάκη&lt;br /&gt;
|Ηράκλειο / Διαδικτυακά&lt;br /&gt;
|Ιδιωτικό&lt;br /&gt;
|Σταθερό: 2810223940&lt;br /&gt;
|40Ε ανα συνεδρία / 90Ε (γνωμάτευση)&lt;br /&gt;
|Λεωφόρος Ιωνίας 136, Ηράκλειο [Δήμος], Ηράκλειο, 71305&lt;br /&gt;
|Ναι.&lt;br /&gt;
|&lt;br /&gt;
* 1 ✅&lt;br /&gt;
* 0 🟨&lt;br /&gt;
* 0 🟧&lt;br /&gt;
* 0 ❌&lt;br /&gt;
|Συνάδελφος της Αναστασάκη.&lt;br /&gt;
|-&lt;br /&gt;
|✅&lt;br /&gt;
|Ελένη Ζαχάρη&lt;br /&gt;
|Αθήνα&lt;br /&gt;
|Ιδιωτικό&lt;br /&gt;
|Τηλέφωνο: 6942493053&lt;br /&gt;
|50-70€ το ραντεβού (γνωμάτευση σε 2 συνεδρίες)&lt;br /&gt;
|Χατζηκώστα 8Α, Πλατεία Μαβίλη, Αττική.&lt;br /&gt;
|Ναι.&lt;br /&gt;
|&lt;br /&gt;
* 1 ✅&lt;br /&gt;
* 0 🟨&lt;br /&gt;
* 0 🟧&lt;br /&gt;
* 0 ❌&lt;br /&gt;
| -&lt;br /&gt;
|-&lt;br /&gt;
|✅&lt;br /&gt;
|Γεωργιλαδάκης Ιωάννης&lt;br /&gt;
|Ηράκλειο&lt;br /&gt;
|Ιδιωτικό&lt;br /&gt;
|Σταθερό: 2107442019&lt;br /&gt;
|50€ το ραντεβού. (Στο [https://www.doctoranytime.gr/d/Psychiatros/georgiladakis-ioannis site]&amp;lt;nowiki&amp;gt; αναφέρεται το εξής: &amp;quot;Πιστοποιητικά/Βεβαιώσεις | Από 20€ έως 40€&amp;quot;)&amp;lt;/nowiki&amp;gt;&lt;br /&gt;
|Πλατεία Ρήγα Φεραίου 13, Ηράκλειο, Κρήτη.&lt;br /&gt;
|Λογικά όχι πια (writer&#039;s conclusion, citation needed)&lt;br /&gt;
|&lt;br /&gt;
* 1 ✅&lt;br /&gt;
* 0 🟨&lt;br /&gt;
* 0 🟧&lt;br /&gt;
* 0 ❌&lt;br /&gt;
| -&lt;br /&gt;
|-&lt;br /&gt;
|✅&lt;br /&gt;
|Πάγκαλος Γεώργιος&lt;br /&gt;
|Θεσσαλονίκη&lt;br /&gt;
|Ιδιωτικό&lt;br /&gt;
|Τηλέφωνο: 6933091536&lt;br /&gt;
|100€ ανα συνεδρία &lt;br /&gt;
|Καρόλου Ντηλ 25, 54623&lt;br /&gt;
|Ναι.&lt;br /&gt;
|&lt;br /&gt;
* 1 ✅&lt;br /&gt;
* 0 🟨&lt;br /&gt;
* 0 🟧&lt;br /&gt;
* 0 ❌&lt;br /&gt;
| -&lt;br /&gt;
|-&lt;br /&gt;
|🟨&lt;br /&gt;
|Δημήτρης Ξυλάς&lt;br /&gt;
|Θεσσαλονίκη&lt;br /&gt;
|Ιδιωτικό&lt;br /&gt;
|Σταθερό: 2310236236&lt;br /&gt;
|70€ αναγκαστικό ψυχομετρικό τεστ και 60€ η συνεδρία&lt;br /&gt;
|Εγνατία 70 &amp;amp; Χαλκέων 16, 546 24&lt;br /&gt;
| -&lt;br /&gt;
|&lt;br /&gt;
* 0 ✅&lt;br /&gt;
* 1 🟨&lt;br /&gt;
* 0 🟧&lt;br /&gt;
* 0 ❌&lt;br /&gt;
|Δεν είναι NB friendly.&lt;br /&gt;
|-&lt;br /&gt;
|🟨&lt;br /&gt;
|Σταυριανάκος Κυριάκος&lt;br /&gt;
|Αθήνα / Διαδικτυακά&lt;br /&gt;
|Ιδιωτικό&lt;br /&gt;
| Σταθερό: 2108064113&lt;br /&gt;
| 70€ ανα ραντεβού (επι 6 μήνες gatekeeping)&lt;br /&gt;
| Θησέως 15-17, Μαρούσι 151 24&lt;br /&gt;
| Ναι.&lt;br /&gt;
|&lt;br /&gt;
* 0 ✅&lt;br /&gt;
* 2 🟨&lt;br /&gt;
* 0 🟧&lt;br /&gt;
* 0 ❌&lt;br /&gt;
| Διάβασε καλά την τιμή.&lt;br /&gt;
|-&lt;br /&gt;
|🟧&lt;br /&gt;
|Μεταξάς Σπυρίδων&lt;br /&gt;
|Αθήνα&lt;br /&gt;
|Ιδιωτικό&lt;br /&gt;
|Σταθερό: 2107116438&lt;br /&gt;
|70 ευρώ με κάρτα, 60 ευρώ χωρίς.&lt;br /&gt;
|Ρόδου 17, Μαρούσι, Αττική.&lt;br /&gt;
|Όχι.&lt;br /&gt;
|&lt;br /&gt;
* 1 ✅&lt;br /&gt;
* 0 🟨&lt;br /&gt;
* 0 🟧&lt;br /&gt;
* 1 ❌&lt;br /&gt;
| Με MTF ήταν super friendly, ενώ με FTM το ακριβώς αντίθετο. &lt;br /&gt;
|-&lt;br /&gt;
|🟧 &lt;br /&gt;
|Σαρρηγιανίδης Αλέξιος&lt;br /&gt;
|Θεσσαλονίκη&lt;br /&gt;
|Δημόσιο&lt;br /&gt;
| -&lt;br /&gt;
| -&lt;br /&gt;
| Ιπποκράτειο Θεσσαλονίκης&lt;br /&gt;
| Όχι.&lt;br /&gt;
|&lt;br /&gt;
* 0 ✅&lt;br /&gt;
* 0 🟨&lt;br /&gt;
* 1 🟧&lt;br /&gt;
* 0 ❌&lt;br /&gt;
| Δεν είναι κακός απλώς προτείνει τον Πάγκαλο (δλ. πήγαινε κατ&#039; ευθείαν εκεί) και έπειτα τον &#039;&#039;Μπουφίδη&#039;&#039; (γι&#039; αυτό και είναι 🟧 και όχι 🟨/✅) &lt;br /&gt;
|-&lt;br /&gt;
|❌&lt;br /&gt;
|Φλούδας Γεώργιος&lt;br /&gt;
|Αθήνα&lt;br /&gt;
|Δημόσιο&lt;br /&gt;
|[[File:Floudaskeeper.jpg|thumb|172x172px]]&lt;br /&gt;
| [[File:Flouda.png|thumb|163x163px|courtesy of Αθανασιάδης Λουκάς]]&lt;br /&gt;
| [https://media.discordapp.net/attachments/785742455928520725/1290054603814993930/hgf.png?ex=66fb1079&amp;amp;is=66f9bef9&amp;amp;hm=0441ce6ca9438130027d61078d2b76bc9abaa83ad99e97e7718a05554e2221f3&amp;amp;=&amp;amp;format=webp&amp;amp;quality=lossless&amp;amp;width=687&amp;amp;height=305 206]&lt;br /&gt;
| Όχι.&lt;br /&gt;
|&lt;br /&gt;
* 1 ✅&lt;br /&gt;
* 1 🟨&lt;br /&gt;
* 0 🟧&lt;br /&gt;
* 7 ❌&lt;br /&gt;
| -&lt;br /&gt;
|-&lt;br /&gt;
|❌&lt;br /&gt;
|Απαζίδου Παρθένα&lt;br /&gt;
|Θεσσαλονίκη&lt;br /&gt;
|Δημόσιο&lt;br /&gt;
| -&lt;br /&gt;
| -&lt;br /&gt;
| Νοσοκομείο Αφροδισίων  &amp;amp; Δερματικών Νόσων Θεσσαλονίκης (παράρτημα Ιπποκράτειου στην Δελφών 124)&lt;br /&gt;
| Όχι.&lt;br /&gt;
|&lt;br /&gt;
* 0 ✅&lt;br /&gt;
* 0 🟨&lt;br /&gt;
* 0 🟧&lt;br /&gt;
* 1 ❌&lt;br /&gt;
|Δεν γνωρίζει απο &amp;quot;τρανς θέματα&amp;quot;.&lt;br /&gt;
|-&lt;br /&gt;
|❌ &lt;br /&gt;
|Λουκάς Αθανασιάδης&lt;br /&gt;
|Θεσσαλονίκη&lt;br /&gt;
|Δημόσιο&lt;br /&gt;
| -&lt;br /&gt;
| -&lt;br /&gt;
| -&lt;br /&gt;
| Όχι.&lt;br /&gt;
|&lt;br /&gt;
* 0 ✅&lt;br /&gt;
* 0 🟨&lt;br /&gt;
* 0 🟧&lt;br /&gt;
* 3 ❌&lt;br /&gt;
|Gatekeeping, zero tolenace στο diy, σπατάλη 2+ χρόνων.&lt;br /&gt;
|-&lt;br /&gt;
|❌&lt;br /&gt;
|Μπουφίδης Σταύρος&lt;br /&gt;
|Θεσσαλονίκη&lt;br /&gt;
|Ιδιωτικό&lt;br /&gt;
|Σταθερό: 2310253793&lt;br /&gt;
|&amp;quot;100€ μετρητά, 80€ κά- α όχι, συγνώμη, 80€ μέτρητα. 100€ κάρτα&amp;quot;&lt;br /&gt;
|Ερμού 36, Θεσσαλονίκη, 54623&lt;br /&gt;
|Όχι.&lt;br /&gt;
|&lt;br /&gt;
* 0 ✅&lt;br /&gt;
* 0 🟨&lt;br /&gt;
* 0 🟧&lt;br /&gt;
* 2 ❌&lt;br /&gt;
|Αν σ&#039; αρέσει να πληρώνεις για να σε κάνουν gatekeep, είναι τέλειος.&lt;br /&gt;
|-&lt;br /&gt;
|❌&lt;br /&gt;
|Καλλιόπη Προκοπάκη&lt;br /&gt;
|Αθήνα&lt;br /&gt;
|Ιδιωτικό&lt;br /&gt;
| -&lt;br /&gt;
| -&lt;br /&gt;
| -&lt;br /&gt;
| -&lt;br /&gt;
|&lt;br /&gt;
* 0 ✅&lt;br /&gt;
* 0 🟨&lt;br /&gt;
* 0 🟧&lt;br /&gt;
* 1 ❌&lt;br /&gt;
|Είναι κατά τον γάμο ομόφυλων ζευγαριών.&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== Ψυχολόγοι ==&lt;br /&gt;
{| class=&amp;quot;wikitable sortable&amp;quot;&lt;br /&gt;
|+&lt;br /&gt;
!✅/🟨/🟧/❌&lt;br /&gt;
!Όνομα&lt;br /&gt;
!Περιοχή&lt;br /&gt;
!Δημόσιο/Ιδιωτικό&lt;br /&gt;
!Επικοινωνία&lt;br /&gt;
!Τιμή&lt;br /&gt;
!Οδός&lt;br /&gt;
!Διαδικτυακά&lt;br /&gt;
!Κριτικές&lt;br /&gt;
!Σημειώσεις&lt;br /&gt;
|-&lt;br /&gt;
|✅&lt;br /&gt;
|Γεωργία Καμπόλη&lt;br /&gt;
|Άνω Λιόσια / Διαδικτυακά&lt;br /&gt;
|Ιδιωτικό&lt;br /&gt;
| Τηλέφωνο: 6931170170 &lt;br /&gt;
Email: geokaboli@gmail.com &lt;br /&gt;
&lt;br /&gt;
Email (στην ιστοσελίδα): info@kabolipsychologist.gr&lt;br /&gt;
| -&lt;br /&gt;
| Οδ. Ελύτη 2, Άνω Λιόσια 133 41&lt;br /&gt;
| Ναι.&lt;br /&gt;
|&lt;br /&gt;
* 1 ✅&lt;br /&gt;
* 0 🟨&lt;br /&gt;
* 0 🟧&lt;br /&gt;
* 0 ❌&lt;br /&gt;
| -&lt;br /&gt;
|-&lt;br /&gt;
|❌&lt;br /&gt;
|Γιαντσίδου Βασιλική&lt;br /&gt;
|Ορεστιάδα&lt;br /&gt;
|Ιδιωτικό&lt;br /&gt;
| -&lt;br /&gt;
| -&lt;br /&gt;
| -&lt;br /&gt;
| -&lt;br /&gt;
| -&lt;br /&gt;
| Στον κώλο της μαϊμούς, δεν θα βγάλεις άκρη, why bother?&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== Παιδοψυχίατροι ==&lt;br /&gt;
{| class=&amp;quot;wikitable sortable&amp;quot;&lt;br /&gt;
|+&lt;br /&gt;
!✅/🟨/🟧/❌&lt;br /&gt;
!Όνομα&lt;br /&gt;
!Περιοχή&lt;br /&gt;
!Δημόσιο/Ιδιωτικό&lt;br /&gt;
!Επικοινωνία&lt;br /&gt;
!Τιμή&lt;br /&gt;
!Οδός&lt;br /&gt;
!Διαδικτυακά&lt;br /&gt;
!Κριτικές&lt;br /&gt;
!Σημειώσεις&lt;br /&gt;
|-&lt;br /&gt;
|❌&lt;br /&gt;
|Στέλλα/Στυλιανή Βαγιωνά&lt;br /&gt;
|Θεσσαλονίκη&lt;br /&gt;
|Ιδιωτικό&lt;br /&gt;
| -&lt;br /&gt;
|70€ (χωρίς απόδειξη)&lt;br /&gt;
| -&lt;br /&gt;
| -&lt;br /&gt;
|&lt;br /&gt;
* 0 ✅&lt;br /&gt;
* 0 🟨&lt;br /&gt;
* 0 🟧&lt;br /&gt;
* 1 ❌&lt;br /&gt;
| -&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== Ενδοκρινολόγοι ==&lt;br /&gt;
{| class=&amp;quot;wikitable sortable&amp;quot;&lt;br /&gt;
|+&lt;br /&gt;
!✅/🟨/🟧/❌&lt;br /&gt;
!Όνομα&lt;br /&gt;
!Περιοχή&lt;br /&gt;
!Δημόσιο/Ιδιωτικό&lt;br /&gt;
!Επικοινωνία&lt;br /&gt;
!Τιμή&lt;br /&gt;
!Οδός&lt;br /&gt;
!Διαδικτυακά&lt;br /&gt;
!Κριτικές&lt;br /&gt;
!Σημειώσεις&lt;br /&gt;
|-&lt;br /&gt;
|✅&lt;br /&gt;
|Γιουλάντα Πέτκοβα&lt;br /&gt;
|Ρέθυμνο&lt;br /&gt;
|Ιδιωτικό&lt;br /&gt;
|Σταθερό: 2831053220&lt;br /&gt;
Κινητό: 6937294404&lt;br /&gt;
&lt;br /&gt;
Email: valiapetg@gmail.com&lt;br /&gt;
|50€&lt;br /&gt;
|Δημητρακάκη Σ. 31, Ρέθυμνο 741 32&lt;br /&gt;
| Ναι&lt;br /&gt;
|&lt;br /&gt;
*1 ✅&lt;br /&gt;
* 0 🟨&lt;br /&gt;
* 0 🟧&lt;br /&gt;
* 0 ❌&lt;br /&gt;
| - Ενδεχομένως να θέλει χαρτί για συνταγογράφηση, &#039;&#039;&#039;για αιματολογικές&#039;&#039;&#039; δεν έχει ζητήσει.&lt;br /&gt;
- Δεν έχει θέμα με DIY.&lt;br /&gt;
|-&lt;br /&gt;
|🟨&lt;br /&gt;
|Κούκκου Ευτυχία&lt;br /&gt;
|Αθήνα&lt;br /&gt;
|Δημόσιο&lt;br /&gt;
| -&lt;br /&gt;
| -&lt;br /&gt;
| Γ.Ν. Έλενα Βενιζέλου, Αθήνα 115 21&lt;br /&gt;
| Όχι.&lt;br /&gt;
|&lt;br /&gt;
* 4 ✅&lt;br /&gt;
* 0 🟨&lt;br /&gt;
* 1 🟧&lt;br /&gt;
* 1 ❌&lt;br /&gt;
| - Θέλει διάγνωση. &lt;br /&gt;
- Κάνει περίεργο misgendering μερικές φορές.&lt;br /&gt;
|-&lt;br /&gt;
|✅&lt;br /&gt;
|Θεώδορος Θωμάς&lt;br /&gt;
|Αθήνα&lt;br /&gt;
|Ιδιωτικό&lt;br /&gt;
| Σταθερό: 2106436115&lt;br /&gt;
| 80-100€ η συνεδρία&lt;br /&gt;
| Λεωφ. Κηφισίας 5, 115 23 Αμπελόκηποι, Αθήνα&lt;br /&gt;
| -&lt;br /&gt;
|&lt;br /&gt;
* 5 ✅&lt;br /&gt;
* 1 🟨&lt;br /&gt;
* 0 🟧&lt;br /&gt;
* 0 ❌&lt;br /&gt;
| - Θέλει διάγνωση. &lt;br /&gt;
- Έχει γράψει &#039;&#039;&#039;50mg androcur&#039;&#039;&#039; ανά &#039;&#039;&#039;μέρα&#039;&#039;&#039;. Παρ&#039; όλα αυτά δεν έχει υπάρξει άλλο περιστατικό σαν αυτό, οπότε &#039;&#039;&#039;δεν είναι fully conclusive&#039;&#039;&#039; το &amp;quot;Έγραψε παράξενη δοσολογία μια φορά σε μια κοπέλα.&amp;quot; &lt;br /&gt;
|-&lt;br /&gt;
|✅&lt;br /&gt;
|Σκαράκης Νικήτας&lt;br /&gt;
|Αθήνα&lt;br /&gt;
|Ιδιωτικό&lt;br /&gt;
| Σταθερό:  2107117965&lt;br /&gt;
| 50€ η συνεδρία&lt;br /&gt;
| Κυκλαμίνων 7 (Περιοχή Αγίου Ιεροθέου), Περιστέρι, Αττική&lt;br /&gt;
| Ναι. (60€ η συνεδρία)&lt;br /&gt;
|&lt;br /&gt;
* 1 ✅&lt;br /&gt;
* 0 🟨&lt;br /&gt;
* 0 🟧&lt;br /&gt;
* 0 ❌&lt;br /&gt;
| - Θέλει διάγνωση.&lt;br /&gt;
|-&lt;br /&gt;
|✅&lt;br /&gt;
|Στέργιος Κιούρας&lt;br /&gt;
|Θεσσαλονίκη&lt;br /&gt;
|Ιδιωτικό&lt;br /&gt;
| Σταθερό: 2310256498&lt;br /&gt;
| 50€ η συνεδρία&lt;br /&gt;
| Ερμού 36, Θεσσαλονίκη 546 23&lt;br /&gt;
| -&lt;br /&gt;
|&lt;br /&gt;
* 1 ✅&lt;br /&gt;
* 0 🟨&lt;br /&gt;
* 0 🟧&lt;br /&gt;
* 0 ❌&lt;br /&gt;
| - &#039;&#039;&#039;Δεν ζήτησε&#039;&#039;&#039; διάγνωση.&lt;br /&gt;
|-&lt;br /&gt;
|🟨&lt;br /&gt;
|Θεμιστοκλής Καλτσάς&lt;br /&gt;
|Θεσσαλονίκη&lt;br /&gt;
|Ιδιωτικό&lt;br /&gt;
| Σταθερό: 2310238719&lt;br /&gt;
| 50€ η συνεδρία&lt;br /&gt;
| Παλαιών Πατρών Γερμανού 21, Θεσσαλονίκη&lt;br /&gt;
| -&lt;br /&gt;
|&lt;br /&gt;
* 1 ✅&lt;br /&gt;
* 1 🟨&lt;br /&gt;
* 0 🟧&lt;br /&gt;
* 0 ❌&lt;br /&gt;
| - Δεν έχει θέμα με DIY, &#039;&#039;&#039;δεν ζήτησε άμεσα&#039;&#039;&#039; διάγνωση, αλλά &#039;&#039;&#039;την θέλει&#039;&#039;&#039; γενικότερα (δλ. αν δεν έχεις θα στη ζητήσει μελλοντικά μεσω e-mail)&lt;br /&gt;
- Έχει θέμα με τα &amp;quot;υψηλά&amp;quot; επίπεδα (π.χ. κανονικά pg/ml e2 στην μονοθεραπεία με injections είναι περίεργα γι&#039; αυτόν)&lt;br /&gt;
- Ζητάει διάγνωση στα άτομα που δεν λαμβάνουν DIY HRT.&lt;br /&gt;
- Ημι-συχνό misgendering.&lt;br /&gt;
|-&lt;br /&gt;
|✅&lt;br /&gt;
|Παναγιώτης Μ. Μπουντούρης&lt;br /&gt;
|Σύρος&lt;br /&gt;
|Ιδιωτικό&lt;br /&gt;
|Σταθερό: 2281082030&lt;br /&gt;
Κινητό: 6946545831&lt;br /&gt;
|30€ η πρώτη συνεδρία&lt;br /&gt;
10€ η συνταγή&lt;br /&gt;
|Κλεισθένους 15, Ερμούπολη, 84100, Κυκλάδων&lt;br /&gt;
| -&lt;br /&gt;
|&lt;br /&gt;
* 1 ✅&lt;br /&gt;
* 0 🟨&lt;br /&gt;
* 0 🟧&lt;br /&gt;
* 0 ❌&lt;br /&gt;
| -&lt;br /&gt;
|-&lt;br /&gt;
|🟨&lt;br /&gt;
|Κωνσταντίνος Α. Τούλης&lt;br /&gt;
|Θεσσαλονίκη&lt;br /&gt;
|Ιδιωτικό&lt;br /&gt;
|Τηλέφωνο: 2310222799&lt;br /&gt;
|50€ η συνεδρία&lt;br /&gt;
|Μητροπόλεως 73, Θεσσαλονίκη 546 22&lt;br /&gt;
| -&lt;br /&gt;
|&lt;br /&gt;
* 0 ✅&lt;br /&gt;
* 1 🟨&lt;br /&gt;
* 0 🟧&lt;br /&gt;
* 0 ❌&lt;br /&gt;
| - Θέλει διάγνωση.&lt;br /&gt;
|-&lt;br /&gt;
|❌&lt;br /&gt;
|Πουλάκος Πάυλος&lt;br /&gt;
|Θεσσαλονίκη&lt;br /&gt;
|Ιδιωτικό&lt;br /&gt;
|Σταθερό: 2105579147&lt;br /&gt;
|50€ η συνεδρία &lt;br /&gt;
|Τσιμισκή Ιωάννη 69, Αγία Σοφία, 546 22&lt;br /&gt;
| -&lt;br /&gt;
|&lt;br /&gt;
* 0 ✅&lt;br /&gt;
* 0 🟨&lt;br /&gt;
* 0 🟧&lt;br /&gt;
* 1 ❌&lt;br /&gt;
| - 100mg cypro ανά μέρα χωρίς προειδοποίηση στο cyclacur για τα πορτοκαλί/καφέ χάπια (πολύ κακό)&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== Δερματολόγοι/Αφροδισιολόγοι/Laser Κλινικές ==&lt;br /&gt;
{| class=&amp;quot;wikitable sortable&amp;quot;&lt;br /&gt;
|+&lt;br /&gt;
!✅/🟨/🟧/❌&lt;br /&gt;
!Όνομα&lt;br /&gt;
!Περιοχή&lt;br /&gt;
!Είδος&lt;br /&gt;
!Δημόσιο/Ιδιωτικό&lt;br /&gt;
!Επικοινωνία&lt;br /&gt;
!Τιμή&lt;br /&gt;
!Διαδικτυακά&lt;br /&gt;
!Κριτικές&lt;br /&gt;
!Σημειώσεις&lt;br /&gt;
|-&lt;br /&gt;
|❌&lt;br /&gt;
|Ζαχαρίας Ι. Ανδρεαδάκης&lt;br /&gt;
|Αθήνα&lt;br /&gt;
|Δερματολόγος/Αφροδισιολόγος/Laser&lt;br /&gt;
|Ιδιωτικό&lt;br /&gt;
| -&lt;br /&gt;
| -&lt;br /&gt;
| -&lt;br /&gt;
|&lt;br /&gt;
* 0 ✅&lt;br /&gt;
* 0 🟨&lt;br /&gt;
* 0 🟧&lt;br /&gt;
* 1 ❌&lt;br /&gt;
| -&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== Χειρούργοι ==&lt;br /&gt;
{| class=&amp;quot;wikitable sortable&amp;quot;&lt;br /&gt;
|+&lt;br /&gt;
!✅/🟨/🟧/❌&lt;br /&gt;
!Όνομα&lt;br /&gt;
!Περιοχή&lt;br /&gt;
!Δημόσιο/Ιδιωτικό&lt;br /&gt;
!Επικοινωνία&lt;br /&gt;
!Τιμή&lt;br /&gt;
!Οδός&lt;br /&gt;
!Διαδικτυακά&lt;br /&gt;
!Κριτικές&lt;br /&gt;
!Σημειώσεις&lt;br /&gt;
|-&lt;br /&gt;
|✅&lt;br /&gt;
|Ηλίας Μεξής&lt;br /&gt;
|Αθήνα&lt;br /&gt;
|Ιδιωτικό&lt;br /&gt;
| Σταθερό: 2114068315&lt;br /&gt;
| Top surgery ~3000€&lt;br /&gt;
|Αγ. Θεοδώρων 10, 14562 Κηφισιά&lt;br /&gt;
| -&lt;br /&gt;
|&lt;br /&gt;
* 1 ✅&lt;br /&gt;
* 0 🟨&lt;br /&gt;
* 0 🟧&lt;br /&gt;
* 0 ❌&lt;br /&gt;
| - Δεν ζητάει γνωμάτευση.&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== Δικηγόροι ==&lt;br /&gt;
{| class=&amp;quot;wikitable sortable&amp;quot;&lt;br /&gt;
|+&lt;br /&gt;
!✅/🟨/🟧/❌&lt;br /&gt;
!Όνομα&lt;br /&gt;
!Περιοχή&lt;br /&gt;
!Δημόσιο/Ιδιωτικό&lt;br /&gt;
!Επικοινωνία&lt;br /&gt;
!Τιμή&lt;br /&gt;
!Οδός&lt;br /&gt;
!Διαδικτυακά&lt;br /&gt;
!Κριτικές&lt;br /&gt;
!Σημειώσεις&lt;br /&gt;
|-&lt;br /&gt;
|✅&lt;br /&gt;
|Αθηνά Καλογρίδη&lt;br /&gt;
|Θεσσαλονίκη&lt;br /&gt;
|Ιδιωτικό&lt;br /&gt;
| Σταθερό: 2310220704&lt;br /&gt;
| 125€ αίτηση&lt;br /&gt;
125€ δικαστήριο&lt;br /&gt;
43€ εισαγγελέας&lt;br /&gt;
| Κομνηνών 20, Θεσσαλονίκη, 54624, ΘΕΣΣΑΛΟΝΙΚΗΣ&lt;br /&gt;
| -&lt;br /&gt;
|&lt;br /&gt;
* 1 ✅&lt;br /&gt;
* 0 🟨&lt;br /&gt;
* 0 🟧&lt;br /&gt;
* 0 ❌&lt;br /&gt;
| -&lt;br /&gt;
|}&lt;/div&gt;</summary>
		<author><name>Goblinmoder</name></author>
	</entry>
	<entry>
		<id>https://wiki.diyon.top/index.php?title=Doctors&amp;diff=1025</id>
		<title>Doctors</title>
		<link rel="alternate" type="text/html" href="https://wiki.diyon.top/index.php?title=Doctors&amp;diff=1025"/>
		<updated>2025-09-28T18:30:38Z</updated>

		<summary type="html">&lt;p&gt;Goblinmoder: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{#seo:&lt;br /&gt;
|title_mode=replace&lt;br /&gt;
|title=Doctors&lt;br /&gt;
|description=List of doctors documented, most of which are from real life encounters, opinions are non-definitive.&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
== Ψυχίατροι ==&lt;br /&gt;
{| class=&amp;quot;wikitable sortable&amp;quot;&lt;br /&gt;
|+&lt;br /&gt;
!✅/🟨/🟧/❌&lt;br /&gt;
!Όνομα&lt;br /&gt;
!Περιοχή&lt;br /&gt;
!Δημόσιο/Ιδιωτικό&lt;br /&gt;
!Επικοινωνία&lt;br /&gt;
!Τιμή&lt;br /&gt;
!Οδός&lt;br /&gt;
!Διαδικτυακά&lt;br /&gt;
!Κριτικές&lt;br /&gt;
!Σημειώσεις&lt;br /&gt;
|-&lt;br /&gt;
|✅&lt;br /&gt;
|Καρατζαφέρης Λυκούργος&lt;br /&gt;
|Αθήνα / Διαδικτυακά&lt;br /&gt;
|Ιδιωτικό&lt;br /&gt;
|Σταθερό: 2177207765&lt;br /&gt;
Τηλέφωνο: 6944302577&lt;br /&gt;
|30-70 ευρώ, 1-2 συνεδρίες για γνωμάτευση.&lt;br /&gt;
|Αμφιτρύωνος 78, Αττική, 11853.&lt;br /&gt;
|Κάνει και online αλλά προτιμάει irl.&lt;br /&gt;
|&lt;br /&gt;
* 2 ✅&lt;br /&gt;
* 0 🟨&lt;br /&gt;
* 0 🟧&lt;br /&gt;
* 0 ❌&lt;br /&gt;
| -&lt;br /&gt;
|-&lt;br /&gt;
|✅&lt;br /&gt;
|Μαρία Αναστασάκη&lt;br /&gt;
|Ηράκλειο / Διαδικτυακά&lt;br /&gt;
|Ιδιωτικό&lt;br /&gt;
|Σταθερό: 2810223940&lt;br /&gt;
Τηλέφωνο: 6980566188&lt;br /&gt;
&lt;br /&gt;
E-mail: [mailto:anastasakitherapy@gmail.com anastasakitherapy@gmail.com]&lt;br /&gt;
|40Ε ανα συνεδρία / 90Ε (γνωμάτευση)&lt;br /&gt;
|Λεωφόρος Ιωνίας 136, Ηράκλειο [Δήμος], Ηράκλειο, 71305&lt;br /&gt;
|Ναι.&lt;br /&gt;
|&lt;br /&gt;
* 2 ✅&lt;br /&gt;
* 1 🟨&lt;br /&gt;
* 0 🟧&lt;br /&gt;
* 0 ❌&lt;br /&gt;
| Μπορεί να είναι δύσκολη η επικοινωνία.&lt;br /&gt;
|-&lt;br /&gt;
|✅&lt;br /&gt;
|Κατερίνα Χαλκιαδάκη&lt;br /&gt;
|Ηράκλειο / Διαδικτυακά&lt;br /&gt;
|Ιδιωτικό&lt;br /&gt;
|Σταθερό: 2810223940&lt;br /&gt;
|40Ε ανα συνεδρία / 90Ε (γνωμάτευση)&lt;br /&gt;
|Λεωφόρος Ιωνίας 136, Ηράκλειο [Δήμος], Ηράκλειο, 71305&lt;br /&gt;
|Ναι.&lt;br /&gt;
|&lt;br /&gt;
* 1 ✅&lt;br /&gt;
* 0 🟨&lt;br /&gt;
* 0 🟧&lt;br /&gt;
* 0 ❌&lt;br /&gt;
|Συνάδελφος της Αναστασάκη.&lt;br /&gt;
|-&lt;br /&gt;
|✅&lt;br /&gt;
|Ελένη Ζαχάρη&lt;br /&gt;
|Αθήνα&lt;br /&gt;
|Ιδιωτικό&lt;br /&gt;
|Τηλέφωνο: 6942493053&lt;br /&gt;
|50-70€ το ραντεβού (γνωμάτευση σε 2 συνεδρίες)&lt;br /&gt;
|Χατζηκώστα 8Α, Πλατεία Μαβίλη, Αττική.&lt;br /&gt;
|Ναι.&lt;br /&gt;
|&lt;br /&gt;
* 1 ✅&lt;br /&gt;
* 0 🟨&lt;br /&gt;
* 0 🟧&lt;br /&gt;
* 0 ❌&lt;br /&gt;
| -&lt;br /&gt;
|-&lt;br /&gt;
|✅&lt;br /&gt;
|Γεωργιλαδάκης Ιωάννης&lt;br /&gt;
|Ηράκλειο&lt;br /&gt;
|Ιδιωτικό&lt;br /&gt;
|Σταθερό: 2107442019&lt;br /&gt;
|50€ το ραντεβού. (Στο [https://www.doctoranytime.gr/d/Psychiatros/georgiladakis-ioannis site]&amp;lt;nowiki&amp;gt; αναφέρεται το εξής: &amp;quot;Πιστοποιητικά/Βεβαιώσεις | Από 20€ έως 40€&amp;quot;)&amp;lt;/nowiki&amp;gt;&lt;br /&gt;
|Πλατεία Ρήγα Φεραίου 13, Ηράκλειο, Κρήτη.&lt;br /&gt;
|Λογικά όχι πια (writer&#039;s conclusion, citation needed)&lt;br /&gt;
|&lt;br /&gt;
* 1 ✅&lt;br /&gt;
* 0 🟨&lt;br /&gt;
* 0 🟧&lt;br /&gt;
* 0 ❌&lt;br /&gt;
| -&lt;br /&gt;
|-&lt;br /&gt;
|✅&lt;br /&gt;
|Πάγκαλος Γεώργιος&lt;br /&gt;
|Θεσσαλονίκη&lt;br /&gt;
|Ιδιωτικό&lt;br /&gt;
|Τηλέφωνο: 6933091536&lt;br /&gt;
|100€ ανα συνεδρία &lt;br /&gt;
|Καρόλου Ντηλ 25, 54623&lt;br /&gt;
|Ναι.&lt;br /&gt;
|&lt;br /&gt;
* 1 ✅&lt;br /&gt;
* 0 🟨&lt;br /&gt;
* 0 🟧&lt;br /&gt;
* 0 ❌&lt;br /&gt;
| -&lt;br /&gt;
|-&lt;br /&gt;
|🟨&lt;br /&gt;
|Δημήτρης Ξυλάς&lt;br /&gt;
|Θεσσαλονίκη&lt;br /&gt;
|Ιδιωτικό&lt;br /&gt;
|Σταθερό: 2310236236&lt;br /&gt;
|70€ αναγκαστικό ψυχομετρικό τεστ και 60€ η συνεδρία&lt;br /&gt;
|Εγνατία 70 &amp;amp; Χαλκέων 16, 546 24&lt;br /&gt;
| -&lt;br /&gt;
|&lt;br /&gt;
* 0 ✅&lt;br /&gt;
* 1 🟨&lt;br /&gt;
* 0 🟧&lt;br /&gt;
* 0 ❌&lt;br /&gt;
|Δεν είναι NB friendly.&lt;br /&gt;
|-&lt;br /&gt;
|🟨&lt;br /&gt;
|Σταυριανάκος Κυριάκος&lt;br /&gt;
|Αθήνα / Διαδικτυακά&lt;br /&gt;
|Ιδιωτικό&lt;br /&gt;
| Σταθερό: 2108064113&lt;br /&gt;
| 70€ ανα ραντεβού (επι 6 μήνες gatekeeping)&lt;br /&gt;
| Θησέως 15-17, Μαρούσι 151 24&lt;br /&gt;
| Ναι.&lt;br /&gt;
|&lt;br /&gt;
* 0 ✅&lt;br /&gt;
* 2 🟨&lt;br /&gt;
* 0 🟧&lt;br /&gt;
* 0 ❌&lt;br /&gt;
| Διάβασε καλά την τιμή.&lt;br /&gt;
|-&lt;br /&gt;
|🟧&lt;br /&gt;
|Μεταξάς Σπυρίδων&lt;br /&gt;
|Αθήνα&lt;br /&gt;
|Ιδιωτικό&lt;br /&gt;
|Σταθερό: 2107116438&lt;br /&gt;
|70 ευρώ με κάρτα, 60 ευρώ χωρίς.&lt;br /&gt;
|Ρόδου 17, Μαρούσι, Αττική.&lt;br /&gt;
|Όχι.&lt;br /&gt;
|&lt;br /&gt;
* 1 ✅&lt;br /&gt;
* 0 🟨&lt;br /&gt;
* 0 🟧&lt;br /&gt;
* 1 ❌&lt;br /&gt;
| Με MTF ήταν super friendly, ενώ με FTM το ακριβώς αντίθετο. &lt;br /&gt;
|-&lt;br /&gt;
|🟧 &lt;br /&gt;
|Σαρρηγιανίδης Αλέξιος&lt;br /&gt;
|Θεσσαλονίκη&lt;br /&gt;
|Δημόσιο&lt;br /&gt;
| -&lt;br /&gt;
| -&lt;br /&gt;
| Ιπποκράτειο Θεσσαλονίκης&lt;br /&gt;
| Όχι.&lt;br /&gt;
|&lt;br /&gt;
* 0 ✅&lt;br /&gt;
* 0 🟨&lt;br /&gt;
* 1 🟧&lt;br /&gt;
* 0 ❌&lt;br /&gt;
| Δεν είναι κακός απλώς προτείνει τον Πάγκαλο (δλ. πήγαινε κατ&#039; ευθείαν εκεί) και έπειτα τον &#039;&#039;Μπουφίδη&#039;&#039; (γι&#039; αυτό και είναι 🟧 και όχι 🟨/✅) &lt;br /&gt;
|-&lt;br /&gt;
|❌&lt;br /&gt;
|Φλούδας Γεώργιος&lt;br /&gt;
|Αθήνα&lt;br /&gt;
|Δημόσιο&lt;br /&gt;
|[[File:Floudaskeeper.jpg|thumb|172x172px]]&lt;br /&gt;
| [[File:Flouda.png|thumb|163x163px|courtesy of Αθανασιάδης Λουκάς]]&lt;br /&gt;
| [https://media.discordapp.net/attachments/785742455928520725/1290054603814993930/hgf.png?ex=66fb1079&amp;amp;is=66f9bef9&amp;amp;hm=0441ce6ca9438130027d61078d2b76bc9abaa83ad99e97e7718a05554e2221f3&amp;amp;=&amp;amp;format=webp&amp;amp;quality=lossless&amp;amp;width=687&amp;amp;height=305 206]&lt;br /&gt;
| Όχι.&lt;br /&gt;
|&lt;br /&gt;
* 1 ✅&lt;br /&gt;
* 1 🟨&lt;br /&gt;
* 0 🟧&lt;br /&gt;
* 6 ❌&lt;br /&gt;
|Ο βασιλιάς του Gatekeeping, zero tolenace στο diy.&lt;br /&gt;
|-&lt;br /&gt;
|❌&lt;br /&gt;
|Απαζίδου Παρθένα&lt;br /&gt;
|Θεσσαλονίκη&lt;br /&gt;
|Δημόσιο&lt;br /&gt;
| -&lt;br /&gt;
| -&lt;br /&gt;
| Νοσοκομείο Αφροδισίων  &amp;amp; Δερματικών Νόσων Θεσσαλονίκης (παράρτημα Ιπποκράτειου στην Δελφών 124)&lt;br /&gt;
| Όχι.&lt;br /&gt;
|&lt;br /&gt;
* 0 ✅&lt;br /&gt;
* 0 🟨&lt;br /&gt;
* 0 🟧&lt;br /&gt;
* 1 ❌&lt;br /&gt;
|Δεν γνωρίζει απο &amp;quot;τρανς θέματα&amp;quot;.&lt;br /&gt;
|-&lt;br /&gt;
|❌ &lt;br /&gt;
|Λουκάς Αθανασιάδης&lt;br /&gt;
|Θεσσαλονίκη&lt;br /&gt;
|Δημόσιο&lt;br /&gt;
| -&lt;br /&gt;
| -&lt;br /&gt;
| -&lt;br /&gt;
| Όχι.&lt;br /&gt;
|&lt;br /&gt;
* 0 ✅&lt;br /&gt;
* 0 🟨&lt;br /&gt;
* 0 🟧&lt;br /&gt;
* 3 ❌&lt;br /&gt;
|Gatekeeping, zero tolenace στο diy, σπατάλη 2+ χρόνων.&lt;br /&gt;
|-&lt;br /&gt;
|❌&lt;br /&gt;
|Μπουφίδης Σταύρος&lt;br /&gt;
|Θεσσαλονίκη&lt;br /&gt;
|Ιδιωτικό&lt;br /&gt;
|Σταθερό: 2310253793&lt;br /&gt;
|&amp;quot;100€ μετρητά, 80€ κά- α όχι, συγνώμη, 80€ μέτρητα. 100€ κάρτα&amp;quot;&lt;br /&gt;
|Ερμού 36, Θεσσαλονίκη, 54623&lt;br /&gt;
|Όχι.&lt;br /&gt;
|&lt;br /&gt;
* 0 ✅&lt;br /&gt;
* 0 🟨&lt;br /&gt;
* 0 🟧&lt;br /&gt;
* 2 ❌&lt;br /&gt;
|Αν σ&#039; αρέσει να πληρώνεις για να σε κάνουν gatekeep, είναι τέλειος.&lt;br /&gt;
|-&lt;br /&gt;
|❌&lt;br /&gt;
|Καλλιόπη Προκοπάκη&lt;br /&gt;
|Αθήνα&lt;br /&gt;
|Ιδιωτικό&lt;br /&gt;
| -&lt;br /&gt;
| -&lt;br /&gt;
| -&lt;br /&gt;
| -&lt;br /&gt;
|&lt;br /&gt;
* 0 ✅&lt;br /&gt;
* 0 🟨&lt;br /&gt;
* 0 🟧&lt;br /&gt;
* 1 ❌&lt;br /&gt;
|Είναι κατά τον γάμο ομόφυλων ζευγαριών.&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== Ψυχολόγοι ==&lt;br /&gt;
{| class=&amp;quot;wikitable sortable&amp;quot;&lt;br /&gt;
|+&lt;br /&gt;
!✅/🟨/🟧/❌&lt;br /&gt;
!Όνομα&lt;br /&gt;
!Περιοχή&lt;br /&gt;
!Δημόσιο/Ιδιωτικό&lt;br /&gt;
!Επικοινωνία&lt;br /&gt;
!Τιμή&lt;br /&gt;
!Οδός&lt;br /&gt;
!Διαδικτυακά&lt;br /&gt;
!Κριτικές&lt;br /&gt;
!Σημειώσεις&lt;br /&gt;
|-&lt;br /&gt;
|✅&lt;br /&gt;
|Γεωργία Καμπόλη&lt;br /&gt;
|Άνω Λιόσια / Διαδικτυακά&lt;br /&gt;
|Ιδιωτικό&lt;br /&gt;
| Τηλέφωνο: 6931170170 &lt;br /&gt;
Email: geokaboli@gmail.com &lt;br /&gt;
&lt;br /&gt;
Email (στην ιστοσελίδα): info@kabolipsychologist.gr&lt;br /&gt;
| -&lt;br /&gt;
| Οδ. Ελύτη 2, Άνω Λιόσια 133 41&lt;br /&gt;
| Ναι.&lt;br /&gt;
|&lt;br /&gt;
* 1 ✅&lt;br /&gt;
* 0 🟨&lt;br /&gt;
* 0 🟧&lt;br /&gt;
* 0 ❌&lt;br /&gt;
| -&lt;br /&gt;
|-&lt;br /&gt;
|❌&lt;br /&gt;
|Γιαντσίδου Βασιλική&lt;br /&gt;
|Ορεστιάδα&lt;br /&gt;
|Ιδιωτικό&lt;br /&gt;
| -&lt;br /&gt;
| -&lt;br /&gt;
| -&lt;br /&gt;
| -&lt;br /&gt;
| -&lt;br /&gt;
| Στον κώλο της μαϊμούς, δεν θα βγάλεις άκρη, why bother?&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== Παιδοψυχίατροι ==&lt;br /&gt;
{| class=&amp;quot;wikitable sortable&amp;quot;&lt;br /&gt;
|+&lt;br /&gt;
!✅/🟨/🟧/❌&lt;br /&gt;
!Όνομα&lt;br /&gt;
!Περιοχή&lt;br /&gt;
!Δημόσιο/Ιδιωτικό&lt;br /&gt;
!Επικοινωνία&lt;br /&gt;
!Τιμή&lt;br /&gt;
!Οδός&lt;br /&gt;
!Διαδικτυακά&lt;br /&gt;
!Κριτικές&lt;br /&gt;
!Σημειώσεις&lt;br /&gt;
|-&lt;br /&gt;
|❌&lt;br /&gt;
|Στέλλα/Στυλιανή Βαγιωνά&lt;br /&gt;
|Θεσσαλονίκη&lt;br /&gt;
|Ιδιωτικό&lt;br /&gt;
| -&lt;br /&gt;
|70€ (χωρίς απόδειξη)&lt;br /&gt;
| -&lt;br /&gt;
| -&lt;br /&gt;
|&lt;br /&gt;
* 0 ✅&lt;br /&gt;
* 0 🟨&lt;br /&gt;
* 0 🟧&lt;br /&gt;
* 1 ❌&lt;br /&gt;
| -&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== Ενδοκρινολόγοι ==&lt;br /&gt;
{| class=&amp;quot;wikitable sortable&amp;quot;&lt;br /&gt;
|+&lt;br /&gt;
!✅/🟨/🟧/❌&lt;br /&gt;
!Όνομα&lt;br /&gt;
!Περιοχή&lt;br /&gt;
!Δημόσιο/Ιδιωτικό&lt;br /&gt;
!Επικοινωνία&lt;br /&gt;
!Τιμή&lt;br /&gt;
!Οδός&lt;br /&gt;
!Διαδικτυακά&lt;br /&gt;
!Κριτικές&lt;br /&gt;
!Σημειώσεις&lt;br /&gt;
|-&lt;br /&gt;
|✅&lt;br /&gt;
|Γιουλάντα Πέτκοβα&lt;br /&gt;
|Ρέθυμνο&lt;br /&gt;
|Ιδιωτικό&lt;br /&gt;
|Σταθερό: 2831053220&lt;br /&gt;
Κινητό: 6937294404&lt;br /&gt;
&lt;br /&gt;
Email: valiapetg@gmail.com&lt;br /&gt;
|50€&lt;br /&gt;
|Δημητρακάκη Σ. 31, Ρέθυμνο 741 32&lt;br /&gt;
| Ναι&lt;br /&gt;
|&lt;br /&gt;
*1 ✅&lt;br /&gt;
* 0 🟨&lt;br /&gt;
* 0 🟧&lt;br /&gt;
* 0 ❌&lt;br /&gt;
| - Ενδεχομένως να θέλει χαρτί για συνταγογράφηση, &#039;&#039;&#039;για αιματολογικές&#039;&#039;&#039; δεν έχει ζητήσει.&lt;br /&gt;
- Δεν έχει θέμα με DIY.&lt;br /&gt;
|-&lt;br /&gt;
|🟨&lt;br /&gt;
|Κούκκου Ευτυχία&lt;br /&gt;
|Αθήνα&lt;br /&gt;
|Δημόσιο&lt;br /&gt;
| -&lt;br /&gt;
| -&lt;br /&gt;
| Γ.Ν. Έλενα Βενιζέλου, Αθήνα 115 21&lt;br /&gt;
| Όχι.&lt;br /&gt;
|&lt;br /&gt;
* 4 ✅&lt;br /&gt;
* 0 🟨&lt;br /&gt;
* 1 🟧&lt;br /&gt;
* 1 ❌&lt;br /&gt;
| - Θέλει διάγνωση. &lt;br /&gt;
- Κάνει περίεργο misgendering μερικές φορές.&lt;br /&gt;
|-&lt;br /&gt;
|✅&lt;br /&gt;
|Θεώδορος Θωμάς&lt;br /&gt;
|Αθήνα&lt;br /&gt;
|Ιδιωτικό&lt;br /&gt;
| Σταθερό: 2106436115&lt;br /&gt;
| 80-100€ η συνεδρία&lt;br /&gt;
| Λεωφ. Κηφισίας 5, 115 23 Αμπελόκηποι, Αθήνα&lt;br /&gt;
| -&lt;br /&gt;
|&lt;br /&gt;
* 5 ✅&lt;br /&gt;
* 1 🟨&lt;br /&gt;
* 0 🟧&lt;br /&gt;
* 0 ❌&lt;br /&gt;
| - Θέλει διάγνωση. &lt;br /&gt;
- Έχει γράψει &#039;&#039;&#039;50mg androcur&#039;&#039;&#039; ανά &#039;&#039;&#039;μέρα&#039;&#039;&#039;. Παρ&#039; όλα αυτά δεν έχει υπάρξει άλλο περιστατικό σαν αυτό, οπότε &#039;&#039;&#039;δεν είναι fully conclusive&#039;&#039;&#039; το &amp;quot;Έγραψε παράξενη δοσολογία μια φορά σε μια κοπέλα.&amp;quot; &lt;br /&gt;
|-&lt;br /&gt;
|✅&lt;br /&gt;
|Σκαράκης Νικήτας&lt;br /&gt;
|Αθήνα&lt;br /&gt;
|Ιδιωτικό&lt;br /&gt;
| Σταθερό:  2107117965&lt;br /&gt;
| 50€ η συνεδρία&lt;br /&gt;
| Κυκλαμίνων 7 (Περιοχή Αγίου Ιεροθέου), Περιστέρι, Αττική&lt;br /&gt;
| Ναι. (60€ η συνεδρία)&lt;br /&gt;
|&lt;br /&gt;
* 1 ✅&lt;br /&gt;
* 0 🟨&lt;br /&gt;
* 0 🟧&lt;br /&gt;
* 0 ❌&lt;br /&gt;
| - Θέλει διάγνωση.&lt;br /&gt;
|-&lt;br /&gt;
|✅&lt;br /&gt;
|Στέργιος Κιούρας&lt;br /&gt;
|Θεσσαλονίκη&lt;br /&gt;
|Ιδιωτικό&lt;br /&gt;
| Σταθερό: 2310256498&lt;br /&gt;
| 50€ η συνεδρία&lt;br /&gt;
| Ερμού 36, Θεσσαλονίκη 546 23&lt;br /&gt;
| -&lt;br /&gt;
|&lt;br /&gt;
* 1 ✅&lt;br /&gt;
* 0 🟨&lt;br /&gt;
* 0 🟧&lt;br /&gt;
* 0 ❌&lt;br /&gt;
| - &#039;&#039;&#039;Δεν ζήτησε&#039;&#039;&#039; διάγνωση.&lt;br /&gt;
|-&lt;br /&gt;
|🟨&lt;br /&gt;
|Θεμιστοκλής Καλτσάς&lt;br /&gt;
|Θεσσαλονίκη&lt;br /&gt;
|Ιδιωτικό&lt;br /&gt;
| Σταθερό: 2310238719&lt;br /&gt;
| 50€ η συνεδρία&lt;br /&gt;
| Παλαιών Πατρών Γερμανού 21, Θεσσαλονίκη&lt;br /&gt;
| -&lt;br /&gt;
|&lt;br /&gt;
* 1 ✅&lt;br /&gt;
* 1 🟨&lt;br /&gt;
* 0 🟧&lt;br /&gt;
* 0 ❌&lt;br /&gt;
| - Δεν έχει θέμα με DIY, &#039;&#039;&#039;δεν ζήτησε άμεσα&#039;&#039;&#039; διάγνωση, αλλά &#039;&#039;&#039;την θέλει&#039;&#039;&#039; γενικότερα (δλ. αν δεν έχεις θα στη ζητήσει μελλοντικά μεσω e-mail)&lt;br /&gt;
- Έχει θέμα με τα &amp;quot;υψηλά&amp;quot; επίπεδα (π.χ. κανονικά pg/ml e2 στην μονοθεραπεία με injections είναι περίεργα γι&#039; αυτόν)&lt;br /&gt;
- Ζητάει διάγνωση στα άτομα που δεν λαμβάνουν DIY HRT.&lt;br /&gt;
- Ημι-συχνό misgendering.&lt;br /&gt;
|-&lt;br /&gt;
|✅&lt;br /&gt;
|Παναγιώτης Μ. Μπουντούρης&lt;br /&gt;
|Σύρος&lt;br /&gt;
|Ιδιωτικό&lt;br /&gt;
|Σταθερό: 2281082030&lt;br /&gt;
Κινητό: 6946545831&lt;br /&gt;
|30€ η πρώτη συνεδρία&lt;br /&gt;
10€ η συνταγή&lt;br /&gt;
|Κλεισθένους 15, Ερμούπολη, 84100, Κυκλάδων&lt;br /&gt;
| -&lt;br /&gt;
|&lt;br /&gt;
* 1 ✅&lt;br /&gt;
* 0 🟨&lt;br /&gt;
* 0 🟧&lt;br /&gt;
* 0 ❌&lt;br /&gt;
| -&lt;br /&gt;
|-&lt;br /&gt;
|🟨&lt;br /&gt;
|Κωνσταντίνος Α. Τούλης&lt;br /&gt;
|Θεσσαλονίκη&lt;br /&gt;
|Ιδιωτικό&lt;br /&gt;
|Τηλέφωνο: 2310222799&lt;br /&gt;
|50€ η συνεδρία&lt;br /&gt;
|Μητροπόλεως 73, Θεσσαλονίκη 546 22&lt;br /&gt;
| -&lt;br /&gt;
|&lt;br /&gt;
* 0 ✅&lt;br /&gt;
* 1 🟨&lt;br /&gt;
* 0 🟧&lt;br /&gt;
* 0 ❌&lt;br /&gt;
| - Θέλει διάγνωση.&lt;br /&gt;
|-&lt;br /&gt;
|❌&lt;br /&gt;
|Πουλάκος Πάυλος&lt;br /&gt;
|Θεσσαλονίκη&lt;br /&gt;
|Ιδιωτικό&lt;br /&gt;
|Σταθερό: 2105579147&lt;br /&gt;
|50€ η συνεδρία &lt;br /&gt;
|Τσιμισκή Ιωάννη 69, Αγία Σοφία, 546 22&lt;br /&gt;
| -&lt;br /&gt;
|&lt;br /&gt;
* 0 ✅&lt;br /&gt;
* 0 🟨&lt;br /&gt;
* 0 🟧&lt;br /&gt;
* 1 ❌&lt;br /&gt;
| - 100mg cypro ανά μέρα χωρίς προειδοποίηση στο cyclacur για τα πορτοκαλί/καφέ χάπια (πολύ κακό)&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== Δερματολόγοι/Αφροδισιολόγοι/Laser Κλινικές ==&lt;br /&gt;
{| class=&amp;quot;wikitable sortable&amp;quot;&lt;br /&gt;
|+&lt;br /&gt;
!✅/🟨/🟧/❌&lt;br /&gt;
!Όνομα&lt;br /&gt;
!Περιοχή&lt;br /&gt;
!Είδος&lt;br /&gt;
!Δημόσιο/Ιδιωτικό&lt;br /&gt;
!Επικοινωνία&lt;br /&gt;
!Τιμή&lt;br /&gt;
!Διαδικτυακά&lt;br /&gt;
!Κριτικές&lt;br /&gt;
!Σημειώσεις&lt;br /&gt;
|-&lt;br /&gt;
|❌&lt;br /&gt;
|Ζαχαρίας Ι. Ανδρεαδάκης&lt;br /&gt;
|Αθήνα&lt;br /&gt;
|Δερματολόγος/Αφροδισιολόγος/Laser&lt;br /&gt;
|Ιδιωτικό&lt;br /&gt;
| -&lt;br /&gt;
| -&lt;br /&gt;
| -&lt;br /&gt;
|&lt;br /&gt;
* 0 ✅&lt;br /&gt;
* 0 🟨&lt;br /&gt;
* 0 🟧&lt;br /&gt;
* 1 ❌&lt;br /&gt;
| -&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== Χειρούργοι ==&lt;br /&gt;
{| class=&amp;quot;wikitable sortable&amp;quot;&lt;br /&gt;
|+&lt;br /&gt;
!✅/🟨/🟧/❌&lt;br /&gt;
!Όνομα&lt;br /&gt;
!Περιοχή&lt;br /&gt;
!Δημόσιο/Ιδιωτικό&lt;br /&gt;
!Επικοινωνία&lt;br /&gt;
!Τιμή&lt;br /&gt;
!Οδός&lt;br /&gt;
!Διαδικτυακά&lt;br /&gt;
!Κριτικές&lt;br /&gt;
!Σημειώσεις&lt;br /&gt;
|-&lt;br /&gt;
|✅&lt;br /&gt;
|Ηλίας Μεξής&lt;br /&gt;
|Αθήνα&lt;br /&gt;
|Ιδιωτικό&lt;br /&gt;
| Σταθερό: 2114068315&lt;br /&gt;
| Top surgery ~3000€&lt;br /&gt;
|Αγ. Θεοδώρων 10, 14562 Κηφισιά&lt;br /&gt;
| -&lt;br /&gt;
|&lt;br /&gt;
* 1 ✅&lt;br /&gt;
* 0 🟨&lt;br /&gt;
* 0 🟧&lt;br /&gt;
* 0 ❌&lt;br /&gt;
| - Δεν ζητάει γνωμάτευση.&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== Δικηγόροι ==&lt;br /&gt;
{| class=&amp;quot;wikitable sortable&amp;quot;&lt;br /&gt;
|+&lt;br /&gt;
!✅/🟨/🟧/❌&lt;br /&gt;
!Όνομα&lt;br /&gt;
!Περιοχή&lt;br /&gt;
!Δημόσιο/Ιδιωτικό&lt;br /&gt;
!Επικοινωνία&lt;br /&gt;
!Τιμή&lt;br /&gt;
!Οδός&lt;br /&gt;
!Διαδικτυακά&lt;br /&gt;
!Κριτικές&lt;br /&gt;
!Σημειώσεις&lt;br /&gt;
|-&lt;br /&gt;
|✅&lt;br /&gt;
|Αθηνά Καλογρίδη&lt;br /&gt;
|Θεσσαλονίκη&lt;br /&gt;
|Ιδιωτικό&lt;br /&gt;
| Σταθερό: 2310220704&lt;br /&gt;
| 125€ αίτηση&lt;br /&gt;
125€ δικαστήριο&lt;br /&gt;
43€ εισαγγελέας&lt;br /&gt;
| Κομνηνών 20, Θεσσαλονίκη, 54624, ΘΕΣΣΑΛΟΝΙΚΗΣ&lt;br /&gt;
| -&lt;br /&gt;
|&lt;br /&gt;
* 1 ✅&lt;br /&gt;
* 0 🟨&lt;br /&gt;
* 0 🟧&lt;br /&gt;
* 0 ❌&lt;br /&gt;
| -&lt;br /&gt;
|}&lt;/div&gt;</summary>
		<author><name>Goblinmoder</name></author>
	</entry>
	<entry>
		<id>https://wiki.diyon.top/index.php?title=Doctors&amp;diff=1024</id>
		<title>Doctors</title>
		<link rel="alternate" type="text/html" href="https://wiki.diyon.top/index.php?title=Doctors&amp;diff=1024"/>
		<updated>2025-09-28T18:29:59Z</updated>

		<summary type="html">&lt;p&gt;Goblinmoder: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{#seo:&lt;br /&gt;
|title_mode=replace&lt;br /&gt;
|title=Doctors&lt;br /&gt;
|description=List of doctors documented, most of which are from real life encounters, opinions are non-definitive.&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
== Ψυχίατροι ==&lt;br /&gt;
{| class=&amp;quot;wikitable sortable&amp;quot;&lt;br /&gt;
|+&lt;br /&gt;
!✅/🟨/🟧/❌&lt;br /&gt;
!Όνομα&lt;br /&gt;
!Περιοχή&lt;br /&gt;
!Δημόσιο/Ιδιωτικό&lt;br /&gt;
!Επικοινωνία&lt;br /&gt;
!Τιμή&lt;br /&gt;
!Οδός&lt;br /&gt;
!Διαδικτυακά&lt;br /&gt;
!Κριτικές&lt;br /&gt;
!Σημειώσεις&lt;br /&gt;
|-&lt;br /&gt;
|✅&lt;br /&gt;
|Καρατζαφέρης Λυκούργος&lt;br /&gt;
|Αθήνα / Διαδικτυακά&lt;br /&gt;
|Ιδιωτικό&lt;br /&gt;
|Σταθερό: 2177207765&lt;br /&gt;
Τηλέφωνο: 6944302577&lt;br /&gt;
|30-70 ευρώ, 1-2 συνεδρίες για γνωμάτευση.&lt;br /&gt;
|Αμφιτρύωνος 78, Αττική, 11853.&lt;br /&gt;
|Κάνει και online αλλά προτιμάει irl.&lt;br /&gt;
|&lt;br /&gt;
* 2 ✅&lt;br /&gt;
* 0 🟨&lt;br /&gt;
* 0 🟧&lt;br /&gt;
* 0 ❌&lt;br /&gt;
| -&lt;br /&gt;
|-&lt;br /&gt;
|✅&lt;br /&gt;
|Μαρία Αναστασάκη&lt;br /&gt;
|Ηράκλειο / Διαδικτυακά&lt;br /&gt;
|Ιδιωτικό&lt;br /&gt;
|Σταθερό: 2810223940&lt;br /&gt;
Τηλέφωνο: 6980566188&lt;br /&gt;
&lt;br /&gt;
E-mail: [mailto:anastasakitherapy@gmail.com anastasakitherapy@gmail.com]&lt;br /&gt;
|40Ε ανα συνεδρία / 90Ε (γνωμάτευση)&lt;br /&gt;
|Λεωφόρος Ιωνίας 136, Ηράκλειο [Δήμος], Ηράκλειο, 71305&lt;br /&gt;
|Ναι.&lt;br /&gt;
|&lt;br /&gt;
* 2 ✅&lt;br /&gt;
* 1 🟨&lt;br /&gt;
* 0 🟧&lt;br /&gt;
* 0 ❌&lt;br /&gt;
| Μπορεί να είναι δύσκολη η επικοινωνία.&lt;br /&gt;
|-&lt;br /&gt;
|✅&lt;br /&gt;
|Κατερίνα Χαλκιαδάκη&lt;br /&gt;
|Ηράκλειο / Διαδικτυακά&lt;br /&gt;
|Ιδιωτικό&lt;br /&gt;
|Σταθερό: 2810223940&lt;br /&gt;
|40Ε ανα συνεδρία / 90Ε (γνωμάτευση)&lt;br /&gt;
|Λεωφόρος Ιωνίας 136, Ηράκλειο [Δήμος], Ηράκλειο, 71305&lt;br /&gt;
|Ναι.&lt;br /&gt;
|&lt;br /&gt;
* 1 ✅&lt;br /&gt;
* 0 🟨&lt;br /&gt;
* 0 🟧&lt;br /&gt;
* 0 ❌&lt;br /&gt;
|Συνάδελφος της Αναστασάκη.&lt;br /&gt;
|-&lt;br /&gt;
|✅&lt;br /&gt;
|Ελένη Ζαχάρη&lt;br /&gt;
|Αθήνα&lt;br /&gt;
|Ιδιωτικό&lt;br /&gt;
|Τηλέφωνο: 6942493053&lt;br /&gt;
|50-70€ το ραντεβού (γνωμάτευση σε 2 συνεδρίες)&lt;br /&gt;
|Χατζηκώστα 8Α, Πλατεία Μαβίλη, Αττική.&lt;br /&gt;
|Ναι.&lt;br /&gt;
|&lt;br /&gt;
* 1 ✅&lt;br /&gt;
* 0 🟨&lt;br /&gt;
* 0 🟧&lt;br /&gt;
* 0 ❌&lt;br /&gt;
| -&lt;br /&gt;
|-&lt;br /&gt;
|✅&lt;br /&gt;
|Γεωργιλαδάκης Ιωάννης&lt;br /&gt;
|Ηράκλειο&lt;br /&gt;
|Ιδιωτικό&lt;br /&gt;
|Σταθερό: 2107442019&lt;br /&gt;
|50€ το ραντεβού. (Στο [https://www.doctoranytime.gr/d/Psychiatros/georgiladakis-ioannis site]&amp;lt;nowiki&amp;gt; αναφέρεται το εξής: &amp;quot;Πιστοποιητικά/Βεβαιώσεις | Από 20€ έως 40€&amp;quot;)&amp;lt;/nowiki&amp;gt;&lt;br /&gt;
|Πλατεία Ρήγα Φεραίου 13, Ηράκλειο, Κρήτη.&lt;br /&gt;
|Λογικά όχι πια (writer&#039;s conclusion, citation needed)&lt;br /&gt;
|&lt;br /&gt;
* 1 ✅&lt;br /&gt;
* 0 🟨&lt;br /&gt;
* 0 🟧&lt;br /&gt;
* 0 ❌&lt;br /&gt;
| -&lt;br /&gt;
|-&lt;br /&gt;
|✅&lt;br /&gt;
|Πάγκαλος Γεώργιος&lt;br /&gt;
|Θεσσαλονίκη&lt;br /&gt;
|Ιδιωτικό&lt;br /&gt;
|Τηλέφωνο: 6933091536&lt;br /&gt;
|100€ ανα συνεδρία &lt;br /&gt;
|Καρόλου Ντηλ 25, 54623&lt;br /&gt;
|Ναι.&lt;br /&gt;
|&lt;br /&gt;
* 1 ✅&lt;br /&gt;
* 0 🟨&lt;br /&gt;
* 0 🟧&lt;br /&gt;
* 0 ❌&lt;br /&gt;
| -&lt;br /&gt;
|-&lt;br /&gt;
|🟨&lt;br /&gt;
|Δημήτρης Ξυλάς&lt;br /&gt;
|Θεσσαλονίκη&lt;br /&gt;
|Ιδιωτικό&lt;br /&gt;
|Σταθερό: 2310236236&lt;br /&gt;
|70€ αναγκαστικό ψυχομετρικό τεστ και 60€ η συνεδρία&lt;br /&gt;
|Εγνατία 70 &amp;amp; Χαλκέων 16, 546 24&lt;br /&gt;
| -&lt;br /&gt;
|&lt;br /&gt;
* 0 ✅&lt;br /&gt;
* 1 🟨&lt;br /&gt;
* 0 🟧&lt;br /&gt;
* 0 ❌&lt;br /&gt;
|Δεν είναι NB friendly.&lt;br /&gt;
|-&lt;br /&gt;
|🟨&lt;br /&gt;
|Σταυριανάκος Κυριάκος&lt;br /&gt;
|Αθήνα / Διαδικτυακά&lt;br /&gt;
|Ιδιωτικό&lt;br /&gt;
| Σταθερό: 2108064113&lt;br /&gt;
| 70€ ανα ραντεβού (επι 6 μήνες gatekeeping)&lt;br /&gt;
| Θησέως 15-17, Μαρούσι 151 24&lt;br /&gt;
| Ναι.&lt;br /&gt;
|&lt;br /&gt;
* 0 ✅&lt;br /&gt;
* 2 🟨&lt;br /&gt;
* 0 🟧&lt;br /&gt;
* 0 ❌&lt;br /&gt;
| Διάβασε καλά την τιμή.&lt;br /&gt;
|-&lt;br /&gt;
|🟧&lt;br /&gt;
|Μεταξάς Σπυρίδων&lt;br /&gt;
|Αθήνα&lt;br /&gt;
|Ιδιωτικό&lt;br /&gt;
|Σταθερό: 2107116438&lt;br /&gt;
|70 ευρώ με κάρτα, 60 ευρώ χωρίς.&lt;br /&gt;
|Ρόδου 17, Μαρούσι, Αττική.&lt;br /&gt;
|Όχι.&lt;br /&gt;
|&lt;br /&gt;
* 1 ✅&lt;br /&gt;
* 0 🟨&lt;br /&gt;
* 0 🟧&lt;br /&gt;
* 1 ❌&lt;br /&gt;
| Με MTF ήταν super friendly, ενώ με FTM το ακριβώς αντίθετο. &lt;br /&gt;
|-&lt;br /&gt;
|🟧 &lt;br /&gt;
|Σαρρηγιανίδης Αλέξιος&lt;br /&gt;
|Θεσσαλονίκη&lt;br /&gt;
|Δημόσιο&lt;br /&gt;
| -&lt;br /&gt;
| -&lt;br /&gt;
| Ιπποκράτειο Θεσσαλονίκης&lt;br /&gt;
| Όχι.&lt;br /&gt;
|&lt;br /&gt;
* 0 ✅&lt;br /&gt;
* 0 🟨&lt;br /&gt;
* 1 🟧&lt;br /&gt;
* 0 ❌&lt;br /&gt;
| Δεν είναι κακός απλώς προτείνει τον Πάγκαλο (δλ. πήγαινε κατ&#039; ευθείαν εκεί) και έπειτα τον &#039;&#039;Μπουφίδη&#039;&#039; (γι&#039; αυτό και είναι 🟧 και όχι 🟨/✅) &lt;br /&gt;
|-&lt;br /&gt;
|❌&lt;br /&gt;
|Φλούδας Γεώργιος&lt;br /&gt;
|Αθήνα&lt;br /&gt;
|Δημόσιο&lt;br /&gt;
|[[File:Floudaskeeper.jpg|thumb|172x172px]]&lt;br /&gt;
| [[File:Flouda.png|thumb|163x163px|courtesy of Αθανασιάδης Λουκάς]]&lt;br /&gt;
| [https://media.discordapp.net/attachments/785742455928520725/1290054603814993930/hgf.png?ex=66fb1079&amp;amp;is=66f9bef9&amp;amp;hm=0441ce6ca9438130027d61078d2b76bc9abaa83ad99e97e7718a05554e2221f3&amp;amp;=&amp;amp;format=webp&amp;amp;quality=lossless&amp;amp;width=687&amp;amp;height=305 206]&lt;br /&gt;
| Όχι.&lt;br /&gt;
|&lt;br /&gt;
* 1 ✅&lt;br /&gt;
* 1 🟨&lt;br /&gt;
* 0 🟧&lt;br /&gt;
* 6 ❌&lt;br /&gt;
|Ο βασιλιάς του Gatekeeping, zero tolenace στο diy.&lt;br /&gt;
|-&lt;br /&gt;
|❌&lt;br /&gt;
|Απαζίδου Παρθένα&lt;br /&gt;
|Θεσσαλονίκη&lt;br /&gt;
|Δημόσιο&lt;br /&gt;
| -&lt;br /&gt;
| -&lt;br /&gt;
| Νοσοκομείο Αφροδισίων  &amp;amp; Δερματικών Νόσων Θεσσαλονίκης (παράρτημα Ιπποκράτειου στην Δελφών 124)&lt;br /&gt;
| Όχι.&lt;br /&gt;
|&lt;br /&gt;
* 0 ✅&lt;br /&gt;
* 0 🟨&lt;br /&gt;
* 0 🟧&lt;br /&gt;
* 1 ❌&lt;br /&gt;
|Δεν γνωρίζει απο &amp;quot;τρανς θέματα&amp;quot;.&lt;br /&gt;
|-&lt;br /&gt;
|❌ &lt;br /&gt;
|Λουκάς Αθανασιάδης&lt;br /&gt;
|Θεσσαλονίκη&lt;br /&gt;
|Δημόσιο&lt;br /&gt;
| -&lt;br /&gt;
| -&lt;br /&gt;
| -&lt;br /&gt;
| Όχι.&lt;br /&gt;
|&lt;br /&gt;
* 0 ✅&lt;br /&gt;
* 0 🟨&lt;br /&gt;
* 0 🟧&lt;br /&gt;
* 3 ❌&lt;br /&gt;
|Gatekeeping, zero tolenace στο diy, σπατάλη 2+ χρόνων.&lt;br /&gt;
|-&lt;br /&gt;
|❌&lt;br /&gt;
|Μπουφίδης Σταύρος&lt;br /&gt;
|Θεσσαλονίκη&lt;br /&gt;
|Ιδιωτικό&lt;br /&gt;
|Σταθερό: 2310253793&lt;br /&gt;
|&amp;quot;100€ μετρητά, 80€ κά- α όχι, συγνώμη, 80€ μέτρητα. 100€ κάρτα&amp;quot;&lt;br /&gt;
|Ερμού 36, Θεσσαλονίκη, 54623&lt;br /&gt;
|Όχι.&lt;br /&gt;
|&lt;br /&gt;
* 0 ✅&lt;br /&gt;
* 0 🟨&lt;br /&gt;
* 0 🟧&lt;br /&gt;
* 2 ❌&lt;br /&gt;
|Αν σ&#039; αρέσει να πληρώνεις για να σε κάνουν gatekeep, είναι τέλειος.&lt;br /&gt;
|-&lt;br /&gt;
|❌&lt;br /&gt;
|Καλλιόπη Προκοπάκη&lt;br /&gt;
|Αθήνα&lt;br /&gt;
|Ιδιωτικό&lt;br /&gt;
| -&lt;br /&gt;
| -&lt;br /&gt;
| -&lt;br /&gt;
| -&lt;br /&gt;
|&lt;br /&gt;
* 0 ✅&lt;br /&gt;
* 0 🟨&lt;br /&gt;
* 0 🟧&lt;br /&gt;
* 1 ❌&lt;br /&gt;
|Είναι κατά τον γάμο ομόφυλων ζευγαριών.&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== Ψυχολόγοι ==&lt;br /&gt;
{| class=&amp;quot;wikitable sortable&amp;quot;&lt;br /&gt;
|+&lt;br /&gt;
!✅/🟨/🟧/❌&lt;br /&gt;
!Όνομα&lt;br /&gt;
!Περιοχή&lt;br /&gt;
!Δημόσιο/Ιδιωτικό&lt;br /&gt;
!Επικοινωνία&lt;br /&gt;
!Τιμή&lt;br /&gt;
!Οδός&lt;br /&gt;
!Διαδικτυακά&lt;br /&gt;
!Κριτικές&lt;br /&gt;
!Σημειώσεις&lt;br /&gt;
|-&lt;br /&gt;
|✅&lt;br /&gt;
|Γεωργία Καμπόλη&lt;br /&gt;
|Άνω Λιόσια / Διαδικτυακά&lt;br /&gt;
|Ιδιωτικό&lt;br /&gt;
| Τηλέφωνο: 6931170170 &lt;br /&gt;
Email: geokaboli@gmail.com &lt;br /&gt;
&lt;br /&gt;
Email (στην ιστοσελίδα): info@kabolipsychologist.gr&lt;br /&gt;
| -&lt;br /&gt;
| Οδ. Ελύτη 2, Άνω Λιόσια 133 41&lt;br /&gt;
| Ναι.&lt;br /&gt;
|&lt;br /&gt;
* 1 ✅&lt;br /&gt;
* 0 🟨&lt;br /&gt;
* 0 🟧&lt;br /&gt;
* 0 ❌&lt;br /&gt;
| -&lt;br /&gt;
|-&lt;br /&gt;
|❌&lt;br /&gt;
|Γιαντσίδου Βασιλική&lt;br /&gt;
|Ορεστιάδα&lt;br /&gt;
|Ιδιωτικό&lt;br /&gt;
| -&lt;br /&gt;
| -&lt;br /&gt;
| -&lt;br /&gt;
| -&lt;br /&gt;
| -&lt;br /&gt;
| Στον κώλο της μαϊμούς, δεν θα βγάλεις άκρη, why bother?&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== Παιδοψυχίατροι ==&lt;br /&gt;
{| class=&amp;quot;wikitable sortable&amp;quot;&lt;br /&gt;
|+&lt;br /&gt;
!✅/🟨/🟧/❌&lt;br /&gt;
!Όνομα&lt;br /&gt;
!Περιοχή&lt;br /&gt;
!Δημόσιο/Ιδιωτικό&lt;br /&gt;
!Επικοινωνία&lt;br /&gt;
!Τιμή&lt;br /&gt;
!Οδός&lt;br /&gt;
!Διαδικτυακά&lt;br /&gt;
!Κριτικές&lt;br /&gt;
!Σημειώσεις&lt;br /&gt;
|-&lt;br /&gt;
|❌&lt;br /&gt;
|Στέλλα/Στυλιανή Βαγιωνά&lt;br /&gt;
|Θεσσαλονίκη&lt;br /&gt;
|Ιδιωτικό&lt;br /&gt;
| -&lt;br /&gt;
|70€ (χωρίς απόδειξη)&lt;br /&gt;
| -&lt;br /&gt;
| -&lt;br /&gt;
|&lt;br /&gt;
* 0 ✅&lt;br /&gt;
* 0 🟨&lt;br /&gt;
* 0 🟧&lt;br /&gt;
* 1 ❌&lt;br /&gt;
| -&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== Ενδοκρινολόγοι ==&lt;br /&gt;
{| class=&amp;quot;wikitable sortable&amp;quot;&lt;br /&gt;
|+&lt;br /&gt;
!✅/🟨/🟧/❌&lt;br /&gt;
!Όνομα&lt;br /&gt;
!Περιοχή&lt;br /&gt;
!Δημόσιο/Ιδιωτικό&lt;br /&gt;
!Επικοινωνία&lt;br /&gt;
!Τιμή&lt;br /&gt;
!Οδός&lt;br /&gt;
!Διαδικτυακά&lt;br /&gt;
!Κριτικές&lt;br /&gt;
!Σημειώσεις&lt;br /&gt;
|-&lt;br /&gt;
|✅&lt;br /&gt;
|Γιουλάντα Πέτκοβα&lt;br /&gt;
|Ρέθυμνο&lt;br /&gt;
|Ιδιωτικό&lt;br /&gt;
|Σταθερό: 2831053220&lt;br /&gt;
Κινητό: 6937294404&lt;br /&gt;
&lt;br /&gt;
Email: valiapetg@gmail.com&lt;br /&gt;
|50€&lt;br /&gt;
|Δημητρακάκη Σ. 31, Ρέθυμνο 741 32&lt;br /&gt;
| Ναι&lt;br /&gt;
|&lt;br /&gt;
*1 ✅&lt;br /&gt;
* 0 🟨&lt;br /&gt;
* 0 🟧&lt;br /&gt;
* 0 ❌&lt;br /&gt;
| - Ενδεχομένως να θέλει χαρτί για συνταγογράφηση, &#039;&#039;&#039;για αιματολογικές&#039;&#039;&#039; δεν έχει ζητήσει.&lt;br /&gt;
- Δεν έχει θέμα με DIY.&lt;br /&gt;
|-&lt;br /&gt;
|🟨&lt;br /&gt;
|Κούκκου Ευτυχία&lt;br /&gt;
|Αθήνα&lt;br /&gt;
|Δημόσιο&lt;br /&gt;
| -&lt;br /&gt;
| -&lt;br /&gt;
| Γ.Ν. Έλενα Βενιζέλου, Αθήνα 115 21&lt;br /&gt;
| Όχι.&lt;br /&gt;
|&lt;br /&gt;
* 4 ✅&lt;br /&gt;
* 0 🟨&lt;br /&gt;
* 1 🟧&lt;br /&gt;
* 1 ❌&lt;br /&gt;
| - Θέλει διάγνωση. &lt;br /&gt;
- Κάνει περίεργο misgendering μερικές φορές.&lt;br /&gt;
|-&lt;br /&gt;
|✅&lt;br /&gt;
|Θεώδορος Θωμάς&lt;br /&gt;
|Αθήνα&lt;br /&gt;
|Ιδιωτικό&lt;br /&gt;
| Σταθερό: 2106436115&lt;br /&gt;
| 80-100€ η συνεδρία&lt;br /&gt;
| Λεωφ. Κηφισίας 5, 115 23 Αμπελόκηποι, Αθήνα&lt;br /&gt;
| -&lt;br /&gt;
|&lt;br /&gt;
* 5 ✅&lt;br /&gt;
* 1 🟨&lt;br /&gt;
* 0 🟧&lt;br /&gt;
* 0 ❌&lt;br /&gt;
| - Θέλει διάγνωση. &lt;br /&gt;
- Έχει γράψει &#039;&#039;&#039;50mg androcur&#039;&#039;&#039; ανά &#039;&#039;&#039;μέρα&#039;&#039;&#039;. Παρ&#039; όλα αυτά δεν έχει υπάρξει άλλο περιστατικό σαν αυτό, οπότε &#039;&#039;&#039;δεν είναι fully conclusive&#039;&#039;&#039; το &amp;quot;Έγραψε παράξενη δοσολογία μια φορά σε μια κοπέλα.&amp;quot; &lt;br /&gt;
|-&lt;br /&gt;
|✅&lt;br /&gt;
|Σκαράκης Νικήτας&lt;br /&gt;
|Αθήνα&lt;br /&gt;
|Ιδιωτικό&lt;br /&gt;
| Σταθερό:  2107117965&lt;br /&gt;
| 50€ η συνεδρία&lt;br /&gt;
| Κυκλαμίνων 7 (Περιοχή Αγίου Ιεροθέου), Περιστέρι, Αττική&lt;br /&gt;
| Ναι. (60€ η συνεδρία)&lt;br /&gt;
|&lt;br /&gt;
* 1 ✅&lt;br /&gt;
* 0 🟨&lt;br /&gt;
* 0 🟧&lt;br /&gt;
* 0 ❌&lt;br /&gt;
| - Θέλει διάγνωση.&lt;br /&gt;
|-&lt;br /&gt;
|✅&lt;br /&gt;
|Στέργιος Κιούρας&lt;br /&gt;
|Θεσσαλονίκη&lt;br /&gt;
|Ιδιωτικό&lt;br /&gt;
| Σταθερό: 2310256498&lt;br /&gt;
| 50€ η συνεδρία&lt;br /&gt;
| Ερμού 36, Θεσσαλονίκη 546 23&lt;br /&gt;
| -&lt;br /&gt;
|&lt;br /&gt;
* 1 ✅&lt;br /&gt;
* 0 🟨&lt;br /&gt;
* 0 🟧&lt;br /&gt;
* 0 ❌&lt;br /&gt;
| - &#039;&#039;&#039;Δεν ζήτησε&#039;&#039;&#039; διάγνωση.&lt;br /&gt;
|-&lt;br /&gt;
|🟨&lt;br /&gt;
|Θεμιστοκλής Καλτσάς&lt;br /&gt;
|Θεσσαλονίκη&lt;br /&gt;
|Ιδιωτικό&lt;br /&gt;
| Σταθερό: 2310238719&lt;br /&gt;
| 50€ η συνεδρία&lt;br /&gt;
| Παλαιών Πατρών Γερμανού 21, Θεσσαλονίκη&lt;br /&gt;
| -&lt;br /&gt;
|&lt;br /&gt;
* 1 ✅&lt;br /&gt;
* 1 🟨&lt;br /&gt;
* 0 🟧&lt;br /&gt;
* 0 ❌&lt;br /&gt;
| - Δεν έχει θέμα με DIY, &#039;&#039;&#039;δεν ζήτησε άμεσα&#039;&#039;&#039; διάγνωση, αλλά &#039;&#039;&#039;την θέλει&#039;&#039;&#039; γενικότερα (δλ. αν δεν έχεις θα στη ζητήσει μελλοντικά μεσω e-mail)&lt;br /&gt;
- Έχει θέμα με τα &amp;quot;υψηλά&amp;quot; επίπεδα (π.χ. κανονικά pg/ml e2 στην μονοθεραπεία με injections είναι περίεργα γι&#039; αυτόν)&lt;br /&gt;
- Ζητάει διάγνωση στα άτομα που δεν λαμβάνουν DIY HRT.&lt;br /&gt;
- Ημι-συχνό misgendering.&lt;br /&gt;
|-&lt;br /&gt;
|✅&lt;br /&gt;
|Παναγιώτης Μ. Μπουντούρης&lt;br /&gt;
|Σύρος&lt;br /&gt;
|Ιδιωτικό&lt;br /&gt;
|Σταθερό: 2281082030&lt;br /&gt;
Κινητό: 6946545831&lt;br /&gt;
|30€ η πρώτη συνεδρία&lt;br /&gt;
10€ η συνταγή&lt;br /&gt;
|Κλεισθένους 15, Ερμούπολη, 84100, Κυκλάδων&lt;br /&gt;
| -&lt;br /&gt;
|&lt;br /&gt;
* 1 ✅&lt;br /&gt;
* 0 🟨&lt;br /&gt;
* 0 🟧&lt;br /&gt;
* 0 ❌&lt;br /&gt;
| -&lt;br /&gt;
|-&lt;br /&gt;
|🟨&lt;br /&gt;
|Κωνσταντίνος Α. Τούλης&lt;br /&gt;
|Θεσσαλονίκη&lt;br /&gt;
|Ιδιωτικό&lt;br /&gt;
|Τηλέφωνο: 2310222799&lt;br /&gt;
|50€ η συνεδρία&lt;br /&gt;
|Μητροπόλεως 73, Θεσσαλονίκη 546 22&lt;br /&gt;
| -&lt;br /&gt;
|&lt;br /&gt;
* 0 ✅&lt;br /&gt;
* 1 🟨&lt;br /&gt;
* 0 🟧&lt;br /&gt;
* 0 ❌&lt;br /&gt;
| - Θέλει διάγνωση.&lt;br /&gt;
|-&lt;br /&gt;
|🟨&lt;br /&gt;
|Γεώργιος Α. Κανάκης&lt;br /&gt;
|Αθήνα&lt;br /&gt;
|Ιδιωτικό&lt;br /&gt;
|Σταθερό: 2107709248&lt;br /&gt;
|&amp;lt;!-- we don&#039;t even fucking know --&amp;gt;&lt;br /&gt;
|Τσόχα 15-17, Αμπελόκηποι &lt;br /&gt;
| -&lt;br /&gt;
| -&lt;br /&gt;
| -&lt;br /&gt;
|-&lt;br /&gt;
|❌&lt;br /&gt;
|Πουλάκος Πάυλος&lt;br /&gt;
|Θεσσαλονίκη&lt;br /&gt;
|Ιδιωτικό&lt;br /&gt;
|Σταθερό: 2105579147&lt;br /&gt;
|50€ η συνεδρία &lt;br /&gt;
|Τσιμισκή Ιωάννη 69, Αγία Σοφία, 546 22&lt;br /&gt;
| -&lt;br /&gt;
|&lt;br /&gt;
* 0 ✅&lt;br /&gt;
* 0 🟨&lt;br /&gt;
* 0 🟧&lt;br /&gt;
* 1 ❌&lt;br /&gt;
| - 100mg cypro ανά μέρα χωρίς προειδοποίηση στο cyclacur για τα πορτοκαλί/καφέ χάπια (πολύ κακό)&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== Δερματολόγοι/Αφροδισιολόγοι/Laser Κλινικές ==&lt;br /&gt;
{| class=&amp;quot;wikitable sortable&amp;quot;&lt;br /&gt;
|+&lt;br /&gt;
!✅/🟨/🟧/❌&lt;br /&gt;
!Όνομα&lt;br /&gt;
!Περιοχή&lt;br /&gt;
!Είδος&lt;br /&gt;
!Δημόσιο/Ιδιωτικό&lt;br /&gt;
!Επικοινωνία&lt;br /&gt;
!Τιμή&lt;br /&gt;
!Διαδικτυακά&lt;br /&gt;
!Κριτικές&lt;br /&gt;
!Σημειώσεις&lt;br /&gt;
|-&lt;br /&gt;
|❌&lt;br /&gt;
|Ζαχαρίας Ι. Ανδρεαδάκης&lt;br /&gt;
|Αθήνα&lt;br /&gt;
|Δερματολόγος/Αφροδισιολόγος/Laser&lt;br /&gt;
|Ιδιωτικό&lt;br /&gt;
| -&lt;br /&gt;
| -&lt;br /&gt;
| -&lt;br /&gt;
|&lt;br /&gt;
* 0 ✅&lt;br /&gt;
* 0 🟨&lt;br /&gt;
* 0 🟧&lt;br /&gt;
* 1 ❌&lt;br /&gt;
| -&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== Χειρούργοι ==&lt;br /&gt;
{| class=&amp;quot;wikitable sortable&amp;quot;&lt;br /&gt;
|+&lt;br /&gt;
!✅/🟨/🟧/❌&lt;br /&gt;
!Όνομα&lt;br /&gt;
!Περιοχή&lt;br /&gt;
!Δημόσιο/Ιδιωτικό&lt;br /&gt;
!Επικοινωνία&lt;br /&gt;
!Τιμή&lt;br /&gt;
!Οδός&lt;br /&gt;
!Διαδικτυακά&lt;br /&gt;
!Κριτικές&lt;br /&gt;
!Σημειώσεις&lt;br /&gt;
|-&lt;br /&gt;
|✅&lt;br /&gt;
|Ηλίας Μεξής&lt;br /&gt;
|Αθήνα&lt;br /&gt;
|Ιδιωτικό&lt;br /&gt;
| Σταθερό: 2114068315&lt;br /&gt;
| Top surgery ~3000€&lt;br /&gt;
|Αγ. Θεοδώρων 10, 14562 Κηφισιά&lt;br /&gt;
| -&lt;br /&gt;
|&lt;br /&gt;
* 1 ✅&lt;br /&gt;
* 0 🟨&lt;br /&gt;
* 0 🟧&lt;br /&gt;
* 0 ❌&lt;br /&gt;
| - Δεν ζητάει γνωμάτευση.&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== Δικηγόροι ==&lt;br /&gt;
{| class=&amp;quot;wikitable sortable&amp;quot;&lt;br /&gt;
|+&lt;br /&gt;
!✅/🟨/🟧/❌&lt;br /&gt;
!Όνομα&lt;br /&gt;
!Περιοχή&lt;br /&gt;
!Δημόσιο/Ιδιωτικό&lt;br /&gt;
!Επικοινωνία&lt;br /&gt;
!Τιμή&lt;br /&gt;
!Οδός&lt;br /&gt;
!Διαδικτυακά&lt;br /&gt;
!Κριτικές&lt;br /&gt;
!Σημειώσεις&lt;br /&gt;
|-&lt;br /&gt;
|✅&lt;br /&gt;
|Αθηνά Καλογρίδη&lt;br /&gt;
|Θεσσαλονίκη&lt;br /&gt;
|Ιδιωτικό&lt;br /&gt;
| Σταθερό: 2310220704&lt;br /&gt;
| 125€ αίτηση&lt;br /&gt;
125€ δικαστήριο&lt;br /&gt;
43€ εισαγγελέας&lt;br /&gt;
| Κομνηνών 20, Θεσσαλονίκη, 54624, ΘΕΣΣΑΛΟΝΙΚΗΣ&lt;br /&gt;
| -&lt;br /&gt;
|&lt;br /&gt;
* 1 ✅&lt;br /&gt;
* 0 🟨&lt;br /&gt;
* 0 🟧&lt;br /&gt;
* 0 ❌&lt;br /&gt;
| -&lt;br /&gt;
|}&lt;/div&gt;</summary>
		<author><name>Goblinmoder</name></author>
	</entry>
	<entry>
		<id>https://wiki.diyon.top/index.php?title=Doctors&amp;diff=1021</id>
		<title>Doctors</title>
		<link rel="alternate" type="text/html" href="https://wiki.diyon.top/index.php?title=Doctors&amp;diff=1021"/>
		<updated>2025-09-07T12:49:29Z</updated>

		<summary type="html">&lt;p&gt;Goblinmoder: /* Ενδοκρινολόγοι */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{#seo:&lt;br /&gt;
|title_mode=replace&lt;br /&gt;
|title=Doctors&lt;br /&gt;
|description=List of doctors documented, most of which are from real life encounters, opinions are non-definitive.&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
== Ψυχίατροι ==&lt;br /&gt;
{| class=&amp;quot;wikitable sortable&amp;quot;&lt;br /&gt;
|+&lt;br /&gt;
!✅/🟨/🟧/❌&lt;br /&gt;
!Όνομα&lt;br /&gt;
!Περιοχή&lt;br /&gt;
!Δημόσιο/Ιδιωτικό&lt;br /&gt;
!Επικοινωνία&lt;br /&gt;
!Τιμή&lt;br /&gt;
!Οδός&lt;br /&gt;
!Διαδικτυακά&lt;br /&gt;
!Κριτικές&lt;br /&gt;
!Σημειώσεις&lt;br /&gt;
|-&lt;br /&gt;
|✅&lt;br /&gt;
|Καρατζαφέρης Λυκούργος&lt;br /&gt;
|Αθήνα / Διαδικτυακά&lt;br /&gt;
|Ιδιωτικό&lt;br /&gt;
|Σταθερό: 2177207765&lt;br /&gt;
Τηλέφωνο: 6944302577&lt;br /&gt;
|30-70 ευρώ, 1-2 συνεδρίες για γνωμάτευση.&lt;br /&gt;
|Αμφιτρύωνος 78, Αττική, 11853.&lt;br /&gt;
|Κάνει και online αλλά προτιμάει irl.&lt;br /&gt;
|&lt;br /&gt;
* 2 ✅&lt;br /&gt;
* 0 🟨&lt;br /&gt;
* 0 🟧&lt;br /&gt;
* 0 ❌&lt;br /&gt;
| -&lt;br /&gt;
|-&lt;br /&gt;
|✅&lt;br /&gt;
|Μαρία Αναστασάκη&lt;br /&gt;
|Ηράκλειο / Διαδικτυακά&lt;br /&gt;
|Ιδιωτικό&lt;br /&gt;
|Σταθερό: 2810223940&lt;br /&gt;
Τηλέφωνο: 6980566188&lt;br /&gt;
&lt;br /&gt;
E-mail: [mailto:anastasakitherapy@gmail.com anastasakitherapy@gmail.com]&lt;br /&gt;
|40Ε ανα συνεδρία / 90Ε (γνωμάτευση)&lt;br /&gt;
|Λεωφόρος Ιωνίας 136, Ηράκλειο [Δήμος], Ηράκλειο, 71305&lt;br /&gt;
|Ναι.&lt;br /&gt;
|&lt;br /&gt;
* 2 ✅&lt;br /&gt;
* 1 🟨&lt;br /&gt;
* 0 🟧&lt;br /&gt;
* 0 ❌&lt;br /&gt;
| Μπορεί να είναι δύσκολη η επικοινωνία.&lt;br /&gt;
|-&lt;br /&gt;
|✅&lt;br /&gt;
|Κατερίνα Χαλκιαδάκη&lt;br /&gt;
|Ηράκλειο / Διαδικτυακά&lt;br /&gt;
|Ιδιωτικό&lt;br /&gt;
|Σταθερό: 2810223940&lt;br /&gt;
|40Ε ανα συνεδρία / 90Ε (γνωμάτευση)&lt;br /&gt;
|Λεωφόρος Ιωνίας 136, Ηράκλειο [Δήμος], Ηράκλειο, 71305&lt;br /&gt;
|Ναι.&lt;br /&gt;
|&lt;br /&gt;
* 1 ✅&lt;br /&gt;
* 0 🟨&lt;br /&gt;
* 0 🟧&lt;br /&gt;
* 0 ❌&lt;br /&gt;
|Συνάδελφος της Αναστασάκη.&lt;br /&gt;
|-&lt;br /&gt;
|✅&lt;br /&gt;
|Ελένη Ζαχάρη&lt;br /&gt;
|Αθήνα&lt;br /&gt;
|Ιδιωτικό&lt;br /&gt;
|Τηλέφωνο: 6942493053&lt;br /&gt;
|50-70€ το ραντεβού (γνωμάτευση σε 2 συνεδρίες)&lt;br /&gt;
|Χατζηκώστα 8Α, Πλατεία Μαβίλη, Αττική.&lt;br /&gt;
|Ναι.&lt;br /&gt;
|&lt;br /&gt;
* 1 ✅&lt;br /&gt;
* 0 🟨&lt;br /&gt;
* 0 🟧&lt;br /&gt;
* 0 ❌&lt;br /&gt;
| -&lt;br /&gt;
|-&lt;br /&gt;
|✅&lt;br /&gt;
|Γεωργιλαδάκης Ιωάννης&lt;br /&gt;
|Ηράκλειο&lt;br /&gt;
|Ιδιωτικό&lt;br /&gt;
|Σταθερό: 2107442019&lt;br /&gt;
|50€ το ραντεβού. (Στο [https://www.doctoranytime.gr/d/Psychiatros/georgiladakis-ioannis site]&amp;lt;nowiki&amp;gt; αναφέρεται το εξής: &amp;quot;Πιστοποιητικά/Βεβαιώσεις | Από 20€ έως 40€&amp;quot;)&amp;lt;/nowiki&amp;gt;&lt;br /&gt;
|Πλατεία Ρήγα Φεραίου 13, Ηράκλειο, Κρήτη.&lt;br /&gt;
|Λογικά όχι πια (writer&#039;s conclusion, citation needed)&lt;br /&gt;
|&lt;br /&gt;
* 1 ✅&lt;br /&gt;
* 0 🟨&lt;br /&gt;
* 0 🟧&lt;br /&gt;
* 0 ❌&lt;br /&gt;
| -&lt;br /&gt;
|-&lt;br /&gt;
|✅&lt;br /&gt;
|Πάγκαλος Γεώργιος&lt;br /&gt;
|Θεσσαλονίκη&lt;br /&gt;
|Ιδιωτικό&lt;br /&gt;
|Τηλέφωνο: 6933091536&lt;br /&gt;
|100€ ανα συνεδρία &lt;br /&gt;
|Καρόλου Ντηλ 25, 54623&lt;br /&gt;
|Ναι.&lt;br /&gt;
|&lt;br /&gt;
* 1 ✅&lt;br /&gt;
* 0 🟨&lt;br /&gt;
* 0 🟧&lt;br /&gt;
* 0 ❌&lt;br /&gt;
| -&lt;br /&gt;
|-&lt;br /&gt;
|🟨&lt;br /&gt;
|Δημήτρης Ξυλάς&lt;br /&gt;
|Θεσσαλονίκη&lt;br /&gt;
|Ιδιωτικό&lt;br /&gt;
|Σταθερό: 2310236236&lt;br /&gt;
|70€ αναγκαστικό ψυχομετρικό τεστ και 60€ η συνεδρία&lt;br /&gt;
|Εγνατία 70 &amp;amp; Χαλκέων 16, 546 24&lt;br /&gt;
| -&lt;br /&gt;
|&lt;br /&gt;
* 0 ✅&lt;br /&gt;
* 1 🟨&lt;br /&gt;
* 0 🟧&lt;br /&gt;
* 0 ❌&lt;br /&gt;
|Δεν είναι NB friendly.&lt;br /&gt;
|-&lt;br /&gt;
|🟨&lt;br /&gt;
|Σταυριανάκος Κυριάκος&lt;br /&gt;
|Αθήνα / Διαδικτυακά&lt;br /&gt;
|Ιδιωτικό&lt;br /&gt;
| Σταθερό: 2108064113&lt;br /&gt;
| 70€ ανα ραντεβού (επι 6 μήνες gatekeeping)&lt;br /&gt;
| Θησέως 15-17, Μαρούσι 151 24&lt;br /&gt;
| Ναι.&lt;br /&gt;
|&lt;br /&gt;
* 0 ✅&lt;br /&gt;
* 2 🟨&lt;br /&gt;
* 0 🟧&lt;br /&gt;
* 0 ❌&lt;br /&gt;
| Διάβασε καλά την τιμή.&lt;br /&gt;
|-&lt;br /&gt;
|🟧&lt;br /&gt;
|Μεταξάς Σπυρίδων&lt;br /&gt;
|Αθήνα&lt;br /&gt;
|Ιδιωτικό&lt;br /&gt;
|Σταθερό: 2107116438&lt;br /&gt;
|70 ευρώ με κάρτα, 60 ευρώ χωρίς.&lt;br /&gt;
|Ρόδου 17, Μαρούσι, Αττική.&lt;br /&gt;
|Όχι.&lt;br /&gt;
|&lt;br /&gt;
* 1 ✅&lt;br /&gt;
* 0 🟨&lt;br /&gt;
* 0 🟧&lt;br /&gt;
* 1 ❌&lt;br /&gt;
| Με MTF ήταν super friendly, ενώ με FTM το ακριβώς αντίθετο. &lt;br /&gt;
|-&lt;br /&gt;
|🟧 &lt;br /&gt;
|Σαρρηγιανίδης Αλέξιος&lt;br /&gt;
|Θεσσαλονίκη&lt;br /&gt;
|Δημόσιο&lt;br /&gt;
| -&lt;br /&gt;
| -&lt;br /&gt;
| Ιπποκράτειο Θεσσαλονίκης&lt;br /&gt;
| Όχι.&lt;br /&gt;
|&lt;br /&gt;
* 0 ✅&lt;br /&gt;
* 0 🟨&lt;br /&gt;
* 1 🟧&lt;br /&gt;
* 0 ❌&lt;br /&gt;
| Δεν είναι κακός απλώς προτείνει τον Πάγκαλο (δλ. πήγαινε κατ&#039; ευθείαν εκεί) και έπειτα τον &#039;&#039;Μπουφίδη&#039;&#039; (γι&#039; αυτό και είναι 🟧 και όχι 🟨/✅) &lt;br /&gt;
|-&lt;br /&gt;
|❌&lt;br /&gt;
|Φλούδας Γεώργιος&lt;br /&gt;
|Αθήνα&lt;br /&gt;
|Δημόσιο&lt;br /&gt;
|[[File:Floudaskeeper.jpg|thumb|172x172px]]&lt;br /&gt;
| [[File:Flouda.png|thumb|163x163px|courtesy of Αθανασιάδης Λουκάς]]&lt;br /&gt;
| [https://media.discordapp.net/attachments/785742455928520725/1290054603814993930/hgf.png?ex=66fb1079&amp;amp;is=66f9bef9&amp;amp;hm=0441ce6ca9438130027d61078d2b76bc9abaa83ad99e97e7718a05554e2221f3&amp;amp;=&amp;amp;format=webp&amp;amp;quality=lossless&amp;amp;width=687&amp;amp;height=305 206]&lt;br /&gt;
| Όχι.&lt;br /&gt;
|&lt;br /&gt;
* 1 ✅&lt;br /&gt;
* 1 🟨&lt;br /&gt;
* 0 🟧&lt;br /&gt;
* 6 ❌&lt;br /&gt;
|Ο βασιλιάς του Gatekeeping, zero tolenace στο diy.&lt;br /&gt;
|-&lt;br /&gt;
|❌&lt;br /&gt;
|Απαζίδου Παρθένα&lt;br /&gt;
|Θεσσαλονίκη&lt;br /&gt;
|Δημόσιο&lt;br /&gt;
| -&lt;br /&gt;
| -&lt;br /&gt;
| Νοσοκομείο Αφροδισίων  &amp;amp; Δερματικών Νόσων Θεσσαλονίκης (παράρτημα Ιπποκράτειου στην Δελφών 124)&lt;br /&gt;
| Όχι.&lt;br /&gt;
|&lt;br /&gt;
* 0 ✅&lt;br /&gt;
* 0 🟨&lt;br /&gt;
* 0 🟧&lt;br /&gt;
* 1 ❌&lt;br /&gt;
|Δεν γνωρίζει απο &amp;quot;τρανς θέματα&amp;quot;.&lt;br /&gt;
|-&lt;br /&gt;
|❌ &lt;br /&gt;
|Λουκάς Αθανασιάδης&lt;br /&gt;
|Θεσσαλονίκη&lt;br /&gt;
|Δημόσιο&lt;br /&gt;
| -&lt;br /&gt;
| -&lt;br /&gt;
| -&lt;br /&gt;
| Όχι.&lt;br /&gt;
|&lt;br /&gt;
* 0 ✅&lt;br /&gt;
* 0 🟨&lt;br /&gt;
* 0 🟧&lt;br /&gt;
* 3 ❌&lt;br /&gt;
|Gatekeeping, zero tolenace στο diy, σπατάλη 2+ χρόνων.&lt;br /&gt;
|-&lt;br /&gt;
|❌&lt;br /&gt;
|Μπουφίδης Σταύρος&lt;br /&gt;
|Θεσσαλονίκη&lt;br /&gt;
|Ιδιωτικό&lt;br /&gt;
|Σταθερό: 2310253793&lt;br /&gt;
|&amp;quot;100€ μετρητά, 80€ κά- α όχι, συγνώμη, 80€ μέτρητα. 100€ κάρτα&amp;quot;&lt;br /&gt;
|Ερμού 36, Θεσσαλονίκη, 54623&lt;br /&gt;
|Όχι.&lt;br /&gt;
|&lt;br /&gt;
* 0 ✅&lt;br /&gt;
* 0 🟨&lt;br /&gt;
* 0 🟧&lt;br /&gt;
* 2 ❌&lt;br /&gt;
|Αν σ&#039; αρέσει να πληρώνεις για να σε κάνουν gatekeep, είναι τέλειος.&lt;br /&gt;
|-&lt;br /&gt;
|❌&lt;br /&gt;
|Καλλιόπη Προκοπάκη&lt;br /&gt;
|Αθήνα&lt;br /&gt;
|Ιδιωτικό&lt;br /&gt;
| -&lt;br /&gt;
| -&lt;br /&gt;
| -&lt;br /&gt;
| -&lt;br /&gt;
|&lt;br /&gt;
* 0 ✅&lt;br /&gt;
* 0 🟨&lt;br /&gt;
* 0 🟧&lt;br /&gt;
* 1 ❌&lt;br /&gt;
|Είναι κατά τον γάμο ομόφυλων ζευγαριών.&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== Ψυχολόγοι ==&lt;br /&gt;
{| class=&amp;quot;wikitable sortable&amp;quot;&lt;br /&gt;
|+&lt;br /&gt;
!✅/🟨/🟧/❌&lt;br /&gt;
!Όνομα&lt;br /&gt;
!Περιοχή&lt;br /&gt;
!Δημόσιο/Ιδιωτικό&lt;br /&gt;
!Επικοινωνία&lt;br /&gt;
!Τιμή&lt;br /&gt;
!Οδός&lt;br /&gt;
!Διαδικτυακά&lt;br /&gt;
!Κριτικές&lt;br /&gt;
!Σημειώσεις&lt;br /&gt;
|-&lt;br /&gt;
|✅&lt;br /&gt;
|Γεωργία Καμπόλη&lt;br /&gt;
|Άνω Λιόσια / Διαδικτυακά&lt;br /&gt;
|Ιδιωτικό&lt;br /&gt;
| Τηλέφωνο: 6931170170 &lt;br /&gt;
Email: geokaboli@gmail.com &lt;br /&gt;
&lt;br /&gt;
Email (στην ιστοσελίδα): info@kabolipsychologist.gr&lt;br /&gt;
| -&lt;br /&gt;
| Οδ. Ελύτη 2, Άνω Λιόσια 133 41&lt;br /&gt;
| Ναι.&lt;br /&gt;
|&lt;br /&gt;
* 1 ✅&lt;br /&gt;
* 0 🟨&lt;br /&gt;
* 0 🟧&lt;br /&gt;
* 0 ❌&lt;br /&gt;
| -&lt;br /&gt;
|-&lt;br /&gt;
|❌&lt;br /&gt;
|Γιαντσίδου Βασιλική&lt;br /&gt;
|Ορεστιάδα&lt;br /&gt;
|Ιδιωτικό&lt;br /&gt;
| -&lt;br /&gt;
| -&lt;br /&gt;
| -&lt;br /&gt;
| -&lt;br /&gt;
| -&lt;br /&gt;
| Στον κώλο της μαϊμούς, δεν θα βγάλεις άκρη, why bother?&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== Παιδοψυχίατροι ==&lt;br /&gt;
{| class=&amp;quot;wikitable sortable&amp;quot;&lt;br /&gt;
|+&lt;br /&gt;
!✅/🟨/🟧/❌&lt;br /&gt;
!Όνομα&lt;br /&gt;
!Περιοχή&lt;br /&gt;
!Δημόσιο/Ιδιωτικό&lt;br /&gt;
!Επικοινωνία&lt;br /&gt;
!Τιμή&lt;br /&gt;
!Οδός&lt;br /&gt;
!Διαδικτυακά&lt;br /&gt;
!Κριτικές&lt;br /&gt;
!Σημειώσεις&lt;br /&gt;
|-&lt;br /&gt;
|❌&lt;br /&gt;
|Στέλλα/Στυλιανή Βαγιωνά&lt;br /&gt;
|Θεσσαλονίκη&lt;br /&gt;
|Ιδιωτικό&lt;br /&gt;
| -&lt;br /&gt;
|70€ (χωρίς απόδειξη)&lt;br /&gt;
| -&lt;br /&gt;
| -&lt;br /&gt;
|&lt;br /&gt;
* 0 ✅&lt;br /&gt;
* 0 🟨&lt;br /&gt;
* 0 🟧&lt;br /&gt;
* 1 ❌&lt;br /&gt;
| -&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== Ενδοκρινολόγοι ==&lt;br /&gt;
{| class=&amp;quot;wikitable sortable&amp;quot;&lt;br /&gt;
|+&lt;br /&gt;
!✅/🟨/🟧/❌&lt;br /&gt;
!Όνομα&lt;br /&gt;
!Περιοχή&lt;br /&gt;
!Δημόσιο/Ιδιωτικό&lt;br /&gt;
!Επικοινωνία&lt;br /&gt;
!Τιμή&lt;br /&gt;
!Οδός&lt;br /&gt;
!Διαδικτυακά&lt;br /&gt;
!Κριτικές&lt;br /&gt;
!Σημειώσεις&lt;br /&gt;
|-&lt;br /&gt;
|✅&lt;br /&gt;
|Γιουλάντα Πέτκοβα&lt;br /&gt;
|Ρέθυμνο&lt;br /&gt;
|Ιδιωτικό&lt;br /&gt;
|Σταθερό:&lt;br /&gt;
2831053220&lt;br /&gt;
|(?)&lt;br /&gt;
|Δημητρακάκη Σ. 31, Ρέθυμνο 741 32&lt;br /&gt;
| -&lt;br /&gt;
|&lt;br /&gt;
*1 ✅&lt;br /&gt;
* 0 🟨&lt;br /&gt;
* 0 🟧&lt;br /&gt;
* 0 ❌&lt;br /&gt;
| - Ενδεχομένως να θέλει χαρτί για συνταγογράφηση, &#039;&#039;&#039;για αιματολογικές&#039;&#039;&#039; δεν έχει ζητήσει.&lt;br /&gt;
|-&lt;br /&gt;
|🟨&lt;br /&gt;
|Κούκκου Ευτυχία&lt;br /&gt;
|Αθήνα&lt;br /&gt;
|Δημόσιο&lt;br /&gt;
| -&lt;br /&gt;
| -&lt;br /&gt;
| Γ.Ν. Έλενα Βενιζέλου, Αθήνα 115 21&lt;br /&gt;
| Όχι.&lt;br /&gt;
|&lt;br /&gt;
* 4 ✅&lt;br /&gt;
* 0 🟨&lt;br /&gt;
* 1 🟧&lt;br /&gt;
* 1 ❌&lt;br /&gt;
| - Θέλει διάγνωση. &lt;br /&gt;
- Κάνει περίεργο misgendering μερικές φορές.&lt;br /&gt;
|-&lt;br /&gt;
|✅&lt;br /&gt;
|Θεώδορος Θωμάς&lt;br /&gt;
|Αθήνα&lt;br /&gt;
|Ιδιωτικό&lt;br /&gt;
| Σταθερό: 2106436115&lt;br /&gt;
| 80-100€ η συνεδρία&lt;br /&gt;
| Λεωφ. Κηφισίας 5, 115 23 Αμπελόκηποι, Αθήνα&lt;br /&gt;
| -&lt;br /&gt;
|&lt;br /&gt;
* 5 ✅&lt;br /&gt;
* 1 🟨&lt;br /&gt;
* 0 🟧&lt;br /&gt;
* 0 ❌&lt;br /&gt;
| - Θέλει διάγνωση. &lt;br /&gt;
- Έχει γράψει &#039;&#039;&#039;50mg androcur&#039;&#039;&#039; ανά &#039;&#039;&#039;μέρα&#039;&#039;&#039;. Παρ&#039; όλα αυτά δεν έχει υπάρξει άλλο περιστατικό σαν αυτό, οπότε &#039;&#039;&#039;δεν είναι fully conclusive&#039;&#039;&#039; το &amp;quot;Έγραψε παράξενη δοσολογία μια φορά σε μια κοπέλα.&amp;quot; &lt;br /&gt;
|-&lt;br /&gt;
|✅&lt;br /&gt;
|Σκαράκης Νικήτας&lt;br /&gt;
|Αθήνα&lt;br /&gt;
|Ιδιωτικό&lt;br /&gt;
| Σταθερό:  2107117965&lt;br /&gt;
| 50€ η συνεδρία&lt;br /&gt;
| Κυκλαμίνων 7 (Περιοχή Αγίου Ιεροθέου), Περιστέρι, Αττική&lt;br /&gt;
| Ναι. (60€ η συνεδρία)&lt;br /&gt;
|&lt;br /&gt;
* 1 ✅&lt;br /&gt;
* 0 🟨&lt;br /&gt;
* 0 🟧&lt;br /&gt;
* 0 ❌&lt;br /&gt;
| - Θέλει διάγνωση.&lt;br /&gt;
|-&lt;br /&gt;
|✅&lt;br /&gt;
|Στέργιος Κιούρας&lt;br /&gt;
|Θεσσαλονίκη&lt;br /&gt;
|Ιδιωτικό&lt;br /&gt;
| Σταθερό: 2310256498&lt;br /&gt;
| 50€ η συνεδρία&lt;br /&gt;
| Ερμού 36, Θεσσαλονίκη 546 23&lt;br /&gt;
| -&lt;br /&gt;
|&lt;br /&gt;
* 1 ✅&lt;br /&gt;
* 0 🟨&lt;br /&gt;
* 0 🟧&lt;br /&gt;
* 0 ❌&lt;br /&gt;
| - &#039;&#039;&#039;Δεν ζήτησε&#039;&#039;&#039; διάγνωση.&lt;br /&gt;
|-&lt;br /&gt;
|🟨&lt;br /&gt;
|Θεμιστοκλής Καλτσάς&lt;br /&gt;
|Θεσσαλονίκη&lt;br /&gt;
|Ιδιωτικό&lt;br /&gt;
| Σταθερό: 2310238719&lt;br /&gt;
| 50€ η συνεδρία&lt;br /&gt;
| Παλαιών Πατρών Γερμανού 21, Θεσσαλονίκη&lt;br /&gt;
| -&lt;br /&gt;
|&lt;br /&gt;
* 1 ✅&lt;br /&gt;
* 1 🟨&lt;br /&gt;
* 0 🟧&lt;br /&gt;
* 0 ❌&lt;br /&gt;
| - Δεν έχει θέμα με DIY, &#039;&#039;&#039;δεν ζήτησε άμεσα&#039;&#039;&#039; διάγνωση, αλλά &#039;&#039;&#039;την θέλει&#039;&#039;&#039; γενικότερα (δλ. αν δεν έχεις θα στη ζητήσει μελλοντικά μεσω e-mail)&lt;br /&gt;
- Έχει θέμα με τα &amp;quot;υψηλά&amp;quot; επίπεδα (π.χ. κανονικά pg/ml e2 στην μονοθεραπεία με injections είναι περίεργα γι&#039; αυτόν)&lt;br /&gt;
- Ζητάει διάγνωση στα άτομα που δεν λαμβάνουν DIY HRT.&lt;br /&gt;
- Ημι-συχνό misgendering.&lt;br /&gt;
|-&lt;br /&gt;
|✅&lt;br /&gt;
|Παναγιώτης Μ. Μπουντούρης&lt;br /&gt;
|Σύρος&lt;br /&gt;
|Ιδιωτικό&lt;br /&gt;
|Σταθερό: 2281082030&lt;br /&gt;
Κινητό: 6946545831&lt;br /&gt;
|30€ η πρώτη συνεδρία&lt;br /&gt;
10€ η συνταγή&lt;br /&gt;
|Κλεισθένους 15, Ερμούπολη, 84100, Κυκλάδων&lt;br /&gt;
| -&lt;br /&gt;
|&lt;br /&gt;
* 1 ✅&lt;br /&gt;
* 0 🟨&lt;br /&gt;
* 0 🟧&lt;br /&gt;
* 0 ❌&lt;br /&gt;
| -&lt;br /&gt;
|-&lt;br /&gt;
|🟨&lt;br /&gt;
|Κωνσταντίνος Α. Τούλης&lt;br /&gt;
|Θεσσαλονίκη&lt;br /&gt;
|Ιδιωτικό&lt;br /&gt;
|Τηλέφωνο: 2310222799&lt;br /&gt;
|50€ η συνεδρία&lt;br /&gt;
|Μητροπόλεως 73, Θεσσαλονίκη 546 22&lt;br /&gt;
| -&lt;br /&gt;
|&lt;br /&gt;
* 0 ✅&lt;br /&gt;
* 1 🟨&lt;br /&gt;
* 0 🟧&lt;br /&gt;
* 0 ❌&lt;br /&gt;
| - Θέλει διάγνωση.&lt;br /&gt;
|-&lt;br /&gt;
|🟨&lt;br /&gt;
|Γεώργιος Α. Κανάκης&lt;br /&gt;
|Αθήνα&lt;br /&gt;
|Ιδιωτικό&lt;br /&gt;
|Σταθερό: 2107709248&lt;br /&gt;
|&amp;lt;!-- we don&#039;t even fucking know --&amp;gt;&lt;br /&gt;
|Τσόχα 15-17, Αμπελόκηποι &lt;br /&gt;
| -&lt;br /&gt;
| -&lt;br /&gt;
| - Έχει ακουστεί πως έχει παραβιάσει την ανωνυμία δεδομένων.&lt;br /&gt;
|-&lt;br /&gt;
|❌&lt;br /&gt;
|Πουλάκος Πάυλος&lt;br /&gt;
|Θεσσαλονίκη&lt;br /&gt;
|Ιδιωτικό&lt;br /&gt;
|Σταθερό: 2105579147&lt;br /&gt;
|50€ η συνεδρία &lt;br /&gt;
|Τσιμισκή Ιωάννη 69, Αγία Σοφία, 546 22&lt;br /&gt;
| -&lt;br /&gt;
|&lt;br /&gt;
* 0 ✅&lt;br /&gt;
* 0 🟨&lt;br /&gt;
* 0 🟧&lt;br /&gt;
* 1 ❌&lt;br /&gt;
| - 100mg cypro ανά μέρα χωρίς προειδοποίηση στο cyclacur για τα πορτοκαλί/καφέ χάπια (πολύ κακό)&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== Δερματολόγοι/Αφροδισιολόγοι/Laser Κλινικές ==&lt;br /&gt;
{| class=&amp;quot;wikitable sortable&amp;quot;&lt;br /&gt;
|+&lt;br /&gt;
!✅/🟨/🟧/❌&lt;br /&gt;
!Όνομα&lt;br /&gt;
!Περιοχή&lt;br /&gt;
!Είδος&lt;br /&gt;
!Δημόσιο/Ιδιωτικό&lt;br /&gt;
!Επικοινωνία&lt;br /&gt;
!Τιμή&lt;br /&gt;
!Διαδικτυακά&lt;br /&gt;
!Κριτικές&lt;br /&gt;
!Σημειώσεις&lt;br /&gt;
|-&lt;br /&gt;
|❌&lt;br /&gt;
|Ζαχαρίας Ι. Ανδρεαδάκης&lt;br /&gt;
|Αθήνα&lt;br /&gt;
|Δερματολόγος/Αφροδισιολόγος/Laser&lt;br /&gt;
|Ιδιωτικό&lt;br /&gt;
| -&lt;br /&gt;
| -&lt;br /&gt;
| -&lt;br /&gt;
|&lt;br /&gt;
* 0 ✅&lt;br /&gt;
* 0 🟨&lt;br /&gt;
* 0 🟧&lt;br /&gt;
* 1 ❌&lt;br /&gt;
| -&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== Χειρούργοι ==&lt;br /&gt;
{| class=&amp;quot;wikitable sortable&amp;quot;&lt;br /&gt;
|+&lt;br /&gt;
!✅/🟨/🟧/❌&lt;br /&gt;
!Όνομα&lt;br /&gt;
!Περιοχή&lt;br /&gt;
!Δημόσιο/Ιδιωτικό&lt;br /&gt;
!Επικοινωνία&lt;br /&gt;
!Τιμή&lt;br /&gt;
!Οδός&lt;br /&gt;
!Διαδικτυακά&lt;br /&gt;
!Κριτικές&lt;br /&gt;
!Σημειώσεις&lt;br /&gt;
|-&lt;br /&gt;
|✅&lt;br /&gt;
|Ηλίας Μεξής&lt;br /&gt;
|Αθήνα&lt;br /&gt;
|Ιδιωτικό&lt;br /&gt;
| Σταθερό: 2114068315&lt;br /&gt;
| Top surgery ~3000€&lt;br /&gt;
|Αγ. Θεοδώρων 10, 14562 Κηφισιά&lt;br /&gt;
| -&lt;br /&gt;
|&lt;br /&gt;
* 1 ✅&lt;br /&gt;
* 0 🟨&lt;br /&gt;
* 0 🟧&lt;br /&gt;
* 0 ❌&lt;br /&gt;
| - Δεν ζητάει γνωμάτευση.&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== Δικηγόροι ==&lt;br /&gt;
{| class=&amp;quot;wikitable sortable&amp;quot;&lt;br /&gt;
|+&lt;br /&gt;
!✅/🟨/🟧/❌&lt;br /&gt;
!Όνομα&lt;br /&gt;
!Περιοχή&lt;br /&gt;
!Δημόσιο/Ιδιωτικό&lt;br /&gt;
!Επικοινωνία&lt;br /&gt;
!Τιμή&lt;br /&gt;
!Οδός&lt;br /&gt;
!Διαδικτυακά&lt;br /&gt;
!Κριτικές&lt;br /&gt;
!Σημειώσεις&lt;br /&gt;
|-&lt;br /&gt;
|✅&lt;br /&gt;
|Αθηνά Καλογρίδη&lt;br /&gt;
|Θεσσαλονίκη&lt;br /&gt;
|Ιδιωτικό&lt;br /&gt;
| Σταθερό: 2310220704&lt;br /&gt;
| 125€ αίτηση&lt;br /&gt;
125€ δικαστήριο&lt;br /&gt;
43€ εισαγγελέας&lt;br /&gt;
| Κομνηνών 20, Θεσσαλονίκη, 54624, ΘΕΣΣΑΛΟΝΙΚΗΣ&lt;br /&gt;
| -&lt;br /&gt;
|&lt;br /&gt;
* 1 ✅&lt;br /&gt;
* 0 🟨&lt;br /&gt;
* 0 🟧&lt;br /&gt;
* 0 ❌&lt;br /&gt;
| -&lt;br /&gt;
|}&lt;/div&gt;</summary>
		<author><name>Goblinmoder</name></author>
	</entry>
	<entry>
		<id>https://wiki.diyon.top/index.php?title=Doctors&amp;diff=1020</id>
		<title>Doctors</title>
		<link rel="alternate" type="text/html" href="https://wiki.diyon.top/index.php?title=Doctors&amp;diff=1020"/>
		<updated>2025-09-07T12:48:41Z</updated>

		<summary type="html">&lt;p&gt;Goblinmoder: fixed 2 Περιοχή fields and added petkova&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{#seo:&lt;br /&gt;
|title_mode=replace&lt;br /&gt;
|title=Doctors&lt;br /&gt;
|description=List of doctors documented, most of which are from real life encounters, opinions are non-definitive.&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
== Ψυχίατροι ==&lt;br /&gt;
{| class=&amp;quot;wikitable sortable&amp;quot;&lt;br /&gt;
|+&lt;br /&gt;
!✅/🟨/🟧/❌&lt;br /&gt;
!Όνομα&lt;br /&gt;
!Περιοχή&lt;br /&gt;
!Δημόσιο/Ιδιωτικό&lt;br /&gt;
!Επικοινωνία&lt;br /&gt;
!Τιμή&lt;br /&gt;
!Οδός&lt;br /&gt;
!Διαδικτυακά&lt;br /&gt;
!Κριτικές&lt;br /&gt;
!Σημειώσεις&lt;br /&gt;
|-&lt;br /&gt;
|✅&lt;br /&gt;
|Καρατζαφέρης Λυκούργος&lt;br /&gt;
|Αθήνα / Διαδικτυακά&lt;br /&gt;
|Ιδιωτικό&lt;br /&gt;
|Σταθερό: 2177207765&lt;br /&gt;
Τηλέφωνο: 6944302577&lt;br /&gt;
|30-70 ευρώ, 1-2 συνεδρίες για γνωμάτευση.&lt;br /&gt;
|Αμφιτρύωνος 78, Αττική, 11853.&lt;br /&gt;
|Κάνει και online αλλά προτιμάει irl.&lt;br /&gt;
|&lt;br /&gt;
* 2 ✅&lt;br /&gt;
* 0 🟨&lt;br /&gt;
* 0 🟧&lt;br /&gt;
* 0 ❌&lt;br /&gt;
| -&lt;br /&gt;
|-&lt;br /&gt;
|✅&lt;br /&gt;
|Μαρία Αναστασάκη&lt;br /&gt;
|Ηράκλειο / Διαδικτυακά&lt;br /&gt;
|Ιδιωτικό&lt;br /&gt;
|Σταθερό: 2810223940&lt;br /&gt;
Τηλέφωνο: 6980566188&lt;br /&gt;
&lt;br /&gt;
E-mail: [mailto:anastasakitherapy@gmail.com anastasakitherapy@gmail.com]&lt;br /&gt;
|40Ε ανα συνεδρία / 90Ε (γνωμάτευση)&lt;br /&gt;
|Λεωφόρος Ιωνίας 136, Ηράκλειο [Δήμος], Ηράκλειο, 71305&lt;br /&gt;
|Ναι.&lt;br /&gt;
|&lt;br /&gt;
* 2 ✅&lt;br /&gt;
* 1 🟨&lt;br /&gt;
* 0 🟧&lt;br /&gt;
* 0 ❌&lt;br /&gt;
| Μπορεί να είναι δύσκολη η επικοινωνία.&lt;br /&gt;
|-&lt;br /&gt;
|✅&lt;br /&gt;
|Κατερίνα Χαλκιαδάκη&lt;br /&gt;
|Ηράκλειο / Διαδικτυακά&lt;br /&gt;
|Ιδιωτικό&lt;br /&gt;
|Σταθερό: 2810223940&lt;br /&gt;
|40Ε ανα συνεδρία / 90Ε (γνωμάτευση)&lt;br /&gt;
|Λεωφόρος Ιωνίας 136, Ηράκλειο [Δήμος], Ηράκλειο, 71305&lt;br /&gt;
|Ναι.&lt;br /&gt;
|&lt;br /&gt;
* 1 ✅&lt;br /&gt;
* 0 🟨&lt;br /&gt;
* 0 🟧&lt;br /&gt;
* 0 ❌&lt;br /&gt;
|Συνάδελφος της Αναστασάκη.&lt;br /&gt;
|-&lt;br /&gt;
|✅&lt;br /&gt;
|Ελένη Ζαχάρη&lt;br /&gt;
|Αθήνα&lt;br /&gt;
|Ιδιωτικό&lt;br /&gt;
|Τηλέφωνο: 6942493053&lt;br /&gt;
|50-70€ το ραντεβού (γνωμάτευση σε 2 συνεδρίες)&lt;br /&gt;
|Χατζηκώστα 8Α, Πλατεία Μαβίλη, Αττική.&lt;br /&gt;
|Ναι.&lt;br /&gt;
|&lt;br /&gt;
* 1 ✅&lt;br /&gt;
* 0 🟨&lt;br /&gt;
* 0 🟧&lt;br /&gt;
* 0 ❌&lt;br /&gt;
| -&lt;br /&gt;
|-&lt;br /&gt;
|✅&lt;br /&gt;
|Γεωργιλαδάκης Ιωάννης&lt;br /&gt;
|Ηράκλειο&lt;br /&gt;
|Ιδιωτικό&lt;br /&gt;
|Σταθερό: 2107442019&lt;br /&gt;
|50€ το ραντεβού. (Στο [https://www.doctoranytime.gr/d/Psychiatros/georgiladakis-ioannis site]&amp;lt;nowiki&amp;gt; αναφέρεται το εξής: &amp;quot;Πιστοποιητικά/Βεβαιώσεις | Από 20€ έως 40€&amp;quot;)&amp;lt;/nowiki&amp;gt;&lt;br /&gt;
|Πλατεία Ρήγα Φεραίου 13, Ηράκλειο, Κρήτη.&lt;br /&gt;
|Λογικά όχι πια (writer&#039;s conclusion, citation needed)&lt;br /&gt;
|&lt;br /&gt;
* 1 ✅&lt;br /&gt;
* 0 🟨&lt;br /&gt;
* 0 🟧&lt;br /&gt;
* 0 ❌&lt;br /&gt;
| -&lt;br /&gt;
|-&lt;br /&gt;
|✅&lt;br /&gt;
|Πάγκαλος Γεώργιος&lt;br /&gt;
|Θεσσαλονίκη&lt;br /&gt;
|Ιδιωτικό&lt;br /&gt;
|Τηλέφωνο: 6933091536&lt;br /&gt;
|100€ ανα συνεδρία &lt;br /&gt;
|Καρόλου Ντηλ 25, 54623&lt;br /&gt;
|Ναι.&lt;br /&gt;
|&lt;br /&gt;
* 1 ✅&lt;br /&gt;
* 0 🟨&lt;br /&gt;
* 0 🟧&lt;br /&gt;
* 0 ❌&lt;br /&gt;
| -&lt;br /&gt;
|-&lt;br /&gt;
|🟨&lt;br /&gt;
|Δημήτρης Ξυλάς&lt;br /&gt;
|Θεσσαλονίκη&lt;br /&gt;
|Ιδιωτικό&lt;br /&gt;
|Σταθερό: 2310236236&lt;br /&gt;
|70€ αναγκαστικό ψυχομετρικό τεστ και 60€ η συνεδρία&lt;br /&gt;
|Εγνατία 70 &amp;amp; Χαλκέων 16, 546 24&lt;br /&gt;
| -&lt;br /&gt;
|&lt;br /&gt;
* 0 ✅&lt;br /&gt;
* 1 🟨&lt;br /&gt;
* 0 🟧&lt;br /&gt;
* 0 ❌&lt;br /&gt;
|Δεν είναι NB friendly.&lt;br /&gt;
|-&lt;br /&gt;
|🟨&lt;br /&gt;
|Σταυριανάκος Κυριάκος&lt;br /&gt;
|Αθήνα / Διαδικτυακά&lt;br /&gt;
|Ιδιωτικό&lt;br /&gt;
| Σταθερό: 2108064113&lt;br /&gt;
| 70€ ανα ραντεβού (επι 6 μήνες gatekeeping)&lt;br /&gt;
| Θησέως 15-17, Μαρούσι 151 24&lt;br /&gt;
| Ναι.&lt;br /&gt;
|&lt;br /&gt;
* 0 ✅&lt;br /&gt;
* 2 🟨&lt;br /&gt;
* 0 🟧&lt;br /&gt;
* 0 ❌&lt;br /&gt;
| Διάβασε καλά την τιμή.&lt;br /&gt;
|-&lt;br /&gt;
|🟧&lt;br /&gt;
|Μεταξάς Σπυρίδων&lt;br /&gt;
|Αθήνα&lt;br /&gt;
|Ιδιωτικό&lt;br /&gt;
|Σταθερό: 2107116438&lt;br /&gt;
|70 ευρώ με κάρτα, 60 ευρώ χωρίς.&lt;br /&gt;
|Ρόδου 17, Μαρούσι, Αττική.&lt;br /&gt;
|Όχι.&lt;br /&gt;
|&lt;br /&gt;
* 1 ✅&lt;br /&gt;
* 0 🟨&lt;br /&gt;
* 0 🟧&lt;br /&gt;
* 1 ❌&lt;br /&gt;
| Με MTF ήταν super friendly, ενώ με FTM το ακριβώς αντίθετο. &lt;br /&gt;
|-&lt;br /&gt;
|🟧 &lt;br /&gt;
|Σαρρηγιανίδης Αλέξιος&lt;br /&gt;
|Θεσσαλονίκη&lt;br /&gt;
|Δημόσιο&lt;br /&gt;
| -&lt;br /&gt;
| -&lt;br /&gt;
| Ιπποκράτειο Θεσσαλονίκης&lt;br /&gt;
| Όχι.&lt;br /&gt;
|&lt;br /&gt;
* 0 ✅&lt;br /&gt;
* 0 🟨&lt;br /&gt;
* 1 🟧&lt;br /&gt;
* 0 ❌&lt;br /&gt;
| Δεν είναι κακός απλώς προτείνει τον Πάγκαλο (δλ. πήγαινε κατ&#039; ευθείαν εκεί) και έπειτα τον &#039;&#039;Μπουφίδη&#039;&#039; (γι&#039; αυτό και είναι 🟧 και όχι 🟨/✅) &lt;br /&gt;
|-&lt;br /&gt;
|❌&lt;br /&gt;
|Φλούδας Γεώργιος&lt;br /&gt;
|Αθήνα&lt;br /&gt;
|Δημόσιο&lt;br /&gt;
|[[File:Floudaskeeper.jpg|thumb|172x172px]]&lt;br /&gt;
| [[File:Flouda.png|thumb|163x163px|courtesy of Αθανασιάδης Λουκάς]]&lt;br /&gt;
| [https://media.discordapp.net/attachments/785742455928520725/1290054603814993930/hgf.png?ex=66fb1079&amp;amp;is=66f9bef9&amp;amp;hm=0441ce6ca9438130027d61078d2b76bc9abaa83ad99e97e7718a05554e2221f3&amp;amp;=&amp;amp;format=webp&amp;amp;quality=lossless&amp;amp;width=687&amp;amp;height=305 206]&lt;br /&gt;
| Όχι.&lt;br /&gt;
|&lt;br /&gt;
* 1 ✅&lt;br /&gt;
* 1 🟨&lt;br /&gt;
* 0 🟧&lt;br /&gt;
* 6 ❌&lt;br /&gt;
|Ο βασιλιάς του Gatekeeping, zero tolenace στο diy.&lt;br /&gt;
|-&lt;br /&gt;
|❌&lt;br /&gt;
|Απαζίδου Παρθένα&lt;br /&gt;
|Θεσσαλονίκη&lt;br /&gt;
|Δημόσιο&lt;br /&gt;
| -&lt;br /&gt;
| -&lt;br /&gt;
| Νοσοκομείο Αφροδισίων  &amp;amp; Δερματικών Νόσων Θεσσαλονίκης (παράρτημα Ιπποκράτειου στην Δελφών 124)&lt;br /&gt;
| Όχι.&lt;br /&gt;
|&lt;br /&gt;
* 0 ✅&lt;br /&gt;
* 0 🟨&lt;br /&gt;
* 0 🟧&lt;br /&gt;
* 1 ❌&lt;br /&gt;
|Δεν γνωρίζει απο &amp;quot;τρανς θέματα&amp;quot;.&lt;br /&gt;
|-&lt;br /&gt;
|❌ &lt;br /&gt;
|Λουκάς Αθανασιάδης&lt;br /&gt;
|Θεσσαλονίκη&lt;br /&gt;
|Δημόσιο&lt;br /&gt;
| -&lt;br /&gt;
| -&lt;br /&gt;
| -&lt;br /&gt;
| Όχι.&lt;br /&gt;
|&lt;br /&gt;
* 0 ✅&lt;br /&gt;
* 0 🟨&lt;br /&gt;
* 0 🟧&lt;br /&gt;
* 3 ❌&lt;br /&gt;
|Gatekeeping, zero tolenace στο diy, σπατάλη 2+ χρόνων.&lt;br /&gt;
|-&lt;br /&gt;
|❌&lt;br /&gt;
|Μπουφίδης Σταύρος&lt;br /&gt;
|Θεσσαλονίκη&lt;br /&gt;
|Ιδιωτικό&lt;br /&gt;
|Σταθερό: 2310253793&lt;br /&gt;
|&amp;quot;100€ μετρητά, 80€ κά- α όχι, συγνώμη, 80€ μέτρητα. 100€ κάρτα&amp;quot;&lt;br /&gt;
|Ερμού 36, Θεσσαλονίκη, 54623&lt;br /&gt;
|Όχι.&lt;br /&gt;
|&lt;br /&gt;
* 0 ✅&lt;br /&gt;
* 0 🟨&lt;br /&gt;
* 0 🟧&lt;br /&gt;
* 2 ❌&lt;br /&gt;
|Αν σ&#039; αρέσει να πληρώνεις για να σε κάνουν gatekeep, είναι τέλειος.&lt;br /&gt;
|-&lt;br /&gt;
|❌&lt;br /&gt;
|Καλλιόπη Προκοπάκη&lt;br /&gt;
|Αθήνα&lt;br /&gt;
|Ιδιωτικό&lt;br /&gt;
| -&lt;br /&gt;
| -&lt;br /&gt;
| -&lt;br /&gt;
| -&lt;br /&gt;
|&lt;br /&gt;
* 0 ✅&lt;br /&gt;
* 0 🟨&lt;br /&gt;
* 0 🟧&lt;br /&gt;
* 1 ❌&lt;br /&gt;
|Είναι κατά τον γάμο ομόφυλων ζευγαριών.&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== Ψυχολόγοι ==&lt;br /&gt;
{| class=&amp;quot;wikitable sortable&amp;quot;&lt;br /&gt;
|+&lt;br /&gt;
!✅/🟨/🟧/❌&lt;br /&gt;
!Όνομα&lt;br /&gt;
!Περιοχή&lt;br /&gt;
!Δημόσιο/Ιδιωτικό&lt;br /&gt;
!Επικοινωνία&lt;br /&gt;
!Τιμή&lt;br /&gt;
!Οδός&lt;br /&gt;
!Διαδικτυακά&lt;br /&gt;
!Κριτικές&lt;br /&gt;
!Σημειώσεις&lt;br /&gt;
|-&lt;br /&gt;
|✅&lt;br /&gt;
|Γεωργία Καμπόλη&lt;br /&gt;
|Άνω Λιόσια / Διαδικτυακά&lt;br /&gt;
|Ιδιωτικό&lt;br /&gt;
| Τηλέφωνο: 6931170170 &lt;br /&gt;
Email: geokaboli@gmail.com &lt;br /&gt;
&lt;br /&gt;
Email (στην ιστοσελίδα): info@kabolipsychologist.gr&lt;br /&gt;
| -&lt;br /&gt;
| Οδ. Ελύτη 2, Άνω Λιόσια 133 41&lt;br /&gt;
| Ναι.&lt;br /&gt;
|&lt;br /&gt;
* 1 ✅&lt;br /&gt;
* 0 🟨&lt;br /&gt;
* 0 🟧&lt;br /&gt;
* 0 ❌&lt;br /&gt;
| -&lt;br /&gt;
|-&lt;br /&gt;
|❌&lt;br /&gt;
|Γιαντσίδου Βασιλική&lt;br /&gt;
|Ορεστιάδα&lt;br /&gt;
|Ιδιωτικό&lt;br /&gt;
| -&lt;br /&gt;
| -&lt;br /&gt;
| -&lt;br /&gt;
| -&lt;br /&gt;
| -&lt;br /&gt;
| Στον κώλο της μαϊμούς, δεν θα βγάλεις άκρη, why bother?&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== Παιδοψυχίατροι ==&lt;br /&gt;
{| class=&amp;quot;wikitable sortable&amp;quot;&lt;br /&gt;
|+&lt;br /&gt;
!✅/🟨/🟧/❌&lt;br /&gt;
!Όνομα&lt;br /&gt;
!Περιοχή&lt;br /&gt;
!Δημόσιο/Ιδιωτικό&lt;br /&gt;
!Επικοινωνία&lt;br /&gt;
!Τιμή&lt;br /&gt;
!Οδός&lt;br /&gt;
!Διαδικτυακά&lt;br /&gt;
!Κριτικές&lt;br /&gt;
!Σημειώσεις&lt;br /&gt;
|-&lt;br /&gt;
|❌&lt;br /&gt;
|Στέλλα/Στυλιανή Βαγιωνά&lt;br /&gt;
|Θεσσαλονίκη&lt;br /&gt;
|Ιδιωτικό&lt;br /&gt;
| -&lt;br /&gt;
|70€ (χωρίς απόδειξη)&lt;br /&gt;
| -&lt;br /&gt;
| -&lt;br /&gt;
|&lt;br /&gt;
* 0 ✅&lt;br /&gt;
* 0 🟨&lt;br /&gt;
* 0 🟧&lt;br /&gt;
* 1 ❌&lt;br /&gt;
| -&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== Ενδοκρινολόγοι ==&lt;br /&gt;
{| class=&amp;quot;wikitable sortable&amp;quot;&lt;br /&gt;
|+&lt;br /&gt;
!✅/🟨/🟧/❌&lt;br /&gt;
!Όνομα&lt;br /&gt;
!Περιοχή&lt;br /&gt;
!Δημόσιο/Ιδιωτικό&lt;br /&gt;
!Επικοινωνία&lt;br /&gt;
!Τιμή&lt;br /&gt;
!Οδός&lt;br /&gt;
!Διαδικτυακά&lt;br /&gt;
!Κριτικές&lt;br /&gt;
!Σημειώσεις&lt;br /&gt;
|-&lt;br /&gt;
|✅&lt;br /&gt;
|Γιουλάντα Πέτκοβα&lt;br /&gt;
|Ρέθυμνο&lt;br /&gt;
|Ιδιωτικό&lt;br /&gt;
|2831053220&lt;br /&gt;
|(?)&lt;br /&gt;
|Δημητρακάκη Σ. 31, 741 32&lt;br /&gt;
| -&lt;br /&gt;
|&lt;br /&gt;
*1 ✅&lt;br /&gt;
* 0 🟨&lt;br /&gt;
* 0 🟧&lt;br /&gt;
* 0 ❌&lt;br /&gt;
| - Ενδεχομένως να θέλει χαρτί για συνταγογράφηση, &#039;&#039;&#039;για αιματολογικές&#039;&#039;&#039; δεν έχει ζητήσει.&lt;br /&gt;
|-&lt;br /&gt;
|🟨&lt;br /&gt;
|Κούκκου Ευτυχία&lt;br /&gt;
|Αθήνα&lt;br /&gt;
|Δημόσιο&lt;br /&gt;
| -&lt;br /&gt;
| -&lt;br /&gt;
| Γ.Ν. Έλενα Βενιζέλου, Αθήνα 115 21&lt;br /&gt;
| Όχι.&lt;br /&gt;
|&lt;br /&gt;
* 4 ✅&lt;br /&gt;
* 0 🟨&lt;br /&gt;
* 1 🟧&lt;br /&gt;
* 1 ❌&lt;br /&gt;
| - Θέλει διάγνωση. &lt;br /&gt;
- Κάνει περίεργο misgendering μερικές φορές.&lt;br /&gt;
|-&lt;br /&gt;
|✅&lt;br /&gt;
|Θεώδορος Θωμάς&lt;br /&gt;
|Αθήνα&lt;br /&gt;
|Ιδιωτικό&lt;br /&gt;
| Σταθερό: 2106436115&lt;br /&gt;
| 80-100€ η συνεδρία&lt;br /&gt;
| Λεωφ. Κηφισίας 5, 115 23 Αμπελόκηποι, Αθήνα&lt;br /&gt;
| -&lt;br /&gt;
|&lt;br /&gt;
* 5 ✅&lt;br /&gt;
* 1 🟨&lt;br /&gt;
* 0 🟧&lt;br /&gt;
* 0 ❌&lt;br /&gt;
| - Θέλει διάγνωση. &lt;br /&gt;
- Έχει γράψει &#039;&#039;&#039;50mg androcur&#039;&#039;&#039; ανά &#039;&#039;&#039;μέρα&#039;&#039;&#039;. Παρ&#039; όλα αυτά δεν έχει υπάρξει άλλο περιστατικό σαν αυτό, οπότε &#039;&#039;&#039;δεν είναι fully conclusive&#039;&#039;&#039; το &amp;quot;Έγραψε παράξενη δοσολογία μια φορά σε μια κοπέλα.&amp;quot; &lt;br /&gt;
|-&lt;br /&gt;
|✅&lt;br /&gt;
|Σκαράκης Νικήτας&lt;br /&gt;
|Αθήνα&lt;br /&gt;
|Ιδιωτικό&lt;br /&gt;
| Σταθερό:  2107117965&lt;br /&gt;
| 50€ η συνεδρία&lt;br /&gt;
| Κυκλαμίνων 7 (Περιοχή Αγίου Ιεροθέου), Περιστέρι, Αττική&lt;br /&gt;
| Ναι. (60€ η συνεδρία)&lt;br /&gt;
|&lt;br /&gt;
* 1 ✅&lt;br /&gt;
* 0 🟨&lt;br /&gt;
* 0 🟧&lt;br /&gt;
* 0 ❌&lt;br /&gt;
| - Θέλει διάγνωση.&lt;br /&gt;
|-&lt;br /&gt;
|✅&lt;br /&gt;
|Στέργιος Κιούρας&lt;br /&gt;
|Θεσσαλονίκη&lt;br /&gt;
|Ιδιωτικό&lt;br /&gt;
| Σταθερό: 2310256498&lt;br /&gt;
| 50€ η συνεδρία&lt;br /&gt;
| Ερμού 36, Θεσσαλονίκη 546 23&lt;br /&gt;
| -&lt;br /&gt;
|&lt;br /&gt;
* 1 ✅&lt;br /&gt;
* 0 🟨&lt;br /&gt;
* 0 🟧&lt;br /&gt;
* 0 ❌&lt;br /&gt;
| - &#039;&#039;&#039;Δεν ζήτησε&#039;&#039;&#039; διάγνωση.&lt;br /&gt;
|-&lt;br /&gt;
|🟨&lt;br /&gt;
|Θεμιστοκλής Καλτσάς&lt;br /&gt;
|Θεσσαλονίκη&lt;br /&gt;
|Ιδιωτικό&lt;br /&gt;
| Σταθερό: 2310238719&lt;br /&gt;
| 50€ η συνεδρία&lt;br /&gt;
| Παλαιών Πατρών Γερμανού 21, Θεσσαλονίκη&lt;br /&gt;
| -&lt;br /&gt;
|&lt;br /&gt;
* 1 ✅&lt;br /&gt;
* 1 🟨&lt;br /&gt;
* 0 🟧&lt;br /&gt;
* 0 ❌&lt;br /&gt;
| - Δεν έχει θέμα με DIY, &#039;&#039;&#039;δεν ζήτησε άμεσα&#039;&#039;&#039; διάγνωση, αλλά &#039;&#039;&#039;την θέλει&#039;&#039;&#039; γενικότερα (δλ. αν δεν έχεις θα στη ζητήσει μελλοντικά μεσω e-mail)&lt;br /&gt;
- Έχει θέμα με τα &amp;quot;υψηλά&amp;quot; επίπεδα (π.χ. κανονικά pg/ml e2 στην μονοθεραπεία με injections είναι περίεργα γι&#039; αυτόν)&lt;br /&gt;
- Ζητάει διάγνωση στα άτομα που δεν λαμβάνουν DIY HRT.&lt;br /&gt;
- Ημι-συχνό misgendering.&lt;br /&gt;
|-&lt;br /&gt;
|✅&lt;br /&gt;
|Παναγιώτης Μ. Μπουντούρης&lt;br /&gt;
|Σύρος&lt;br /&gt;
|Ιδιωτικό&lt;br /&gt;
|Σταθερό: 2281082030&lt;br /&gt;
Κινητό: 6946545831&lt;br /&gt;
|30€ η πρώτη συνεδρία&lt;br /&gt;
10€ η συνταγή&lt;br /&gt;
|Κλεισθένους 15, Ερμούπολη, 84100, Κυκλάδων&lt;br /&gt;
| -&lt;br /&gt;
|&lt;br /&gt;
* 1 ✅&lt;br /&gt;
* 0 🟨&lt;br /&gt;
* 0 🟧&lt;br /&gt;
* 0 ❌&lt;br /&gt;
| -&lt;br /&gt;
|-&lt;br /&gt;
|🟨&lt;br /&gt;
|Κωνσταντίνος Α. Τούλης&lt;br /&gt;
|Θεσσαλονίκη&lt;br /&gt;
|Ιδιωτικό&lt;br /&gt;
|Τηλέφωνο: 2310222799&lt;br /&gt;
|50€ η συνεδρία&lt;br /&gt;
|Μητροπόλεως 73, Θεσσαλονίκη 546 22&lt;br /&gt;
| -&lt;br /&gt;
|&lt;br /&gt;
* 0 ✅&lt;br /&gt;
* 1 🟨&lt;br /&gt;
* 0 🟧&lt;br /&gt;
* 0 ❌&lt;br /&gt;
| - Θέλει διάγνωση.&lt;br /&gt;
|-&lt;br /&gt;
|🟨&lt;br /&gt;
|Γεώργιος Α. Κανάκης&lt;br /&gt;
|Αθήνα&lt;br /&gt;
|Ιδιωτικό&lt;br /&gt;
|Σταθερό: 2107709248&lt;br /&gt;
|&amp;lt;!-- we don&#039;t even fucking know --&amp;gt;&lt;br /&gt;
|Τσόχα 15-17, Αμπελόκηποι &lt;br /&gt;
| -&lt;br /&gt;
| -&lt;br /&gt;
| - Έχει ακουστεί πως έχει παραβιάσει την ανωνυμία δεδομένων.&lt;br /&gt;
|-&lt;br /&gt;
|❌&lt;br /&gt;
|Πουλάκος Πάυλος&lt;br /&gt;
|Θεσσαλονίκη&lt;br /&gt;
|Ιδιωτικό&lt;br /&gt;
|Σταθερό: 2105579147&lt;br /&gt;
|50€ η συνεδρία &lt;br /&gt;
|Τσιμισκή Ιωάννη 69, Αγία Σοφία, 546 22&lt;br /&gt;
| -&lt;br /&gt;
|&lt;br /&gt;
* 0 ✅&lt;br /&gt;
* 0 🟨&lt;br /&gt;
* 0 🟧&lt;br /&gt;
* 1 ❌&lt;br /&gt;
| - 100mg cypro ανά μέρα χωρίς προειδοποίηση στο cyclacur για τα πορτοκαλί/καφέ χάπια (πολύ κακό)&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== Δερματολόγοι/Αφροδισιολόγοι/Laser Κλινικές ==&lt;br /&gt;
{| class=&amp;quot;wikitable sortable&amp;quot;&lt;br /&gt;
|+&lt;br /&gt;
!✅/🟨/🟧/❌&lt;br /&gt;
!Όνομα&lt;br /&gt;
!Περιοχή&lt;br /&gt;
!Είδος&lt;br /&gt;
!Δημόσιο/Ιδιωτικό&lt;br /&gt;
!Επικοινωνία&lt;br /&gt;
!Τιμή&lt;br /&gt;
!Διαδικτυακά&lt;br /&gt;
!Κριτικές&lt;br /&gt;
!Σημειώσεις&lt;br /&gt;
|-&lt;br /&gt;
|❌&lt;br /&gt;
|Ζαχαρίας Ι. Ανδρεαδάκης&lt;br /&gt;
|Αθήνα&lt;br /&gt;
|Δερματολόγος/Αφροδισιολόγος/Laser&lt;br /&gt;
|Ιδιωτικό&lt;br /&gt;
| -&lt;br /&gt;
| -&lt;br /&gt;
| -&lt;br /&gt;
|&lt;br /&gt;
* 0 ✅&lt;br /&gt;
* 0 🟨&lt;br /&gt;
* 0 🟧&lt;br /&gt;
* 1 ❌&lt;br /&gt;
| -&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== Χειρούργοι ==&lt;br /&gt;
{| class=&amp;quot;wikitable sortable&amp;quot;&lt;br /&gt;
|+&lt;br /&gt;
!✅/🟨/🟧/❌&lt;br /&gt;
!Όνομα&lt;br /&gt;
!Περιοχή&lt;br /&gt;
!Δημόσιο/Ιδιωτικό&lt;br /&gt;
!Επικοινωνία&lt;br /&gt;
!Τιμή&lt;br /&gt;
!Οδός&lt;br /&gt;
!Διαδικτυακά&lt;br /&gt;
!Κριτικές&lt;br /&gt;
!Σημειώσεις&lt;br /&gt;
|-&lt;br /&gt;
|✅&lt;br /&gt;
|Ηλίας Μεξής&lt;br /&gt;
|Αθήνα&lt;br /&gt;
|Ιδιωτικό&lt;br /&gt;
| Σταθερό: 2114068315&lt;br /&gt;
| Top surgery ~3000€&lt;br /&gt;
|Αγ. Θεοδώρων 10, 14562 Κηφισιά&lt;br /&gt;
| -&lt;br /&gt;
|&lt;br /&gt;
* 1 ✅&lt;br /&gt;
* 0 🟨&lt;br /&gt;
* 0 🟧&lt;br /&gt;
* 0 ❌&lt;br /&gt;
| - Δεν ζητάει γνωμάτευση.&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== Δικηγόροι ==&lt;br /&gt;
{| class=&amp;quot;wikitable sortable&amp;quot;&lt;br /&gt;
|+&lt;br /&gt;
!✅/🟨/🟧/❌&lt;br /&gt;
!Όνομα&lt;br /&gt;
!Περιοχή&lt;br /&gt;
!Δημόσιο/Ιδιωτικό&lt;br /&gt;
!Επικοινωνία&lt;br /&gt;
!Τιμή&lt;br /&gt;
!Οδός&lt;br /&gt;
!Διαδικτυακά&lt;br /&gt;
!Κριτικές&lt;br /&gt;
!Σημειώσεις&lt;br /&gt;
|-&lt;br /&gt;
|✅&lt;br /&gt;
|Αθηνά Καλογρίδη&lt;br /&gt;
|Θεσσαλονίκη&lt;br /&gt;
|Ιδιωτικό&lt;br /&gt;
| Σταθερό: 2310220704&lt;br /&gt;
| 125€ αίτηση&lt;br /&gt;
125€ δικαστήριο&lt;br /&gt;
43€ εισαγγελέας&lt;br /&gt;
| Κομνηνών 20, Θεσσαλονίκη, 54624, ΘΕΣΣΑΛΟΝΙΚΗΣ&lt;br /&gt;
| -&lt;br /&gt;
|&lt;br /&gt;
* 1 ✅&lt;br /&gt;
* 0 🟨&lt;br /&gt;
* 0 🟧&lt;br /&gt;
* 0 ❌&lt;br /&gt;
| -&lt;br /&gt;
|}&lt;/div&gt;</summary>
		<author><name>Goblinmoder</name></author>
	</entry>
	<entry>
		<id>https://wiki.diyon.top/index.php?title=HRT&amp;diff=1019</id>
		<title>HRT</title>
		<link rel="alternate" type="text/html" href="https://wiki.diyon.top/index.php?title=HRT&amp;diff=1019"/>
		<updated>2025-07-22T13:25:14Z</updated>

		<summary type="html">&lt;p&gt;Goblinmoder: fix syringes mono disclaimer&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{#seo:&lt;br /&gt;
|title_mode=replace&lt;br /&gt;
|title=HRT&lt;br /&gt;
|description=We are open to discussion and actively on-going changes in formatting and contents of this Page and Website (in general). The e-mail address to refer to is fox@diyon.top&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
&amp;lt;languages/&amp;gt;&lt;br /&gt;
&amp;lt;translate&amp;gt;&lt;br /&gt;
&amp;lt;!--T:41--&amp;gt;&lt;br /&gt;
After around a month on HRT some of your ranges in your [[Blood Testing|blood test]] should be within desired ranges.&lt;br /&gt;
&lt;br /&gt;
== Disclaimers ==&lt;br /&gt;
 To clarify on &#039;&#039;&#039;dosages&#039;&#039;&#039;, the values mentioned below are rather speculative and most are based on &#039;&#039;&#039;personal experiences&#039;&#039;&#039; or &#039;&#039;&#039;(diy)hrt pages/websites/papers&#039;&#039;&#039;. Therefore it is encouraged to do [[Blood Testing|blood tests]] and if possible, check with an [[Doctors#Ενδοκρινολόγοι|endocrinologist]] (we also suggest [[Doctors]] that can help with such cases), especially if you have any specific &#039;&#039;&#039;health conditions&#039;&#039;&#039;. &lt;br /&gt;
&#039;&#039;&#039;Pricemaps&#039;&#039;&#039; are there to evaluate prices through &#039;&#039;&#039;[https://galinos.gr galinos.gr]&#039;&#039;&#039; (in case something is outdated, look for the green line that says &amp;quot;Λιανική&amp;quot;)&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Questionable resources&#039;&#039;&#039; are to be taken with a grain of salt on every aspect of their contents.&lt;br /&gt;
&lt;br /&gt;
We are open to discussion and actively on-going changes in formatting and contents of this Page and Website (in general). The e-mail address to refer to is &#039;&#039;&#039;fox@diyon.top&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
== Blood Levels ==&lt;br /&gt;
&lt;br /&gt;
==== Refer to the [[Blood Testing]] page. ====&lt;br /&gt;
== Transfem ==&lt;br /&gt;
Taking hormone blockers ([[HRT#Antiandrogens and GNRH Agonists|GNRH Agonists]], e.g: Arvekap) or any Anti Androgens (e.g: Aldactone, Androcur) &#039;&#039;&#039;without [[HRT#Estrogens|Estrogens]]&#039;&#039;&#039; is generally discouraged. (This is &#039;&#039;&#039;non-definitive&#039;&#039;&#039; for Enby folks)&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--T:44--&amp;gt;&lt;br /&gt;
=== Monotherapy ===&lt;br /&gt;
&#039;&#039;&#039;Note:&#039;&#039;&#039; Syringes usually account for dead space by starting the measurement markings &#039;&#039;&#039;after the dead space.&#039;&#039;&#039; &lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|+&lt;br /&gt;
!Type&lt;br /&gt;
!Commercial Names&lt;br /&gt;
!Dosage&lt;br /&gt;
!Notes&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
====== Sublingual (E Valerate or Hemihydrate) ======&lt;br /&gt;
|Cyclacur (EV), Estrofem (EH, imported), Trisequens (12 pills 2mg EH, 10 pills norgestrel, 6 pills 1mg EH)&lt;br /&gt;
|&amp;gt;=8-12mg/day&lt;br /&gt;
|While it is possible, even with a smaller dosage (&#039;&#039;&#039;at least 6mg&#039;&#039;&#039;), it&#039;s not that common. Ideally, use your blood tests to &#039;&#039;&#039;minmax&#039;&#039;&#039; your doses.&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
====== Injectable Estradiol Valerate (EV) ======&lt;br /&gt;
|Neofollin (can be ordered from pharmacies near Czechia, or aptekaapo.com &#039;&#039;&#039;but they’re not on hrtcafe&#039;&#039;&#039;, not tested in Greece), Delestrogen (Vial, unavailable), Progynon Depot (Ampules, unavailable), [[File:What-excuse-me.gif|thumb|[[HRT#Other resources|my honest reaction]]]]&lt;br /&gt;
|5-7mg/5 days&lt;br /&gt;
|&lt;br /&gt;
* Due to the large spikes in levels combined with the short [[wikipedia:Biological_half-life|half-life]] it is not recommended for dosages to surpass the 5 day mark because it may cause menopause symptoms.&lt;br /&gt;
* Branded versions of this medication are not available in greece.&lt;br /&gt;
* The ampules contain a certain mg and do not allow for larger dosages, they are not re-usable. It is recommended to use a vial with a cap.&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
====== Injectable Estradiol Cypionate (EC) ======&lt;br /&gt;
|[[File:What-excuse-me.gif|thumb|[[HRT#Other resources|my honest reaction]]]]Depo-Estradiol (US only, unavailable),&lt;br /&gt;
|5-7mg/7 days&lt;br /&gt;
| -&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
====== Injectable Estradiol Enanthate (EEn) ======&lt;br /&gt;
|[[File:What-excuse-me.gif|thumb|[[HRT#Other resources|my honest reaction]]]]&lt;br /&gt;
|4-7mg/7 days&lt;br /&gt;
7-10mg/10 days (7.2mg usually, depending on the vial, it&#039;s optimal because drawing cents of mL are hard to get right)&lt;br /&gt;
|&lt;br /&gt;
* You can multiply the weekly dosage by 2, which lasts up to 14 days (as much as the [[wikipedia:Biological_half-life|half-life]] of Enanthate)&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
====== Injectable Estradiol Undecylate (EU/EUn) ======&lt;br /&gt;
|[[File:What-excuse-me.gif|thumb|[[HRT#Other resources|my honest reaction]]]]&lt;br /&gt;
|There&#039;s not enough information on dosage. The frequency of those may differ according to the oil used (MCT/Castor oil). Indicative Dosages:&lt;br /&gt;
15-20mg/2 weeks&lt;br /&gt;
&lt;br /&gt;
20-40mg+/4 weeks&lt;br /&gt;
|&lt;br /&gt;
* There&#039;s not enough information on its [[wikipedia:Biological_half-life|half-life]], a higher dosage can be administered that can last up to 20-30 days.&lt;br /&gt;
* [[wikipedia:Intramuscular_injection|IM injections]] last longer so they give better levels during the same period of time per injection.&lt;br /&gt;
* Needs at least 90 days to reach stable levels.&lt;br /&gt;
|}&amp;lt;!--T:46--&amp;gt;&lt;br /&gt;
=== Sublingual vs Oral ===&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|+&lt;br /&gt;
!Method&lt;br /&gt;
!Substance&lt;br /&gt;
!Dosage&lt;br /&gt;
!Observations&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
====== Oral ======&lt;br /&gt;
|Estradiol Valerate in pill form (e.g. Cyclacur)&lt;br /&gt;
|&amp;gt;=6mg/day&lt;br /&gt;
(max 10mg as per Dr. Powers)&lt;br /&gt;
|It is recommended that doses are taken separately on set time intervals during the day for more stable estradiol levels, e.g. for a 6mg dose you would take 2mg per 8 hours. By the oral route the active substance is metabolized by the liver and part of it is converted to estrone (E1), which has much less feminizing effects than estradiol (E2) so the desired effect is essentially prevented. The bioavailability of estradiol by oral administration is very low (~5%) and usually lower levels of E2 are observed in blood tests than other methods of administration. [anecdotal apo to server, wikipedia kai tttt - correct/expand?] It is also necessary to administer anti-androgens to reduce testosterone levels to the female range.&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
====== Sublingual ======&lt;br /&gt;
|Estradiol Valerate in pill form (e.g. Cyclacur)&lt;br /&gt;
|&amp;gt;=4mg/day&lt;br /&gt;
|It is recommended that doses are taken separately on set time intervals during the day for more stable estradiol levels, e.g. for a 6mg dose you would take 2mg per 8 hours. The sublingual way bypasses estradiol metabolism by the liver and has about 5 times the estradiol bioavailability of the oral way. This way, estradiol levels have greater range than orally (higher peak lower bottom), in oral they remain higher for ~12 hours while sublingually they go away after 3-4 hours (This however is from a study from 2005 on cis women)&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== Vial info === &amp;lt;!--T:47--&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--T:48--&amp;gt;&lt;br /&gt;
=== Medications ===&lt;br /&gt;
For cyclacur: &#039;&#039;&#039;take only the white pills, the brown pills are Norgestrel which have 0.5mg of estradiol but has an androgenic effect and may also cause other side effects&#039;&#039;&#039;. &lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--T:49--&amp;gt;&lt;br /&gt;
==== Estrogens ====&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|+&lt;br /&gt;
!Brand Name(s)&lt;br /&gt;
!Substance&lt;br /&gt;
!Form&lt;br /&gt;
!Method of Administration&lt;br /&gt;
!Cost&lt;br /&gt;
!Cost with Healthcare Coverage&lt;br /&gt;
!Dosage&lt;br /&gt;
!Safety&lt;br /&gt;
!Notes&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
====== [https://www.galinos.gr/web/drugs/main/drugs/Cyclacur Cyclacur] ======&lt;br /&gt;
|Estradiol Valerate (EV)&lt;br /&gt;
|Pill tablet&lt;br /&gt;
|Orally or sublingually&lt;br /&gt;
|2.01€ for 11 pills ([https://www.galinos.gr/service/drugs/drawPackagePrice/1198 Pricemap])&lt;br /&gt;
~130.8-328.€/year&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--T:50--&amp;gt;&lt;br /&gt;
~10.9-27.4€/month&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--T:51--&amp;gt;&lt;br /&gt;
Prices are indicative, the cost depends on the dosage.&lt;br /&gt;
| -&lt;br /&gt;
|6mg-10mg/day (according to Dr. Will Powers)&lt;br /&gt;
4mg-8mg/day (according to Greek Endocrinologists)&lt;br /&gt;
|A&lt;br /&gt;
|&lt;br /&gt;
* &#039;&#039;&#039;Only white pills are used.&#039;&#039;&#039; Brown pills do have a bit of estradiol but arent taken due to other side effects.&lt;br /&gt;
* You need antiandrogens or GNRH antagonists if you haven&#039;t had an orchiectomy.&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
====== Progynova ======&lt;br /&gt;
|Estradiol Valerate (EV)&lt;br /&gt;
|Pill tablet&lt;br /&gt;
|Orally or sublingually&lt;br /&gt;
|~22€ for 72 pills of 1 mg or ~32€ for 72 pills of 2 mg&lt;br /&gt;
Prices are indicative, the cost depends on the dosage.&lt;br /&gt;
| -&lt;br /&gt;
|4mg-8mg/day&lt;br /&gt;
|A&lt;br /&gt;
|&lt;br /&gt;
* There is no reason to use it in Greece since Cyclacur is available in Greek pharmacies.&lt;br /&gt;
* You need antiandrogens or GNRH antagonists if you haven&#039;t had an orchiectomy.&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
====== Estrofem, Estrifam (german brand name), [https://www.galinos.gr/web/drugs/main/drugs/trisequens Trisequens] ======&lt;br /&gt;
|Estradiol Hemihydrate&lt;br /&gt;
|Pill tablet&lt;br /&gt;
|Orally or sublingually&lt;br /&gt;
|~30€ for 28 pills of 2 mg without shipping costs.&lt;br /&gt;
Prices are indicative, the cost depends on the dosage.&lt;br /&gt;
| -&lt;br /&gt;
|4mg-8mg/day&lt;br /&gt;
|A&lt;br /&gt;
|&lt;br /&gt;
* There is no reason to use it in Greece since Cyclacur is available in Greek pharmacies.&lt;br /&gt;
* You need antiandrogens or GNRH antagonists if you haven&#039;t had an orchiectomy.&lt;br /&gt;
* Trisequens, while being available in Greece, is odd to take with 12 pills being 2mg EH, 10 norgestrel, and 6 1mg EH, for a much higher price than [[HRT#Cyclacur|Cyclacur]].&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
====== [https://www.galinos.gr/web/drugs/main/drugs/Dermestril Dermestril] ======&lt;br /&gt;
|Estradiol Hemihydrate&lt;br /&gt;
|Patch&lt;br /&gt;
|Trans-dermally&lt;br /&gt;
|44€ for 24 patches of 100mcg&lt;br /&gt;
~15€ for 8 patches of 50mcg&lt;br /&gt;
| -&lt;br /&gt;
|50mcg/3.5 days (when starting off)&lt;br /&gt;
100mcg/3.5 days (whenever your e2 levels are stable)&lt;br /&gt;
|A+&lt;br /&gt;
|&lt;br /&gt;
* &#039;&#039;&#039;If you have no idea how to apply patches watch this:&#039;&#039;&#039; [https://youtu.be/tXGIYWPqdpI?si=O0dlE19pq0ic0PZP Demonstrational Video]&lt;br /&gt;
* You need antiandrogens or GNRH antagonists if you haven&#039;t had an orchiectomy.&lt;br /&gt;
* 100mcg patches can be cut into 2 if needed.&lt;br /&gt;
|-&lt;br /&gt;
|Neofollin (can be ordered from pharmacies near Czechia, not tested in Greece), Delestrogen (Vial, unavailable), Progynon Depot (Ampules, unavailable)&lt;br /&gt;
|&lt;br /&gt;
====== Estradiol Valerate (EV) ======&lt;br /&gt;
|Injectable&lt;br /&gt;
|Subcutaneous or Intramuscular&lt;br /&gt;
|80€/year (including shipping costs, syringes and alcohol swabs)&lt;br /&gt;
| -&lt;br /&gt;
|5-7mg/5 days (monotherapy)&lt;br /&gt;
4-5mg/7 days (only in combination with an antiandrogen or GNRH agonist)&lt;br /&gt;
|A+&lt;br /&gt;
|&lt;br /&gt;
* It can be used without antiandrogens or GNRH agonists in ([[HRT#Μονοθεραπεία|Monotherapy]]) by increasing the dosage.&lt;br /&gt;
|-&lt;br /&gt;
|Depo-Estradiol (US only, unavailable)&lt;br /&gt;
|&lt;br /&gt;
====== Estradiol Cypionate (EC) ======&lt;br /&gt;
|Injectable&lt;br /&gt;
|Subcutaneous or Intramuscular&lt;br /&gt;
|~100-110€/year (including shipping. not including, syringes and alcohol swabs)&lt;br /&gt;
| -&lt;br /&gt;
|5-7mg/7 days&lt;br /&gt;
(&#039;&#039;&#039;mono dose&#039;&#039;&#039;)&lt;br /&gt;
? (TBD/&#039;&#039;&#039;dose with AA&#039;&#039;&#039;)&lt;br /&gt;
|A+&lt;br /&gt;
|&lt;br /&gt;
* It can be used without antiandrogens or GNRH agonists in ([[HRT#Μονοθεραπεία|Monotherapy]])&lt;br /&gt;
|-&lt;br /&gt;
| -&lt;br /&gt;
|&lt;br /&gt;
====== Estradiol Enanthate (EEn) ======&lt;br /&gt;
|Injectable&lt;br /&gt;
|Subcutaneous or Intramuscular&lt;br /&gt;
|80€/year (including shipping costs, syringes and alcohol swabs)&lt;br /&gt;
| -&lt;br /&gt;
|2.5mg-7mg/7 days&lt;br /&gt;
(usual dosage: 4mg/7days)&lt;br /&gt;
|A+&lt;br /&gt;
|&lt;br /&gt;
* It can be used without antiandrogens or GNRH agonists in ([[HRT#Μονοθεραπεία|Monotherapy]]) by increasing the dosage.&lt;br /&gt;
|-&lt;br /&gt;
| -&lt;br /&gt;
|&lt;br /&gt;
====== Estradiol Undecylate (EU, EUn) ======&lt;br /&gt;
|Injectable&lt;br /&gt;
|Subcutaneous or Intramuscular&lt;br /&gt;
|130€/year (including shipping costs, syringes and alcohol swabs)&lt;br /&gt;
| -&lt;br /&gt;
|15-20mg/2 weeks&lt;br /&gt;
20-40mg+/4 weeks&lt;br /&gt;
|?&lt;br /&gt;
|&lt;br /&gt;
* There&#039;s not much info on dosages, usually seen in [[HRT#Μονοθεραπεία|monotherapy]].&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--T:52--&amp;gt;&lt;br /&gt;
==== Anti-Androgens and GNRH Agonists ====&lt;br /&gt;
These should &#039;&#039;&#039;not&#039;&#039;&#039; be taken sublingually.&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|+&lt;br /&gt;
!Brand Name(s)&lt;br /&gt;
!Substance&lt;br /&gt;
!Cost&lt;br /&gt;
!Cost with Healthcare Coverage&lt;br /&gt;
!Dosage&lt;br /&gt;
!Safety&lt;br /&gt;
!Form&lt;br /&gt;
!Type&lt;br /&gt;
!Notes&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
====== [https://www.galinos.gr/web/drugs/main/drugs/Androcur Androcur] ======&lt;br /&gt;
|Cyproterone Acetate (CPA) is also referred to as cypro&lt;br /&gt;
|21.58€/50mg * 50 pills &lt;br /&gt;
19.7-31.5€/year&lt;br /&gt;
&lt;br /&gt;
([https://www.galinos.gr/service/drugs/drawPackagePrice/8023 Pricemap])&lt;br /&gt;
|?&lt;br /&gt;
|12.5mg/2 days- 10mg/day&lt;br /&gt;
&#039;&#039;&#039;Larger doses shouldn&#039;t be administered&#039;&#039;&#039;&lt;br /&gt;
|C&lt;br /&gt;
|Pill tablet&lt;br /&gt;
|Progestin (Steroidal antiandrogen)&lt;br /&gt;
Stops testosterone production.&lt;br /&gt;
|The max recommended dosage is 10mg/day . Monitoring of prolactin levels is recommended through [[Blood Testing#MTF|blood testing]].&lt;br /&gt;
&#039;&#039;&#039;Many doctors give overdoses of 50 mg/day. Cyproterone is a strong anti-androgen and testosterone suppression is possible with lower doses. A change of doctor is recommended.&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--T:53--&amp;gt;&lt;br /&gt;
[[wikipedia:Side_effects_of_cyproterone_acetate|Side Effects]]:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--T:54--&amp;gt;&lt;br /&gt;
* Benign brain tumor.&lt;br /&gt;
* In rare cases, liver damage.&lt;br /&gt;
* Vitamin B12 deficiency.&lt;br /&gt;
* Breast cancer.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--T:55--&amp;gt;&lt;br /&gt;
Testosterone suppression can be achieved with even lower doses, however a 50 mg pill is difficult to cut into pieces of less than 12.5 mg even with a pill cutter.&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
====== [https://www.galinos.gr/web/drugs/main/drugs/Bicalut Bicalut] ======&lt;br /&gt;
|Bicalutamide (aka: bica)&lt;br /&gt;
|29.10 euro/30 pills&lt;br /&gt;
29.10 euro/month&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--T:56--&amp;gt;&lt;br /&gt;
~350 euro/year&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
([https://www.galinos.gr/service/drugs/drawPackagePrice/11120 Pricemap])&lt;br /&gt;
|6.77 euro/month (28 tabs)&lt;br /&gt;
~95 euro/year&lt;br /&gt;
|50mg/day&lt;br /&gt;
|A-&lt;br /&gt;
|Pill/Tablet&lt;br /&gt;
|Androgen receptor antagonist (Nonsteroidal antiandrogen)&lt;br /&gt;
Blocks absorption of all androgens (including testosterone)&lt;br /&gt;
|&#039;&#039;&#039;Serious negative interactions can be noted if combined with other anti-androgens and GNRH agonists (except progesterone)&#039;&#039;&#039;&lt;br /&gt;
&#039;&#039;&#039;Very rare&#039;&#039;&#039; chance for recoverable and non-fatal liver damage for people with a certain rare mutation.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--T:57--&amp;gt;&lt;br /&gt;
Most of the effects listen in the instruction manual are scaremongering. (it lists a very high chance of liver issues when they are actually very rare, and also lists photosensitivity, which if it even occurs at all, it should be quite rare. We are aware of nobody who had a negative interction between alexandrite laser hair removal and bicalutamide).&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--T:58--&amp;gt;&lt;br /&gt;
Note that bicalutamide, unlike most other anti-androgens, &#039;&#039;&#039;does not&#039;&#039;&#039; lower testosterone levels, in fact they usually rise as the body responds to testosterone receptors being inhibited. Do not be alarmed if you notice an increase of testosterone in your blood tests.&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
====== [https://www.galinos.gr/web/drugs/main/drugs/Arvekap Arvekap] ======&lt;br /&gt;
|Triptorelin&lt;br /&gt;
| -&lt;br /&gt;
|~200/year?&lt;br /&gt;
|&lt;br /&gt;
|A?&lt;br /&gt;
|Injection&lt;br /&gt;
|GNRH Agonist&lt;br /&gt;
(indirectly) Stops testosterone AND estrogen production&lt;br /&gt;
|Also a puberty blocker&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
====== [https://www.galinos.gr/web/drugs/main/drugs/aldactone Aldactone] ======&lt;br /&gt;
|Spironolactone&lt;br /&gt;
|5.19 euro/20 tabs (100mg)&lt;br /&gt;
([https://www.galinos.gr/service/drugs/drawPackagePrice/148 Pricemap])&lt;br /&gt;
|?&lt;br /&gt;
|50mg-200mg/day&lt;br /&gt;
|B-C&lt;br /&gt;
|Tablet&lt;br /&gt;
|Antimineralocorticoid/MCRA&lt;br /&gt;
|Very inefficient, makes you pee, it&#039;s a medication for blood pressure&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
|Flutamide&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|F---&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|Only in this table as an example to avoid&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
==== Miscellaneous/Progesterone ====&lt;br /&gt;
Progesterone falls under this category, as it is not quite the same as other Anti-Androgens, the mention of Progesterone in this title is necessary in order to reduce confusion and questions such as &amp;quot;Where is progesterone?&amp;quot; and &amp;quot;Did you remove prog from the page?&amp;quot;.&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
!Brand Name(s)&lt;br /&gt;
!Substance&lt;br /&gt;
!Cost&lt;br /&gt;
!Cost with Healthcare Coverage&lt;br /&gt;
!Dosage&lt;br /&gt;
!Safety&lt;br /&gt;
!Form&lt;br /&gt;
!Type&lt;br /&gt;
!Notes&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
====== [https://www.galinos.gr/web/drugs/main/drugs/utrogestran Utrogestan] ======&lt;br /&gt;
|Progesterone (P4) it is also referred to as prog&lt;br /&gt;
|5.83 euro/30 caps (100mg)&lt;br /&gt;
8.08 euro/15 caps (200mg)&lt;br /&gt;
([https://www.galinos.gr/service/drugs/drawPackagePrice/7619 Pricemap])&lt;br /&gt;
|?&lt;br /&gt;
|100mg or 200mg daily (rectal administration, [[Blood Testing|blood tests]] are recommended)&lt;br /&gt;
|A&lt;br /&gt;
|Capsule&lt;br /&gt;
|Stops testosterone production.&lt;br /&gt;
|There is not much confirmed information about progesterone.&lt;br /&gt;
It can also be taken orally but the absorption rate is very low.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--T:59--&amp;gt;&lt;br /&gt;
Anecdotal claims:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--T:60--&amp;gt;&lt;br /&gt;
* Helps with breast development and with feminization in general.&lt;br /&gt;
* Can be given after one year of estradiol.&lt;br /&gt;
* Suggested to be given after the individual reaches Tanner stage 3.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--T:61--&amp;gt;&lt;br /&gt;
It can have androgenic or other (non-serious, recoverable) effects for some individuals - in particular it can be converted to DHT by the body even in combination with dutasteride or bicalutamide.&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--T:62--&amp;gt;&lt;br /&gt;
==== Other anti-androgens (optional) ====&lt;br /&gt;
These are used to block conversion of other androgens to DHT (which causes hair loss (hair) and body hair growth). They aren&#039;t general use Anti-Androgens.&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
!Brand Name(s)&lt;br /&gt;
!Substance&lt;br /&gt;
!Cost&lt;br /&gt;
!Cost with Healthcare Coverage&lt;br /&gt;
!Dosage&lt;br /&gt;
!Safety&lt;br /&gt;
!Form&lt;br /&gt;
!Type&lt;br /&gt;
!Notes&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
====== [https://www.galinos.gr/web/drugs/main/packages/26485 Dastidem], [https://www.galinos.gr/web/drugs/main/packages/25557 Rafuster], [https://www.galinos.gr/web/drugs/main/packages/25893 Duaride], [https://www.galinos.gr/web/drugs/main/packages/25894 Dustezor] ======&lt;br /&gt;
|Dutasteride&lt;br /&gt;
|7.90€/30 caps&lt;br /&gt;
|~6€/30 caps&lt;br /&gt;
|0.5mg/day (?/TBD)&lt;br /&gt;
|A-&lt;br /&gt;
|Capsule&lt;br /&gt;
| -&lt;br /&gt;
|High effectiveness.&lt;br /&gt;
|-&lt;br /&gt;
| -&lt;br /&gt;
|Finasteride&lt;br /&gt;
| -&lt;br /&gt;
| -&lt;br /&gt;
| -&lt;br /&gt;
|?&lt;br /&gt;
| -&lt;br /&gt;
| -&lt;br /&gt;
| -&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== Transmasc ==&lt;br /&gt;
&lt;br /&gt;
=== Medications ===&lt;br /&gt;
&lt;br /&gt;
==== Testosterone ====&lt;br /&gt;
[https://www.galinos.gr/web/drugs/main/substances/testosterone/marketing Galinos.gr&#039;s testosterone availability page]&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|+&lt;br /&gt;
!Brand Name(s)&lt;br /&gt;
!Substance&lt;br /&gt;
!Form&lt;br /&gt;
!Method of Administration&lt;br /&gt;
!Cost&lt;br /&gt;
!Cost with Healthcare Coverage&lt;br /&gt;
!Dosage&lt;br /&gt;
!Safety&lt;br /&gt;
!Notes&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
====== [https://www.galinos.gr/web/drugs/main/packages/4929 Norma] ======&lt;br /&gt;
|Testosterone Enanthate&lt;br /&gt;
|Injection/Ampule&lt;br /&gt;
|Intramuscular&lt;br /&gt;
|17.67€/ampule &lt;br /&gt;
([https://www.galinos.gr/service/drugs/drawPackagePrice/4929 Pricemap])&lt;br /&gt;
|?&lt;br /&gt;
|?&lt;br /&gt;
|?&lt;br /&gt;
| -&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
====== [https://www.galinos.gr/web/drugs/main/packages/21943 Nebido] ======&lt;br /&gt;
|Testosterone Undecanoate&lt;br /&gt;
|Injection/Vial&lt;br /&gt;
|Intramuscular&lt;br /&gt;
|100.37€/vial&lt;br /&gt;
([https://www.galinos.gr/service/drugs/drawPackagePrice/21943 Pricemap])&lt;br /&gt;
|~32.52€/vial (you pay 25%)&lt;br /&gt;
|1 vial (1000mg/4mL)/10-20 weeks&lt;br /&gt;
|A&lt;br /&gt;
|As a starting dose &#039;&#039;&#039;after a year of HRT&#039;&#039;&#039;, you could also consider:&lt;br /&gt;
&lt;br /&gt;
* Instead of injecting one vial per 20 weeks, you do half every 10-12 weeks, however nothing could be sourced to support this. Though logically it could make sense as a practice.&lt;br /&gt;
* Do a test at 6 weeks after starting, if T is too high don&#039;t take the 2nd dose, if it&#039;s not you can take the 2nd and then test 2 weeks before every other dose.&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
====== [https://www.galinos.gr/web/drugs/main/packages/15739 Tostran] ======&lt;br /&gt;
|Testogel&lt;br /&gt;
|Gel&lt;br /&gt;
|Trans-dermally&lt;br /&gt;
|&#039;&#039;&#039;Starting dose&#039;&#039;&#039;&lt;br /&gt;
&amp;lt;!--T:82--&amp;gt;&lt;br /&gt;
* 35.54€/2 months&lt;br /&gt;
* 213.24€/year&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--T:83--&amp;gt;&lt;br /&gt;
&#039;&#039;&#039;30 mg dose&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--T:84--&amp;gt;&lt;br /&gt;
* 35.54€/40 days&lt;br /&gt;
* ~324.30€/year&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--T:85--&amp;gt;&lt;br /&gt;
&#039;&#039;&#039;40 mg dose&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--T:73--&amp;gt;&lt;br /&gt;
* 35.54€/30 days&lt;br /&gt;
* 426.48€/year&lt;br /&gt;
([https://www.galinos.gr/service/drugs/drawPackagePrice/15739 Pricemap])&lt;br /&gt;
|35.54€ -&amp;gt; 8.89€&lt;br /&gt;
|20mg/day (starting dose)&lt;br /&gt;
30-40mg/day&lt;br /&gt;
|A&lt;br /&gt;
|&lt;br /&gt;
* 1 pump of Tostran (&#039;&#039;&#039;0.5g&#039;&#039;&#039;) delivers 10 mg of T.&lt;br /&gt;
* 2 pumps of Tostran are 1 pump of Testogel (20.25mg of T)&lt;br /&gt;
* Can cause skin reactions.&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
==== GNRH Agonists ====&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
!Brand Name(s)&lt;br /&gt;
!Substance&lt;br /&gt;
! Cost&lt;br /&gt;
!Cost with Healthcare Coverage&lt;br /&gt;
!Dosage&lt;br /&gt;
!Safety&lt;br /&gt;
!Form&lt;br /&gt;
!Type&lt;br /&gt;
!Notes&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
====== [https://www.galinos.gr/web/drugs/main/drugs/Arvekap Arvekap] ======&lt;br /&gt;
|Triptorelin&lt;br /&gt;
| -&lt;br /&gt;
|~200/year?&lt;br /&gt;
|&lt;br /&gt;
|A?&lt;br /&gt;
|Injection&lt;br /&gt;
|GNRH Agonist&lt;br /&gt;
(indirectly) Stops testosterone AND estrogen production&lt;br /&gt;
|Also a puberty blocker&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
==== Other anti-androgens (optional) ====&lt;br /&gt;
These are used to block conversion of other androgens to DHT (which causes hair loss (hair) and body hair growth). They aren&#039;t general use Anti-Androgens.&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
!Brand Name(s)&lt;br /&gt;
!Substance&lt;br /&gt;
!Cost&lt;br /&gt;
!Cost with Healthcare Coverage&lt;br /&gt;
!Dosage&lt;br /&gt;
!Safety&lt;br /&gt;
!Form&lt;br /&gt;
!Type&lt;br /&gt;
!Notes&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
====== [https://www.galinos.gr/web/drugs/main/packages/26485 Dastidem], [https://www.galinos.gr/web/drugs/main/packages/25557 Rafuster], [https://www.galinos.gr/web/drugs/main/packages/25893 Duaride], [https://www.galinos.gr/web/drugs/main/packages/25894 Dustezor] ======&lt;br /&gt;
|Dutasteride&lt;br /&gt;
|7.90€/30 caps&lt;br /&gt;
|~6€/30 caps&lt;br /&gt;
|0.5mg/day (?/TBD)&lt;br /&gt;
|A-&lt;br /&gt;
|Capsule&lt;br /&gt;
| -&lt;br /&gt;
|High effectiveness. &lt;br /&gt;
Not to be confused with proper Anti-Androgens.&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== Nonbinary hrt *under construction* ==&lt;br /&gt;
&lt;br /&gt;
=== !!! disclaimer-warning about potential issues !!! ===&lt;br /&gt;
&lt;br /&gt;
=== General outline of nb hrt for amab and afab ===&lt;br /&gt;
&lt;br /&gt;
=== Medications ===&lt;br /&gt;
&lt;br /&gt;
==== Selective Estrogen Receptor Modulators (SERMs) ====&lt;br /&gt;
&lt;br /&gt;
* Tamoxifen is a selective estrogen receptor modulator (SERM). In some tissues such as the brain it activates estrogen receptors, which may help reduce dysphoria. In breast tissue it antagonizes estrogen receptors, preventing the formation of breast tissue if desired. There is some evidence that Tamoxifen inhibits memory, though the effects of taking it alongside regular estrogen are undocumented. Tamoxifen can cause cognitive dysfunction and increase your risk of stroke and pulmonary embolism. Tamoxifen may also be taken alongside 17β-estradiol, more research is needed. In this combination, estradiol should still have its effects (combating dysphoria in the brain, redistribution of body fat, smoother skin etc.) while tamoxifen prevents the growth of breast tissue.&lt;br /&gt;
* Raloxifene is another SERM. It is an estrogen receptor antagonist in breast tissue. It is an estrogen receptor agonist in bone and can be used to prevent osteoporosis. Raloxifene has been shown to reduce ERα expression in breast tissue in premenopausal women. As the synthesis of progesterone receptors (PR) is estrogen-regulated, raloxifene also decreases the expression of PR. Additionally, it was shown to decrease the presence of Ki-67, a biomarker for cell proliferation, in breast tissue of premenopausal women. As a result, it can be used to treat gynecomastia, and has been shown effective in reducing breast size in those with the condition. Raloxifene may promote feminine fat distribution: in a study on 56-66 year old postmenopausal women, there was an increase in fat in the legs and buttocks and a decrease in fat in the abdomen and trunk after 1 year on 60 mg/day raloxifene. It is not yet known how pronounced this effect is, as there have been no comparisons of body fat distribution between raloxifene and estradiol. Raloxifene may increase the risk of stroke and pulmonary embolism.&lt;br /&gt;
* Afimoxifene is a topical SERM and the primary metabolite of tamoxifen.&lt;br /&gt;
&lt;br /&gt;
==== Anti-androgens ====&lt;br /&gt;
&lt;br /&gt;
==== Bicalutamide ====&lt;br /&gt;
Bicalutamide is an  anti-androgen which is used mainly in the treatment of prostate cancer but can also be used to treat hirsutism, or as a component of hormone therapy in feminizing HRT, among other uses. It is nonsteroidal anti-androgen and a selective/pure antagonist of the androgen receptor. It has no other hormonal activity and does not lower androgen levels. Bicalutamide crosses the blood-brain barrier and blocks the effects of testosterone and dihydrotestosterone (DHT) both in the body and in the brain. While it has been observed that bicalutamide does not cross the blood-brain barrier in rats and dogs, this was found not to be the case in humans&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
In general Ralox seems the best idea based on overall effectiveness and less severe side effects compared to other SERMs. Most people on this kind of MtNB hrt seem to be using a combination of ralox (in place of estradiol) and bica [expand this + powers e1s schizo stuff?]&lt;br /&gt;
&lt;br /&gt;
== Legal ==&lt;br /&gt;
It is legal to buy anything without a diagnosis or a prescription (off the counter - OTC), Testosterone can be hit or miss, look for any product names mentioned (that have links attached to them/are blue in colour) [[HRT#Testosterone|here]].  &lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--T:86--&amp;gt;&lt;br /&gt;
You can also check the &#039;&#039;&#039;[https://diyon.top/map Trans-Friendly Pharmacies Map]&#039;&#039;&#039; for any pharmacies near you (this goes for both Transfem and Transmasc HRT). &lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--T:75--&amp;gt;&lt;br /&gt;
There is no minimum or maximum legal age for someone to start HRT. &lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--T:76--&amp;gt;&lt;br /&gt;
It is not legally mandatory for someone to have a diagnosis by a psychiatrist in order to medically transition.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--T:77--&amp;gt;&lt;br /&gt;
There is no legally mandatory time restriction for a psychiatrist to monitor you before diagnosing you.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--T:78--&amp;gt;&lt;br /&gt;
You don&#039;t legally need to be on HRT in order to be exempt from the [[army]], change your [[Legal|legal sex]], or to have a [[surgery]].&lt;br /&gt;
&lt;br /&gt;
== Other resources == &amp;lt;!--T:79--&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--T:80--&amp;gt;&lt;br /&gt;
* Simulator: https://www.estrannai.se/&lt;br /&gt;
* https://transfemscience.org/ (note, the authors of this site disagree with a lot of what they are saying, regardless, it is still interesting)&lt;br /&gt;
** Introduction to Hormone Therapy for Transfeminine People: https://transfemscience.org/articles/transfem-intro/&lt;br /&gt;
** Older simulator: https://transfemscience.org/misc/injectable-e2-simulator/&lt;br /&gt;
** Dosage calculator: https://transfemscience.org/misc/injectable-dose-vol-conc-conv/&lt;br /&gt;
* https://diyhrt.wiki/ (alt link: https://anarch.cc/transfeminine-diy-hrt-the-ultimate-guide-2/)&lt;br /&gt;
* https://hrtcafe.net/&lt;br /&gt;
* https://hrt.coffee/&lt;br /&gt;
* https://transharmreduction.org/ - useful for checking potency and quality of diy products.&lt;br /&gt;
* https://www.reddit.com/r/TransDIY/&lt;br /&gt;
* https://www.reddit.com/r/TransfemScience/&lt;br /&gt;
* https://crimethinc.com/2022/12/15/producing-transdermal-estrogen-a-do-it-yourself-guide (alt link: https://anarch.cc/producing-transdermal-estrogen-a-do-it-yourself-guide/, as above)&lt;br /&gt;
&lt;br /&gt;
==== Questionable resources ====&lt;br /&gt;
&lt;br /&gt;
* https://hrt.cat/ - info for making your own (you will probably not need it - version 1.0: https://hrtcafe.net/hrtcat/)&lt;br /&gt;
* https://groups.io/g/MTFHRT/wiki/29602 - Lena&#039;s guide (alt link: https://anarch.cc/mtf-hrt-ultimate-diy/)&lt;br /&gt;
* https://archive.ph/uQb8g - Noire Labs (alt link: https://anarch.cc/making-your-own-injections/, as above)&lt;br /&gt;
&lt;br /&gt;
==== Very questionable resources ====&lt;br /&gt;
&lt;br /&gt;
* https://archive.ph/cpy7k (alt link: https://anarch.cc/homebrewing-hormones-mtf-guide/, as above) - &#039;&#039;&#039;Potentially outdated.&#039;&#039;&#039;&lt;br /&gt;
&amp;lt;/translate&amp;gt;&lt;/div&gt;</summary>
		<author><name>Goblinmoder</name></author>
	</entry>
	<entry>
		<id>https://wiki.diyon.top/index.php?title=Doctors&amp;diff=1018</id>
		<title>Doctors</title>
		<link rel="alternate" type="text/html" href="https://wiki.diyon.top/index.php?title=Doctors&amp;diff=1018"/>
		<updated>2025-05-03T00:43:53Z</updated>

		<summary type="html">&lt;p&gt;Goblinmoder: changed anastasaki price&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{#seo:&lt;br /&gt;
|title_mode=replace&lt;br /&gt;
|title=Doctors&lt;br /&gt;
|description=List of doctors documented, most of which are from real life encounters, opinions are non-definitive.&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
== Ψυχίατροι ==&lt;br /&gt;
{| class=&amp;quot;wikitable sortable&amp;quot;&lt;br /&gt;
|+&lt;br /&gt;
!✅/🟨/🟧/❌&lt;br /&gt;
!Όνομα&lt;br /&gt;
!Περιοχή&lt;br /&gt;
!Δημόσιο/Ιδιωτικό&lt;br /&gt;
!Επικοινωνία&lt;br /&gt;
!Τιμή&lt;br /&gt;
!Περιοχή&lt;br /&gt;
!Διαδικτυακά&lt;br /&gt;
!Κριτικές&lt;br /&gt;
!Σημειώσεις&lt;br /&gt;
|-&lt;br /&gt;
|✅&lt;br /&gt;
|Καρατζαφέρης Λυκούργος&lt;br /&gt;
|Αθήνα / Διαδικτυακά&lt;br /&gt;
|Ιδιωτικό&lt;br /&gt;
|Σταθερό: 2177207765&lt;br /&gt;
Τηλέφωνο: 6944302577&lt;br /&gt;
|30-70 ευρώ, 1-2 συνεδρίες για γνωμάτευση.&lt;br /&gt;
|Αμφιτρύωνος 78, Αττική, 11853.&lt;br /&gt;
|Κάνει και online αλλά προτιμάει irl.&lt;br /&gt;
|&lt;br /&gt;
* 2 ✅&lt;br /&gt;
* 0 🟨&lt;br /&gt;
* 0 🟧&lt;br /&gt;
* 0 ❌&lt;br /&gt;
| -&lt;br /&gt;
|-&lt;br /&gt;
|✅&lt;br /&gt;
|Μαρία Αναστασάκη&lt;br /&gt;
|Ηράκλειο / Διαδικτυακά&lt;br /&gt;
|Ιδιωτικό&lt;br /&gt;
|Σταθερό: 2810223940&lt;br /&gt;
Τηλέφωνο: 6980566188&lt;br /&gt;
&lt;br /&gt;
E-mail: [mailto:anastasakitherapy@gmail.com anastasakitherapy@gmail.com]&lt;br /&gt;
|40Ε ανα συνεδρία / 90Ε (γνωμάτευση)&lt;br /&gt;
|Λεωφόρος Ιωνίας 136, Ηράκλειο [Δήμος], Ηράκλειο, 71305&lt;br /&gt;
|Ναι.&lt;br /&gt;
|&lt;br /&gt;
* 2 ✅&lt;br /&gt;
* 1 🟨&lt;br /&gt;
* 0 🟧&lt;br /&gt;
* 0 ❌&lt;br /&gt;
| Μπορεί να είναι δύσκολη η επικοινωνία.&lt;br /&gt;
|-&lt;br /&gt;
|✅&lt;br /&gt;
|Κατερίνα Χαλκιαδάκη&lt;br /&gt;
|Ηράκλειο / Διαδικτυακά&lt;br /&gt;
|Ιδιωτικό&lt;br /&gt;
|Σταθερό: 2810223940&lt;br /&gt;
|40Ε ανα συνεδρία / 90Ε (γνωμάτευση)&lt;br /&gt;
|Λεωφόρος Ιωνίας 136, Ηράκλειο [Δήμος], Ηράκλειο, 71305&lt;br /&gt;
|Ναι.&lt;br /&gt;
|&lt;br /&gt;
* 1 ✅&lt;br /&gt;
* 0 🟨&lt;br /&gt;
* 0 🟧&lt;br /&gt;
* 0 ❌&lt;br /&gt;
|Συνάδελφος της Αναστασάκη.&lt;br /&gt;
|-&lt;br /&gt;
|✅&lt;br /&gt;
|Ελένη Ζαχάρη&lt;br /&gt;
|Αθήνα&lt;br /&gt;
|Ιδιωτικό&lt;br /&gt;
|Τηλέφωνο: 6942493053&lt;br /&gt;
|50-70€ το ραντεβού (γνωμάτευση σε 2 συνεδρίες)&lt;br /&gt;
|Χατζηκώστα 8Α, Πλατεία Μαβίλη, Αττική.&lt;br /&gt;
|Ναι.&lt;br /&gt;
|&lt;br /&gt;
* 1 ✅&lt;br /&gt;
* 0 🟨&lt;br /&gt;
* 0 🟧&lt;br /&gt;
* 0 ❌&lt;br /&gt;
| -&lt;br /&gt;
|-&lt;br /&gt;
|✅&lt;br /&gt;
|Γεωργιλαδάκης Ιωάννης&lt;br /&gt;
|Ηράκλειο&lt;br /&gt;
|Ιδιωτικό&lt;br /&gt;
|Σταθερό: 2107442019&lt;br /&gt;
|50€ το ραντεβού. (Στο [https://www.doctoranytime.gr/d/Psychiatros/georgiladakis-ioannis site]&amp;lt;nowiki&amp;gt; αναφέρεται το εξής: &amp;quot;Πιστοποιητικά/Βεβαιώσεις | Από 20€ έως 40€&amp;quot;)&amp;lt;/nowiki&amp;gt;&lt;br /&gt;
|Πλατεία Ρήγα Φεραίου 13, Ηράκλειο, Κρήτη.&lt;br /&gt;
|Λογικά όχι πια (writer&#039;s conclusion, citation needed)&lt;br /&gt;
|&lt;br /&gt;
* 1 ✅&lt;br /&gt;
* 0 🟨&lt;br /&gt;
* 0 🟧&lt;br /&gt;
* 0 ❌&lt;br /&gt;
| -&lt;br /&gt;
|-&lt;br /&gt;
|✅&lt;br /&gt;
|Πάγκαλος Γεώργιος&lt;br /&gt;
|Θεσσαλονίκη&lt;br /&gt;
|Ιδιωτικό&lt;br /&gt;
|Τηλέφωνο: 6933091536&lt;br /&gt;
|100€ ανα συνεδρία &lt;br /&gt;
|Καρόλου Ντηλ 25, 54623&lt;br /&gt;
|Ναι.&lt;br /&gt;
|&lt;br /&gt;
* 1 ✅&lt;br /&gt;
* 0 🟨&lt;br /&gt;
* 0 🟧&lt;br /&gt;
* 0 ❌&lt;br /&gt;
| -&lt;br /&gt;
|-&lt;br /&gt;
|🟨&lt;br /&gt;
|Δημήτρης Ξυλάς&lt;br /&gt;
|Θεσσαλονίκη&lt;br /&gt;
|Ιδιωτικό&lt;br /&gt;
|Σταθερό: 2310236236&lt;br /&gt;
|70€ αναγκαστικό ψυχομετρικό τεστ και 60€ η συνεδρία&lt;br /&gt;
|Εγνατία 70 &amp;amp; Χαλκέων 16, 546 24&lt;br /&gt;
| -&lt;br /&gt;
|&lt;br /&gt;
* 0 ✅&lt;br /&gt;
* 1 🟨&lt;br /&gt;
* 0 🟧&lt;br /&gt;
* 0 ❌&lt;br /&gt;
|Δεν είναι NB friendly.&lt;br /&gt;
|-&lt;br /&gt;
|🟨&lt;br /&gt;
|Σταυριανάκος Κυριάκος&lt;br /&gt;
|Αθήνα / Διαδικτυακά&lt;br /&gt;
|Ιδιωτικό&lt;br /&gt;
| Σταθερό: 2108064113&lt;br /&gt;
| 70€ ανα ραντεβού (επι 6 μήνες gatekeeping)&lt;br /&gt;
| Θησέως 15-17, Μαρούσι 151 24&lt;br /&gt;
| Ναι.&lt;br /&gt;
|&lt;br /&gt;
* 0 ✅&lt;br /&gt;
* 2 🟨&lt;br /&gt;
* 0 🟧&lt;br /&gt;
* 0 ❌&lt;br /&gt;
| Διάβασε καλά την τιμή.&lt;br /&gt;
|-&lt;br /&gt;
|🟧&lt;br /&gt;
|Μεταξάς Σπυρίδων&lt;br /&gt;
|Αθήνα&lt;br /&gt;
|Ιδιωτικό&lt;br /&gt;
|Σταθερό: 2107116438&lt;br /&gt;
|70 ευρώ με κάρτα, 60 ευρώ χωρίς.&lt;br /&gt;
|Ρόδου 17, Μαρούσι, Αττική.&lt;br /&gt;
|Όχι.&lt;br /&gt;
|&lt;br /&gt;
* 1 ✅&lt;br /&gt;
* 0 🟨&lt;br /&gt;
* 0 🟧&lt;br /&gt;
* 1 ❌&lt;br /&gt;
| Με MTF ήταν super friendly, ενώ με FTM το ακριβώς αντίθετο. &lt;br /&gt;
|-&lt;br /&gt;
|🟧 &lt;br /&gt;
|Σαρρηγιανίδης Αλέξιος&lt;br /&gt;
|Θεσσαλονίκη&lt;br /&gt;
|Δημόσιο&lt;br /&gt;
| -&lt;br /&gt;
| -&lt;br /&gt;
| Ιπποκράτειο Θεσσαλονίκης&lt;br /&gt;
| Όχι.&lt;br /&gt;
|&lt;br /&gt;
* 0 ✅&lt;br /&gt;
* 0 🟨&lt;br /&gt;
* 1 🟧&lt;br /&gt;
* 0 ❌&lt;br /&gt;
| Δεν είναι κακός απλώς προτείνει τον Πάγκαλο (δλ. πήγαινε κατ&#039; ευθείαν εκεί) και έπειτα τον &#039;&#039;Μπουφίδη&#039;&#039; (γι&#039; αυτό και είναι 🟧 και όχι 🟨/✅) &lt;br /&gt;
|-&lt;br /&gt;
|❌&lt;br /&gt;
|Φλούδας Γεώργιος&lt;br /&gt;
|Αθήνα&lt;br /&gt;
|Δημόσιο&lt;br /&gt;
|[[File:Floudaskeeper.jpg|thumb|172x172px]]&lt;br /&gt;
| [[File:Flouda.png|thumb|163x163px|courtesy of Αθανασιάδης Λουκάς]]&lt;br /&gt;
| [https://media.discordapp.net/attachments/785742455928520725/1290054603814993930/hgf.png?ex=66fb1079&amp;amp;is=66f9bef9&amp;amp;hm=0441ce6ca9438130027d61078d2b76bc9abaa83ad99e97e7718a05554e2221f3&amp;amp;=&amp;amp;format=webp&amp;amp;quality=lossless&amp;amp;width=687&amp;amp;height=305 206]&lt;br /&gt;
| Όχι.&lt;br /&gt;
|&lt;br /&gt;
* 1 ✅&lt;br /&gt;
* 1 🟨&lt;br /&gt;
* 0 🟧&lt;br /&gt;
* 6 ❌&lt;br /&gt;
|Ο βασιλιάς του Gatekeeping, zero tolenace στο diy.&lt;br /&gt;
|-&lt;br /&gt;
|❌&lt;br /&gt;
|Απαζίδου Παρθένα&lt;br /&gt;
|Θεσσαλονίκη&lt;br /&gt;
|Δημόσιο&lt;br /&gt;
| -&lt;br /&gt;
| -&lt;br /&gt;
| Νοσοκομείο Αφροδισίων  &amp;amp; Δερματικών Νόσων Θεσσαλονίκης (παράρτημα Ιπποκράτειου στην Δελφών 124)&lt;br /&gt;
| Όχι.&lt;br /&gt;
|&lt;br /&gt;
* 0 ✅&lt;br /&gt;
* 0 🟨&lt;br /&gt;
* 0 🟧&lt;br /&gt;
* 1 ❌&lt;br /&gt;
|Δεν γνωρίζει απο &amp;quot;τρανς θέματα&amp;quot;.&lt;br /&gt;
|-&lt;br /&gt;
|❌ &lt;br /&gt;
|Λουκάς Αθανασιάδης&lt;br /&gt;
|Θεσσαλονίκη&lt;br /&gt;
|Δημόσιο&lt;br /&gt;
| -&lt;br /&gt;
| -&lt;br /&gt;
| -&lt;br /&gt;
| Όχι.&lt;br /&gt;
|&lt;br /&gt;
* 0 ✅&lt;br /&gt;
* 0 🟨&lt;br /&gt;
* 0 🟧&lt;br /&gt;
* 3 ❌&lt;br /&gt;
|Gatekeeping, zero tolenace στο diy, σπατάλη 2+ χρόνων.&lt;br /&gt;
|-&lt;br /&gt;
|❌&lt;br /&gt;
|Μπουφίδης Σταύρος&lt;br /&gt;
|Θεσσαλονίκη&lt;br /&gt;
|Ιδιωτικό&lt;br /&gt;
|Σταθερό: 2310253793&lt;br /&gt;
|&amp;quot;100€ μετρητά, 80€ κά- α όχι, συγνώμη, 80€ μέτρητα. 100€ κάρτα&amp;quot;&lt;br /&gt;
|Ερμού 36, Θεσσαλονίκη, 54623&lt;br /&gt;
|Όχι.&lt;br /&gt;
|&lt;br /&gt;
* 0 ✅&lt;br /&gt;
* 0 🟨&lt;br /&gt;
* 0 🟧&lt;br /&gt;
* 2 ❌&lt;br /&gt;
|Αν σ&#039; αρέσει να πληρώνεις για να σε κάνουν gatekeep, είναι τέλειος.&lt;br /&gt;
|-&lt;br /&gt;
|❌&lt;br /&gt;
|Καλλιόπη Προκοπάκη&lt;br /&gt;
|Αθήνα&lt;br /&gt;
|Ιδιωτικό&lt;br /&gt;
| -&lt;br /&gt;
| -&lt;br /&gt;
| -&lt;br /&gt;
| -&lt;br /&gt;
|&lt;br /&gt;
* 0 ✅&lt;br /&gt;
* 0 🟨&lt;br /&gt;
* 0 🟧&lt;br /&gt;
* 1 ❌&lt;br /&gt;
|Είναι κατά τον γάμο ομόφυλων ζευγαριών.&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== Ψυχολόγοι ==&lt;br /&gt;
{| class=&amp;quot;wikitable sortable&amp;quot;&lt;br /&gt;
|+&lt;br /&gt;
!✅/🟨/🟧/❌&lt;br /&gt;
!Όνομα&lt;br /&gt;
!Περιοχή&lt;br /&gt;
!Δημόσιο/Ιδιωτικό&lt;br /&gt;
!Επικοινωνία&lt;br /&gt;
!Τιμή&lt;br /&gt;
!Περιοχή&lt;br /&gt;
!Διαδικτυακά&lt;br /&gt;
!Κριτικές&lt;br /&gt;
!Σημειώσεις&lt;br /&gt;
|-&lt;br /&gt;
|✅&lt;br /&gt;
|Γεωργία Καμπόλη&lt;br /&gt;
|Άνω Λιόσια / Διαδικτυακά&lt;br /&gt;
|Ιδιωτικό&lt;br /&gt;
| Τηλέφωνο: 6931170170 &lt;br /&gt;
Email: geokaboli@gmail.com &lt;br /&gt;
&lt;br /&gt;
Email (στην ιστοσελίδα): info@kabolipsychologist.gr&lt;br /&gt;
| -&lt;br /&gt;
| Οδ. Ελύτη 2, Άνω Λιόσια 133 41&lt;br /&gt;
| Ναι.&lt;br /&gt;
|&lt;br /&gt;
* 1 ✅&lt;br /&gt;
* 0 🟨&lt;br /&gt;
* 0 🟧&lt;br /&gt;
* 0 ❌&lt;br /&gt;
| -&lt;br /&gt;
|-&lt;br /&gt;
|❌&lt;br /&gt;
|Γιαντσίδου Βασιλική&lt;br /&gt;
|Ορεστιάδα&lt;br /&gt;
|Ιδιωτικό&lt;br /&gt;
| -&lt;br /&gt;
| -&lt;br /&gt;
| -&lt;br /&gt;
| -&lt;br /&gt;
| -&lt;br /&gt;
| Στον κώλο της μαϊμούς, δεν θα βγάλεις άκρη, why bother?&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== Παιδοψυχίατροι ==&lt;br /&gt;
{| class=&amp;quot;wikitable sortable&amp;quot;&lt;br /&gt;
|+&lt;br /&gt;
!✅/🟨/🟧/❌&lt;br /&gt;
!Όνομα&lt;br /&gt;
!Περιοχή&lt;br /&gt;
!Δημόσιο/Ιδιωτικό&lt;br /&gt;
!Επικοινωνία&lt;br /&gt;
!Τιμή&lt;br /&gt;
!Περιοχή&lt;br /&gt;
!Διαδικτυακά&lt;br /&gt;
!Κριτικές&lt;br /&gt;
!Σημειώσεις&lt;br /&gt;
|-&lt;br /&gt;
|❌&lt;br /&gt;
|Στέλλα/Στυλιανή Βαγιωνά&lt;br /&gt;
|Θεσσαλονίκη&lt;br /&gt;
|Ιδιωτικό&lt;br /&gt;
| -&lt;br /&gt;
|70€ (χωρίς απόδειξη)&lt;br /&gt;
| -&lt;br /&gt;
| -&lt;br /&gt;
|&lt;br /&gt;
* 0 ✅&lt;br /&gt;
* 0 🟨&lt;br /&gt;
* 0 🟧&lt;br /&gt;
* 1 ❌&lt;br /&gt;
| -&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== Ενδοκρινολόγοι ==&lt;br /&gt;
{| class=&amp;quot;wikitable sortable&amp;quot;&lt;br /&gt;
|+&lt;br /&gt;
!✅/🟨/🟧/❌&lt;br /&gt;
!Όνομα&lt;br /&gt;
!Περιοχή&lt;br /&gt;
!Δημόσιο/Ιδιωτικό&lt;br /&gt;
!Επικοινωνία&lt;br /&gt;
!Τιμή&lt;br /&gt;
!Περιοχή&lt;br /&gt;
!Διαδικτυακά&lt;br /&gt;
!Κριτικές&lt;br /&gt;
!Σημειώσεις&lt;br /&gt;
|-&lt;br /&gt;
|🟨&lt;br /&gt;
|Κούκκου Ευτυχία&lt;br /&gt;
|Αθήνα&lt;br /&gt;
|Δημόσιο&lt;br /&gt;
| -&lt;br /&gt;
| -&lt;br /&gt;
| Γ.Ν. Έλενα Βενιζέλου, Αθήνα 115 21&lt;br /&gt;
| Όχι.&lt;br /&gt;
|&lt;br /&gt;
* 4 ✅&lt;br /&gt;
* 0 🟨&lt;br /&gt;
* 1 🟧&lt;br /&gt;
* 1 ❌&lt;br /&gt;
| - Θέλει διάγνωση. &lt;br /&gt;
- Κάνει περίεργο misgendering μερικές φορές.&lt;br /&gt;
|-&lt;br /&gt;
|✅&lt;br /&gt;
|Θεώδορος Θωμάς&lt;br /&gt;
|Αθήνα&lt;br /&gt;
|Ιδιωτικό&lt;br /&gt;
| Σταθερό: 2106436115&lt;br /&gt;
| 80-100€ η συνεδρία&lt;br /&gt;
| Λεωφ. Κηφισίας 5, 115 23 Αμπελόκηποι, Αθήνα&lt;br /&gt;
| -&lt;br /&gt;
|&lt;br /&gt;
* 5 ✅&lt;br /&gt;
* 1 🟨&lt;br /&gt;
* 0 🟧&lt;br /&gt;
* 0 ❌&lt;br /&gt;
| - Θέλει διάγνωση. &lt;br /&gt;
- Έχει γράψει &#039;&#039;&#039;50mg androcur&#039;&#039;&#039; ανά &#039;&#039;&#039;μέρα&#039;&#039;&#039;. Παρ&#039; όλα αυτά δεν έχει υπάρξει άλλο περιστατικό σαν αυτό, οπότε &#039;&#039;&#039;δεν είναι fully conclusive&#039;&#039;&#039; το &amp;quot;Έγραψε παράξενη δοσολογία μια φορά σε μια κοπέλα.&amp;quot; &lt;br /&gt;
|-&lt;br /&gt;
|✅&lt;br /&gt;
|Σκαράκης Νικήτας&lt;br /&gt;
|Αθήνα&lt;br /&gt;
|Ιδιωτικό&lt;br /&gt;
| Σταθερό:  2107117965&lt;br /&gt;
| 50€ η συνεδρία&lt;br /&gt;
| Κυκλαμίνων 7 (Περιοχή Αγίου Ιεροθέου), Περιστέρι, Αττική&lt;br /&gt;
| Ναι. (60€ η συνεδρία)&lt;br /&gt;
|&lt;br /&gt;
* 1 ✅&lt;br /&gt;
* 0 🟨&lt;br /&gt;
* 0 🟧&lt;br /&gt;
* 0 ❌&lt;br /&gt;
| - Θέλει διάγνωση.&lt;br /&gt;
|-&lt;br /&gt;
|✅&lt;br /&gt;
|Στέργιος Κιούρας&lt;br /&gt;
|Θεσσαλονίκη&lt;br /&gt;
|Ιδιωτικό&lt;br /&gt;
| Σταθερό: 2310256498&lt;br /&gt;
| 50€ η συνεδρία&lt;br /&gt;
| Ερμού 36, Θεσσαλονίκη 546 23&lt;br /&gt;
| -&lt;br /&gt;
|&lt;br /&gt;
* 1 ✅&lt;br /&gt;
* 0 🟨&lt;br /&gt;
* 0 🟧&lt;br /&gt;
* 0 ❌&lt;br /&gt;
| - &#039;&#039;&#039;Δεν ζήτησε&#039;&#039;&#039; διάγνωση.&lt;br /&gt;
|-&lt;br /&gt;
|🟨&lt;br /&gt;
|Θεμιστοκλής Καλτσάς&lt;br /&gt;
|Θεσσαλονίκη&lt;br /&gt;
|Ιδιωτικό&lt;br /&gt;
| Σταθερό: 2310238719&lt;br /&gt;
| 50€ η συνεδρία&lt;br /&gt;
| Παλαιών Πατρών Γερμανού 21, Θεσσαλονίκη&lt;br /&gt;
| -&lt;br /&gt;
|&lt;br /&gt;
* 1 ✅&lt;br /&gt;
* 1 🟨&lt;br /&gt;
* 0 🟧&lt;br /&gt;
* 0 ❌&lt;br /&gt;
| - Δεν έχει θέμα με DIY, &#039;&#039;&#039;δεν ζήτησε άμεσα&#039;&#039;&#039; διάγνωση, αλλά &#039;&#039;&#039;την θέλει&#039;&#039;&#039; γενικότερα (δλ. αν δεν έχεις θα στη ζητήσει μελλοντικά μεσω e-mail)&lt;br /&gt;
- Έχει θέμα με τα &amp;quot;υψηλά&amp;quot; επίπεδα (π.χ. κανονικά pg/ml e2 στην μονοθεραπεία με injections είναι περίεργα γι&#039; αυτόν)&lt;br /&gt;
- Ζητάει διάγνωση στα άτομα που δεν λαμβάνουν DIY HRT.&lt;br /&gt;
- Ημι-συχνό misgendering.&lt;br /&gt;
|-&lt;br /&gt;
|✅&lt;br /&gt;
|Παναγιώτης Μ. Μπουντούρης&lt;br /&gt;
|Σύρος&lt;br /&gt;
|Ιδιωτικό&lt;br /&gt;
|Σταθερό: 2281082030&lt;br /&gt;
Κινητό: 6946545831&lt;br /&gt;
|30€ η πρώτη συνεδρία&lt;br /&gt;
10€ η συνταγή&lt;br /&gt;
|Κλεισθένους 15, Ερμούπολη, 84100, Κυκλάδων&lt;br /&gt;
| -&lt;br /&gt;
|&lt;br /&gt;
* 1 ✅&lt;br /&gt;
* 0 🟨&lt;br /&gt;
* 0 🟧&lt;br /&gt;
* 0 ❌&lt;br /&gt;
| -&lt;br /&gt;
|-&lt;br /&gt;
|🟨&lt;br /&gt;
|Κωνσταντίνος Α. Τούλης&lt;br /&gt;
|Θεσσαλονίκη&lt;br /&gt;
|Ιδιωτικό&lt;br /&gt;
|Τηλέφωνο: 2310222799&lt;br /&gt;
|50€ η συνεδρία&lt;br /&gt;
|Μητροπόλεως 73, Θεσσαλονίκη 546 22&lt;br /&gt;
| -&lt;br /&gt;
|&lt;br /&gt;
* 0 ✅&lt;br /&gt;
* 1 🟨&lt;br /&gt;
* 0 🟧&lt;br /&gt;
* 0 ❌&lt;br /&gt;
| - Θέλει διάγνωση.&lt;br /&gt;
|-&lt;br /&gt;
|🟨&lt;br /&gt;
|Γεώργιος Α. Κανάκης&lt;br /&gt;
|Αθήνα&lt;br /&gt;
|Ιδιωτικό&lt;br /&gt;
|Σταθερό: 2107709248&lt;br /&gt;
|&amp;lt;!-- we don&#039;t even fucking know --&amp;gt;&lt;br /&gt;
|Τσόχα 15-17, Αμπελόκηποι &lt;br /&gt;
| -&lt;br /&gt;
| -&lt;br /&gt;
| - Έχει ακουστεί πως έχει παραβιάσει την ανωνυμία δεδομένων.&lt;br /&gt;
|-&lt;br /&gt;
|❌&lt;br /&gt;
|Πουλάκος Πάυλος&lt;br /&gt;
|Θεσσαλονίκη&lt;br /&gt;
|Ιδιωτικό&lt;br /&gt;
|Σταθερό: 2105579147&lt;br /&gt;
|50€ η συνεδρία &lt;br /&gt;
|Τσιμισκή Ιωάννη 69, Αγία Σοφία, 546 22&lt;br /&gt;
| -&lt;br /&gt;
|&lt;br /&gt;
* 0 ✅&lt;br /&gt;
* 0 🟨&lt;br /&gt;
* 0 🟧&lt;br /&gt;
* 1 ❌&lt;br /&gt;
| - 100mg cypro ανά μέρα χωρίς προειδοποίηση στο cyclacur για τα πορτοκαλί/καφέ χάπια (πολύ κακό)&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== Δερματολόγοι/Αφροδισιολόγοι/Laser Κλινικές ==&lt;br /&gt;
{| class=&amp;quot;wikitable sortable&amp;quot;&lt;br /&gt;
|+&lt;br /&gt;
!✅/🟨/🟧/❌&lt;br /&gt;
!Όνομα&lt;br /&gt;
!Περιοχή&lt;br /&gt;
!Είδος&lt;br /&gt;
!Δημόσιο/Ιδιωτικό&lt;br /&gt;
!Επικοινωνία&lt;br /&gt;
!Τιμή&lt;br /&gt;
!Διαδικτυακά&lt;br /&gt;
!Κριτικές&lt;br /&gt;
!Σημειώσεις&lt;br /&gt;
|-&lt;br /&gt;
|❌&lt;br /&gt;
|Ζαχαρίας Ι. Ανδρεαδάκης&lt;br /&gt;
|Αθήνα&lt;br /&gt;
|Δερματολόγος/Αφροδισιολόγος/Laser&lt;br /&gt;
|Ιδιωτικό&lt;br /&gt;
| -&lt;br /&gt;
| -&lt;br /&gt;
| -&lt;br /&gt;
|&lt;br /&gt;
* 0 ✅&lt;br /&gt;
* 0 🟨&lt;br /&gt;
* 0 🟧&lt;br /&gt;
* 1 ❌&lt;br /&gt;
| -&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== Χειρούργοι ==&lt;br /&gt;
{| class=&amp;quot;wikitable sortable&amp;quot;&lt;br /&gt;
|+&lt;br /&gt;
!✅/🟨/🟧/❌&lt;br /&gt;
!Όνομα&lt;br /&gt;
!Περιοχή&lt;br /&gt;
!Δημόσιο/Ιδιωτικό&lt;br /&gt;
!Επικοινωνία&lt;br /&gt;
!Τιμή&lt;br /&gt;
!Περιοχή&lt;br /&gt;
!Διαδικτυακά&lt;br /&gt;
!Κριτικές&lt;br /&gt;
!Σημειώσεις&lt;br /&gt;
|-&lt;br /&gt;
|✅&lt;br /&gt;
|Ηλίας Μεξής&lt;br /&gt;
|Αθήνα&lt;br /&gt;
|Ιδιωτικό&lt;br /&gt;
| Σταθερό: 2114068315&lt;br /&gt;
| Top surgery ~3000€&lt;br /&gt;
|Αγ. Θεοδώρων 10, 14562 Κηφισιά&lt;br /&gt;
| -&lt;br /&gt;
|&lt;br /&gt;
* 1 ✅&lt;br /&gt;
* 0 🟨&lt;br /&gt;
* 0 🟧&lt;br /&gt;
* 0 ❌&lt;br /&gt;
| - Δεν ζητάει γνωμάτευση.&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== Δικηγόροι ==&lt;br /&gt;
{| class=&amp;quot;wikitable sortable&amp;quot;&lt;br /&gt;
|+&lt;br /&gt;
!✅/🟨/🟧/❌&lt;br /&gt;
!Όνομα&lt;br /&gt;
!Περιοχή&lt;br /&gt;
!Δημόσιο/Ιδιωτικό&lt;br /&gt;
!Επικοινωνία&lt;br /&gt;
!Τιμή&lt;br /&gt;
!Περιοχή&lt;br /&gt;
!Διαδικτυακά&lt;br /&gt;
!Κριτικές&lt;br /&gt;
!Σημειώσεις&lt;br /&gt;
|-&lt;br /&gt;
|✅&lt;br /&gt;
|Αθηνά Καλογρίδη&lt;br /&gt;
|Θεσσαλονίκη&lt;br /&gt;
|Ιδιωτικό&lt;br /&gt;
| Σταθερό: 2310220704&lt;br /&gt;
| 125€ αίτηση&lt;br /&gt;
125€ δικαστήριο&lt;br /&gt;
43€ εισαγγελέας&lt;br /&gt;
| Κομνηνών 20, Θεσσαλονίκη, 54624, ΘΕΣΣΑΛΟΝΙΚΗΣ&lt;br /&gt;
| -&lt;br /&gt;
|&lt;br /&gt;
* 1 ✅&lt;br /&gt;
* 0 🟨&lt;br /&gt;
* 0 🟧&lt;br /&gt;
* 0 ❌&lt;br /&gt;
| -&lt;br /&gt;
|}&lt;/div&gt;</summary>
		<author><name>Goblinmoder</name></author>
	</entry>
	<entry>
		<id>https://wiki.diyon.top/index.php?title=HRT&amp;diff=1017</id>
		<title>HRT</title>
		<link rel="alternate" type="text/html" href="https://wiki.diyon.top/index.php?title=HRT&amp;diff=1017"/>
		<updated>2025-05-03T00:33:46Z</updated>

		<summary type="html">&lt;p&gt;Goblinmoder: finasteride change/placeholder&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{#seo:&lt;br /&gt;
|title_mode=replace&lt;br /&gt;
|title=HRT&lt;br /&gt;
|description=We are open to discussion and actively on-going changes in formatting and contents of this Page and Website (in general). The e-mail address to refer to is fox@diyon.top&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
&amp;lt;languages/&amp;gt;&lt;br /&gt;
&amp;lt;translate&amp;gt;&lt;br /&gt;
&amp;lt;!--T:41--&amp;gt;&lt;br /&gt;
After around a month on HRT some of your ranges in your [[Blood Testing|blood test]] should be within desired ranges.&lt;br /&gt;
&lt;br /&gt;
== Disclaimers ==&lt;br /&gt;
 To clarify on &#039;&#039;&#039;dosages&#039;&#039;&#039;, the values mentioned below are rather speculative and most are based on &#039;&#039;&#039;personal experiences&#039;&#039;&#039; or &#039;&#039;&#039;(diy)hrt pages/websites/papers&#039;&#039;&#039;. Therefore it is encouraged to do [[Blood Testing|blood tests]] and if possible, check with an [[Doctors#Ενδοκρινολόγοι|endocrinologist]] (we also suggest [[Doctors]] that can help with such cases), especially if you have any specific &#039;&#039;&#039;health conditions&#039;&#039;&#039;. &lt;br /&gt;
&#039;&#039;&#039;Pricemaps&#039;&#039;&#039; are there to evaluate prices through &#039;&#039;&#039;[https://galinos.gr galinos.gr]&#039;&#039;&#039; (in case something is outdated, look for the green line that says &amp;quot;Λιανική&amp;quot;)&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Questionable resources&#039;&#039;&#039; are to be taken with a grain of salt on every aspect of their contents.&lt;br /&gt;
&lt;br /&gt;
We are open to discussion and actively on-going changes in formatting and contents of this Page and Website (in general). The e-mail address to refer to is &#039;&#039;&#039;fox@diyon.top&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
== Blood Levels ==&lt;br /&gt;
&lt;br /&gt;
==== Refer to the [[Blood Testing]] page. ====&lt;br /&gt;
== Transfem ==&lt;br /&gt;
Taking hormone blockers ([[HRT#Antiandrogens and GNRH Agonists|GNRH Agonists]], e.g: Arvekap) or any Anti Androgens (e.g: Aldactone, Androcur) &#039;&#039;&#039;without [[HRT#Estrogens|Estrogens]]&#039;&#039;&#039; is generally discouraged. (This is &#039;&#039;&#039;non-definitive&#039;&#039;&#039; for Enby folks)&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--T:44--&amp;gt;&lt;br /&gt;
=== Monotherapy ===&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|+&lt;br /&gt;
!Type&lt;br /&gt;
!Commercial Names&lt;br /&gt;
!Dosage&lt;br /&gt;
!Notes&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
====== Sublingual (E Valerate or Hemihydrate) ======&lt;br /&gt;
|Cyclacur (EV), Estrofem (EH, imported), Trisequens (12 pills 2mg EH, 10 pills norgestrel, 6 pills 1mg EH)&lt;br /&gt;
|&amp;gt;=8-12mg/day&lt;br /&gt;
|While it is possible, even with a smaller dosage (&#039;&#039;&#039;at least 6mg&#039;&#039;&#039;), it&#039;s not that common. Ideally, use your blood tests to &#039;&#039;&#039;minmax&#039;&#039;&#039; your doses.&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
====== Injectable Estradiol Valerate (EV) ======&lt;br /&gt;
|Neofollin (can be ordered from pharmacies near Czechia, or aptekaapo.com &#039;&#039;&#039;but they’re not on hrtcafe&#039;&#039;&#039;, not tested in Greece), Delestrogen (Vial, unavailable), Progynon Depot (Ampules, unavailable), [[File:What-excuse-me.gif|thumb|[[HRT#Other resources|my honest reaction]]]]&lt;br /&gt;
|5-7mg/5 days&lt;br /&gt;
|&lt;br /&gt;
* Due to the large spikes in levels combined with the short [https://en.wikipedia.org/wiki/Biological_half-life half-life] it is not recommended for dosages to surpass the 5 day mark because it may cause menopause symptoms.&lt;br /&gt;
* Branded versions of this medication are not available in greece.&lt;br /&gt;
* The ampules contain a certain mg and do not allow for larger dosages, they are not re-usable. It is recommended to use a vial with a cap.&lt;br /&gt;
* Look for &#039;&#039;&#039;[https://arc-w.nihr.ac.uk/Wordpress/wp-content/uploads/2015/07/Low-dead-space-syringes.png syringe dead space]([[HRT#:~:text=* = It has been mentioned that syringes account for dead space, although that is not 100% certain.|*]])&#039;&#039;&#039;, e.g. if there&#039;s &#039;&#039;&#039;0.05mL&#039;&#039;&#039; remaining after injecting, draw &#039;&#039;&#039;+0.05mL&#039;&#039;&#039; from the vial.&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
====== Injectable Estradiol Cypionate (EC) ======&lt;br /&gt;
|[[File:What-excuse-me.gif|thumb|[[HRT#Other resources|my honest reaction]]]]Depo-Estradiol (US only, unavailable),&lt;br /&gt;
|5-7mg/7 days&lt;br /&gt;
|&lt;br /&gt;
* Look for &#039;&#039;&#039;[https://arc-w.nihr.ac.uk/Wordpress/wp-content/uploads/2015/07/Low-dead-space-syringes.png syringe dead space]([[HRT#:~:text=* = It has been mentioned that syringes account for dead space, although that is not 100% certain.|*]])&#039;&#039;&#039;, e.g. if there&#039;s &#039;&#039;&#039;0.05mL&#039;&#039;&#039; remaining after injecting, draw &#039;&#039;&#039;+0.05mL&#039;&#039;&#039; from the vial.&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
====== Injectable Estradiol Enanthate (EEn) ======&lt;br /&gt;
|[[File:What-excuse-me.gif|thumb|[[HRT#Other resources|my honest reaction]]]]&lt;br /&gt;
|4-7mg/7 days&lt;br /&gt;
7-10mg/10 days (7.2mg usually, depending on the vial, it&#039;s optimal because drawing cents of mL are hard to get right)&lt;br /&gt;
|&lt;br /&gt;
* You can multiply the weekly dosage by 2, which lasts up to 14 days (as much as the [https://en.wikipedia.org/wiki/Biological_half-life half-life] of Enanthate)&lt;br /&gt;
* Look for &#039;&#039;&#039;[https://arc-w.nihr.ac.uk/Wordpress/wp-content/uploads/2015/07/Low-dead-space-syringes.png syringe dead space]([[HRT#:~:text=* = It has been mentioned that syringes account for dead space, although that is not 100% certain.|*]])&#039;&#039;&#039;, e.g. if there&#039;s &#039;&#039;&#039;0.05mL&#039;&#039;&#039; remaining after injecting, draw &#039;&#039;&#039;+0.05mL&#039;&#039;&#039; from the vial.&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
====== Injectable Estradiol Undecylate (EU/EUn) ======&lt;br /&gt;
|[[File:What-excuse-me.gif|thumb|[[HRT#Other resources|my honest reaction]]]]&lt;br /&gt;
|There&#039;s not enough information on dosage. The frequency of those may differ according to the oil used (MCT/Castor oil). Indicative Dosages:&lt;br /&gt;
15-20mg/2 weeks&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--T:45--&amp;gt;&lt;br /&gt;
20-40mg+/4 weeks&lt;br /&gt;
|&lt;br /&gt;
* There&#039;s not enough information on its [[wikipedia:Biological_half-life|half-life]], a higher dosage can be administered that can last up to 20-30 days.&lt;br /&gt;
* [[wikipedia:Intramuscular_injection|IM injections]] last longer so they give better levels during the same period of time per injection.&lt;br /&gt;
* Needs at least 90 days to reach stable levels.&lt;br /&gt;
* Look for &#039;&#039;&#039;[https://arc-w.nihr.ac.uk/Wordpress/wp-content/uploads/2015/07/Low-dead-space-syringes.png syringe dead space]([[HRT#:~:text=* = It has been mentioned that syringes account for dead space, although that is not 100% certain.|*]])&#039;&#039;&#039;, e.g. if there&#039;s &#039;&#039;&#039;0.05mL&#039;&#039;&#039; remaining after injecting, draw &#039;&#039;&#039;+0.05mL&#039;&#039;&#039; from the vial.&lt;br /&gt;
|}&lt;br /&gt;
&#039;&#039;&#039;*&#039;&#039;&#039; = It has been mentioned that syringes account for dead space, although that is not 100% certain.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--T:46--&amp;gt;&lt;br /&gt;
=== Sublingual vs Oral ===&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|+&lt;br /&gt;
!Method&lt;br /&gt;
!Substance&lt;br /&gt;
!Dosage&lt;br /&gt;
!Observations&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
====== Oral ======&lt;br /&gt;
|Estradiol Valerate in pill form (e.g. Cyclacur)&lt;br /&gt;
|&amp;gt;=6mg/day&lt;br /&gt;
(max 10mg as per Dr. Powers)&lt;br /&gt;
|It is recommended that doses are taken separately on set time intervals during the day for more stable estradiol levels, e.g. for a 6mg dose you would take 2mg per 8 hours. By the oral route the active substance is metabolized by the liver and part of it is converted to estrone (E1), which has much less feminizing effects than estradiol (E2) so the desired effect is essentially prevented. The bioavailability of estradiol by oral administration is very low (~5%) and usually lower levels of E2 are observed in blood tests than other methods of administration. [anecdotal apo to server, wikipedia kai tttt - correct/expand?] It is also necessary to administer anti-androgens to reduce testosterone levels to the female range.&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
====== Sublingual ======&lt;br /&gt;
|Estradiol Valerate in pill form (e.g. Cyclacur)&lt;br /&gt;
|&amp;gt;=4mg/day&lt;br /&gt;
|It is recommended that doses are taken separately on set time intervals during the day for more stable estradiol levels, e.g. for a 6mg dose you would take 2mg per 8 hours. The sublingual way bypasses estradiol metabolism by the liver and has about 5 times the estradiol bioavailability of the oral way. This way, estradiol levels have greater range than orally (higher peak lower bottom), in oral they remain higher for ~12 hours while sublingually they go away after 3-4 hours (This however is from a study from 2005 on cis women)&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== Vial info === &amp;lt;!--T:47--&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--T:48--&amp;gt;&lt;br /&gt;
=== Medications ===&lt;br /&gt;
For cyclacur: &#039;&#039;&#039;take only the white pills, the brown pills are Norgestrel which have 0.5mg of estradiol but has an androgenic effect and may also cause other side effects&#039;&#039;&#039;. &lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--T:49--&amp;gt;&lt;br /&gt;
==== Estrogens ====&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|+&lt;br /&gt;
!Brand Name(s)&lt;br /&gt;
!Substance&lt;br /&gt;
!Form&lt;br /&gt;
!Method of Administration&lt;br /&gt;
!Cost&lt;br /&gt;
!Cost with Healthcare Coverage&lt;br /&gt;
!Dosage&lt;br /&gt;
!Safety&lt;br /&gt;
!Notes&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
====== [https://www.galinos.gr/web/drugs/main/drugs/Cyclacur Cyclacur] ======&lt;br /&gt;
|Estradiol Valerate (EV)&lt;br /&gt;
|Pill tablet&lt;br /&gt;
|Orally or sublingually&lt;br /&gt;
|2.01€ for 11 pills ([https://www.galinos.gr/service/drugs/drawPackagePrice/1198 Pricemap])&lt;br /&gt;
~130.8-328.€/year&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--T:50--&amp;gt;&lt;br /&gt;
~10.9-27.4€/month&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--T:51--&amp;gt;&lt;br /&gt;
Prices are indicative, the cost depends on the dosage.&lt;br /&gt;
| -&lt;br /&gt;
|6mg-10mg/day (according to Dr. Will Powers)&lt;br /&gt;
4mg-8mg/day (according to Greek Endocrinologists)&lt;br /&gt;
|A&lt;br /&gt;
|&lt;br /&gt;
* &#039;&#039;&#039;Only white pills are used.&#039;&#039;&#039; Brown pills do have a bit of estradiol but arent taken due to other side effects.&lt;br /&gt;
* You need antiandrogens or GNRH antagonists if you haven&#039;t had an orchiectomy.&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
====== Progynova ======&lt;br /&gt;
|Estradiol Valerate (EV)&lt;br /&gt;
|Pill tablet&lt;br /&gt;
|Orally or sublingually&lt;br /&gt;
|~22€ for 72 pills of 1 mg or ~32€ for 72 pills of 2 mg&lt;br /&gt;
Prices are indicative, the cost depends on the dosage.&lt;br /&gt;
| -&lt;br /&gt;
|4mg-8mg/day&lt;br /&gt;
|A&lt;br /&gt;
|&lt;br /&gt;
* There is no reason to use it in Greece since Cyclacur is available in Greek pharmacies.&lt;br /&gt;
* You need antiandrogens or GNRH antagonists if you haven&#039;t had an orchiectomy.&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
====== Estrofem, Estrifam (german brand name), [https://www.galinos.gr/web/drugs/main/drugs/trisequens Trisequens] ======&lt;br /&gt;
|Estradiol Hemihydrate&lt;br /&gt;
|Pill tablet&lt;br /&gt;
|Orally or sublingually&lt;br /&gt;
|~30€ for 28 pills of 2 mg without shipping costs.&lt;br /&gt;
Prices are indicative, the cost depends on the dosage.&lt;br /&gt;
| -&lt;br /&gt;
|4mg-8mg/day&lt;br /&gt;
|A&lt;br /&gt;
|&lt;br /&gt;
* There is no reason to use it in Greece since Cyclacur is available in Greek pharmacies.&lt;br /&gt;
* You need antiandrogens or GNRH antagonists if you haven&#039;t had an orchiectomy.&lt;br /&gt;
* Trisequens, while being available in Greece, is odd to take with 12 pills being 2mg EH, 10 norgestrel, and 6 1mg EH, for a much higher price than [[HRT#Cyclacur|Cyclacur]].&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
====== [https://www.galinos.gr/web/drugs/main/drugs/Dermestril Dermestril] ======&lt;br /&gt;
|Estradiol Hemihydrate&lt;br /&gt;
|Patch&lt;br /&gt;
|Trans-dermally&lt;br /&gt;
|44€ for 24 patches of 100mcg&lt;br /&gt;
~15€ for 8 patches of 50mcg&lt;br /&gt;
| -&lt;br /&gt;
|50mcg/3.5 days (when starting off)&lt;br /&gt;
100mcg/3.5 days (whenever your e2 levels are stable)&lt;br /&gt;
|A+&lt;br /&gt;
|&lt;br /&gt;
* &#039;&#039;&#039;If you have no idea how to apply patches watch this:&#039;&#039;&#039; [https://youtu.be/tXGIYWPqdpI?si=O0dlE19pq0ic0PZP Demonstrational Video]&lt;br /&gt;
* You need antiandrogens or GNRH antagonists if you haven&#039;t had an orchiectomy.&lt;br /&gt;
* 100mcg patches can be cut into 2 if needed.&lt;br /&gt;
|-&lt;br /&gt;
|Neofollin (can be ordered from pharmacies near Czechia, not tested in Greece), Delestrogen (Vial, unavailable), Progynon Depot (Ampules, unavailable)&lt;br /&gt;
|&lt;br /&gt;
====== Estradiol Valerate (EV) ======&lt;br /&gt;
|Injectable&lt;br /&gt;
|Subcutaneous or Intramuscular&lt;br /&gt;
|80€/year (including shipping costs, syringes and alcohol swabs)&lt;br /&gt;
| -&lt;br /&gt;
|5-7mg/5 days (monotherapy)&lt;br /&gt;
4-5mg/7 days (only in combination with an antiandrogen or GNRH agonist)&lt;br /&gt;
|A+&lt;br /&gt;
|&lt;br /&gt;
* It can be used without antiandrogens or GNRH agonists in ([[HRT#Μονοθεραπεία|Monotherapy]]) by increasing the dosage.&lt;br /&gt;
|-&lt;br /&gt;
|Depo-Estradiol (US only, unavailable)&lt;br /&gt;
|&lt;br /&gt;
====== Estradiol Cypionate (EC) ======&lt;br /&gt;
|Injectable&lt;br /&gt;
|Subcutaneous or Intramuscular&lt;br /&gt;
|~100-110€/year (including shipping. not including, syringes and alcohol swabs)&lt;br /&gt;
| -&lt;br /&gt;
|5-7mg/7 days&lt;br /&gt;
(&#039;&#039;&#039;mono dose&#039;&#039;&#039;)&lt;br /&gt;
? (TBD/&#039;&#039;&#039;dose with AA&#039;&#039;&#039;)&lt;br /&gt;
|A+&lt;br /&gt;
|&lt;br /&gt;
* It can be used without antiandrogens or GNRH agonists in ([[HRT#Μονοθεραπεία|Monotherapy]])&lt;br /&gt;
|-&lt;br /&gt;
| -&lt;br /&gt;
|&lt;br /&gt;
====== Estradiol Enanthate (EEn) ======&lt;br /&gt;
|Injectable&lt;br /&gt;
|Subcutaneous or Intramuscular&lt;br /&gt;
|80€/year (including shipping costs, syringes and alcohol swabs)&lt;br /&gt;
| -&lt;br /&gt;
|2.5mg-7mg/7 days&lt;br /&gt;
(usual dosage: 4mg/7days)&lt;br /&gt;
|A+&lt;br /&gt;
|&lt;br /&gt;
* It can be used without antiandrogens or GNRH agonists in ([[HRT#Μονοθεραπεία|Monotherapy]]) by increasing the dosage.&lt;br /&gt;
|-&lt;br /&gt;
| -&lt;br /&gt;
|&lt;br /&gt;
====== Estradiol Undecylate (EU, EUn) ======&lt;br /&gt;
|Injectable&lt;br /&gt;
|Subcutaneous or Intramuscular&lt;br /&gt;
|130€/year (including shipping costs, syringes and alcohol swabs)&lt;br /&gt;
| -&lt;br /&gt;
|15-20mg/2 weeks&lt;br /&gt;
20-40mg+/4 weeks&lt;br /&gt;
|?&lt;br /&gt;
|&lt;br /&gt;
* There&#039;s not much info on dosages, usually seen in [[HRT#Μονοθεραπεία|monotherapy]].&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--T:52--&amp;gt;&lt;br /&gt;
==== Anti-Androgens and GNRH Agonists ====&lt;br /&gt;
These should &#039;&#039;&#039;not&#039;&#039;&#039; be taken sublingually.&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|+&lt;br /&gt;
!Brand Name(s)&lt;br /&gt;
!Substance&lt;br /&gt;
!Cost&lt;br /&gt;
!Cost with Healthcare Coverage&lt;br /&gt;
!Dosage&lt;br /&gt;
!Safety&lt;br /&gt;
!Form&lt;br /&gt;
!Type&lt;br /&gt;
!Notes&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
====== [https://www.galinos.gr/web/drugs/main/drugs/Androcur Androcur] ======&lt;br /&gt;
|Cyproterone Acetate (CPA) is also referred to as cypro&lt;br /&gt;
|21.58€/50mg * 50 pills &lt;br /&gt;
19.7-31.5€/year&lt;br /&gt;
&lt;br /&gt;
([https://www.galinos.gr/service/drugs/drawPackagePrice/8023 Pricemap])&lt;br /&gt;
|?&lt;br /&gt;
|12.5mg/2 days- 10mg/day&lt;br /&gt;
&#039;&#039;&#039;Larger doses shouldn&#039;t be administered&#039;&#039;&#039;&lt;br /&gt;
|C&lt;br /&gt;
|Pill tablet&lt;br /&gt;
|Progestin (Steroidal antiandrogen)&lt;br /&gt;
Stops testosterone production.&lt;br /&gt;
|The max recommended dosage is 10mg/day . Monitoring of prolactin levels is recommended through [[Blood Testing#MTF|blood testing]].&lt;br /&gt;
&#039;&#039;&#039;Many doctors give overdoses of 50 mg/day. Cyproterone is a strong anti-androgen and testosterone suppression is possible with lower doses. A change of doctor is recommended.&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--T:53--&amp;gt;&lt;br /&gt;
[[wikipedia:Side_effects_of_cyproterone_acetate|Side Effects]]:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--T:54--&amp;gt;&lt;br /&gt;
* Benign brain tumor.&lt;br /&gt;
* In rare cases, liver damage.&lt;br /&gt;
* Vitamin B12 deficiency.&lt;br /&gt;
* Breast cancer.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--T:55--&amp;gt;&lt;br /&gt;
Testosterone suppression can be achieved with even lower doses, however a 50 mg pill is difficult to cut into pieces of less than 12.5 mg even with a pill cutter.&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
====== [https://www.galinos.gr/web/drugs/main/drugs/Bicalut Bicalut] ======&lt;br /&gt;
|Bicalutamide (aka: bica)&lt;br /&gt;
|29.10 euro/30 pills&lt;br /&gt;
29.10 euro/month&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--T:56--&amp;gt;&lt;br /&gt;
~350 euro/year&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
([https://www.galinos.gr/service/drugs/drawPackagePrice/11120 Pricemap])&lt;br /&gt;
|6.77 euro/month (28 tabs)&lt;br /&gt;
~95 euro/year&lt;br /&gt;
|50mg/day&lt;br /&gt;
|A-&lt;br /&gt;
|Pill/Tablet&lt;br /&gt;
|Androgen receptor antagonist (Nonsteroidal antiandrogen)&lt;br /&gt;
Blocks absorption of all androgens (including testosterone)&lt;br /&gt;
|&#039;&#039;&#039;Serious negative interactions can be noted if combined with other anti-androgens and GNRH agonists (except progesterone)&#039;&#039;&#039;&lt;br /&gt;
&#039;&#039;&#039;Very rare&#039;&#039;&#039; chance for recoverable and non-fatal liver damage for people with a certain rare mutation.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--T:57--&amp;gt;&lt;br /&gt;
Most of the effects listen in the instruction manual are scaremongering. (it lists a very high chance of liver issues when they are actually very rare, and also lists photosensitivity, which if it even occurs at all, it should be quite rare. We are aware of nobody who had a negative interction between alexandrite laser hair removal and bicalutamide).&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--T:58--&amp;gt;&lt;br /&gt;
Note that bicalutamide, unlike most other anti-androgens, &#039;&#039;&#039;does not&#039;&#039;&#039; lower testosterone levels, in fact they usually rise as the body responds to testosterone receptors being inhibited. Do not be alarmed if you notice an increase of testosterone in your blood tests.&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
====== [https://www.galinos.gr/web/drugs/main/drugs/Arvekap Arvekap] ======&lt;br /&gt;
|Triptorelin&lt;br /&gt;
| -&lt;br /&gt;
|~200/year?&lt;br /&gt;
|&lt;br /&gt;
|A?&lt;br /&gt;
|Injection&lt;br /&gt;
|GNRH Agonist&lt;br /&gt;
(indirectly) Stops testosterone AND estrogen production&lt;br /&gt;
|Also a puberty blocker&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
====== [https://www.galinos.gr/web/drugs/main/drugs/aldactone Aldactone] ======&lt;br /&gt;
|Spironolactone&lt;br /&gt;
|5.19 euro/20 tabs (100mg)&lt;br /&gt;
([https://www.galinos.gr/service/drugs/drawPackagePrice/148 Pricemap])&lt;br /&gt;
|?&lt;br /&gt;
|50mg-200mg/day&lt;br /&gt;
|B-C&lt;br /&gt;
|Tablet&lt;br /&gt;
|Antimineralocorticoid/MCRA&lt;br /&gt;
|Very inefficient, makes you pee, it&#039;s a medication for blood pressure&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
|Flutamide&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|F---&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|Only in this table as an example to avoid&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
==== Miscellaneous/Progesterone ====&lt;br /&gt;
Progesterone falls under this category, as it is not quite the same as other Anti-Androgens, the mention of Progesterone in this title is necessary in order to reduce confusion and questions such as &amp;quot;Where is progesterone?&amp;quot; and &amp;quot;Did you remove prog from the page?&amp;quot;.&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
!Brand Name(s)&lt;br /&gt;
!Substance&lt;br /&gt;
!Cost&lt;br /&gt;
!Cost with Healthcare Coverage&lt;br /&gt;
!Dosage&lt;br /&gt;
!Safety&lt;br /&gt;
!Form&lt;br /&gt;
!Type&lt;br /&gt;
!Notes&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
====== [https://www.galinos.gr/web/drugs/main/drugs/utrogestran Utrogestan] ======&lt;br /&gt;
|Progesterone (P4) it is also referred to as prog&lt;br /&gt;
|5.83 euro/30 caps (100mg)&lt;br /&gt;
8.08 euro/15 caps (200mg)&lt;br /&gt;
([https://www.galinos.gr/service/drugs/drawPackagePrice/7619 Pricemap])&lt;br /&gt;
|?&lt;br /&gt;
|100mg or 200mg daily (rectal administration, [[Blood Testing|blood tests]] are recommended)&lt;br /&gt;
|A&lt;br /&gt;
|Capsule&lt;br /&gt;
|Stops testosterone production.&lt;br /&gt;
|There is not much confirmed information about progesterone.&lt;br /&gt;
It can also be taken orally but the absorption rate is very low.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--T:59--&amp;gt;&lt;br /&gt;
Anecdotal claims:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--T:60--&amp;gt;&lt;br /&gt;
* Helps with breast development and with feminization in general.&lt;br /&gt;
* Can be given after one year of estradiol.&lt;br /&gt;
* Suggested to be given after the individual reaches Tanner stage 3.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--T:61--&amp;gt;&lt;br /&gt;
It can have androgenic or other (non-serious, recoverable) effects for some individuals - in particular it can be converted to DHT by the body even in combination with dutasteride or bicalutamide.&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--T:62--&amp;gt;&lt;br /&gt;
==== Other anti-androgens (optional) ====&lt;br /&gt;
These are used to block conversion of other androgens to DHT (which causes hair loss (hair) and body hair growth). They aren&#039;t general use Anti-Androgens.&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
!Brand Name(s)&lt;br /&gt;
!Substance&lt;br /&gt;
!Cost&lt;br /&gt;
!Cost with Healthcare Coverage&lt;br /&gt;
!Dosage&lt;br /&gt;
!Safety&lt;br /&gt;
!Form&lt;br /&gt;
!Type&lt;br /&gt;
!Notes&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
====== [https://www.galinos.gr/web/drugs/main/packages/26485 Dastidem], [https://www.galinos.gr/web/drugs/main/packages/25557 Rafuster], [https://www.galinos.gr/web/drugs/main/packages/25893 Duaride], [https://www.galinos.gr/web/drugs/main/packages/25894 Dustezor] ======&lt;br /&gt;
|Dutasteride&lt;br /&gt;
|7.90€/30 caps&lt;br /&gt;
|~6€/30 caps&lt;br /&gt;
|0.5mg/day (?/TBD)&lt;br /&gt;
|A-&lt;br /&gt;
|Capsule&lt;br /&gt;
| -&lt;br /&gt;
|High effectiveness.&lt;br /&gt;
|-&lt;br /&gt;
| -&lt;br /&gt;
|Finasteride&lt;br /&gt;
| -&lt;br /&gt;
| -&lt;br /&gt;
| -&lt;br /&gt;
|?&lt;br /&gt;
| -&lt;br /&gt;
| -&lt;br /&gt;
| -&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== Transmasc ==&lt;br /&gt;
&lt;br /&gt;
=== Medications ===&lt;br /&gt;
&lt;br /&gt;
==== Testosterone ====&lt;br /&gt;
[https://www.galinos.gr/web/drugs/main/substances/testosterone/marketing Galinos.gr&#039;s testosterone availability page]&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|+&lt;br /&gt;
!Brand Name(s)&lt;br /&gt;
!Substance&lt;br /&gt;
!Form&lt;br /&gt;
!Method of Administration&lt;br /&gt;
!Cost&lt;br /&gt;
!Cost with Healthcare Coverage&lt;br /&gt;
!Dosage&lt;br /&gt;
!Safety&lt;br /&gt;
!Notes&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
====== [https://www.galinos.gr/web/drugs/main/packages/4929 Norma] ======&lt;br /&gt;
|Testosterone Enanthate&lt;br /&gt;
|Injection/Ampule&lt;br /&gt;
|Intramuscular&lt;br /&gt;
|17.67€/ampule &lt;br /&gt;
([https://www.galinos.gr/service/drugs/drawPackagePrice/4929 Pricemap])&lt;br /&gt;
|?&lt;br /&gt;
|?&lt;br /&gt;
|?&lt;br /&gt;
| -&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
====== [https://www.galinos.gr/web/drugs/main/packages/21943 Nebido] ======&lt;br /&gt;
|Testosterone Undecanoate&lt;br /&gt;
|Injection/Vial&lt;br /&gt;
|Intramuscular&lt;br /&gt;
|100.37€/vial&lt;br /&gt;
([https://www.galinos.gr/service/drugs/drawPackagePrice/21943 Pricemap])&lt;br /&gt;
|~32.52€/vial (you pay 25%)&lt;br /&gt;
|1 vial (1000mg/4mL)/10-20 weeks&lt;br /&gt;
|A&lt;br /&gt;
|As a starting dose &#039;&#039;&#039;after a year of HRT&#039;&#039;&#039;, you could also consider:&lt;br /&gt;
&lt;br /&gt;
* Instead of injecting one vial per 20 weeks, you do half every 10-12 weeks, however nothing could be sourced to support this. Though logically it could make sense as a practice.&lt;br /&gt;
* Do a test at 6 weeks after starting, if T is too high don&#039;t take the 2nd dose, if it&#039;s not you can take the 2nd and then test 2 weeks before every other dose.&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
====== [https://www.galinos.gr/web/drugs/main/packages/15739 Tostran] ======&lt;br /&gt;
|Testogel&lt;br /&gt;
|Gel&lt;br /&gt;
|Trans-dermally&lt;br /&gt;
|&#039;&#039;&#039;Starting dose&#039;&#039;&#039;&lt;br /&gt;
&amp;lt;!--T:82--&amp;gt;&lt;br /&gt;
* 35.54€/2 months&lt;br /&gt;
* 213.24€/year&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--T:83--&amp;gt;&lt;br /&gt;
&#039;&#039;&#039;30 mg dose&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--T:84--&amp;gt;&lt;br /&gt;
* 35.54€/40 days&lt;br /&gt;
* ~324.30€/year&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--T:85--&amp;gt;&lt;br /&gt;
&#039;&#039;&#039;40 mg dose&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--T:73--&amp;gt;&lt;br /&gt;
* 35.54€/30 days&lt;br /&gt;
* 426.48€/year&lt;br /&gt;
([https://www.galinos.gr/service/drugs/drawPackagePrice/15739 Pricemap])&lt;br /&gt;
|35.54€ -&amp;gt; 8.89€&lt;br /&gt;
|20mg/day (starting dose)&lt;br /&gt;
30-40mg/day&lt;br /&gt;
|A&lt;br /&gt;
|&lt;br /&gt;
* 1 pump of Tostran (&#039;&#039;&#039;0.5g&#039;&#039;&#039;) delivers 10 mg of T.&lt;br /&gt;
* 2 pumps of Tostran are 1 pump of Testogel (20.25mg of T)&lt;br /&gt;
* Can cause skin reactions.&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
==== GNRH Agonists ====&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
!Brand Name(s)&lt;br /&gt;
!Substance&lt;br /&gt;
! Cost&lt;br /&gt;
!Cost with Healthcare Coverage&lt;br /&gt;
!Dosage&lt;br /&gt;
!Safety&lt;br /&gt;
!Form&lt;br /&gt;
!Type&lt;br /&gt;
!Notes&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
====== [https://www.galinos.gr/web/drugs/main/drugs/Arvekap Arvekap] ======&lt;br /&gt;
|Triptorelin&lt;br /&gt;
| -&lt;br /&gt;
|~200/year?&lt;br /&gt;
|&lt;br /&gt;
|A?&lt;br /&gt;
|Injection&lt;br /&gt;
|GNRH Agonist&lt;br /&gt;
(indirectly) Stops testosterone AND estrogen production&lt;br /&gt;
|Also a puberty blocker&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
==== Other anti-androgens (optional) ====&lt;br /&gt;
These are used to block conversion of other androgens to DHT (which causes hair loss (hair) and body hair growth). They aren&#039;t general use Anti-Androgens.&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
!Brand Name(s)&lt;br /&gt;
!Substance&lt;br /&gt;
!Cost&lt;br /&gt;
!Cost with Healthcare Coverage&lt;br /&gt;
!Dosage&lt;br /&gt;
!Safety&lt;br /&gt;
!Form&lt;br /&gt;
!Type&lt;br /&gt;
!Notes&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
====== [https://www.galinos.gr/web/drugs/main/packages/26485 Dastidem], [https://www.galinos.gr/web/drugs/main/packages/25557 Rafuster], [https://www.galinos.gr/web/drugs/main/packages/25893 Duaride], [https://www.galinos.gr/web/drugs/main/packages/25894 Dustezor] ======&lt;br /&gt;
|Dutasteride&lt;br /&gt;
|7.90€/30 caps&lt;br /&gt;
|~6€/30 caps&lt;br /&gt;
|0.5mg/day (?/TBD)&lt;br /&gt;
|A-&lt;br /&gt;
|Capsule&lt;br /&gt;
| -&lt;br /&gt;
|High effectiveness. &lt;br /&gt;
Not to be confused with proper Anti-Androgens.&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== Nonbinary hrt *under construction* ==&lt;br /&gt;
&lt;br /&gt;
=== !!! disclaimer-warning about potential issues !!! ===&lt;br /&gt;
&lt;br /&gt;
=== General outline of nb hrt for amab and afab ===&lt;br /&gt;
&lt;br /&gt;
=== Medications ===&lt;br /&gt;
&lt;br /&gt;
==== Selective Estrogen Receptor Modulators (SERMs) ====&lt;br /&gt;
&lt;br /&gt;
* Tamoxifen is a selective estrogen receptor modulator (SERM). In some tissues such as the brain it activates estrogen receptors, which may help reduce dysphoria. In breast tissue it antagonizes estrogen receptors, preventing the formation of breast tissue if desired. There is some evidence that Tamoxifen inhibits memory, though the effects of taking it alongside regular estrogen are undocumented. Tamoxifen can cause cognitive dysfunction and increase your risk of stroke and pulmonary embolism. Tamoxifen may also be taken alongside 17β-estradiol, more research is needed. In this combination, estradiol should still have its effects (combating dysphoria in the brain, redistribution of body fat, smoother skin etc.) while tamoxifen prevents the growth of breast tissue.&lt;br /&gt;
* Raloxifene is another SERM. It is an estrogen receptor antagonist in breast tissue. It is an estrogen receptor agonist in bone and can be used to prevent osteoporosis. Raloxifene has been shown to reduce ERα expression in breast tissue in premenopausal women. As the synthesis of progesterone receptors (PR) is estrogen-regulated, raloxifene also decreases the expression of PR. Additionally, it was shown to decrease the presence of Ki-67, a biomarker for cell proliferation, in breast tissue of premenopausal women. As a result, it can be used to treat gynecomastia, and has been shown effective in reducing breast size in those with the condition. Raloxifene may promote feminine fat distribution: in a study on 56-66 year old postmenopausal women, there was an increase in fat in the legs and buttocks and a decrease in fat in the abdomen and trunk after 1 year on 60 mg/day raloxifene. It is not yet known how pronounced this effect is, as there have been no comparisons of body fat distribution between raloxifene and estradiol. Raloxifene may increase the risk of stroke and pulmonary embolism.&lt;br /&gt;
* Afimoxifene is a topical SERM and the primary metabolite of tamoxifen.&lt;br /&gt;
&lt;br /&gt;
==== Anti-androgens ====&lt;br /&gt;
&lt;br /&gt;
==== Bicalutamide ====&lt;br /&gt;
Bicalutamide is an  anti-androgen which is used mainly in the treatment of prostate cancer but can also be used to treat hirsutism, or as a component of hormone therapy in feminizing HRT, among other uses. It is nonsteroidal anti-androgen and a selective/pure antagonist of the androgen receptor. It has no other hormonal activity and does not lower androgen levels. Bicalutamide crosses the blood-brain barrier and blocks the effects of testosterone and dihydrotestosterone (DHT) both in the body and in the brain. While it has been observed that bicalutamide does not cross the blood-brain barrier in rats and dogs, this was found not to be the case in humans&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
In general Ralox seems the best idea based on overall effectiveness and less severe side effects compared to other SERMs. Most people on this kind of MtNB hrt seem to be using a combination of ralox (in place of estradiol) and bica [expand this + powers e1s schizo stuff?]&lt;br /&gt;
&lt;br /&gt;
== Legal ==&lt;br /&gt;
It is legal to buy anything without a diagnosis or a prescription (off the counter - OTC), Testosterone can be hit or miss, look for any product names mentioned (that have links attached to them/are blue in colour) [[HRT#Testosterone|here]].  &lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--T:86--&amp;gt;&lt;br /&gt;
You can also check the &#039;&#039;&#039;[https://diyon.top/map Trans-Friendly Pharmacies Map]&#039;&#039;&#039; for any pharmacies near you (this goes for both Transfem and Transmasc HRT). &lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--T:75--&amp;gt;&lt;br /&gt;
There is no minimum or maximum legal age for someone to start HRT. &lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--T:76--&amp;gt;&lt;br /&gt;
It is not legally mandatory for someone to have a diagnosis by a psychiatrist in order to medically transition.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--T:77--&amp;gt;&lt;br /&gt;
There is no legally mandatory time restriction for a psychiatrist to monitor you before diagnosing you.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--T:78--&amp;gt;&lt;br /&gt;
You don&#039;t legally need to be on HRT in order to be exempt from the [[army]], change your [[Legal|legal sex]], or to have a [[surgery]].&lt;br /&gt;
&lt;br /&gt;
== Other resources == &amp;lt;!--T:79--&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--T:80--&amp;gt;&lt;br /&gt;
* Simulator: https://www.estrannai.se/&lt;br /&gt;
* https://transfemscience.org/ (note, the authors of this site disagree with a lot of what they are saying, regardless, it is still interesting)&lt;br /&gt;
** Introduction to Hormone Therapy for Transfeminine People: https://transfemscience.org/articles/transfem-intro/&lt;br /&gt;
** Older simulator: https://transfemscience.org/misc/injectable-e2-simulator/&lt;br /&gt;
** Dosage calculator: https://transfemscience.org/misc/injectable-dose-vol-conc-conv/&lt;br /&gt;
* https://diyhrt.wiki/ (alt link: https://anarch.cc/transfeminine-diy-hrt-the-ultimate-guide-2/)&lt;br /&gt;
* https://hrtcafe.net/&lt;br /&gt;
* https://hrt.coffee/&lt;br /&gt;
* https://transharmreduction.org/ - useful for checking potency and quality of diy products.&lt;br /&gt;
* https://www.reddit.com/r/TransDIY/&lt;br /&gt;
* https://www.reddit.com/r/TransfemScience/&lt;br /&gt;
* https://crimethinc.com/2022/12/15/producing-transdermal-estrogen-a-do-it-yourself-guide (alt link: https://anarch.cc/producing-transdermal-estrogen-a-do-it-yourself-guide/, as above)&lt;br /&gt;
&lt;br /&gt;
==== Questionable resources ====&lt;br /&gt;
&lt;br /&gt;
* https://hrt.cat/ - info for making your own (you will probably not need it - version 1.0: https://hrtcafe.net/hrtcat/)&lt;br /&gt;
* https://groups.io/g/MTFHRT/wiki/29602 - Lena&#039;s guide (alt link: https://anarch.cc/mtf-hrt-ultimate-diy/)&lt;br /&gt;
* https://archive.ph/uQb8g - Noire Labs (alt link: https://anarch.cc/making-your-own-injections/, as above)&lt;br /&gt;
&lt;br /&gt;
==== Very questionable resources ====&lt;br /&gt;
&lt;br /&gt;
* https://archive.ph/cpy7k (alt link: https://anarch.cc/homebrewing-hormones-mtf-guide/, as above) - &#039;&#039;&#039;Potentially outdated.&#039;&#039;&#039;&lt;br /&gt;
&amp;lt;/translate&amp;gt;&lt;/div&gt;</summary>
		<author><name>Goblinmoder</name></author>
	</entry>
	<entry>
		<id>https://wiki.diyon.top/index.php?title=HRT&amp;diff=1016</id>
		<title>HRT</title>
		<link rel="alternate" type="text/html" href="https://wiki.diyon.top/index.php?title=HRT&amp;diff=1016"/>
		<updated>2025-05-03T00:29:46Z</updated>

		<summary type="html">&lt;p&gt;Goblinmoder: fixed EC and EV prices&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{#seo:&lt;br /&gt;
|title_mode=replace&lt;br /&gt;
|title=HRT&lt;br /&gt;
|description=We are open to discussion and actively on-going changes in formatting and contents of this Page and Website (in general). The e-mail address to refer to is fox@diyon.top&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
&amp;lt;languages/&amp;gt;&lt;br /&gt;
&amp;lt;translate&amp;gt;&lt;br /&gt;
&amp;lt;!--T:41--&amp;gt;&lt;br /&gt;
After around a month on HRT some of your ranges in your [[Blood Testing|blood test]] should be within desired ranges.&lt;br /&gt;
&lt;br /&gt;
== Disclaimers ==&lt;br /&gt;
 To clarify on &#039;&#039;&#039;dosages&#039;&#039;&#039;, the values mentioned below are rather speculative and most are based on &#039;&#039;&#039;personal experiences&#039;&#039;&#039; or &#039;&#039;&#039;(diy)hrt pages/websites/papers&#039;&#039;&#039;. Therefore it is encouraged to do [[Blood Testing|blood tests]] and if possible, check with an [[Doctors#Ενδοκρινολόγοι|endocrinologist]] (we also suggest [[Doctors]] that can help with such cases), especially if you have any specific &#039;&#039;&#039;health conditions&#039;&#039;&#039;. &lt;br /&gt;
&#039;&#039;&#039;Pricemaps&#039;&#039;&#039; are there to evaluate prices through &#039;&#039;&#039;[https://galinos.gr galinos.gr]&#039;&#039;&#039; (in case something is outdated, look for the green line that says &amp;quot;Λιανική&amp;quot;)&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Questionable resources&#039;&#039;&#039; are to be taken with a grain of salt on every aspect of their contents.&lt;br /&gt;
&lt;br /&gt;
We are open to discussion and actively on-going changes in formatting and contents of this Page and Website (in general). The e-mail address to refer to is &#039;&#039;&#039;fox@diyon.top&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
== Blood Levels ==&lt;br /&gt;
&lt;br /&gt;
==== Refer to the [[Blood Testing]] page. ====&lt;br /&gt;
== Transfem ==&lt;br /&gt;
Taking hormone blockers ([[HRT#Antiandrogens and GNRH Agonists|GNRH Agonists]], e.g: Arvekap) or any Anti Androgens (e.g: Aldactone, Androcur) &#039;&#039;&#039;without [[HRT#Estrogens|Estrogens]]&#039;&#039;&#039; is generally discouraged. (This is &#039;&#039;&#039;non-definitive&#039;&#039;&#039; for Enby folks)&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--T:44--&amp;gt;&lt;br /&gt;
=== Monotherapy ===&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|+&lt;br /&gt;
!Type&lt;br /&gt;
!Commercial Names&lt;br /&gt;
!Dosage&lt;br /&gt;
!Notes&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
====== Sublingual (E Valerate or Hemihydrate) ======&lt;br /&gt;
|Cyclacur (EV), Estrofem (EH, imported), Trisequens (12 pills 2mg EH, 10 pills norgestrel, 6 pills 1mg EH)&lt;br /&gt;
|&amp;gt;=8-12mg/day&lt;br /&gt;
|While it is possible, even with a smaller dosage (&#039;&#039;&#039;at least 6mg&#039;&#039;&#039;), it&#039;s not that common. Ideally, use your blood tests to &#039;&#039;&#039;minmax&#039;&#039;&#039; your doses.&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
====== Injectable Estradiol Valerate (EV) ======&lt;br /&gt;
|Neofollin (can be ordered from pharmacies near Czechia, or aptekaapo.com &#039;&#039;&#039;but they’re not on hrtcafe&#039;&#039;&#039;, not tested in Greece), Delestrogen (Vial, unavailable), Progynon Depot (Ampules, unavailable), [[File:What-excuse-me.gif|thumb|[[HRT#Other resources|my honest reaction]]]]&lt;br /&gt;
|5-7mg/5 days&lt;br /&gt;
|&lt;br /&gt;
* Due to the large spikes in levels combined with the short [https://en.wikipedia.org/wiki/Biological_half-life half-life] it is not recommended for dosages to surpass the 5 day mark because it may cause menopause symptoms.&lt;br /&gt;
* Branded versions of this medication are not available in greece.&lt;br /&gt;
* The ampules contain a certain mg and do not allow for larger dosages, they are not re-usable. It is recommended to use a vial with a cap.&lt;br /&gt;
* Look for &#039;&#039;&#039;[https://arc-w.nihr.ac.uk/Wordpress/wp-content/uploads/2015/07/Low-dead-space-syringes.png syringe dead space]([[HRT#:~:text=* = It has been mentioned that syringes account for dead space, although that is not 100% certain.|*]])&#039;&#039;&#039;, e.g. if there&#039;s &#039;&#039;&#039;0.05mL&#039;&#039;&#039; remaining after injecting, draw &#039;&#039;&#039;+0.05mL&#039;&#039;&#039; from the vial.&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
====== Injectable Estradiol Cypionate (EC) ======&lt;br /&gt;
|[[File:What-excuse-me.gif|thumb|[[HRT#Other resources|my honest reaction]]]]Depo-Estradiol (US only, unavailable),&lt;br /&gt;
|5-7mg/7 days&lt;br /&gt;
|&lt;br /&gt;
* Look for &#039;&#039;&#039;[https://arc-w.nihr.ac.uk/Wordpress/wp-content/uploads/2015/07/Low-dead-space-syringes.png syringe dead space]([[HRT#:~:text=* = It has been mentioned that syringes account for dead space, although that is not 100% certain.|*]])&#039;&#039;&#039;, e.g. if there&#039;s &#039;&#039;&#039;0.05mL&#039;&#039;&#039; remaining after injecting, draw &#039;&#039;&#039;+0.05mL&#039;&#039;&#039; from the vial.&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
====== Injectable Estradiol Enanthate (EEn) ======&lt;br /&gt;
|[[File:What-excuse-me.gif|thumb|[[HRT#Other resources|my honest reaction]]]]&lt;br /&gt;
|4-7mg/7 days&lt;br /&gt;
7-10mg/10 days (7.2mg usually, depending on the vial, it&#039;s optimal because drawing cents of mL are hard to get right)&lt;br /&gt;
|&lt;br /&gt;
* You can multiply the weekly dosage by 2, which lasts up to 14 days (as much as the [https://en.wikipedia.org/wiki/Biological_half-life half-life] of Enanthate)&lt;br /&gt;
* Look for &#039;&#039;&#039;[https://arc-w.nihr.ac.uk/Wordpress/wp-content/uploads/2015/07/Low-dead-space-syringes.png syringe dead space]([[HRT#:~:text=* = It has been mentioned that syringes account for dead space, although that is not 100% certain.|*]])&#039;&#039;&#039;, e.g. if there&#039;s &#039;&#039;&#039;0.05mL&#039;&#039;&#039; remaining after injecting, draw &#039;&#039;&#039;+0.05mL&#039;&#039;&#039; from the vial.&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
====== Injectable Estradiol Undecylate (EU/EUn) ======&lt;br /&gt;
|[[File:What-excuse-me.gif|thumb|[[HRT#Other resources|my honest reaction]]]]&lt;br /&gt;
|There&#039;s not enough information on dosage. The frequency of those may differ according to the oil used (MCT/Castor oil). Indicative Dosages:&lt;br /&gt;
15-20mg/2 weeks&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--T:45--&amp;gt;&lt;br /&gt;
20-40mg+/4 weeks&lt;br /&gt;
|&lt;br /&gt;
* There&#039;s not enough information on its [[wikipedia:Biological_half-life|half-life]], a higher dosage can be administered that can last up to 20-30 days.&lt;br /&gt;
* [[wikipedia:Intramuscular_injection|IM injections]] last longer so they give better levels during the same period of time per injection.&lt;br /&gt;
* Needs at least 90 days to reach stable levels.&lt;br /&gt;
* Look for &#039;&#039;&#039;[https://arc-w.nihr.ac.uk/Wordpress/wp-content/uploads/2015/07/Low-dead-space-syringes.png syringe dead space]([[HRT#:~:text=* = It has been mentioned that syringes account for dead space, although that is not 100% certain.|*]])&#039;&#039;&#039;, e.g. if there&#039;s &#039;&#039;&#039;0.05mL&#039;&#039;&#039; remaining after injecting, draw &#039;&#039;&#039;+0.05mL&#039;&#039;&#039; from the vial.&lt;br /&gt;
|}&lt;br /&gt;
&#039;&#039;&#039;*&#039;&#039;&#039; = It has been mentioned that syringes account for dead space, although that is not 100% certain.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--T:46--&amp;gt;&lt;br /&gt;
=== Sublingual vs Oral ===&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|+&lt;br /&gt;
!Method&lt;br /&gt;
!Substance&lt;br /&gt;
!Dosage&lt;br /&gt;
!Observations&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
====== Oral ======&lt;br /&gt;
|Estradiol Valerate in pill form (e.g. Cyclacur)&lt;br /&gt;
|&amp;gt;=6mg/day&lt;br /&gt;
(max 10mg as per Dr. Powers)&lt;br /&gt;
|It is recommended that doses are taken separately on set time intervals during the day for more stable estradiol levels, e.g. for a 6mg dose you would take 2mg per 8 hours. By the oral route the active substance is metabolized by the liver and part of it is converted to estrone (E1), which has much less feminizing effects than estradiol (E2) so the desired effect is essentially prevented. The bioavailability of estradiol by oral administration is very low (~5%) and usually lower levels of E2 are observed in blood tests than other methods of administration. [anecdotal apo to server, wikipedia kai tttt - correct/expand?] It is also necessary to administer anti-androgens to reduce testosterone levels to the female range.&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
====== Sublingual ======&lt;br /&gt;
|Estradiol Valerate in pill form (e.g. Cyclacur)&lt;br /&gt;
|&amp;gt;=4mg/day&lt;br /&gt;
|It is recommended that doses are taken separately on set time intervals during the day for more stable estradiol levels, e.g. for a 6mg dose you would take 2mg per 8 hours. The sublingual way bypasses estradiol metabolism by the liver and has about 5 times the estradiol bioavailability of the oral way. This way, estradiol levels have greater range than orally (higher peak lower bottom), in oral they remain higher for ~12 hours while sublingually they go away after 3-4 hours (This however is from a study from 2005 on cis women)&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== Vial info === &amp;lt;!--T:47--&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--T:48--&amp;gt;&lt;br /&gt;
=== Medications ===&lt;br /&gt;
For cyclacur: &#039;&#039;&#039;take only the white pills, the brown pills are Norgestrel which have 0.5mg of estradiol but has an androgenic effect and may also cause other side effects&#039;&#039;&#039;. &lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--T:49--&amp;gt;&lt;br /&gt;
==== Estrogens ====&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|+&lt;br /&gt;
!Brand Name(s)&lt;br /&gt;
!Substance&lt;br /&gt;
!Form&lt;br /&gt;
!Method of Administration&lt;br /&gt;
!Cost&lt;br /&gt;
!Cost with Healthcare Coverage&lt;br /&gt;
!Dosage&lt;br /&gt;
!Safety&lt;br /&gt;
!Notes&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
====== [https://www.galinos.gr/web/drugs/main/drugs/Cyclacur Cyclacur] ======&lt;br /&gt;
|Estradiol Valerate (EV)&lt;br /&gt;
|Pill tablet&lt;br /&gt;
|Orally or sublingually&lt;br /&gt;
|2.01€ for 11 pills ([https://www.galinos.gr/service/drugs/drawPackagePrice/1198 Pricemap])&lt;br /&gt;
~130.8-328.€/year&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--T:50--&amp;gt;&lt;br /&gt;
~10.9-27.4€/month&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--T:51--&amp;gt;&lt;br /&gt;
Prices are indicative, the cost depends on the dosage.&lt;br /&gt;
| -&lt;br /&gt;
|6mg-10mg/day (according to Dr. Will Powers)&lt;br /&gt;
4mg-8mg/day (according to Greek Endocrinologists)&lt;br /&gt;
|A&lt;br /&gt;
|&lt;br /&gt;
* &#039;&#039;&#039;Only white pills are used.&#039;&#039;&#039; Brown pills do have a bit of estradiol but arent taken due to other side effects.&lt;br /&gt;
* You need antiandrogens or GNRH antagonists if you haven&#039;t had an orchiectomy.&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
====== Progynova ======&lt;br /&gt;
|Estradiol Valerate (EV)&lt;br /&gt;
|Pill tablet&lt;br /&gt;
|Orally or sublingually&lt;br /&gt;
|~22€ for 72 pills of 1 mg or ~32€ for 72 pills of 2 mg&lt;br /&gt;
Prices are indicative, the cost depends on the dosage.&lt;br /&gt;
| -&lt;br /&gt;
|4mg-8mg/day&lt;br /&gt;
|A&lt;br /&gt;
|&lt;br /&gt;
* There is no reason to use it in Greece since Cyclacur is available in Greek pharmacies.&lt;br /&gt;
* You need antiandrogens or GNRH antagonists if you haven&#039;t had an orchiectomy.&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
====== Estrofem, Estrifam (german brand name), [https://www.galinos.gr/web/drugs/main/drugs/trisequens Trisequens] ======&lt;br /&gt;
|Estradiol Hemihydrate&lt;br /&gt;
|Pill tablet&lt;br /&gt;
|Orally or sublingually&lt;br /&gt;
|~30€ for 28 pills of 2 mg without shipping costs.&lt;br /&gt;
Prices are indicative, the cost depends on the dosage.&lt;br /&gt;
| -&lt;br /&gt;
|4mg-8mg/day&lt;br /&gt;
|A&lt;br /&gt;
|&lt;br /&gt;
* There is no reason to use it in Greece since Cyclacur is available in Greek pharmacies.&lt;br /&gt;
* You need antiandrogens or GNRH antagonists if you haven&#039;t had an orchiectomy.&lt;br /&gt;
* Trisequens, while being available in Greece, is odd to take with 12 pills being 2mg EH, 10 norgestrel, and 6 1mg EH, for a much higher price than [[HRT#Cyclacur|Cyclacur]].&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
====== [https://www.galinos.gr/web/drugs/main/drugs/Dermestril Dermestril] ======&lt;br /&gt;
|Estradiol Hemihydrate&lt;br /&gt;
|Patch&lt;br /&gt;
|Trans-dermally&lt;br /&gt;
|44€ for 24 patches of 100mcg&lt;br /&gt;
~15€ for 8 patches of 50mcg&lt;br /&gt;
| -&lt;br /&gt;
|50mcg/3.5 days (when starting off)&lt;br /&gt;
100mcg/3.5 days (whenever your e2 levels are stable)&lt;br /&gt;
|A+&lt;br /&gt;
|&lt;br /&gt;
* &#039;&#039;&#039;If you have no idea how to apply patches watch this:&#039;&#039;&#039; [https://youtu.be/tXGIYWPqdpI?si=O0dlE19pq0ic0PZP Demonstrational Video]&lt;br /&gt;
* You need antiandrogens or GNRH antagonists if you haven&#039;t had an orchiectomy.&lt;br /&gt;
* 100mcg patches can be cut into 2 if needed.&lt;br /&gt;
|-&lt;br /&gt;
|Neofollin (can be ordered from pharmacies near Czechia, not tested in Greece), Delestrogen (Vial, unavailable), Progynon Depot (Ampules, unavailable)&lt;br /&gt;
|&lt;br /&gt;
====== Estradiol Valerate (EV) ======&lt;br /&gt;
|Injectable&lt;br /&gt;
|Subcutaneous or Intramuscular&lt;br /&gt;
|80€/year (including shipping costs, syringes and alcohol swabs)&lt;br /&gt;
| -&lt;br /&gt;
|5-7mg/5 days (monotherapy)&lt;br /&gt;
4-5mg/7 days (only in combination with an antiandrogen or GNRH agonist)&lt;br /&gt;
|A+&lt;br /&gt;
|&lt;br /&gt;
* It can be used without antiandrogens or GNRH agonists in ([[HRT#Μονοθεραπεία|Monotherapy]]) by increasing the dosage.&lt;br /&gt;
|-&lt;br /&gt;
|Depo-Estradiol (US only, unavailable)&lt;br /&gt;
|&lt;br /&gt;
====== Estradiol Cypionate (EC) ======&lt;br /&gt;
|Injectable&lt;br /&gt;
|Subcutaneous or Intramuscular&lt;br /&gt;
|~100-110€/year (including shipping. not including, syringes and alcohol swabs)&lt;br /&gt;
| -&lt;br /&gt;
|5-7mg/7 days&lt;br /&gt;
(&#039;&#039;&#039;mono dose&#039;&#039;&#039;)&lt;br /&gt;
? (TBD/&#039;&#039;&#039;dose with AA&#039;&#039;&#039;)&lt;br /&gt;
|A+&lt;br /&gt;
|&lt;br /&gt;
* It can be used without antiandrogens or GNRH agonists in ([[HRT#Μονοθεραπεία|Monotherapy]])&lt;br /&gt;
|-&lt;br /&gt;
| -&lt;br /&gt;
|&lt;br /&gt;
====== Estradiol Enanthate (EEn) ======&lt;br /&gt;
|Injectable&lt;br /&gt;
|Subcutaneous or Intramuscular&lt;br /&gt;
|80€/year (including shipping costs, syringes and alcohol swabs)&lt;br /&gt;
| -&lt;br /&gt;
|2.5mg-7mg/7 days&lt;br /&gt;
(usual dosage: 4mg/7days)&lt;br /&gt;
|A+&lt;br /&gt;
|&lt;br /&gt;
* It can be used without antiandrogens or GNRH agonists in ([[HRT#Μονοθεραπεία|Monotherapy]]) by increasing the dosage.&lt;br /&gt;
|-&lt;br /&gt;
| -&lt;br /&gt;
|&lt;br /&gt;
====== Estradiol Undecylate (EU, EUn) ======&lt;br /&gt;
|Injectable&lt;br /&gt;
|Subcutaneous or Intramuscular&lt;br /&gt;
|130€/year (including shipping costs, syringes and alcohol swabs)&lt;br /&gt;
| -&lt;br /&gt;
|15-20mg/2 weeks&lt;br /&gt;
20-40mg+/4 weeks&lt;br /&gt;
|?&lt;br /&gt;
|&lt;br /&gt;
* There&#039;s not much info on dosages, usually seen in [[HRT#Μονοθεραπεία|monotherapy]].&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--T:52--&amp;gt;&lt;br /&gt;
==== Anti-Androgens and GNRH Agonists ====&lt;br /&gt;
These should &#039;&#039;&#039;not&#039;&#039;&#039; be taken sublingually.&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|+&lt;br /&gt;
!Brand Name(s)&lt;br /&gt;
!Substance&lt;br /&gt;
!Cost&lt;br /&gt;
!Cost with Healthcare Coverage&lt;br /&gt;
!Dosage&lt;br /&gt;
!Safety&lt;br /&gt;
!Form&lt;br /&gt;
!Type&lt;br /&gt;
!Notes&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
====== [https://www.galinos.gr/web/drugs/main/drugs/Androcur Androcur] ======&lt;br /&gt;
|Cyproterone Acetate (CPA) is also referred to as cypro&lt;br /&gt;
|21.58€/50mg * 50 pills &lt;br /&gt;
19.7-31.5€/year&lt;br /&gt;
&lt;br /&gt;
([https://www.galinos.gr/service/drugs/drawPackagePrice/8023 Pricemap])&lt;br /&gt;
|?&lt;br /&gt;
|12.5mg/2 days- 10mg/day&lt;br /&gt;
&#039;&#039;&#039;Larger doses shouldn&#039;t be administered&#039;&#039;&#039;&lt;br /&gt;
|C&lt;br /&gt;
|Pill tablet&lt;br /&gt;
|Progestin (Steroidal antiandrogen)&lt;br /&gt;
Stops testosterone production.&lt;br /&gt;
|The max recommended dosage is 10mg/day . Monitoring of prolactin levels is recommended through [[Blood Testing#MTF|blood testing]].&lt;br /&gt;
&#039;&#039;&#039;Many doctors give overdoses of 50 mg/day. Cyproterone is a strong anti-androgen and testosterone suppression is possible with lower doses. A change of doctor is recommended.&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--T:53--&amp;gt;&lt;br /&gt;
[[wikipedia:Side_effects_of_cyproterone_acetate|Side Effects]]:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--T:54--&amp;gt;&lt;br /&gt;
* Benign brain tumor.&lt;br /&gt;
* In rare cases, liver damage.&lt;br /&gt;
* Vitamin B12 deficiency.&lt;br /&gt;
* Breast cancer.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--T:55--&amp;gt;&lt;br /&gt;
Testosterone suppression can be achieved with even lower doses, however a 50 mg pill is difficult to cut into pieces of less than 12.5 mg even with a pill cutter.&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
====== [https://www.galinos.gr/web/drugs/main/drugs/Bicalut Bicalut] ======&lt;br /&gt;
|Bicalutamide (aka: bica)&lt;br /&gt;
|29.10 euro/30 pills&lt;br /&gt;
29.10 euro/month&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--T:56--&amp;gt;&lt;br /&gt;
~350 euro/year&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
([https://www.galinos.gr/service/drugs/drawPackagePrice/11120 Pricemap])&lt;br /&gt;
|6.77 euro/month (28 tabs)&lt;br /&gt;
~95 euro/year&lt;br /&gt;
|50mg/day&lt;br /&gt;
|A-&lt;br /&gt;
|Pill/Tablet&lt;br /&gt;
|Androgen receptor antagonist (Nonsteroidal antiandrogen)&lt;br /&gt;
Blocks absorption of all androgens (including testosterone)&lt;br /&gt;
|&#039;&#039;&#039;Serious negative interactions can be noted if combined with other anti-androgens and GNRH agonists (except progesterone)&#039;&#039;&#039;&lt;br /&gt;
&#039;&#039;&#039;Very rare&#039;&#039;&#039; chance for recoverable and non-fatal liver damage for people with a certain rare mutation.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--T:57--&amp;gt;&lt;br /&gt;
Most of the effects listen in the instruction manual are scaremongering. (it lists a very high chance of liver issues when they are actually very rare, and also lists photosensitivity, which if it even occurs at all, it should be quite rare. We are aware of nobody who had a negative interction between alexandrite laser hair removal and bicalutamide).&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--T:58--&amp;gt;&lt;br /&gt;
Note that bicalutamide, unlike most other anti-androgens, &#039;&#039;&#039;does not&#039;&#039;&#039; lower testosterone levels, in fact they usually rise as the body responds to testosterone receptors being inhibited. Do not be alarmed if you notice an increase of testosterone in your blood tests.&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
====== [https://www.galinos.gr/web/drugs/main/drugs/Arvekap Arvekap] ======&lt;br /&gt;
|Triptorelin&lt;br /&gt;
| -&lt;br /&gt;
|~200/year?&lt;br /&gt;
|&lt;br /&gt;
|A?&lt;br /&gt;
|Injection&lt;br /&gt;
|GNRH Agonist&lt;br /&gt;
(indirectly) Stops testosterone AND estrogen production&lt;br /&gt;
|Also a puberty blocker&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
====== [https://www.galinos.gr/web/drugs/main/drugs/aldactone Aldactone] ======&lt;br /&gt;
|Spironolactone&lt;br /&gt;
|5.19 euro/20 tabs (100mg)&lt;br /&gt;
([https://www.galinos.gr/service/drugs/drawPackagePrice/148 Pricemap])&lt;br /&gt;
|?&lt;br /&gt;
|50mg-200mg/day&lt;br /&gt;
|B-C&lt;br /&gt;
|Tablet&lt;br /&gt;
|Antimineralocorticoid/MCRA&lt;br /&gt;
|Very inefficient, makes you pee, it&#039;s a medication for blood pressure&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
|Flutamide&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|F---&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|Only in this table as an example to avoid&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
==== Miscellaneous/Progesterone ====&lt;br /&gt;
Progesterone falls under this category, as it is not quite the same as other Anti-Androgens, the mention of Progesterone in this title is necessary in order to reduce confusion and questions such as &amp;quot;Where is progesterone?&amp;quot; and &amp;quot;Did you remove prog from the page?&amp;quot;.&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
!Brand Name(s)&lt;br /&gt;
!Substance&lt;br /&gt;
!Cost&lt;br /&gt;
!Cost with Healthcare Coverage&lt;br /&gt;
!Dosage&lt;br /&gt;
!Safety&lt;br /&gt;
!Form&lt;br /&gt;
!Type&lt;br /&gt;
!Notes&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
====== [https://www.galinos.gr/web/drugs/main/drugs/utrogestran Utrogestan] ======&lt;br /&gt;
|Progesterone (P4) it is also referred to as prog&lt;br /&gt;
|5.83 euro/30 caps (100mg)&lt;br /&gt;
8.08 euro/15 caps (200mg)&lt;br /&gt;
([https://www.galinos.gr/service/drugs/drawPackagePrice/7619 Pricemap])&lt;br /&gt;
|?&lt;br /&gt;
|100mg or 200mg daily (rectal administration, [[Blood Testing|blood tests]] are recommended)&lt;br /&gt;
|A&lt;br /&gt;
|Capsule&lt;br /&gt;
|Stops testosterone production.&lt;br /&gt;
|There is not much confirmed information about progesterone.&lt;br /&gt;
It can also be taken orally but the absorption rate is very low.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--T:59--&amp;gt;&lt;br /&gt;
Anecdotal claims:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--T:60--&amp;gt;&lt;br /&gt;
* Helps with breast development and with feminization in general.&lt;br /&gt;
* Can be given after one year of estradiol.&lt;br /&gt;
* Suggested to be given after the individual reaches Tanner stage 3.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--T:61--&amp;gt;&lt;br /&gt;
It can have androgenic or other (non-serious, recoverable) effects for some individuals - in particular it can be converted to DHT by the body even in combination with dutasteride or bicalutamide.&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--T:62--&amp;gt;&lt;br /&gt;
==== Other anti-androgens (optional) ====&lt;br /&gt;
These are used to block conversion of other androgens to DHT (which causes hair loss (hair) and body hair growth). They aren&#039;t general use Anti-Androgens.&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
!Brand Name(s)&lt;br /&gt;
!Substance&lt;br /&gt;
!Cost&lt;br /&gt;
!Cost with Healthcare Coverage&lt;br /&gt;
!Dosage&lt;br /&gt;
!Safety&lt;br /&gt;
!Form&lt;br /&gt;
!Type&lt;br /&gt;
!Notes&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
====== [https://www.galinos.gr/web/drugs/main/packages/26485 Dastidem], [https://www.galinos.gr/web/drugs/main/packages/25557 Rafuster], [https://www.galinos.gr/web/drugs/main/packages/25893 Duaride], [https://www.galinos.gr/web/drugs/main/packages/25894 Dustezor] ======&lt;br /&gt;
|Dutasteride&lt;br /&gt;
|7.90€/30 caps&lt;br /&gt;
|~6€/30 caps&lt;br /&gt;
|0.5mg/day (?/TBD)&lt;br /&gt;
|A-&lt;br /&gt;
|Capsule&lt;br /&gt;
| -&lt;br /&gt;
|High effectiveness.&lt;br /&gt;
|-&lt;br /&gt;
| -&lt;br /&gt;
|Finasteride&lt;br /&gt;
| -&lt;br /&gt;
| -&lt;br /&gt;
| -&lt;br /&gt;
|F&lt;br /&gt;
| -&lt;br /&gt;
| -&lt;br /&gt;
|Effectiveness is none to medium (Just take Dutasteride - will not stop conversion of Progesterone to DHT)&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== Transmasc ==&lt;br /&gt;
&lt;br /&gt;
=== Medications ===&lt;br /&gt;
&lt;br /&gt;
==== Testosterone ====&lt;br /&gt;
[https://www.galinos.gr/web/drugs/main/substances/testosterone/marketing Galinos.gr&#039;s testosterone availability page]&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|+&lt;br /&gt;
!Brand Name(s)&lt;br /&gt;
!Substance&lt;br /&gt;
!Form&lt;br /&gt;
!Method of Administration&lt;br /&gt;
!Cost&lt;br /&gt;
!Cost with Healthcare Coverage&lt;br /&gt;
!Dosage&lt;br /&gt;
!Safety&lt;br /&gt;
!Notes&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
====== [https://www.galinos.gr/web/drugs/main/packages/4929 Norma] ======&lt;br /&gt;
|Testosterone Enanthate&lt;br /&gt;
|Injection/Ampule&lt;br /&gt;
|Intramuscular&lt;br /&gt;
|17.67€/ampule &lt;br /&gt;
([https://www.galinos.gr/service/drugs/drawPackagePrice/4929 Pricemap])&lt;br /&gt;
|?&lt;br /&gt;
|?&lt;br /&gt;
|?&lt;br /&gt;
| -&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
====== [https://www.galinos.gr/web/drugs/main/packages/21943 Nebido] ======&lt;br /&gt;
|Testosterone Undecanoate&lt;br /&gt;
|Injection/Vial&lt;br /&gt;
|Intramuscular&lt;br /&gt;
|100.37€/vial&lt;br /&gt;
([https://www.galinos.gr/service/drugs/drawPackagePrice/21943 Pricemap])&lt;br /&gt;
|~32.52€/vial (you pay 25%)&lt;br /&gt;
|1 vial (1000mg/4mL)/10-20 weeks&lt;br /&gt;
|A&lt;br /&gt;
|As a starting dose &#039;&#039;&#039;after a year of HRT&#039;&#039;&#039;, you could also consider:&lt;br /&gt;
&lt;br /&gt;
* Instead of injecting one vial per 20 weeks, you do half every 10-12 weeks, however nothing could be sourced to support this. Though logically it could make sense as a practice.&lt;br /&gt;
* Do a test at 6 weeks after starting, if T is too high don&#039;t take the 2nd dose, if it&#039;s not you can take the 2nd and then test 2 weeks before every other dose.&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
====== [https://www.galinos.gr/web/drugs/main/packages/15739 Tostran] ======&lt;br /&gt;
|Testogel&lt;br /&gt;
|Gel&lt;br /&gt;
|Trans-dermally&lt;br /&gt;
|&#039;&#039;&#039;Starting dose&#039;&#039;&#039;&lt;br /&gt;
&amp;lt;!--T:82--&amp;gt;&lt;br /&gt;
* 35.54€/2 months&lt;br /&gt;
* 213.24€/year&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--T:83--&amp;gt;&lt;br /&gt;
&#039;&#039;&#039;30 mg dose&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--T:84--&amp;gt;&lt;br /&gt;
* 35.54€/40 days&lt;br /&gt;
* ~324.30€/year&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--T:85--&amp;gt;&lt;br /&gt;
&#039;&#039;&#039;40 mg dose&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--T:73--&amp;gt;&lt;br /&gt;
* 35.54€/30 days&lt;br /&gt;
* 426.48€/year&lt;br /&gt;
([https://www.galinos.gr/service/drugs/drawPackagePrice/15739 Pricemap])&lt;br /&gt;
|35.54€ -&amp;gt; 8.89€&lt;br /&gt;
|20mg/day (starting dose)&lt;br /&gt;
30-40mg/day&lt;br /&gt;
|A&lt;br /&gt;
|&lt;br /&gt;
* 1 pump of Tostran (&#039;&#039;&#039;0.5g&#039;&#039;&#039;) delivers 10 mg of T.&lt;br /&gt;
* 2 pumps of Tostran are 1 pump of Testogel (20.25mg of T)&lt;br /&gt;
* Can cause skin reactions.&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
==== GNRH Agonists ====&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
!Brand Name(s)&lt;br /&gt;
!Substance&lt;br /&gt;
! Cost&lt;br /&gt;
!Cost with Healthcare Coverage&lt;br /&gt;
!Dosage&lt;br /&gt;
!Safety&lt;br /&gt;
!Form&lt;br /&gt;
!Type&lt;br /&gt;
!Notes&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
====== [https://www.galinos.gr/web/drugs/main/drugs/Arvekap Arvekap] ======&lt;br /&gt;
|Triptorelin&lt;br /&gt;
| -&lt;br /&gt;
|~200/year?&lt;br /&gt;
|&lt;br /&gt;
|A?&lt;br /&gt;
|Injection&lt;br /&gt;
|GNRH Agonist&lt;br /&gt;
(indirectly) Stops testosterone AND estrogen production&lt;br /&gt;
|Also a puberty blocker&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
==== Other anti-androgens (optional) ====&lt;br /&gt;
These are used to block conversion of other androgens to DHT (which causes hair loss (hair) and body hair growth). They aren&#039;t general use Anti-Androgens.&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
!Brand Name(s)&lt;br /&gt;
!Substance&lt;br /&gt;
!Cost&lt;br /&gt;
!Cost with Healthcare Coverage&lt;br /&gt;
!Dosage&lt;br /&gt;
!Safety&lt;br /&gt;
!Form&lt;br /&gt;
!Type&lt;br /&gt;
!Notes&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
====== [https://www.galinos.gr/web/drugs/main/packages/26485 Dastidem], [https://www.galinos.gr/web/drugs/main/packages/25557 Rafuster], [https://www.galinos.gr/web/drugs/main/packages/25893 Duaride], [https://www.galinos.gr/web/drugs/main/packages/25894 Dustezor] ======&lt;br /&gt;
|Dutasteride&lt;br /&gt;
|7.90€/30 caps&lt;br /&gt;
|~6€/30 caps&lt;br /&gt;
|0.5mg/day (?/TBD)&lt;br /&gt;
|A-&lt;br /&gt;
|Capsule&lt;br /&gt;
| -&lt;br /&gt;
|High effectiveness. &lt;br /&gt;
Not to be confused with proper Anti-Androgens.&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== Nonbinary hrt *under construction* ==&lt;br /&gt;
&lt;br /&gt;
=== !!! disclaimer-warning about potential issues !!! ===&lt;br /&gt;
&lt;br /&gt;
=== General outline of nb hrt for amab and afab ===&lt;br /&gt;
&lt;br /&gt;
=== Medications ===&lt;br /&gt;
&lt;br /&gt;
==== Selective Estrogen Receptor Modulators (SERMs) ====&lt;br /&gt;
&lt;br /&gt;
* Tamoxifen is a selective estrogen receptor modulator (SERM). In some tissues such as the brain it activates estrogen receptors, which may help reduce dysphoria. In breast tissue it antagonizes estrogen receptors, preventing the formation of breast tissue if desired. There is some evidence that Tamoxifen inhibits memory, though the effects of taking it alongside regular estrogen are undocumented. Tamoxifen can cause cognitive dysfunction and increase your risk of stroke and pulmonary embolism. Tamoxifen may also be taken alongside 17β-estradiol, more research is needed. In this combination, estradiol should still have its effects (combating dysphoria in the brain, redistribution of body fat, smoother skin etc.) while tamoxifen prevents the growth of breast tissue.&lt;br /&gt;
* Raloxifene is another SERM. It is an estrogen receptor antagonist in breast tissue. It is an estrogen receptor agonist in bone and can be used to prevent osteoporosis. Raloxifene has been shown to reduce ERα expression in breast tissue in premenopausal women. As the synthesis of progesterone receptors (PR) is estrogen-regulated, raloxifene also decreases the expression of PR. Additionally, it was shown to decrease the presence of Ki-67, a biomarker for cell proliferation, in breast tissue of premenopausal women. As a result, it can be used to treat gynecomastia, and has been shown effective in reducing breast size in those with the condition. Raloxifene may promote feminine fat distribution: in a study on 56-66 year old postmenopausal women, there was an increase in fat in the legs and buttocks and a decrease in fat in the abdomen and trunk after 1 year on 60 mg/day raloxifene. It is not yet known how pronounced this effect is, as there have been no comparisons of body fat distribution between raloxifene and estradiol. Raloxifene may increase the risk of stroke and pulmonary embolism.&lt;br /&gt;
* Afimoxifene is a topical SERM and the primary metabolite of tamoxifen.&lt;br /&gt;
&lt;br /&gt;
==== Anti-androgens ====&lt;br /&gt;
&lt;br /&gt;
==== Bicalutamide ====&lt;br /&gt;
Bicalutamide is an  anti-androgen which is used mainly in the treatment of prostate cancer but can also be used to treat hirsutism, or as a component of hormone therapy in feminizing HRT, among other uses. It is nonsteroidal anti-androgen and a selective/pure antagonist of the androgen receptor. It has no other hormonal activity and does not lower androgen levels. Bicalutamide crosses the blood-brain barrier and blocks the effects of testosterone and dihydrotestosterone (DHT) both in the body and in the brain. While it has been observed that bicalutamide does not cross the blood-brain barrier in rats and dogs, this was found not to be the case in humans&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
In general Ralox seems the best idea based on overall effectiveness and less severe side effects compared to other SERMs. Most people on this kind of MtNB hrt seem to be using a combination of ralox (in place of estradiol) and bica [expand this + powers e1s schizo stuff?]&lt;br /&gt;
&lt;br /&gt;
== Legal ==&lt;br /&gt;
It is legal to buy anything without a diagnosis or a prescription (off the counter - OTC), Testosterone can be hit or miss, look for any product names mentioned (that have links attached to them/are blue in colour) [[HRT#Testosterone|here]].  &lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--T:86--&amp;gt;&lt;br /&gt;
You can also check the &#039;&#039;&#039;[https://diyon.top/map Trans-Friendly Pharmacies Map]&#039;&#039;&#039; for any pharmacies near you (this goes for both Transfem and Transmasc HRT). &lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--T:75--&amp;gt;&lt;br /&gt;
There is no minimum or maximum legal age for someone to start HRT. &lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--T:76--&amp;gt;&lt;br /&gt;
It is not legally mandatory for someone to have a diagnosis by a psychiatrist in order to medically transition.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--T:77--&amp;gt;&lt;br /&gt;
There is no legally mandatory time restriction for a psychiatrist to monitor you before diagnosing you.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--T:78--&amp;gt;&lt;br /&gt;
You don&#039;t legally need to be on HRT in order to be exempt from the [[army]], change your [[Legal|legal sex]], or to have a [[surgery]].&lt;br /&gt;
&lt;br /&gt;
== Other resources == &amp;lt;!--T:79--&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--T:80--&amp;gt;&lt;br /&gt;
* Simulator: https://www.estrannai.se/&lt;br /&gt;
* https://transfemscience.org/ (note, the authors of this site disagree with a lot of what they are saying, regardless, it is still interesting)&lt;br /&gt;
** Introduction to Hormone Therapy for Transfeminine People: https://transfemscience.org/articles/transfem-intro/&lt;br /&gt;
** Older simulator: https://transfemscience.org/misc/injectable-e2-simulator/&lt;br /&gt;
** Dosage calculator: https://transfemscience.org/misc/injectable-dose-vol-conc-conv/&lt;br /&gt;
* https://diyhrt.wiki/ (alt link: https://anarch.cc/transfeminine-diy-hrt-the-ultimate-guide-2/)&lt;br /&gt;
* https://hrtcafe.net/&lt;br /&gt;
* https://hrt.coffee/&lt;br /&gt;
* https://transharmreduction.org/ - useful for checking potency and quality of diy products.&lt;br /&gt;
* https://www.reddit.com/r/TransDIY/&lt;br /&gt;
* https://www.reddit.com/r/TransfemScience/&lt;br /&gt;
* https://crimethinc.com/2022/12/15/producing-transdermal-estrogen-a-do-it-yourself-guide (alt link: https://anarch.cc/producing-transdermal-estrogen-a-do-it-yourself-guide/, as above)&lt;br /&gt;
&lt;br /&gt;
==== Questionable resources ====&lt;br /&gt;
&lt;br /&gt;
* https://hrt.cat/ - info for making your own (you will probably not need it - version 1.0: https://hrtcafe.net/hrtcat/)&lt;br /&gt;
* https://groups.io/g/MTFHRT/wiki/29602 - Lena&#039;s guide (alt link: https://anarch.cc/mtf-hrt-ultimate-diy/)&lt;br /&gt;
* https://archive.ph/uQb8g - Noire Labs (alt link: https://anarch.cc/making-your-own-injections/, as above)&lt;br /&gt;
&lt;br /&gt;
==== Very questionable resources ====&lt;br /&gt;
&lt;br /&gt;
* https://archive.ph/cpy7k (alt link: https://anarch.cc/homebrewing-hormones-mtf-guide/, as above) - &#039;&#039;&#039;Potentially outdated.&#039;&#039;&#039;&lt;br /&gt;
&amp;lt;/translate&amp;gt;&lt;/div&gt;</summary>
		<author><name>Goblinmoder</name></author>
	</entry>
	<entry>
		<id>https://wiki.diyon.top/index.php?title=HRT&amp;diff=1015</id>
		<title>HRT</title>
		<link rel="alternate" type="text/html" href="https://wiki.diyon.top/index.php?title=HRT&amp;diff=1015"/>
		<updated>2025-05-03T00:25:50Z</updated>

		<summary type="html">&lt;p&gt;Goblinmoder: fixed EC price&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{#seo:&lt;br /&gt;
|title_mode=replace&lt;br /&gt;
|title=HRT&lt;br /&gt;
|description=We are open to discussion and actively on-going changes in formatting and contents of this Page and Website (in general). The e-mail address to refer to is fox@diyon.top&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
&amp;lt;languages/&amp;gt;&lt;br /&gt;
&amp;lt;translate&amp;gt;&lt;br /&gt;
&amp;lt;!--T:41--&amp;gt;&lt;br /&gt;
After around a month on HRT some of your ranges in your [[Blood Testing|blood test]] should be within desired ranges.&lt;br /&gt;
&lt;br /&gt;
== Disclaimers ==&lt;br /&gt;
 To clarify on &#039;&#039;&#039;dosages&#039;&#039;&#039;, the values mentioned below are rather speculative and most are based on &#039;&#039;&#039;personal experiences&#039;&#039;&#039; or &#039;&#039;&#039;(diy)hrt pages/websites/papers&#039;&#039;&#039;. Therefore it is encouraged to do [[Blood Testing|blood tests]] and if possible, check with an [[Doctors#Ενδοκρινολόγοι|endocrinologist]] (we also suggest [[Doctors]] that can help with such cases), especially if you have any specific &#039;&#039;&#039;health conditions&#039;&#039;&#039;. &lt;br /&gt;
&#039;&#039;&#039;Pricemaps&#039;&#039;&#039; are there to evaluate prices through &#039;&#039;&#039;[https://galinos.gr galinos.gr]&#039;&#039;&#039; (in case something is outdated, look for the green line that says &amp;quot;Λιανική&amp;quot;)&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Questionable resources&#039;&#039;&#039; are to be taken with a grain of salt on every aspect of their contents.&lt;br /&gt;
&lt;br /&gt;
We are open to discussion and actively on-going changes in formatting and contents of this Page and Website (in general). The e-mail address to refer to is &#039;&#039;&#039;fox@diyon.top&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
== Blood Levels ==&lt;br /&gt;
&lt;br /&gt;
==== Refer to the [[Blood Testing]] page. ====&lt;br /&gt;
== Transfem ==&lt;br /&gt;
Taking hormone blockers ([[HRT#Antiandrogens and GNRH Agonists|GNRH Agonists]], e.g: Arvekap) or any Anti Androgens (e.g: Aldactone, Androcur) &#039;&#039;&#039;without [[HRT#Estrogens|Estrogens]]&#039;&#039;&#039; is generally discouraged. (This is &#039;&#039;&#039;non-definitive&#039;&#039;&#039; for Enby folks)&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--T:44--&amp;gt;&lt;br /&gt;
=== Monotherapy ===&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|+&lt;br /&gt;
!Type&lt;br /&gt;
!Commercial Names&lt;br /&gt;
!Dosage&lt;br /&gt;
!Notes&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
====== Sublingual (E Valerate or Hemihydrate) ======&lt;br /&gt;
|Cyclacur (EV), Estrofem (EH, imported), Trisequens (12 pills 2mg EH, 10 pills norgestrel, 6 pills 1mg EH)&lt;br /&gt;
|&amp;gt;=8-12mg/day&lt;br /&gt;
|While it is possible, even with a smaller dosage (&#039;&#039;&#039;at least 6mg&#039;&#039;&#039;), it&#039;s not that common. Ideally, use your blood tests to &#039;&#039;&#039;minmax&#039;&#039;&#039; your doses.&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
====== Injectable Estradiol Valerate (EV) ======&lt;br /&gt;
|Neofollin (can be ordered from pharmacies near Czechia, or aptekaapo.com &#039;&#039;&#039;but they’re not on hrtcafe&#039;&#039;&#039;, not tested in Greece), Delestrogen (Vial, unavailable), Progynon Depot (Ampules, unavailable), [[File:What-excuse-me.gif|thumb|[[HRT#Other resources|my honest reaction]]]]&lt;br /&gt;
|5-7mg/5 days&lt;br /&gt;
|&lt;br /&gt;
* Due to the large spikes in levels combined with the short [https://en.wikipedia.org/wiki/Biological_half-life half-life] it is not recommended for dosages to surpass the 5 day mark because it may cause menopause symptoms.&lt;br /&gt;
* Branded versions of this medication are not available in greece.&lt;br /&gt;
* The ampules contain a certain mg and do not allow for larger dosages, they are not re-usable. It is recommended to use a vial with a cap.&lt;br /&gt;
* Look for &#039;&#039;&#039;[https://arc-w.nihr.ac.uk/Wordpress/wp-content/uploads/2015/07/Low-dead-space-syringes.png syringe dead space]([[HRT#:~:text=* = It has been mentioned that syringes account for dead space, although that is not 100% certain.|*]])&#039;&#039;&#039;, e.g. if there&#039;s &#039;&#039;&#039;0.05mL&#039;&#039;&#039; remaining after injecting, draw &#039;&#039;&#039;+0.05mL&#039;&#039;&#039; from the vial.&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
====== Injectable Estradiol Cypionate (EC) ======&lt;br /&gt;
|[[File:What-excuse-me.gif|thumb|[[HRT#Other resources|my honest reaction]]]]Depo-Estradiol (US only, unavailable),&lt;br /&gt;
|5-7mg/7 days&lt;br /&gt;
|&lt;br /&gt;
* Look for &#039;&#039;&#039;[https://arc-w.nihr.ac.uk/Wordpress/wp-content/uploads/2015/07/Low-dead-space-syringes.png syringe dead space]([[HRT#:~:text=* = It has been mentioned that syringes account for dead space, although that is not 100% certain.|*]])&#039;&#039;&#039;, e.g. if there&#039;s &#039;&#039;&#039;0.05mL&#039;&#039;&#039; remaining after injecting, draw &#039;&#039;&#039;+0.05mL&#039;&#039;&#039; from the vial.&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
====== Injectable Estradiol Enanthate (EEn) ======&lt;br /&gt;
|[[File:What-excuse-me.gif|thumb|[[HRT#Other resources|my honest reaction]]]]&lt;br /&gt;
|4-7mg/7 days&lt;br /&gt;
7-10mg/10 days (7.2mg usually, depending on the vial, it&#039;s optimal because drawing cents of mL are hard to get right)&lt;br /&gt;
|&lt;br /&gt;
* You can multiply the weekly dosage by 2, which lasts up to 14 days (as much as the [https://en.wikipedia.org/wiki/Biological_half-life half-life] of Enanthate)&lt;br /&gt;
* Look for &#039;&#039;&#039;[https://arc-w.nihr.ac.uk/Wordpress/wp-content/uploads/2015/07/Low-dead-space-syringes.png syringe dead space]([[HRT#:~:text=* = It has been mentioned that syringes account for dead space, although that is not 100% certain.|*]])&#039;&#039;&#039;, e.g. if there&#039;s &#039;&#039;&#039;0.05mL&#039;&#039;&#039; remaining after injecting, draw &#039;&#039;&#039;+0.05mL&#039;&#039;&#039; from the vial.&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
====== Injectable Estradiol Undecylate (EU/EUn) ======&lt;br /&gt;
|[[File:What-excuse-me.gif|thumb|[[HRT#Other resources|my honest reaction]]]]&lt;br /&gt;
|There&#039;s not enough information on dosage. The frequency of those may differ according to the oil used (MCT/Castor oil). Indicative Dosages:&lt;br /&gt;
15-20mg/2 weeks&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--T:45--&amp;gt;&lt;br /&gt;
20-40mg+/4 weeks&lt;br /&gt;
|&lt;br /&gt;
* There&#039;s not enough information on its [[wikipedia:Biological_half-life|half-life]], a higher dosage can be administered that can last up to 20-30 days.&lt;br /&gt;
* [[wikipedia:Intramuscular_injection|IM injections]] last longer so they give better levels during the same period of time per injection.&lt;br /&gt;
* Needs at least 90 days to reach stable levels.&lt;br /&gt;
* Look for &#039;&#039;&#039;[https://arc-w.nihr.ac.uk/Wordpress/wp-content/uploads/2015/07/Low-dead-space-syringes.png syringe dead space]([[HRT#:~:text=* = It has been mentioned that syringes account for dead space, although that is not 100% certain.|*]])&#039;&#039;&#039;, e.g. if there&#039;s &#039;&#039;&#039;0.05mL&#039;&#039;&#039; remaining after injecting, draw &#039;&#039;&#039;+0.05mL&#039;&#039;&#039; from the vial.&lt;br /&gt;
|}&lt;br /&gt;
&#039;&#039;&#039;*&#039;&#039;&#039; = It has been mentioned that syringes account for dead space, although that is not 100% certain.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--T:46--&amp;gt;&lt;br /&gt;
=== Sublingual vs Oral ===&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|+&lt;br /&gt;
!Method&lt;br /&gt;
!Substance&lt;br /&gt;
!Dosage&lt;br /&gt;
!Observations&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
====== Oral ======&lt;br /&gt;
|Estradiol Valerate in pill form (e.g. Cyclacur)&lt;br /&gt;
|&amp;gt;=6mg/day&lt;br /&gt;
(max 10mg as per Dr. Powers)&lt;br /&gt;
|It is recommended that doses are taken separately on set time intervals during the day for more stable estradiol levels, e.g. for a 6mg dose you would take 2mg per 8 hours. By the oral route the active substance is metabolized by the liver and part of it is converted to estrone (E1), which has much less feminizing effects than estradiol (E2) so the desired effect is essentially prevented. The bioavailability of estradiol by oral administration is very low (~5%) and usually lower levels of E2 are observed in blood tests than other methods of administration. [anecdotal apo to server, wikipedia kai tttt - correct/expand?] It is also necessary to administer anti-androgens to reduce testosterone levels to the female range.&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
====== Sublingual ======&lt;br /&gt;
|Estradiol Valerate in pill form (e.g. Cyclacur)&lt;br /&gt;
|&amp;gt;=4mg/day&lt;br /&gt;
|It is recommended that doses are taken separately on set time intervals during the day for more stable estradiol levels, e.g. for a 6mg dose you would take 2mg per 8 hours. The sublingual way bypasses estradiol metabolism by the liver and has about 5 times the estradiol bioavailability of the oral way. This way, estradiol levels have greater range than orally (higher peak lower bottom), in oral they remain higher for ~12 hours while sublingually they go away after 3-4 hours (This however is from a study from 2005 on cis women)&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== Vial info === &amp;lt;!--T:47--&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--T:48--&amp;gt;&lt;br /&gt;
=== Medications ===&lt;br /&gt;
For cyclacur: &#039;&#039;&#039;take only the white pills, the brown pills are Norgestrel which have 0.5mg of estradiol but has an androgenic effect and may also cause other side effects&#039;&#039;&#039;. &lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--T:49--&amp;gt;&lt;br /&gt;
==== Estrogens ====&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|+&lt;br /&gt;
!Brand Name(s)&lt;br /&gt;
!Substance&lt;br /&gt;
!Form&lt;br /&gt;
!Method of Administration&lt;br /&gt;
!Cost&lt;br /&gt;
!Cost with Healthcare Coverage&lt;br /&gt;
!Dosage&lt;br /&gt;
!Safety&lt;br /&gt;
!Notes&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
====== [https://www.galinos.gr/web/drugs/main/drugs/Cyclacur Cyclacur] ======&lt;br /&gt;
|Estradiol Valerate (EV)&lt;br /&gt;
|Pill tablet&lt;br /&gt;
|Orally or sublingually&lt;br /&gt;
|2.01€ for 11 pills ([https://www.galinos.gr/service/drugs/drawPackagePrice/1198 Pricemap])&lt;br /&gt;
~130.8-328.€/year&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--T:50--&amp;gt;&lt;br /&gt;
~10.9-27.4€/month&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--T:51--&amp;gt;&lt;br /&gt;
Prices are indicative, the cost depends on the dosage.&lt;br /&gt;
| -&lt;br /&gt;
|6mg-10mg/day (according to Dr. Will Powers)&lt;br /&gt;
4mg-8mg/day (according to Greek Endocrinologists)&lt;br /&gt;
|A&lt;br /&gt;
|&lt;br /&gt;
* &#039;&#039;&#039;Only white pills are used.&#039;&#039;&#039; Brown pills do have a bit of estradiol but arent taken due to other side effects.&lt;br /&gt;
* You need antiandrogens or GNRH antagonists if you haven&#039;t had an orchiectomy.&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
====== Progynova ======&lt;br /&gt;
|Estradiol Valerate (EV)&lt;br /&gt;
|Pill tablet&lt;br /&gt;
|Orally or sublingually&lt;br /&gt;
|~22€ for 72 pills of 1 mg or ~32€ for 72 pills of 2 mg&lt;br /&gt;
Prices are indicative, the cost depends on the dosage.&lt;br /&gt;
| -&lt;br /&gt;
|4mg-8mg/day&lt;br /&gt;
|A&lt;br /&gt;
|&lt;br /&gt;
* There is no reason to use it in Greece since Cyclacur is available in Greek pharmacies.&lt;br /&gt;
* You need antiandrogens or GNRH antagonists if you haven&#039;t had an orchiectomy.&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
====== Estrofem, Estrifam (german brand name), [https://www.galinos.gr/web/drugs/main/drugs/trisequens Trisequens] ======&lt;br /&gt;
|Estradiol Hemihydrate&lt;br /&gt;
|Pill tablet&lt;br /&gt;
|Orally or sublingually&lt;br /&gt;
|~30€ for 28 pills of 2 mg without shipping costs.&lt;br /&gt;
Prices are indicative, the cost depends on the dosage.&lt;br /&gt;
| -&lt;br /&gt;
|4mg-8mg/day&lt;br /&gt;
|A&lt;br /&gt;
|&lt;br /&gt;
* There is no reason to use it in Greece since Cyclacur is available in Greek pharmacies.&lt;br /&gt;
* You need antiandrogens or GNRH antagonists if you haven&#039;t had an orchiectomy.&lt;br /&gt;
* Trisequens, while being available in Greece, is odd to take with 12 pills being 2mg EH, 10 norgestrel, and 6 1mg EH, for a much higher price than [[HRT#Cyclacur|Cyclacur]].&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
====== [https://www.galinos.gr/web/drugs/main/drugs/Dermestril Dermestril] ======&lt;br /&gt;
|Estradiol Hemihydrate&lt;br /&gt;
|Patch&lt;br /&gt;
|Trans-dermally&lt;br /&gt;
|44€ for 24 patches of 100mcg&lt;br /&gt;
~15€ for 8 patches of 50mcg&lt;br /&gt;
| -&lt;br /&gt;
|50mcg/3.5 days (when starting off)&lt;br /&gt;
100mcg/3.5 days (whenever your e2 levels are stable)&lt;br /&gt;
|A+&lt;br /&gt;
|&lt;br /&gt;
* &#039;&#039;&#039;If you have no idea how to apply patches watch this:&#039;&#039;&#039; [https://youtu.be/tXGIYWPqdpI?si=O0dlE19pq0ic0PZP Demonstrational Video]&lt;br /&gt;
* You need antiandrogens or GNRH antagonists if you haven&#039;t had an orchiectomy.&lt;br /&gt;
* 100mcg patches can be cut into 2 if needed.&lt;br /&gt;
|-&lt;br /&gt;
|Neofollin (can be ordered from pharmacies near Czechia, not tested in Greece), Delestrogen (Vial, unavailable), Progynon Depot (Ampules, unavailable)&lt;br /&gt;
|&lt;br /&gt;
====== Estradiol Valerate (EV) ======&lt;br /&gt;
|Injectable&lt;br /&gt;
|Subcutaneous or Intramuscular&lt;br /&gt;
|100-110€/year (including shipping costs, syringes and alcohol swabs)&lt;br /&gt;
| -&lt;br /&gt;
|5-7mg/5 days (monotherapy)&lt;br /&gt;
4-5mg/7 days (only in combination with an antiandrogen or GNRH agonist)&lt;br /&gt;
|A+&lt;br /&gt;
|&lt;br /&gt;
* It can be used without antiandrogens or GNRH agonists in ([[HRT#Μονοθεραπεία|Monotherapy]]) by increasing the dosage.&lt;br /&gt;
|-&lt;br /&gt;
|Depo-Estradiol (US only, unavailable)&lt;br /&gt;
|&lt;br /&gt;
====== Estradiol Cypionate (EC) ======&lt;br /&gt;
|Injectable&lt;br /&gt;
|Subcutaneous or Intramuscular&lt;br /&gt;
|~70-80€/year (not including shipping costs, syringes and alcohol swabs)&lt;br /&gt;
| -&lt;br /&gt;
|5-7mg/7 days&lt;br /&gt;
(&#039;&#039;&#039;mono dose&#039;&#039;&#039;)&lt;br /&gt;
? (TBD/&#039;&#039;&#039;dose with AA&#039;&#039;&#039;)&lt;br /&gt;
|A+&lt;br /&gt;
|&lt;br /&gt;
* It can be used without antiandrogens or GNRH agonists in ([[HRT#Μονοθεραπεία|Monotherapy]])&lt;br /&gt;
|-&lt;br /&gt;
| -&lt;br /&gt;
|&lt;br /&gt;
====== Estradiol Enanthate (EEn) ======&lt;br /&gt;
|Injectable&lt;br /&gt;
|Subcutaneous or Intramuscular&lt;br /&gt;
|80€/year (including shipping costs, syringes and alcohol swabs)&lt;br /&gt;
| -&lt;br /&gt;
|2.5mg-7mg/7 days&lt;br /&gt;
(usual dosage: 4mg/7days)&lt;br /&gt;
|A+&lt;br /&gt;
|&lt;br /&gt;
* It can be used without antiandrogens or GNRH agonists in ([[HRT#Μονοθεραπεία|Monotherapy]]) by increasing the dosage.&lt;br /&gt;
|-&lt;br /&gt;
| -&lt;br /&gt;
|&lt;br /&gt;
====== Estradiol Undecylate (EU, EUn) ======&lt;br /&gt;
|Injectable&lt;br /&gt;
|Subcutaneous or Intramuscular&lt;br /&gt;
|130€/year (including shipping costs, syringes and alcohol swabs)&lt;br /&gt;
| -&lt;br /&gt;
|15-20mg/2 weeks&lt;br /&gt;
20-40mg+/4 weeks&lt;br /&gt;
|?&lt;br /&gt;
|&lt;br /&gt;
* There&#039;s not much info on dosages, usually seen in [[HRT#Μονοθεραπεία|monotherapy]].&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--T:52--&amp;gt;&lt;br /&gt;
==== Anti-Androgens and GNRH Agonists ====&lt;br /&gt;
These should &#039;&#039;&#039;not&#039;&#039;&#039; be taken sublingually.&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|+&lt;br /&gt;
!Brand Name(s)&lt;br /&gt;
!Substance&lt;br /&gt;
!Cost&lt;br /&gt;
!Cost with Healthcare Coverage&lt;br /&gt;
!Dosage&lt;br /&gt;
!Safety&lt;br /&gt;
!Form&lt;br /&gt;
!Type&lt;br /&gt;
!Notes&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
====== [https://www.galinos.gr/web/drugs/main/drugs/Androcur Androcur] ======&lt;br /&gt;
|Cyproterone Acetate (CPA) is also referred to as cypro&lt;br /&gt;
|21.58€/50mg * 50 pills &lt;br /&gt;
19.7-31.5€/year&lt;br /&gt;
&lt;br /&gt;
([https://www.galinos.gr/service/drugs/drawPackagePrice/8023 Pricemap])&lt;br /&gt;
|?&lt;br /&gt;
|12.5mg/2 days- 10mg/day&lt;br /&gt;
&#039;&#039;&#039;Larger doses shouldn&#039;t be administered&#039;&#039;&#039;&lt;br /&gt;
|C&lt;br /&gt;
|Pill tablet&lt;br /&gt;
|Progestin (Steroidal antiandrogen)&lt;br /&gt;
Stops testosterone production.&lt;br /&gt;
|The max recommended dosage is 10mg/day . Monitoring of prolactin levels is recommended through [[Blood Testing#MTF|blood testing]].&lt;br /&gt;
&#039;&#039;&#039;Many doctors give overdoses of 50 mg/day. Cyproterone is a strong anti-androgen and testosterone suppression is possible with lower doses. A change of doctor is recommended.&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--T:53--&amp;gt;&lt;br /&gt;
[[wikipedia:Side_effects_of_cyproterone_acetate|Side Effects]]:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--T:54--&amp;gt;&lt;br /&gt;
* Benign brain tumor.&lt;br /&gt;
* In rare cases, liver damage.&lt;br /&gt;
* Vitamin B12 deficiency.&lt;br /&gt;
* Breast cancer.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--T:55--&amp;gt;&lt;br /&gt;
Testosterone suppression can be achieved with even lower doses, however a 50 mg pill is difficult to cut into pieces of less than 12.5 mg even with a pill cutter.&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
====== [https://www.galinos.gr/web/drugs/main/drugs/Bicalut Bicalut] ======&lt;br /&gt;
|Bicalutamide (aka: bica)&lt;br /&gt;
|29.10 euro/30 pills&lt;br /&gt;
29.10 euro/month&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--T:56--&amp;gt;&lt;br /&gt;
~350 euro/year&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
([https://www.galinos.gr/service/drugs/drawPackagePrice/11120 Pricemap])&lt;br /&gt;
|6.77 euro/month (28 tabs)&lt;br /&gt;
~95 euro/year&lt;br /&gt;
|50mg/day&lt;br /&gt;
|A-&lt;br /&gt;
|Pill/Tablet&lt;br /&gt;
|Androgen receptor antagonist (Nonsteroidal antiandrogen)&lt;br /&gt;
Blocks absorption of all androgens (including testosterone)&lt;br /&gt;
|&#039;&#039;&#039;Serious negative interactions can be noted if combined with other anti-androgens and GNRH agonists (except progesterone)&#039;&#039;&#039;&lt;br /&gt;
&#039;&#039;&#039;Very rare&#039;&#039;&#039; chance for recoverable and non-fatal liver damage for people with a certain rare mutation.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--T:57--&amp;gt;&lt;br /&gt;
Most of the effects listen in the instruction manual are scaremongering. (it lists a very high chance of liver issues when they are actually very rare, and also lists photosensitivity, which if it even occurs at all, it should be quite rare. We are aware of nobody who had a negative interction between alexandrite laser hair removal and bicalutamide).&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--T:58--&amp;gt;&lt;br /&gt;
Note that bicalutamide, unlike most other anti-androgens, &#039;&#039;&#039;does not&#039;&#039;&#039; lower testosterone levels, in fact they usually rise as the body responds to testosterone receptors being inhibited. Do not be alarmed if you notice an increase of testosterone in your blood tests.&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
====== [https://www.galinos.gr/web/drugs/main/drugs/Arvekap Arvekap] ======&lt;br /&gt;
|Triptorelin&lt;br /&gt;
| -&lt;br /&gt;
|~200/year?&lt;br /&gt;
|&lt;br /&gt;
|A?&lt;br /&gt;
|Injection&lt;br /&gt;
|GNRH Agonist&lt;br /&gt;
(indirectly) Stops testosterone AND estrogen production&lt;br /&gt;
|Also a puberty blocker&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
====== [https://www.galinos.gr/web/drugs/main/drugs/aldactone Aldactone] ======&lt;br /&gt;
|Spironolactone&lt;br /&gt;
|5.19 euro/20 tabs (100mg)&lt;br /&gt;
([https://www.galinos.gr/service/drugs/drawPackagePrice/148 Pricemap])&lt;br /&gt;
|?&lt;br /&gt;
|50mg-200mg/day&lt;br /&gt;
|B-C&lt;br /&gt;
|Tablet&lt;br /&gt;
|Antimineralocorticoid/MCRA&lt;br /&gt;
|Very inefficient, makes you pee, it&#039;s a medication for blood pressure&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
|Flutamide&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|F---&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|Only in this table as an example to avoid&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
==== Miscellaneous/Progesterone ====&lt;br /&gt;
Progesterone falls under this category, as it is not quite the same as other Anti-Androgens, the mention of Progesterone in this title is necessary in order to reduce confusion and questions such as &amp;quot;Where is progesterone?&amp;quot; and &amp;quot;Did you remove prog from the page?&amp;quot;.&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
!Brand Name(s)&lt;br /&gt;
!Substance&lt;br /&gt;
!Cost&lt;br /&gt;
!Cost with Healthcare Coverage&lt;br /&gt;
!Dosage&lt;br /&gt;
!Safety&lt;br /&gt;
!Form&lt;br /&gt;
!Type&lt;br /&gt;
!Notes&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
====== [https://www.galinos.gr/web/drugs/main/drugs/utrogestran Utrogestan] ======&lt;br /&gt;
|Progesterone (P4) it is also referred to as prog&lt;br /&gt;
|5.83 euro/30 caps (100mg)&lt;br /&gt;
8.08 euro/15 caps (200mg)&lt;br /&gt;
([https://www.galinos.gr/service/drugs/drawPackagePrice/7619 Pricemap])&lt;br /&gt;
|?&lt;br /&gt;
|100mg or 200mg daily (rectal administration, [[Blood Testing|blood tests]] are recommended)&lt;br /&gt;
|A&lt;br /&gt;
|Capsule&lt;br /&gt;
|Stops testosterone production.&lt;br /&gt;
|There is not much confirmed information about progesterone.&lt;br /&gt;
It can also be taken orally but the absorption rate is very low.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--T:59--&amp;gt;&lt;br /&gt;
Anecdotal claims:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--T:60--&amp;gt;&lt;br /&gt;
* Helps with breast development and with feminization in general.&lt;br /&gt;
* Can be given after one year of estradiol.&lt;br /&gt;
* Suggested to be given after the individual reaches Tanner stage 3.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--T:61--&amp;gt;&lt;br /&gt;
It can have androgenic or other (non-serious, recoverable) effects for some individuals - in particular it can be converted to DHT by the body even in combination with dutasteride or bicalutamide.&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--T:62--&amp;gt;&lt;br /&gt;
==== Other anti-androgens (optional) ====&lt;br /&gt;
These are used to block conversion of other androgens to DHT (which causes hair loss (hair) and body hair growth). They aren&#039;t general use Anti-Androgens.&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
!Brand Name(s)&lt;br /&gt;
!Substance&lt;br /&gt;
!Cost&lt;br /&gt;
!Cost with Healthcare Coverage&lt;br /&gt;
!Dosage&lt;br /&gt;
!Safety&lt;br /&gt;
!Form&lt;br /&gt;
!Type&lt;br /&gt;
!Notes&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
====== [https://www.galinos.gr/web/drugs/main/packages/26485 Dastidem], [https://www.galinos.gr/web/drugs/main/packages/25557 Rafuster], [https://www.galinos.gr/web/drugs/main/packages/25893 Duaride], [https://www.galinos.gr/web/drugs/main/packages/25894 Dustezor] ======&lt;br /&gt;
|Dutasteride&lt;br /&gt;
|7.90€/30 caps&lt;br /&gt;
|~6€/30 caps&lt;br /&gt;
|0.5mg/day (?/TBD)&lt;br /&gt;
|A-&lt;br /&gt;
|Capsule&lt;br /&gt;
| -&lt;br /&gt;
|High effectiveness.&lt;br /&gt;
|-&lt;br /&gt;
| -&lt;br /&gt;
|Finasteride&lt;br /&gt;
| -&lt;br /&gt;
| -&lt;br /&gt;
| -&lt;br /&gt;
|F&lt;br /&gt;
| -&lt;br /&gt;
| -&lt;br /&gt;
|Effectiveness is none to medium (Just take Dutasteride - will not stop conversion of Progesterone to DHT)&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== Transmasc ==&lt;br /&gt;
&lt;br /&gt;
=== Medications ===&lt;br /&gt;
&lt;br /&gt;
==== Testosterone ====&lt;br /&gt;
[https://www.galinos.gr/web/drugs/main/substances/testosterone/marketing Galinos.gr&#039;s testosterone availability page]&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|+&lt;br /&gt;
!Brand Name(s)&lt;br /&gt;
!Substance&lt;br /&gt;
!Form&lt;br /&gt;
!Method of Administration&lt;br /&gt;
!Cost&lt;br /&gt;
!Cost with Healthcare Coverage&lt;br /&gt;
!Dosage&lt;br /&gt;
!Safety&lt;br /&gt;
!Notes&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
====== [https://www.galinos.gr/web/drugs/main/packages/4929 Norma] ======&lt;br /&gt;
|Testosterone Enanthate&lt;br /&gt;
|Injection/Ampule&lt;br /&gt;
|Intramuscular&lt;br /&gt;
|17.67€/ampule &lt;br /&gt;
([https://www.galinos.gr/service/drugs/drawPackagePrice/4929 Pricemap])&lt;br /&gt;
|?&lt;br /&gt;
|?&lt;br /&gt;
|?&lt;br /&gt;
| -&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
====== [https://www.galinos.gr/web/drugs/main/packages/21943 Nebido] ======&lt;br /&gt;
|Testosterone Undecanoate&lt;br /&gt;
|Injection/Vial&lt;br /&gt;
|Intramuscular&lt;br /&gt;
|100.37€/vial&lt;br /&gt;
([https://www.galinos.gr/service/drugs/drawPackagePrice/21943 Pricemap])&lt;br /&gt;
|~32.52€/vial (you pay 25%)&lt;br /&gt;
|1 vial (1000mg/4mL)/10-20 weeks&lt;br /&gt;
|A&lt;br /&gt;
|As a starting dose &#039;&#039;&#039;after a year of HRT&#039;&#039;&#039;, you could also consider:&lt;br /&gt;
&lt;br /&gt;
* Instead of injecting one vial per 20 weeks, you do half every 10-12 weeks, however nothing could be sourced to support this. Though logically it could make sense as a practice.&lt;br /&gt;
* Do a test at 6 weeks after starting, if T is too high don&#039;t take the 2nd dose, if it&#039;s not you can take the 2nd and then test 2 weeks before every other dose.&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
====== [https://www.galinos.gr/web/drugs/main/packages/15739 Tostran] ======&lt;br /&gt;
|Testogel&lt;br /&gt;
|Gel&lt;br /&gt;
|Trans-dermally&lt;br /&gt;
|&#039;&#039;&#039;Starting dose&#039;&#039;&#039;&lt;br /&gt;
&amp;lt;!--T:82--&amp;gt;&lt;br /&gt;
* 35.54€/2 months&lt;br /&gt;
* 213.24€/year&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--T:83--&amp;gt;&lt;br /&gt;
&#039;&#039;&#039;30 mg dose&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--T:84--&amp;gt;&lt;br /&gt;
* 35.54€/40 days&lt;br /&gt;
* ~324.30€/year&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--T:85--&amp;gt;&lt;br /&gt;
&#039;&#039;&#039;40 mg dose&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--T:73--&amp;gt;&lt;br /&gt;
* 35.54€/30 days&lt;br /&gt;
* 426.48€/year&lt;br /&gt;
([https://www.galinos.gr/service/drugs/drawPackagePrice/15739 Pricemap])&lt;br /&gt;
|35.54€ -&amp;gt; 8.89€&lt;br /&gt;
|20mg/day (starting dose)&lt;br /&gt;
30-40mg/day&lt;br /&gt;
|A&lt;br /&gt;
|&lt;br /&gt;
* 1 pump of Tostran (&#039;&#039;&#039;0.5g&#039;&#039;&#039;) delivers 10 mg of T.&lt;br /&gt;
* 2 pumps of Tostran are 1 pump of Testogel (20.25mg of T)&lt;br /&gt;
* Can cause skin reactions.&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
==== GNRH Agonists ====&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
!Brand Name(s)&lt;br /&gt;
!Substance&lt;br /&gt;
! Cost&lt;br /&gt;
!Cost with Healthcare Coverage&lt;br /&gt;
!Dosage&lt;br /&gt;
!Safety&lt;br /&gt;
!Form&lt;br /&gt;
!Type&lt;br /&gt;
!Notes&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
====== [https://www.galinos.gr/web/drugs/main/drugs/Arvekap Arvekap] ======&lt;br /&gt;
|Triptorelin&lt;br /&gt;
| -&lt;br /&gt;
|~200/year?&lt;br /&gt;
|&lt;br /&gt;
|A?&lt;br /&gt;
|Injection&lt;br /&gt;
|GNRH Agonist&lt;br /&gt;
(indirectly) Stops testosterone AND estrogen production&lt;br /&gt;
|Also a puberty blocker&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
==== Other anti-androgens (optional) ====&lt;br /&gt;
These are used to block conversion of other androgens to DHT (which causes hair loss (hair) and body hair growth). They aren&#039;t general use Anti-Androgens.&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
!Brand Name(s)&lt;br /&gt;
!Substance&lt;br /&gt;
!Cost&lt;br /&gt;
!Cost with Healthcare Coverage&lt;br /&gt;
!Dosage&lt;br /&gt;
!Safety&lt;br /&gt;
!Form&lt;br /&gt;
!Type&lt;br /&gt;
!Notes&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
====== [https://www.galinos.gr/web/drugs/main/packages/26485 Dastidem], [https://www.galinos.gr/web/drugs/main/packages/25557 Rafuster], [https://www.galinos.gr/web/drugs/main/packages/25893 Duaride], [https://www.galinos.gr/web/drugs/main/packages/25894 Dustezor] ======&lt;br /&gt;
|Dutasteride&lt;br /&gt;
|7.90€/30 caps&lt;br /&gt;
|~6€/30 caps&lt;br /&gt;
|0.5mg/day (?/TBD)&lt;br /&gt;
|A-&lt;br /&gt;
|Capsule&lt;br /&gt;
| -&lt;br /&gt;
|High effectiveness. &lt;br /&gt;
Not to be confused with proper Anti-Androgens.&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== Nonbinary hrt *under construction* ==&lt;br /&gt;
&lt;br /&gt;
=== !!! disclaimer-warning about potential issues !!! ===&lt;br /&gt;
&lt;br /&gt;
=== General outline of nb hrt for amab and afab ===&lt;br /&gt;
&lt;br /&gt;
=== Medications ===&lt;br /&gt;
&lt;br /&gt;
==== Selective Estrogen Receptor Modulators (SERMs) ====&lt;br /&gt;
&lt;br /&gt;
* Tamoxifen is a selective estrogen receptor modulator (SERM). In some tissues such as the brain it activates estrogen receptors, which may help reduce dysphoria. In breast tissue it antagonizes estrogen receptors, preventing the formation of breast tissue if desired. There is some evidence that Tamoxifen inhibits memory, though the effects of taking it alongside regular estrogen are undocumented. Tamoxifen can cause cognitive dysfunction and increase your risk of stroke and pulmonary embolism. Tamoxifen may also be taken alongside 17β-estradiol, more research is needed. In this combination, estradiol should still have its effects (combating dysphoria in the brain, redistribution of body fat, smoother skin etc.) while tamoxifen prevents the growth of breast tissue.&lt;br /&gt;
* Raloxifene is another SERM. It is an estrogen receptor antagonist in breast tissue. It is an estrogen receptor agonist in bone and can be used to prevent osteoporosis. Raloxifene has been shown to reduce ERα expression in breast tissue in premenopausal women. As the synthesis of progesterone receptors (PR) is estrogen-regulated, raloxifene also decreases the expression of PR. Additionally, it was shown to decrease the presence of Ki-67, a biomarker for cell proliferation, in breast tissue of premenopausal women. As a result, it can be used to treat gynecomastia, and has been shown effective in reducing breast size in those with the condition. Raloxifene may promote feminine fat distribution: in a study on 56-66 year old postmenopausal women, there was an increase in fat in the legs and buttocks and a decrease in fat in the abdomen and trunk after 1 year on 60 mg/day raloxifene. It is not yet known how pronounced this effect is, as there have been no comparisons of body fat distribution between raloxifene and estradiol. Raloxifene may increase the risk of stroke and pulmonary embolism.&lt;br /&gt;
* Afimoxifene is a topical SERM and the primary metabolite of tamoxifen.&lt;br /&gt;
&lt;br /&gt;
==== Anti-androgens ====&lt;br /&gt;
&lt;br /&gt;
==== Bicalutamide ====&lt;br /&gt;
Bicalutamide is an  anti-androgen which is used mainly in the treatment of prostate cancer but can also be used to treat hirsutism, or as a component of hormone therapy in feminizing HRT, among other uses. It is nonsteroidal anti-androgen and a selective/pure antagonist of the androgen receptor. It has no other hormonal activity and does not lower androgen levels. Bicalutamide crosses the blood-brain barrier and blocks the effects of testosterone and dihydrotestosterone (DHT) both in the body and in the brain. While it has been observed that bicalutamide does not cross the blood-brain barrier in rats and dogs, this was found not to be the case in humans&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
In general Ralox seems the best idea based on overall effectiveness and less severe side effects compared to other SERMs. Most people on this kind of MtNB hrt seem to be using a combination of ralox (in place of estradiol) and bica [expand this + powers e1s schizo stuff?]&lt;br /&gt;
&lt;br /&gt;
== Legal ==&lt;br /&gt;
It is legal to buy anything without a diagnosis or a prescription (off the counter - OTC), Testosterone can be hit or miss, look for any product names mentioned (that have links attached to them/are blue in colour) [[HRT#Testosterone|here]].  &lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--T:86--&amp;gt;&lt;br /&gt;
You can also check the &#039;&#039;&#039;[https://diyon.top/map Trans-Friendly Pharmacies Map]&#039;&#039;&#039; for any pharmacies near you (this goes for both Transfem and Transmasc HRT). &lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--T:75--&amp;gt;&lt;br /&gt;
There is no minimum or maximum legal age for someone to start HRT. &lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--T:76--&amp;gt;&lt;br /&gt;
It is not legally mandatory for someone to have a diagnosis by a psychiatrist in order to medically transition.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--T:77--&amp;gt;&lt;br /&gt;
There is no legally mandatory time restriction for a psychiatrist to monitor you before diagnosing you.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--T:78--&amp;gt;&lt;br /&gt;
You don&#039;t legally need to be on HRT in order to be exempt from the [[army]], change your [[Legal|legal sex]], or to have a [[surgery]].&lt;br /&gt;
&lt;br /&gt;
== Other resources == &amp;lt;!--T:79--&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--T:80--&amp;gt;&lt;br /&gt;
* Simulator: https://www.estrannai.se/&lt;br /&gt;
* https://transfemscience.org/ (note, the authors of this site disagree with a lot of what they are saying, regardless, it is still interesting)&lt;br /&gt;
** Introduction to Hormone Therapy for Transfeminine People: https://transfemscience.org/articles/transfem-intro/&lt;br /&gt;
** Older simulator: https://transfemscience.org/misc/injectable-e2-simulator/&lt;br /&gt;
** Dosage calculator: https://transfemscience.org/misc/injectable-dose-vol-conc-conv/&lt;br /&gt;
* https://diyhrt.wiki/ (alt link: https://anarch.cc/transfeminine-diy-hrt-the-ultimate-guide-2/)&lt;br /&gt;
* https://hrtcafe.net/&lt;br /&gt;
* https://hrt.coffee/&lt;br /&gt;
* https://transharmreduction.org/ - useful for checking potency and quality of diy products.&lt;br /&gt;
* https://www.reddit.com/r/TransDIY/&lt;br /&gt;
* https://www.reddit.com/r/TransfemScience/&lt;br /&gt;
* https://crimethinc.com/2022/12/15/producing-transdermal-estrogen-a-do-it-yourself-guide (alt link: https://anarch.cc/producing-transdermal-estrogen-a-do-it-yourself-guide/, as above)&lt;br /&gt;
&lt;br /&gt;
==== Questionable resources ====&lt;br /&gt;
&lt;br /&gt;
* https://hrt.cat/ - info for making your own (you will probably not need it - version 1.0: https://hrtcafe.net/hrtcat/)&lt;br /&gt;
* https://groups.io/g/MTFHRT/wiki/29602 - Lena&#039;s guide (alt link: https://anarch.cc/mtf-hrt-ultimate-diy/)&lt;br /&gt;
* https://archive.ph/uQb8g - Noire Labs (alt link: https://anarch.cc/making-your-own-injections/, as above)&lt;br /&gt;
&lt;br /&gt;
==== Very questionable resources ====&lt;br /&gt;
&lt;br /&gt;
* https://archive.ph/cpy7k (alt link: https://anarch.cc/homebrewing-hormones-mtf-guide/, as above) - &#039;&#039;&#039;Potentially outdated.&#039;&#039;&#039;&lt;br /&gt;
&amp;lt;/translate&amp;gt;&lt;/div&gt;</summary>
		<author><name>Goblinmoder</name></author>
	</entry>
	<entry>
		<id>https://wiki.diyon.top/index.php?title=HRT&amp;diff=1014</id>
		<title>HRT</title>
		<link rel="alternate" type="text/html" href="https://wiki.diyon.top/index.php?title=HRT&amp;diff=1014"/>
		<updated>2025-05-03T00:17:55Z</updated>

		<summary type="html">&lt;p&gt;Goblinmoder: changed EC and EUn ratings&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{#seo:&lt;br /&gt;
|title_mode=replace&lt;br /&gt;
|title=HRT&lt;br /&gt;
|description=We are open to discussion and actively on-going changes in formatting and contents of this Page and Website (in general). The e-mail address to refer to is fox@diyon.top&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
&amp;lt;languages/&amp;gt;&lt;br /&gt;
&amp;lt;translate&amp;gt;&lt;br /&gt;
&amp;lt;!--T:41--&amp;gt;&lt;br /&gt;
After around a month on HRT some of your ranges in your [[Blood Testing|blood test]] should be within desired ranges.&lt;br /&gt;
&lt;br /&gt;
== Disclaimers ==&lt;br /&gt;
 To clarify on &#039;&#039;&#039;dosages&#039;&#039;&#039;, the values mentioned below are rather speculative and most are based on &#039;&#039;&#039;personal experiences&#039;&#039;&#039; or &#039;&#039;&#039;(diy)hrt pages/websites/papers&#039;&#039;&#039;. Therefore it is encouraged to do [[Blood Testing|blood tests]] and if possible, check with an [[Doctors#Ενδοκρινολόγοι|endocrinologist]] (we also suggest [[Doctors]] that can help with such cases), especially if you have any specific &#039;&#039;&#039;health conditions&#039;&#039;&#039;. &lt;br /&gt;
&#039;&#039;&#039;Pricemaps&#039;&#039;&#039; are there to evaluate prices through &#039;&#039;&#039;[https://galinos.gr galinos.gr]&#039;&#039;&#039; (in case something is outdated, look for the green line that says &amp;quot;Λιανική&amp;quot;)&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Questionable resources&#039;&#039;&#039; are to be taken with a grain of salt on every aspect of their contents.&lt;br /&gt;
&lt;br /&gt;
We are open to discussion and actively on-going changes in formatting and contents of this Page and Website (in general). The e-mail address to refer to is &#039;&#039;&#039;fox@diyon.top&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
== Blood Levels ==&lt;br /&gt;
&lt;br /&gt;
==== Refer to the [[Blood Testing]] page. ====&lt;br /&gt;
== Transfem ==&lt;br /&gt;
Taking hormone blockers ([[HRT#Antiandrogens and GNRH Agonists|GNRH Agonists]], e.g: Arvekap) or any Anti Androgens (e.g: Aldactone, Androcur) &#039;&#039;&#039;without [[HRT#Estrogens|Estrogens]]&#039;&#039;&#039; is generally discouraged. (This is &#039;&#039;&#039;non-definitive&#039;&#039;&#039; for Enby folks)&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--T:44--&amp;gt;&lt;br /&gt;
=== Monotherapy ===&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|+&lt;br /&gt;
!Type&lt;br /&gt;
!Commercial Names&lt;br /&gt;
!Dosage&lt;br /&gt;
!Notes&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
====== Sublingual (E Valerate or Hemihydrate) ======&lt;br /&gt;
|Cyclacur (EV), Estrofem (EH, imported), Trisequens (12 pills 2mg EH, 10 pills norgestrel, 6 pills 1mg EH)&lt;br /&gt;
|&amp;gt;=8-12mg/day&lt;br /&gt;
|While it is possible, even with a smaller dosage (&#039;&#039;&#039;at least 6mg&#039;&#039;&#039;), it&#039;s not that common. Ideally, use your blood tests to &#039;&#039;&#039;minmax&#039;&#039;&#039; your doses.&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
====== Injectable Estradiol Valerate (EV) ======&lt;br /&gt;
|Neofollin (can be ordered from pharmacies near Czechia, or aptekaapo.com &#039;&#039;&#039;but they’re not on hrtcafe&#039;&#039;&#039;, not tested in Greece), Delestrogen (Vial, unavailable), Progynon Depot (Ampules, unavailable), [[File:What-excuse-me.gif|thumb|[[HRT#Other resources|my honest reaction]]]]&lt;br /&gt;
|5-7mg/5 days&lt;br /&gt;
|&lt;br /&gt;
* Due to the large spikes in levels combined with the short [https://en.wikipedia.org/wiki/Biological_half-life half-life] it is not recommended for dosages to surpass the 5 day mark because it may cause menopause symptoms.&lt;br /&gt;
* Branded versions of this medication are not available in greece.&lt;br /&gt;
* The ampules contain a certain mg and do not allow for larger dosages, they are not re-usable. It is recommended to use a vial with a cap.&lt;br /&gt;
* Look for &#039;&#039;&#039;[https://arc-w.nihr.ac.uk/Wordpress/wp-content/uploads/2015/07/Low-dead-space-syringes.png syringe dead space]([[HRT#:~:text=* = It has been mentioned that syringes account for dead space, although that is not 100% certain.|*]])&#039;&#039;&#039;, e.g. if there&#039;s &#039;&#039;&#039;0.05mL&#039;&#039;&#039; remaining after injecting, draw &#039;&#039;&#039;+0.05mL&#039;&#039;&#039; from the vial.&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
====== Injectable Estradiol Cypionate (EC) ======&lt;br /&gt;
|[[File:What-excuse-me.gif|thumb|[[HRT#Other resources|my honest reaction]]]]Depo-Estradiol (US only, unavailable),&lt;br /&gt;
|5-7mg/7 days&lt;br /&gt;
|&lt;br /&gt;
* Look for &#039;&#039;&#039;[https://arc-w.nihr.ac.uk/Wordpress/wp-content/uploads/2015/07/Low-dead-space-syringes.png syringe dead space]([[HRT#:~:text=* = It has been mentioned that syringes account for dead space, although that is not 100% certain.|*]])&#039;&#039;&#039;, e.g. if there&#039;s &#039;&#039;&#039;0.05mL&#039;&#039;&#039; remaining after injecting, draw &#039;&#039;&#039;+0.05mL&#039;&#039;&#039; from the vial.&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
====== Injectable Estradiol Enanthate (EEn) ======&lt;br /&gt;
|[[File:What-excuse-me.gif|thumb|[[HRT#Other resources|my honest reaction]]]]&lt;br /&gt;
|4-7mg/7 days&lt;br /&gt;
7-10mg/10 days (7.2mg usually, depending on the vial, it&#039;s optimal because drawing cents of mL are hard to get right)&lt;br /&gt;
|&lt;br /&gt;
* You can multiply the weekly dosage by 2, which lasts up to 14 days (as much as the [https://en.wikipedia.org/wiki/Biological_half-life half-life] of Enanthate)&lt;br /&gt;
* Look for &#039;&#039;&#039;[https://arc-w.nihr.ac.uk/Wordpress/wp-content/uploads/2015/07/Low-dead-space-syringes.png syringe dead space]([[HRT#:~:text=* = It has been mentioned that syringes account for dead space, although that is not 100% certain.|*]])&#039;&#039;&#039;, e.g. if there&#039;s &#039;&#039;&#039;0.05mL&#039;&#039;&#039; remaining after injecting, draw &#039;&#039;&#039;+0.05mL&#039;&#039;&#039; from the vial.&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
====== Injectable Estradiol Undecylate (EU/EUn) ======&lt;br /&gt;
|[[File:What-excuse-me.gif|thumb|[[HRT#Other resources|my honest reaction]]]]&lt;br /&gt;
|There&#039;s not enough information on dosage. The frequency of those may differ according to the oil used (MCT/Castor oil). Indicative Dosages:&lt;br /&gt;
15-20mg/2 weeks&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--T:45--&amp;gt;&lt;br /&gt;
20-40mg+/4 weeks&lt;br /&gt;
|&lt;br /&gt;
* There&#039;s not enough information on its [[wikipedia:Biological_half-life|half-life]], a higher dosage can be administered that can last up to 20-30 days.&lt;br /&gt;
* [[wikipedia:Intramuscular_injection|IM injections]] last longer so they give better levels during the same period of time per injection.&lt;br /&gt;
* Needs at least 90 days to reach stable levels.&lt;br /&gt;
* Look for &#039;&#039;&#039;[https://arc-w.nihr.ac.uk/Wordpress/wp-content/uploads/2015/07/Low-dead-space-syringes.png syringe dead space]([[HRT#:~:text=* = It has been mentioned that syringes account for dead space, although that is not 100% certain.|*]])&#039;&#039;&#039;, e.g. if there&#039;s &#039;&#039;&#039;0.05mL&#039;&#039;&#039; remaining after injecting, draw &#039;&#039;&#039;+0.05mL&#039;&#039;&#039; from the vial.&lt;br /&gt;
|}&lt;br /&gt;
&#039;&#039;&#039;*&#039;&#039;&#039; = It has been mentioned that syringes account for dead space, although that is not 100% certain.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--T:46--&amp;gt;&lt;br /&gt;
=== Sublingual vs Oral ===&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|+&lt;br /&gt;
!Method&lt;br /&gt;
!Substance&lt;br /&gt;
!Dosage&lt;br /&gt;
!Observations&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
====== Oral ======&lt;br /&gt;
|Estradiol Valerate in pill form (e.g. Cyclacur)&lt;br /&gt;
|&amp;gt;=6mg/day&lt;br /&gt;
(max 10mg as per Dr. Powers)&lt;br /&gt;
|It is recommended that doses are taken separately on set time intervals during the day for more stable estradiol levels, e.g. for a 6mg dose you would take 2mg per 8 hours. By the oral route the active substance is metabolized by the liver and part of it is converted to estrone (E1), which has much less feminizing effects than estradiol (E2) so the desired effect is essentially prevented. The bioavailability of estradiol by oral administration is very low (~5%) and usually lower levels of E2 are observed in blood tests than other methods of administration. [anecdotal apo to server, wikipedia kai tttt - correct/expand?] It is also necessary to administer anti-androgens to reduce testosterone levels to the female range.&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
====== Sublingual ======&lt;br /&gt;
|Estradiol Valerate in pill form (e.g. Cyclacur)&lt;br /&gt;
|&amp;gt;=4mg/day&lt;br /&gt;
|It is recommended that doses are taken separately on set time intervals during the day for more stable estradiol levels, e.g. for a 6mg dose you would take 2mg per 8 hours. The sublingual way bypasses estradiol metabolism by the liver and has about 5 times the estradiol bioavailability of the oral way. This way, estradiol levels have greater range than orally (higher peak lower bottom), in oral they remain higher for ~12 hours while sublingually they go away after 3-4 hours (This however is from a study from 2005 on cis women)&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== Vial info === &amp;lt;!--T:47--&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--T:48--&amp;gt;&lt;br /&gt;
=== Medications ===&lt;br /&gt;
For cyclacur: &#039;&#039;&#039;take only the white pills, the brown pills are Norgestrel which have 0.5mg of estradiol but has an androgenic effect and may also cause other side effects&#039;&#039;&#039;. &lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--T:49--&amp;gt;&lt;br /&gt;
==== Estrogens ====&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|+&lt;br /&gt;
!Brand Name(s)&lt;br /&gt;
!Substance&lt;br /&gt;
!Form&lt;br /&gt;
!Method of Administration&lt;br /&gt;
!Cost&lt;br /&gt;
!Cost with Healthcare Coverage&lt;br /&gt;
!Dosage&lt;br /&gt;
!Safety&lt;br /&gt;
!Notes&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
====== [https://www.galinos.gr/web/drugs/main/drugs/Cyclacur Cyclacur] ======&lt;br /&gt;
|Estradiol Valerate (EV)&lt;br /&gt;
|Pill tablet&lt;br /&gt;
|Orally or sublingually&lt;br /&gt;
|2.01€ for 11 pills ([https://www.galinos.gr/service/drugs/drawPackagePrice/1198 Pricemap])&lt;br /&gt;
~130.8-328.€/year&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--T:50--&amp;gt;&lt;br /&gt;
~10.9-27.4€/month&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--T:51--&amp;gt;&lt;br /&gt;
Prices are indicative, the cost depends on the dosage.&lt;br /&gt;
| -&lt;br /&gt;
|6mg-10mg/day (according to Dr. Will Powers)&lt;br /&gt;
4mg-8mg/day (according to Greek Endocrinologists)&lt;br /&gt;
|A&lt;br /&gt;
|&lt;br /&gt;
* &#039;&#039;&#039;Only white pills are used.&#039;&#039;&#039; Brown pills do have a bit of estradiol but arent taken due to other side effects.&lt;br /&gt;
* You need antiandrogens or GNRH antagonists if you haven&#039;t had an orchiectomy.&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
====== Progynova ======&lt;br /&gt;
|Estradiol Valerate (EV)&lt;br /&gt;
|Pill tablet&lt;br /&gt;
|Orally or sublingually&lt;br /&gt;
|~22€ for 72 pills of 1 mg or ~32€ for 72 pills of 2 mg&lt;br /&gt;
Prices are indicative, the cost depends on the dosage.&lt;br /&gt;
| -&lt;br /&gt;
|4mg-8mg/day&lt;br /&gt;
|A&lt;br /&gt;
|&lt;br /&gt;
* There is no reason to use it in Greece since Cyclacur is available in Greek pharmacies.&lt;br /&gt;
* You need antiandrogens or GNRH antagonists if you haven&#039;t had an orchiectomy.&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
====== Estrofem, Estrifam (german brand name), [https://www.galinos.gr/web/drugs/main/drugs/trisequens Trisequens] ======&lt;br /&gt;
|Estradiol Hemihydrate&lt;br /&gt;
|Pill tablet&lt;br /&gt;
|Orally or sublingually&lt;br /&gt;
|~30€ for 28 pills of 2 mg without shipping costs.&lt;br /&gt;
Prices are indicative, the cost depends on the dosage.&lt;br /&gt;
| -&lt;br /&gt;
|4mg-8mg/day&lt;br /&gt;
|A&lt;br /&gt;
|&lt;br /&gt;
* There is no reason to use it in Greece since Cyclacur is available in Greek pharmacies.&lt;br /&gt;
* You need antiandrogens or GNRH antagonists if you haven&#039;t had an orchiectomy.&lt;br /&gt;
* Trisequens, while being available in Greece, is odd to take with 12 pills being 2mg EH, 10 norgestrel, and 6 1mg EH, for a much higher price than [[HRT#Cyclacur|Cyclacur]].&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
====== [https://www.galinos.gr/web/drugs/main/drugs/Dermestril Dermestril] ======&lt;br /&gt;
|Estradiol Hemihydrate&lt;br /&gt;
|Patch&lt;br /&gt;
|Trans-dermally&lt;br /&gt;
|44€ for 24 patches of 100mcg&lt;br /&gt;
~15€ for 8 patches of 50mcg&lt;br /&gt;
| -&lt;br /&gt;
|50mcg/3.5 days (when starting off)&lt;br /&gt;
100mcg/3.5 days (whenever your e2 levels are stable)&lt;br /&gt;
|A+&lt;br /&gt;
|&lt;br /&gt;
* &#039;&#039;&#039;If you have no idea how to apply patches watch this:&#039;&#039;&#039; [https://youtu.be/tXGIYWPqdpI?si=O0dlE19pq0ic0PZP Demonstrational Video]&lt;br /&gt;
* You need antiandrogens or GNRH antagonists if you haven&#039;t had an orchiectomy.&lt;br /&gt;
* 100mcg patches can be cut into 2 if needed.&lt;br /&gt;
|-&lt;br /&gt;
|Neofollin (can be ordered from pharmacies near Czechia, not tested in Greece), Delestrogen (Vial, unavailable), Progynon Depot (Ampules, unavailable)&lt;br /&gt;
|&lt;br /&gt;
====== Estradiol Valerate (EV) ======&lt;br /&gt;
|Injectable&lt;br /&gt;
|Subcutaneous or Intramuscular&lt;br /&gt;
|80€/year (including shipping costs, syringes and alcohol swabs)&lt;br /&gt;
| -&lt;br /&gt;
|5-7mg/5 days (monotherapy)&lt;br /&gt;
4-5mg/7 days (only in combination with an antiandrogen or GNRH agonist)&lt;br /&gt;
|A+&lt;br /&gt;
|&lt;br /&gt;
* It can be used without antiandrogens or GNRH agonists in ([[HRT#Μονοθεραπεία|Monotherapy]]) by increasing the dosage.&lt;br /&gt;
|-&lt;br /&gt;
|Depo-Estradiol (US only, unavailable)&lt;br /&gt;
|&lt;br /&gt;
====== Estradiol Cypionate (EC) ======&lt;br /&gt;
|Injectable&lt;br /&gt;
|Subcutaneous or Intramuscular&lt;br /&gt;
|~70-80€/year (not including shipping costs, syringes and alcohol swabs)&lt;br /&gt;
| -&lt;br /&gt;
|5-7mg/7 days&lt;br /&gt;
(&#039;&#039;&#039;mono dose&#039;&#039;&#039;)&lt;br /&gt;
? (TBD/&#039;&#039;&#039;dose with AA&#039;&#039;&#039;)&lt;br /&gt;
|A+&lt;br /&gt;
|&lt;br /&gt;
* It can be used without antiandrogens or GNRH agonists in ([[HRT#Μονοθεραπεία|Monotherapy]])&lt;br /&gt;
|-&lt;br /&gt;
| -&lt;br /&gt;
|&lt;br /&gt;
====== Estradiol Enanthate (EEn) ======&lt;br /&gt;
|Injectable&lt;br /&gt;
|Subcutaneous or Intramuscular&lt;br /&gt;
|80€/year (including shipping costs, syringes and alcohol swabs)&lt;br /&gt;
| -&lt;br /&gt;
|2.5mg-7mg/7 days&lt;br /&gt;
(usual dosage: 4mg/7days)&lt;br /&gt;
|A+&lt;br /&gt;
|&lt;br /&gt;
* It can be used without antiandrogens or GNRH agonists in ([[HRT#Μονοθεραπεία|Monotherapy]]) by increasing the dosage.&lt;br /&gt;
|-&lt;br /&gt;
| -&lt;br /&gt;
|&lt;br /&gt;
====== Estradiol Undecylate (EU, EUn) ======&lt;br /&gt;
|Injectable&lt;br /&gt;
|Subcutaneous or Intramuscular&lt;br /&gt;
|130€/year (including shipping costs, syringes and alcohol swabs)&lt;br /&gt;
| -&lt;br /&gt;
|15-20mg/2 weeks&lt;br /&gt;
20-40mg+/4 weeks&lt;br /&gt;
|?&lt;br /&gt;
|&lt;br /&gt;
* There&#039;s not much info on dosages, usually seen in [[HRT#Μονοθεραπεία|monotherapy]].&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--T:52--&amp;gt;&lt;br /&gt;
==== Anti-Androgens and GNRH Agonists ====&lt;br /&gt;
These should &#039;&#039;&#039;not&#039;&#039;&#039; be taken sublingually.&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|+&lt;br /&gt;
!Brand Name(s)&lt;br /&gt;
!Substance&lt;br /&gt;
!Cost&lt;br /&gt;
!Cost with Healthcare Coverage&lt;br /&gt;
!Dosage&lt;br /&gt;
!Safety&lt;br /&gt;
!Form&lt;br /&gt;
!Type&lt;br /&gt;
!Notes&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
====== [https://www.galinos.gr/web/drugs/main/drugs/Androcur Androcur] ======&lt;br /&gt;
|Cyproterone Acetate (CPA) is also referred to as cypro&lt;br /&gt;
|21.58€/50mg * 50 pills &lt;br /&gt;
19.7-31.5€/year&lt;br /&gt;
&lt;br /&gt;
([https://www.galinos.gr/service/drugs/drawPackagePrice/8023 Pricemap])&lt;br /&gt;
|?&lt;br /&gt;
|12.5mg/2 days- 10mg/day&lt;br /&gt;
&#039;&#039;&#039;Larger doses shouldn&#039;t be administered&#039;&#039;&#039;&lt;br /&gt;
|C&lt;br /&gt;
|Pill tablet&lt;br /&gt;
|Progestin (Steroidal antiandrogen)&lt;br /&gt;
Stops testosterone production.&lt;br /&gt;
|The max recommended dosage is 10mg/day . Monitoring of prolactin levels is recommended through [[Blood Testing#MTF|blood testing]].&lt;br /&gt;
&#039;&#039;&#039;Many doctors give overdoses of 50 mg/day. Cyproterone is a strong anti-androgen and testosterone suppression is possible with lower doses. A change of doctor is recommended.&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--T:53--&amp;gt;&lt;br /&gt;
[[wikipedia:Side_effects_of_cyproterone_acetate|Side Effects]]:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--T:54--&amp;gt;&lt;br /&gt;
* Benign brain tumor.&lt;br /&gt;
* In rare cases, liver damage.&lt;br /&gt;
* Vitamin B12 deficiency.&lt;br /&gt;
* Breast cancer.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--T:55--&amp;gt;&lt;br /&gt;
Testosterone suppression can be achieved with even lower doses, however a 50 mg pill is difficult to cut into pieces of less than 12.5 mg even with a pill cutter.&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
====== [https://www.galinos.gr/web/drugs/main/drugs/Bicalut Bicalut] ======&lt;br /&gt;
|Bicalutamide (aka: bica)&lt;br /&gt;
|29.10 euro/30 pills&lt;br /&gt;
29.10 euro/month&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--T:56--&amp;gt;&lt;br /&gt;
~350 euro/year&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
([https://www.galinos.gr/service/drugs/drawPackagePrice/11120 Pricemap])&lt;br /&gt;
|6.77 euro/month (28 tabs)&lt;br /&gt;
~95 euro/year&lt;br /&gt;
|50mg/day&lt;br /&gt;
|A-&lt;br /&gt;
|Pill/Tablet&lt;br /&gt;
|Androgen receptor antagonist (Nonsteroidal antiandrogen)&lt;br /&gt;
Blocks absorption of all androgens (including testosterone)&lt;br /&gt;
|&#039;&#039;&#039;Serious negative interactions can be noted if combined with other anti-androgens and GNRH agonists (except progesterone)&#039;&#039;&#039;&lt;br /&gt;
&#039;&#039;&#039;Very rare&#039;&#039;&#039; chance for recoverable and non-fatal liver damage for people with a certain rare mutation.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--T:57--&amp;gt;&lt;br /&gt;
Most of the effects listen in the instruction manual are scaremongering. (it lists a very high chance of liver issues when they are actually very rare, and also lists photosensitivity, which if it even occurs at all, it should be quite rare. We are aware of nobody who had a negative interction between alexandrite laser hair removal and bicalutamide).&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--T:58--&amp;gt;&lt;br /&gt;
Note that bicalutamide, unlike most other anti-androgens, &#039;&#039;&#039;does not&#039;&#039;&#039; lower testosterone levels, in fact they usually rise as the body responds to testosterone receptors being inhibited. Do not be alarmed if you notice an increase of testosterone in your blood tests.&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
====== [https://www.galinos.gr/web/drugs/main/drugs/Arvekap Arvekap] ======&lt;br /&gt;
|Triptorelin&lt;br /&gt;
| -&lt;br /&gt;
|~200/year?&lt;br /&gt;
|&lt;br /&gt;
|A?&lt;br /&gt;
|Injection&lt;br /&gt;
|GNRH Agonist&lt;br /&gt;
(indirectly) Stops testosterone AND estrogen production&lt;br /&gt;
|Also a puberty blocker&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
====== [https://www.galinos.gr/web/drugs/main/drugs/aldactone Aldactone] ======&lt;br /&gt;
|Spironolactone&lt;br /&gt;
|5.19 euro/20 tabs (100mg)&lt;br /&gt;
([https://www.galinos.gr/service/drugs/drawPackagePrice/148 Pricemap])&lt;br /&gt;
|?&lt;br /&gt;
|50mg-200mg/day&lt;br /&gt;
|B-C&lt;br /&gt;
|Tablet&lt;br /&gt;
|Antimineralocorticoid/MCRA&lt;br /&gt;
|Very inefficient, makes you pee, it&#039;s a medication for blood pressure&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
|Flutamide&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|F---&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|Only in this table as an example to avoid&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
==== Miscellaneous/Progesterone ====&lt;br /&gt;
Progesterone falls under this category, as it is not quite the same as other Anti-Androgens, the mention of Progesterone in this title is necessary in order to reduce confusion and questions such as &amp;quot;Where is progesterone?&amp;quot; and &amp;quot;Did you remove prog from the page?&amp;quot;.&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
!Brand Name(s)&lt;br /&gt;
!Substance&lt;br /&gt;
!Cost&lt;br /&gt;
!Cost with Healthcare Coverage&lt;br /&gt;
!Dosage&lt;br /&gt;
!Safety&lt;br /&gt;
!Form&lt;br /&gt;
!Type&lt;br /&gt;
!Notes&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
====== [https://www.galinos.gr/web/drugs/main/drugs/utrogestran Utrogestan] ======&lt;br /&gt;
|Progesterone (P4) it is also referred to as prog&lt;br /&gt;
|5.83 euro/30 caps (100mg)&lt;br /&gt;
8.08 euro/15 caps (200mg)&lt;br /&gt;
([https://www.galinos.gr/service/drugs/drawPackagePrice/7619 Pricemap])&lt;br /&gt;
|?&lt;br /&gt;
|100mg or 200mg daily (rectal administration, [[Blood Testing|blood tests]] are recommended)&lt;br /&gt;
|A&lt;br /&gt;
|Capsule&lt;br /&gt;
|Stops testosterone production.&lt;br /&gt;
|There is not much confirmed information about progesterone.&lt;br /&gt;
It can also be taken orally but the absorption rate is very low.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--T:59--&amp;gt;&lt;br /&gt;
Anecdotal claims:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--T:60--&amp;gt;&lt;br /&gt;
* Helps with breast development and with feminization in general.&lt;br /&gt;
* Can be given after one year of estradiol.&lt;br /&gt;
* Suggested to be given after the individual reaches Tanner stage 3.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--T:61--&amp;gt;&lt;br /&gt;
It can have androgenic or other (non-serious, recoverable) effects for some individuals - in particular it can be converted to DHT by the body even in combination with dutasteride or bicalutamide.&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--T:62--&amp;gt;&lt;br /&gt;
==== Other anti-androgens (optional) ====&lt;br /&gt;
These are used to block conversion of other androgens to DHT (which causes hair loss (hair) and body hair growth). They aren&#039;t general use Anti-Androgens.&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
!Brand Name(s)&lt;br /&gt;
!Substance&lt;br /&gt;
!Cost&lt;br /&gt;
!Cost with Healthcare Coverage&lt;br /&gt;
!Dosage&lt;br /&gt;
!Safety&lt;br /&gt;
!Form&lt;br /&gt;
!Type&lt;br /&gt;
!Notes&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
====== [https://www.galinos.gr/web/drugs/main/packages/26485 Dastidem], [https://www.galinos.gr/web/drugs/main/packages/25557 Rafuster], [https://www.galinos.gr/web/drugs/main/packages/25893 Duaride], [https://www.galinos.gr/web/drugs/main/packages/25894 Dustezor] ======&lt;br /&gt;
|Dutasteride&lt;br /&gt;
|7.90€/30 caps&lt;br /&gt;
|~6€/30 caps&lt;br /&gt;
|0.5mg/day (?/TBD)&lt;br /&gt;
|A-&lt;br /&gt;
|Capsule&lt;br /&gt;
| -&lt;br /&gt;
|High effectiveness.&lt;br /&gt;
|-&lt;br /&gt;
| -&lt;br /&gt;
|Finasteride&lt;br /&gt;
| -&lt;br /&gt;
| -&lt;br /&gt;
| -&lt;br /&gt;
|F&lt;br /&gt;
| -&lt;br /&gt;
| -&lt;br /&gt;
|Effectiveness is none to medium (Just take Dutasteride - will not stop conversion of Progesterone to DHT)&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== Transmasc ==&lt;br /&gt;
&lt;br /&gt;
=== Medications ===&lt;br /&gt;
&lt;br /&gt;
==== Testosterone ====&lt;br /&gt;
[https://www.galinos.gr/web/drugs/main/substances/testosterone/marketing Galinos.gr&#039;s testosterone availability page]&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|+&lt;br /&gt;
!Brand Name(s)&lt;br /&gt;
!Substance&lt;br /&gt;
!Form&lt;br /&gt;
!Method of Administration&lt;br /&gt;
!Cost&lt;br /&gt;
!Cost with Healthcare Coverage&lt;br /&gt;
!Dosage&lt;br /&gt;
!Safety&lt;br /&gt;
!Notes&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
====== [https://www.galinos.gr/web/drugs/main/packages/4929 Norma] ======&lt;br /&gt;
|Testosterone Enanthate&lt;br /&gt;
|Injection/Ampule&lt;br /&gt;
|Intramuscular&lt;br /&gt;
|17.67€/ampule &lt;br /&gt;
([https://www.galinos.gr/service/drugs/drawPackagePrice/4929 Pricemap])&lt;br /&gt;
|?&lt;br /&gt;
|?&lt;br /&gt;
|?&lt;br /&gt;
| -&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
====== [https://www.galinos.gr/web/drugs/main/packages/21943 Nebido] ======&lt;br /&gt;
|Testosterone Undecanoate&lt;br /&gt;
|Injection/Vial&lt;br /&gt;
|Intramuscular&lt;br /&gt;
|100.37€/vial&lt;br /&gt;
([https://www.galinos.gr/service/drugs/drawPackagePrice/21943 Pricemap])&lt;br /&gt;
|~32.52€/vial (you pay 25%)&lt;br /&gt;
|1 vial (1000mg/4mL)/10-20 weeks&lt;br /&gt;
|A&lt;br /&gt;
|As a starting dose &#039;&#039;&#039;after a year of HRT&#039;&#039;&#039;, you could also consider:&lt;br /&gt;
&lt;br /&gt;
* Instead of injecting one vial per 20 weeks, you do half every 10-12 weeks, however nothing could be sourced to support this. Though logically it could make sense as a practice.&lt;br /&gt;
* Do a test at 6 weeks after starting, if T is too high don&#039;t take the 2nd dose, if it&#039;s not you can take the 2nd and then test 2 weeks before every other dose.&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
====== [https://www.galinos.gr/web/drugs/main/packages/15739 Tostran] ======&lt;br /&gt;
|Testogel&lt;br /&gt;
|Gel&lt;br /&gt;
|Trans-dermally&lt;br /&gt;
|&#039;&#039;&#039;Starting dose&#039;&#039;&#039;&lt;br /&gt;
&amp;lt;!--T:82--&amp;gt;&lt;br /&gt;
* 35.54€/2 months&lt;br /&gt;
* 213.24€/year&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--T:83--&amp;gt;&lt;br /&gt;
&#039;&#039;&#039;30 mg dose&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--T:84--&amp;gt;&lt;br /&gt;
* 35.54€/40 days&lt;br /&gt;
* ~324.30€/year&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--T:85--&amp;gt;&lt;br /&gt;
&#039;&#039;&#039;40 mg dose&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--T:73--&amp;gt;&lt;br /&gt;
* 35.54€/30 days&lt;br /&gt;
* 426.48€/year&lt;br /&gt;
([https://www.galinos.gr/service/drugs/drawPackagePrice/15739 Pricemap])&lt;br /&gt;
|35.54€ -&amp;gt; 8.89€&lt;br /&gt;
|20mg/day (starting dose)&lt;br /&gt;
30-40mg/day&lt;br /&gt;
|A&lt;br /&gt;
|&lt;br /&gt;
* 1 pump of Tostran (&#039;&#039;&#039;0.5g&#039;&#039;&#039;) delivers 10 mg of T.&lt;br /&gt;
* 2 pumps of Tostran are 1 pump of Testogel (20.25mg of T)&lt;br /&gt;
* Can cause skin reactions.&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
==== GNRH Agonists ====&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
!Brand Name(s)&lt;br /&gt;
!Substance&lt;br /&gt;
! Cost&lt;br /&gt;
!Cost with Healthcare Coverage&lt;br /&gt;
!Dosage&lt;br /&gt;
!Safety&lt;br /&gt;
!Form&lt;br /&gt;
!Type&lt;br /&gt;
!Notes&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
====== [https://www.galinos.gr/web/drugs/main/drugs/Arvekap Arvekap] ======&lt;br /&gt;
|Triptorelin&lt;br /&gt;
| -&lt;br /&gt;
|~200/year?&lt;br /&gt;
|&lt;br /&gt;
|A?&lt;br /&gt;
|Injection&lt;br /&gt;
|GNRH Agonist&lt;br /&gt;
(indirectly) Stops testosterone AND estrogen production&lt;br /&gt;
|Also a puberty blocker&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
==== Other anti-androgens (optional) ====&lt;br /&gt;
These are used to block conversion of other androgens to DHT (which causes hair loss (hair) and body hair growth). They aren&#039;t general use Anti-Androgens.&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
!Brand Name(s)&lt;br /&gt;
!Substance&lt;br /&gt;
!Cost&lt;br /&gt;
!Cost with Healthcare Coverage&lt;br /&gt;
!Dosage&lt;br /&gt;
!Safety&lt;br /&gt;
!Form&lt;br /&gt;
!Type&lt;br /&gt;
!Notes&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
====== [https://www.galinos.gr/web/drugs/main/packages/26485 Dastidem], [https://www.galinos.gr/web/drugs/main/packages/25557 Rafuster], [https://www.galinos.gr/web/drugs/main/packages/25893 Duaride], [https://www.galinos.gr/web/drugs/main/packages/25894 Dustezor] ======&lt;br /&gt;
|Dutasteride&lt;br /&gt;
|7.90€/30 caps&lt;br /&gt;
|~6€/30 caps&lt;br /&gt;
|0.5mg/day (?/TBD)&lt;br /&gt;
|A-&lt;br /&gt;
|Capsule&lt;br /&gt;
| -&lt;br /&gt;
|High effectiveness. &lt;br /&gt;
Not to be confused with proper Anti-Androgens.&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== Nonbinary hrt *under construction* ==&lt;br /&gt;
&lt;br /&gt;
=== !!! disclaimer-warning about potential issues !!! ===&lt;br /&gt;
&lt;br /&gt;
=== General outline of nb hrt for amab and afab ===&lt;br /&gt;
&lt;br /&gt;
=== Medications ===&lt;br /&gt;
&lt;br /&gt;
==== Selective Estrogen Receptor Modulators (SERMs) ====&lt;br /&gt;
&lt;br /&gt;
* Tamoxifen is a selective estrogen receptor modulator (SERM). In some tissues such as the brain it activates estrogen receptors, which may help reduce dysphoria. In breast tissue it antagonizes estrogen receptors, preventing the formation of breast tissue if desired. There is some evidence that Tamoxifen inhibits memory, though the effects of taking it alongside regular estrogen are undocumented. Tamoxifen can cause cognitive dysfunction and increase your risk of stroke and pulmonary embolism. Tamoxifen may also be taken alongside 17β-estradiol, more research is needed. In this combination, estradiol should still have its effects (combating dysphoria in the brain, redistribution of body fat, smoother skin etc.) while tamoxifen prevents the growth of breast tissue.&lt;br /&gt;
* Raloxifene is another SERM. It is an estrogen receptor antagonist in breast tissue. It is an estrogen receptor agonist in bone and can be used to prevent osteoporosis. Raloxifene has been shown to reduce ERα expression in breast tissue in premenopausal women. As the synthesis of progesterone receptors (PR) is estrogen-regulated, raloxifene also decreases the expression of PR. Additionally, it was shown to decrease the presence of Ki-67, a biomarker for cell proliferation, in breast tissue of premenopausal women. As a result, it can be used to treat gynecomastia, and has been shown effective in reducing breast size in those with the condition. Raloxifene may promote feminine fat distribution: in a study on 56-66 year old postmenopausal women, there was an increase in fat in the legs and buttocks and a decrease in fat in the abdomen and trunk after 1 year on 60 mg/day raloxifene. It is not yet known how pronounced this effect is, as there have been no comparisons of body fat distribution between raloxifene and estradiol. Raloxifene may increase the risk of stroke and pulmonary embolism.&lt;br /&gt;
* Afimoxifene is a topical SERM and the primary metabolite of tamoxifen.&lt;br /&gt;
&lt;br /&gt;
==== Anti-androgens ====&lt;br /&gt;
&lt;br /&gt;
==== Bicalutamide ====&lt;br /&gt;
Bicalutamide is an  anti-androgen which is used mainly in the treatment of prostate cancer but can also be used to treat hirsutism, or as a component of hormone therapy in feminizing HRT, among other uses. It is nonsteroidal anti-androgen and a selective/pure antagonist of the androgen receptor. It has no other hormonal activity and does not lower androgen levels. Bicalutamide crosses the blood-brain barrier and blocks the effects of testosterone and dihydrotestosterone (DHT) both in the body and in the brain. While it has been observed that bicalutamide does not cross the blood-brain barrier in rats and dogs, this was found not to be the case in humans&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
In general Ralox seems the best idea based on overall effectiveness and less severe side effects compared to other SERMs. Most people on this kind of MtNB hrt seem to be using a combination of ralox (in place of estradiol) and bica [expand this + powers e1s schizo stuff?]&lt;br /&gt;
&lt;br /&gt;
== Legal ==&lt;br /&gt;
It is legal to buy anything without a diagnosis or a prescription (off the counter - OTC), Testosterone can be hit or miss, look for any product names mentioned (that have links attached to them/are blue in colour) [[HRT#Testosterone|here]].  &lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--T:86--&amp;gt;&lt;br /&gt;
You can also check the &#039;&#039;&#039;[https://diyon.top/map Trans-Friendly Pharmacies Map]&#039;&#039;&#039; for any pharmacies near you (this goes for both Transfem and Transmasc HRT). &lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--T:75--&amp;gt;&lt;br /&gt;
There is no minimum or maximum legal age for someone to start HRT. &lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--T:76--&amp;gt;&lt;br /&gt;
It is not legally mandatory for someone to have a diagnosis by a psychiatrist in order to medically transition.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--T:77--&amp;gt;&lt;br /&gt;
There is no legally mandatory time restriction for a psychiatrist to monitor you before diagnosing you.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--T:78--&amp;gt;&lt;br /&gt;
You don&#039;t legally need to be on HRT in order to be exempt from the [[army]], change your [[Legal|legal sex]], or to have a [[surgery]].&lt;br /&gt;
&lt;br /&gt;
== Other resources == &amp;lt;!--T:79--&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--T:80--&amp;gt;&lt;br /&gt;
* Simulator: https://www.estrannai.se/&lt;br /&gt;
* https://transfemscience.org/ (note, the authors of this site disagree with a lot of what they are saying, regardless, it is still interesting)&lt;br /&gt;
** Introduction to Hormone Therapy for Transfeminine People: https://transfemscience.org/articles/transfem-intro/&lt;br /&gt;
** Older simulator: https://transfemscience.org/misc/injectable-e2-simulator/&lt;br /&gt;
** Dosage calculator: https://transfemscience.org/misc/injectable-dose-vol-conc-conv/&lt;br /&gt;
* https://diyhrt.wiki/ (alt link: https://anarch.cc/transfeminine-diy-hrt-the-ultimate-guide-2/)&lt;br /&gt;
* https://hrtcafe.net/&lt;br /&gt;
* https://hrt.coffee/&lt;br /&gt;
* https://transharmreduction.org/ - useful for checking potency and quality of diy products.&lt;br /&gt;
* https://www.reddit.com/r/TransDIY/&lt;br /&gt;
* https://www.reddit.com/r/TransfemScience/&lt;br /&gt;
* https://crimethinc.com/2022/12/15/producing-transdermal-estrogen-a-do-it-yourself-guide (alt link: https://anarch.cc/producing-transdermal-estrogen-a-do-it-yourself-guide/, as above)&lt;br /&gt;
&lt;br /&gt;
==== Questionable resources ====&lt;br /&gt;
&lt;br /&gt;
* https://hrt.cat/ - info for making your own (you will probably not need it - version 1.0: https://hrtcafe.net/hrtcat/)&lt;br /&gt;
* https://groups.io/g/MTFHRT/wiki/29602 - Lena&#039;s guide (alt link: https://anarch.cc/mtf-hrt-ultimate-diy/)&lt;br /&gt;
* https://archive.ph/uQb8g - Noire Labs (alt link: https://anarch.cc/making-your-own-injections/, as above)&lt;br /&gt;
&lt;br /&gt;
==== Very questionable resources ====&lt;br /&gt;
&lt;br /&gt;
* https://archive.ph/cpy7k (alt link: https://anarch.cc/homebrewing-hormones-mtf-guide/, as above) - &#039;&#039;&#039;Potentially outdated.&#039;&#039;&#039;&lt;br /&gt;
&amp;lt;/translate&amp;gt;&lt;/div&gt;</summary>
		<author><name>Goblinmoder</name></author>
	</entry>
	<entry>
		<id>https://wiki.diyon.top/index.php?title=HRT&amp;diff=1013</id>
		<title>HRT</title>
		<link rel="alternate" type="text/html" href="https://wiki.diyon.top/index.php?title=HRT&amp;diff=1013"/>
		<updated>2025-05-03T00:15:22Z</updated>

		<summary type="html">&lt;p&gt;Goblinmoder: fixed e2 patch rating&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{#seo:&lt;br /&gt;
|title_mode=replace&lt;br /&gt;
|title=HRT&lt;br /&gt;
|description=We are open to discussion and actively on-going changes in formatting and contents of this Page and Website (in general). The e-mail address to refer to is fox@diyon.top&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
&amp;lt;languages/&amp;gt;&lt;br /&gt;
&amp;lt;translate&amp;gt;&lt;br /&gt;
&amp;lt;!--T:41--&amp;gt;&lt;br /&gt;
After around a month on HRT some of your ranges in your [[Blood Testing|blood test]] should be within desired ranges.&lt;br /&gt;
&lt;br /&gt;
== Disclaimers ==&lt;br /&gt;
 To clarify on &#039;&#039;&#039;dosages&#039;&#039;&#039;, the values mentioned below are rather speculative and most are based on &#039;&#039;&#039;personal experiences&#039;&#039;&#039; or &#039;&#039;&#039;(diy)hrt pages/websites/papers&#039;&#039;&#039;. Therefore it is encouraged to do [[Blood Testing|blood tests]] and if possible, check with an [[Doctors#Ενδοκρινολόγοι|endocrinologist]] (we also suggest [[Doctors]] that can help with such cases), especially if you have any specific &#039;&#039;&#039;health conditions&#039;&#039;&#039;. &lt;br /&gt;
&#039;&#039;&#039;Pricemaps&#039;&#039;&#039; are there to evaluate prices through &#039;&#039;&#039;[https://galinos.gr galinos.gr]&#039;&#039;&#039; (in case something is outdated, look for the green line that says &amp;quot;Λιανική&amp;quot;)&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Questionable resources&#039;&#039;&#039; are to be taken with a grain of salt on every aspect of their contents.&lt;br /&gt;
&lt;br /&gt;
We are open to discussion and actively on-going changes in formatting and contents of this Page and Website (in general). The e-mail address to refer to is &#039;&#039;&#039;fox@diyon.top&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
== Blood Levels ==&lt;br /&gt;
&lt;br /&gt;
==== Refer to the [[Blood Testing]] page. ====&lt;br /&gt;
== Transfem ==&lt;br /&gt;
Taking hormone blockers ([[HRT#Antiandrogens and GNRH Agonists|GNRH Agonists]], e.g: Arvekap) or any Anti Androgens (e.g: Aldactone, Androcur) &#039;&#039;&#039;without [[HRT#Estrogens|Estrogens]]&#039;&#039;&#039; is generally discouraged. (This is &#039;&#039;&#039;non-definitive&#039;&#039;&#039; for Enby folks)&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--T:44--&amp;gt;&lt;br /&gt;
=== Monotherapy ===&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|+&lt;br /&gt;
!Type&lt;br /&gt;
!Commercial Names&lt;br /&gt;
!Dosage&lt;br /&gt;
!Notes&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
====== Sublingual (E Valerate or Hemihydrate) ======&lt;br /&gt;
|Cyclacur (EV), Estrofem (EH, imported), Trisequens (12 pills 2mg EH, 10 pills norgestrel, 6 pills 1mg EH)&lt;br /&gt;
|&amp;gt;=8-12mg/day&lt;br /&gt;
|While it is possible, even with a smaller dosage (&#039;&#039;&#039;at least 6mg&#039;&#039;&#039;), it&#039;s not that common. Ideally, use your blood tests to &#039;&#039;&#039;minmax&#039;&#039;&#039; your doses.&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
====== Injectable Estradiol Valerate (EV) ======&lt;br /&gt;
|Neofollin (can be ordered from pharmacies near Czechia, or aptekaapo.com &#039;&#039;&#039;but they’re not on hrtcafe&#039;&#039;&#039;, not tested in Greece), Delestrogen (Vial, unavailable), Progynon Depot (Ampules, unavailable), [[File:What-excuse-me.gif|thumb|[[HRT#Other resources|my honest reaction]]]]&lt;br /&gt;
|5-7mg/5 days&lt;br /&gt;
|&lt;br /&gt;
* Due to the large spikes in levels combined with the short [https://en.wikipedia.org/wiki/Biological_half-life half-life] it is not recommended for dosages to surpass the 5 day mark because it may cause menopause symptoms.&lt;br /&gt;
* Branded versions of this medication are not available in greece.&lt;br /&gt;
* The ampules contain a certain mg and do not allow for larger dosages, they are not re-usable. It is recommended to use a vial with a cap.&lt;br /&gt;
* Look for &#039;&#039;&#039;[https://arc-w.nihr.ac.uk/Wordpress/wp-content/uploads/2015/07/Low-dead-space-syringes.png syringe dead space]([[HRT#:~:text=* = It has been mentioned that syringes account for dead space, although that is not 100% certain.|*]])&#039;&#039;&#039;, e.g. if there&#039;s &#039;&#039;&#039;0.05mL&#039;&#039;&#039; remaining after injecting, draw &#039;&#039;&#039;+0.05mL&#039;&#039;&#039; from the vial.&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
====== Injectable Estradiol Cypionate (EC) ======&lt;br /&gt;
|[[File:What-excuse-me.gif|thumb|[[HRT#Other resources|my honest reaction]]]]Depo-Estradiol (US only, unavailable),&lt;br /&gt;
|5-7mg/7 days&lt;br /&gt;
|&lt;br /&gt;
* Look for &#039;&#039;&#039;[https://arc-w.nihr.ac.uk/Wordpress/wp-content/uploads/2015/07/Low-dead-space-syringes.png syringe dead space]([[HRT#:~:text=* = It has been mentioned that syringes account for dead space, although that is not 100% certain.|*]])&#039;&#039;&#039;, e.g. if there&#039;s &#039;&#039;&#039;0.05mL&#039;&#039;&#039; remaining after injecting, draw &#039;&#039;&#039;+0.05mL&#039;&#039;&#039; from the vial.&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
====== Injectable Estradiol Enanthate (EEn) ======&lt;br /&gt;
|[[File:What-excuse-me.gif|thumb|[[HRT#Other resources|my honest reaction]]]]&lt;br /&gt;
|4-7mg/7 days&lt;br /&gt;
7-10mg/10 days (7.2mg usually, depending on the vial, it&#039;s optimal because drawing cents of mL are hard to get right)&lt;br /&gt;
|&lt;br /&gt;
* You can multiply the weekly dosage by 2, which lasts up to 14 days (as much as the [https://en.wikipedia.org/wiki/Biological_half-life half-life] of Enanthate)&lt;br /&gt;
* Look for &#039;&#039;&#039;[https://arc-w.nihr.ac.uk/Wordpress/wp-content/uploads/2015/07/Low-dead-space-syringes.png syringe dead space]([[HRT#:~:text=* = It has been mentioned that syringes account for dead space, although that is not 100% certain.|*]])&#039;&#039;&#039;, e.g. if there&#039;s &#039;&#039;&#039;0.05mL&#039;&#039;&#039; remaining after injecting, draw &#039;&#039;&#039;+0.05mL&#039;&#039;&#039; from the vial.&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
====== Injectable Estradiol Undecylate (EU/EUn) ======&lt;br /&gt;
|[[File:What-excuse-me.gif|thumb|[[HRT#Other resources|my honest reaction]]]]&lt;br /&gt;
|There&#039;s not enough information on dosage. The frequency of those may differ according to the oil used (MCT/Castor oil). Indicative Dosages:&lt;br /&gt;
15-20mg/2 weeks&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--T:45--&amp;gt;&lt;br /&gt;
20-40mg+/4 weeks&lt;br /&gt;
|&lt;br /&gt;
* There&#039;s not enough information on its [[wikipedia:Biological_half-life|half-life]], a higher dosage can be administered that can last up to 20-30 days.&lt;br /&gt;
* [[wikipedia:Intramuscular_injection|IM injections]] last longer so they give better levels during the same period of time per injection.&lt;br /&gt;
* Needs at least 90 days to reach stable levels.&lt;br /&gt;
* Look for &#039;&#039;&#039;[https://arc-w.nihr.ac.uk/Wordpress/wp-content/uploads/2015/07/Low-dead-space-syringes.png syringe dead space]([[HRT#:~:text=* = It has been mentioned that syringes account for dead space, although that is not 100% certain.|*]])&#039;&#039;&#039;, e.g. if there&#039;s &#039;&#039;&#039;0.05mL&#039;&#039;&#039; remaining after injecting, draw &#039;&#039;&#039;+0.05mL&#039;&#039;&#039; from the vial.&lt;br /&gt;
|}&lt;br /&gt;
&#039;&#039;&#039;*&#039;&#039;&#039; = It has been mentioned that syringes account for dead space, although that is not 100% certain.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--T:46--&amp;gt;&lt;br /&gt;
=== Sublingual vs Oral ===&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|+&lt;br /&gt;
!Method&lt;br /&gt;
!Substance&lt;br /&gt;
!Dosage&lt;br /&gt;
!Observations&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
====== Oral ======&lt;br /&gt;
|Estradiol Valerate in pill form (e.g. Cyclacur)&lt;br /&gt;
|&amp;gt;=6mg/day&lt;br /&gt;
(max 10mg as per Dr. Powers)&lt;br /&gt;
|It is recommended that doses are taken separately on set time intervals during the day for more stable estradiol levels, e.g. for a 6mg dose you would take 2mg per 8 hours. By the oral route the active substance is metabolized by the liver and part of it is converted to estrone (E1), which has much less feminizing effects than estradiol (E2) so the desired effect is essentially prevented. The bioavailability of estradiol by oral administration is very low (~5%) and usually lower levels of E2 are observed in blood tests than other methods of administration. [anecdotal apo to server, wikipedia kai tttt - correct/expand?] It is also necessary to administer anti-androgens to reduce testosterone levels to the female range.&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
====== Sublingual ======&lt;br /&gt;
|Estradiol Valerate in pill form (e.g. Cyclacur)&lt;br /&gt;
|&amp;gt;=4mg/day&lt;br /&gt;
|It is recommended that doses are taken separately on set time intervals during the day for more stable estradiol levels, e.g. for a 6mg dose you would take 2mg per 8 hours. The sublingual way bypasses estradiol metabolism by the liver and has about 5 times the estradiol bioavailability of the oral way. This way, estradiol levels have greater range than orally (higher peak lower bottom), in oral they remain higher for ~12 hours while sublingually they go away after 3-4 hours (This however is from a study from 2005 on cis women)&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== Vial info === &amp;lt;!--T:47--&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--T:48--&amp;gt;&lt;br /&gt;
=== Medications ===&lt;br /&gt;
For cyclacur: &#039;&#039;&#039;take only the white pills, the brown pills are Norgestrel which have 0.5mg of estradiol but has an androgenic effect and may also cause other side effects&#039;&#039;&#039;. &lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--T:49--&amp;gt;&lt;br /&gt;
==== Estrogens ====&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|+&lt;br /&gt;
!Brand Name(s)&lt;br /&gt;
!Substance&lt;br /&gt;
!Form&lt;br /&gt;
!Method of Administration&lt;br /&gt;
!Cost&lt;br /&gt;
!Cost with Healthcare Coverage&lt;br /&gt;
!Dosage&lt;br /&gt;
!Safety&lt;br /&gt;
!Notes&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
====== [https://www.galinos.gr/web/drugs/main/drugs/Cyclacur Cyclacur] ======&lt;br /&gt;
|Estradiol Valerate (EV)&lt;br /&gt;
|Pill tablet&lt;br /&gt;
|Orally or sublingually&lt;br /&gt;
|2.01€ for 11 pills ([https://www.galinos.gr/service/drugs/drawPackagePrice/1198 Pricemap])&lt;br /&gt;
~130.8-328.€/year&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--T:50--&amp;gt;&lt;br /&gt;
~10.9-27.4€/month&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--T:51--&amp;gt;&lt;br /&gt;
Prices are indicative, the cost depends on the dosage.&lt;br /&gt;
| -&lt;br /&gt;
|6mg-10mg/day (according to Dr. Will Powers)&lt;br /&gt;
4mg-8mg/day (according to Greek Endocrinologists)&lt;br /&gt;
|A&lt;br /&gt;
|&lt;br /&gt;
* &#039;&#039;&#039;Only white pills are used.&#039;&#039;&#039; Brown pills do have a bit of estradiol but arent taken due to other side effects.&lt;br /&gt;
* You need antiandrogens or GNRH antagonists if you haven&#039;t had an orchiectomy.&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
====== Progynova ======&lt;br /&gt;
|Estradiol Valerate (EV)&lt;br /&gt;
|Pill tablet&lt;br /&gt;
|Orally or sublingually&lt;br /&gt;
|~22€ for 72 pills of 1 mg or ~32€ for 72 pills of 2 mg&lt;br /&gt;
Prices are indicative, the cost depends on the dosage.&lt;br /&gt;
| -&lt;br /&gt;
|4mg-8mg/day&lt;br /&gt;
|A&lt;br /&gt;
|&lt;br /&gt;
* There is no reason to use it in Greece since Cyclacur is available in Greek pharmacies.&lt;br /&gt;
* You need antiandrogens or GNRH antagonists if you haven&#039;t had an orchiectomy.&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
====== Estrofem, Estrifam (german brand name), [https://www.galinos.gr/web/drugs/main/drugs/trisequens Trisequens] ======&lt;br /&gt;
|Estradiol Hemihydrate&lt;br /&gt;
|Pill tablet&lt;br /&gt;
|Orally or sublingually&lt;br /&gt;
|~30€ for 28 pills of 2 mg without shipping costs.&lt;br /&gt;
Prices are indicative, the cost depends on the dosage.&lt;br /&gt;
| -&lt;br /&gt;
|4mg-8mg/day&lt;br /&gt;
|A&lt;br /&gt;
|&lt;br /&gt;
* There is no reason to use it in Greece since Cyclacur is available in Greek pharmacies.&lt;br /&gt;
* You need antiandrogens or GNRH antagonists if you haven&#039;t had an orchiectomy.&lt;br /&gt;
* Trisequens, while being available in Greece, is odd to take with 12 pills being 2mg EH, 10 norgestrel, and 6 1mg EH, for a much higher price than [[HRT#Cyclacur|Cyclacur]].&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
====== [https://www.galinos.gr/web/drugs/main/drugs/Dermestril Dermestril] ======&lt;br /&gt;
|Estradiol Hemihydrate&lt;br /&gt;
|Patch&lt;br /&gt;
|Trans-dermally&lt;br /&gt;
|44€ for 24 patches of 100mcg&lt;br /&gt;
~15€ for 8 patches of 50mcg&lt;br /&gt;
| -&lt;br /&gt;
|50mcg/3.5 days (when starting off)&lt;br /&gt;
100mcg/3.5 days (whenever your e2 levels are stable)&lt;br /&gt;
|A+&lt;br /&gt;
|&lt;br /&gt;
* &#039;&#039;&#039;If you have no idea how to apply patches watch this:&#039;&#039;&#039; [https://youtu.be/tXGIYWPqdpI?si=O0dlE19pq0ic0PZP Demonstrational Video]&lt;br /&gt;
* You need antiandrogens or GNRH antagonists if you haven&#039;t had an orchiectomy.&lt;br /&gt;
* 100mcg patches can be cut into 2 if needed.&lt;br /&gt;
|-&lt;br /&gt;
|Neofollin (can be ordered from pharmacies near Czechia, not tested in Greece), Delestrogen (Vial, unavailable), Progynon Depot (Ampules, unavailable)&lt;br /&gt;
|&lt;br /&gt;
====== Estradiol Valerate (EV) ======&lt;br /&gt;
|Injectable&lt;br /&gt;
|Subcutaneous or Intramuscular&lt;br /&gt;
|80€/year (including shipping costs, syringes and alcohol swabs)&lt;br /&gt;
| -&lt;br /&gt;
|5-7mg/5 days (monotherapy)&lt;br /&gt;
4-5mg/7 days (only in combination with an antiandrogen or GNRH agonist)&lt;br /&gt;
|A+&lt;br /&gt;
|&lt;br /&gt;
* It can be used without antiandrogens or GNRH agonists in ([[HRT#Μονοθεραπεία|Monotherapy]]) by increasing the dosage.&lt;br /&gt;
|-&lt;br /&gt;
|Depo-Estradiol (US only, unavailable)&lt;br /&gt;
|&lt;br /&gt;
====== Estradiol Cypionate (EC) ======&lt;br /&gt;
|Injectable&lt;br /&gt;
|Subcutaneous or Intramuscular&lt;br /&gt;
|~70-80€/year (not including shipping costs, syringes and alcohol swabs)&lt;br /&gt;
| -&lt;br /&gt;
|5-7mg/7 days&lt;br /&gt;
(&#039;&#039;&#039;mono dose&#039;&#039;&#039;)&lt;br /&gt;
? (TBD/&#039;&#039;&#039;dose with AA&#039;&#039;&#039;)&lt;br /&gt;
|?&lt;br /&gt;
|&lt;br /&gt;
* It can be used without antiandrogens or GNRH agonists in ([[HRT#Μονοθεραπεία|Monotherapy]])&lt;br /&gt;
|-&lt;br /&gt;
| -&lt;br /&gt;
|&lt;br /&gt;
====== Estradiol Enanthate (EEn) ======&lt;br /&gt;
|Injectable&lt;br /&gt;
|Subcutaneous or Intramuscular&lt;br /&gt;
|80€/year (including shipping costs, syringes and alcohol swabs)&lt;br /&gt;
| -&lt;br /&gt;
|2.5mg-7mg/7 days&lt;br /&gt;
(usual dosage: 4mg/7days)&lt;br /&gt;
|A+&lt;br /&gt;
|&lt;br /&gt;
* It can be used without antiandrogens or GNRH agonists in ([[HRT#Μονοθεραπεία|Monotherapy]]) by increasing the dosage.&lt;br /&gt;
|-&lt;br /&gt;
| -&lt;br /&gt;
|&lt;br /&gt;
====== Estradiol Undecylate (EU, EUn) ======&lt;br /&gt;
|Injectable&lt;br /&gt;
|Subcutaneous or Intramuscular&lt;br /&gt;
|130€/year (including shipping costs, syringes and alcohol swabs)&lt;br /&gt;
| -&lt;br /&gt;
|15-20mg/2 weeks&lt;br /&gt;
20-40mg+/4 weeks&lt;br /&gt;
|A+&lt;br /&gt;
|&lt;br /&gt;
* There&#039;s not much info on dosages, usually seen in [[HRT#Μονοθεραπεία|monotherapy]].&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--T:52--&amp;gt;&lt;br /&gt;
==== Anti-Androgens and GNRH Agonists ====&lt;br /&gt;
These should &#039;&#039;&#039;not&#039;&#039;&#039; be taken sublingually.&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|+&lt;br /&gt;
!Brand Name(s)&lt;br /&gt;
!Substance&lt;br /&gt;
!Cost&lt;br /&gt;
!Cost with Healthcare Coverage&lt;br /&gt;
!Dosage&lt;br /&gt;
!Safety&lt;br /&gt;
!Form&lt;br /&gt;
!Type&lt;br /&gt;
!Notes&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
====== [https://www.galinos.gr/web/drugs/main/drugs/Androcur Androcur] ======&lt;br /&gt;
|Cyproterone Acetate (CPA) is also referred to as cypro&lt;br /&gt;
|21.58€/50mg * 50 pills &lt;br /&gt;
19.7-31.5€/year&lt;br /&gt;
&lt;br /&gt;
([https://www.galinos.gr/service/drugs/drawPackagePrice/8023 Pricemap])&lt;br /&gt;
|?&lt;br /&gt;
|12.5mg/2 days- 10mg/day&lt;br /&gt;
&#039;&#039;&#039;Larger doses shouldn&#039;t be administered&#039;&#039;&#039;&lt;br /&gt;
|C&lt;br /&gt;
|Pill tablet&lt;br /&gt;
|Progestin (Steroidal antiandrogen)&lt;br /&gt;
Stops testosterone production.&lt;br /&gt;
|The max recommended dosage is 10mg/day . Monitoring of prolactin levels is recommended through [[Blood Testing#MTF|blood testing]].&lt;br /&gt;
&#039;&#039;&#039;Many doctors give overdoses of 50 mg/day. Cyproterone is a strong anti-androgen and testosterone suppression is possible with lower doses. A change of doctor is recommended.&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--T:53--&amp;gt;&lt;br /&gt;
[[wikipedia:Side_effects_of_cyproterone_acetate|Side Effects]]:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--T:54--&amp;gt;&lt;br /&gt;
* Benign brain tumor.&lt;br /&gt;
* In rare cases, liver damage.&lt;br /&gt;
* Vitamin B12 deficiency.&lt;br /&gt;
* Breast cancer.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--T:55--&amp;gt;&lt;br /&gt;
Testosterone suppression can be achieved with even lower doses, however a 50 mg pill is difficult to cut into pieces of less than 12.5 mg even with a pill cutter.&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
====== [https://www.galinos.gr/web/drugs/main/drugs/Bicalut Bicalut] ======&lt;br /&gt;
|Bicalutamide (aka: bica)&lt;br /&gt;
|29.10 euro/30 pills&lt;br /&gt;
29.10 euro/month&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--T:56--&amp;gt;&lt;br /&gt;
~350 euro/year&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
([https://www.galinos.gr/service/drugs/drawPackagePrice/11120 Pricemap])&lt;br /&gt;
|6.77 euro/month (28 tabs)&lt;br /&gt;
~95 euro/year&lt;br /&gt;
|50mg/day&lt;br /&gt;
|A-&lt;br /&gt;
|Pill/Tablet&lt;br /&gt;
|Androgen receptor antagonist (Nonsteroidal antiandrogen)&lt;br /&gt;
Blocks absorption of all androgens (including testosterone)&lt;br /&gt;
|&#039;&#039;&#039;Serious negative interactions can be noted if combined with other anti-androgens and GNRH agonists (except progesterone)&#039;&#039;&#039;&lt;br /&gt;
&#039;&#039;&#039;Very rare&#039;&#039;&#039; chance for recoverable and non-fatal liver damage for people with a certain rare mutation.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--T:57--&amp;gt;&lt;br /&gt;
Most of the effects listen in the instruction manual are scaremongering. (it lists a very high chance of liver issues when they are actually very rare, and also lists photosensitivity, which if it even occurs at all, it should be quite rare. We are aware of nobody who had a negative interction between alexandrite laser hair removal and bicalutamide).&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--T:58--&amp;gt;&lt;br /&gt;
Note that bicalutamide, unlike most other anti-androgens, &#039;&#039;&#039;does not&#039;&#039;&#039; lower testosterone levels, in fact they usually rise as the body responds to testosterone receptors being inhibited. Do not be alarmed if you notice an increase of testosterone in your blood tests.&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
====== [https://www.galinos.gr/web/drugs/main/drugs/Arvekap Arvekap] ======&lt;br /&gt;
|Triptorelin&lt;br /&gt;
| -&lt;br /&gt;
|~200/year?&lt;br /&gt;
|&lt;br /&gt;
|A?&lt;br /&gt;
|Injection&lt;br /&gt;
|GNRH Agonist&lt;br /&gt;
(indirectly) Stops testosterone AND estrogen production&lt;br /&gt;
|Also a puberty blocker&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
====== [https://www.galinos.gr/web/drugs/main/drugs/aldactone Aldactone] ======&lt;br /&gt;
|Spironolactone&lt;br /&gt;
|5.19 euro/20 tabs (100mg)&lt;br /&gt;
([https://www.galinos.gr/service/drugs/drawPackagePrice/148 Pricemap])&lt;br /&gt;
|?&lt;br /&gt;
|50mg-200mg/day&lt;br /&gt;
|B-C&lt;br /&gt;
|Tablet&lt;br /&gt;
|Antimineralocorticoid/MCRA&lt;br /&gt;
|Very inefficient, makes you pee, it&#039;s a medication for blood pressure&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
|Flutamide&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|F---&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|Only in this table as an example to avoid&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
==== Miscellaneous/Progesterone ====&lt;br /&gt;
Progesterone falls under this category, as it is not quite the same as other Anti-Androgens, the mention of Progesterone in this title is necessary in order to reduce confusion and questions such as &amp;quot;Where is progesterone?&amp;quot; and &amp;quot;Did you remove prog from the page?&amp;quot;.&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
!Brand Name(s)&lt;br /&gt;
!Substance&lt;br /&gt;
!Cost&lt;br /&gt;
!Cost with Healthcare Coverage&lt;br /&gt;
!Dosage&lt;br /&gt;
!Safety&lt;br /&gt;
!Form&lt;br /&gt;
!Type&lt;br /&gt;
!Notes&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
====== [https://www.galinos.gr/web/drugs/main/drugs/utrogestran Utrogestan] ======&lt;br /&gt;
|Progesterone (P4) it is also referred to as prog&lt;br /&gt;
|5.83 euro/30 caps (100mg)&lt;br /&gt;
8.08 euro/15 caps (200mg)&lt;br /&gt;
([https://www.galinos.gr/service/drugs/drawPackagePrice/7619 Pricemap])&lt;br /&gt;
|?&lt;br /&gt;
|100mg or 200mg daily (rectal administration, [[Blood Testing|blood tests]] are recommended)&lt;br /&gt;
|A&lt;br /&gt;
|Capsule&lt;br /&gt;
|Stops testosterone production.&lt;br /&gt;
|There is not much confirmed information about progesterone.&lt;br /&gt;
It can also be taken orally but the absorption rate is very low.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--T:59--&amp;gt;&lt;br /&gt;
Anecdotal claims:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--T:60--&amp;gt;&lt;br /&gt;
* Helps with breast development and with feminization in general.&lt;br /&gt;
* Can be given after one year of estradiol.&lt;br /&gt;
* Suggested to be given after the individual reaches Tanner stage 3.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--T:61--&amp;gt;&lt;br /&gt;
It can have androgenic or other (non-serious, recoverable) effects for some individuals - in particular it can be converted to DHT by the body even in combination with dutasteride or bicalutamide.&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--T:62--&amp;gt;&lt;br /&gt;
==== Other anti-androgens (optional) ====&lt;br /&gt;
These are used to block conversion of other androgens to DHT (which causes hair loss (hair) and body hair growth). They aren&#039;t general use Anti-Androgens.&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
!Brand Name(s)&lt;br /&gt;
!Substance&lt;br /&gt;
!Cost&lt;br /&gt;
!Cost with Healthcare Coverage&lt;br /&gt;
!Dosage&lt;br /&gt;
!Safety&lt;br /&gt;
!Form&lt;br /&gt;
!Type&lt;br /&gt;
!Notes&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
====== [https://www.galinos.gr/web/drugs/main/packages/26485 Dastidem], [https://www.galinos.gr/web/drugs/main/packages/25557 Rafuster], [https://www.galinos.gr/web/drugs/main/packages/25893 Duaride], [https://www.galinos.gr/web/drugs/main/packages/25894 Dustezor] ======&lt;br /&gt;
|Dutasteride&lt;br /&gt;
|7.90€/30 caps&lt;br /&gt;
|~6€/30 caps&lt;br /&gt;
|0.5mg/day (?/TBD)&lt;br /&gt;
|A-&lt;br /&gt;
|Capsule&lt;br /&gt;
| -&lt;br /&gt;
|High effectiveness.&lt;br /&gt;
|-&lt;br /&gt;
| -&lt;br /&gt;
|Finasteride&lt;br /&gt;
| -&lt;br /&gt;
| -&lt;br /&gt;
| -&lt;br /&gt;
|F&lt;br /&gt;
| -&lt;br /&gt;
| -&lt;br /&gt;
|Effectiveness is none to medium (Just take Dutasteride - will not stop conversion of Progesterone to DHT)&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== Transmasc ==&lt;br /&gt;
&lt;br /&gt;
=== Medications ===&lt;br /&gt;
&lt;br /&gt;
==== Testosterone ====&lt;br /&gt;
[https://www.galinos.gr/web/drugs/main/substances/testosterone/marketing Galinos.gr&#039;s testosterone availability page]&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|+&lt;br /&gt;
!Brand Name(s)&lt;br /&gt;
!Substance&lt;br /&gt;
!Form&lt;br /&gt;
!Method of Administration&lt;br /&gt;
!Cost&lt;br /&gt;
!Cost with Healthcare Coverage&lt;br /&gt;
!Dosage&lt;br /&gt;
!Safety&lt;br /&gt;
!Notes&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
====== [https://www.galinos.gr/web/drugs/main/packages/4929 Norma] ======&lt;br /&gt;
|Testosterone Enanthate&lt;br /&gt;
|Injection/Ampule&lt;br /&gt;
|Intramuscular&lt;br /&gt;
|17.67€/ampule &lt;br /&gt;
([https://www.galinos.gr/service/drugs/drawPackagePrice/4929 Pricemap])&lt;br /&gt;
|?&lt;br /&gt;
|?&lt;br /&gt;
|?&lt;br /&gt;
| -&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
====== [https://www.galinos.gr/web/drugs/main/packages/21943 Nebido] ======&lt;br /&gt;
|Testosterone Undecanoate&lt;br /&gt;
|Injection/Vial&lt;br /&gt;
|Intramuscular&lt;br /&gt;
|100.37€/vial&lt;br /&gt;
([https://www.galinos.gr/service/drugs/drawPackagePrice/21943 Pricemap])&lt;br /&gt;
|~32.52€/vial (you pay 25%)&lt;br /&gt;
|1 vial (1000mg/4mL)/10-20 weeks&lt;br /&gt;
|A&lt;br /&gt;
|As a starting dose &#039;&#039;&#039;after a year of HRT&#039;&#039;&#039;, you could also consider:&lt;br /&gt;
&lt;br /&gt;
* Instead of injecting one vial per 20 weeks, you do half every 10-12 weeks, however nothing could be sourced to support this. Though logically it could make sense as a practice.&lt;br /&gt;
* Do a test at 6 weeks after starting, if T is too high don&#039;t take the 2nd dose, if it&#039;s not you can take the 2nd and then test 2 weeks before every other dose.&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
====== [https://www.galinos.gr/web/drugs/main/packages/15739 Tostran] ======&lt;br /&gt;
|Testogel&lt;br /&gt;
|Gel&lt;br /&gt;
|Trans-dermally&lt;br /&gt;
|&#039;&#039;&#039;Starting dose&#039;&#039;&#039;&lt;br /&gt;
&amp;lt;!--T:82--&amp;gt;&lt;br /&gt;
* 35.54€/2 months&lt;br /&gt;
* 213.24€/year&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--T:83--&amp;gt;&lt;br /&gt;
&#039;&#039;&#039;30 mg dose&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--T:84--&amp;gt;&lt;br /&gt;
* 35.54€/40 days&lt;br /&gt;
* ~324.30€/year&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--T:85--&amp;gt;&lt;br /&gt;
&#039;&#039;&#039;40 mg dose&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--T:73--&amp;gt;&lt;br /&gt;
* 35.54€/30 days&lt;br /&gt;
* 426.48€/year&lt;br /&gt;
([https://www.galinos.gr/service/drugs/drawPackagePrice/15739 Pricemap])&lt;br /&gt;
|35.54€ -&amp;gt; 8.89€&lt;br /&gt;
|20mg/day (starting dose)&lt;br /&gt;
30-40mg/day&lt;br /&gt;
|A&lt;br /&gt;
|&lt;br /&gt;
* 1 pump of Tostran (&#039;&#039;&#039;0.5g&#039;&#039;&#039;) delivers 10 mg of T.&lt;br /&gt;
* 2 pumps of Tostran are 1 pump of Testogel (20.25mg of T)&lt;br /&gt;
* Can cause skin reactions.&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
==== GNRH Agonists ====&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
!Brand Name(s)&lt;br /&gt;
!Substance&lt;br /&gt;
! Cost&lt;br /&gt;
!Cost with Healthcare Coverage&lt;br /&gt;
!Dosage&lt;br /&gt;
!Safety&lt;br /&gt;
!Form&lt;br /&gt;
!Type&lt;br /&gt;
!Notes&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
====== [https://www.galinos.gr/web/drugs/main/drugs/Arvekap Arvekap] ======&lt;br /&gt;
|Triptorelin&lt;br /&gt;
| -&lt;br /&gt;
|~200/year?&lt;br /&gt;
|&lt;br /&gt;
|A?&lt;br /&gt;
|Injection&lt;br /&gt;
|GNRH Agonist&lt;br /&gt;
(indirectly) Stops testosterone AND estrogen production&lt;br /&gt;
|Also a puberty blocker&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
==== Other anti-androgens (optional) ====&lt;br /&gt;
These are used to block conversion of other androgens to DHT (which causes hair loss (hair) and body hair growth). They aren&#039;t general use Anti-Androgens.&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
!Brand Name(s)&lt;br /&gt;
!Substance&lt;br /&gt;
!Cost&lt;br /&gt;
!Cost with Healthcare Coverage&lt;br /&gt;
!Dosage&lt;br /&gt;
!Safety&lt;br /&gt;
!Form&lt;br /&gt;
!Type&lt;br /&gt;
!Notes&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
====== [https://www.galinos.gr/web/drugs/main/packages/26485 Dastidem], [https://www.galinos.gr/web/drugs/main/packages/25557 Rafuster], [https://www.galinos.gr/web/drugs/main/packages/25893 Duaride], [https://www.galinos.gr/web/drugs/main/packages/25894 Dustezor] ======&lt;br /&gt;
|Dutasteride&lt;br /&gt;
|7.90€/30 caps&lt;br /&gt;
|~6€/30 caps&lt;br /&gt;
|0.5mg/day (?/TBD)&lt;br /&gt;
|A-&lt;br /&gt;
|Capsule&lt;br /&gt;
| -&lt;br /&gt;
|High effectiveness. &lt;br /&gt;
Not to be confused with proper Anti-Androgens.&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== Nonbinary hrt *under construction* ==&lt;br /&gt;
&lt;br /&gt;
=== !!! disclaimer-warning about potential issues !!! ===&lt;br /&gt;
&lt;br /&gt;
=== General outline of nb hrt for amab and afab ===&lt;br /&gt;
&lt;br /&gt;
=== Medications ===&lt;br /&gt;
&lt;br /&gt;
==== Selective Estrogen Receptor Modulators (SERMs) ====&lt;br /&gt;
&lt;br /&gt;
* Tamoxifen is a selective estrogen receptor modulator (SERM). In some tissues such as the brain it activates estrogen receptors, which may help reduce dysphoria. In breast tissue it antagonizes estrogen receptors, preventing the formation of breast tissue if desired. There is some evidence that Tamoxifen inhibits memory, though the effects of taking it alongside regular estrogen are undocumented. Tamoxifen can cause cognitive dysfunction and increase your risk of stroke and pulmonary embolism. Tamoxifen may also be taken alongside 17β-estradiol, more research is needed. In this combination, estradiol should still have its effects (combating dysphoria in the brain, redistribution of body fat, smoother skin etc.) while tamoxifen prevents the growth of breast tissue.&lt;br /&gt;
* Raloxifene is another SERM. It is an estrogen receptor antagonist in breast tissue. It is an estrogen receptor agonist in bone and can be used to prevent osteoporosis. Raloxifene has been shown to reduce ERα expression in breast tissue in premenopausal women. As the synthesis of progesterone receptors (PR) is estrogen-regulated, raloxifene also decreases the expression of PR. Additionally, it was shown to decrease the presence of Ki-67, a biomarker for cell proliferation, in breast tissue of premenopausal women. As a result, it can be used to treat gynecomastia, and has been shown effective in reducing breast size in those with the condition. Raloxifene may promote feminine fat distribution: in a study on 56-66 year old postmenopausal women, there was an increase in fat in the legs and buttocks and a decrease in fat in the abdomen and trunk after 1 year on 60 mg/day raloxifene. It is not yet known how pronounced this effect is, as there have been no comparisons of body fat distribution between raloxifene and estradiol. Raloxifene may increase the risk of stroke and pulmonary embolism.&lt;br /&gt;
* Afimoxifene is a topical SERM and the primary metabolite of tamoxifen.&lt;br /&gt;
&lt;br /&gt;
==== Anti-androgens ====&lt;br /&gt;
&lt;br /&gt;
==== Bicalutamide ====&lt;br /&gt;
Bicalutamide is an  anti-androgen which is used mainly in the treatment of prostate cancer but can also be used to treat hirsutism, or as a component of hormone therapy in feminizing HRT, among other uses. It is nonsteroidal anti-androgen and a selective/pure antagonist of the androgen receptor. It has no other hormonal activity and does not lower androgen levels. Bicalutamide crosses the blood-brain barrier and blocks the effects of testosterone and dihydrotestosterone (DHT) both in the body and in the brain. While it has been observed that bicalutamide does not cross the blood-brain barrier in rats and dogs, this was found not to be the case in humans&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
In general Ralox seems the best idea based on overall effectiveness and less severe side effects compared to other SERMs. Most people on this kind of MtNB hrt seem to be using a combination of ralox (in place of estradiol) and bica [expand this + powers e1s schizo stuff?]&lt;br /&gt;
&lt;br /&gt;
== Legal ==&lt;br /&gt;
It is legal to buy anything without a diagnosis or a prescription (off the counter - OTC), Testosterone can be hit or miss, look for any product names mentioned (that have links attached to them/are blue in colour) [[HRT#Testosterone|here]].  &lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--T:86--&amp;gt;&lt;br /&gt;
You can also check the &#039;&#039;&#039;[https://diyon.top/map Trans-Friendly Pharmacies Map]&#039;&#039;&#039; for any pharmacies near you (this goes for both Transfem and Transmasc HRT). &lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--T:75--&amp;gt;&lt;br /&gt;
There is no minimum or maximum legal age for someone to start HRT. &lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--T:76--&amp;gt;&lt;br /&gt;
It is not legally mandatory for someone to have a diagnosis by a psychiatrist in order to medically transition.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--T:77--&amp;gt;&lt;br /&gt;
There is no legally mandatory time restriction for a psychiatrist to monitor you before diagnosing you.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--T:78--&amp;gt;&lt;br /&gt;
You don&#039;t legally need to be on HRT in order to be exempt from the [[army]], change your [[Legal|legal sex]], or to have a [[surgery]].&lt;br /&gt;
&lt;br /&gt;
== Other resources == &amp;lt;!--T:79--&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--T:80--&amp;gt;&lt;br /&gt;
* Simulator: https://www.estrannai.se/&lt;br /&gt;
* https://transfemscience.org/ (note, the authors of this site disagree with a lot of what they are saying, regardless, it is still interesting)&lt;br /&gt;
** Introduction to Hormone Therapy for Transfeminine People: https://transfemscience.org/articles/transfem-intro/&lt;br /&gt;
** Older simulator: https://transfemscience.org/misc/injectable-e2-simulator/&lt;br /&gt;
** Dosage calculator: https://transfemscience.org/misc/injectable-dose-vol-conc-conv/&lt;br /&gt;
* https://diyhrt.wiki/ (alt link: https://anarch.cc/transfeminine-diy-hrt-the-ultimate-guide-2/)&lt;br /&gt;
* https://hrtcafe.net/&lt;br /&gt;
* https://hrt.coffee/&lt;br /&gt;
* https://transharmreduction.org/ - useful for checking potency and quality of diy products.&lt;br /&gt;
* https://www.reddit.com/r/TransDIY/&lt;br /&gt;
* https://www.reddit.com/r/TransfemScience/&lt;br /&gt;
* https://crimethinc.com/2022/12/15/producing-transdermal-estrogen-a-do-it-yourself-guide (alt link: https://anarch.cc/producing-transdermal-estrogen-a-do-it-yourself-guide/, as above)&lt;br /&gt;
&lt;br /&gt;
==== Questionable resources ====&lt;br /&gt;
&lt;br /&gt;
* https://hrt.cat/ - info for making your own (you will probably not need it - version 1.0: https://hrtcafe.net/hrtcat/)&lt;br /&gt;
* https://groups.io/g/MTFHRT/wiki/29602 - Lena&#039;s guide (alt link: https://anarch.cc/mtf-hrt-ultimate-diy/)&lt;br /&gt;
* https://archive.ph/uQb8g - Noire Labs (alt link: https://anarch.cc/making-your-own-injections/, as above)&lt;br /&gt;
&lt;br /&gt;
==== Very questionable resources ====&lt;br /&gt;
&lt;br /&gt;
* https://archive.ph/cpy7k (alt link: https://anarch.cc/homebrewing-hormones-mtf-guide/, as above) - &#039;&#039;&#039;Potentially outdated.&#039;&#039;&#039;&lt;br /&gt;
&amp;lt;/translate&amp;gt;&lt;/div&gt;</summary>
		<author><name>Goblinmoder</name></author>
	</entry>
	<entry>
		<id>https://wiki.diyon.top/index.php?title=HRT&amp;diff=1012</id>
		<title>HRT</title>
		<link rel="alternate" type="text/html" href="https://wiki.diyon.top/index.php?title=HRT&amp;diff=1012"/>
		<updated>2025-05-03T00:12:34Z</updated>

		<summary type="html">&lt;p&gt;Goblinmoder: /* Transfem */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{#seo:&lt;br /&gt;
|title_mode=replace&lt;br /&gt;
|title=HRT&lt;br /&gt;
|description=We are open to discussion and actively on-going changes in formatting and contents of this Page and Website (in general). The e-mail address to refer to is fox@diyon.top&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
&amp;lt;languages/&amp;gt;&lt;br /&gt;
&amp;lt;translate&amp;gt;&lt;br /&gt;
&amp;lt;!--T:41--&amp;gt;&lt;br /&gt;
After around a month on HRT some of your ranges in your [[Blood Testing|blood test]] should be within desired ranges.&lt;br /&gt;
&lt;br /&gt;
== Disclaimers ==&lt;br /&gt;
 To clarify on &#039;&#039;&#039;dosages&#039;&#039;&#039;, the values mentioned below are rather speculative and most are based on &#039;&#039;&#039;personal experiences&#039;&#039;&#039; or &#039;&#039;&#039;(diy)hrt pages/websites/papers&#039;&#039;&#039;. Therefore it is encouraged to do [[Blood Testing|blood tests]] and if possible, check with an [[Doctors#Ενδοκρινολόγοι|endocrinologist]] (we also suggest [[Doctors]] that can help with such cases), especially if you have any specific &#039;&#039;&#039;health conditions&#039;&#039;&#039;. &lt;br /&gt;
&#039;&#039;&#039;Pricemaps&#039;&#039;&#039; are there to evaluate prices through &#039;&#039;&#039;[https://galinos.gr galinos.gr]&#039;&#039;&#039; (in case something is outdated, look for the green line that says &amp;quot;Λιανική&amp;quot;)&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Questionable resources&#039;&#039;&#039; are to be taken with a grain of salt on every aspect of their contents.&lt;br /&gt;
&lt;br /&gt;
We are open to discussion and actively on-going changes in formatting and contents of this Page and Website (in general). The e-mail address to refer to is &#039;&#039;&#039;fox@diyon.top&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
== Blood Levels ==&lt;br /&gt;
&lt;br /&gt;
==== Refer to the [[Blood Testing]] page. ====&lt;br /&gt;
== Transfem ==&lt;br /&gt;
Taking hormone blockers ([[HRT#Antiandrogens and GNRH Agonists|GNRH Agonists]], e.g: Arvekap) or any Anti Androgens (e.g: Aldactone, Androcur) &#039;&#039;&#039;without [[HRT#Estrogens|Estrogens]]&#039;&#039;&#039; is generally discouraged. (This is &#039;&#039;&#039;non-definitive&#039;&#039;&#039; for Enby folks)&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--T:44--&amp;gt;&lt;br /&gt;
=== Monotherapy ===&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|+&lt;br /&gt;
!Type&lt;br /&gt;
!Commercial Names&lt;br /&gt;
!Dosage&lt;br /&gt;
!Notes&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
====== Sublingual (E Valerate or Hemihydrate) ======&lt;br /&gt;
|Cyclacur (EV), Estrofem (EH, imported), Trisequens (12 pills 2mg EH, 10 pills norgestrel, 6 pills 1mg EH)&lt;br /&gt;
|&amp;gt;=8-12mg/day&lt;br /&gt;
|While it is possible, even with a smaller dosage (&#039;&#039;&#039;at least 6mg&#039;&#039;&#039;), it&#039;s not that common. Ideally, use your blood tests to &#039;&#039;&#039;minmax&#039;&#039;&#039; your doses.&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
====== Injectable Estradiol Valerate (EV) ======&lt;br /&gt;
|Neofollin (can be ordered from pharmacies near Czechia, or aptekaapo.com &#039;&#039;&#039;but they’re not on hrtcafe&#039;&#039;&#039;, not tested in Greece), Delestrogen (Vial, unavailable), Progynon Depot (Ampules, unavailable), [[File:What-excuse-me.gif|thumb|[[HRT#Other resources|my honest reaction]]]]&lt;br /&gt;
|5-7mg/5 days&lt;br /&gt;
|&lt;br /&gt;
* Due to the large spikes in levels combined with the short [https://en.wikipedia.org/wiki/Biological_half-life half-life] it is not recommended for dosages to surpass the 5 day mark because it may cause menopause symptoms.&lt;br /&gt;
* Branded versions of this medication are not available in greece.&lt;br /&gt;
* The ampules contain a certain mg and do not allow for larger dosages, they are not re-usable. It is recommended to use a vial with a cap.&lt;br /&gt;
* Look for &#039;&#039;&#039;[https://arc-w.nihr.ac.uk/Wordpress/wp-content/uploads/2015/07/Low-dead-space-syringes.png syringe dead space]([[HRT#:~:text=* = It has been mentioned that syringes account for dead space, although that is not 100% certain.|*]])&#039;&#039;&#039;, e.g. if there&#039;s &#039;&#039;&#039;0.05mL&#039;&#039;&#039; remaining after injecting, draw &#039;&#039;&#039;+0.05mL&#039;&#039;&#039; from the vial.&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
====== Injectable Estradiol Cypionate (EC) ======&lt;br /&gt;
|[[File:What-excuse-me.gif|thumb|[[HRT#Other resources|my honest reaction]]]]Depo-Estradiol (US only, unavailable),&lt;br /&gt;
|5-7mg/7 days&lt;br /&gt;
|&lt;br /&gt;
* Look for &#039;&#039;&#039;[https://arc-w.nihr.ac.uk/Wordpress/wp-content/uploads/2015/07/Low-dead-space-syringes.png syringe dead space]([[HRT#:~:text=* = It has been mentioned that syringes account for dead space, although that is not 100% certain.|*]])&#039;&#039;&#039;, e.g. if there&#039;s &#039;&#039;&#039;0.05mL&#039;&#039;&#039; remaining after injecting, draw &#039;&#039;&#039;+0.05mL&#039;&#039;&#039; from the vial.&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
====== Injectable Estradiol Enanthate (EEn) ======&lt;br /&gt;
|[[File:What-excuse-me.gif|thumb|[[HRT#Other resources|my honest reaction]]]]&lt;br /&gt;
|4-7mg/7 days&lt;br /&gt;
7-10mg/10 days (7.2mg usually, depending on the vial, it&#039;s optimal because drawing cents of mL are hard to get right)&lt;br /&gt;
|&lt;br /&gt;
* You can multiply the weekly dosage by 2, which lasts up to 14 days (as much as the [https://en.wikipedia.org/wiki/Biological_half-life half-life] of Enanthate)&lt;br /&gt;
* Look for &#039;&#039;&#039;[https://arc-w.nihr.ac.uk/Wordpress/wp-content/uploads/2015/07/Low-dead-space-syringes.png syringe dead space]([[HRT#:~:text=* = It has been mentioned that syringes account for dead space, although that is not 100% certain.|*]])&#039;&#039;&#039;, e.g. if there&#039;s &#039;&#039;&#039;0.05mL&#039;&#039;&#039; remaining after injecting, draw &#039;&#039;&#039;+0.05mL&#039;&#039;&#039; from the vial.&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
====== Injectable Estradiol Undecylate (EU/EUn) ======&lt;br /&gt;
|[[File:What-excuse-me.gif|thumb|[[HRT#Other resources|my honest reaction]]]]&lt;br /&gt;
|There&#039;s not enough information on dosage. The frequency of those may differ according to the oil used (MCT/Castor oil). Indicative Dosages:&lt;br /&gt;
15-20mg/2 weeks&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--T:45--&amp;gt;&lt;br /&gt;
20-40mg+/4 weeks&lt;br /&gt;
|&lt;br /&gt;
* There&#039;s not enough information on its [[wikipedia:Biological_half-life|half-life]], a higher dosage can be administered that can last up to 20-30 days.&lt;br /&gt;
* [[wikipedia:Intramuscular_injection|IM injections]] last longer so they give better levels during the same period of time per injection.&lt;br /&gt;
* Needs at least 90 days to reach stable levels.&lt;br /&gt;
* Look for &#039;&#039;&#039;[https://arc-w.nihr.ac.uk/Wordpress/wp-content/uploads/2015/07/Low-dead-space-syringes.png syringe dead space]([[HRT#:~:text=* = It has been mentioned that syringes account for dead space, although that is not 100% certain.|*]])&#039;&#039;&#039;, e.g. if there&#039;s &#039;&#039;&#039;0.05mL&#039;&#039;&#039; remaining after injecting, draw &#039;&#039;&#039;+0.05mL&#039;&#039;&#039; from the vial.&lt;br /&gt;
|}&lt;br /&gt;
&#039;&#039;&#039;*&#039;&#039;&#039; = It has been mentioned that syringes account for dead space, although that is not 100% certain.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--T:46--&amp;gt;&lt;br /&gt;
=== Sublingual vs Oral ===&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|+&lt;br /&gt;
!Method&lt;br /&gt;
!Substance&lt;br /&gt;
!Dosage&lt;br /&gt;
!Observations&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
====== Oral ======&lt;br /&gt;
|Estradiol Valerate in pill form (e.g. Cyclacur)&lt;br /&gt;
|&amp;gt;=6mg/day&lt;br /&gt;
(max 10mg as per Dr. Powers)&lt;br /&gt;
|It is recommended that doses are taken separately on set time intervals during the day for more stable estradiol levels, e.g. for a 6mg dose you would take 2mg per 8 hours. By the oral route the active substance is metabolized by the liver and part of it is converted to estrone (E1), which has much less feminizing effects than estradiol (E2) so the desired effect is essentially prevented. The bioavailability of estradiol by oral administration is very low (~5%) and usually lower levels of E2 are observed in blood tests than other methods of administration. [anecdotal apo to server, wikipedia kai tttt - correct/expand?] It is also necessary to administer anti-androgens to reduce testosterone levels to the female range.&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
====== Sublingual ======&lt;br /&gt;
|Estradiol Valerate in pill form (e.g. Cyclacur)&lt;br /&gt;
|&amp;gt;=4mg/day&lt;br /&gt;
|It is recommended that doses are taken separately on set time intervals during the day for more stable estradiol levels, e.g. for a 6mg dose you would take 2mg per 8 hours. The sublingual way bypasses estradiol metabolism by the liver and has about 5 times the estradiol bioavailability of the oral way. This way, estradiol levels have greater range than orally (higher peak lower bottom), in oral they remain higher for ~12 hours while sublingually they go away after 3-4 hours (This however is from a study from 2005 on cis women)&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== Vial info === &amp;lt;!--T:47--&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--T:48--&amp;gt;&lt;br /&gt;
=== Medications ===&lt;br /&gt;
For cyclacur: &#039;&#039;&#039;take only the white pills, the brown pills are Norgestrel which have 0.5mg of estradiol but has an androgenic effect and may also cause other side effects&#039;&#039;&#039;. &lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--T:49--&amp;gt;&lt;br /&gt;
==== Estrogens ====&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|+&lt;br /&gt;
!Brand Name(s)&lt;br /&gt;
!Substance&lt;br /&gt;
!Form&lt;br /&gt;
!Method of Administration&lt;br /&gt;
!Cost&lt;br /&gt;
!Cost with Healthcare Coverage&lt;br /&gt;
!Dosage&lt;br /&gt;
!Safety&lt;br /&gt;
!Notes&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
====== [https://www.galinos.gr/web/drugs/main/drugs/Cyclacur Cyclacur] ======&lt;br /&gt;
|Estradiol Valerate (EV)&lt;br /&gt;
|Pill tablet&lt;br /&gt;
|Orally or sublingually&lt;br /&gt;
|2.01€ for 11 pills ([https://www.galinos.gr/service/drugs/drawPackagePrice/1198 Pricemap])&lt;br /&gt;
~130.8-328.€/year&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--T:50--&amp;gt;&lt;br /&gt;
~10.9-27.4€/month&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--T:51--&amp;gt;&lt;br /&gt;
Prices are indicative, the cost depends on the dosage.&lt;br /&gt;
| -&lt;br /&gt;
|6mg-10mg/day (according to Dr. Will Powers)&lt;br /&gt;
4mg-8mg/day (according to Greek Endocrinologists)&lt;br /&gt;
|A&lt;br /&gt;
|&lt;br /&gt;
* &#039;&#039;&#039;Only white pills are used.&#039;&#039;&#039; Brown pills do have a bit of estradiol but arent taken due to other side effects.&lt;br /&gt;
* You need antiandrogens or GNRH antagonists if you haven&#039;t had an orchiectomy.&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
====== Progynova ======&lt;br /&gt;
|Estradiol Valerate (EV)&lt;br /&gt;
|Pill tablet&lt;br /&gt;
|Orally or sublingually&lt;br /&gt;
|~22€ for 72 pills of 1 mg or ~32€ for 72 pills of 2 mg&lt;br /&gt;
Prices are indicative, the cost depends on the dosage.&lt;br /&gt;
| -&lt;br /&gt;
|4mg-8mg/day&lt;br /&gt;
|A&lt;br /&gt;
|&lt;br /&gt;
* There is no reason to use it in Greece since Cyclacur is available in Greek pharmacies.&lt;br /&gt;
* You need antiandrogens or GNRH antagonists if you haven&#039;t had an orchiectomy.&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
====== Estrofem, Estrifam (german brand name), [https://www.galinos.gr/web/drugs/main/drugs/trisequens Trisequens] ======&lt;br /&gt;
|Estradiol Hemihydrate&lt;br /&gt;
|Pill tablet&lt;br /&gt;
|Orally or sublingually&lt;br /&gt;
|~30€ for 28 pills of 2 mg without shipping costs.&lt;br /&gt;
Prices are indicative, the cost depends on the dosage.&lt;br /&gt;
| -&lt;br /&gt;
|4mg-8mg/day&lt;br /&gt;
|A&lt;br /&gt;
|&lt;br /&gt;
* There is no reason to use it in Greece since Cyclacur is available in Greek pharmacies.&lt;br /&gt;
* You need antiandrogens or GNRH antagonists if you haven&#039;t had an orchiectomy.&lt;br /&gt;
* Trisequens, while being available in Greece, is odd to take with 12 pills being 2mg EH, 10 norgestrel, and 6 1mg EH, for a much higher price than [[HRT#Cyclacur|Cyclacur]].&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
====== [https://www.galinos.gr/web/drugs/main/drugs/Dermestril Dermestril] ======&lt;br /&gt;
|Estradiol Hemihydrate&lt;br /&gt;
|Patch&lt;br /&gt;
|Trans-dermally&lt;br /&gt;
|44€ for 24 patches of 100mcg&lt;br /&gt;
~15€ for 8 patches of 50mcg&lt;br /&gt;
| -&lt;br /&gt;
|50mcg/3.5 days (when starting off)&lt;br /&gt;
100mcg/3.5 days (whenever your e2 levels are stable)&lt;br /&gt;
|A&lt;br /&gt;
|&lt;br /&gt;
* &#039;&#039;&#039;If you have no idea how to apply patches watch this:&#039;&#039;&#039; [https://youtu.be/tXGIYWPqdpI?si=O0dlE19pq0ic0PZP Demonstrational Video]&lt;br /&gt;
* You need antiandrogens or GNRH antagonists if you haven&#039;t had an orchiectomy.&lt;br /&gt;
* 100mcg patches can be cut into 2 if needed.&lt;br /&gt;
|-&lt;br /&gt;
|Neofollin (can be ordered from pharmacies near Czechia, not tested in Greece), Delestrogen (Vial, unavailable), Progynon Depot (Ampules, unavailable)&lt;br /&gt;
|&lt;br /&gt;
====== Estradiol Valerate (EV) ======&lt;br /&gt;
|Injectable&lt;br /&gt;
|Subcutaneous or Intramuscular&lt;br /&gt;
|80€/year (including shipping costs, syringes and alcohol swabs)&lt;br /&gt;
| -&lt;br /&gt;
|5-7mg/5 days (monotherapy)&lt;br /&gt;
4-5mg/7 days (only in combination with an antiandrogen or GNRH agonist)&lt;br /&gt;
|A+&lt;br /&gt;
|&lt;br /&gt;
* It can be used without antiandrogens or GNRH agonists in ([[HRT#Μονοθεραπεία|Monotherapy]]) by increasing the dosage.&lt;br /&gt;
|-&lt;br /&gt;
|Depo-Estradiol (US only, unavailable)&lt;br /&gt;
|&lt;br /&gt;
====== Estradiol Cypionate (EC) ======&lt;br /&gt;
|Injectable&lt;br /&gt;
|Subcutaneous or Intramuscular&lt;br /&gt;
|~70-80€/year (not including shipping costs, syringes and alcohol swabs)&lt;br /&gt;
| -&lt;br /&gt;
|5-7mg/7 days&lt;br /&gt;
(&#039;&#039;&#039;mono dose&#039;&#039;&#039;)&lt;br /&gt;
? (TBD/&#039;&#039;&#039;dose with AA&#039;&#039;&#039;)&lt;br /&gt;
|?&lt;br /&gt;
|&lt;br /&gt;
* It can be used without antiandrogens or GNRH agonists in ([[HRT#Μονοθεραπεία|Monotherapy]])&lt;br /&gt;
|-&lt;br /&gt;
| -&lt;br /&gt;
|&lt;br /&gt;
====== Estradiol Enanthate (EEn) ======&lt;br /&gt;
|Injectable&lt;br /&gt;
|Subcutaneous or Intramuscular&lt;br /&gt;
|80€/year (including shipping costs, syringes and alcohol swabs)&lt;br /&gt;
| -&lt;br /&gt;
|2.5mg-7mg/7 days&lt;br /&gt;
(usual dosage: 4mg/7days)&lt;br /&gt;
|A+&lt;br /&gt;
|&lt;br /&gt;
* It can be used without antiandrogens or GNRH agonists in ([[HRT#Μονοθεραπεία|Monotherapy]]) by increasing the dosage.&lt;br /&gt;
|-&lt;br /&gt;
| -&lt;br /&gt;
|&lt;br /&gt;
====== Estradiol Undecylate (EU, EUn) ======&lt;br /&gt;
|Injectable&lt;br /&gt;
|Subcutaneous or Intramuscular&lt;br /&gt;
|130€/year (including shipping costs, syringes and alcohol swabs)&lt;br /&gt;
| -&lt;br /&gt;
|15-20mg/2 weeks&lt;br /&gt;
20-40mg+/4 weeks&lt;br /&gt;
|A+&lt;br /&gt;
|&lt;br /&gt;
* There&#039;s not much info on dosages, usually seen in [[HRT#Μονοθεραπεία|monotherapy]].&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--T:52--&amp;gt;&lt;br /&gt;
==== Anti-Androgens and GNRH Agonists ====&lt;br /&gt;
These should &#039;&#039;&#039;not&#039;&#039;&#039; be taken sublingually.&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|+&lt;br /&gt;
!Brand Name(s)&lt;br /&gt;
!Substance&lt;br /&gt;
!Cost&lt;br /&gt;
!Cost with Healthcare Coverage&lt;br /&gt;
!Dosage&lt;br /&gt;
!Safety&lt;br /&gt;
!Form&lt;br /&gt;
!Type&lt;br /&gt;
!Notes&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
====== [https://www.galinos.gr/web/drugs/main/drugs/Androcur Androcur] ======&lt;br /&gt;
|Cyproterone Acetate (CPA) is also referred to as cypro&lt;br /&gt;
|21.58€/50mg * 50 pills &lt;br /&gt;
19.7-31.5€/year&lt;br /&gt;
&lt;br /&gt;
([https://www.galinos.gr/service/drugs/drawPackagePrice/8023 Pricemap])&lt;br /&gt;
|?&lt;br /&gt;
|12.5mg/2 days- 10mg/day&lt;br /&gt;
&#039;&#039;&#039;Larger doses shouldn&#039;t be administered&#039;&#039;&#039;&lt;br /&gt;
|C&lt;br /&gt;
|Pill tablet&lt;br /&gt;
|Progestin (Steroidal antiandrogen)&lt;br /&gt;
Stops testosterone production.&lt;br /&gt;
|The max recommended dosage is 10mg/day . Monitoring of prolactin levels is recommended through [[Blood Testing#MTF|blood testing]].&lt;br /&gt;
&#039;&#039;&#039;Many doctors give overdoses of 50 mg/day. Cyproterone is a strong anti-androgen and testosterone suppression is possible with lower doses. A change of doctor is recommended.&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--T:53--&amp;gt;&lt;br /&gt;
[[wikipedia:Side_effects_of_cyproterone_acetate|Side Effects]]:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--T:54--&amp;gt;&lt;br /&gt;
* Benign brain tumor.&lt;br /&gt;
* In rare cases, liver damage.&lt;br /&gt;
* Vitamin B12 deficiency.&lt;br /&gt;
* Breast cancer.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--T:55--&amp;gt;&lt;br /&gt;
Testosterone suppression can be achieved with even lower doses, however a 50 mg pill is difficult to cut into pieces of less than 12.5 mg even with a pill cutter.&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
====== [https://www.galinos.gr/web/drugs/main/drugs/Bicalut Bicalut] ======&lt;br /&gt;
|Bicalutamide (aka: bica)&lt;br /&gt;
|29.10 euro/30 pills&lt;br /&gt;
29.10 euro/month&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--T:56--&amp;gt;&lt;br /&gt;
~350 euro/year&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
([https://www.galinos.gr/service/drugs/drawPackagePrice/11120 Pricemap])&lt;br /&gt;
|6.77 euro/month (28 tabs)&lt;br /&gt;
~95 euro/year&lt;br /&gt;
|50mg/day&lt;br /&gt;
|A-&lt;br /&gt;
|Pill/Tablet&lt;br /&gt;
|Androgen receptor antagonist (Nonsteroidal antiandrogen)&lt;br /&gt;
Blocks absorption of all androgens (including testosterone)&lt;br /&gt;
|&#039;&#039;&#039;Serious negative interactions can be noted if combined with other anti-androgens and GNRH agonists (except progesterone)&#039;&#039;&#039;&lt;br /&gt;
&#039;&#039;&#039;Very rare&#039;&#039;&#039; chance for recoverable and non-fatal liver damage for people with a certain rare mutation.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--T:57--&amp;gt;&lt;br /&gt;
Most of the effects listen in the instruction manual are scaremongering. (it lists a very high chance of liver issues when they are actually very rare, and also lists photosensitivity, which if it even occurs at all, it should be quite rare. We are aware of nobody who had a negative interction between alexandrite laser hair removal and bicalutamide).&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--T:58--&amp;gt;&lt;br /&gt;
Note that bicalutamide, unlike most other anti-androgens, &#039;&#039;&#039;does not&#039;&#039;&#039; lower testosterone levels, in fact they usually rise as the body responds to testosterone receptors being inhibited. Do not be alarmed if you notice an increase of testosterone in your blood tests.&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
====== [https://www.galinos.gr/web/drugs/main/drugs/Arvekap Arvekap] ======&lt;br /&gt;
|Triptorelin&lt;br /&gt;
| -&lt;br /&gt;
|~200/year?&lt;br /&gt;
|&lt;br /&gt;
|A?&lt;br /&gt;
|Injection&lt;br /&gt;
|GNRH Agonist&lt;br /&gt;
(indirectly) Stops testosterone AND estrogen production&lt;br /&gt;
|Also a puberty blocker&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
====== [https://www.galinos.gr/web/drugs/main/drugs/aldactone Aldactone] ======&lt;br /&gt;
|Spironolactone&lt;br /&gt;
|5.19 euro/20 tabs (100mg)&lt;br /&gt;
([https://www.galinos.gr/service/drugs/drawPackagePrice/148 Pricemap])&lt;br /&gt;
|?&lt;br /&gt;
|50mg-200mg/day&lt;br /&gt;
|B-C&lt;br /&gt;
|Tablet&lt;br /&gt;
|Antimineralocorticoid/MCRA&lt;br /&gt;
|Very inefficient, makes you pee, it&#039;s a medication for blood pressure&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
|Flutamide&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|F---&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|Only in this table as an example to avoid&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
==== Miscellaneous/Progesterone ====&lt;br /&gt;
Progesterone falls under this category, as it is not quite the same as other Anti-Androgens, the mention of Progesterone in this title is necessary in order to reduce confusion and questions such as &amp;quot;Where is progesterone?&amp;quot; and &amp;quot;Did you remove prog from the page?&amp;quot;.&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
!Brand Name(s)&lt;br /&gt;
!Substance&lt;br /&gt;
!Cost&lt;br /&gt;
!Cost with Healthcare Coverage&lt;br /&gt;
!Dosage&lt;br /&gt;
!Safety&lt;br /&gt;
!Form&lt;br /&gt;
!Type&lt;br /&gt;
!Notes&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
====== [https://www.galinos.gr/web/drugs/main/drugs/utrogestran Utrogestan] ======&lt;br /&gt;
|Progesterone (P4) it is also referred to as prog&lt;br /&gt;
|5.83 euro/30 caps (100mg)&lt;br /&gt;
8.08 euro/15 caps (200mg)&lt;br /&gt;
([https://www.galinos.gr/service/drugs/drawPackagePrice/7619 Pricemap])&lt;br /&gt;
|?&lt;br /&gt;
|100mg or 200mg daily (rectal administration, [[Blood Testing|blood tests]] are recommended)&lt;br /&gt;
|A&lt;br /&gt;
|Capsule&lt;br /&gt;
|Stops testosterone production.&lt;br /&gt;
|There is not much confirmed information about progesterone.&lt;br /&gt;
It can also be taken orally but the absorption rate is very low.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--T:59--&amp;gt;&lt;br /&gt;
Anecdotal claims:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--T:60--&amp;gt;&lt;br /&gt;
* Helps with breast development and with feminization in general.&lt;br /&gt;
* Can be given after one year of estradiol.&lt;br /&gt;
* Suggested to be given after the individual reaches Tanner stage 3.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--T:61--&amp;gt;&lt;br /&gt;
It can have androgenic or other (non-serious, recoverable) effects for some individuals - in particular it can be converted to DHT by the body even in combination with dutasteride or bicalutamide.&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--T:62--&amp;gt;&lt;br /&gt;
==== Other anti-androgens (optional) ====&lt;br /&gt;
These are used to block conversion of other androgens to DHT (which causes hair loss (hair) and body hair growth). They aren&#039;t general use Anti-Androgens.&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
!Brand Name(s)&lt;br /&gt;
!Substance&lt;br /&gt;
!Cost&lt;br /&gt;
!Cost with Healthcare Coverage&lt;br /&gt;
!Dosage&lt;br /&gt;
!Safety&lt;br /&gt;
!Form&lt;br /&gt;
!Type&lt;br /&gt;
!Notes&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
====== [https://www.galinos.gr/web/drugs/main/packages/26485 Dastidem], [https://www.galinos.gr/web/drugs/main/packages/25557 Rafuster], [https://www.galinos.gr/web/drugs/main/packages/25893 Duaride], [https://www.galinos.gr/web/drugs/main/packages/25894 Dustezor] ======&lt;br /&gt;
|Dutasteride&lt;br /&gt;
|7.90€/30 caps&lt;br /&gt;
|~6€/30 caps&lt;br /&gt;
|0.5mg/day (?/TBD)&lt;br /&gt;
|A-&lt;br /&gt;
|Capsule&lt;br /&gt;
| -&lt;br /&gt;
|High effectiveness.&lt;br /&gt;
|-&lt;br /&gt;
| -&lt;br /&gt;
|Finasteride&lt;br /&gt;
| -&lt;br /&gt;
| -&lt;br /&gt;
| -&lt;br /&gt;
|F&lt;br /&gt;
| -&lt;br /&gt;
| -&lt;br /&gt;
|Effectiveness is none to medium (Just take Dutasteride - will not stop conversion of Progesterone to DHT)&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== Transmasc ==&lt;br /&gt;
&lt;br /&gt;
=== Medications ===&lt;br /&gt;
&lt;br /&gt;
==== Testosterone ====&lt;br /&gt;
[https://www.galinos.gr/web/drugs/main/substances/testosterone/marketing Galinos.gr&#039;s testosterone availability page]&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|+&lt;br /&gt;
!Brand Name(s)&lt;br /&gt;
!Substance&lt;br /&gt;
!Form&lt;br /&gt;
!Method of Administration&lt;br /&gt;
!Cost&lt;br /&gt;
!Cost with Healthcare Coverage&lt;br /&gt;
!Dosage&lt;br /&gt;
!Safety&lt;br /&gt;
!Notes&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
====== [https://www.galinos.gr/web/drugs/main/packages/4929 Norma] ======&lt;br /&gt;
|Testosterone Enanthate&lt;br /&gt;
|Injection/Ampule&lt;br /&gt;
|Intramuscular&lt;br /&gt;
|17.67€/ampule &lt;br /&gt;
([https://www.galinos.gr/service/drugs/drawPackagePrice/4929 Pricemap])&lt;br /&gt;
|?&lt;br /&gt;
|?&lt;br /&gt;
|?&lt;br /&gt;
| -&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
====== [https://www.galinos.gr/web/drugs/main/packages/21943 Nebido] ======&lt;br /&gt;
|Testosterone Undecanoate&lt;br /&gt;
|Injection/Vial&lt;br /&gt;
|Intramuscular&lt;br /&gt;
|100.37€/vial&lt;br /&gt;
([https://www.galinos.gr/service/drugs/drawPackagePrice/21943 Pricemap])&lt;br /&gt;
|~32.52€/vial (you pay 25%)&lt;br /&gt;
|1 vial (1000mg/4mL)/10-20 weeks&lt;br /&gt;
|A&lt;br /&gt;
|As a starting dose &#039;&#039;&#039;after a year of HRT&#039;&#039;&#039;, you could also consider:&lt;br /&gt;
&lt;br /&gt;
* Instead of injecting one vial per 20 weeks, you do half every 10-12 weeks, however nothing could be sourced to support this. Though logically it could make sense as a practice.&lt;br /&gt;
* Do a test at 6 weeks after starting, if T is too high don&#039;t take the 2nd dose, if it&#039;s not you can take the 2nd and then test 2 weeks before every other dose.&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
====== [https://www.galinos.gr/web/drugs/main/packages/15739 Tostran] ======&lt;br /&gt;
|Testogel&lt;br /&gt;
|Gel&lt;br /&gt;
|Trans-dermally&lt;br /&gt;
|&#039;&#039;&#039;Starting dose&#039;&#039;&#039;&lt;br /&gt;
&amp;lt;!--T:82--&amp;gt;&lt;br /&gt;
* 35.54€/2 months&lt;br /&gt;
* 213.24€/year&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--T:83--&amp;gt;&lt;br /&gt;
&#039;&#039;&#039;30 mg dose&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--T:84--&amp;gt;&lt;br /&gt;
* 35.54€/40 days&lt;br /&gt;
* ~324.30€/year&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--T:85--&amp;gt;&lt;br /&gt;
&#039;&#039;&#039;40 mg dose&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--T:73--&amp;gt;&lt;br /&gt;
* 35.54€/30 days&lt;br /&gt;
* 426.48€/year&lt;br /&gt;
([https://www.galinos.gr/service/drugs/drawPackagePrice/15739 Pricemap])&lt;br /&gt;
|35.54€ -&amp;gt; 8.89€&lt;br /&gt;
|20mg/day (starting dose)&lt;br /&gt;
30-40mg/day&lt;br /&gt;
|A&lt;br /&gt;
|&lt;br /&gt;
* 1 pump of Tostran (&#039;&#039;&#039;0.5g&#039;&#039;&#039;) delivers 10 mg of T.&lt;br /&gt;
* 2 pumps of Tostran are 1 pump of Testogel (20.25mg of T)&lt;br /&gt;
* Can cause skin reactions.&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
==== GNRH Agonists ====&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
!Brand Name(s)&lt;br /&gt;
!Substance&lt;br /&gt;
! Cost&lt;br /&gt;
!Cost with Healthcare Coverage&lt;br /&gt;
!Dosage&lt;br /&gt;
!Safety&lt;br /&gt;
!Form&lt;br /&gt;
!Type&lt;br /&gt;
!Notes&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
====== [https://www.galinos.gr/web/drugs/main/drugs/Arvekap Arvekap] ======&lt;br /&gt;
|Triptorelin&lt;br /&gt;
| -&lt;br /&gt;
|~200/year?&lt;br /&gt;
|&lt;br /&gt;
|A?&lt;br /&gt;
|Injection&lt;br /&gt;
|GNRH Agonist&lt;br /&gt;
(indirectly) Stops testosterone AND estrogen production&lt;br /&gt;
|Also a puberty blocker&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
==== Other anti-androgens (optional) ====&lt;br /&gt;
These are used to block conversion of other androgens to DHT (which causes hair loss (hair) and body hair growth). They aren&#039;t general use Anti-Androgens.&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
!Brand Name(s)&lt;br /&gt;
!Substance&lt;br /&gt;
!Cost&lt;br /&gt;
!Cost with Healthcare Coverage&lt;br /&gt;
!Dosage&lt;br /&gt;
!Safety&lt;br /&gt;
!Form&lt;br /&gt;
!Type&lt;br /&gt;
!Notes&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
====== [https://www.galinos.gr/web/drugs/main/packages/26485 Dastidem], [https://www.galinos.gr/web/drugs/main/packages/25557 Rafuster], [https://www.galinos.gr/web/drugs/main/packages/25893 Duaride], [https://www.galinos.gr/web/drugs/main/packages/25894 Dustezor] ======&lt;br /&gt;
|Dutasteride&lt;br /&gt;
|7.90€/30 caps&lt;br /&gt;
|~6€/30 caps&lt;br /&gt;
|0.5mg/day (?/TBD)&lt;br /&gt;
|A-&lt;br /&gt;
|Capsule&lt;br /&gt;
| -&lt;br /&gt;
|High effectiveness. &lt;br /&gt;
Not to be confused with proper Anti-Androgens.&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== Nonbinary hrt *under construction* ==&lt;br /&gt;
&lt;br /&gt;
=== !!! disclaimer-warning about potential issues !!! ===&lt;br /&gt;
&lt;br /&gt;
=== General outline of nb hrt for amab and afab ===&lt;br /&gt;
&lt;br /&gt;
=== Medications ===&lt;br /&gt;
&lt;br /&gt;
==== Selective Estrogen Receptor Modulators (SERMs) ====&lt;br /&gt;
&lt;br /&gt;
* Tamoxifen is a selective estrogen receptor modulator (SERM). In some tissues such as the brain it activates estrogen receptors, which may help reduce dysphoria. In breast tissue it antagonizes estrogen receptors, preventing the formation of breast tissue if desired. There is some evidence that Tamoxifen inhibits memory, though the effects of taking it alongside regular estrogen are undocumented. Tamoxifen can cause cognitive dysfunction and increase your risk of stroke and pulmonary embolism. Tamoxifen may also be taken alongside 17β-estradiol, more research is needed. In this combination, estradiol should still have its effects (combating dysphoria in the brain, redistribution of body fat, smoother skin etc.) while tamoxifen prevents the growth of breast tissue.&lt;br /&gt;
* Raloxifene is another SERM. It is an estrogen receptor antagonist in breast tissue. It is an estrogen receptor agonist in bone and can be used to prevent osteoporosis. Raloxifene has been shown to reduce ERα expression in breast tissue in premenopausal women. As the synthesis of progesterone receptors (PR) is estrogen-regulated, raloxifene also decreases the expression of PR. Additionally, it was shown to decrease the presence of Ki-67, a biomarker for cell proliferation, in breast tissue of premenopausal women. As a result, it can be used to treat gynecomastia, and has been shown effective in reducing breast size in those with the condition. Raloxifene may promote feminine fat distribution: in a study on 56-66 year old postmenopausal women, there was an increase in fat in the legs and buttocks and a decrease in fat in the abdomen and trunk after 1 year on 60 mg/day raloxifene. It is not yet known how pronounced this effect is, as there have been no comparisons of body fat distribution between raloxifene and estradiol. Raloxifene may increase the risk of stroke and pulmonary embolism.&lt;br /&gt;
* Afimoxifene is a topical SERM and the primary metabolite of tamoxifen.&lt;br /&gt;
&lt;br /&gt;
==== Anti-androgens ====&lt;br /&gt;
&lt;br /&gt;
==== Bicalutamide ====&lt;br /&gt;
Bicalutamide is an  anti-androgen which is used mainly in the treatment of prostate cancer but can also be used to treat hirsutism, or as a component of hormone therapy in feminizing HRT, among other uses. It is nonsteroidal anti-androgen and a selective/pure antagonist of the androgen receptor. It has no other hormonal activity and does not lower androgen levels. Bicalutamide crosses the blood-brain barrier and blocks the effects of testosterone and dihydrotestosterone (DHT) both in the body and in the brain. While it has been observed that bicalutamide does not cross the blood-brain barrier in rats and dogs, this was found not to be the case in humans&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
In general Ralox seems the best idea based on overall effectiveness and less severe side effects compared to other SERMs. Most people on this kind of MtNB hrt seem to be using a combination of ralox (in place of estradiol) and bica [expand this + powers e1s schizo stuff?]&lt;br /&gt;
&lt;br /&gt;
== Legal ==&lt;br /&gt;
It is legal to buy anything without a diagnosis or a prescription (off the counter - OTC), Testosterone can be hit or miss, look for any product names mentioned (that have links attached to them/are blue in colour) [[HRT#Testosterone|here]].  &lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--T:86--&amp;gt;&lt;br /&gt;
You can also check the &#039;&#039;&#039;[https://diyon.top/map Trans-Friendly Pharmacies Map]&#039;&#039;&#039; for any pharmacies near you (this goes for both Transfem and Transmasc HRT). &lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--T:75--&amp;gt;&lt;br /&gt;
There is no minimum or maximum legal age for someone to start HRT. &lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--T:76--&amp;gt;&lt;br /&gt;
It is not legally mandatory for someone to have a diagnosis by a psychiatrist in order to medically transition.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--T:77--&amp;gt;&lt;br /&gt;
There is no legally mandatory time restriction for a psychiatrist to monitor you before diagnosing you.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--T:78--&amp;gt;&lt;br /&gt;
You don&#039;t legally need to be on HRT in order to be exempt from the [[army]], change your [[Legal|legal sex]], or to have a [[surgery]].&lt;br /&gt;
&lt;br /&gt;
== Other resources == &amp;lt;!--T:79--&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--T:80--&amp;gt;&lt;br /&gt;
* Simulator: https://www.estrannai.se/&lt;br /&gt;
* https://transfemscience.org/ (note, the authors of this site disagree with a lot of what they are saying, regardless, it is still interesting)&lt;br /&gt;
** Introduction to Hormone Therapy for Transfeminine People: https://transfemscience.org/articles/transfem-intro/&lt;br /&gt;
** Older simulator: https://transfemscience.org/misc/injectable-e2-simulator/&lt;br /&gt;
** Dosage calculator: https://transfemscience.org/misc/injectable-dose-vol-conc-conv/&lt;br /&gt;
* https://diyhrt.wiki/ (alt link: https://anarch.cc/transfeminine-diy-hrt-the-ultimate-guide-2/)&lt;br /&gt;
* https://hrtcafe.net/&lt;br /&gt;
* https://hrt.coffee/&lt;br /&gt;
* https://transharmreduction.org/ - useful for checking potency and quality of diy products.&lt;br /&gt;
* https://www.reddit.com/r/TransDIY/&lt;br /&gt;
* https://www.reddit.com/r/TransfemScience/&lt;br /&gt;
* https://crimethinc.com/2022/12/15/producing-transdermal-estrogen-a-do-it-yourself-guide (alt link: https://anarch.cc/producing-transdermal-estrogen-a-do-it-yourself-guide/, as above)&lt;br /&gt;
&lt;br /&gt;
==== Questionable resources ====&lt;br /&gt;
&lt;br /&gt;
* https://hrt.cat/ - info for making your own (you will probably not need it - version 1.0: https://hrtcafe.net/hrtcat/)&lt;br /&gt;
* https://groups.io/g/MTFHRT/wiki/29602 - Lena&#039;s guide (alt link: https://anarch.cc/mtf-hrt-ultimate-diy/)&lt;br /&gt;
* https://archive.ph/uQb8g - Noire Labs (alt link: https://anarch.cc/making-your-own-injections/, as above)&lt;br /&gt;
&lt;br /&gt;
==== Very questionable resources ====&lt;br /&gt;
&lt;br /&gt;
* https://archive.ph/cpy7k (alt link: https://anarch.cc/homebrewing-hormones-mtf-guide/, as above) - &#039;&#039;&#039;Potentially outdated.&#039;&#039;&#039;&lt;br /&gt;
&amp;lt;/translate&amp;gt;&lt;/div&gt;</summary>
		<author><name>Goblinmoder</name></author>
	</entry>
	<entry>
		<id>https://wiki.diyon.top/index.php?title=HRT&amp;diff=1011</id>
		<title>HRT</title>
		<link rel="alternate" type="text/html" href="https://wiki.diyon.top/index.php?title=HRT&amp;diff=1011"/>
		<updated>2025-05-03T00:11:54Z</updated>

		<summary type="html">&lt;p&gt;Goblinmoder: changed taking hormone blockers or aa explanation&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{#seo:&lt;br /&gt;
|title_mode=replace&lt;br /&gt;
|title=HRT&lt;br /&gt;
|description=We are open to discussion and actively on-going changes in formatting and contents of this Page and Website (in general). The e-mail address to refer to is fox@diyon.top&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
&amp;lt;languages/&amp;gt;&lt;br /&gt;
&amp;lt;translate&amp;gt;&lt;br /&gt;
&amp;lt;!--T:41--&amp;gt;&lt;br /&gt;
After around a month on HRT some of your ranges in your [[Blood Testing|blood test]] should be within desired ranges.&lt;br /&gt;
&lt;br /&gt;
== Disclaimers ==&lt;br /&gt;
 To clarify on &#039;&#039;&#039;dosages&#039;&#039;&#039;, the values mentioned below are rather speculative and most are based on &#039;&#039;&#039;personal experiences&#039;&#039;&#039; or &#039;&#039;&#039;(diy)hrt pages/websites/papers&#039;&#039;&#039;. Therefore it is encouraged to do [[Blood Testing|blood tests]] and if possible, check with an [[Doctors#Ενδοκρινολόγοι|endocrinologist]] (we also suggest [[Doctors]] that can help with such cases), especially if you have any specific &#039;&#039;&#039;health conditions&#039;&#039;&#039;. &lt;br /&gt;
&#039;&#039;&#039;Pricemaps&#039;&#039;&#039; are there to evaluate prices through &#039;&#039;&#039;[https://galinos.gr galinos.gr]&#039;&#039;&#039; (in case something is outdated, look for the green line that says &amp;quot;Λιανική&amp;quot;)&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Questionable resources&#039;&#039;&#039; are to be taken with a grain of salt on every aspect of their contents.&lt;br /&gt;
&lt;br /&gt;
We are open to discussion and actively on-going changes in formatting and contents of this Page and Website (in general). The e-mail address to refer to is &#039;&#039;&#039;fox@diyon.top&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
== Blood Levels ==&lt;br /&gt;
&lt;br /&gt;
==== Refer to the [[Blood Testing]] page. ====&lt;br /&gt;
== Transfem ==&lt;br /&gt;
Taking hormone blockers ([[HRT#Antiandrogens and GNRH Agonists|GNRH Agonists]], e.g: Arvekap) or any Anti Androgens (e.g: Aldactone, Androcur) &#039;&#039;&#039;without [[HRT#Estrogens|Estrogens]]&#039;&#039;&#039; is generally discouraged (This is &#039;&#039;&#039;non-definitive&#039;&#039;&#039; for Enby folks)&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--T:44--&amp;gt;&lt;br /&gt;
=== Monotherapy ===&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|+&lt;br /&gt;
!Type&lt;br /&gt;
!Commercial Names&lt;br /&gt;
!Dosage&lt;br /&gt;
!Notes&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
====== Sublingual (E Valerate or Hemihydrate) ======&lt;br /&gt;
|Cyclacur (EV), Estrofem (EH, imported), Trisequens (12 pills 2mg EH, 10 pills norgestrel, 6 pills 1mg EH)&lt;br /&gt;
|&amp;gt;=8-12mg/day&lt;br /&gt;
|While it is possible, even with a smaller dosage (&#039;&#039;&#039;at least 6mg&#039;&#039;&#039;), it&#039;s not that common. Ideally, use your blood tests to &#039;&#039;&#039;minmax&#039;&#039;&#039; your doses.&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
====== Injectable Estradiol Valerate (EV) ======&lt;br /&gt;
|Neofollin (can be ordered from pharmacies near Czechia, or aptekaapo.com &#039;&#039;&#039;but they’re not on hrtcafe&#039;&#039;&#039;, not tested in Greece), Delestrogen (Vial, unavailable), Progynon Depot (Ampules, unavailable), [[File:What-excuse-me.gif|thumb|[[HRT#Other resources|my honest reaction]]]]&lt;br /&gt;
|5-7mg/5 days&lt;br /&gt;
|&lt;br /&gt;
* Due to the large spikes in levels combined with the short [https://en.wikipedia.org/wiki/Biological_half-life half-life] it is not recommended for dosages to surpass the 5 day mark because it may cause menopause symptoms.&lt;br /&gt;
* Branded versions of this medication are not available in greece.&lt;br /&gt;
* The ampules contain a certain mg and do not allow for larger dosages, they are not re-usable. It is recommended to use a vial with a cap.&lt;br /&gt;
* Look for &#039;&#039;&#039;[https://arc-w.nihr.ac.uk/Wordpress/wp-content/uploads/2015/07/Low-dead-space-syringes.png syringe dead space]([[HRT#:~:text=* = It has been mentioned that syringes account for dead space, although that is not 100% certain.|*]])&#039;&#039;&#039;, e.g. if there&#039;s &#039;&#039;&#039;0.05mL&#039;&#039;&#039; remaining after injecting, draw &#039;&#039;&#039;+0.05mL&#039;&#039;&#039; from the vial.&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
====== Injectable Estradiol Cypionate (EC) ======&lt;br /&gt;
|[[File:What-excuse-me.gif|thumb|[[HRT#Other resources|my honest reaction]]]]Depo-Estradiol (US only, unavailable),&lt;br /&gt;
|5-7mg/7 days&lt;br /&gt;
|&lt;br /&gt;
* Look for &#039;&#039;&#039;[https://arc-w.nihr.ac.uk/Wordpress/wp-content/uploads/2015/07/Low-dead-space-syringes.png syringe dead space]([[HRT#:~:text=* = It has been mentioned that syringes account for dead space, although that is not 100% certain.|*]])&#039;&#039;&#039;, e.g. if there&#039;s &#039;&#039;&#039;0.05mL&#039;&#039;&#039; remaining after injecting, draw &#039;&#039;&#039;+0.05mL&#039;&#039;&#039; from the vial.&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
====== Injectable Estradiol Enanthate (EEn) ======&lt;br /&gt;
|[[File:What-excuse-me.gif|thumb|[[HRT#Other resources|my honest reaction]]]]&lt;br /&gt;
|4-7mg/7 days&lt;br /&gt;
7-10mg/10 days (7.2mg usually, depending on the vial, it&#039;s optimal because drawing cents of mL are hard to get right)&lt;br /&gt;
|&lt;br /&gt;
* You can multiply the weekly dosage by 2, which lasts up to 14 days (as much as the [https://en.wikipedia.org/wiki/Biological_half-life half-life] of Enanthate)&lt;br /&gt;
* Look for &#039;&#039;&#039;[https://arc-w.nihr.ac.uk/Wordpress/wp-content/uploads/2015/07/Low-dead-space-syringes.png syringe dead space]([[HRT#:~:text=* = It has been mentioned that syringes account for dead space, although that is not 100% certain.|*]])&#039;&#039;&#039;, e.g. if there&#039;s &#039;&#039;&#039;0.05mL&#039;&#039;&#039; remaining after injecting, draw &#039;&#039;&#039;+0.05mL&#039;&#039;&#039; from the vial.&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
====== Injectable Estradiol Undecylate (EU/EUn) ======&lt;br /&gt;
|[[File:What-excuse-me.gif|thumb|[[HRT#Other resources|my honest reaction]]]]&lt;br /&gt;
|There&#039;s not enough information on dosage. The frequency of those may differ according to the oil used (MCT/Castor oil). Indicative Dosages:&lt;br /&gt;
15-20mg/2 weeks&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--T:45--&amp;gt;&lt;br /&gt;
20-40mg+/4 weeks&lt;br /&gt;
|&lt;br /&gt;
* There&#039;s not enough information on its [[wikipedia:Biological_half-life|half-life]], a higher dosage can be administered that can last up to 20-30 days.&lt;br /&gt;
* [[wikipedia:Intramuscular_injection|IM injections]] last longer so they give better levels during the same period of time per injection.&lt;br /&gt;
* Needs at least 90 days to reach stable levels.&lt;br /&gt;
* Look for &#039;&#039;&#039;[https://arc-w.nihr.ac.uk/Wordpress/wp-content/uploads/2015/07/Low-dead-space-syringes.png syringe dead space]([[HRT#:~:text=* = It has been mentioned that syringes account for dead space, although that is not 100% certain.|*]])&#039;&#039;&#039;, e.g. if there&#039;s &#039;&#039;&#039;0.05mL&#039;&#039;&#039; remaining after injecting, draw &#039;&#039;&#039;+0.05mL&#039;&#039;&#039; from the vial.&lt;br /&gt;
|}&lt;br /&gt;
&#039;&#039;&#039;*&#039;&#039;&#039; = It has been mentioned that syringes account for dead space, although that is not 100% certain.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--T:46--&amp;gt;&lt;br /&gt;
=== Sublingual vs Oral ===&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|+&lt;br /&gt;
!Method&lt;br /&gt;
!Substance&lt;br /&gt;
!Dosage&lt;br /&gt;
!Observations&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
====== Oral ======&lt;br /&gt;
|Estradiol Valerate in pill form (e.g. Cyclacur)&lt;br /&gt;
|&amp;gt;=6mg/day&lt;br /&gt;
(max 10mg as per Dr. Powers)&lt;br /&gt;
|It is recommended that doses are taken separately on set time intervals during the day for more stable estradiol levels, e.g. for a 6mg dose you would take 2mg per 8 hours. By the oral route the active substance is metabolized by the liver and part of it is converted to estrone (E1), which has much less feminizing effects than estradiol (E2) so the desired effect is essentially prevented. The bioavailability of estradiol by oral administration is very low (~5%) and usually lower levels of E2 are observed in blood tests than other methods of administration. [anecdotal apo to server, wikipedia kai tttt - correct/expand?] It is also necessary to administer anti-androgens to reduce testosterone levels to the female range.&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
====== Sublingual ======&lt;br /&gt;
|Estradiol Valerate in pill form (e.g. Cyclacur)&lt;br /&gt;
|&amp;gt;=4mg/day&lt;br /&gt;
|It is recommended that doses are taken separately on set time intervals during the day for more stable estradiol levels, e.g. for a 6mg dose you would take 2mg per 8 hours. The sublingual way bypasses estradiol metabolism by the liver and has about 5 times the estradiol bioavailability of the oral way. This way, estradiol levels have greater range than orally (higher peak lower bottom), in oral they remain higher for ~12 hours while sublingually they go away after 3-4 hours (This however is from a study from 2005 on cis women)&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== Vial info === &amp;lt;!--T:47--&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--T:48--&amp;gt;&lt;br /&gt;
=== Medications ===&lt;br /&gt;
For cyclacur: &#039;&#039;&#039;take only the white pills, the brown pills are Norgestrel which have 0.5mg of estradiol but has an androgenic effect and may also cause other side effects&#039;&#039;&#039;. &lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--T:49--&amp;gt;&lt;br /&gt;
==== Estrogens ====&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|+&lt;br /&gt;
!Brand Name(s)&lt;br /&gt;
!Substance&lt;br /&gt;
!Form&lt;br /&gt;
!Method of Administration&lt;br /&gt;
!Cost&lt;br /&gt;
!Cost with Healthcare Coverage&lt;br /&gt;
!Dosage&lt;br /&gt;
!Safety&lt;br /&gt;
!Notes&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
====== [https://www.galinos.gr/web/drugs/main/drugs/Cyclacur Cyclacur] ======&lt;br /&gt;
|Estradiol Valerate (EV)&lt;br /&gt;
|Pill tablet&lt;br /&gt;
|Orally or sublingually&lt;br /&gt;
|2.01€ for 11 pills ([https://www.galinos.gr/service/drugs/drawPackagePrice/1198 Pricemap])&lt;br /&gt;
~130.8-328.€/year&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--T:50--&amp;gt;&lt;br /&gt;
~10.9-27.4€/month&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--T:51--&amp;gt;&lt;br /&gt;
Prices are indicative, the cost depends on the dosage.&lt;br /&gt;
| -&lt;br /&gt;
|6mg-10mg/day (according to Dr. Will Powers)&lt;br /&gt;
4mg-8mg/day (according to Greek Endocrinologists)&lt;br /&gt;
|A&lt;br /&gt;
|&lt;br /&gt;
* &#039;&#039;&#039;Only white pills are used.&#039;&#039;&#039; Brown pills do have a bit of estradiol but arent taken due to other side effects.&lt;br /&gt;
* You need antiandrogens or GNRH antagonists if you haven&#039;t had an orchiectomy.&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
====== Progynova ======&lt;br /&gt;
|Estradiol Valerate (EV)&lt;br /&gt;
|Pill tablet&lt;br /&gt;
|Orally or sublingually&lt;br /&gt;
|~22€ for 72 pills of 1 mg or ~32€ for 72 pills of 2 mg&lt;br /&gt;
Prices are indicative, the cost depends on the dosage.&lt;br /&gt;
| -&lt;br /&gt;
|4mg-8mg/day&lt;br /&gt;
|A&lt;br /&gt;
|&lt;br /&gt;
* There is no reason to use it in Greece since Cyclacur is available in Greek pharmacies.&lt;br /&gt;
* You need antiandrogens or GNRH antagonists if you haven&#039;t had an orchiectomy.&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
====== Estrofem, Estrifam (german brand name), [https://www.galinos.gr/web/drugs/main/drugs/trisequens Trisequens] ======&lt;br /&gt;
|Estradiol Hemihydrate&lt;br /&gt;
|Pill tablet&lt;br /&gt;
|Orally or sublingually&lt;br /&gt;
|~30€ for 28 pills of 2 mg without shipping costs.&lt;br /&gt;
Prices are indicative, the cost depends on the dosage.&lt;br /&gt;
| -&lt;br /&gt;
|4mg-8mg/day&lt;br /&gt;
|A&lt;br /&gt;
|&lt;br /&gt;
* There is no reason to use it in Greece since Cyclacur is available in Greek pharmacies.&lt;br /&gt;
* You need antiandrogens or GNRH antagonists if you haven&#039;t had an orchiectomy.&lt;br /&gt;
* Trisequens, while being available in Greece, is odd to take with 12 pills being 2mg EH, 10 norgestrel, and 6 1mg EH, for a much higher price than [[HRT#Cyclacur|Cyclacur]].&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
====== [https://www.galinos.gr/web/drugs/main/drugs/Dermestril Dermestril] ======&lt;br /&gt;
|Estradiol Hemihydrate&lt;br /&gt;
|Patch&lt;br /&gt;
|Trans-dermally&lt;br /&gt;
|44€ for 24 patches of 100mcg&lt;br /&gt;
~15€ for 8 patches of 50mcg&lt;br /&gt;
| -&lt;br /&gt;
|50mcg/3.5 days (when starting off)&lt;br /&gt;
100mcg/3.5 days (whenever your e2 levels are stable)&lt;br /&gt;
|A&lt;br /&gt;
|&lt;br /&gt;
* &#039;&#039;&#039;If you have no idea how to apply patches watch this:&#039;&#039;&#039; [https://youtu.be/tXGIYWPqdpI?si=O0dlE19pq0ic0PZP Demonstrational Video]&lt;br /&gt;
* You need antiandrogens or GNRH antagonists if you haven&#039;t had an orchiectomy.&lt;br /&gt;
* 100mcg patches can be cut into 2 if needed.&lt;br /&gt;
|-&lt;br /&gt;
|Neofollin (can be ordered from pharmacies near Czechia, not tested in Greece), Delestrogen (Vial, unavailable), Progynon Depot (Ampules, unavailable)&lt;br /&gt;
|&lt;br /&gt;
====== Estradiol Valerate (EV) ======&lt;br /&gt;
|Injectable&lt;br /&gt;
|Subcutaneous or Intramuscular&lt;br /&gt;
|80€/year (including shipping costs, syringes and alcohol swabs)&lt;br /&gt;
| -&lt;br /&gt;
|5-7mg/5 days (monotherapy)&lt;br /&gt;
4-5mg/7 days (only in combination with an antiandrogen or GNRH agonist)&lt;br /&gt;
|A+&lt;br /&gt;
|&lt;br /&gt;
* It can be used without antiandrogens or GNRH agonists in ([[HRT#Μονοθεραπεία|Monotherapy]]) by increasing the dosage.&lt;br /&gt;
|-&lt;br /&gt;
|Depo-Estradiol (US only, unavailable)&lt;br /&gt;
|&lt;br /&gt;
====== Estradiol Cypionate (EC) ======&lt;br /&gt;
|Injectable&lt;br /&gt;
|Subcutaneous or Intramuscular&lt;br /&gt;
|~70-80€/year (not including shipping costs, syringes and alcohol swabs)&lt;br /&gt;
| -&lt;br /&gt;
|5-7mg/7 days&lt;br /&gt;
(&#039;&#039;&#039;mono dose&#039;&#039;&#039;)&lt;br /&gt;
? (TBD/&#039;&#039;&#039;dose with AA&#039;&#039;&#039;)&lt;br /&gt;
|?&lt;br /&gt;
|&lt;br /&gt;
* It can be used without antiandrogens or GNRH agonists in ([[HRT#Μονοθεραπεία|Monotherapy]])&lt;br /&gt;
|-&lt;br /&gt;
| -&lt;br /&gt;
|&lt;br /&gt;
====== Estradiol Enanthate (EEn) ======&lt;br /&gt;
|Injectable&lt;br /&gt;
|Subcutaneous or Intramuscular&lt;br /&gt;
|80€/year (including shipping costs, syringes and alcohol swabs)&lt;br /&gt;
| -&lt;br /&gt;
|2.5mg-7mg/7 days&lt;br /&gt;
(usual dosage: 4mg/7days)&lt;br /&gt;
|A+&lt;br /&gt;
|&lt;br /&gt;
* It can be used without antiandrogens or GNRH agonists in ([[HRT#Μονοθεραπεία|Monotherapy]]) by increasing the dosage.&lt;br /&gt;
|-&lt;br /&gt;
| -&lt;br /&gt;
|&lt;br /&gt;
====== Estradiol Undecylate (EU, EUn) ======&lt;br /&gt;
|Injectable&lt;br /&gt;
|Subcutaneous or Intramuscular&lt;br /&gt;
|130€/year (including shipping costs, syringes and alcohol swabs)&lt;br /&gt;
| -&lt;br /&gt;
|15-20mg/2 weeks&lt;br /&gt;
20-40mg+/4 weeks&lt;br /&gt;
|A+&lt;br /&gt;
|&lt;br /&gt;
* There&#039;s not much info on dosages, usually seen in [[HRT#Μονοθεραπεία|monotherapy]].&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--T:52--&amp;gt;&lt;br /&gt;
==== Anti-Androgens and GNRH Agonists ====&lt;br /&gt;
These should &#039;&#039;&#039;not&#039;&#039;&#039; be taken sublingually.&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|+&lt;br /&gt;
!Brand Name(s)&lt;br /&gt;
!Substance&lt;br /&gt;
!Cost&lt;br /&gt;
!Cost with Healthcare Coverage&lt;br /&gt;
!Dosage&lt;br /&gt;
!Safety&lt;br /&gt;
!Form&lt;br /&gt;
!Type&lt;br /&gt;
!Notes&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
====== [https://www.galinos.gr/web/drugs/main/drugs/Androcur Androcur] ======&lt;br /&gt;
|Cyproterone Acetate (CPA) is also referred to as cypro&lt;br /&gt;
|21.58€/50mg * 50 pills &lt;br /&gt;
19.7-31.5€/year&lt;br /&gt;
&lt;br /&gt;
([https://www.galinos.gr/service/drugs/drawPackagePrice/8023 Pricemap])&lt;br /&gt;
|?&lt;br /&gt;
|12.5mg/2 days- 10mg/day&lt;br /&gt;
&#039;&#039;&#039;Larger doses shouldn&#039;t be administered&#039;&#039;&#039;&lt;br /&gt;
|C&lt;br /&gt;
|Pill tablet&lt;br /&gt;
|Progestin (Steroidal antiandrogen)&lt;br /&gt;
Stops testosterone production.&lt;br /&gt;
|The max recommended dosage is 10mg/day . Monitoring of prolactin levels is recommended through [[Blood Testing#MTF|blood testing]].&lt;br /&gt;
&#039;&#039;&#039;Many doctors give overdoses of 50 mg/day. Cyproterone is a strong anti-androgen and testosterone suppression is possible with lower doses. A change of doctor is recommended.&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--T:53--&amp;gt;&lt;br /&gt;
[[wikipedia:Side_effects_of_cyproterone_acetate|Side Effects]]:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--T:54--&amp;gt;&lt;br /&gt;
* Benign brain tumor.&lt;br /&gt;
* In rare cases, liver damage.&lt;br /&gt;
* Vitamin B12 deficiency.&lt;br /&gt;
* Breast cancer.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--T:55--&amp;gt;&lt;br /&gt;
Testosterone suppression can be achieved with even lower doses, however a 50 mg pill is difficult to cut into pieces of less than 12.5 mg even with a pill cutter.&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
====== [https://www.galinos.gr/web/drugs/main/drugs/Bicalut Bicalut] ======&lt;br /&gt;
|Bicalutamide (aka: bica)&lt;br /&gt;
|29.10 euro/30 pills&lt;br /&gt;
29.10 euro/month&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--T:56--&amp;gt;&lt;br /&gt;
~350 euro/year&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
([https://www.galinos.gr/service/drugs/drawPackagePrice/11120 Pricemap])&lt;br /&gt;
|6.77 euro/month (28 tabs)&lt;br /&gt;
~95 euro/year&lt;br /&gt;
|50mg/day&lt;br /&gt;
|A-&lt;br /&gt;
|Pill/Tablet&lt;br /&gt;
|Androgen receptor antagonist (Nonsteroidal antiandrogen)&lt;br /&gt;
Blocks absorption of all androgens (including testosterone)&lt;br /&gt;
|&#039;&#039;&#039;Serious negative interactions can be noted if combined with other anti-androgens and GNRH agonists (except progesterone)&#039;&#039;&#039;&lt;br /&gt;
&#039;&#039;&#039;Very rare&#039;&#039;&#039; chance for recoverable and non-fatal liver damage for people with a certain rare mutation.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--T:57--&amp;gt;&lt;br /&gt;
Most of the effects listen in the instruction manual are scaremongering. (it lists a very high chance of liver issues when they are actually very rare, and also lists photosensitivity, which if it even occurs at all, it should be quite rare. We are aware of nobody who had a negative interction between alexandrite laser hair removal and bicalutamide).&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--T:58--&amp;gt;&lt;br /&gt;
Note that bicalutamide, unlike most other anti-androgens, &#039;&#039;&#039;does not&#039;&#039;&#039; lower testosterone levels, in fact they usually rise as the body responds to testosterone receptors being inhibited. Do not be alarmed if you notice an increase of testosterone in your blood tests.&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
====== [https://www.galinos.gr/web/drugs/main/drugs/Arvekap Arvekap] ======&lt;br /&gt;
|Triptorelin&lt;br /&gt;
| -&lt;br /&gt;
|~200/year?&lt;br /&gt;
|&lt;br /&gt;
|A?&lt;br /&gt;
|Injection&lt;br /&gt;
|GNRH Agonist&lt;br /&gt;
(indirectly) Stops testosterone AND estrogen production&lt;br /&gt;
|Also a puberty blocker&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
====== [https://www.galinos.gr/web/drugs/main/drugs/aldactone Aldactone] ======&lt;br /&gt;
|Spironolactone&lt;br /&gt;
|5.19 euro/20 tabs (100mg)&lt;br /&gt;
([https://www.galinos.gr/service/drugs/drawPackagePrice/148 Pricemap])&lt;br /&gt;
|?&lt;br /&gt;
|50mg-200mg/day&lt;br /&gt;
|B-C&lt;br /&gt;
|Tablet&lt;br /&gt;
|Antimineralocorticoid/MCRA&lt;br /&gt;
|Very inefficient, makes you pee, it&#039;s a medication for blood pressure&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
|Flutamide&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|F---&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|Only in this table as an example to avoid&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
==== Miscellaneous/Progesterone ====&lt;br /&gt;
Progesterone falls under this category, as it is not quite the same as other Anti-Androgens, the mention of Progesterone in this title is necessary in order to reduce confusion and questions such as &amp;quot;Where is progesterone?&amp;quot; and &amp;quot;Did you remove prog from the page?&amp;quot;.&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
!Brand Name(s)&lt;br /&gt;
!Substance&lt;br /&gt;
!Cost&lt;br /&gt;
!Cost with Healthcare Coverage&lt;br /&gt;
!Dosage&lt;br /&gt;
!Safety&lt;br /&gt;
!Form&lt;br /&gt;
!Type&lt;br /&gt;
!Notes&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
====== [https://www.galinos.gr/web/drugs/main/drugs/utrogestran Utrogestan] ======&lt;br /&gt;
|Progesterone (P4) it is also referred to as prog&lt;br /&gt;
|5.83 euro/30 caps (100mg)&lt;br /&gt;
8.08 euro/15 caps (200mg)&lt;br /&gt;
([https://www.galinos.gr/service/drugs/drawPackagePrice/7619 Pricemap])&lt;br /&gt;
|?&lt;br /&gt;
|100mg or 200mg daily (rectal administration, [[Blood Testing|blood tests]] are recommended)&lt;br /&gt;
|A&lt;br /&gt;
|Capsule&lt;br /&gt;
|Stops testosterone production.&lt;br /&gt;
|There is not much confirmed information about progesterone.&lt;br /&gt;
It can also be taken orally but the absorption rate is very low.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--T:59--&amp;gt;&lt;br /&gt;
Anecdotal claims:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--T:60--&amp;gt;&lt;br /&gt;
* Helps with breast development and with feminization in general.&lt;br /&gt;
* Can be given after one year of estradiol.&lt;br /&gt;
* Suggested to be given after the individual reaches Tanner stage 3.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--T:61--&amp;gt;&lt;br /&gt;
It can have androgenic or other (non-serious, recoverable) effects for some individuals - in particular it can be converted to DHT by the body even in combination with dutasteride or bicalutamide.&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--T:62--&amp;gt;&lt;br /&gt;
==== Other anti-androgens (optional) ====&lt;br /&gt;
These are used to block conversion of other androgens to DHT (which causes hair loss (hair) and body hair growth). They aren&#039;t general use Anti-Androgens.&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
!Brand Name(s)&lt;br /&gt;
!Substance&lt;br /&gt;
!Cost&lt;br /&gt;
!Cost with Healthcare Coverage&lt;br /&gt;
!Dosage&lt;br /&gt;
!Safety&lt;br /&gt;
!Form&lt;br /&gt;
!Type&lt;br /&gt;
!Notes&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
====== [https://www.galinos.gr/web/drugs/main/packages/26485 Dastidem], [https://www.galinos.gr/web/drugs/main/packages/25557 Rafuster], [https://www.galinos.gr/web/drugs/main/packages/25893 Duaride], [https://www.galinos.gr/web/drugs/main/packages/25894 Dustezor] ======&lt;br /&gt;
|Dutasteride&lt;br /&gt;
|7.90€/30 caps&lt;br /&gt;
|~6€/30 caps&lt;br /&gt;
|0.5mg/day (?/TBD)&lt;br /&gt;
|A-&lt;br /&gt;
|Capsule&lt;br /&gt;
| -&lt;br /&gt;
|High effectiveness.&lt;br /&gt;
|-&lt;br /&gt;
| -&lt;br /&gt;
|Finasteride&lt;br /&gt;
| -&lt;br /&gt;
| -&lt;br /&gt;
| -&lt;br /&gt;
|F&lt;br /&gt;
| -&lt;br /&gt;
| -&lt;br /&gt;
|Effectiveness is none to medium (Just take Dutasteride - will not stop conversion of Progesterone to DHT)&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== Transmasc ==&lt;br /&gt;
&lt;br /&gt;
=== Medications ===&lt;br /&gt;
&lt;br /&gt;
==== Testosterone ====&lt;br /&gt;
[https://www.galinos.gr/web/drugs/main/substances/testosterone/marketing Galinos.gr&#039;s testosterone availability page]&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|+&lt;br /&gt;
!Brand Name(s)&lt;br /&gt;
!Substance&lt;br /&gt;
!Form&lt;br /&gt;
!Method of Administration&lt;br /&gt;
!Cost&lt;br /&gt;
!Cost with Healthcare Coverage&lt;br /&gt;
!Dosage&lt;br /&gt;
!Safety&lt;br /&gt;
!Notes&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
====== [https://www.galinos.gr/web/drugs/main/packages/4929 Norma] ======&lt;br /&gt;
|Testosterone Enanthate&lt;br /&gt;
|Injection/Ampule&lt;br /&gt;
|Intramuscular&lt;br /&gt;
|17.67€/ampule &lt;br /&gt;
([https://www.galinos.gr/service/drugs/drawPackagePrice/4929 Pricemap])&lt;br /&gt;
|?&lt;br /&gt;
|?&lt;br /&gt;
|?&lt;br /&gt;
| -&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
====== [https://www.galinos.gr/web/drugs/main/packages/21943 Nebido] ======&lt;br /&gt;
|Testosterone Undecanoate&lt;br /&gt;
|Injection/Vial&lt;br /&gt;
|Intramuscular&lt;br /&gt;
|100.37€/vial&lt;br /&gt;
([https://www.galinos.gr/service/drugs/drawPackagePrice/21943 Pricemap])&lt;br /&gt;
|~32.52€/vial (you pay 25%)&lt;br /&gt;
|1 vial (1000mg/4mL)/10-20 weeks&lt;br /&gt;
|A&lt;br /&gt;
|As a starting dose &#039;&#039;&#039;after a year of HRT&#039;&#039;&#039;, you could also consider:&lt;br /&gt;
&lt;br /&gt;
* Instead of injecting one vial per 20 weeks, you do half every 10-12 weeks, however nothing could be sourced to support this. Though logically it could make sense as a practice.&lt;br /&gt;
* Do a test at 6 weeks after starting, if T is too high don&#039;t take the 2nd dose, if it&#039;s not you can take the 2nd and then test 2 weeks before every other dose.&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
====== [https://www.galinos.gr/web/drugs/main/packages/15739 Tostran] ======&lt;br /&gt;
|Testogel&lt;br /&gt;
|Gel&lt;br /&gt;
|Trans-dermally&lt;br /&gt;
|&#039;&#039;&#039;Starting dose&#039;&#039;&#039;&lt;br /&gt;
&amp;lt;!--T:82--&amp;gt;&lt;br /&gt;
* 35.54€/2 months&lt;br /&gt;
* 213.24€/year&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--T:83--&amp;gt;&lt;br /&gt;
&#039;&#039;&#039;30 mg dose&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--T:84--&amp;gt;&lt;br /&gt;
* 35.54€/40 days&lt;br /&gt;
* ~324.30€/year&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--T:85--&amp;gt;&lt;br /&gt;
&#039;&#039;&#039;40 mg dose&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--T:73--&amp;gt;&lt;br /&gt;
* 35.54€/30 days&lt;br /&gt;
* 426.48€/year&lt;br /&gt;
([https://www.galinos.gr/service/drugs/drawPackagePrice/15739 Pricemap])&lt;br /&gt;
|35.54€ -&amp;gt; 8.89€&lt;br /&gt;
|20mg/day (starting dose)&lt;br /&gt;
30-40mg/day&lt;br /&gt;
|A&lt;br /&gt;
|&lt;br /&gt;
* 1 pump of Tostran (&#039;&#039;&#039;0.5g&#039;&#039;&#039;) delivers 10 mg of T.&lt;br /&gt;
* 2 pumps of Tostran are 1 pump of Testogel (20.25mg of T)&lt;br /&gt;
* Can cause skin reactions.&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
==== GNRH Agonists ====&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
!Brand Name(s)&lt;br /&gt;
!Substance&lt;br /&gt;
! Cost&lt;br /&gt;
!Cost with Healthcare Coverage&lt;br /&gt;
!Dosage&lt;br /&gt;
!Safety&lt;br /&gt;
!Form&lt;br /&gt;
!Type&lt;br /&gt;
!Notes&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
====== [https://www.galinos.gr/web/drugs/main/drugs/Arvekap Arvekap] ======&lt;br /&gt;
|Triptorelin&lt;br /&gt;
| -&lt;br /&gt;
|~200/year?&lt;br /&gt;
|&lt;br /&gt;
|A?&lt;br /&gt;
|Injection&lt;br /&gt;
|GNRH Agonist&lt;br /&gt;
(indirectly) Stops testosterone AND estrogen production&lt;br /&gt;
|Also a puberty blocker&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
==== Other anti-androgens (optional) ====&lt;br /&gt;
These are used to block conversion of other androgens to DHT (which causes hair loss (hair) and body hair growth). They aren&#039;t general use Anti-Androgens.&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
!Brand Name(s)&lt;br /&gt;
!Substance&lt;br /&gt;
!Cost&lt;br /&gt;
!Cost with Healthcare Coverage&lt;br /&gt;
!Dosage&lt;br /&gt;
!Safety&lt;br /&gt;
!Form&lt;br /&gt;
!Type&lt;br /&gt;
!Notes&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
====== [https://www.galinos.gr/web/drugs/main/packages/26485 Dastidem], [https://www.galinos.gr/web/drugs/main/packages/25557 Rafuster], [https://www.galinos.gr/web/drugs/main/packages/25893 Duaride], [https://www.galinos.gr/web/drugs/main/packages/25894 Dustezor] ======&lt;br /&gt;
|Dutasteride&lt;br /&gt;
|7.90€/30 caps&lt;br /&gt;
|~6€/30 caps&lt;br /&gt;
|0.5mg/day (?/TBD)&lt;br /&gt;
|A-&lt;br /&gt;
|Capsule&lt;br /&gt;
| -&lt;br /&gt;
|High effectiveness. &lt;br /&gt;
Not to be confused with proper Anti-Androgens.&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== Nonbinary hrt *under construction* ==&lt;br /&gt;
&lt;br /&gt;
=== !!! disclaimer-warning about potential issues !!! ===&lt;br /&gt;
&lt;br /&gt;
=== General outline of nb hrt for amab and afab ===&lt;br /&gt;
&lt;br /&gt;
=== Medications ===&lt;br /&gt;
&lt;br /&gt;
==== Selective Estrogen Receptor Modulators (SERMs) ====&lt;br /&gt;
&lt;br /&gt;
* Tamoxifen is a selective estrogen receptor modulator (SERM). In some tissues such as the brain it activates estrogen receptors, which may help reduce dysphoria. In breast tissue it antagonizes estrogen receptors, preventing the formation of breast tissue if desired. There is some evidence that Tamoxifen inhibits memory, though the effects of taking it alongside regular estrogen are undocumented. Tamoxifen can cause cognitive dysfunction and increase your risk of stroke and pulmonary embolism. Tamoxifen may also be taken alongside 17β-estradiol, more research is needed. In this combination, estradiol should still have its effects (combating dysphoria in the brain, redistribution of body fat, smoother skin etc.) while tamoxifen prevents the growth of breast tissue.&lt;br /&gt;
* Raloxifene is another SERM. It is an estrogen receptor antagonist in breast tissue. It is an estrogen receptor agonist in bone and can be used to prevent osteoporosis. Raloxifene has been shown to reduce ERα expression in breast tissue in premenopausal women. As the synthesis of progesterone receptors (PR) is estrogen-regulated, raloxifene also decreases the expression of PR. Additionally, it was shown to decrease the presence of Ki-67, a biomarker for cell proliferation, in breast tissue of premenopausal women. As a result, it can be used to treat gynecomastia, and has been shown effective in reducing breast size in those with the condition. Raloxifene may promote feminine fat distribution: in a study on 56-66 year old postmenopausal women, there was an increase in fat in the legs and buttocks and a decrease in fat in the abdomen and trunk after 1 year on 60 mg/day raloxifene. It is not yet known how pronounced this effect is, as there have been no comparisons of body fat distribution between raloxifene and estradiol. Raloxifene may increase the risk of stroke and pulmonary embolism.&lt;br /&gt;
* Afimoxifene is a topical SERM and the primary metabolite of tamoxifen.&lt;br /&gt;
&lt;br /&gt;
==== Anti-androgens ====&lt;br /&gt;
&lt;br /&gt;
==== Bicalutamide ====&lt;br /&gt;
Bicalutamide is an  anti-androgen which is used mainly in the treatment of prostate cancer but can also be used to treat hirsutism, or as a component of hormone therapy in feminizing HRT, among other uses. It is nonsteroidal anti-androgen and a selective/pure antagonist of the androgen receptor. It has no other hormonal activity and does not lower androgen levels. Bicalutamide crosses the blood-brain barrier and blocks the effects of testosterone and dihydrotestosterone (DHT) both in the body and in the brain. While it has been observed that bicalutamide does not cross the blood-brain barrier in rats and dogs, this was found not to be the case in humans&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
In general Ralox seems the best idea based on overall effectiveness and less severe side effects compared to other SERMs. Most people on this kind of MtNB hrt seem to be using a combination of ralox (in place of estradiol) and bica [expand this + powers e1s schizo stuff?]&lt;br /&gt;
&lt;br /&gt;
== Legal ==&lt;br /&gt;
It is legal to buy anything without a diagnosis or a prescription (off the counter - OTC), Testosterone can be hit or miss, look for any product names mentioned (that have links attached to them/are blue in colour) [[HRT#Testosterone|here]].  &lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--T:86--&amp;gt;&lt;br /&gt;
You can also check the &#039;&#039;&#039;[https://diyon.top/map Trans-Friendly Pharmacies Map]&#039;&#039;&#039; for any pharmacies near you (this goes for both Transfem and Transmasc HRT). &lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--T:75--&amp;gt;&lt;br /&gt;
There is no minimum or maximum legal age for someone to start HRT. &lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--T:76--&amp;gt;&lt;br /&gt;
It is not legally mandatory for someone to have a diagnosis by a psychiatrist in order to medically transition.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--T:77--&amp;gt;&lt;br /&gt;
There is no legally mandatory time restriction for a psychiatrist to monitor you before diagnosing you.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--T:78--&amp;gt;&lt;br /&gt;
You don&#039;t legally need to be on HRT in order to be exempt from the [[army]], change your [[Legal|legal sex]], or to have a [[surgery]].&lt;br /&gt;
&lt;br /&gt;
== Other resources == &amp;lt;!--T:79--&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--T:80--&amp;gt;&lt;br /&gt;
* Simulator: https://www.estrannai.se/&lt;br /&gt;
* https://transfemscience.org/ (note, the authors of this site disagree with a lot of what they are saying, regardless, it is still interesting)&lt;br /&gt;
** Introduction to Hormone Therapy for Transfeminine People: https://transfemscience.org/articles/transfem-intro/&lt;br /&gt;
** Older simulator: https://transfemscience.org/misc/injectable-e2-simulator/&lt;br /&gt;
** Dosage calculator: https://transfemscience.org/misc/injectable-dose-vol-conc-conv/&lt;br /&gt;
* https://diyhrt.wiki/ (alt link: https://anarch.cc/transfeminine-diy-hrt-the-ultimate-guide-2/)&lt;br /&gt;
* https://hrtcafe.net/&lt;br /&gt;
* https://hrt.coffee/&lt;br /&gt;
* https://transharmreduction.org/ - useful for checking potency and quality of diy products.&lt;br /&gt;
* https://www.reddit.com/r/TransDIY/&lt;br /&gt;
* https://www.reddit.com/r/TransfemScience/&lt;br /&gt;
* https://crimethinc.com/2022/12/15/producing-transdermal-estrogen-a-do-it-yourself-guide (alt link: https://anarch.cc/producing-transdermal-estrogen-a-do-it-yourself-guide/, as above)&lt;br /&gt;
&lt;br /&gt;
==== Questionable resources ====&lt;br /&gt;
&lt;br /&gt;
* https://hrt.cat/ - info for making your own (you will probably not need it - version 1.0: https://hrtcafe.net/hrtcat/)&lt;br /&gt;
* https://groups.io/g/MTFHRT/wiki/29602 - Lena&#039;s guide (alt link: https://anarch.cc/mtf-hrt-ultimate-diy/)&lt;br /&gt;
* https://archive.ph/uQb8g - Noire Labs (alt link: https://anarch.cc/making-your-own-injections/, as above)&lt;br /&gt;
&lt;br /&gt;
==== Very questionable resources ====&lt;br /&gt;
&lt;br /&gt;
* https://archive.ph/cpy7k (alt link: https://anarch.cc/homebrewing-hormones-mtf-guide/, as above) - &#039;&#039;&#039;Potentially outdated.&#039;&#039;&#039;&lt;br /&gt;
&amp;lt;/translate&amp;gt;&lt;/div&gt;</summary>
		<author><name>Goblinmoder</name></author>
	</entry>
	<entry>
		<id>https://wiki.diyon.top/index.php?title=HRT&amp;diff=1010</id>
		<title>HRT</title>
		<link rel="alternate" type="text/html" href="https://wiki.diyon.top/index.php?title=HRT&amp;diff=1010"/>
		<updated>2025-05-03T00:04:03Z</updated>

		<summary type="html">&lt;p&gt;Goblinmoder: added questionable resources&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{#seo:&lt;br /&gt;
|title_mode=replace&lt;br /&gt;
|title=HRT&lt;br /&gt;
|description=We are open to discussion and actively on-going changes in formatting and contents of this Page and Website (in general). The e-mail address to refer to is fox@diyon.top&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
&amp;lt;languages/&amp;gt;&lt;br /&gt;
&amp;lt;translate&amp;gt;&lt;br /&gt;
&amp;lt;!--T:41--&amp;gt;&lt;br /&gt;
After around a month on HRT some of your ranges in your [[Blood Testing|blood test]] should be within desired ranges.&lt;br /&gt;
&lt;br /&gt;
== Disclaimers ==&lt;br /&gt;
 To clarify on &#039;&#039;&#039;dosages&#039;&#039;&#039;, the values mentioned below are rather speculative and most are based on &#039;&#039;&#039;personal experiences&#039;&#039;&#039; or &#039;&#039;&#039;(diy)hrt pages/websites/papers&#039;&#039;&#039;. Therefore it is encouraged to do [[Blood Testing|blood tests]] and if possible, check with an [[Doctors#Ενδοκρινολόγοι|endocrinologist]] (we also suggest [[Doctors]] that can help with such cases), especially if you have any specific &#039;&#039;&#039;health conditions&#039;&#039;&#039;. &lt;br /&gt;
&#039;&#039;&#039;Pricemaps&#039;&#039;&#039; are there to evaluate prices through &#039;&#039;&#039;[https://galinos.gr galinos.gr]&#039;&#039;&#039; (in case something is outdated, look for the green line that says &amp;quot;Λιανική&amp;quot;)&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Questionable resources&#039;&#039;&#039; are to be taken with a grain of salt on every aspect of their contents.&lt;br /&gt;
&lt;br /&gt;
We are open to discussion and actively on-going changes in formatting and contents of this Page and Website (in general). The e-mail address to refer to is &#039;&#039;&#039;fox@diyon.top&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
== Blood Levels ==&lt;br /&gt;
&lt;br /&gt;
==== Refer to the [[Blood Testing]] page. ====&lt;br /&gt;
== Transfem ==&lt;br /&gt;
Taking Puberty Blockers ([[HRT#Antiandrogens and GNRH Agonists|GNRH Agonists]], e.g: Arvekap) or any Anti Androgen (e.g: Aldactone, Androcur) &#039;&#039;&#039;without [[HRT#Estrogens|Estrogens]]&#039;&#039;&#039; is generally discouraged even during youth transitioning (This is &#039;&#039;&#039;non-definitive&#039;&#039;&#039; for Enby folks)&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--T:44--&amp;gt;&lt;br /&gt;
=== Monotherapy ===&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|+&lt;br /&gt;
!Type&lt;br /&gt;
!Commercial Names&lt;br /&gt;
!Dosage&lt;br /&gt;
!Notes&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
====== Sublingual (E Valerate or Hemihydrate) ======&lt;br /&gt;
|Cyclacur (EV), Estrofem (EH, imported), Trisequens (12 pills 2mg EH, 10 pills norgestrel, 6 pills 1mg EH)&lt;br /&gt;
|&amp;gt;=8-12mg/day&lt;br /&gt;
|While it is possible, even with a smaller dosage (&#039;&#039;&#039;at least 6mg&#039;&#039;&#039;), it&#039;s not that common. Ideally, use your blood tests to &#039;&#039;&#039;minmax&#039;&#039;&#039; your doses.&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
====== Injectable Estradiol Valerate (EV) ======&lt;br /&gt;
|Neofollin (can be ordered from pharmacies near Czechia, or aptekaapo.com &#039;&#039;&#039;but they’re not on hrtcafe&#039;&#039;&#039;, not tested in Greece), Delestrogen (Vial, unavailable), Progynon Depot (Ampules, unavailable), [[File:What-excuse-me.gif|thumb|[[HRT#Other resources|my honest reaction]]]]&lt;br /&gt;
|5-7mg/5 days&lt;br /&gt;
|&lt;br /&gt;
* Due to the large spikes in levels combined with the short [https://en.wikipedia.org/wiki/Biological_half-life half-life] it is not recommended for dosages to surpass the 5 day mark because it may cause menopause symptoms.&lt;br /&gt;
* Branded versions of this medication are not available in greece.&lt;br /&gt;
* The ampules contain a certain mg and do not allow for larger dosages, they are not re-usable. It is recommended to use a vial with a cap.&lt;br /&gt;
* Look for &#039;&#039;&#039;[https://arc-w.nihr.ac.uk/Wordpress/wp-content/uploads/2015/07/Low-dead-space-syringes.png syringe dead space]([[HRT#:~:text=* = It has been mentioned that syringes account for dead space, although that is not 100% certain.|*]])&#039;&#039;&#039;, e.g. if there&#039;s &#039;&#039;&#039;0.05mL&#039;&#039;&#039; remaining after injecting, draw &#039;&#039;&#039;+0.05mL&#039;&#039;&#039; from the vial.&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
====== Injectable Estradiol Cypionate (EC) ======&lt;br /&gt;
|[[File:What-excuse-me.gif|thumb|[[HRT#Other resources|my honest reaction]]]]Depo-Estradiol (US only, unavailable),&lt;br /&gt;
|5-7mg/7 days&lt;br /&gt;
|&lt;br /&gt;
* Look for &#039;&#039;&#039;[https://arc-w.nihr.ac.uk/Wordpress/wp-content/uploads/2015/07/Low-dead-space-syringes.png syringe dead space]([[HRT#:~:text=* = It has been mentioned that syringes account for dead space, although that is not 100% certain.|*]])&#039;&#039;&#039;, e.g. if there&#039;s &#039;&#039;&#039;0.05mL&#039;&#039;&#039; remaining after injecting, draw &#039;&#039;&#039;+0.05mL&#039;&#039;&#039; from the vial.&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
====== Injectable Estradiol Enanthate (EEn) ======&lt;br /&gt;
|[[File:What-excuse-me.gif|thumb|[[HRT#Other resources|my honest reaction]]]]&lt;br /&gt;
|4-7mg/7 days&lt;br /&gt;
7-10mg/10 days (7.2mg usually, depending on the vial, it&#039;s optimal because drawing cents of mL are hard to get right)&lt;br /&gt;
|&lt;br /&gt;
* You can multiply the weekly dosage by 2, which lasts up to 14 days (as much as the [https://en.wikipedia.org/wiki/Biological_half-life half-life] of Enanthate)&lt;br /&gt;
* Look for &#039;&#039;&#039;[https://arc-w.nihr.ac.uk/Wordpress/wp-content/uploads/2015/07/Low-dead-space-syringes.png syringe dead space]([[HRT#:~:text=* = It has been mentioned that syringes account for dead space, although that is not 100% certain.|*]])&#039;&#039;&#039;, e.g. if there&#039;s &#039;&#039;&#039;0.05mL&#039;&#039;&#039; remaining after injecting, draw &#039;&#039;&#039;+0.05mL&#039;&#039;&#039; from the vial.&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
====== Injectable Estradiol Undecylate (EU/EUn) ======&lt;br /&gt;
|[[File:What-excuse-me.gif|thumb|[[HRT#Other resources|my honest reaction]]]]&lt;br /&gt;
|There&#039;s not enough information on dosage. The frequency of those may differ according to the oil used (MCT/Castor oil). Indicative Dosages:&lt;br /&gt;
15-20mg/2 weeks&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--T:45--&amp;gt;&lt;br /&gt;
20-40mg+/4 weeks&lt;br /&gt;
|&lt;br /&gt;
* There&#039;s not enough information on its [[wikipedia:Biological_half-life|half-life]], a higher dosage can be administered that can last up to 20-30 days.&lt;br /&gt;
* [[wikipedia:Intramuscular_injection|IM injections]] last longer so they give better levels during the same period of time per injection.&lt;br /&gt;
* Needs at least 90 days to reach stable levels.&lt;br /&gt;
* Look for &#039;&#039;&#039;[https://arc-w.nihr.ac.uk/Wordpress/wp-content/uploads/2015/07/Low-dead-space-syringes.png syringe dead space]([[HRT#:~:text=* = It has been mentioned that syringes account for dead space, although that is not 100% certain.|*]])&#039;&#039;&#039;, e.g. if there&#039;s &#039;&#039;&#039;0.05mL&#039;&#039;&#039; remaining after injecting, draw &#039;&#039;&#039;+0.05mL&#039;&#039;&#039; from the vial.&lt;br /&gt;
|}&lt;br /&gt;
&#039;&#039;&#039;*&#039;&#039;&#039; = It has been mentioned that syringes account for dead space, although that is not 100% certain.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--T:46--&amp;gt;&lt;br /&gt;
=== Sublingual vs Oral ===&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|+&lt;br /&gt;
!Method&lt;br /&gt;
!Substance&lt;br /&gt;
!Dosage&lt;br /&gt;
!Observations&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
====== Oral ======&lt;br /&gt;
|Estradiol Valerate in pill form (e.g. Cyclacur)&lt;br /&gt;
|&amp;gt;=6mg/day&lt;br /&gt;
(max 10mg as per Dr. Powers)&lt;br /&gt;
|It is recommended that doses are taken separately on set time intervals during the day for more stable estradiol levels, e.g. for a 6mg dose you would take 2mg per 8 hours. By the oral route the active substance is metabolized by the liver and part of it is converted to estrone (E1), which has much less feminizing effects than estradiol (E2) so the desired effect is essentially prevented. The bioavailability of estradiol by oral administration is very low (~5%) and usually lower levels of E2 are observed in blood tests than other methods of administration. [anecdotal apo to server, wikipedia kai tttt - correct/expand?] It is also necessary to administer anti-androgens to reduce testosterone levels to the female range.&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
====== Sublingual ======&lt;br /&gt;
|Estradiol Valerate in pill form (e.g. Cyclacur)&lt;br /&gt;
|&amp;gt;=4mg/day&lt;br /&gt;
|It is recommended that doses are taken separately on set time intervals during the day for more stable estradiol levels, e.g. for a 6mg dose you would take 2mg per 8 hours. The sublingual way bypasses estradiol metabolism by the liver and has about 5 times the estradiol bioavailability of the oral way. This way, estradiol levels have greater range than orally (higher peak lower bottom), in oral they remain higher for ~12 hours while sublingually they go away after 3-4 hours (This however is from a study from 2005 on cis women)&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== Vial info === &amp;lt;!--T:47--&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--T:48--&amp;gt;&lt;br /&gt;
=== Medications ===&lt;br /&gt;
For cyclacur: &#039;&#039;&#039;take only the white pills, the brown pills are Norgestrel which have 0.5mg of estradiol but has an androgenic effect and may also cause other side effects&#039;&#039;&#039;. &lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--T:49--&amp;gt;&lt;br /&gt;
==== Estrogens ====&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|+&lt;br /&gt;
!Brand Name(s)&lt;br /&gt;
!Substance&lt;br /&gt;
!Form&lt;br /&gt;
!Method of Administration&lt;br /&gt;
!Cost&lt;br /&gt;
!Cost with Healthcare Coverage&lt;br /&gt;
!Dosage&lt;br /&gt;
!Safety&lt;br /&gt;
!Notes&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
====== [https://www.galinos.gr/web/drugs/main/drugs/Cyclacur Cyclacur] ======&lt;br /&gt;
|Estradiol Valerate (EV)&lt;br /&gt;
|Pill tablet&lt;br /&gt;
|Orally or sublingually&lt;br /&gt;
|2.01€ for 11 pills ([https://www.galinos.gr/service/drugs/drawPackagePrice/1198 Pricemap])&lt;br /&gt;
~130.8-328.€/year&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--T:50--&amp;gt;&lt;br /&gt;
~10.9-27.4€/month&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--T:51--&amp;gt;&lt;br /&gt;
Prices are indicative, the cost depends on the dosage.&lt;br /&gt;
| -&lt;br /&gt;
|6mg-10mg/day (according to Dr. Will Powers)&lt;br /&gt;
4mg-8mg/day (according to Greek Endocrinologists)&lt;br /&gt;
|A&lt;br /&gt;
|&lt;br /&gt;
* &#039;&#039;&#039;Only white pills are used.&#039;&#039;&#039; Brown pills do have a bit of estradiol but arent taken due to other side effects.&lt;br /&gt;
* You need antiandrogens or GNRH antagonists if you haven&#039;t had an orchiectomy.&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
====== Progynova ======&lt;br /&gt;
|Estradiol Valerate (EV)&lt;br /&gt;
|Pill tablet&lt;br /&gt;
|Orally or sublingually&lt;br /&gt;
|~22€ for 72 pills of 1 mg or ~32€ for 72 pills of 2 mg&lt;br /&gt;
Prices are indicative, the cost depends on the dosage.&lt;br /&gt;
| -&lt;br /&gt;
|4mg-8mg/day&lt;br /&gt;
|A&lt;br /&gt;
|&lt;br /&gt;
* There is no reason to use it in Greece since Cyclacur is available in Greek pharmacies.&lt;br /&gt;
* You need antiandrogens or GNRH antagonists if you haven&#039;t had an orchiectomy.&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
====== Estrofem, Estrifam (german brand name), [https://www.galinos.gr/web/drugs/main/drugs/trisequens Trisequens] ======&lt;br /&gt;
|Estradiol Hemihydrate&lt;br /&gt;
|Pill tablet&lt;br /&gt;
|Orally or sublingually&lt;br /&gt;
|~30€ for 28 pills of 2 mg without shipping costs.&lt;br /&gt;
Prices are indicative, the cost depends on the dosage.&lt;br /&gt;
| -&lt;br /&gt;
|4mg-8mg/day&lt;br /&gt;
|A&lt;br /&gt;
|&lt;br /&gt;
* There is no reason to use it in Greece since Cyclacur is available in Greek pharmacies.&lt;br /&gt;
* You need antiandrogens or GNRH antagonists if you haven&#039;t had an orchiectomy.&lt;br /&gt;
* Trisequens, while being available in Greece, is odd to take with 12 pills being 2mg EH, 10 norgestrel, and 6 1mg EH, for a much higher price than [[HRT#Cyclacur|Cyclacur]].&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
====== [https://www.galinos.gr/web/drugs/main/drugs/Dermestril Dermestril] ======&lt;br /&gt;
|Estradiol Hemihydrate&lt;br /&gt;
|Patch&lt;br /&gt;
|Trans-dermally&lt;br /&gt;
|44€ for 24 patches of 100mcg&lt;br /&gt;
~15€ for 8 patches of 50mcg&lt;br /&gt;
| -&lt;br /&gt;
|50mcg/3.5 days (when starting off)&lt;br /&gt;
100mcg/3.5 days (whenever your e2 levels are stable)&lt;br /&gt;
|A&lt;br /&gt;
|&lt;br /&gt;
* &#039;&#039;&#039;If you have no idea how to apply patches watch this:&#039;&#039;&#039; [https://youtu.be/tXGIYWPqdpI?si=O0dlE19pq0ic0PZP Demonstrational Video]&lt;br /&gt;
* You need antiandrogens or GNRH antagonists if you haven&#039;t had an orchiectomy.&lt;br /&gt;
* 100mcg patches can be cut into 2 if needed.&lt;br /&gt;
|-&lt;br /&gt;
|Neofollin (can be ordered from pharmacies near Czechia, not tested in Greece), Delestrogen (Vial, unavailable), Progynon Depot (Ampules, unavailable)&lt;br /&gt;
|&lt;br /&gt;
====== Estradiol Valerate (EV) ======&lt;br /&gt;
|Injectable&lt;br /&gt;
|Subcutaneous or Intramuscular&lt;br /&gt;
|80€/year (including shipping costs, syringes and alcohol swabs)&lt;br /&gt;
| -&lt;br /&gt;
|5-7mg/5 days (monotherapy)&lt;br /&gt;
4-5mg/7 days (only in combination with an antiandrogen or GNRH agonist)&lt;br /&gt;
|A+&lt;br /&gt;
|&lt;br /&gt;
* It can be used without antiandrogens or GNRH agonists in ([[HRT#Μονοθεραπεία|Monotherapy]]) by increasing the dosage.&lt;br /&gt;
|-&lt;br /&gt;
|Depo-Estradiol (US only, unavailable)&lt;br /&gt;
|&lt;br /&gt;
====== Estradiol Cypionate (EC) ======&lt;br /&gt;
|Injectable&lt;br /&gt;
|Subcutaneous or Intramuscular&lt;br /&gt;
|~70-80€/year (not including shipping costs, syringes and alcohol swabs)&lt;br /&gt;
| -&lt;br /&gt;
|5-7mg/7 days&lt;br /&gt;
(&#039;&#039;&#039;mono dose&#039;&#039;&#039;)&lt;br /&gt;
? (TBD/&#039;&#039;&#039;dose with AA&#039;&#039;&#039;)&lt;br /&gt;
|?&lt;br /&gt;
|&lt;br /&gt;
* It can be used without antiandrogens or GNRH agonists in ([[HRT#Μονοθεραπεία|Monotherapy]])&lt;br /&gt;
|-&lt;br /&gt;
| -&lt;br /&gt;
|&lt;br /&gt;
====== Estradiol Enanthate (EEn) ======&lt;br /&gt;
|Injectable&lt;br /&gt;
|Subcutaneous or Intramuscular&lt;br /&gt;
|80€/year (including shipping costs, syringes and alcohol swabs)&lt;br /&gt;
| -&lt;br /&gt;
|2.5mg-7mg/7 days&lt;br /&gt;
(usual dosage: 4mg/7days)&lt;br /&gt;
|A+&lt;br /&gt;
|&lt;br /&gt;
* It can be used without antiandrogens or GNRH agonists in ([[HRT#Μονοθεραπεία|Monotherapy]]) by increasing the dosage.&lt;br /&gt;
|-&lt;br /&gt;
| -&lt;br /&gt;
|&lt;br /&gt;
====== Estradiol Undecylate (EU, EUn) ======&lt;br /&gt;
|Injectable&lt;br /&gt;
|Subcutaneous or Intramuscular&lt;br /&gt;
|130€/year (including shipping costs, syringes and alcohol swabs)&lt;br /&gt;
| -&lt;br /&gt;
|15-20mg/2 weeks&lt;br /&gt;
20-40mg+/4 weeks&lt;br /&gt;
|A+&lt;br /&gt;
|&lt;br /&gt;
* There&#039;s not much info on dosages, usually seen in [[HRT#Μονοθεραπεία|monotherapy]].&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--T:52--&amp;gt;&lt;br /&gt;
==== Anti-Androgens and GNRH Agonists ====&lt;br /&gt;
These should &#039;&#039;&#039;not&#039;&#039;&#039; be taken sublingually.&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|+&lt;br /&gt;
!Brand Name(s)&lt;br /&gt;
!Substance&lt;br /&gt;
!Cost&lt;br /&gt;
!Cost with Healthcare Coverage&lt;br /&gt;
!Dosage&lt;br /&gt;
!Safety&lt;br /&gt;
!Form&lt;br /&gt;
!Type&lt;br /&gt;
!Notes&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
====== [https://www.galinos.gr/web/drugs/main/drugs/Androcur Androcur] ======&lt;br /&gt;
|Cyproterone Acetate (CPA) is also referred to as cypro&lt;br /&gt;
|21.58€/50mg * 50 pills &lt;br /&gt;
19.7-31.5€/year&lt;br /&gt;
&lt;br /&gt;
([https://www.galinos.gr/service/drugs/drawPackagePrice/8023 Pricemap])&lt;br /&gt;
|?&lt;br /&gt;
|12.5mg/2 days- 10mg/day&lt;br /&gt;
&#039;&#039;&#039;Larger doses shouldn&#039;t be administered&#039;&#039;&#039;&lt;br /&gt;
|C&lt;br /&gt;
|Pill tablet&lt;br /&gt;
|Progestin (Steroidal antiandrogen)&lt;br /&gt;
Stops testosterone production.&lt;br /&gt;
|The max recommended dosage is 10mg/day . Monitoring of prolactin levels is recommended through [[Blood Testing#MTF|blood testing]].&lt;br /&gt;
&#039;&#039;&#039;Many doctors give overdoses of 50 mg/day. Cyproterone is a strong anti-androgen and testosterone suppression is possible with lower doses. A change of doctor is recommended.&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--T:53--&amp;gt;&lt;br /&gt;
[[wikipedia:Side_effects_of_cyproterone_acetate|Side Effects]]:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--T:54--&amp;gt;&lt;br /&gt;
* Benign brain tumor.&lt;br /&gt;
* In rare cases, liver damage.&lt;br /&gt;
* Vitamin B12 deficiency.&lt;br /&gt;
* Breast cancer.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--T:55--&amp;gt;&lt;br /&gt;
Testosterone suppression can be achieved with even lower doses, however a 50 mg pill is difficult to cut into pieces of less than 12.5 mg even with a pill cutter.&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
====== [https://www.galinos.gr/web/drugs/main/drugs/Bicalut Bicalut] ======&lt;br /&gt;
|Bicalutamide (aka: bica)&lt;br /&gt;
|29.10 euro/30 pills&lt;br /&gt;
29.10 euro/month&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--T:56--&amp;gt;&lt;br /&gt;
~350 euro/year&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
([https://www.galinos.gr/service/drugs/drawPackagePrice/11120 Pricemap])&lt;br /&gt;
|6.77 euro/month (28 tabs)&lt;br /&gt;
~95 euro/year&lt;br /&gt;
|50mg/day&lt;br /&gt;
|A-&lt;br /&gt;
|Pill/Tablet&lt;br /&gt;
|Androgen receptor antagonist (Nonsteroidal antiandrogen)&lt;br /&gt;
Blocks absorption of all androgens (including testosterone)&lt;br /&gt;
|&#039;&#039;&#039;Serious negative interactions can be noted if combined with other anti-androgens and GNRH agonists (except progesterone)&#039;&#039;&#039;&lt;br /&gt;
&#039;&#039;&#039;Very rare&#039;&#039;&#039; chance for recoverable and non-fatal liver damage for people with a certain rare mutation.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--T:57--&amp;gt;&lt;br /&gt;
Most of the effects listen in the instruction manual are scaremongering. (it lists a very high chance of liver issues when they are actually very rare, and also lists photosensitivity, which if it even occurs at all, it should be quite rare. We are aware of nobody who had a negative interction between alexandrite laser hair removal and bicalutamide).&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--T:58--&amp;gt;&lt;br /&gt;
Note that bicalutamide, unlike most other anti-androgens, &#039;&#039;&#039;does not&#039;&#039;&#039; lower testosterone levels, in fact they usually rise as the body responds to testosterone receptors being inhibited. Do not be alarmed if you notice an increase of testosterone in your blood tests.&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
====== [https://www.galinos.gr/web/drugs/main/drugs/Arvekap Arvekap] ======&lt;br /&gt;
|Triptorelin&lt;br /&gt;
| -&lt;br /&gt;
|~200/year?&lt;br /&gt;
|&lt;br /&gt;
|A?&lt;br /&gt;
|Injection&lt;br /&gt;
|GNRH Agonist&lt;br /&gt;
(indirectly) Stops testosterone AND estrogen production&lt;br /&gt;
|Also a puberty blocker&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
====== [https://www.galinos.gr/web/drugs/main/drugs/aldactone Aldactone] ======&lt;br /&gt;
|Spironolactone&lt;br /&gt;
|5.19 euro/20 tabs (100mg)&lt;br /&gt;
([https://www.galinos.gr/service/drugs/drawPackagePrice/148 Pricemap])&lt;br /&gt;
|?&lt;br /&gt;
|50mg-200mg/day&lt;br /&gt;
|B-C&lt;br /&gt;
|Tablet&lt;br /&gt;
|Antimineralocorticoid/MCRA&lt;br /&gt;
|Very inefficient, makes you pee, it&#039;s a medication for blood pressure&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
|Flutamide&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|F---&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|Only in this table as an example to avoid&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
==== Miscellaneous/Progesterone ====&lt;br /&gt;
Progesterone falls under this category, as it is not quite the same as other Anti-Androgens, the mention of Progesterone in this title is necessary in order to reduce confusion and questions such as &amp;quot;Where is progesterone?&amp;quot; and &amp;quot;Did you remove prog from the page?&amp;quot;.&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
!Brand Name(s)&lt;br /&gt;
!Substance&lt;br /&gt;
!Cost&lt;br /&gt;
!Cost with Healthcare Coverage&lt;br /&gt;
!Dosage&lt;br /&gt;
!Safety&lt;br /&gt;
!Form&lt;br /&gt;
!Type&lt;br /&gt;
!Notes&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
====== [https://www.galinos.gr/web/drugs/main/drugs/utrogestran Utrogestan] ======&lt;br /&gt;
|Progesterone (P4) it is also referred to as prog&lt;br /&gt;
|5.83 euro/30 caps (100mg)&lt;br /&gt;
8.08 euro/15 caps (200mg)&lt;br /&gt;
([https://www.galinos.gr/service/drugs/drawPackagePrice/7619 Pricemap])&lt;br /&gt;
|?&lt;br /&gt;
|100mg or 200mg daily (rectal administration, [[Blood Testing|blood tests]] are recommended)&lt;br /&gt;
|A&lt;br /&gt;
|Capsule&lt;br /&gt;
|Stops testosterone production.&lt;br /&gt;
|There is not much confirmed information about progesterone.&lt;br /&gt;
It can also be taken orally but the absorption rate is very low.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--T:59--&amp;gt;&lt;br /&gt;
Anecdotal claims:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--T:60--&amp;gt;&lt;br /&gt;
* Helps with breast development and with feminization in general.&lt;br /&gt;
* Can be given after one year of estradiol.&lt;br /&gt;
* Suggested to be given after the individual reaches Tanner stage 3.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--T:61--&amp;gt;&lt;br /&gt;
It can have androgenic or other (non-serious, recoverable) effects for some individuals - in particular it can be converted to DHT by the body even in combination with dutasteride or bicalutamide.&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--T:62--&amp;gt;&lt;br /&gt;
==== Other anti-androgens (optional) ====&lt;br /&gt;
These are used to block conversion of other androgens to DHT (which causes hair loss (hair) and body hair growth). They aren&#039;t general use Anti-Androgens.&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
!Brand Name(s)&lt;br /&gt;
!Substance&lt;br /&gt;
!Cost&lt;br /&gt;
!Cost with Healthcare Coverage&lt;br /&gt;
!Dosage&lt;br /&gt;
!Safety&lt;br /&gt;
!Form&lt;br /&gt;
!Type&lt;br /&gt;
!Notes&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
====== [https://www.galinos.gr/web/drugs/main/packages/26485 Dastidem], [https://www.galinos.gr/web/drugs/main/packages/25557 Rafuster], [https://www.galinos.gr/web/drugs/main/packages/25893 Duaride], [https://www.galinos.gr/web/drugs/main/packages/25894 Dustezor] ======&lt;br /&gt;
|Dutasteride&lt;br /&gt;
|7.90€/30 caps&lt;br /&gt;
|~6€/30 caps&lt;br /&gt;
|0.5mg/day (?/TBD)&lt;br /&gt;
|A-&lt;br /&gt;
|Capsule&lt;br /&gt;
| -&lt;br /&gt;
|High effectiveness.&lt;br /&gt;
|-&lt;br /&gt;
| -&lt;br /&gt;
|Finasteride&lt;br /&gt;
| -&lt;br /&gt;
| -&lt;br /&gt;
| -&lt;br /&gt;
|F&lt;br /&gt;
| -&lt;br /&gt;
| -&lt;br /&gt;
|Effectiveness is none to medium (Just take Dutasteride - will not stop conversion of Progesterone to DHT)&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== Transmasc ==&lt;br /&gt;
&lt;br /&gt;
=== Medications ===&lt;br /&gt;
&lt;br /&gt;
==== Testosterone ====&lt;br /&gt;
[https://www.galinos.gr/web/drugs/main/substances/testosterone/marketing Galinos.gr&#039;s testosterone availability page]&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|+&lt;br /&gt;
!Brand Name(s)&lt;br /&gt;
!Substance&lt;br /&gt;
!Form&lt;br /&gt;
!Method of Administration&lt;br /&gt;
!Cost&lt;br /&gt;
!Cost with Healthcare Coverage&lt;br /&gt;
!Dosage&lt;br /&gt;
!Safety&lt;br /&gt;
!Notes&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
====== [https://www.galinos.gr/web/drugs/main/packages/4929 Norma] ======&lt;br /&gt;
|Testosterone Enanthate&lt;br /&gt;
|Injection/Ampule&lt;br /&gt;
|Intramuscular&lt;br /&gt;
|17.67€/ampule &lt;br /&gt;
([https://www.galinos.gr/service/drugs/drawPackagePrice/4929 Pricemap])&lt;br /&gt;
|?&lt;br /&gt;
|?&lt;br /&gt;
|?&lt;br /&gt;
| -&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
====== [https://www.galinos.gr/web/drugs/main/packages/21943 Nebido] ======&lt;br /&gt;
|Testosterone Undecanoate&lt;br /&gt;
|Injection/Vial&lt;br /&gt;
|Intramuscular&lt;br /&gt;
|100.37€/vial&lt;br /&gt;
([https://www.galinos.gr/service/drugs/drawPackagePrice/21943 Pricemap])&lt;br /&gt;
|~32.52€/vial (you pay 25%)&lt;br /&gt;
|1 vial (1000mg/4mL)/10-20 weeks&lt;br /&gt;
|A&lt;br /&gt;
|As a starting dose &#039;&#039;&#039;after a year of HRT&#039;&#039;&#039;, you could also consider:&lt;br /&gt;
&lt;br /&gt;
* Instead of injecting one vial per 20 weeks, you do half every 10-12 weeks, however nothing could be sourced to support this. Though logically it could make sense as a practice.&lt;br /&gt;
* Do a test at 6 weeks after starting, if T is too high don&#039;t take the 2nd dose, if it&#039;s not you can take the 2nd and then test 2 weeks before every other dose.&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
====== [https://www.galinos.gr/web/drugs/main/packages/15739 Tostran] ======&lt;br /&gt;
|Testogel&lt;br /&gt;
|Gel&lt;br /&gt;
|Trans-dermally&lt;br /&gt;
|&#039;&#039;&#039;Starting dose&#039;&#039;&#039;&lt;br /&gt;
&amp;lt;!--T:82--&amp;gt;&lt;br /&gt;
* 35.54€/2 months&lt;br /&gt;
* 213.24€/year&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--T:83--&amp;gt;&lt;br /&gt;
&#039;&#039;&#039;30 mg dose&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--T:84--&amp;gt;&lt;br /&gt;
* 35.54€/40 days&lt;br /&gt;
* ~324.30€/year&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--T:85--&amp;gt;&lt;br /&gt;
&#039;&#039;&#039;40 mg dose&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--T:73--&amp;gt;&lt;br /&gt;
* 35.54€/30 days&lt;br /&gt;
* 426.48€/year&lt;br /&gt;
([https://www.galinos.gr/service/drugs/drawPackagePrice/15739 Pricemap])&lt;br /&gt;
|35.54€ -&amp;gt; 8.89€&lt;br /&gt;
|20mg/day (starting dose)&lt;br /&gt;
30-40mg/day&lt;br /&gt;
|A&lt;br /&gt;
|&lt;br /&gt;
* 1 pump of Tostran (&#039;&#039;&#039;0.5g&#039;&#039;&#039;) delivers 10 mg of T.&lt;br /&gt;
* 2 pumps of Tostran are 1 pump of Testogel (20.25mg of T)&lt;br /&gt;
* Can cause skin reactions.&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
==== GNRH Agonists ====&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
!Brand Name(s)&lt;br /&gt;
!Substance&lt;br /&gt;
! Cost&lt;br /&gt;
!Cost with Healthcare Coverage&lt;br /&gt;
!Dosage&lt;br /&gt;
!Safety&lt;br /&gt;
!Form&lt;br /&gt;
!Type&lt;br /&gt;
!Notes&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
====== [https://www.galinos.gr/web/drugs/main/drugs/Arvekap Arvekap] ======&lt;br /&gt;
|Triptorelin&lt;br /&gt;
| -&lt;br /&gt;
|~200/year?&lt;br /&gt;
|&lt;br /&gt;
|A?&lt;br /&gt;
|Injection&lt;br /&gt;
|GNRH Agonist&lt;br /&gt;
(indirectly) Stops testosterone AND estrogen production&lt;br /&gt;
|Also a puberty blocker&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
==== Other anti-androgens (optional) ====&lt;br /&gt;
These are used to block conversion of other androgens to DHT (which causes hair loss (hair) and body hair growth). They aren&#039;t general use Anti-Androgens.&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
!Brand Name(s)&lt;br /&gt;
!Substance&lt;br /&gt;
!Cost&lt;br /&gt;
!Cost with Healthcare Coverage&lt;br /&gt;
!Dosage&lt;br /&gt;
!Safety&lt;br /&gt;
!Form&lt;br /&gt;
!Type&lt;br /&gt;
!Notes&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
====== [https://www.galinos.gr/web/drugs/main/packages/26485 Dastidem], [https://www.galinos.gr/web/drugs/main/packages/25557 Rafuster], [https://www.galinos.gr/web/drugs/main/packages/25893 Duaride], [https://www.galinos.gr/web/drugs/main/packages/25894 Dustezor] ======&lt;br /&gt;
|Dutasteride&lt;br /&gt;
|7.90€/30 caps&lt;br /&gt;
|~6€/30 caps&lt;br /&gt;
|0.5mg/day (?/TBD)&lt;br /&gt;
|A-&lt;br /&gt;
|Capsule&lt;br /&gt;
| -&lt;br /&gt;
|High effectiveness. &lt;br /&gt;
Not to be confused with proper Anti-Androgens.&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== Nonbinary hrt *under construction* ==&lt;br /&gt;
&lt;br /&gt;
=== !!! disclaimer-warning about potential issues !!! ===&lt;br /&gt;
&lt;br /&gt;
=== General outline of nb hrt for amab and afab ===&lt;br /&gt;
&lt;br /&gt;
=== Medications ===&lt;br /&gt;
&lt;br /&gt;
==== Selective Estrogen Receptor Modulators (SERMs) ====&lt;br /&gt;
&lt;br /&gt;
* Tamoxifen is a selective estrogen receptor modulator (SERM). In some tissues such as the brain it activates estrogen receptors, which may help reduce dysphoria. In breast tissue it antagonizes estrogen receptors, preventing the formation of breast tissue if desired. There is some evidence that Tamoxifen inhibits memory, though the effects of taking it alongside regular estrogen are undocumented. Tamoxifen can cause cognitive dysfunction and increase your risk of stroke and pulmonary embolism. Tamoxifen may also be taken alongside 17β-estradiol, more research is needed. In this combination, estradiol should still have its effects (combating dysphoria in the brain, redistribution of body fat, smoother skin etc.) while tamoxifen prevents the growth of breast tissue.&lt;br /&gt;
* Raloxifene is another SERM. It is an estrogen receptor antagonist in breast tissue. It is an estrogen receptor agonist in bone and can be used to prevent osteoporosis. Raloxifene has been shown to reduce ERα expression in breast tissue in premenopausal women. As the synthesis of progesterone receptors (PR) is estrogen-regulated, raloxifene also decreases the expression of PR. Additionally, it was shown to decrease the presence of Ki-67, a biomarker for cell proliferation, in breast tissue of premenopausal women. As a result, it can be used to treat gynecomastia, and has been shown effective in reducing breast size in those with the condition. Raloxifene may promote feminine fat distribution: in a study on 56-66 year old postmenopausal women, there was an increase in fat in the legs and buttocks and a decrease in fat in the abdomen and trunk after 1 year on 60 mg/day raloxifene. It is not yet known how pronounced this effect is, as there have been no comparisons of body fat distribution between raloxifene and estradiol. Raloxifene may increase the risk of stroke and pulmonary embolism.&lt;br /&gt;
* Afimoxifene is a topical SERM and the primary metabolite of tamoxifen.&lt;br /&gt;
&lt;br /&gt;
==== Anti-androgens ====&lt;br /&gt;
&lt;br /&gt;
==== Bicalutamide ====&lt;br /&gt;
Bicalutamide is an  anti-androgen which is used mainly in the treatment of prostate cancer but can also be used to treat hirsutism, or as a component of hormone therapy in feminizing HRT, among other uses. It is nonsteroidal anti-androgen and a selective/pure antagonist of the androgen receptor. It has no other hormonal activity and does not lower androgen levels. Bicalutamide crosses the blood-brain barrier and blocks the effects of testosterone and dihydrotestosterone (DHT) both in the body and in the brain. While it has been observed that bicalutamide does not cross the blood-brain barrier in rats and dogs, this was found not to be the case in humans&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
In general Ralox seems the best idea based on overall effectiveness and less severe side effects compared to other SERMs. Most people on this kind of MtNB hrt seem to be using a combination of ralox (in place of estradiol) and bica [expand this + powers e1s schizo stuff?]&lt;br /&gt;
&lt;br /&gt;
== Legal ==&lt;br /&gt;
It is legal to buy anything without a diagnosis or a prescription (off the counter - OTC), Testosterone can be hit or miss, look for any product names mentioned (that have links attached to them/are blue in colour) [[HRT#Testosterone|here]].  &lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--T:86--&amp;gt;&lt;br /&gt;
You can also check the &#039;&#039;&#039;[https://diyon.top/map Trans-Friendly Pharmacies Map]&#039;&#039;&#039; for any pharmacies near you (this goes for both Transfem and Transmasc HRT). &lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--T:75--&amp;gt;&lt;br /&gt;
There is no minimum or maximum legal age for someone to start HRT. &lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--T:76--&amp;gt;&lt;br /&gt;
It is not legally mandatory for someone to have a diagnosis by a psychiatrist in order to medically transition.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--T:77--&amp;gt;&lt;br /&gt;
There is no legally mandatory time restriction for a psychiatrist to monitor you before diagnosing you.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--T:78--&amp;gt;&lt;br /&gt;
You don&#039;t legally need to be on HRT in order to be exempt from the [[army]], change your [[Legal|legal sex]], or to have a [[surgery]].&lt;br /&gt;
&lt;br /&gt;
== Other resources == &amp;lt;!--T:79--&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--T:80--&amp;gt;&lt;br /&gt;
* Simulator: https://www.estrannai.se/&lt;br /&gt;
* https://transfemscience.org/ (note, the authors of this site disagree with a lot of what they are saying, regardless, it is still interesting)&lt;br /&gt;
** Introduction to Hormone Therapy for Transfeminine People: https://transfemscience.org/articles/transfem-intro/&lt;br /&gt;
** Older simulator: https://transfemscience.org/misc/injectable-e2-simulator/&lt;br /&gt;
** Dosage calculator: https://transfemscience.org/misc/injectable-dose-vol-conc-conv/&lt;br /&gt;
* https://diyhrt.wiki/ (alt link: https://anarch.cc/transfeminine-diy-hrt-the-ultimate-guide-2/)&lt;br /&gt;
* https://hrtcafe.net/&lt;br /&gt;
* https://hrt.coffee/&lt;br /&gt;
* https://transharmreduction.org/ - useful for checking potency and quality of diy products.&lt;br /&gt;
* https://www.reddit.com/r/TransDIY/&lt;br /&gt;
* https://www.reddit.com/r/TransfemScience/&lt;br /&gt;
* https://crimethinc.com/2022/12/15/producing-transdermal-estrogen-a-do-it-yourself-guide (alt link: https://anarch.cc/producing-transdermal-estrogen-a-do-it-yourself-guide/, as above)&lt;br /&gt;
&lt;br /&gt;
==== Questionable resources ====&lt;br /&gt;
&lt;br /&gt;
* https://hrt.cat/ - info for making your own (you will probably not need it - version 1.0: https://hrtcafe.net/hrtcat/)&lt;br /&gt;
* https://groups.io/g/MTFHRT/wiki/29602 - Lena&#039;s guide (alt link: https://anarch.cc/mtf-hrt-ultimate-diy/)&lt;br /&gt;
* https://archive.ph/uQb8g - Noire Labs (alt link: https://anarch.cc/making-your-own-injections/, as above)&lt;br /&gt;
&lt;br /&gt;
==== Very questionable resources ====&lt;br /&gt;
&lt;br /&gt;
* https://archive.ph/cpy7k (alt link: https://anarch.cc/homebrewing-hormones-mtf-guide/, as above) - &#039;&#039;&#039;Potentially outdated.&#039;&#039;&#039;&lt;br /&gt;
&amp;lt;/translate&amp;gt;&lt;/div&gt;</summary>
		<author><name>Goblinmoder</name></author>
	</entry>
	<entry>
		<id>https://wiki.diyon.top/index.php?title=Doctors&amp;diff=1009</id>
		<title>Doctors</title>
		<link rel="alternate" type="text/html" href="https://wiki.diyon.top/index.php?title=Doctors&amp;diff=1009"/>
		<updated>2025-04-26T22:36:14Z</updated>

		<summary type="html">&lt;p&gt;Goblinmoder: /* Ενδοκρινολόγοι */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{#seo:&lt;br /&gt;
|title_mode=replace&lt;br /&gt;
|title=Doctors&lt;br /&gt;
|description=List of doctors documented, most of which are from real life encounters, opinions are non-definitive.&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
== Ψυχίατροι ==&lt;br /&gt;
{| class=&amp;quot;wikitable sortable&amp;quot;&lt;br /&gt;
|+&lt;br /&gt;
!✅/🟨/🟧/❌&lt;br /&gt;
!Όνομα&lt;br /&gt;
!Περιοχή&lt;br /&gt;
!Δημόσιο/Ιδιωτικό&lt;br /&gt;
!Επικοινωνία&lt;br /&gt;
!Τιμή&lt;br /&gt;
!Περιοχή&lt;br /&gt;
!Διαδικτυακά&lt;br /&gt;
!Κριτικές&lt;br /&gt;
!Σημειώσεις&lt;br /&gt;
|-&lt;br /&gt;
|✅&lt;br /&gt;
|Καρατζαφέρης Λυκούργος&lt;br /&gt;
|Αθήνα / Διαδικτυακά&lt;br /&gt;
|Ιδιωτικό&lt;br /&gt;
|Σταθερό: 2177207765&lt;br /&gt;
Τηλέφωνο: 6944302577&lt;br /&gt;
|30-70 ευρώ, 1-2 συνεδρίες για γνωμάτευση.&lt;br /&gt;
|Αμφιτρύωνος 78, Αττική, 11853.&lt;br /&gt;
|Κάνει και online αλλά προτιμάει irl.&lt;br /&gt;
|&lt;br /&gt;
* 2 ✅&lt;br /&gt;
* 0 🟨&lt;br /&gt;
* 0 🟧&lt;br /&gt;
* 0 ❌&lt;br /&gt;
| -&lt;br /&gt;
|-&lt;br /&gt;
|✅&lt;br /&gt;
|Μαρία Αναστασάκη&lt;br /&gt;
|Ηράκλειο / Διαδικτυακά&lt;br /&gt;
|Ιδιωτικό&lt;br /&gt;
|Σταθερό: 2810223940&lt;br /&gt;
Τηλέφωνο: 6980566188&lt;br /&gt;
&lt;br /&gt;
E-mail: [mailto:anastasakitherapy@gmail.com anastasakitherapy@gmail.com]&lt;br /&gt;
|40Ε ανα συνεδρία / 80Ε (γνωμάτευση)&lt;br /&gt;
|Λεωφόρος Ιωνίας 136, Ηράκλειο [Δήμος], Ηράκλειο, 71305&lt;br /&gt;
|Ναι.&lt;br /&gt;
|&lt;br /&gt;
* 2 ✅&lt;br /&gt;
* 1 🟨&lt;br /&gt;
* 0 🟧&lt;br /&gt;
* 0 ❌&lt;br /&gt;
| Μπορεί να είναι δύσκολη η επικοινωνία.&lt;br /&gt;
|-&lt;br /&gt;
|✅&lt;br /&gt;
|Κατερίνα Χαλκιαδάκη&lt;br /&gt;
|Ηράκλειο / Διαδικτυακά&lt;br /&gt;
|Ιδιωτικό&lt;br /&gt;
|Σταθερό: 2810223940&lt;br /&gt;
|40Ε ανα συνεδρία / 80Ε (γνωμάτευση)&lt;br /&gt;
|Λεωφόρος Ιωνίας 136, Ηράκλειο [Δήμος], Ηράκλειο, 71305&lt;br /&gt;
|Ναι.&lt;br /&gt;
|&lt;br /&gt;
* 1 ✅&lt;br /&gt;
* 0 🟨&lt;br /&gt;
* 0 🟧&lt;br /&gt;
* 0 ❌&lt;br /&gt;
|Συνάδελφος της Αναστασάκη.&lt;br /&gt;
|-&lt;br /&gt;
|✅&lt;br /&gt;
|Ελένη Ζαχάρη&lt;br /&gt;
|Αθήνα&lt;br /&gt;
|Ιδιωτικό&lt;br /&gt;
|Τηλέφωνο: 6942493053&lt;br /&gt;
|50-70€ το ραντεβού (γνωμάτευση σε 2 συνεδρίες)&lt;br /&gt;
|Χατζηκώστα 8Α, Πλατεία Μαβίλη, Αττική.&lt;br /&gt;
|Ναι.&lt;br /&gt;
|&lt;br /&gt;
* 1 ✅&lt;br /&gt;
* 0 🟨&lt;br /&gt;
* 0 🟧&lt;br /&gt;
* 0 ❌&lt;br /&gt;
| -&lt;br /&gt;
|-&lt;br /&gt;
|✅&lt;br /&gt;
|Γεωργιλαδάκης Ιωάννης&lt;br /&gt;
|Ηράκλειο&lt;br /&gt;
|Ιδιωτικό&lt;br /&gt;
|Σταθερό: 2107442019&lt;br /&gt;
|50€ το ραντεβού. (Στο [https://www.doctoranytime.gr/d/Psychiatros/georgiladakis-ioannis site]&amp;lt;nowiki&amp;gt; αναφέρεται το εξής: &amp;quot;Πιστοποιητικά/Βεβαιώσεις | Από 20€ έως 40€&amp;quot;)&amp;lt;/nowiki&amp;gt;&lt;br /&gt;
|Πλατεία Ρήγα Φεραίου 13, Ηράκλειο, Κρήτη.&lt;br /&gt;
|Λογικά όχι πια (writer&#039;s conclusion, citation needed)&lt;br /&gt;
|&lt;br /&gt;
* 1 ✅&lt;br /&gt;
* 0 🟨&lt;br /&gt;
* 0 🟧&lt;br /&gt;
* 0 ❌&lt;br /&gt;
| -&lt;br /&gt;
|-&lt;br /&gt;
|✅&lt;br /&gt;
|Πάγκαλος Γεώργιος&lt;br /&gt;
|Θεσσαλονίκη&lt;br /&gt;
|Ιδιωτικό&lt;br /&gt;
|Τηλέφωνο: 6933091536&lt;br /&gt;
|100€ ανα συνεδρία &lt;br /&gt;
|Καρόλου Ντηλ 25, 54623&lt;br /&gt;
|Ναι.&lt;br /&gt;
|&lt;br /&gt;
* 1 ✅&lt;br /&gt;
* 0 🟨&lt;br /&gt;
* 0 🟧&lt;br /&gt;
* 0 ❌&lt;br /&gt;
| -&lt;br /&gt;
|-&lt;br /&gt;
|🟨&lt;br /&gt;
|Δημήτρης Ξυλάς&lt;br /&gt;
|Θεσσαλονίκη&lt;br /&gt;
|Ιδιωτικό&lt;br /&gt;
|Σταθερό: 2310236236&lt;br /&gt;
|70€ αναγκαστικό ψυχομετρικό τεστ και 60€ η συνεδρία&lt;br /&gt;
|Εγνατία 70 &amp;amp; Χαλκέων 16, 546 24&lt;br /&gt;
| -&lt;br /&gt;
|&lt;br /&gt;
* 0 ✅&lt;br /&gt;
* 1 🟨&lt;br /&gt;
* 0 🟧&lt;br /&gt;
* 0 ❌&lt;br /&gt;
|Δεν είναι NB friendly.&lt;br /&gt;
|-&lt;br /&gt;
|🟨&lt;br /&gt;
|Σταυριανάκος Κυριάκος&lt;br /&gt;
|Αθήνα / Διαδικτυακά&lt;br /&gt;
|Ιδιωτικό&lt;br /&gt;
| Σταθερό: 2108064113&lt;br /&gt;
| 70€ ανα ραντεβού (επι 6 μήνες gatekeeping)&lt;br /&gt;
| Θησέως 15-17, Μαρούσι 151 24&lt;br /&gt;
| Ναι.&lt;br /&gt;
|&lt;br /&gt;
* 0 ✅&lt;br /&gt;
* 2 🟨&lt;br /&gt;
* 0 🟧&lt;br /&gt;
* 0 ❌&lt;br /&gt;
| Διάβασε καλά την τιμή.&lt;br /&gt;
|-&lt;br /&gt;
|🟧&lt;br /&gt;
|Μεταξάς Σπυρίδων&lt;br /&gt;
|Αθήνα&lt;br /&gt;
|Ιδιωτικό&lt;br /&gt;
|Σταθερό: 2107116438&lt;br /&gt;
|70 ευρώ με κάρτα, 60 ευρώ χωρίς.&lt;br /&gt;
|Ρόδου 17, Μαρούσι, Αττική.&lt;br /&gt;
|Όχι.&lt;br /&gt;
|&lt;br /&gt;
* 1 ✅&lt;br /&gt;
* 0 🟨&lt;br /&gt;
* 0 🟧&lt;br /&gt;
* 1 ❌&lt;br /&gt;
| Με MTF ήταν super friendly, ενώ με FTM το ακριβώς αντίθετο. &lt;br /&gt;
|-&lt;br /&gt;
|🟧 &lt;br /&gt;
|Σαρρηγιανίδης Αλέξιος&lt;br /&gt;
|Θεσσαλονίκη&lt;br /&gt;
|Δημόσιο&lt;br /&gt;
| -&lt;br /&gt;
| -&lt;br /&gt;
| Ιπποκράτειο Θεσσαλονίκης&lt;br /&gt;
| Όχι.&lt;br /&gt;
|&lt;br /&gt;
* 0 ✅&lt;br /&gt;
* 0 🟨&lt;br /&gt;
* 1 🟧&lt;br /&gt;
* 0 ❌&lt;br /&gt;
| Δεν είναι κακός απλώς προτείνει τον Πάγκαλο (δλ. πήγαινε κατ&#039; ευθείαν εκεί) και έπειτα τον &#039;&#039;Μπουφίδη&#039;&#039; (γι&#039; αυτό και είναι 🟧 και όχι 🟨/✅) &lt;br /&gt;
|-&lt;br /&gt;
|❌&lt;br /&gt;
|Φλούδας Γεώργιος&lt;br /&gt;
|Αθήνα&lt;br /&gt;
|Δημόσιο&lt;br /&gt;
|[[File:Floudaskeeper.jpg|thumb|172x172px]]&lt;br /&gt;
| [[File:Flouda.png|thumb|163x163px|courtesy of Αθανασιάδης Λουκάς]]&lt;br /&gt;
| [https://media.discordapp.net/attachments/785742455928520725/1290054603814993930/hgf.png?ex=66fb1079&amp;amp;is=66f9bef9&amp;amp;hm=0441ce6ca9438130027d61078d2b76bc9abaa83ad99e97e7718a05554e2221f3&amp;amp;=&amp;amp;format=webp&amp;amp;quality=lossless&amp;amp;width=687&amp;amp;height=305 206]&lt;br /&gt;
| Όχι.&lt;br /&gt;
|&lt;br /&gt;
* 1 ✅&lt;br /&gt;
* 1 🟨&lt;br /&gt;
* 0 🟧&lt;br /&gt;
* 6 ❌&lt;br /&gt;
|Ο βασιλιάς του Gatekeeping, zero tolenace στο diy.&lt;br /&gt;
|-&lt;br /&gt;
|❌&lt;br /&gt;
|Απαζίδου Παρθένα&lt;br /&gt;
|Θεσσαλονίκη&lt;br /&gt;
|Δημόσιο&lt;br /&gt;
| -&lt;br /&gt;
| -&lt;br /&gt;
| Νοσοκομείο Αφροδισίων  &amp;amp; Δερματικών Νόσων Θεσσαλονίκης (παράρτημα Ιπποκράτειου στην Δελφών 124)&lt;br /&gt;
| Όχι.&lt;br /&gt;
|&lt;br /&gt;
* 0 ✅&lt;br /&gt;
* 0 🟨&lt;br /&gt;
* 0 🟧&lt;br /&gt;
* 1 ❌&lt;br /&gt;
|Δεν γνωρίζει απο &amp;quot;τρανς θέματα&amp;quot;.&lt;br /&gt;
|-&lt;br /&gt;
|❌ &lt;br /&gt;
|Λουκάς Αθανασιάδης&lt;br /&gt;
|Θεσσαλονίκη&lt;br /&gt;
|Δημόσιο&lt;br /&gt;
| -&lt;br /&gt;
| -&lt;br /&gt;
| -&lt;br /&gt;
| Όχι.&lt;br /&gt;
|&lt;br /&gt;
* 0 ✅&lt;br /&gt;
* 0 🟨&lt;br /&gt;
* 0 🟧&lt;br /&gt;
* 3 ❌&lt;br /&gt;
|Gatekeeping, zero tolenace στο diy, σπατάλη 2+ χρόνων.&lt;br /&gt;
|-&lt;br /&gt;
|❌&lt;br /&gt;
|Μπουφίδης Σταύρος&lt;br /&gt;
|Θεσσαλονίκη&lt;br /&gt;
|Ιδιωτικό&lt;br /&gt;
|Σταθερό: 2310253793&lt;br /&gt;
|&amp;quot;100€ μετρητά, 80€ κά- α όχι, συγνώμη, 80€ μέτρητα. 100€ κάρτα&amp;quot;&lt;br /&gt;
|Ερμού 36, Θεσσαλονίκη, 54623&lt;br /&gt;
|Όχι.&lt;br /&gt;
|&lt;br /&gt;
* 0 ✅&lt;br /&gt;
* 0 🟨&lt;br /&gt;
* 0 🟧&lt;br /&gt;
* 2 ❌&lt;br /&gt;
|Αν σ&#039; αρέσει να πληρώνεις για να σε κάνουν gatekeep, είναι τέλειος.&lt;br /&gt;
|-&lt;br /&gt;
|❌&lt;br /&gt;
|Καλλιόπη Προκοπάκη&lt;br /&gt;
|Αθήνα&lt;br /&gt;
|Ιδιωτικό&lt;br /&gt;
| -&lt;br /&gt;
| -&lt;br /&gt;
| -&lt;br /&gt;
| -&lt;br /&gt;
|&lt;br /&gt;
* 0 ✅&lt;br /&gt;
* 0 🟨&lt;br /&gt;
* 0 🟧&lt;br /&gt;
* 1 ❌&lt;br /&gt;
|Είναι κατά τον γάμο ομόφυλων ζευγαριών.&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== Ψυχολόγοι ==&lt;br /&gt;
{| class=&amp;quot;wikitable sortable&amp;quot;&lt;br /&gt;
|+&lt;br /&gt;
!✅/🟨/🟧/❌&lt;br /&gt;
!Όνομα&lt;br /&gt;
!Περιοχή&lt;br /&gt;
!Δημόσιο/Ιδιωτικό&lt;br /&gt;
!Επικοινωνία&lt;br /&gt;
!Τιμή&lt;br /&gt;
!Περιοχή&lt;br /&gt;
!Διαδικτυακά&lt;br /&gt;
!Κριτικές&lt;br /&gt;
!Σημειώσεις&lt;br /&gt;
|-&lt;br /&gt;
|✅&lt;br /&gt;
|Γεωργία Καμπόλη&lt;br /&gt;
|Άνω Λιόσια / Διαδικτυακά&lt;br /&gt;
|Ιδιωτικό&lt;br /&gt;
| Τηλέφωνο: 6931170170 &lt;br /&gt;
Email: geokaboli@gmail.com &lt;br /&gt;
&lt;br /&gt;
Email (στην ιστοσελίδα): info@kabolipsychologist.gr&lt;br /&gt;
| -&lt;br /&gt;
| Οδ. Ελύτη 2, Άνω Λιόσια 133 41&lt;br /&gt;
| Ναι.&lt;br /&gt;
|&lt;br /&gt;
* 1 ✅&lt;br /&gt;
* 0 🟨&lt;br /&gt;
* 0 🟧&lt;br /&gt;
* 0 ❌&lt;br /&gt;
| -&lt;br /&gt;
|-&lt;br /&gt;
|❌&lt;br /&gt;
|Γιαντσίδου Βασιλική&lt;br /&gt;
|Ορεστιάδα&lt;br /&gt;
|Ιδιωτικό&lt;br /&gt;
| -&lt;br /&gt;
| -&lt;br /&gt;
| -&lt;br /&gt;
| -&lt;br /&gt;
| -&lt;br /&gt;
| Στον κώλο της μαϊμούς, δεν θα βγάλεις άκρη, why bother?&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== Παιδοψυχίατροι ==&lt;br /&gt;
{| class=&amp;quot;wikitable sortable&amp;quot;&lt;br /&gt;
|+&lt;br /&gt;
!✅/🟨/🟧/❌&lt;br /&gt;
!Όνομα&lt;br /&gt;
!Περιοχή&lt;br /&gt;
!Δημόσιο/Ιδιωτικό&lt;br /&gt;
!Επικοινωνία&lt;br /&gt;
!Τιμή&lt;br /&gt;
!Περιοχή&lt;br /&gt;
!Διαδικτυακά&lt;br /&gt;
!Κριτικές&lt;br /&gt;
!Σημειώσεις&lt;br /&gt;
|-&lt;br /&gt;
|❌&lt;br /&gt;
|Στέλλα/Στυλιανή Βαγιωνά&lt;br /&gt;
|Θεσσαλονίκη&lt;br /&gt;
|Ιδιωτικό&lt;br /&gt;
| -&lt;br /&gt;
|70€ (χωρίς απόδειξη)&lt;br /&gt;
| -&lt;br /&gt;
| -&lt;br /&gt;
|&lt;br /&gt;
* 0 ✅&lt;br /&gt;
* 0 🟨&lt;br /&gt;
* 0 🟧&lt;br /&gt;
* 1 ❌&lt;br /&gt;
| -&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== Ενδοκρινολόγοι ==&lt;br /&gt;
{| class=&amp;quot;wikitable sortable&amp;quot;&lt;br /&gt;
|+&lt;br /&gt;
!✅/🟨/🟧/❌&lt;br /&gt;
!Όνομα&lt;br /&gt;
!Περιοχή&lt;br /&gt;
!Δημόσιο/Ιδιωτικό&lt;br /&gt;
!Επικοινωνία&lt;br /&gt;
!Τιμή&lt;br /&gt;
!Περιοχή&lt;br /&gt;
!Διαδικτυακά&lt;br /&gt;
!Κριτικές&lt;br /&gt;
!Σημειώσεις&lt;br /&gt;
|-&lt;br /&gt;
|🟨&lt;br /&gt;
|Κούκκου Ευτυχία&lt;br /&gt;
|Αθήνα&lt;br /&gt;
|Δημόσιο&lt;br /&gt;
| -&lt;br /&gt;
| -&lt;br /&gt;
| Γ.Ν. Έλενα Βενιζέλου, Αθήνα 115 21&lt;br /&gt;
| Όχι.&lt;br /&gt;
|&lt;br /&gt;
* 4 ✅&lt;br /&gt;
* 0 🟨&lt;br /&gt;
* 1 🟧&lt;br /&gt;
* 1 ❌&lt;br /&gt;
| - Θέλει διάγνωση. &lt;br /&gt;
- Κάνει περίεργο misgendering μερικές φορές.&lt;br /&gt;
|-&lt;br /&gt;
|✅&lt;br /&gt;
|Θεώδορος Θωμάς&lt;br /&gt;
|Αθήνα&lt;br /&gt;
|Ιδιωτικό&lt;br /&gt;
| Σταθερό: 2106436115&lt;br /&gt;
| 80-100€ η συνεδρία&lt;br /&gt;
| Λεωφ. Κηφισίας 5, 115 23 Αμπελόκηποι, Αθήνα&lt;br /&gt;
| -&lt;br /&gt;
|&lt;br /&gt;
* 5 ✅&lt;br /&gt;
* 1 🟨&lt;br /&gt;
* 0 🟧&lt;br /&gt;
* 0 ❌&lt;br /&gt;
| - Θέλει διάγνωση. &lt;br /&gt;
- Έχει γράψει &#039;&#039;&#039;50mg androcur&#039;&#039;&#039; ανά &#039;&#039;&#039;μέρα&#039;&#039;&#039;. Παρ&#039; όλα αυτά δεν έχει υπάρξει άλλο περιστατικό σαν αυτό, οπότε &#039;&#039;&#039;δεν είναι fully conclusive&#039;&#039;&#039; το &amp;quot;Έγραψε παράξενη δοσολογία μια φορά σε μια κοπέλα.&amp;quot; &lt;br /&gt;
|-&lt;br /&gt;
|✅&lt;br /&gt;
|Σκαράκης Νικήτας&lt;br /&gt;
|Αθήνα&lt;br /&gt;
|Ιδιωτικό&lt;br /&gt;
| Σταθερό:  2107117965&lt;br /&gt;
| 50€ η συνεδρία&lt;br /&gt;
| Κυκλαμίνων 7 (Περιοχή Αγίου Ιεροθέου), Περιστέρι, Αττική&lt;br /&gt;
| Ναι. (60€ η συνεδρία)&lt;br /&gt;
|&lt;br /&gt;
* 1 ✅&lt;br /&gt;
* 0 🟨&lt;br /&gt;
* 0 🟧&lt;br /&gt;
* 0 ❌&lt;br /&gt;
| - Θέλει διάγνωση.&lt;br /&gt;
|-&lt;br /&gt;
|✅&lt;br /&gt;
|Στέργιος Κιούρας&lt;br /&gt;
|Θεσσαλονίκη&lt;br /&gt;
|Ιδιωτικό&lt;br /&gt;
| Σταθερό: 2310256498&lt;br /&gt;
| 50€ η συνεδρία&lt;br /&gt;
| Ερμού 36, Θεσσαλονίκη 546 23&lt;br /&gt;
| -&lt;br /&gt;
|&lt;br /&gt;
* 1 ✅&lt;br /&gt;
* 0 🟨&lt;br /&gt;
* 0 🟧&lt;br /&gt;
* 0 ❌&lt;br /&gt;
| - &#039;&#039;&#039;Δεν ζήτησε&#039;&#039;&#039; διάγνωση.&lt;br /&gt;
|-&lt;br /&gt;
|🟨&lt;br /&gt;
|Θεμιστοκλής Καλτσάς&lt;br /&gt;
|Θεσσαλονίκη&lt;br /&gt;
|Ιδιωτικό&lt;br /&gt;
| Σταθερό: 2310238719&lt;br /&gt;
| 50€ η συνεδρία&lt;br /&gt;
| Παλαιών Πατρών Γερμανού 21, Θεσσαλονίκη&lt;br /&gt;
| -&lt;br /&gt;
|&lt;br /&gt;
* 1 ✅&lt;br /&gt;
* 1 🟨&lt;br /&gt;
* 0 🟧&lt;br /&gt;
* 0 ❌&lt;br /&gt;
| - Δεν έχει θέμα με DIY, &#039;&#039;&#039;δεν ζήτησε άμεσα&#039;&#039;&#039; διάγνωση, αλλά &#039;&#039;&#039;την θέλει&#039;&#039;&#039; γενικότερα (δλ. αν δεν έχεις θα στη ζητήσει μελλοντικά μεσω e-mail)&lt;br /&gt;
- Έχει θέμα με τα &amp;quot;υψηλά&amp;quot; επίπεδα (π.χ. κανονικά pg/ml e2 στην μονοθεραπεία με injections είναι περίεργα γι&#039; αυτόν)&lt;br /&gt;
- Ζητάει διάγνωση στα άτομα που δεν λαμβάνουν DIY HRT.&lt;br /&gt;
- Ημι-συχνό misgendering.&lt;br /&gt;
|-&lt;br /&gt;
|✅&lt;br /&gt;
|Παναγιώτης Μ. Μπουντούρης&lt;br /&gt;
|Σύρος&lt;br /&gt;
|Ιδιωτικό&lt;br /&gt;
|Σταθερό: 2281082030&lt;br /&gt;
Κινητό: 6946545831&lt;br /&gt;
|30€ η πρώτη συνεδρία&lt;br /&gt;
10€ η συνταγή&lt;br /&gt;
|Κλεισθένους 15, Ερμούπολη, 84100, Κυκλάδων&lt;br /&gt;
| -&lt;br /&gt;
|&lt;br /&gt;
* 1 ✅&lt;br /&gt;
* 0 🟨&lt;br /&gt;
* 0 🟧&lt;br /&gt;
* 0 ❌&lt;br /&gt;
| -&lt;br /&gt;
|-&lt;br /&gt;
|🟨&lt;br /&gt;
|Κωνσταντίνος Α. Τούλης&lt;br /&gt;
|Θεσσαλονίκη&lt;br /&gt;
|Ιδιωτικό&lt;br /&gt;
|Τηλέφωνο: 2310222799&lt;br /&gt;
|50€ η συνεδρία&lt;br /&gt;
|Μητροπόλεως 73, Θεσσαλονίκη 546 22&lt;br /&gt;
| -&lt;br /&gt;
|&lt;br /&gt;
* 0 ✅&lt;br /&gt;
* 1 🟨&lt;br /&gt;
* 0 🟧&lt;br /&gt;
* 0 ❌&lt;br /&gt;
| - Θέλει διάγνωση.&lt;br /&gt;
|-&lt;br /&gt;
|🟨&lt;br /&gt;
|Γεώργιος Α. Κανάκης&lt;br /&gt;
|Αθήνα&lt;br /&gt;
|Ιδιωτικό&lt;br /&gt;
|Σταθερό: 2107709248&lt;br /&gt;
|&amp;lt;!-- we don&#039;t even fucking know --&amp;gt;&lt;br /&gt;
|Τσόχα 15-17, Αμπελόκηποι &lt;br /&gt;
| -&lt;br /&gt;
| -&lt;br /&gt;
| - Έχει ακουστεί πως έχει παραβιάσει την ανωνυμία δεδομένων.&lt;br /&gt;
|-&lt;br /&gt;
|❌&lt;br /&gt;
|Πουλάκος Πάυλος&lt;br /&gt;
|Θεσσαλονίκη&lt;br /&gt;
|Ιδιωτικό&lt;br /&gt;
|Σταθερό: 2105579147&lt;br /&gt;
|50€ η συνεδρία &lt;br /&gt;
|Τσιμισκή Ιωάννη 69, Αγία Σοφία, 546 22&lt;br /&gt;
| -&lt;br /&gt;
|&lt;br /&gt;
* 0 ✅&lt;br /&gt;
* 0 🟨&lt;br /&gt;
* 0 🟧&lt;br /&gt;
* 1 ❌&lt;br /&gt;
| - 100mg cypro ανά μέρα χωρίς προειδοποίηση στο cyclacur για τα πορτοκαλί/καφέ χάπια (πολύ κακό)&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== Δερματολόγοι/Αφροδισιολόγοι/Laser Κλινικές ==&lt;br /&gt;
{| class=&amp;quot;wikitable sortable&amp;quot;&lt;br /&gt;
|+&lt;br /&gt;
!✅/🟨/🟧/❌&lt;br /&gt;
!Όνομα&lt;br /&gt;
!Περιοχή&lt;br /&gt;
!Είδος&lt;br /&gt;
!Δημόσιο/Ιδιωτικό&lt;br /&gt;
!Επικοινωνία&lt;br /&gt;
!Τιμή&lt;br /&gt;
!Διαδικτυακά&lt;br /&gt;
!Κριτικές&lt;br /&gt;
!Σημειώσεις&lt;br /&gt;
|-&lt;br /&gt;
|❌&lt;br /&gt;
|Ζαχαρίας Ι. Ανδρεαδάκης&lt;br /&gt;
|Αθήνα&lt;br /&gt;
|Δερματολόγος/Αφροδισιολόγος/Laser&lt;br /&gt;
|Ιδιωτικό&lt;br /&gt;
| -&lt;br /&gt;
| -&lt;br /&gt;
| -&lt;br /&gt;
|&lt;br /&gt;
* 0 ✅&lt;br /&gt;
* 0 🟨&lt;br /&gt;
* 0 🟧&lt;br /&gt;
* 1 ❌&lt;br /&gt;
| -&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== Χειρούργοι ==&lt;br /&gt;
{| class=&amp;quot;wikitable sortable&amp;quot;&lt;br /&gt;
|+&lt;br /&gt;
!✅/🟨/🟧/❌&lt;br /&gt;
!Όνομα&lt;br /&gt;
!Περιοχή&lt;br /&gt;
!Δημόσιο/Ιδιωτικό&lt;br /&gt;
!Επικοινωνία&lt;br /&gt;
!Τιμή&lt;br /&gt;
!Περιοχή&lt;br /&gt;
!Διαδικτυακά&lt;br /&gt;
!Κριτικές&lt;br /&gt;
!Σημειώσεις&lt;br /&gt;
|-&lt;br /&gt;
|✅&lt;br /&gt;
|Ηλίας Μεξής&lt;br /&gt;
|Αθήνα&lt;br /&gt;
|Ιδιωτικό&lt;br /&gt;
| Σταθερό: 2114068315&lt;br /&gt;
| Top surgery ~3000€&lt;br /&gt;
|Αγ. Θεοδώρων 10, 14562 Κηφισιά&lt;br /&gt;
| -&lt;br /&gt;
|&lt;br /&gt;
* 1 ✅&lt;br /&gt;
* 0 🟨&lt;br /&gt;
* 0 🟧&lt;br /&gt;
* 0 ❌&lt;br /&gt;
| - Δεν ζητάει γνωμάτευση.&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== Δικηγόροι ==&lt;br /&gt;
{| class=&amp;quot;wikitable sortable&amp;quot;&lt;br /&gt;
|+&lt;br /&gt;
!✅/🟨/🟧/❌&lt;br /&gt;
!Όνομα&lt;br /&gt;
!Περιοχή&lt;br /&gt;
!Δημόσιο/Ιδιωτικό&lt;br /&gt;
!Επικοινωνία&lt;br /&gt;
!Τιμή&lt;br /&gt;
!Περιοχή&lt;br /&gt;
!Διαδικτυακά&lt;br /&gt;
!Κριτικές&lt;br /&gt;
!Σημειώσεις&lt;br /&gt;
|-&lt;br /&gt;
|✅&lt;br /&gt;
|Αθηνά Καλογρίδη&lt;br /&gt;
|Θεσσαλονίκη&lt;br /&gt;
|Ιδιωτικό&lt;br /&gt;
| Σταθερό: 2310220704&lt;br /&gt;
| 125€ αίτηση&lt;br /&gt;
125€ δικαστήριο&lt;br /&gt;
43€ εισαγγελέας&lt;br /&gt;
| Κομνηνών 20, Θεσσαλονίκη, 54624, ΘΕΣΣΑΛΟΝΙΚΗΣ&lt;br /&gt;
| -&lt;br /&gt;
|&lt;br /&gt;
* 1 ✅&lt;br /&gt;
* 0 🟨&lt;br /&gt;
* 0 🟧&lt;br /&gt;
* 0 ❌&lt;br /&gt;
| -&lt;br /&gt;
|}&lt;/div&gt;</summary>
		<author><name>Goblinmoder</name></author>
	</entry>
	<entry>
		<id>https://wiki.diyon.top/index.php?title=HRT&amp;diff=1008</id>
		<title>HRT</title>
		<link rel="alternate" type="text/html" href="https://wiki.diyon.top/index.php?title=HRT&amp;diff=1008"/>
		<updated>2025-04-19T14:02:52Z</updated>

		<summary type="html">&lt;p&gt;Goblinmoder: testo link fix 2 (legal)&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{#seo:&lt;br /&gt;
|title_mode=replace&lt;br /&gt;
|title=HRT&lt;br /&gt;
|description=We are open to discussion and actively on-going changes in formatting and contents of this Page and Website (in general). The e-mail address to refer to is fox@diyon.top&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
&amp;lt;languages/&amp;gt;&lt;br /&gt;
&amp;lt;translate&amp;gt;&lt;br /&gt;
&amp;lt;!--T:41--&amp;gt;&lt;br /&gt;
After around a month on HRT some of your ranges in your [[Blood Testing|blood test]] should be within desired ranges.&lt;br /&gt;
&lt;br /&gt;
== Disclaimer ==&lt;br /&gt;
 To clarify on &#039;&#039;&#039;dosages&#039;&#039;&#039;, the values mentioned below are rather speculative and most are based on &#039;&#039;&#039;personal experiences&#039;&#039;&#039; or &#039;&#039;&#039;(diy)hrt pages/websites/papers&#039;&#039;&#039;. Therefore it is encouraged to do [[Blood Testing|blood tests]] and if possible, check with an [[Doctors#Ενδοκρινολόγοι|endocrinologist]] (we also suggest [[Doctors]] that can help with such cases), especially if you have any specific &#039;&#039;&#039;health conditions&#039;&#039;&#039;. &lt;br /&gt;
Pricemaps are there to evaluate prices through &#039;&#039;&#039;[https://galinos.gr galinos.gr]&#039;&#039;&#039; (in case something is outdated, look for the green line that says &amp;quot;Λιανική&amp;quot;)&lt;br /&gt;
&lt;br /&gt;
We are open to discussion and actively on-going changes in formatting and contents of this Page and Website (in general). The e-mail address to refer to is &#039;&#039;&#039;fox@diyon.top&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
== Blood Levels ==&lt;br /&gt;
&lt;br /&gt;
==== Refer to the [[Blood Testing]] page. ====&lt;br /&gt;
== Transfem ==&lt;br /&gt;
Taking Puberty Blockers ([[HRT#Antiandrogens and GNRH Agonists|GNRH Agonists]], e.g: Arvekap) or any Anti Androgen (e.g: Aldactone, Androcur) &#039;&#039;&#039;without [[HRT#Estrogens|Estrogens]]&#039;&#039;&#039; is generally discouraged even during youth transitioning (This is &#039;&#039;&#039;non-definitive&#039;&#039;&#039; for Enby folks)&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--T:44--&amp;gt;&lt;br /&gt;
=== Monotherapy ===&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|+&lt;br /&gt;
!Type&lt;br /&gt;
!Commercial Names&lt;br /&gt;
!Dosage&lt;br /&gt;
!Notes&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
====== Sublingual (E Valerate or Hemihydrate) ======&lt;br /&gt;
|Cyclacur (EV), Estrofem (EH, imported), Trisequens (12 pills 2mg EH, 10 pills norgestrel, 6 pills 1mg EH)&lt;br /&gt;
|&amp;gt;=8-12mg/day&lt;br /&gt;
|While it is possible, even with a smaller dosage (&#039;&#039;&#039;at least 6mg&#039;&#039;&#039;), it&#039;s not that common. Ideally, use your blood tests to &#039;&#039;&#039;minmax&#039;&#039;&#039; your doses.&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
====== Injectable Estradiol Valerate (EV) ======&lt;br /&gt;
|Neofollin (can be ordered from pharmacies near Czechia, or aptekaapo.com &#039;&#039;&#039;but they’re not on hrtcafe&#039;&#039;&#039;, not tested in Greece), Delestrogen (Vial, unavailable), Progynon Depot (Ampules, unavailable), [[File:What-excuse-me.gif|thumb|[[HRT#Other resources|my honest reaction]]]]&lt;br /&gt;
|5-7mg/5 days&lt;br /&gt;
|&lt;br /&gt;
* Due to the large spikes in levels combined with the short [https://en.wikipedia.org/wiki/Biological_half-life half-life] it is not recommended for dosages to surpass the 5 day mark because it may cause menopause symptoms.&lt;br /&gt;
* Branded versions of this medication are not available in greece.&lt;br /&gt;
* The ampules contain a certain mg and do not allow for larger dosages, they are not re-usable. It is recommended to use a vial with a cap.&lt;br /&gt;
* Look for &#039;&#039;&#039;[https://arc-w.nihr.ac.uk/Wordpress/wp-content/uploads/2015/07/Low-dead-space-syringes.png syringe dead space]([[HRT#:~:text=* = It has been mentioned that syringes account for dead space, although that is not 100% certain.|*]])&#039;&#039;&#039;, e.g. if there&#039;s &#039;&#039;&#039;0.05mL&#039;&#039;&#039; remaining after injecting, draw &#039;&#039;&#039;+0.05mL&#039;&#039;&#039; from the vial.&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
====== Injectable Estradiol Cypionate (EC) ======&lt;br /&gt;
|[[File:What-excuse-me.gif|thumb|[[HRT#Other resources|my honest reaction]]]]Depo-Estradiol (US only, unavailable),&lt;br /&gt;
|5-7mg/7 days&lt;br /&gt;
|&lt;br /&gt;
* Look for &#039;&#039;&#039;[https://arc-w.nihr.ac.uk/Wordpress/wp-content/uploads/2015/07/Low-dead-space-syringes.png syringe dead space]([[HRT#:~:text=* = It has been mentioned that syringes account for dead space, although that is not 100% certain.|*]])&#039;&#039;&#039;, e.g. if there&#039;s &#039;&#039;&#039;0.05mL&#039;&#039;&#039; remaining after injecting, draw &#039;&#039;&#039;+0.05mL&#039;&#039;&#039; from the vial.&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
====== Injectable Estradiol Enanthate (EEn) ======&lt;br /&gt;
|[[File:What-excuse-me.gif|thumb|[[HRT#Other resources|my honest reaction]]]]&lt;br /&gt;
|4-7mg/7 days&lt;br /&gt;
7-10mg/10 days (7.2mg usually, depending on the vial, it&#039;s optimal because drawing cents of mL are hard to get right)&lt;br /&gt;
|&lt;br /&gt;
* You can multiply the weekly dosage by 2, which lasts up to 14 days (as much as the [https://en.wikipedia.org/wiki/Biological_half-life half-life] of Enanthate)&lt;br /&gt;
* Look for &#039;&#039;&#039;[https://arc-w.nihr.ac.uk/Wordpress/wp-content/uploads/2015/07/Low-dead-space-syringes.png syringe dead space]([[HRT#:~:text=* = It has been mentioned that syringes account for dead space, although that is not 100% certain.|*]])&#039;&#039;&#039;, e.g. if there&#039;s &#039;&#039;&#039;0.05mL&#039;&#039;&#039; remaining after injecting, draw &#039;&#039;&#039;+0.05mL&#039;&#039;&#039; from the vial.&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
====== Injectable Estradiol Undecylate (EU/EUn) ======&lt;br /&gt;
|[[File:What-excuse-me.gif|thumb|[[HRT#Other resources|my honest reaction]]]]&lt;br /&gt;
|There&#039;s not enough information on dosage. The frequency of those may differ according to the oil used (MCT/Castor oil). Indicative Dosages:&lt;br /&gt;
15-20mg/2 weeks&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--T:45--&amp;gt;&lt;br /&gt;
20-40mg+/4 weeks&lt;br /&gt;
|&lt;br /&gt;
* There&#039;s not enough information on its [[wikipedia:Biological_half-life|half-life]], a higher dosage can be administered that can last up to 20-30 days.&lt;br /&gt;
* [[wikipedia:Intramuscular_injection|IM injections]] last longer so they give better levels during the same period of time per injection.&lt;br /&gt;
* Needs at least 90 days to reach stable levels.&lt;br /&gt;
* Look for &#039;&#039;&#039;[https://arc-w.nihr.ac.uk/Wordpress/wp-content/uploads/2015/07/Low-dead-space-syringes.png syringe dead space]([[HRT#:~:text=* = It has been mentioned that syringes account for dead space, although that is not 100% certain.|*]])&#039;&#039;&#039;, e.g. if there&#039;s &#039;&#039;&#039;0.05mL&#039;&#039;&#039; remaining after injecting, draw &#039;&#039;&#039;+0.05mL&#039;&#039;&#039; from the vial.&lt;br /&gt;
|}&lt;br /&gt;
&#039;&#039;&#039;*&#039;&#039;&#039; = It has been mentioned that syringes account for dead space, although that is not 100% certain.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--T:46--&amp;gt;&lt;br /&gt;
=== Sublingual vs Oral ===&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|+&lt;br /&gt;
!Method&lt;br /&gt;
!Substance&lt;br /&gt;
!Dosage&lt;br /&gt;
!Observations&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
====== Oral ======&lt;br /&gt;
|Estradiol Valerate in pill form (e.g. Cyclacur)&lt;br /&gt;
|&amp;gt;=6mg/day&lt;br /&gt;
(max 10mg as per Dr. Powers)&lt;br /&gt;
|It is recommended that doses are taken separately on set time intervals during the day for more stable estradiol levels, e.g. for a 6mg dose you would take 2mg per 8 hours. By the oral route the active substance is metabolized by the liver and part of it is converted to estrone (E1), which has much less feminizing effects than estradiol (E2) so the desired effect is essentially prevented. The bioavailability of estradiol by oral administration is very low (~5%) and usually lower levels of E2 are observed in blood tests than other methods of administration. [anecdotal apo to server, wikipedia kai tttt - correct/expand?] It is also necessary to administer anti-androgens to reduce testosterone levels to the female range.&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
====== Sublingual ======&lt;br /&gt;
|Estradiol Valerate in pill form (e.g. Cyclacur)&lt;br /&gt;
|&amp;gt;=4mg/day&lt;br /&gt;
|It is recommended that doses are taken separately on set time intervals during the day for more stable estradiol levels, e.g. for a 6mg dose you would take 2mg per 8 hours. The sublingual way bypasses estradiol metabolism by the liver and has about 5 times the estradiol bioavailability of the oral way. This way, estradiol levels have greater range than orally (higher peak lower bottom), in oral they remain higher for ~12 hours while sublingually they go away after 3-4 hours (This however is from a study from 2005 on cis women)&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== Vial info === &amp;lt;!--T:47--&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--T:48--&amp;gt;&lt;br /&gt;
=== Medications ===&lt;br /&gt;
For cyclacur: &#039;&#039;&#039;take only the white pills, the brown pills are Norgestrel which have 0.5mg of estradiol but has an androgenic effect and may also cause other side effects&#039;&#039;&#039;. &lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--T:49--&amp;gt;&lt;br /&gt;
==== Estrogens ====&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|+&lt;br /&gt;
!Brand Name(s)&lt;br /&gt;
!Substance&lt;br /&gt;
!Form&lt;br /&gt;
!Method of Administration&lt;br /&gt;
!Cost&lt;br /&gt;
!Cost with Healthcare Coverage&lt;br /&gt;
!Dosage&lt;br /&gt;
!Safety&lt;br /&gt;
!Notes&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
====== [https://www.galinos.gr/web/drugs/main/drugs/Cyclacur Cyclacur] ======&lt;br /&gt;
|Estradiol Valerate (EV)&lt;br /&gt;
|Pill tablet&lt;br /&gt;
|Orally or sublingually&lt;br /&gt;
|2.01€ for 11 pills ([https://www.galinos.gr/service/drugs/drawPackagePrice/1198 Pricemap])&lt;br /&gt;
~130.8-328.€/year&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--T:50--&amp;gt;&lt;br /&gt;
~10.9-27.4€/month&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--T:51--&amp;gt;&lt;br /&gt;
Prices are indicative, the cost depends on the dosage.&lt;br /&gt;
| -&lt;br /&gt;
|6mg-10mg/day (according to Dr. Will Powers)&lt;br /&gt;
4mg-8mg/day (according to Greek Endocrinologists)&lt;br /&gt;
|A&lt;br /&gt;
|&lt;br /&gt;
* &#039;&#039;&#039;Only white pills are used.&#039;&#039;&#039; Brown pills do have a bit of estradiol but arent taken due to other side effects.&lt;br /&gt;
* You need antiandrogens or GNRH antagonists if you haven&#039;t had an orchiectomy.&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
====== Progynova ======&lt;br /&gt;
|Estradiol Valerate (EV)&lt;br /&gt;
|Pill tablet&lt;br /&gt;
|Orally or sublingually&lt;br /&gt;
|~22€ for 72 pills of 1 mg or ~32€ for 72 pills of 2 mg&lt;br /&gt;
Prices are indicative, the cost depends on the dosage.&lt;br /&gt;
| -&lt;br /&gt;
|4mg-8mg/day&lt;br /&gt;
|A&lt;br /&gt;
|&lt;br /&gt;
* There is no reason to use it in Greece since Cyclacur is available in Greek pharmacies.&lt;br /&gt;
* You need antiandrogens or GNRH antagonists if you haven&#039;t had an orchiectomy.&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
====== Estrofem, Estrifam (german brand name), [https://www.galinos.gr/web/drugs/main/drugs/trisequens Trisequens] ======&lt;br /&gt;
|Estradiol Hemihydrate&lt;br /&gt;
|Pill tablet&lt;br /&gt;
|Orally or sublingually&lt;br /&gt;
|~30€ for 28 pills of 2 mg without shipping costs.&lt;br /&gt;
Prices are indicative, the cost depends on the dosage.&lt;br /&gt;
| -&lt;br /&gt;
|4mg-8mg/day&lt;br /&gt;
|A&lt;br /&gt;
|&lt;br /&gt;
* There is no reason to use it in Greece since Cyclacur is available in Greek pharmacies.&lt;br /&gt;
* You need antiandrogens or GNRH antagonists if you haven&#039;t had an orchiectomy.&lt;br /&gt;
* Trisequens, while being available in Greece, is odd to take with 12 pills being 2mg EH, 10 norgestrel, and 6 1mg EH, for a much higher price than [[HRT#Cyclacur|Cyclacur]].&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
====== [https://www.galinos.gr/web/drugs/main/drugs/Dermestril Dermestril] ======&lt;br /&gt;
|Estradiol Hemihydrate&lt;br /&gt;
|Patch&lt;br /&gt;
|Trans-dermally&lt;br /&gt;
|44€ for 24 patches of 100mcg&lt;br /&gt;
~15€ for 8 patches of 50mcg&lt;br /&gt;
| -&lt;br /&gt;
|50mcg/3.5 days (when starting off)&lt;br /&gt;
100mcg/3.5 days (whenever your e2 levels are stable)&lt;br /&gt;
|A&lt;br /&gt;
|&lt;br /&gt;
* &#039;&#039;&#039;If you have no idea how to apply patches watch this:&#039;&#039;&#039; [https://youtu.be/tXGIYWPqdpI?si=O0dlE19pq0ic0PZP Demonstrational Video]&lt;br /&gt;
* You need antiandrogens or GNRH antagonists if you haven&#039;t had an orchiectomy.&lt;br /&gt;
* 100mcg patches can be cut into 2 if needed.&lt;br /&gt;
|-&lt;br /&gt;
|Neofollin (can be ordered from pharmacies near Czechia, not tested in Greece), Delestrogen (Vial, unavailable), Progynon Depot (Ampules, unavailable)&lt;br /&gt;
|&lt;br /&gt;
====== Estradiol Valerate (EV) ======&lt;br /&gt;
|Injectable&lt;br /&gt;
|Subcutaneous or Intramuscular&lt;br /&gt;
|80€/year (including shipping costs, syringes and alcohol swabs)&lt;br /&gt;
| -&lt;br /&gt;
|5-7mg/5 days (monotherapy)&lt;br /&gt;
4-5mg/7 days (only in combination with an antiandrogen or GNRH agonist)&lt;br /&gt;
|A+&lt;br /&gt;
|&lt;br /&gt;
* It can be used without antiandrogens or GNRH agonists in ([[HRT#Μονοθεραπεία|Monotherapy]]) by increasing the dosage.&lt;br /&gt;
|-&lt;br /&gt;
|Depo-Estradiol (US only, unavailable)&lt;br /&gt;
|&lt;br /&gt;
====== Estradiol Cypionate (EC) ======&lt;br /&gt;
|Injectable&lt;br /&gt;
|Subcutaneous or Intramuscular&lt;br /&gt;
|~70-80€/year (not including shipping costs, syringes and alcohol swabs)&lt;br /&gt;
| -&lt;br /&gt;
|5-7mg/7 days&lt;br /&gt;
(&#039;&#039;&#039;mono dose&#039;&#039;&#039;)&lt;br /&gt;
? (TBD/&#039;&#039;&#039;dose with AA&#039;&#039;&#039;)&lt;br /&gt;
|?&lt;br /&gt;
|&lt;br /&gt;
* It can be used without antiandrogens or GNRH agonists in ([[HRT#Μονοθεραπεία|Monotherapy]])&lt;br /&gt;
|-&lt;br /&gt;
| -&lt;br /&gt;
|&lt;br /&gt;
====== Estradiol Enanthate (EEn) ======&lt;br /&gt;
|Injectable&lt;br /&gt;
|Subcutaneous or Intramuscular&lt;br /&gt;
|80€/year (including shipping costs, syringes and alcohol swabs)&lt;br /&gt;
| -&lt;br /&gt;
|2.5mg-7mg/7 days&lt;br /&gt;
(usual dosage: 4mg/7days)&lt;br /&gt;
|A+&lt;br /&gt;
|&lt;br /&gt;
* It can be used without antiandrogens or GNRH agonists in ([[HRT#Μονοθεραπεία|Monotherapy]]) by increasing the dosage.&lt;br /&gt;
|-&lt;br /&gt;
| -&lt;br /&gt;
|&lt;br /&gt;
====== Estradiol Undecylate (EU, EUn) ======&lt;br /&gt;
|Injectable&lt;br /&gt;
|Subcutaneous or Intramuscular&lt;br /&gt;
|130€/year (including shipping costs, syringes and alcohol swabs)&lt;br /&gt;
| -&lt;br /&gt;
|15-20mg/2 weeks&lt;br /&gt;
20-40mg+/4 weeks&lt;br /&gt;
|A+&lt;br /&gt;
|&lt;br /&gt;
* There&#039;s not much info on dosages, usually seen in [[HRT#Μονοθεραπεία|monotherapy]].&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--T:52--&amp;gt;&lt;br /&gt;
==== Anti-Androgens and GNRH Agonists ====&lt;br /&gt;
These should &#039;&#039;&#039;not&#039;&#039;&#039; be taken sublingually.&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|+&lt;br /&gt;
!Brand Name(s)&lt;br /&gt;
!Substance&lt;br /&gt;
!Cost&lt;br /&gt;
!Cost with Healthcare Coverage&lt;br /&gt;
!Dosage&lt;br /&gt;
!Safety&lt;br /&gt;
!Form&lt;br /&gt;
!Type&lt;br /&gt;
!Notes&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
====== [https://www.galinos.gr/web/drugs/main/drugs/Androcur Androcur] ======&lt;br /&gt;
|Cyproterone Acetate (CPA) is also referred to as cypro&lt;br /&gt;
|21.58€/50mg * 50 pills &lt;br /&gt;
19.7-31.5€/year&lt;br /&gt;
&lt;br /&gt;
([https://www.galinos.gr/service/drugs/drawPackagePrice/8023 Pricemap])&lt;br /&gt;
|?&lt;br /&gt;
|12.5mg/2 days- 10mg/day&lt;br /&gt;
&#039;&#039;&#039;Larger doses shouldn&#039;t be administered&#039;&#039;&#039;&lt;br /&gt;
|C&lt;br /&gt;
|Pill tablet&lt;br /&gt;
|Progestin (Steroidal antiandrogen)&lt;br /&gt;
Stops testosterone production.&lt;br /&gt;
|The max recommended dosage is 10mg/day . Monitoring of prolactin levels is recommended through [[Blood Testing#MTF|blood testing]].&lt;br /&gt;
&#039;&#039;&#039;Many doctors give overdoses of 50 mg/day. Cyproterone is a strong anti-androgen and testosterone suppression is possible with lower doses. A change of doctor is recommended.&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--T:53--&amp;gt;&lt;br /&gt;
[[wikipedia:Side_effects_of_cyproterone_acetate|Side Effects]]:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--T:54--&amp;gt;&lt;br /&gt;
* Benign brain tumor.&lt;br /&gt;
* In rare cases, liver damage.&lt;br /&gt;
* Vitamin B12 deficiency.&lt;br /&gt;
* Breast cancer.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--T:55--&amp;gt;&lt;br /&gt;
Testosterone suppression can be achieved with even lower doses, however a 50 mg pill is difficult to cut into pieces of less than 12.5 mg even with a pill cutter.&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
====== [https://www.galinos.gr/web/drugs/main/drugs/Bicalut Bicalut] ======&lt;br /&gt;
|Bicalutamide (aka: bica)&lt;br /&gt;
|29.10 euro/30 pills&lt;br /&gt;
29.10 euro/month&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--T:56--&amp;gt;&lt;br /&gt;
~350 euro/year&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
([https://www.galinos.gr/service/drugs/drawPackagePrice/11120 Pricemap])&lt;br /&gt;
|6.77 euro/month (28 tabs)&lt;br /&gt;
~95 euro/year&lt;br /&gt;
|50mg/day&lt;br /&gt;
|A-&lt;br /&gt;
|Pill/Tablet&lt;br /&gt;
|Androgen receptor antagonist (Nonsteroidal antiandrogen)&lt;br /&gt;
Blocks absorption of all androgens (including testosterone)&lt;br /&gt;
|&#039;&#039;&#039;Serious negative interactions can be noted if combined with other anti-androgens and GNRH agonists (except progesterone)&#039;&#039;&#039;&lt;br /&gt;
&#039;&#039;&#039;Very rare&#039;&#039;&#039; chance for recoverable and non-fatal liver damage for people with a certain rare mutation.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--T:57--&amp;gt;&lt;br /&gt;
Most of the effects listen in the instruction manual are scaremongering. (it lists a very high chance of liver issues when they are actually very rare, and also lists photosensitivity, which if it even occurs at all, it should be quite rare. We are aware of nobody who had a negative interction between alexandrite laser hair removal and bicalutamide).&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--T:58--&amp;gt;&lt;br /&gt;
Note that bicalutamide, unlike most other anti-androgens, &#039;&#039;&#039;does not&#039;&#039;&#039; lower testosterone levels, in fact they usually rise as the body responds to testosterone receptors being inhibited. Do not be alarmed if you notice an increase of testosterone in your blood tests.&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
====== [https://www.galinos.gr/web/drugs/main/drugs/Arvekap Arvekap] ======&lt;br /&gt;
|Triptorelin&lt;br /&gt;
| -&lt;br /&gt;
|~200/year?&lt;br /&gt;
|&lt;br /&gt;
|A?&lt;br /&gt;
|Injection&lt;br /&gt;
|GNRH Agonist&lt;br /&gt;
(indirectly) Stops testosterone AND estrogen production&lt;br /&gt;
|Also a puberty blocker&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
====== [https://www.galinos.gr/web/drugs/main/drugs/aldactone Aldactone] ======&lt;br /&gt;
|Spironolactone&lt;br /&gt;
|5.19 euro/20 tabs (100mg)&lt;br /&gt;
([https://www.galinos.gr/service/drugs/drawPackagePrice/148 Pricemap])&lt;br /&gt;
|?&lt;br /&gt;
|50mg-200mg/day&lt;br /&gt;
|B-C&lt;br /&gt;
|Tablet&lt;br /&gt;
|Antimineralocorticoid/MCRA&lt;br /&gt;
|Very inefficient, makes you pee, it&#039;s a medication for blood pressure&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
|Flutamide&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|F---&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|Only in this table as an example to avoid&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
==== Miscellaneous/Progesterone ====&lt;br /&gt;
Progesterone falls under this category, as it is not quite the same as other Anti-Androgens, the mention of Progesterone in this title is necessary in order to reduce confusion and questions such as &amp;quot;Where is progesterone?&amp;quot; and &amp;quot;Did you remove prog from the page?&amp;quot;.&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
!Brand Name(s)&lt;br /&gt;
!Substance&lt;br /&gt;
!Cost&lt;br /&gt;
!Cost with Healthcare Coverage&lt;br /&gt;
!Dosage&lt;br /&gt;
!Safety&lt;br /&gt;
!Form&lt;br /&gt;
!Type&lt;br /&gt;
!Notes&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
====== [https://www.galinos.gr/web/drugs/main/drugs/utrogestran Utrogestan] ======&lt;br /&gt;
|Progesterone (P4) it is also referred to as prog&lt;br /&gt;
|5.83 euro/30 caps (100mg)&lt;br /&gt;
8.08 euro/15 caps (200mg)&lt;br /&gt;
([https://www.galinos.gr/service/drugs/drawPackagePrice/7619 Pricemap])&lt;br /&gt;
|?&lt;br /&gt;
|100mg or 200mg daily (rectal administration, [[Blood Testing|blood tests]] are recommended)&lt;br /&gt;
|A&lt;br /&gt;
|Capsule&lt;br /&gt;
|Stops testosterone production.&lt;br /&gt;
|There is not much confirmed information about progesterone.&lt;br /&gt;
It can also be taken orally but the absorption rate is very low.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--T:59--&amp;gt;&lt;br /&gt;
Anecdotal claims:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--T:60--&amp;gt;&lt;br /&gt;
* Helps with breast development and with feminization in general.&lt;br /&gt;
* Can be given after one year of estradiol.&lt;br /&gt;
* Suggested to be given after the individual reaches Tanner stage 3.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--T:61--&amp;gt;&lt;br /&gt;
It can have androgenic or other (non-serious, recoverable) effects for some individuals - in particular it can be converted to DHT by the body even in combination with dutasteride or bicalutamide.&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--T:62--&amp;gt;&lt;br /&gt;
==== Other anti-androgens (optional) ====&lt;br /&gt;
These are used to block conversion of other androgens to DHT (which causes hair loss (hair) and body hair growth). They aren&#039;t general use Anti-Androgens.&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
!Brand Name(s)&lt;br /&gt;
!Substance&lt;br /&gt;
!Cost&lt;br /&gt;
!Cost with Healthcare Coverage&lt;br /&gt;
!Dosage&lt;br /&gt;
!Safety&lt;br /&gt;
!Form&lt;br /&gt;
!Type&lt;br /&gt;
!Notes&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
====== [https://www.galinos.gr/web/drugs/main/packages/26485 Dastidem], [https://www.galinos.gr/web/drugs/main/packages/25557 Rafuster], [https://www.galinos.gr/web/drugs/main/packages/25893 Duaride], [https://www.galinos.gr/web/drugs/main/packages/25894 Dustezor] ======&lt;br /&gt;
|Dutasteride&lt;br /&gt;
|7.90€/30 caps&lt;br /&gt;
|~6€/30 caps&lt;br /&gt;
|0.5mg/day (?/TBD)&lt;br /&gt;
|A-&lt;br /&gt;
|Capsule&lt;br /&gt;
| -&lt;br /&gt;
|High effectiveness.&lt;br /&gt;
|-&lt;br /&gt;
| -&lt;br /&gt;
|Finasteride&lt;br /&gt;
| -&lt;br /&gt;
| -&lt;br /&gt;
| -&lt;br /&gt;
|F&lt;br /&gt;
| -&lt;br /&gt;
| -&lt;br /&gt;
|Effectiveness is none to medium (Just take Dutasteride - will not stop conversion of Progesterone to DHT)&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== Transmasc ==&lt;br /&gt;
&lt;br /&gt;
=== Medications ===&lt;br /&gt;
&lt;br /&gt;
==== Testosterone ====&lt;br /&gt;
[https://www.galinos.gr/web/drugs/main/substances/testosterone/marketing Galinos.gr&#039;s testosterone availability page]&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|+&lt;br /&gt;
!Brand Name(s)&lt;br /&gt;
!Substance&lt;br /&gt;
!Form&lt;br /&gt;
!Method of Administration&lt;br /&gt;
!Cost&lt;br /&gt;
!Cost with Healthcare Coverage&lt;br /&gt;
!Dosage&lt;br /&gt;
!Safety&lt;br /&gt;
!Notes&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
====== [https://www.galinos.gr/web/drugs/main/packages/4929 Norma] ======&lt;br /&gt;
|Testosterone Enanthate&lt;br /&gt;
|Injection/Ampule&lt;br /&gt;
|Intramuscular&lt;br /&gt;
|17.67€/ampule &lt;br /&gt;
([https://www.galinos.gr/service/drugs/drawPackagePrice/4929 Pricemap])&lt;br /&gt;
|?&lt;br /&gt;
|?&lt;br /&gt;
|?&lt;br /&gt;
| -&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
====== [https://www.galinos.gr/web/drugs/main/packages/21943 Nebido] ======&lt;br /&gt;
|Testosterone Undecanoate&lt;br /&gt;
|Injection/Vial&lt;br /&gt;
|Intramuscular&lt;br /&gt;
|100.37€/vial&lt;br /&gt;
([https://www.galinos.gr/service/drugs/drawPackagePrice/21943 Pricemap])&lt;br /&gt;
|~32.52€/vial (you pay 25%)&lt;br /&gt;
|1 vial (1000mg/4mL)/10-20 weeks&lt;br /&gt;
|A&lt;br /&gt;
|As a starting dose &#039;&#039;&#039;after a year of HRT&#039;&#039;&#039;, you could also consider:&lt;br /&gt;
&lt;br /&gt;
* Instead of injecting one vial per 20 weeks, you do half every 10-12 weeks, however nothing could be sourced to support this. Though logically it could make sense as a practice.&lt;br /&gt;
* Do a test at 6 weeks after starting, if T is too high don&#039;t take the 2nd dose, if it&#039;s not you can take the 2nd and then test 2 weeks before every other dose.&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
====== [https://www.galinos.gr/web/drugs/main/packages/15739 Tostran] ======&lt;br /&gt;
|Testogel&lt;br /&gt;
|Gel&lt;br /&gt;
|Trans-dermally&lt;br /&gt;
|&#039;&#039;&#039;Starting dose&#039;&#039;&#039;&lt;br /&gt;
&amp;lt;!--T:82--&amp;gt;&lt;br /&gt;
* 35.54€/2 months&lt;br /&gt;
* 213.24€/year&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--T:83--&amp;gt;&lt;br /&gt;
&#039;&#039;&#039;30 mg dose&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--T:84--&amp;gt;&lt;br /&gt;
* 35.54€/40 days&lt;br /&gt;
* ~324.30€/year&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--T:85--&amp;gt;&lt;br /&gt;
&#039;&#039;&#039;40 mg dose&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--T:73--&amp;gt;&lt;br /&gt;
* 35.54€/30 days&lt;br /&gt;
* 426.48€/year&lt;br /&gt;
([https://www.galinos.gr/service/drugs/drawPackagePrice/15739 Pricemap])&lt;br /&gt;
|35.54€ -&amp;gt; 8.89€&lt;br /&gt;
|20mg/day (starting dose)&lt;br /&gt;
30-40mg/day&lt;br /&gt;
|A&lt;br /&gt;
|&lt;br /&gt;
* 1 pump of Tostran (&#039;&#039;&#039;0.5g&#039;&#039;&#039;) delivers 10 mg of T.&lt;br /&gt;
* 2 pumps of Tostran are 1 pump of Testogel (20.25mg of T)&lt;br /&gt;
* Can cause skin reactions.&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
==== GNRH Agonists ====&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
!Brand Name(s)&lt;br /&gt;
!Substance&lt;br /&gt;
! Cost&lt;br /&gt;
!Cost with Healthcare Coverage&lt;br /&gt;
!Dosage&lt;br /&gt;
!Safety&lt;br /&gt;
!Form&lt;br /&gt;
!Type&lt;br /&gt;
!Notes&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
====== [https://www.galinos.gr/web/drugs/main/drugs/Arvekap Arvekap] ======&lt;br /&gt;
|Triptorelin&lt;br /&gt;
| -&lt;br /&gt;
|~200/year?&lt;br /&gt;
|&lt;br /&gt;
|A?&lt;br /&gt;
|Injection&lt;br /&gt;
|GNRH Agonist&lt;br /&gt;
(indirectly) Stops testosterone AND estrogen production&lt;br /&gt;
|Also a puberty blocker&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
==== Other anti-androgens (optional) ====&lt;br /&gt;
These are used to block conversion of other androgens to DHT (which causes hair loss (hair) and body hair growth). They aren&#039;t general use Anti-Androgens.&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
!Brand Name(s)&lt;br /&gt;
!Substance&lt;br /&gt;
!Cost&lt;br /&gt;
!Cost with Healthcare Coverage&lt;br /&gt;
!Dosage&lt;br /&gt;
!Safety&lt;br /&gt;
!Form&lt;br /&gt;
!Type&lt;br /&gt;
!Notes&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
====== [https://www.galinos.gr/web/drugs/main/packages/26485 Dastidem], [https://www.galinos.gr/web/drugs/main/packages/25557 Rafuster], [https://www.galinos.gr/web/drugs/main/packages/25893 Duaride], [https://www.galinos.gr/web/drugs/main/packages/25894 Dustezor] ======&lt;br /&gt;
|Dutasteride&lt;br /&gt;
|7.90€/30 caps&lt;br /&gt;
|~6€/30 caps&lt;br /&gt;
|0.5mg/day (?/TBD)&lt;br /&gt;
|A-&lt;br /&gt;
|Capsule&lt;br /&gt;
| -&lt;br /&gt;
|High effectiveness. &lt;br /&gt;
Not to be confused with proper Anti-Androgens.&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== Nonbinary hrt *under construction* ==&lt;br /&gt;
&lt;br /&gt;
=== !!! disclaimer-warning about potential issues !!! ===&lt;br /&gt;
&lt;br /&gt;
=== General outline of nb hrt for amab and afab ===&lt;br /&gt;
&lt;br /&gt;
=== Medications ===&lt;br /&gt;
&lt;br /&gt;
==== Selective Estrogen Receptor Modulators (SERMs) ====&lt;br /&gt;
&lt;br /&gt;
* Tamoxifen is a selective estrogen receptor modulator (SERM). In some tissues such as the brain it activates estrogen receptors, which may help reduce dysphoria. In breast tissue it antagonizes estrogen receptors, preventing the formation of breast tissue if desired. There is some evidence that Tamoxifen inhibits memory, though the effects of taking it alongside regular estrogen are undocumented. Tamoxifen can cause cognitive dysfunction and increase your risk of stroke and pulmonary embolism. Tamoxifen may also be taken alongside 17β-estradiol, more research is needed. In this combination, estradiol should still have its effects (combating dysphoria in the brain, redistribution of body fat, smoother skin etc.) while tamoxifen prevents the growth of breast tissue.&lt;br /&gt;
* Raloxifene is another SERM. It is an estrogen receptor antagonist in breast tissue. It is an estrogen receptor agonist in bone and can be used to prevent osteoporosis. Raloxifene has been shown to reduce ERα expression in breast tissue in premenopausal women. As the synthesis of progesterone receptors (PR) is estrogen-regulated, raloxifene also decreases the expression of PR. Additionally, it was shown to decrease the presence of Ki-67, a biomarker for cell proliferation, in breast tissue of premenopausal women. As a result, it can be used to treat gynecomastia, and has been shown effective in reducing breast size in those with the condition. Raloxifene may promote feminine fat distribution: in a study on 56-66 year old postmenopausal women, there was an increase in fat in the legs and buttocks and a decrease in fat in the abdomen and trunk after 1 year on 60 mg/day raloxifene. It is not yet known how pronounced this effect is, as there have been no comparisons of body fat distribution between raloxifene and estradiol. Raloxifene may increase the risk of stroke and pulmonary embolism.&lt;br /&gt;
* Afimoxifene is a topical SERM and the primary metabolite of tamoxifen.&lt;br /&gt;
&lt;br /&gt;
==== Anti-androgens ====&lt;br /&gt;
&lt;br /&gt;
==== Bicalutamide ====&lt;br /&gt;
Bicalutamide is an  anti-androgen which is used mainly in the treatment of prostate cancer but can also be used to treat hirsutism, or as a component of hormone therapy in feminizing HRT, among other uses. It is nonsteroidal anti-androgen and a selective/pure antagonist of the androgen receptor. It has no other hormonal activity and does not lower androgen levels. Bicalutamide crosses the blood-brain barrier and blocks the effects of testosterone and dihydrotestosterone (DHT) both in the body and in the brain. While it has been observed that bicalutamide does not cross the blood-brain barrier in rats and dogs, this was found not to be the case in humans&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
In general Ralox seems the best idea based on overall effectiveness and less severe side effects compared to other SERMs. Most people on this kind of MtNB hrt seem to be using a combination of ralox (in place of estradiol) and bica [expand this + powers e1s schizo stuff?]&lt;br /&gt;
&lt;br /&gt;
== Legal ==&lt;br /&gt;
It is legal to buy anything without a diagnosis or a prescription (off the counter - OTC), Testosterone can be hit or miss, look for any product names mentioned (that have links attached to them/are blue in colour) [[HRT#Testosterone|here]].  &lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--T:86--&amp;gt;&lt;br /&gt;
You can also check the &#039;&#039;&#039;[https://diyon.top/map Trans-Friendly Pharmacies Map]&#039;&#039;&#039; for any pharmacies near you (this goes for both Transfem and Transmasc HRT). &lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--T:75--&amp;gt;&lt;br /&gt;
There is no minimum or maximum legal age for someone to start HRT. &lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--T:76--&amp;gt;&lt;br /&gt;
It is not legally mandatory for someone to have a diagnosis by a psychiatrist in order to medically transition.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--T:77--&amp;gt;&lt;br /&gt;
There is no legally mandatory time restriction for a psychiatrist to monitor you before diagnosing you.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--T:78--&amp;gt;&lt;br /&gt;
You don&#039;t legally need to be on HRT in order to be exempt from the [[army]], change your [[Legal|legal sex]], or to have a [[surgery]].&lt;br /&gt;
&lt;br /&gt;
== Other resources == &amp;lt;!--T:79--&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--T:80--&amp;gt;&lt;br /&gt;
* Simulator: https://www.estrannai.se/&lt;br /&gt;
* https://transfemscience.org/ (note, the authors of this site disagree with a lot of what they are saying, regardless, it is still interesting)&lt;br /&gt;
** Introduction to Hormone Therapy for Transfeminine People: https://transfemscience.org/articles/transfem-intro/&lt;br /&gt;
** Older simulator: https://transfemscience.org/misc/injectable-e2-simulator/&lt;br /&gt;
** Dosage calculator: https://transfemscience.org/misc/injectable-dose-vol-conc-conv/&lt;br /&gt;
* https://diyhrt.wiki/ (alt link: https://anarch.cc/transfeminine-diy-hrt-the-ultimate-guide-2/)&lt;br /&gt;
* https://hrtcafe.net/&lt;br /&gt;
* ?? https://hrt.coffee/&lt;br /&gt;
* https://www.reddit.com/r/TransDIY/&lt;br /&gt;
* https://www.reddit.com/r/TransfemScience/&lt;br /&gt;
* https://groups.io/g/MTFHRT/wiki/29602 (alt link: https://anarch.cc/mtf-hrt-ultimate-diy/)&lt;br /&gt;
* https://hrt.cat/ - info for making your own (you will probably not need it - version 1.0: https://hrtcafe.net/hrtcat/)&lt;br /&gt;
* https://archive.ph/uQb8g (alt link: https://anarch.cc/making-your-own-injections/, as above)&lt;br /&gt;
* https://crimethinc.com/2022/12/15/producing-transdermal-estrogen-a-do-it-yourself-guide (alt link: https://anarch.cc/producing-transdermal-estrogen-a-do-it-yourself-guide/, as above)&lt;br /&gt;
* https://archive.ph/cpy7k (alt link: https://anarch.cc/homebrewing-hormones-mtf-guide/, as above)&lt;br /&gt;
&amp;lt;/translate&amp;gt;&lt;/div&gt;</summary>
		<author><name>Goblinmoder</name></author>
	</entry>
	<entry>
		<id>https://wiki.diyon.top/index.php?title=HRT&amp;diff=1007</id>
		<title>HRT</title>
		<link rel="alternate" type="text/html" href="https://wiki.diyon.top/index.php?title=HRT&amp;diff=1007"/>
		<updated>2025-04-19T12:29:45Z</updated>

		<summary type="html">&lt;p&gt;Goblinmoder: minor testo inj type fixes&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{#seo:&lt;br /&gt;
|title_mode=replace&lt;br /&gt;
|title=HRT&lt;br /&gt;
|description=We are open to discussion and actively on-going changes in formatting and contents of this Page and Website (in general). The e-mail address to refer to is fox@diyon.top&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
&amp;lt;languages/&amp;gt;&lt;br /&gt;
&amp;lt;translate&amp;gt;&lt;br /&gt;
&amp;lt;!--T:41--&amp;gt;&lt;br /&gt;
After around a month on HRT some of your ranges in your [[Blood Testing|blood test]] should be within desired ranges.&lt;br /&gt;
&lt;br /&gt;
== Disclaimer ==&lt;br /&gt;
 To clarify on &#039;&#039;&#039;dosages&#039;&#039;&#039;, the values mentioned below are rather speculative and most are based on &#039;&#039;&#039;personal experiences&#039;&#039;&#039; or &#039;&#039;&#039;(diy)hrt pages/websites/papers&#039;&#039;&#039;. Therefore it is encouraged to do [[Blood Testing|blood tests]] and if possible, check with an [[Doctors#Ενδοκρινολόγοι|endocrinologist]] (we also suggest [[Doctors]] that can help with such cases), especially if you have any specific &#039;&#039;&#039;health conditions&#039;&#039;&#039;. &lt;br /&gt;
Pricemaps are there to evaluate prices through &#039;&#039;&#039;[https://galinos.gr galinos.gr]&#039;&#039;&#039; (in case something is outdated, look for the green line that says &amp;quot;Λιανική&amp;quot;)&lt;br /&gt;
&lt;br /&gt;
We are open to discussion and actively on-going changes in formatting and contents of this Page and Website (in general). The e-mail address to refer to is &#039;&#039;&#039;fox@diyon.top&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
== Blood Levels ==&lt;br /&gt;
&lt;br /&gt;
==== Refer to the [[Blood Testing]] page. ====&lt;br /&gt;
== Transfem ==&lt;br /&gt;
Taking Puberty Blockers ([[HRT#Antiandrogens and GNRH Agonists|GNRH Agonists]], e.g: Arvekap) or any Anti Androgen (e.g: Aldactone, Androcur) &#039;&#039;&#039;without [[HRT#Estrogens|Estrogens]]&#039;&#039;&#039; is generally discouraged even during youth transitioning (This is &#039;&#039;&#039;non-definitive&#039;&#039;&#039; for Enby folks)&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--T:44--&amp;gt;&lt;br /&gt;
=== Monotherapy ===&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|+&lt;br /&gt;
!Type&lt;br /&gt;
!Commercial Names&lt;br /&gt;
!Dosage&lt;br /&gt;
!Notes&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
====== Sublingual (E Valerate or Hemihydrate) ======&lt;br /&gt;
|Cyclacur (EV), Estrofem (EH, imported), Trisequens (12 pills 2mg EH, 10 pills norgestrel, 6 pills 1mg EH)&lt;br /&gt;
|&amp;gt;=8-12mg/day&lt;br /&gt;
|While it is possible, even with a smaller dosage (&#039;&#039;&#039;at least 6mg&#039;&#039;&#039;), it&#039;s not that common. Ideally, use your blood tests to &#039;&#039;&#039;minmax&#039;&#039;&#039; your doses.&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
====== Injectable Estradiol Valerate (EV) ======&lt;br /&gt;
|Neofollin (can be ordered from pharmacies near Czechia, or aptekaapo.com &#039;&#039;&#039;but they’re not on hrtcafe&#039;&#039;&#039;, not tested in Greece), Delestrogen (Vial, unavailable), Progynon Depot (Ampules, unavailable), [[File:What-excuse-me.gif|thumb|[[HRT#Other resources|my honest reaction]]]]&lt;br /&gt;
|5-7mg/5 days&lt;br /&gt;
|&lt;br /&gt;
* Due to the large spikes in levels combined with the short [https://en.wikipedia.org/wiki/Biological_half-life half-life] it is not recommended for dosages to surpass the 5 day mark because it may cause menopause symptoms.&lt;br /&gt;
* Branded versions of this medication are not available in greece.&lt;br /&gt;
* The ampules contain a certain mg and do not allow for larger dosages, they are not re-usable. It is recommended to use a vial with a cap.&lt;br /&gt;
* Look for &#039;&#039;&#039;[https://arc-w.nihr.ac.uk/Wordpress/wp-content/uploads/2015/07/Low-dead-space-syringes.png syringe dead space]([[HRT#:~:text=* = It has been mentioned that syringes account for dead space, although that is not 100% certain.|*]])&#039;&#039;&#039;, e.g. if there&#039;s &#039;&#039;&#039;0.05mL&#039;&#039;&#039; remaining after injecting, draw &#039;&#039;&#039;+0.05mL&#039;&#039;&#039; from the vial.&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
====== Injectable Estradiol Cypionate (EC) ======&lt;br /&gt;
|[[File:What-excuse-me.gif|thumb|[[HRT#Other resources|my honest reaction]]]]Depo-Estradiol (US only, unavailable),&lt;br /&gt;
|5-7mg/7 days&lt;br /&gt;
|&lt;br /&gt;
* Look for &#039;&#039;&#039;[https://arc-w.nihr.ac.uk/Wordpress/wp-content/uploads/2015/07/Low-dead-space-syringes.png syringe dead space]([[HRT#:~:text=* = It has been mentioned that syringes account for dead space, although that is not 100% certain.|*]])&#039;&#039;&#039;, e.g. if there&#039;s &#039;&#039;&#039;0.05mL&#039;&#039;&#039; remaining after injecting, draw &#039;&#039;&#039;+0.05mL&#039;&#039;&#039; from the vial.&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
====== Injectable Estradiol Enanthate (EEn) ======&lt;br /&gt;
|[[File:What-excuse-me.gif|thumb|[[HRT#Other resources|my honest reaction]]]]&lt;br /&gt;
|4-7mg/7 days&lt;br /&gt;
7-10mg/10 days (7.2mg usually, depending on the vial, it&#039;s optimal because drawing cents of mL are hard to get right)&lt;br /&gt;
|&lt;br /&gt;
* You can multiply the weekly dosage by 2, which lasts up to 14 days (as much as the [https://en.wikipedia.org/wiki/Biological_half-life half-life] of Enanthate)&lt;br /&gt;
* Look for &#039;&#039;&#039;[https://arc-w.nihr.ac.uk/Wordpress/wp-content/uploads/2015/07/Low-dead-space-syringes.png syringe dead space]([[HRT#:~:text=* = It has been mentioned that syringes account for dead space, although that is not 100% certain.|*]])&#039;&#039;&#039;, e.g. if there&#039;s &#039;&#039;&#039;0.05mL&#039;&#039;&#039; remaining after injecting, draw &#039;&#039;&#039;+0.05mL&#039;&#039;&#039; from the vial.&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
====== Injectable Estradiol Undecylate (EU/EUn) ======&lt;br /&gt;
|[[File:What-excuse-me.gif|thumb|[[HRT#Other resources|my honest reaction]]]]&lt;br /&gt;
|There&#039;s not enough information on dosage. The frequency of those may differ according to the oil used (MCT/Castor oil). Indicative Dosages:&lt;br /&gt;
15-20mg/2 weeks&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--T:45--&amp;gt;&lt;br /&gt;
20-40mg+/4 weeks&lt;br /&gt;
|&lt;br /&gt;
* There&#039;s not enough information on its [[wikipedia:Biological_half-life|half-life]], a higher dosage can be administered that can last up to 20-30 days.&lt;br /&gt;
* [[wikipedia:Intramuscular_injection|IM injections]] last longer so they give better levels during the same period of time per injection.&lt;br /&gt;
* Needs at least 90 days to reach stable levels.&lt;br /&gt;
* Look for &#039;&#039;&#039;[https://arc-w.nihr.ac.uk/Wordpress/wp-content/uploads/2015/07/Low-dead-space-syringes.png syringe dead space]([[HRT#:~:text=* = It has been mentioned that syringes account for dead space, although that is not 100% certain.|*]])&#039;&#039;&#039;, e.g. if there&#039;s &#039;&#039;&#039;0.05mL&#039;&#039;&#039; remaining after injecting, draw &#039;&#039;&#039;+0.05mL&#039;&#039;&#039; from the vial.&lt;br /&gt;
|}&lt;br /&gt;
&#039;&#039;&#039;*&#039;&#039;&#039; = It has been mentioned that syringes account for dead space, although that is not 100% certain.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--T:46--&amp;gt;&lt;br /&gt;
=== Sublingual vs Oral ===&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|+&lt;br /&gt;
!Method&lt;br /&gt;
!Substance&lt;br /&gt;
!Dosage&lt;br /&gt;
!Observations&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
====== Oral ======&lt;br /&gt;
|Estradiol Valerate in pill form (e.g. Cyclacur)&lt;br /&gt;
|&amp;gt;=6mg/day&lt;br /&gt;
(max 10mg as per Dr. Powers)&lt;br /&gt;
|It is recommended that doses are taken separately on set time intervals during the day for more stable estradiol levels, e.g. for a 6mg dose you would take 2mg per 8 hours. By the oral route the active substance is metabolized by the liver and part of it is converted to estrone (E1), which has much less feminizing effects than estradiol (E2) so the desired effect is essentially prevented. The bioavailability of estradiol by oral administration is very low (~5%) and usually lower levels of E2 are observed in blood tests than other methods of administration. [anecdotal apo to server, wikipedia kai tttt - correct/expand?] It is also necessary to administer anti-androgens to reduce testosterone levels to the female range.&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
====== Sublingual ======&lt;br /&gt;
|Estradiol Valerate in pill form (e.g. Cyclacur)&lt;br /&gt;
|&amp;gt;=4mg/day&lt;br /&gt;
|It is recommended that doses are taken separately on set time intervals during the day for more stable estradiol levels, e.g. for a 6mg dose you would take 2mg per 8 hours. The sublingual way bypasses estradiol metabolism by the liver and has about 5 times the estradiol bioavailability of the oral way. This way, estradiol levels have greater range than orally (higher peak lower bottom), in oral they remain higher for ~12 hours while sublingually they go away after 3-4 hours (This however is from a study from 2005 on cis women)&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== Vial info === &amp;lt;!--T:47--&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--T:48--&amp;gt;&lt;br /&gt;
=== Medications ===&lt;br /&gt;
For cyclacur: &#039;&#039;&#039;take only the white pills, the brown pills are Norgestrel which have 0.5mg of estradiol but has an androgenic effect and may also cause other side effects&#039;&#039;&#039;. &lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--T:49--&amp;gt;&lt;br /&gt;
==== Estrogens ====&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|+&lt;br /&gt;
!Brand Name(s)&lt;br /&gt;
!Substance&lt;br /&gt;
!Form&lt;br /&gt;
!Method of Administration&lt;br /&gt;
!Cost&lt;br /&gt;
!Cost with Healthcare Coverage&lt;br /&gt;
!Dosage&lt;br /&gt;
!Safety&lt;br /&gt;
!Notes&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
====== [https://www.galinos.gr/web/drugs/main/drugs/Cyclacur Cyclacur] ======&lt;br /&gt;
|Estradiol Valerate (EV)&lt;br /&gt;
|Pill tablet&lt;br /&gt;
|Orally or sublingually&lt;br /&gt;
|2.01€ for 11 pills ([https://www.galinos.gr/service/drugs/drawPackagePrice/1198 Pricemap])&lt;br /&gt;
~130.8-328.€/year&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--T:50--&amp;gt;&lt;br /&gt;
~10.9-27.4€/month&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--T:51--&amp;gt;&lt;br /&gt;
Prices are indicative, the cost depends on the dosage.&lt;br /&gt;
| -&lt;br /&gt;
|6mg-10mg/day (according to Dr. Will Powers)&lt;br /&gt;
4mg-8mg/day (according to Greek Endocrinologists)&lt;br /&gt;
|A&lt;br /&gt;
|&lt;br /&gt;
* &#039;&#039;&#039;Only white pills are used.&#039;&#039;&#039; Brown pills do have a bit of estradiol but arent taken due to other side effects.&lt;br /&gt;
* You need antiandrogens or GNRH antagonists if you haven&#039;t had an orchiectomy.&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
====== Progynova ======&lt;br /&gt;
|Estradiol Valerate (EV)&lt;br /&gt;
|Pill tablet&lt;br /&gt;
|Orally or sublingually&lt;br /&gt;
|~22€ for 72 pills of 1 mg or ~32€ for 72 pills of 2 mg&lt;br /&gt;
Prices are indicative, the cost depends on the dosage.&lt;br /&gt;
| -&lt;br /&gt;
|4mg-8mg/day&lt;br /&gt;
|A&lt;br /&gt;
|&lt;br /&gt;
* There is no reason to use it in Greece since Cyclacur is available in Greek pharmacies.&lt;br /&gt;
* You need antiandrogens or GNRH antagonists if you haven&#039;t had an orchiectomy.&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
====== Estrofem, Estrifam (german brand name), [https://www.galinos.gr/web/drugs/main/drugs/trisequens Trisequens] ======&lt;br /&gt;
|Estradiol Hemihydrate&lt;br /&gt;
|Pill tablet&lt;br /&gt;
|Orally or sublingually&lt;br /&gt;
|~30€ for 28 pills of 2 mg without shipping costs.&lt;br /&gt;
Prices are indicative, the cost depends on the dosage.&lt;br /&gt;
| -&lt;br /&gt;
|4mg-8mg/day&lt;br /&gt;
|A&lt;br /&gt;
|&lt;br /&gt;
* There is no reason to use it in Greece since Cyclacur is available in Greek pharmacies.&lt;br /&gt;
* You need antiandrogens or GNRH antagonists if you haven&#039;t had an orchiectomy.&lt;br /&gt;
* Trisequens, while being available in Greece, is odd to take with 12 pills being 2mg EH, 10 norgestrel, and 6 1mg EH, for a much higher price than [[HRT#Cyclacur|Cyclacur]].&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
====== [https://www.galinos.gr/web/drugs/main/drugs/Dermestril Dermestril] ======&lt;br /&gt;
|Estradiol Hemihydrate&lt;br /&gt;
|Patch&lt;br /&gt;
|Trans-dermally&lt;br /&gt;
|44€ for 24 patches of 100mcg&lt;br /&gt;
~15€ for 8 patches of 50mcg&lt;br /&gt;
| -&lt;br /&gt;
|50mcg/3.5 days (when starting off)&lt;br /&gt;
100mcg/3.5 days (whenever your e2 levels are stable)&lt;br /&gt;
|A&lt;br /&gt;
|&lt;br /&gt;
* &#039;&#039;&#039;If you have no idea how to apply patches watch this:&#039;&#039;&#039; [https://youtu.be/tXGIYWPqdpI?si=O0dlE19pq0ic0PZP Demonstrational Video]&lt;br /&gt;
* You need antiandrogens or GNRH antagonists if you haven&#039;t had an orchiectomy.&lt;br /&gt;
* 100mcg patches can be cut into 2 if needed.&lt;br /&gt;
|-&lt;br /&gt;
|Neofollin (can be ordered from pharmacies near Czechia, not tested in Greece), Delestrogen (Vial, unavailable), Progynon Depot (Ampules, unavailable)&lt;br /&gt;
|&lt;br /&gt;
====== Estradiol Valerate (EV) ======&lt;br /&gt;
|Injectable&lt;br /&gt;
|Subcutaneous or Intramuscular&lt;br /&gt;
|80€/year (including shipping costs, syringes and alcohol swabs)&lt;br /&gt;
| -&lt;br /&gt;
|5-7mg/5 days (monotherapy)&lt;br /&gt;
4-5mg/7 days (only in combination with an antiandrogen or GNRH agonist)&lt;br /&gt;
|A+&lt;br /&gt;
|&lt;br /&gt;
* It can be used without antiandrogens or GNRH agonists in ([[HRT#Μονοθεραπεία|Monotherapy]]) by increasing the dosage.&lt;br /&gt;
|-&lt;br /&gt;
|Depo-Estradiol (US only, unavailable)&lt;br /&gt;
|&lt;br /&gt;
====== Estradiol Cypionate (EC) ======&lt;br /&gt;
|Injectable&lt;br /&gt;
|Subcutaneous or Intramuscular&lt;br /&gt;
|~70-80€/year (not including shipping costs, syringes and alcohol swabs)&lt;br /&gt;
| -&lt;br /&gt;
|5-7mg/7 days&lt;br /&gt;
(&#039;&#039;&#039;mono dose&#039;&#039;&#039;)&lt;br /&gt;
? (TBD/&#039;&#039;&#039;dose with AA&#039;&#039;&#039;)&lt;br /&gt;
|?&lt;br /&gt;
|&lt;br /&gt;
* It can be used without antiandrogens or GNRH agonists in ([[HRT#Μονοθεραπεία|Monotherapy]])&lt;br /&gt;
|-&lt;br /&gt;
| -&lt;br /&gt;
|&lt;br /&gt;
====== Estradiol Enanthate (EEn) ======&lt;br /&gt;
|Injectable&lt;br /&gt;
|Subcutaneous or Intramuscular&lt;br /&gt;
|80€/year (including shipping costs, syringes and alcohol swabs)&lt;br /&gt;
| -&lt;br /&gt;
|2.5mg-7mg/7 days&lt;br /&gt;
(usual dosage: 4mg/7days)&lt;br /&gt;
|A+&lt;br /&gt;
|&lt;br /&gt;
* It can be used without antiandrogens or GNRH agonists in ([[HRT#Μονοθεραπεία|Monotherapy]]) by increasing the dosage.&lt;br /&gt;
|-&lt;br /&gt;
| -&lt;br /&gt;
|&lt;br /&gt;
====== Estradiol Undecylate (EU, EUn) ======&lt;br /&gt;
|Injectable&lt;br /&gt;
|Subcutaneous or Intramuscular&lt;br /&gt;
|130€/year (including shipping costs, syringes and alcohol swabs)&lt;br /&gt;
| -&lt;br /&gt;
|15-20mg/2 weeks&lt;br /&gt;
20-40mg+/4 weeks&lt;br /&gt;
|A+&lt;br /&gt;
|&lt;br /&gt;
* There&#039;s not much info on dosages, usually seen in [[HRT#Μονοθεραπεία|monotherapy]].&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--T:52--&amp;gt;&lt;br /&gt;
==== Anti-Androgens and GNRH Agonists ====&lt;br /&gt;
These should &#039;&#039;&#039;not&#039;&#039;&#039; be taken sublingually.&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|+&lt;br /&gt;
!Brand Name(s)&lt;br /&gt;
!Substance&lt;br /&gt;
!Cost&lt;br /&gt;
!Cost with Healthcare Coverage&lt;br /&gt;
!Dosage&lt;br /&gt;
!Safety&lt;br /&gt;
!Form&lt;br /&gt;
!Type&lt;br /&gt;
!Notes&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
====== [https://www.galinos.gr/web/drugs/main/drugs/Androcur Androcur] ======&lt;br /&gt;
|Cyproterone Acetate (CPA) is also referred to as cypro&lt;br /&gt;
|21.58€/50mg * 50 pills &lt;br /&gt;
19.7-31.5€/year&lt;br /&gt;
&lt;br /&gt;
([https://www.galinos.gr/service/drugs/drawPackagePrice/8023 Pricemap])&lt;br /&gt;
|?&lt;br /&gt;
|12.5mg/2 days- 10mg/day&lt;br /&gt;
&#039;&#039;&#039;Larger doses shouldn&#039;t be administered&#039;&#039;&#039;&lt;br /&gt;
|C&lt;br /&gt;
|Pill tablet&lt;br /&gt;
|Progestin (Steroidal antiandrogen)&lt;br /&gt;
Stops testosterone production.&lt;br /&gt;
|The max recommended dosage is 10mg/day . Monitoring of prolactin levels is recommended through [[Blood Testing#MTF|blood testing]].&lt;br /&gt;
&#039;&#039;&#039;Many doctors give overdoses of 50 mg/day. Cyproterone is a strong anti-androgen and testosterone suppression is possible with lower doses. A change of doctor is recommended.&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--T:53--&amp;gt;&lt;br /&gt;
[[wikipedia:Side_effects_of_cyproterone_acetate|Side Effects]]:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--T:54--&amp;gt;&lt;br /&gt;
* Benign brain tumor.&lt;br /&gt;
* In rare cases, liver damage.&lt;br /&gt;
* Vitamin B12 deficiency.&lt;br /&gt;
* Breast cancer.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--T:55--&amp;gt;&lt;br /&gt;
Testosterone suppression can be achieved with even lower doses, however a 50 mg pill is difficult to cut into pieces of less than 12.5 mg even with a pill cutter.&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
====== [https://www.galinos.gr/web/drugs/main/drugs/Bicalut Bicalut] ======&lt;br /&gt;
|Bicalutamide (aka: bica)&lt;br /&gt;
|29.10 euro/30 pills&lt;br /&gt;
29.10 euro/month&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--T:56--&amp;gt;&lt;br /&gt;
~350 euro/year&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
([https://www.galinos.gr/service/drugs/drawPackagePrice/11120 Pricemap])&lt;br /&gt;
|6.77 euro/month (28 tabs)&lt;br /&gt;
~95 euro/year&lt;br /&gt;
|50mg/day&lt;br /&gt;
|A-&lt;br /&gt;
|Pill/Tablet&lt;br /&gt;
|Androgen receptor antagonist (Nonsteroidal antiandrogen)&lt;br /&gt;
Blocks absorption of all androgens (including testosterone)&lt;br /&gt;
|&#039;&#039;&#039;Serious negative interactions can be noted if combined with other anti-androgens and GNRH agonists (except progesterone)&#039;&#039;&#039;&lt;br /&gt;
&#039;&#039;&#039;Very rare&#039;&#039;&#039; chance for recoverable and non-fatal liver damage for people with a certain rare mutation.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--T:57--&amp;gt;&lt;br /&gt;
Most of the effects listen in the instruction manual are scaremongering. (it lists a very high chance of liver issues when they are actually very rare, and also lists photosensitivity, which if it even occurs at all, it should be quite rare. We are aware of nobody who had a negative interction between alexandrite laser hair removal and bicalutamide).&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--T:58--&amp;gt;&lt;br /&gt;
Note that bicalutamide, unlike most other anti-androgens, &#039;&#039;&#039;does not&#039;&#039;&#039; lower testosterone levels, in fact they usually rise as the body responds to testosterone receptors being inhibited. Do not be alarmed if you notice an increase of testosterone in your blood tests.&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
====== [https://www.galinos.gr/web/drugs/main/drugs/Arvekap Arvekap] ======&lt;br /&gt;
|Triptorelin&lt;br /&gt;
| -&lt;br /&gt;
|~200/year?&lt;br /&gt;
|&lt;br /&gt;
|A?&lt;br /&gt;
|Injection&lt;br /&gt;
|GNRH Agonist&lt;br /&gt;
(indirectly) Stops testosterone AND estrogen production&lt;br /&gt;
|Also a puberty blocker&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
====== [https://www.galinos.gr/web/drugs/main/drugs/aldactone Aldactone] ======&lt;br /&gt;
|Spironolactone&lt;br /&gt;
|5.19 euro/20 tabs (100mg)&lt;br /&gt;
([https://www.galinos.gr/service/drugs/drawPackagePrice/148 Pricemap])&lt;br /&gt;
|?&lt;br /&gt;
|50mg-200mg/day&lt;br /&gt;
|B-C&lt;br /&gt;
|Tablet&lt;br /&gt;
|Antimineralocorticoid/MCRA&lt;br /&gt;
|Very inefficient, makes you pee, it&#039;s a medication for blood pressure&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
|Flutamide&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|F---&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|Only in this table as an example to avoid&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
==== Miscellaneous/Progesterone ====&lt;br /&gt;
Progesterone falls under this category, as it is not quite the same as other Anti-Androgens, the mention of Progesterone in this title is necessary in order to reduce confusion and questions such as &amp;quot;Where is progesterone?&amp;quot; and &amp;quot;Did you remove prog from the page?&amp;quot;.&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
!Brand Name(s)&lt;br /&gt;
!Substance&lt;br /&gt;
!Cost&lt;br /&gt;
!Cost with Healthcare Coverage&lt;br /&gt;
!Dosage&lt;br /&gt;
!Safety&lt;br /&gt;
!Form&lt;br /&gt;
!Type&lt;br /&gt;
!Notes&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
====== [https://www.galinos.gr/web/drugs/main/drugs/utrogestran Utrogestan] ======&lt;br /&gt;
|Progesterone (P4) it is also referred to as prog&lt;br /&gt;
|5.83 euro/30 caps (100mg)&lt;br /&gt;
8.08 euro/15 caps (200mg)&lt;br /&gt;
([https://www.galinos.gr/service/drugs/drawPackagePrice/7619 Pricemap])&lt;br /&gt;
|?&lt;br /&gt;
|100mg or 200mg daily (rectal administration, [[Blood Testing|blood tests]] are recommended)&lt;br /&gt;
|A&lt;br /&gt;
|Capsule&lt;br /&gt;
|Stops testosterone production.&lt;br /&gt;
|There is not much confirmed information about progesterone.&lt;br /&gt;
It can also be taken orally but the absorption rate is very low.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--T:59--&amp;gt;&lt;br /&gt;
Anecdotal claims:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--T:60--&amp;gt;&lt;br /&gt;
* Helps with breast development and with feminization in general.&lt;br /&gt;
* Can be given after one year of estradiol.&lt;br /&gt;
* Suggested to be given after the individual reaches Tanner stage 3.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--T:61--&amp;gt;&lt;br /&gt;
It can have androgenic or other (non-serious, recoverable) effects for some individuals - in particular it can be converted to DHT by the body even in combination with dutasteride or bicalutamide.&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--T:62--&amp;gt;&lt;br /&gt;
==== Other anti-androgens (optional) ====&lt;br /&gt;
These are used to block conversion of other androgens to DHT (which causes hair loss (hair) and body hair growth). They aren&#039;t general use Anti-Androgens.&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
!Brand Name(s)&lt;br /&gt;
!Substance&lt;br /&gt;
!Cost&lt;br /&gt;
!Cost with Healthcare Coverage&lt;br /&gt;
!Dosage&lt;br /&gt;
!Safety&lt;br /&gt;
!Form&lt;br /&gt;
!Type&lt;br /&gt;
!Notes&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
====== [https://www.galinos.gr/web/drugs/main/packages/26485 Dastidem], [https://www.galinos.gr/web/drugs/main/packages/25557 Rafuster], [https://www.galinos.gr/web/drugs/main/packages/25893 Duaride], [https://www.galinos.gr/web/drugs/main/packages/25894 Dustezor] ======&lt;br /&gt;
|Dutasteride&lt;br /&gt;
|7.90€/30 caps&lt;br /&gt;
|~6€/30 caps&lt;br /&gt;
|0.5mg/day (?/TBD)&lt;br /&gt;
|A-&lt;br /&gt;
|Capsule&lt;br /&gt;
| -&lt;br /&gt;
|High effectiveness.&lt;br /&gt;
|-&lt;br /&gt;
| -&lt;br /&gt;
|Finasteride&lt;br /&gt;
| -&lt;br /&gt;
| -&lt;br /&gt;
| -&lt;br /&gt;
|F&lt;br /&gt;
| -&lt;br /&gt;
| -&lt;br /&gt;
|Effectiveness is none to medium (Just take Dutasteride - will not stop conversion of Progesterone to DHT)&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== Transmasc ==&lt;br /&gt;
&lt;br /&gt;
=== Medications ===&lt;br /&gt;
&lt;br /&gt;
==== Testosterone ====&lt;br /&gt;
[https://www.galinos.gr/web/drugs/main/substances/testosterone/marketing Galinos.gr&#039;s testosterone availability page]&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|+&lt;br /&gt;
!Brand Name(s)&lt;br /&gt;
!Substance&lt;br /&gt;
!Form&lt;br /&gt;
!Method of Administration&lt;br /&gt;
!Cost&lt;br /&gt;
!Cost with Healthcare Coverage&lt;br /&gt;
!Dosage&lt;br /&gt;
!Safety&lt;br /&gt;
!Notes&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
====== [https://www.galinos.gr/web/drugs/main/packages/4929 Norma] ======&lt;br /&gt;
|Testosterone Enanthate&lt;br /&gt;
|Injection/Ampule&lt;br /&gt;
|Intramuscular&lt;br /&gt;
|17.67€/ampule &lt;br /&gt;
([https://www.galinos.gr/service/drugs/drawPackagePrice/4929 Pricemap])&lt;br /&gt;
|?&lt;br /&gt;
|?&lt;br /&gt;
|?&lt;br /&gt;
| -&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
====== [https://www.galinos.gr/web/drugs/main/packages/21943 Nebido] ======&lt;br /&gt;
|Testosterone Undecanoate&lt;br /&gt;
|Injection/Vial&lt;br /&gt;
|Intramuscular&lt;br /&gt;
|100.37€/vial&lt;br /&gt;
([https://www.galinos.gr/service/drugs/drawPackagePrice/21943 Pricemap])&lt;br /&gt;
|~32.52€/vial (you pay 25%)&lt;br /&gt;
|1 vial (1000mg/4mL)/10-20 weeks&lt;br /&gt;
|A&lt;br /&gt;
|As a starting dose &#039;&#039;&#039;after a year of HRT&#039;&#039;&#039;, you could also consider:&lt;br /&gt;
&lt;br /&gt;
* Instead of injecting one vial per 20 weeks, you do half every 10-12 weeks, however nothing could be sourced to support this. Though logically it could make sense as a practice.&lt;br /&gt;
* Do a test at 6 weeks after starting, if T is too high don&#039;t take the 2nd dose, if it&#039;s not you can take the 2nd and then test 2 weeks before every other dose.&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
====== [https://www.galinos.gr/web/drugs/main/packages/15739 Tostran] ======&lt;br /&gt;
|Testogel&lt;br /&gt;
|Gel&lt;br /&gt;
|Trans-dermally&lt;br /&gt;
|&#039;&#039;&#039;Starting dose&#039;&#039;&#039;&lt;br /&gt;
&amp;lt;!--T:82--&amp;gt;&lt;br /&gt;
* 35.54€/2 months&lt;br /&gt;
* 213.24€/year&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--T:83--&amp;gt;&lt;br /&gt;
&#039;&#039;&#039;30 mg dose&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--T:84--&amp;gt;&lt;br /&gt;
* 35.54€/40 days&lt;br /&gt;
* ~324.30€/year&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--T:85--&amp;gt;&lt;br /&gt;
&#039;&#039;&#039;40 mg dose&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--T:73--&amp;gt;&lt;br /&gt;
* 35.54€/30 days&lt;br /&gt;
* 426.48€/year&lt;br /&gt;
([https://www.galinos.gr/service/drugs/drawPackagePrice/15739 Pricemap])&lt;br /&gt;
|35.54€ -&amp;gt; 8.89€&lt;br /&gt;
|20mg/day (starting dose)&lt;br /&gt;
30-40mg/day&lt;br /&gt;
|A&lt;br /&gt;
|&lt;br /&gt;
* 1 pump of Tostran (&#039;&#039;&#039;0.5g&#039;&#039;&#039;) delivers 10 mg of T.&lt;br /&gt;
* 2 pumps of Tostran are 1 pump of Testogel (20.25mg of T)&lt;br /&gt;
* Can cause skin reactions.&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
==== GNRH Agonists ====&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
!Brand Name(s)&lt;br /&gt;
!Substance&lt;br /&gt;
! Cost&lt;br /&gt;
!Cost with Healthcare Coverage&lt;br /&gt;
!Dosage&lt;br /&gt;
!Safety&lt;br /&gt;
!Form&lt;br /&gt;
!Type&lt;br /&gt;
!Notes&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
====== [https://www.galinos.gr/web/drugs/main/drugs/Arvekap Arvekap] ======&lt;br /&gt;
|Triptorelin&lt;br /&gt;
| -&lt;br /&gt;
|~200/year?&lt;br /&gt;
|&lt;br /&gt;
|A?&lt;br /&gt;
|Injection&lt;br /&gt;
|GNRH Agonist&lt;br /&gt;
(indirectly) Stops testosterone AND estrogen production&lt;br /&gt;
|Also a puberty blocker&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
==== Other anti-androgens (optional) ====&lt;br /&gt;
These are used to block conversion of other androgens to DHT (which causes hair loss (hair) and body hair growth). They aren&#039;t general use Anti-Androgens.&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
!Brand Name(s)&lt;br /&gt;
!Substance&lt;br /&gt;
!Cost&lt;br /&gt;
!Cost with Healthcare Coverage&lt;br /&gt;
!Dosage&lt;br /&gt;
!Safety&lt;br /&gt;
!Form&lt;br /&gt;
!Type&lt;br /&gt;
!Notes&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
====== [https://www.galinos.gr/web/drugs/main/packages/26485 Dastidem], [https://www.galinos.gr/web/drugs/main/packages/25557 Rafuster], [https://www.galinos.gr/web/drugs/main/packages/25893 Duaride], [https://www.galinos.gr/web/drugs/main/packages/25894 Dustezor] ======&lt;br /&gt;
|Dutasteride&lt;br /&gt;
|7.90€/30 caps&lt;br /&gt;
|~6€/30 caps&lt;br /&gt;
|0.5mg/day (?/TBD)&lt;br /&gt;
|A-&lt;br /&gt;
|Capsule&lt;br /&gt;
| -&lt;br /&gt;
|High effectiveness. &lt;br /&gt;
Not to be confused with proper Anti-Androgens.&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== Nonbinary hrt *under construction* ==&lt;br /&gt;
&lt;br /&gt;
=== !!! disclaimer-warning about potential issues !!! ===&lt;br /&gt;
&lt;br /&gt;
=== General outline of nb hrt for amab and afab ===&lt;br /&gt;
&lt;br /&gt;
=== Medications ===&lt;br /&gt;
&lt;br /&gt;
==== Selective Estrogen Receptor Modulators (SERMs) ====&lt;br /&gt;
&lt;br /&gt;
* Tamoxifen is a selective estrogen receptor modulator (SERM). In some tissues such as the brain it activates estrogen receptors, which may help reduce dysphoria. In breast tissue it antagonizes estrogen receptors, preventing the formation of breast tissue if desired. There is some evidence that Tamoxifen inhibits memory, though the effects of taking it alongside regular estrogen are undocumented. Tamoxifen can cause cognitive dysfunction and increase your risk of stroke and pulmonary embolism. Tamoxifen may also be taken alongside 17β-estradiol, more research is needed. In this combination, estradiol should still have its effects (combating dysphoria in the brain, redistribution of body fat, smoother skin etc.) while tamoxifen prevents the growth of breast tissue.&lt;br /&gt;
* Raloxifene is another SERM. It is an estrogen receptor antagonist in breast tissue. It is an estrogen receptor agonist in bone and can be used to prevent osteoporosis. Raloxifene has been shown to reduce ERα expression in breast tissue in premenopausal women. As the synthesis of progesterone receptors (PR) is estrogen-regulated, raloxifene also decreases the expression of PR. Additionally, it was shown to decrease the presence of Ki-67, a biomarker for cell proliferation, in breast tissue of premenopausal women. As a result, it can be used to treat gynecomastia, and has been shown effective in reducing breast size in those with the condition. Raloxifene may promote feminine fat distribution: in a study on 56-66 year old postmenopausal women, there was an increase in fat in the legs and buttocks and a decrease in fat in the abdomen and trunk after 1 year on 60 mg/day raloxifene. It is not yet known how pronounced this effect is, as there have been no comparisons of body fat distribution between raloxifene and estradiol. Raloxifene may increase the risk of stroke and pulmonary embolism.&lt;br /&gt;
* Afimoxifene is a topical SERM and the primary metabolite of tamoxifen.&lt;br /&gt;
&lt;br /&gt;
==== Anti-androgens ====&lt;br /&gt;
&lt;br /&gt;
==== Bicalutamide ====&lt;br /&gt;
Bicalutamide is an  anti-androgen which is used mainly in the treatment of prostate cancer but can also be used to treat hirsutism, or as a component of hormone therapy in feminizing HRT, among other uses. It is nonsteroidal anti-androgen and a selective/pure antagonist of the androgen receptor. It has no other hormonal activity and does not lower androgen levels. Bicalutamide crosses the blood-brain barrier and blocks the effects of testosterone and dihydrotestosterone (DHT) both in the body and in the brain. While it has been observed that bicalutamide does not cross the blood-brain barrier in rats and dogs, this was found not to be the case in humans&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
In general Ralox seems the best idea based on overall effectiveness and less severe side effects compared to other SERMs. Most people on this kind of MtNB hrt seem to be using a combination of ralox (in place of estradiol) and bica [expand this + powers e1s schizo stuff?]&lt;br /&gt;
&lt;br /&gt;
== Legal ==&lt;br /&gt;
It is legal to buy anything without a diagnosis or a prescription (off the counter - OTC), Testosterone can be hit or miss, look for any product names mentioned (that have links attached to them/are blue in colour) [[HRT#Transmasc|here]].  &lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--T:86--&amp;gt;&lt;br /&gt;
You can also check the &#039;&#039;&#039;[https://diyon.top/map Trans-Friendly Pharmacies Map]&#039;&#039;&#039; for any pharmacies near you (this goes for both Transfem and Transmasc HRT). &lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--T:75--&amp;gt;&lt;br /&gt;
There is no minimum or maximum legal age for someone to start HRT. &lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--T:76--&amp;gt;&lt;br /&gt;
It is not legally mandatory for someone to have a diagnosis by a psychiatrist in order to medically transition.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--T:77--&amp;gt;&lt;br /&gt;
There is no legally mandatory time restriction for a psychiatrist to monitor you before diagnosing you.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--T:78--&amp;gt;&lt;br /&gt;
You don&#039;t legally need to be on HRT in order to be exempt from the [[army]], change your [[Legal|legal sex]], or to have a [[surgery]].&lt;br /&gt;
&lt;br /&gt;
== Other resources == &amp;lt;!--T:79--&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--T:80--&amp;gt;&lt;br /&gt;
* Simulator: https://www.estrannai.se/&lt;br /&gt;
* https://transfemscience.org/ (note, the authors of this site disagree with a lot of what they are saying, regardless, it is still interesting)&lt;br /&gt;
** Introduction to Hormone Therapy for Transfeminine People: https://transfemscience.org/articles/transfem-intro/&lt;br /&gt;
** Older simulator: https://transfemscience.org/misc/injectable-e2-simulator/&lt;br /&gt;
** Dosage calculator: https://transfemscience.org/misc/injectable-dose-vol-conc-conv/&lt;br /&gt;
* https://diyhrt.wiki/ (alt link: https://anarch.cc/transfeminine-diy-hrt-the-ultimate-guide-2/)&lt;br /&gt;
* https://hrtcafe.net/&lt;br /&gt;
* ?? https://hrt.coffee/&lt;br /&gt;
* https://www.reddit.com/r/TransDIY/&lt;br /&gt;
* https://www.reddit.com/r/TransfemScience/&lt;br /&gt;
* https://groups.io/g/MTFHRT/wiki/29602 (alt link: https://anarch.cc/mtf-hrt-ultimate-diy/)&lt;br /&gt;
* https://hrt.cat/ - info for making your own (you will probably not need it - version 1.0: https://hrtcafe.net/hrtcat/)&lt;br /&gt;
* https://archive.ph/uQb8g (alt link: https://anarch.cc/making-your-own-injections/, as above)&lt;br /&gt;
* https://crimethinc.com/2022/12/15/producing-transdermal-estrogen-a-do-it-yourself-guide (alt link: https://anarch.cc/producing-transdermal-estrogen-a-do-it-yourself-guide/, as above)&lt;br /&gt;
* https://archive.ph/cpy7k (alt link: https://anarch.cc/homebrewing-hormones-mtf-guide/, as above)&lt;br /&gt;
&amp;lt;/translate&amp;gt;&lt;/div&gt;</summary>
		<author><name>Goblinmoder</name></author>
	</entry>
	<entry>
		<id>https://wiki.diyon.top/index.php?title=HRT&amp;diff=1006</id>
		<title>HRT</title>
		<link rel="alternate" type="text/html" href="https://wiki.diyon.top/index.php?title=HRT&amp;diff=1006"/>
		<updated>2025-04-19T09:14:00Z</updated>

		<summary type="html">&lt;p&gt;Goblinmoder: change testosterone suggestion to redirect&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{#seo:&lt;br /&gt;
|title_mode=replace&lt;br /&gt;
|title=HRT&lt;br /&gt;
|description=We are open to discussion and actively on-going changes in formatting and contents of this Page and Website (in general). The e-mail address to refer to is fox@diyon.top&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
&amp;lt;languages/&amp;gt;&lt;br /&gt;
&amp;lt;translate&amp;gt;&lt;br /&gt;
&amp;lt;!--T:41--&amp;gt;&lt;br /&gt;
After around a month on HRT some of your ranges in your [[Blood Testing|blood test]] should be within desired ranges.&lt;br /&gt;
&lt;br /&gt;
== Disclaimer ==&lt;br /&gt;
 To clarify on &#039;&#039;&#039;dosages&#039;&#039;&#039;, the values mentioned below are rather speculative and most are based on &#039;&#039;&#039;personal experiences&#039;&#039;&#039; or &#039;&#039;&#039;(diy)hrt pages/websites/papers&#039;&#039;&#039;. Therefore it is encouraged to do [[Blood Testing|blood tests]] and if possible, check with an [[Doctors#Ενδοκρινολόγοι|endocrinologist]] (we also suggest [[Doctors]] that can help with such cases), especially if you have any specific &#039;&#039;&#039;health conditions&#039;&#039;&#039;. &lt;br /&gt;
Pricemaps are there to evaluate prices through &#039;&#039;&#039;[https://galinos.gr galinos.gr]&#039;&#039;&#039; (in case something is outdated, look for the green line that says &amp;quot;Λιανική&amp;quot;)&lt;br /&gt;
&lt;br /&gt;
We are open to discussion and actively on-going changes in formatting and contents of this Page and Website (in general). The e-mail address to refer to is &#039;&#039;&#039;fox@diyon.top&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
== Blood Levels ==&lt;br /&gt;
&lt;br /&gt;
==== Refer to the [[Blood Testing]] page. ====&lt;br /&gt;
== Transfem ==&lt;br /&gt;
Taking Puberty Blockers ([[HRT#Antiandrogens and GNRH Agonists|GNRH Agonists]], e.g: Arvekap) or any Anti Androgen (e.g: Aldactone, Androcur) &#039;&#039;&#039;without [[HRT#Estrogens|Estrogens]]&#039;&#039;&#039; is generally discouraged even during youth transitioning (This is &#039;&#039;&#039;non-definitive&#039;&#039;&#039; for Enby folks)&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--T:44--&amp;gt;&lt;br /&gt;
=== Monotherapy ===&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|+&lt;br /&gt;
!Type&lt;br /&gt;
!Commercial Names&lt;br /&gt;
!Dosage&lt;br /&gt;
!Notes&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
====== Sublingual (E Valerate or Hemihydrate) ======&lt;br /&gt;
|Cyclacur (EV), Estrofem (EH, imported), Trisequens (12 pills 2mg EH, 10 pills norgestrel, 6 pills 1mg EH)&lt;br /&gt;
|&amp;gt;=8-12mg/day&lt;br /&gt;
|While it is possible, even with a smaller dosage (&#039;&#039;&#039;at least 6mg&#039;&#039;&#039;), it&#039;s not that common. Ideally, use your blood tests to &#039;&#039;&#039;minmax&#039;&#039;&#039; your doses.&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
====== Injectable Estradiol Valerate (EV) ======&lt;br /&gt;
|Neofollin (can be ordered from pharmacies near Czechia, or aptekaapo.com &#039;&#039;&#039;but they’re not on hrtcafe&#039;&#039;&#039;, not tested in Greece), Delestrogen (Vial, unavailable), Progynon Depot (Ampules, unavailable), [[File:What-excuse-me.gif|thumb|[[HRT#Other resources|my honest reaction]]]]&lt;br /&gt;
|5-7mg/5 days&lt;br /&gt;
|&lt;br /&gt;
* Due to the large spikes in levels combined with the short [https://en.wikipedia.org/wiki/Biological_half-life half-life] it is not recommended for dosages to surpass the 5 day mark because it may cause menopause symptoms.&lt;br /&gt;
* Branded versions of this medication are not available in greece.&lt;br /&gt;
* The ampules contain a certain mg and do not allow for larger dosages, they are not re-usable. It is recommended to use a vial with a cap.&lt;br /&gt;
* Look for &#039;&#039;&#039;[https://arc-w.nihr.ac.uk/Wordpress/wp-content/uploads/2015/07/Low-dead-space-syringes.png syringe dead space]([[HRT#:~:text=* = It has been mentioned that syringes account for dead space, although that is not 100% certain.|*]])&#039;&#039;&#039;, e.g. if there&#039;s &#039;&#039;&#039;0.05mL&#039;&#039;&#039; remaining after injecting, draw &#039;&#039;&#039;+0.05mL&#039;&#039;&#039; from the vial.&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
====== Injectable Estradiol Cypionate (EC) ======&lt;br /&gt;
|[[File:What-excuse-me.gif|thumb|[[HRT#Other resources|my honest reaction]]]]Depo-Estradiol (US only, unavailable),&lt;br /&gt;
|5-7mg/7 days&lt;br /&gt;
|&lt;br /&gt;
* Look for &#039;&#039;&#039;[https://arc-w.nihr.ac.uk/Wordpress/wp-content/uploads/2015/07/Low-dead-space-syringes.png syringe dead space]([[HRT#:~:text=* = It has been mentioned that syringes account for dead space, although that is not 100% certain.|*]])&#039;&#039;&#039;, e.g. if there&#039;s &#039;&#039;&#039;0.05mL&#039;&#039;&#039; remaining after injecting, draw &#039;&#039;&#039;+0.05mL&#039;&#039;&#039; from the vial.&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
====== Injectable Estradiol Enanthate (EEn) ======&lt;br /&gt;
|[[File:What-excuse-me.gif|thumb|[[HRT#Other resources|my honest reaction]]]]&lt;br /&gt;
|4-7mg/7 days&lt;br /&gt;
7-10mg/10 days (7.2mg usually, depending on the vial, it&#039;s optimal because drawing cents of mL are hard to get right)&lt;br /&gt;
|&lt;br /&gt;
* You can multiply the weekly dosage by 2, which lasts up to 14 days (as much as the [https://en.wikipedia.org/wiki/Biological_half-life half-life] of Enanthate)&lt;br /&gt;
* Look for &#039;&#039;&#039;[https://arc-w.nihr.ac.uk/Wordpress/wp-content/uploads/2015/07/Low-dead-space-syringes.png syringe dead space]([[HRT#:~:text=* = It has been mentioned that syringes account for dead space, although that is not 100% certain.|*]])&#039;&#039;&#039;, e.g. if there&#039;s &#039;&#039;&#039;0.05mL&#039;&#039;&#039; remaining after injecting, draw &#039;&#039;&#039;+0.05mL&#039;&#039;&#039; from the vial.&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
====== Injectable Estradiol Undecylate (EU/EUn) ======&lt;br /&gt;
|[[File:What-excuse-me.gif|thumb|[[HRT#Other resources|my honest reaction]]]]&lt;br /&gt;
|There&#039;s not enough information on dosage. The frequency of those may differ according to the oil used (MCT/Castor oil). Indicative Dosages:&lt;br /&gt;
15-20mg/2 weeks&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--T:45--&amp;gt;&lt;br /&gt;
20-40mg+/4 weeks&lt;br /&gt;
|&lt;br /&gt;
* There&#039;s not enough information on its [[wikipedia:Biological_half-life|half-life]], a higher dosage can be administered that can last up to 20-30 days.&lt;br /&gt;
* [[wikipedia:Intramuscular_injection|IM injections]] last longer so they give better levels during the same period of time per injection.&lt;br /&gt;
* Needs at least 90 days to reach stable levels.&lt;br /&gt;
* Look for &#039;&#039;&#039;[https://arc-w.nihr.ac.uk/Wordpress/wp-content/uploads/2015/07/Low-dead-space-syringes.png syringe dead space]([[HRT#:~:text=* = It has been mentioned that syringes account for dead space, although that is not 100% certain.|*]])&#039;&#039;&#039;, e.g. if there&#039;s &#039;&#039;&#039;0.05mL&#039;&#039;&#039; remaining after injecting, draw &#039;&#039;&#039;+0.05mL&#039;&#039;&#039; from the vial.&lt;br /&gt;
|}&lt;br /&gt;
&#039;&#039;&#039;*&#039;&#039;&#039; = It has been mentioned that syringes account for dead space, although that is not 100% certain.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--T:46--&amp;gt;&lt;br /&gt;
=== Sublingual vs Oral ===&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|+&lt;br /&gt;
!Method&lt;br /&gt;
!Substance&lt;br /&gt;
!Dosage&lt;br /&gt;
!Observations&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
====== Oral ======&lt;br /&gt;
|Estradiol Valerate in pill form (e.g. Cyclacur)&lt;br /&gt;
|&amp;gt;=6mg/day&lt;br /&gt;
(max 10mg as per Dr. Powers)&lt;br /&gt;
|It is recommended that doses are taken separately on set time intervals during the day for more stable estradiol levels, e.g. for a 6mg dose you would take 2mg per 8 hours. By the oral route the active substance is metabolized by the liver and part of it is converted to estrone (E1), which has much less feminizing effects than estradiol (E2) so the desired effect is essentially prevented. The bioavailability of estradiol by oral administration is very low (~5%) and usually lower levels of E2 are observed in blood tests than other methods of administration. [anecdotal apo to server, wikipedia kai tttt - correct/expand?] It is also necessary to administer anti-androgens to reduce testosterone levels to the female range.&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
====== Sublingual ======&lt;br /&gt;
|Estradiol Valerate in pill form (e.g. Cyclacur)&lt;br /&gt;
|&amp;gt;=4mg/day&lt;br /&gt;
|It is recommended that doses are taken separately on set time intervals during the day for more stable estradiol levels, e.g. for a 6mg dose you would take 2mg per 8 hours. The sublingual way bypasses estradiol metabolism by the liver and has about 5 times the estradiol bioavailability of the oral way. This way, estradiol levels have greater range than orally (higher peak lower bottom), in oral they remain higher for ~12 hours while sublingually they go away after 3-4 hours (This however is from a study from 2005 on cis women)&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== Vial info === &amp;lt;!--T:47--&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--T:48--&amp;gt;&lt;br /&gt;
=== Medications ===&lt;br /&gt;
For cyclacur: &#039;&#039;&#039;take only the white pills, the brown pills are Norgestrel which have 0.5mg of estradiol but has an androgenic effect and may also cause other side effects&#039;&#039;&#039;. &lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--T:49--&amp;gt;&lt;br /&gt;
==== Estrogens ====&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|+&lt;br /&gt;
!Brand Name(s)&lt;br /&gt;
!Substance&lt;br /&gt;
!Form&lt;br /&gt;
!Method of Administration&lt;br /&gt;
!Cost&lt;br /&gt;
!Cost with Healthcare Coverage&lt;br /&gt;
!Dosage&lt;br /&gt;
!Safety&lt;br /&gt;
!Notes&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
====== [https://www.galinos.gr/web/drugs/main/drugs/Cyclacur Cyclacur] ======&lt;br /&gt;
|Estradiol Valerate (EV)&lt;br /&gt;
|Pill tablet&lt;br /&gt;
|Orally or sublingually&lt;br /&gt;
|2.01€ for 11 pills ([https://www.galinos.gr/service/drugs/drawPackagePrice/1198 Pricemap])&lt;br /&gt;
~130.8-328.€/year&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--T:50--&amp;gt;&lt;br /&gt;
~10.9-27.4€/month&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--T:51--&amp;gt;&lt;br /&gt;
Prices are indicative, the cost depends on the dosage.&lt;br /&gt;
| -&lt;br /&gt;
|6mg-10mg/day (according to Dr. Will Powers)&lt;br /&gt;
4mg-8mg/day (according to Greek Endocrinologists)&lt;br /&gt;
|A&lt;br /&gt;
|&lt;br /&gt;
* &#039;&#039;&#039;Only white pills are used.&#039;&#039;&#039; Brown pills do have a bit of estradiol but arent taken due to other side effects.&lt;br /&gt;
* You need antiandrogens or GNRH antagonists if you haven&#039;t had an orchiectomy.&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
====== Progynova ======&lt;br /&gt;
|Estradiol Valerate (EV)&lt;br /&gt;
|Pill tablet&lt;br /&gt;
|Orally or sublingually&lt;br /&gt;
|~22€ for 72 pills of 1 mg or ~32€ for 72 pills of 2 mg&lt;br /&gt;
Prices are indicative, the cost depends on the dosage.&lt;br /&gt;
| -&lt;br /&gt;
|4mg-8mg/day&lt;br /&gt;
|A&lt;br /&gt;
|&lt;br /&gt;
* There is no reason to use it in Greece since Cyclacur is available in Greek pharmacies.&lt;br /&gt;
* You need antiandrogens or GNRH antagonists if you haven&#039;t had an orchiectomy.&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
====== Estrofem, Estrifam (german brand name), [https://www.galinos.gr/web/drugs/main/drugs/trisequens Trisequens] ======&lt;br /&gt;
|Estradiol Hemihydrate&lt;br /&gt;
|Pill tablet&lt;br /&gt;
|Orally or sublingually&lt;br /&gt;
|~30€ for 28 pills of 2 mg without shipping costs.&lt;br /&gt;
Prices are indicative, the cost depends on the dosage.&lt;br /&gt;
| -&lt;br /&gt;
|4mg-8mg/day&lt;br /&gt;
|A&lt;br /&gt;
|&lt;br /&gt;
* There is no reason to use it in Greece since Cyclacur is available in Greek pharmacies.&lt;br /&gt;
* You need antiandrogens or GNRH antagonists if you haven&#039;t had an orchiectomy.&lt;br /&gt;
* Trisequens, while being available in Greece, is odd to take with 12 pills being 2mg EH, 10 norgestrel, and 6 1mg EH, for a much higher price than [[HRT#Cyclacur|Cyclacur]].&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
====== [https://www.galinos.gr/web/drugs/main/drugs/Dermestril Dermestril] ======&lt;br /&gt;
|Estradiol Hemihydrate&lt;br /&gt;
|Patch&lt;br /&gt;
|Trans-dermally&lt;br /&gt;
|44€ for 24 patches of 100mcg&lt;br /&gt;
~15€ for 8 patches of 50mcg&lt;br /&gt;
| -&lt;br /&gt;
|50mcg/3.5 days (when starting off)&lt;br /&gt;
100mcg/3.5 days (whenever your e2 levels are stable)&lt;br /&gt;
|A&lt;br /&gt;
|&lt;br /&gt;
* &#039;&#039;&#039;If you have no idea how to apply patches watch this:&#039;&#039;&#039; [https://youtu.be/tXGIYWPqdpI?si=O0dlE19pq0ic0PZP Demonstrational Video]&lt;br /&gt;
* You need antiandrogens or GNRH antagonists if you haven&#039;t had an orchiectomy.&lt;br /&gt;
* 100mcg patches can be cut into 2 if needed.&lt;br /&gt;
|-&lt;br /&gt;
|Neofollin (can be ordered from pharmacies near Czechia, not tested in Greece), Delestrogen (Vial, unavailable), Progynon Depot (Ampules, unavailable)&lt;br /&gt;
|&lt;br /&gt;
====== Estradiol Valerate (EV) ======&lt;br /&gt;
|Injectable&lt;br /&gt;
|Subcutaneous or Intramuscular&lt;br /&gt;
|80€/year (including shipping costs, syringes and alcohol swabs)&lt;br /&gt;
| -&lt;br /&gt;
|5-7mg/5 days (monotherapy)&lt;br /&gt;
4-5mg/7 days (only in combination with an antiandrogen or GNRH agonist)&lt;br /&gt;
|A+&lt;br /&gt;
|&lt;br /&gt;
* It can be used without antiandrogens or GNRH agonists in ([[HRT#Μονοθεραπεία|Monotherapy]]) by increasing the dosage.&lt;br /&gt;
|-&lt;br /&gt;
|Depo-Estradiol (US only, unavailable)&lt;br /&gt;
|&lt;br /&gt;
====== Estradiol Cypionate (EC) ======&lt;br /&gt;
|Injectable&lt;br /&gt;
|Subcutaneous or Intramuscular&lt;br /&gt;
|~70-80€/year (not including shipping costs, syringes and alcohol swabs)&lt;br /&gt;
| -&lt;br /&gt;
|5-7mg/7 days&lt;br /&gt;
(&#039;&#039;&#039;mono dose&#039;&#039;&#039;)&lt;br /&gt;
? (TBD/&#039;&#039;&#039;dose with AA&#039;&#039;&#039;)&lt;br /&gt;
|?&lt;br /&gt;
|&lt;br /&gt;
* It can be used without antiandrogens or GNRH agonists in ([[HRT#Μονοθεραπεία|Monotherapy]])&lt;br /&gt;
|-&lt;br /&gt;
| -&lt;br /&gt;
|&lt;br /&gt;
====== Estradiol Enanthate (EEn) ======&lt;br /&gt;
|Injectable&lt;br /&gt;
|Subcutaneous or Intramuscular&lt;br /&gt;
|80€/year (including shipping costs, syringes and alcohol swabs)&lt;br /&gt;
| -&lt;br /&gt;
|2.5mg-7mg/7 days&lt;br /&gt;
(usual dosage: 4mg/7days)&lt;br /&gt;
|A+&lt;br /&gt;
|&lt;br /&gt;
* It can be used without antiandrogens or GNRH agonists in ([[HRT#Μονοθεραπεία|Monotherapy]]) by increasing the dosage.&lt;br /&gt;
|-&lt;br /&gt;
| -&lt;br /&gt;
|&lt;br /&gt;
====== Estradiol Undecylate (EU, EUn) ======&lt;br /&gt;
|Injectable&lt;br /&gt;
|Subcutaneous or Intramuscular&lt;br /&gt;
|130€/year (including shipping costs, syringes and alcohol swabs)&lt;br /&gt;
| -&lt;br /&gt;
|15-20mg/2 weeks&lt;br /&gt;
20-40mg+/4 weeks&lt;br /&gt;
|A+&lt;br /&gt;
|&lt;br /&gt;
* There&#039;s not much info on dosages, usually seen in [[HRT#Μονοθεραπεία|monotherapy]].&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--T:52--&amp;gt;&lt;br /&gt;
==== Anti-Androgens and GNRH Agonists ====&lt;br /&gt;
These should &#039;&#039;&#039;not&#039;&#039;&#039; be taken sublingually.&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|+&lt;br /&gt;
!Brand Name(s)&lt;br /&gt;
!Substance&lt;br /&gt;
!Cost&lt;br /&gt;
!Cost with Healthcare Coverage&lt;br /&gt;
!Dosage&lt;br /&gt;
!Safety&lt;br /&gt;
!Form&lt;br /&gt;
!Type&lt;br /&gt;
!Notes&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
====== [https://www.galinos.gr/web/drugs/main/drugs/Androcur Androcur] ======&lt;br /&gt;
|Cyproterone Acetate (CPA) is also referred to as cypro&lt;br /&gt;
|21.58€/50mg * 50 pills &lt;br /&gt;
19.7-31.5€/year&lt;br /&gt;
&lt;br /&gt;
([https://www.galinos.gr/service/drugs/drawPackagePrice/8023 Pricemap])&lt;br /&gt;
|?&lt;br /&gt;
|12.5mg/2 days- 10mg/day&lt;br /&gt;
&#039;&#039;&#039;Larger doses shouldn&#039;t be administered&#039;&#039;&#039;&lt;br /&gt;
|C&lt;br /&gt;
|Pill tablet&lt;br /&gt;
|Progestin (Steroidal antiandrogen)&lt;br /&gt;
Stops testosterone production.&lt;br /&gt;
|The max recommended dosage is 10mg/day . Monitoring of prolactin levels is recommended through [[Blood Testing#MTF|blood testing]].&lt;br /&gt;
&#039;&#039;&#039;Many doctors give overdoses of 50 mg/day. Cyproterone is a strong anti-androgen and testosterone suppression is possible with lower doses. A change of doctor is recommended.&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--T:53--&amp;gt;&lt;br /&gt;
[[wikipedia:Side_effects_of_cyproterone_acetate|Side Effects]]:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--T:54--&amp;gt;&lt;br /&gt;
* Benign brain tumor.&lt;br /&gt;
* In rare cases, liver damage.&lt;br /&gt;
* Vitamin B12 deficiency.&lt;br /&gt;
* Breast cancer.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--T:55--&amp;gt;&lt;br /&gt;
Testosterone suppression can be achieved with even lower doses, however a 50 mg pill is difficult to cut into pieces of less than 12.5 mg even with a pill cutter.&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
====== [https://www.galinos.gr/web/drugs/main/drugs/Bicalut Bicalut] ======&lt;br /&gt;
|Bicalutamide (aka: bica)&lt;br /&gt;
|29.10 euro/30 pills&lt;br /&gt;
29.10 euro/month&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--T:56--&amp;gt;&lt;br /&gt;
~350 euro/year&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
([https://www.galinos.gr/service/drugs/drawPackagePrice/11120 Pricemap])&lt;br /&gt;
|6.77 euro/month (28 tabs)&lt;br /&gt;
~95 euro/year&lt;br /&gt;
|50mg/day&lt;br /&gt;
|A-&lt;br /&gt;
|Pill/Tablet&lt;br /&gt;
|Androgen receptor antagonist (Nonsteroidal antiandrogen)&lt;br /&gt;
Blocks absorption of all androgens (including testosterone)&lt;br /&gt;
|&#039;&#039;&#039;Serious negative interactions can be noted if combined with other anti-androgens and GNRH agonists (except progesterone)&#039;&#039;&#039;&lt;br /&gt;
&#039;&#039;&#039;Very rare&#039;&#039;&#039; chance for recoverable and non-fatal liver damage for people with a certain rare mutation.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--T:57--&amp;gt;&lt;br /&gt;
Most of the effects listen in the instruction manual are scaremongering. (it lists a very high chance of liver issues when they are actually very rare, and also lists photosensitivity, which if it even occurs at all, it should be quite rare. We are aware of nobody who had a negative interction between alexandrite laser hair removal and bicalutamide).&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--T:58--&amp;gt;&lt;br /&gt;
Note that bicalutamide, unlike most other anti-androgens, &#039;&#039;&#039;does not&#039;&#039;&#039; lower testosterone levels, in fact they usually rise as the body responds to testosterone receptors being inhibited. Do not be alarmed if you notice an increase of testosterone in your blood tests.&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
====== [https://www.galinos.gr/web/drugs/main/drugs/Arvekap Arvekap] ======&lt;br /&gt;
|Triptorelin&lt;br /&gt;
| -&lt;br /&gt;
|~200/year?&lt;br /&gt;
|&lt;br /&gt;
|A?&lt;br /&gt;
|Injection&lt;br /&gt;
|GNRH Agonist&lt;br /&gt;
(indirectly) Stops testosterone AND estrogen production&lt;br /&gt;
|Also a puberty blocker&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
====== [https://www.galinos.gr/web/drugs/main/drugs/aldactone Aldactone] ======&lt;br /&gt;
|Spironolactone&lt;br /&gt;
|5.19 euro/20 tabs (100mg)&lt;br /&gt;
([https://www.galinos.gr/service/drugs/drawPackagePrice/148 Pricemap])&lt;br /&gt;
|?&lt;br /&gt;
|50mg-200mg/day&lt;br /&gt;
|B-C&lt;br /&gt;
|Tablet&lt;br /&gt;
|Antimineralocorticoid/MCRA&lt;br /&gt;
|Very inefficient, makes you pee, it&#039;s a medication for blood pressure&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
|Flutamide&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|F---&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|Only in this table as an example to avoid&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
==== Miscellaneous/Progesterone ====&lt;br /&gt;
Progesterone falls under this category, as it is not quite the same as other Anti-Androgens, the mention of Progesterone in this title is necessary in order to reduce confusion and questions such as &amp;quot;Where is progesterone?&amp;quot; and &amp;quot;Did you remove prog from the page?&amp;quot;.&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
!Brand Name(s)&lt;br /&gt;
!Substance&lt;br /&gt;
!Cost&lt;br /&gt;
!Cost with Healthcare Coverage&lt;br /&gt;
!Dosage&lt;br /&gt;
!Safety&lt;br /&gt;
!Form&lt;br /&gt;
!Type&lt;br /&gt;
!Notes&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
====== [https://www.galinos.gr/web/drugs/main/drugs/utrogestran Utrogestan] ======&lt;br /&gt;
|Progesterone (P4) it is also referred to as prog&lt;br /&gt;
|5.83 euro/30 caps (100mg)&lt;br /&gt;
8.08 euro/15 caps (200mg)&lt;br /&gt;
([https://www.galinos.gr/service/drugs/drawPackagePrice/7619 Pricemap])&lt;br /&gt;
|?&lt;br /&gt;
|100mg or 200mg daily (rectal administration, [[Blood Testing|blood tests]] are recommended)&lt;br /&gt;
|A&lt;br /&gt;
|Capsule&lt;br /&gt;
|Stops testosterone production.&lt;br /&gt;
|There is not much confirmed information about progesterone.&lt;br /&gt;
It can also be taken orally but the absorption rate is very low.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--T:59--&amp;gt;&lt;br /&gt;
Anecdotal claims:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--T:60--&amp;gt;&lt;br /&gt;
* Helps with breast development and with feminization in general.&lt;br /&gt;
* Can be given after one year of estradiol.&lt;br /&gt;
* Suggested to be given after the individual reaches Tanner stage 3.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--T:61--&amp;gt;&lt;br /&gt;
It can have androgenic or other (non-serious, recoverable) effects for some individuals - in particular it can be converted to DHT by the body even in combination with dutasteride or bicalutamide.&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--T:62--&amp;gt;&lt;br /&gt;
==== Other anti-androgens (optional) ====&lt;br /&gt;
These are used to block conversion of other androgens to DHT (which causes hair loss (hair) and body hair growth). They aren&#039;t general use Anti-Androgens.&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
!Brand Name(s)&lt;br /&gt;
!Substance&lt;br /&gt;
!Cost&lt;br /&gt;
!Cost with Healthcare Coverage&lt;br /&gt;
!Dosage&lt;br /&gt;
!Safety&lt;br /&gt;
!Form&lt;br /&gt;
!Type&lt;br /&gt;
!Notes&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
====== [https://www.galinos.gr/web/drugs/main/packages/26485 Dastidem], [https://www.galinos.gr/web/drugs/main/packages/25557 Rafuster], [https://www.galinos.gr/web/drugs/main/packages/25893 Duaride], [https://www.galinos.gr/web/drugs/main/packages/25894 Dustezor] ======&lt;br /&gt;
|Dutasteride&lt;br /&gt;
|7.90€/30 caps&lt;br /&gt;
|~6€/30 caps&lt;br /&gt;
|0.5mg/day (?/TBD)&lt;br /&gt;
|A-&lt;br /&gt;
|Capsule&lt;br /&gt;
| -&lt;br /&gt;
|High effectiveness.&lt;br /&gt;
|-&lt;br /&gt;
| -&lt;br /&gt;
|Finasteride&lt;br /&gt;
| -&lt;br /&gt;
| -&lt;br /&gt;
| -&lt;br /&gt;
|F&lt;br /&gt;
| -&lt;br /&gt;
| -&lt;br /&gt;
|Effectiveness is none to medium (Just take Dutasteride - will not stop conversion of Progesterone to DHT)&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== Transmasc ==&lt;br /&gt;
&lt;br /&gt;
=== Medications ===&lt;br /&gt;
&lt;br /&gt;
==== Testosterone ====&lt;br /&gt;
[https://www.galinos.gr/web/drugs/main/substances/testosterone/marketing Galinos.gr&#039;s testosterone availability page]&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|+&lt;br /&gt;
!Brand Name(s)&lt;br /&gt;
!Substance&lt;br /&gt;
!Form&lt;br /&gt;
!Method of Administration&lt;br /&gt;
!Cost&lt;br /&gt;
!Cost with Healthcare Coverage&lt;br /&gt;
!Dosage&lt;br /&gt;
!Safety&lt;br /&gt;
!Notes&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
====== [https://www.galinos.gr/web/drugs/main/packages/4929 Norma] ======&lt;br /&gt;
|Testosterone Enanthate&lt;br /&gt;
|Injection/Ampule&lt;br /&gt;
|Subcutaneous or Intramuscular&lt;br /&gt;
|17.67€/ampule &lt;br /&gt;
([https://www.galinos.gr/service/drugs/drawPackagePrice/4929 Pricemap])&lt;br /&gt;
|?&lt;br /&gt;
|?&lt;br /&gt;
|?&lt;br /&gt;
| -&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
====== [https://www.galinos.gr/web/drugs/main/packages/21943 Nebido] ======&lt;br /&gt;
|Testosterone Undecanoate&lt;br /&gt;
|Injection/Vial&lt;br /&gt;
|Intramuscular&lt;br /&gt;
|100.37€/vial&lt;br /&gt;
([https://www.galinos.gr/service/drugs/drawPackagePrice/21943 Pricemap])&lt;br /&gt;
|~32.52€/vial (you pay 25%)&lt;br /&gt;
|1 vial (1000mg/4mL)/10-20 weeks&lt;br /&gt;
|A&lt;br /&gt;
|As a starting dose &#039;&#039;&#039;after a year of HRT&#039;&#039;&#039;, you could also consider:&lt;br /&gt;
&lt;br /&gt;
* Instead of injecting one vial per 20 weeks, you do half every 10-12 weeks, however nothing could be sourced to support this. Though logically it could make sense as a practice.&lt;br /&gt;
* Do a test at 6 weeks after starting, if T is too high don&#039;t take the 2nd dose, if it&#039;s not you can take the 2nd and then test 2 weeks before every other dose.&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
====== [https://www.galinos.gr/web/drugs/main/packages/15739 Tostran] ======&lt;br /&gt;
|Testogel&lt;br /&gt;
|Gel&lt;br /&gt;
|Trans-dermally&lt;br /&gt;
|&#039;&#039;&#039;Starting dose&#039;&#039;&#039;&lt;br /&gt;
&amp;lt;!--T:82--&amp;gt;&lt;br /&gt;
* 35.54€/2 months&lt;br /&gt;
* 213.24€/year&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--T:83--&amp;gt;&lt;br /&gt;
&#039;&#039;&#039;30 mg dose&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--T:84--&amp;gt;&lt;br /&gt;
* 35.54€/40 days&lt;br /&gt;
* ~324.30€/year&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--T:85--&amp;gt;&lt;br /&gt;
&#039;&#039;&#039;40 mg dose&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--T:73--&amp;gt;&lt;br /&gt;
* 35.54€/30 days&lt;br /&gt;
* 426.48€/year&lt;br /&gt;
([https://www.galinos.gr/service/drugs/drawPackagePrice/15739 Pricemap])&lt;br /&gt;
|35.54€ -&amp;gt; 8.89€&lt;br /&gt;
|20mg/day (starting dose)&lt;br /&gt;
30-40mg/day&lt;br /&gt;
|A&lt;br /&gt;
|&lt;br /&gt;
* 1 pump of Tostran (&#039;&#039;&#039;0.5g&#039;&#039;&#039;) delivers 10 mg of T.&lt;br /&gt;
* 2 pumps of Tostran are 1 pump of Testogel (20.25mg of T)&lt;br /&gt;
* Can cause skin reactions.&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
==== GNRH Agonists ====&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
!Brand Name(s)&lt;br /&gt;
!Substance&lt;br /&gt;
! Cost&lt;br /&gt;
!Cost with Healthcare Coverage&lt;br /&gt;
!Dosage&lt;br /&gt;
!Safety&lt;br /&gt;
!Form&lt;br /&gt;
!Type&lt;br /&gt;
!Notes&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
====== [https://www.galinos.gr/web/drugs/main/drugs/Arvekap Arvekap] ======&lt;br /&gt;
|Triptorelin&lt;br /&gt;
| -&lt;br /&gt;
|~200/year?&lt;br /&gt;
|&lt;br /&gt;
|A?&lt;br /&gt;
|Injection&lt;br /&gt;
|GNRH Agonist&lt;br /&gt;
(indirectly) Stops testosterone AND estrogen production&lt;br /&gt;
|Also a puberty blocker&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
==== Other anti-androgens (optional) ====&lt;br /&gt;
These are used to block conversion of other androgens to DHT (which causes hair loss (hair) and body hair growth). They aren&#039;t general use Anti-Androgens.&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
!Brand Name(s)&lt;br /&gt;
!Substance&lt;br /&gt;
!Cost&lt;br /&gt;
!Cost with Healthcare Coverage&lt;br /&gt;
!Dosage&lt;br /&gt;
!Safety&lt;br /&gt;
!Form&lt;br /&gt;
!Type&lt;br /&gt;
!Notes&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
====== [https://www.galinos.gr/web/drugs/main/packages/26485 Dastidem], [https://www.galinos.gr/web/drugs/main/packages/25557 Rafuster], [https://www.galinos.gr/web/drugs/main/packages/25893 Duaride], [https://www.galinos.gr/web/drugs/main/packages/25894 Dustezor] ======&lt;br /&gt;
|Dutasteride&lt;br /&gt;
|7.90€/30 caps&lt;br /&gt;
|~6€/30 caps&lt;br /&gt;
|0.5mg/day (?/TBD)&lt;br /&gt;
|A-&lt;br /&gt;
|Capsule&lt;br /&gt;
| -&lt;br /&gt;
|High effectiveness. &lt;br /&gt;
Not to be confused with proper Anti-Androgens.&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== Nonbinary hrt *under construction* ==&lt;br /&gt;
&lt;br /&gt;
=== !!! disclaimer-warning about potential issues !!! ===&lt;br /&gt;
&lt;br /&gt;
=== General outline of nb hrt for amab and afab ===&lt;br /&gt;
&lt;br /&gt;
=== Medications ===&lt;br /&gt;
&lt;br /&gt;
==== Selective Estrogen Receptor Modulators (SERMs) ====&lt;br /&gt;
&lt;br /&gt;
* Tamoxifen is a selective estrogen receptor modulator (SERM). In some tissues such as the brain it activates estrogen receptors, which may help reduce dysphoria. In breast tissue it antagonizes estrogen receptors, preventing the formation of breast tissue if desired. There is some evidence that Tamoxifen inhibits memory, though the effects of taking it alongside regular estrogen are undocumented. Tamoxifen can cause cognitive dysfunction and increase your risk of stroke and pulmonary embolism. Tamoxifen may also be taken alongside 17β-estradiol, more research is needed. In this combination, estradiol should still have its effects (combating dysphoria in the brain, redistribution of body fat, smoother skin etc.) while tamoxifen prevents the growth of breast tissue.&lt;br /&gt;
* Raloxifene is another SERM. It is an estrogen receptor antagonist in breast tissue. It is an estrogen receptor agonist in bone and can be used to prevent osteoporosis. Raloxifene has been shown to reduce ERα expression in breast tissue in premenopausal women. As the synthesis of progesterone receptors (PR) is estrogen-regulated, raloxifene also decreases the expression of PR. Additionally, it was shown to decrease the presence of Ki-67, a biomarker for cell proliferation, in breast tissue of premenopausal women. As a result, it can be used to treat gynecomastia, and has been shown effective in reducing breast size in those with the condition. Raloxifene may promote feminine fat distribution: in a study on 56-66 year old postmenopausal women, there was an increase in fat in the legs and buttocks and a decrease in fat in the abdomen and trunk after 1 year on 60 mg/day raloxifene. It is not yet known how pronounced this effect is, as there have been no comparisons of body fat distribution between raloxifene and estradiol. Raloxifene may increase the risk of stroke and pulmonary embolism.&lt;br /&gt;
* Afimoxifene is a topical SERM and the primary metabolite of tamoxifen.&lt;br /&gt;
&lt;br /&gt;
==== Anti-androgens ====&lt;br /&gt;
&lt;br /&gt;
==== Bicalutamide ====&lt;br /&gt;
Bicalutamide is an  anti-androgen which is used mainly in the treatment of prostate cancer but can also be used to treat hirsutism, or as a component of hormone therapy in feminizing HRT, among other uses. It is nonsteroidal anti-androgen and a selective/pure antagonist of the androgen receptor. It has no other hormonal activity and does not lower androgen levels. Bicalutamide crosses the blood-brain barrier and blocks the effects of testosterone and dihydrotestosterone (DHT) both in the body and in the brain. While it has been observed that bicalutamide does not cross the blood-brain barrier in rats and dogs, this was found not to be the case in humans&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
In general Ralox seems the best idea based on overall effectiveness and less severe side effects compared to other SERMs. Most people on this kind of MtNB hrt seem to be using a combination of ralox (in place of estradiol) and bica [expand this + powers e1s schizo stuff?]&lt;br /&gt;
&lt;br /&gt;
== Legal ==&lt;br /&gt;
It is legal to buy anything without a diagnosis or a prescription (off the counter - OTC), Testosterone can be hit or miss, look for any product names mentioned (that have links attached to them/are blue in colour) [[HRT#Transmasc|here]].  &lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--T:86--&amp;gt;&lt;br /&gt;
You can also check the &#039;&#039;&#039;[https://diyon.top/map Trans-Friendly Pharmacies Map]&#039;&#039;&#039; for any pharmacies near you (this goes for both Transfem and Transmasc HRT). &lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--T:75--&amp;gt;&lt;br /&gt;
There is no minimum or maximum legal age for someone to start HRT. &lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--T:76--&amp;gt;&lt;br /&gt;
It is not legally mandatory for someone to have a diagnosis by a psychiatrist in order to medically transition.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--T:77--&amp;gt;&lt;br /&gt;
There is no legally mandatory time restriction for a psychiatrist to monitor you before diagnosing you.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--T:78--&amp;gt;&lt;br /&gt;
You don&#039;t legally need to be on HRT in order to be exempt from the [[army]], change your [[Legal|legal sex]], or to have a [[surgery]].&lt;br /&gt;
&lt;br /&gt;
== Other resources == &amp;lt;!--T:79--&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--T:80--&amp;gt;&lt;br /&gt;
* Simulator: https://www.estrannai.se/&lt;br /&gt;
* https://transfemscience.org/ (note, the authors of this site disagree with a lot of what they are saying, regardless, it is still interesting)&lt;br /&gt;
** Introduction to Hormone Therapy for Transfeminine People: https://transfemscience.org/articles/transfem-intro/&lt;br /&gt;
** Older simulator: https://transfemscience.org/misc/injectable-e2-simulator/&lt;br /&gt;
** Dosage calculator: https://transfemscience.org/misc/injectable-dose-vol-conc-conv/&lt;br /&gt;
* https://diyhrt.wiki/ (alt link: https://anarch.cc/transfeminine-diy-hrt-the-ultimate-guide-2/)&lt;br /&gt;
* https://hrtcafe.net/&lt;br /&gt;
* ?? https://hrt.coffee/&lt;br /&gt;
* https://www.reddit.com/r/TransDIY/&lt;br /&gt;
* https://www.reddit.com/r/TransfemScience/&lt;br /&gt;
* https://groups.io/g/MTFHRT/wiki/29602 (alt link: https://anarch.cc/mtf-hrt-ultimate-diy/)&lt;br /&gt;
* https://hrt.cat/ - info for making your own (you will probably not need it - version 1.0: https://hrtcafe.net/hrtcat/)&lt;br /&gt;
* https://archive.ph/uQb8g (alt link: https://anarch.cc/making-your-own-injections/, as above)&lt;br /&gt;
* https://crimethinc.com/2022/12/15/producing-transdermal-estrogen-a-do-it-yourself-guide (alt link: https://anarch.cc/producing-transdermal-estrogen-a-do-it-yourself-guide/, as above)&lt;br /&gt;
* https://archive.ph/cpy7k (alt link: https://anarch.cc/homebrewing-hormones-mtf-guide/, as above)&lt;br /&gt;
&amp;lt;/translate&amp;gt;&lt;/div&gt;</summary>
		<author><name>Goblinmoder</name></author>
	</entry>
	<entry>
		<id>https://wiki.diyon.top/index.php?title=HRT&amp;diff=1005</id>
		<title>HRT</title>
		<link rel="alternate" type="text/html" href="https://wiki.diyon.top/index.php?title=HRT&amp;diff=1005"/>
		<updated>2025-04-17T12:27:48Z</updated>

		<summary type="html">&lt;p&gt;Goblinmoder: honscience reference...&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{#seo:&lt;br /&gt;
|title_mode=replace&lt;br /&gt;
|title=HRT&lt;br /&gt;
|description=We are open to discussion and actively on-going changes in formatting and contents of this Page and Website (in general). The e-mail address to refer to is fox@diyon.top&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
&amp;lt;languages/&amp;gt;&lt;br /&gt;
&amp;lt;translate&amp;gt;&lt;br /&gt;
&amp;lt;!--T:41--&amp;gt;&lt;br /&gt;
After around a month on HRT some of your ranges in your [[Blood Testing|blood test]] should be within desired ranges.&lt;br /&gt;
&lt;br /&gt;
== Disclaimer ==&lt;br /&gt;
 To clarify on &#039;&#039;&#039;dosages&#039;&#039;&#039;, the values mentioned below are rather speculative and most are based on &#039;&#039;&#039;personal experiences&#039;&#039;&#039; or &#039;&#039;&#039;(diy)hrt pages/websites/papers&#039;&#039;&#039;. Therefore it is encouraged to do [[Blood Testing|blood tests]] and if possible, check with an [[Doctors#Ενδοκρινολόγοι|endocrinologist]] (we also suggest [[Doctors]] that can help with such cases), especially if you have any specific &#039;&#039;&#039;health conditions&#039;&#039;&#039;. &lt;br /&gt;
Pricemaps are there to evaluate prices through &#039;&#039;&#039;[https://galinos.gr galinos.gr]&#039;&#039;&#039; (in case something is outdated, look for the green line that says &amp;quot;Λιανική&amp;quot;)&lt;br /&gt;
&lt;br /&gt;
We are open to discussion and actively on-going changes in formatting and contents of this Page and Website (in general). The e-mail address to refer to is &#039;&#039;&#039;fox@diyon.top&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
== Blood Levels ==&lt;br /&gt;
&lt;br /&gt;
==== Refer to the [[Blood Testing]] page. ====&lt;br /&gt;
== Transfem ==&lt;br /&gt;
Taking Puberty Blockers ([[HRT#Antiandrogens and GNRH Agonists|GNRH Agonists]], e.g: Arvekap) or any Anti Androgen (e.g: Aldactone, Androcur) &#039;&#039;&#039;without [[HRT#Estrogens|Estrogens]]&#039;&#039;&#039; is generally discouraged even during youth transitioning (This is &#039;&#039;&#039;non-definitive&#039;&#039;&#039; for Enby folks)&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--T:44--&amp;gt;&lt;br /&gt;
=== Monotherapy ===&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|+&lt;br /&gt;
!Type&lt;br /&gt;
!Commercial Names&lt;br /&gt;
!Dosage&lt;br /&gt;
!Notes&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
====== Sublingual (E Valerate or Hemihydrate) ======&lt;br /&gt;
|Cyclacur (EV), Estrofem (EH, imported), Trisequens (12 pills 2mg EH, 10 pills norgestrel, 6 pills 1mg EH)&lt;br /&gt;
|&amp;gt;=8-12mg/day&lt;br /&gt;
|While it is possible, even with a smaller dosage (&#039;&#039;&#039;at least 6mg&#039;&#039;&#039;), it&#039;s not that common. Ideally, use your blood tests to &#039;&#039;&#039;minmax&#039;&#039;&#039; your doses.&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
====== Injectable Estradiol Valerate (EV) ======&lt;br /&gt;
|Neofollin (can be ordered from pharmacies near Czechia, or aptekaapo.com &#039;&#039;&#039;but they’re not on hrtcafe&#039;&#039;&#039;, not tested in Greece), Delestrogen (Vial, unavailable), Progynon Depot (Ampules, unavailable), [[File:What-excuse-me.gif|thumb|[[HRT#Other resources|my honest reaction]]]]&lt;br /&gt;
|5-7mg/5 days&lt;br /&gt;
|&lt;br /&gt;
* Due to the large spikes in levels combined with the short [https://en.wikipedia.org/wiki/Biological_half-life half-life] it is not recommended for dosages to surpass the 5 day mark because it may cause menopause symptoms.&lt;br /&gt;
* Branded versions of this medication are not available in greece.&lt;br /&gt;
* The ampules contain a certain mg and do not allow for larger dosages, they are not re-usable. It is recommended to use a vial with a cap.&lt;br /&gt;
* Look for &#039;&#039;&#039;[https://arc-w.nihr.ac.uk/Wordpress/wp-content/uploads/2015/07/Low-dead-space-syringes.png syringe dead space]([[HRT#:~:text=* = It has been mentioned that syringes account for dead space, although that is not 100% certain.|*]])&#039;&#039;&#039;, e.g. if there&#039;s &#039;&#039;&#039;0.05mL&#039;&#039;&#039; remaining after injecting, draw &#039;&#039;&#039;+0.05mL&#039;&#039;&#039; from the vial.&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
====== Injectable Estradiol Cypionate (EC) ======&lt;br /&gt;
|[[File:What-excuse-me.gif|thumb|[[HRT#Other resources|my honest reaction]]]]Depo-Estradiol (US only, unavailable),&lt;br /&gt;
|5-7mg/7 days&lt;br /&gt;
|&lt;br /&gt;
* Look for &#039;&#039;&#039;[https://arc-w.nihr.ac.uk/Wordpress/wp-content/uploads/2015/07/Low-dead-space-syringes.png syringe dead space]([[HRT#:~:text=* = It has been mentioned that syringes account for dead space, although that is not 100% certain.|*]])&#039;&#039;&#039;, e.g. if there&#039;s &#039;&#039;&#039;0.05mL&#039;&#039;&#039; remaining after injecting, draw &#039;&#039;&#039;+0.05mL&#039;&#039;&#039; from the vial.&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
====== Injectable Estradiol Enanthate (EEn) ======&lt;br /&gt;
|[[File:What-excuse-me.gif|thumb|[[HRT#Other resources|my honest reaction]]]]&lt;br /&gt;
|4-7mg/7 days&lt;br /&gt;
7-10mg/10 days (7.2mg usually, depending on the vial, it&#039;s optimal because drawing cents of mL are hard to get right)&lt;br /&gt;
|&lt;br /&gt;
* You can multiply the weekly dosage by 2, which lasts up to 14 days (as much as the [https://en.wikipedia.org/wiki/Biological_half-life half-life] of Enanthate)&lt;br /&gt;
* Look for &#039;&#039;&#039;[https://arc-w.nihr.ac.uk/Wordpress/wp-content/uploads/2015/07/Low-dead-space-syringes.png syringe dead space]([[HRT#:~:text=* = It has been mentioned that syringes account for dead space, although that is not 100% certain.|*]])&#039;&#039;&#039;, e.g. if there&#039;s &#039;&#039;&#039;0.05mL&#039;&#039;&#039; remaining after injecting, draw &#039;&#039;&#039;+0.05mL&#039;&#039;&#039; from the vial.&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
====== Injectable Estradiol Undecylate (EU/EUn) ======&lt;br /&gt;
|[[File:What-excuse-me.gif|thumb|[[HRT#Other resources|my honest reaction]]]]&lt;br /&gt;
|There&#039;s not enough information on dosage. The frequency of those may differ according to the oil used (MCT/Castor oil). Indicative Dosages:&lt;br /&gt;
15-20mg/2 weeks&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--T:45--&amp;gt;&lt;br /&gt;
20-40mg+/4 weeks&lt;br /&gt;
|&lt;br /&gt;
* There&#039;s not enough information on its [[wikipedia:Biological_half-life|half-life]], a higher dosage can be administered that can last up to 20-30 days.&lt;br /&gt;
* [[wikipedia:Intramuscular_injection|IM injections]] last longer so they give better levels during the same period of time per injection.&lt;br /&gt;
* Needs at least 90 days to reach stable levels.&lt;br /&gt;
* Look for &#039;&#039;&#039;[https://arc-w.nihr.ac.uk/Wordpress/wp-content/uploads/2015/07/Low-dead-space-syringes.png syringe dead space]([[HRT#:~:text=* = It has been mentioned that syringes account for dead space, although that is not 100% certain.|*]])&#039;&#039;&#039;, e.g. if there&#039;s &#039;&#039;&#039;0.05mL&#039;&#039;&#039; remaining after injecting, draw &#039;&#039;&#039;+0.05mL&#039;&#039;&#039; from the vial.&lt;br /&gt;
|}&lt;br /&gt;
&#039;&#039;&#039;*&#039;&#039;&#039; = It has been mentioned that syringes account for dead space, although that is not 100% certain.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--T:46--&amp;gt;&lt;br /&gt;
=== Sublingual vs Oral ===&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|+&lt;br /&gt;
!Method&lt;br /&gt;
!Substance&lt;br /&gt;
!Dosage&lt;br /&gt;
!Observations&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
====== Oral ======&lt;br /&gt;
|Estradiol Valerate in pill form (e.g. Cyclacur)&lt;br /&gt;
|&amp;gt;=6mg/day&lt;br /&gt;
(max 10mg as per Dr. Powers)&lt;br /&gt;
|It is recommended that doses are taken separately on set time intervals during the day for more stable estradiol levels, e.g. for a 6mg dose you would take 2mg per 8 hours. By the oral route the active substance is metabolized by the liver and part of it is converted to estrone (E1), which has much less feminizing effects than estradiol (E2) so the desired effect is essentially prevented. The bioavailability of estradiol by oral administration is very low (~5%) and usually lower levels of E2 are observed in blood tests than other methods of administration. [anecdotal apo to server, wikipedia kai tttt - correct/expand?] It is also necessary to administer anti-androgens to reduce testosterone levels to the female range.&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
====== Sublingual ======&lt;br /&gt;
|Estradiol Valerate in pill form (e.g. Cyclacur)&lt;br /&gt;
|&amp;gt;=4mg/day&lt;br /&gt;
|It is recommended that doses are taken separately on set time intervals during the day for more stable estradiol levels, e.g. for a 6mg dose you would take 2mg per 8 hours. The sublingual way bypasses estradiol metabolism by the liver and has about 5 times the estradiol bioavailability of the oral way. This way, estradiol levels have greater range than orally (higher peak lower bottom), in oral they remain higher for ~12 hours while sublingually they go away after 3-4 hours (This however is from a study from 2005 on cis women)&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== Vial info === &amp;lt;!--T:47--&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--T:48--&amp;gt;&lt;br /&gt;
=== Medications ===&lt;br /&gt;
For cyclacur: &#039;&#039;&#039;take only the white pills, the brown pills are Norgestrel which have 0.5mg of estradiol but has an androgenic effect and may also cause other side effects&#039;&#039;&#039;. &lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--T:49--&amp;gt;&lt;br /&gt;
==== Estrogens ====&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|+&lt;br /&gt;
!Brand Name(s)&lt;br /&gt;
!Substance&lt;br /&gt;
!Form&lt;br /&gt;
!Method of Administration&lt;br /&gt;
!Cost&lt;br /&gt;
!Cost with Healthcare Coverage&lt;br /&gt;
!Dosage&lt;br /&gt;
!Safety&lt;br /&gt;
!Notes&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
====== [https://www.galinos.gr/web/drugs/main/drugs/Cyclacur Cyclacur] ======&lt;br /&gt;
|Estradiol Valerate (EV)&lt;br /&gt;
|Pill tablet&lt;br /&gt;
|Orally or sublingually&lt;br /&gt;
|2.01€ for 11 pills ([https://www.galinos.gr/service/drugs/drawPackagePrice/1198 Pricemap])&lt;br /&gt;
~130.8-328.€/year&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--T:50--&amp;gt;&lt;br /&gt;
~10.9-27.4€/month&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--T:51--&amp;gt;&lt;br /&gt;
Prices are indicative, the cost depends on the dosage.&lt;br /&gt;
| -&lt;br /&gt;
|6mg-10mg/day (according to Dr. Will Powers)&lt;br /&gt;
4mg-8mg/day (according to Greek Endocrinologists)&lt;br /&gt;
|A&lt;br /&gt;
|&lt;br /&gt;
* &#039;&#039;&#039;Only white pills are used.&#039;&#039;&#039; Brown pills do have a bit of estradiol but arent taken due to other side effects.&lt;br /&gt;
* You need antiandrogens or GNRH antagonists if you haven&#039;t had an orchiectomy.&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
====== Progynova ======&lt;br /&gt;
|Estradiol Valerate (EV)&lt;br /&gt;
|Pill tablet&lt;br /&gt;
|Orally or sublingually&lt;br /&gt;
|~22€ for 72 pills of 1 mg or ~32€ for 72 pills of 2 mg&lt;br /&gt;
Prices are indicative, the cost depends on the dosage.&lt;br /&gt;
| -&lt;br /&gt;
|4mg-8mg/day&lt;br /&gt;
|A&lt;br /&gt;
|&lt;br /&gt;
* There is no reason to use it in Greece since Cyclacur is available in Greek pharmacies.&lt;br /&gt;
* You need antiandrogens or GNRH antagonists if you haven&#039;t had an orchiectomy.&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
====== Estrofem, Estrifam (german brand name), [https://www.galinos.gr/web/drugs/main/drugs/trisequens Trisequens] ======&lt;br /&gt;
|Estradiol Hemihydrate&lt;br /&gt;
|Pill tablet&lt;br /&gt;
|Orally or sublingually&lt;br /&gt;
|~30€ for 28 pills of 2 mg without shipping costs.&lt;br /&gt;
Prices are indicative, the cost depends on the dosage.&lt;br /&gt;
| -&lt;br /&gt;
|4mg-8mg/day&lt;br /&gt;
|A&lt;br /&gt;
|&lt;br /&gt;
* There is no reason to use it in Greece since Cyclacur is available in Greek pharmacies.&lt;br /&gt;
* You need antiandrogens or GNRH antagonists if you haven&#039;t had an orchiectomy.&lt;br /&gt;
* Trisequens, while being available in Greece, is odd to take with 12 pills being 2mg EH, 10 norgestrel, and 6 1mg EH, for a much higher price than [[HRT#Cyclacur|Cyclacur]].&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
====== [https://www.galinos.gr/web/drugs/main/drugs/Dermestril Dermestril] ======&lt;br /&gt;
|Estradiol Hemihydrate&lt;br /&gt;
|Patch&lt;br /&gt;
|Trans-dermally&lt;br /&gt;
|44€ for 24 patches of 100mcg&lt;br /&gt;
~15€ for 8 patches of 50mcg&lt;br /&gt;
| -&lt;br /&gt;
|50mcg/3.5 days (when starting off)&lt;br /&gt;
100mcg/3.5 days (whenever your e2 levels are stable)&lt;br /&gt;
|A&lt;br /&gt;
|&lt;br /&gt;
* &#039;&#039;&#039;If you have no idea how to apply patches watch this:&#039;&#039;&#039; [https://youtu.be/tXGIYWPqdpI?si=O0dlE19pq0ic0PZP Demonstrational Video]&lt;br /&gt;
* You need antiandrogens or GNRH antagonists if you haven&#039;t had an orchiectomy.&lt;br /&gt;
* 100mcg patches can be cut into 2 if needed.&lt;br /&gt;
|-&lt;br /&gt;
|Neofollin (can be ordered from pharmacies near Czechia, not tested in Greece), Delestrogen (Vial, unavailable), Progynon Depot (Ampules, unavailable)&lt;br /&gt;
|&lt;br /&gt;
====== Estradiol Valerate (EV) ======&lt;br /&gt;
|Injectable&lt;br /&gt;
|Subcutaneous or Intramuscular&lt;br /&gt;
|80€/year (including shipping costs, syringes and alcohol swabs)&lt;br /&gt;
| -&lt;br /&gt;
|5-7mg/5 days (monotherapy)&lt;br /&gt;
4-5mg/7 days (only in combination with an antiandrogen or GNRH agonist)&lt;br /&gt;
|A+&lt;br /&gt;
|&lt;br /&gt;
* It can be used without antiandrogens or GNRH agonists in ([[HRT#Μονοθεραπεία|Monotherapy]]) by increasing the dosage.&lt;br /&gt;
|-&lt;br /&gt;
|Depo-Estradiol (US only, unavailable)&lt;br /&gt;
|&lt;br /&gt;
====== Estradiol Cypionate (EC) ======&lt;br /&gt;
|Injectable&lt;br /&gt;
|Subcutaneous or Intramuscular&lt;br /&gt;
|~70-80€/year (not including shipping costs, syringes and alcohol swabs)&lt;br /&gt;
| -&lt;br /&gt;
|5-7mg/7 days&lt;br /&gt;
(&#039;&#039;&#039;mono dose&#039;&#039;&#039;)&lt;br /&gt;
? (TBD/&#039;&#039;&#039;dose with AA&#039;&#039;&#039;)&lt;br /&gt;
|?&lt;br /&gt;
|&lt;br /&gt;
* It can be used without antiandrogens or GNRH agonists in ([[HRT#Μονοθεραπεία|Monotherapy]])&lt;br /&gt;
|-&lt;br /&gt;
| -&lt;br /&gt;
|&lt;br /&gt;
====== Estradiol Enanthate (EEn) ======&lt;br /&gt;
|Injectable&lt;br /&gt;
|Subcutaneous or Intramuscular&lt;br /&gt;
|80€/year (including shipping costs, syringes and alcohol swabs)&lt;br /&gt;
| -&lt;br /&gt;
|2.5mg-7mg/7 days&lt;br /&gt;
(usual dosage: 4mg/7days)&lt;br /&gt;
|A+&lt;br /&gt;
|&lt;br /&gt;
* It can be used without antiandrogens or GNRH agonists in ([[HRT#Μονοθεραπεία|Monotherapy]]) by increasing the dosage.&lt;br /&gt;
|-&lt;br /&gt;
| -&lt;br /&gt;
|&lt;br /&gt;
====== Estradiol Undecylate (EU, EUn) ======&lt;br /&gt;
|Injectable&lt;br /&gt;
|Subcutaneous or Intramuscular&lt;br /&gt;
|130€/year (including shipping costs, syringes and alcohol swabs)&lt;br /&gt;
| -&lt;br /&gt;
|15-20mg/2 weeks&lt;br /&gt;
20-40mg+/4 weeks&lt;br /&gt;
|A+&lt;br /&gt;
|&lt;br /&gt;
* There&#039;s not much info on dosages, usually seen in [[HRT#Μονοθεραπεία|monotherapy]].&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--T:52--&amp;gt;&lt;br /&gt;
==== Anti-Androgens and GNRH Agonists ====&lt;br /&gt;
These should &#039;&#039;&#039;not&#039;&#039;&#039; be taken sublingually.&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|+&lt;br /&gt;
!Brand Name(s)&lt;br /&gt;
!Substance&lt;br /&gt;
!Cost&lt;br /&gt;
!Cost with Healthcare Coverage&lt;br /&gt;
!Dosage&lt;br /&gt;
!Safety&lt;br /&gt;
!Form&lt;br /&gt;
!Type&lt;br /&gt;
!Notes&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
====== [https://www.galinos.gr/web/drugs/main/drugs/Androcur Androcur] ======&lt;br /&gt;
|Cyproterone Acetate (CPA) is also referred to as cypro&lt;br /&gt;
|21.58€/50mg * 50 pills &lt;br /&gt;
19.7-31.5€/year&lt;br /&gt;
&lt;br /&gt;
([https://www.galinos.gr/service/drugs/drawPackagePrice/8023 Pricemap])&lt;br /&gt;
|?&lt;br /&gt;
|12.5mg/2 days- 10mg/day&lt;br /&gt;
&#039;&#039;&#039;Larger doses shouldn&#039;t be administered&#039;&#039;&#039;&lt;br /&gt;
|C&lt;br /&gt;
|Pill tablet&lt;br /&gt;
|Progestin (Steroidal antiandrogen)&lt;br /&gt;
Stops testosterone production.&lt;br /&gt;
|The max recommended dosage is 10mg/day . Monitoring of prolactin levels is recommended through [[Blood Testing#MTF|blood testing]].&lt;br /&gt;
&#039;&#039;&#039;Many doctors give overdoses of 50 mg/day. Cyproterone is a strong anti-androgen and testosterone suppression is possible with lower doses. A change of doctor is recommended.&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--T:53--&amp;gt;&lt;br /&gt;
[[wikipedia:Side_effects_of_cyproterone_acetate|Side Effects]]:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--T:54--&amp;gt;&lt;br /&gt;
* Benign brain tumor.&lt;br /&gt;
* In rare cases, liver damage.&lt;br /&gt;
* Vitamin B12 deficiency.&lt;br /&gt;
* Breast cancer.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--T:55--&amp;gt;&lt;br /&gt;
Testosterone suppression can be achieved with even lower doses, however a 50 mg pill is difficult to cut into pieces of less than 12.5 mg even with a pill cutter.&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
====== [https://www.galinos.gr/web/drugs/main/drugs/Bicalut Bicalut] ======&lt;br /&gt;
|Bicalutamide (aka: bica)&lt;br /&gt;
|29.10 euro/30 pills&lt;br /&gt;
29.10 euro/month&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--T:56--&amp;gt;&lt;br /&gt;
~350 euro/year&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
([https://www.galinos.gr/service/drugs/drawPackagePrice/11120 Pricemap])&lt;br /&gt;
|6.77 euro/month (28 tabs)&lt;br /&gt;
~95 euro/year&lt;br /&gt;
|50mg/day&lt;br /&gt;
|A-&lt;br /&gt;
|Pill/Tablet&lt;br /&gt;
|Androgen receptor antagonist (Nonsteroidal antiandrogen)&lt;br /&gt;
Blocks absorption of all androgens (including testosterone)&lt;br /&gt;
|&#039;&#039;&#039;Serious negative interactions can be noted if combined with other anti-androgens and GNRH agonists (except progesterone)&#039;&#039;&#039;&lt;br /&gt;
&#039;&#039;&#039;Very rare&#039;&#039;&#039; chance for recoverable and non-fatal liver damage for people with a certain rare mutation.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--T:57--&amp;gt;&lt;br /&gt;
Most of the effects listen in the instruction manual are scaremongering. (it lists a very high chance of liver issues when they are actually very rare, and also lists photosensitivity, which if it even occurs at all, it should be quite rare. We are aware of nobody who had a negative interction between alexandrite laser hair removal and bicalutamide).&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--T:58--&amp;gt;&lt;br /&gt;
Note that bicalutamide, unlike most other anti-androgens, &#039;&#039;&#039;does not&#039;&#039;&#039; lower testosterone levels, in fact they usually rise as the body responds to testosterone receptors being inhibited. Do not be alarmed if you notice an increase of testosterone in your blood tests.&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
====== [https://www.galinos.gr/web/drugs/main/drugs/Arvekap Arvekap] ======&lt;br /&gt;
|Triptorelin&lt;br /&gt;
| -&lt;br /&gt;
|~200/year?&lt;br /&gt;
|&lt;br /&gt;
|A?&lt;br /&gt;
|Injection&lt;br /&gt;
|GNRH Agonist&lt;br /&gt;
(indirectly) Stops testosterone AND estrogen production&lt;br /&gt;
|Also a puberty blocker&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
====== [https://www.galinos.gr/web/drugs/main/drugs/aldactone Aldactone] ======&lt;br /&gt;
|Spironolactone&lt;br /&gt;
|5.19 euro/20 tabs (100mg)&lt;br /&gt;
([https://www.galinos.gr/service/drugs/drawPackagePrice/148 Pricemap])&lt;br /&gt;
|?&lt;br /&gt;
|50mg-200mg/day&lt;br /&gt;
|B-C&lt;br /&gt;
|Tablet&lt;br /&gt;
|Antimineralocorticoid/MCRA&lt;br /&gt;
|Very inefficient, makes you pee, it&#039;s a medication for blood pressure&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
|Flutamide&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|F---&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|Only in this table as an example to avoid&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
==== Miscellaneous/Progesterone ====&lt;br /&gt;
Progesterone falls under this category, as it is not quite the same as other Anti-Androgens, the mention of Progesterone in this title is necessary in order to reduce confusion and questions such as &amp;quot;Where is progesterone?&amp;quot; and &amp;quot;Did you remove prog from the page?&amp;quot;.&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
!Brand Name(s)&lt;br /&gt;
!Substance&lt;br /&gt;
!Cost&lt;br /&gt;
!Cost with Healthcare Coverage&lt;br /&gt;
!Dosage&lt;br /&gt;
!Safety&lt;br /&gt;
!Form&lt;br /&gt;
!Type&lt;br /&gt;
!Notes&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
====== [https://www.galinos.gr/web/drugs/main/drugs/utrogestran Utrogestan] ======&lt;br /&gt;
|Progesterone (P4) it is also referred to as prog&lt;br /&gt;
|5.83 euro/30 caps (100mg)&lt;br /&gt;
8.08 euro/15 caps (200mg)&lt;br /&gt;
([https://www.galinos.gr/service/drugs/drawPackagePrice/7619 Pricemap])&lt;br /&gt;
|?&lt;br /&gt;
|100mg or 200mg daily (rectal administration, [[Blood Testing|blood tests]] are recommended)&lt;br /&gt;
|A&lt;br /&gt;
|Capsule&lt;br /&gt;
|Stops testosterone production.&lt;br /&gt;
|There is not much confirmed information about progesterone.&lt;br /&gt;
It can also be taken orally but the absorption rate is very low.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--T:59--&amp;gt;&lt;br /&gt;
Anecdotal claims:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--T:60--&amp;gt;&lt;br /&gt;
* Helps with breast development and with feminization in general.&lt;br /&gt;
* Can be given after one year of estradiol.&lt;br /&gt;
* Suggested to be given after the individual reaches Tanner stage 3.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--T:61--&amp;gt;&lt;br /&gt;
It can have androgenic or other (non-serious, recoverable) effects for some individuals - in particular it can be converted to DHT by the body even in combination with dutasteride or bicalutamide.&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--T:62--&amp;gt;&lt;br /&gt;
==== Other anti-androgens (optional) ====&lt;br /&gt;
These are used to block conversion of other androgens to DHT (which causes hair loss (hair) and body hair growth). They aren&#039;t general use Anti-Androgens.&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
!Brand Name(s)&lt;br /&gt;
!Substance&lt;br /&gt;
!Cost&lt;br /&gt;
!Cost with Healthcare Coverage&lt;br /&gt;
!Dosage&lt;br /&gt;
!Safety&lt;br /&gt;
!Form&lt;br /&gt;
!Type&lt;br /&gt;
!Notes&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
====== [https://www.galinos.gr/web/drugs/main/packages/26485 Dastidem], [https://www.galinos.gr/web/drugs/main/packages/25557 Rafuster], [https://www.galinos.gr/web/drugs/main/packages/25893 Duaride], [https://www.galinos.gr/web/drugs/main/packages/25894 Dustezor] ======&lt;br /&gt;
|Dutasteride&lt;br /&gt;
|7.90€/30 caps&lt;br /&gt;
|~6€/30 caps&lt;br /&gt;
|0.5mg/day (?/TBD)&lt;br /&gt;
|A-&lt;br /&gt;
|Capsule&lt;br /&gt;
| -&lt;br /&gt;
|High effectiveness.&lt;br /&gt;
|-&lt;br /&gt;
| -&lt;br /&gt;
|Finasteride&lt;br /&gt;
| -&lt;br /&gt;
| -&lt;br /&gt;
| -&lt;br /&gt;
|F&lt;br /&gt;
| -&lt;br /&gt;
| -&lt;br /&gt;
|Effectiveness is none to medium (Just take Dutasteride - will not stop conversion of Progesterone to DHT)&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== Transmasc ==&lt;br /&gt;
&lt;br /&gt;
=== Medications ===&lt;br /&gt;
&lt;br /&gt;
==== Testosterone ====&lt;br /&gt;
[https://www.galinos.gr/web/drugs/main/substances/testosterone/marketing Galinos.gr&#039;s testosterone availability page]&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|+&lt;br /&gt;
!Brand Name(s)&lt;br /&gt;
!Substance&lt;br /&gt;
!Form&lt;br /&gt;
!Method of Administration&lt;br /&gt;
!Cost&lt;br /&gt;
!Cost with Healthcare Coverage&lt;br /&gt;
!Dosage&lt;br /&gt;
!Safety&lt;br /&gt;
!Notes&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
====== [https://www.galinos.gr/web/drugs/main/packages/4929 Norma] ======&lt;br /&gt;
|Testosterone Enanthate&lt;br /&gt;
|Injection/Ampule&lt;br /&gt;
|Subcutaneous or Intramuscular&lt;br /&gt;
|17.67€/ampule &lt;br /&gt;
([https://www.galinos.gr/service/drugs/drawPackagePrice/4929 Pricemap])&lt;br /&gt;
|?&lt;br /&gt;
|?&lt;br /&gt;
|?&lt;br /&gt;
| -&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
====== [https://www.galinos.gr/web/drugs/main/packages/21943 Nebido] ======&lt;br /&gt;
|Testosterone Undecanoate&lt;br /&gt;
|Injection/Vial&lt;br /&gt;
|Intramuscular&lt;br /&gt;
|100.37€/vial&lt;br /&gt;
([https://www.galinos.gr/service/drugs/drawPackagePrice/21943 Pricemap])&lt;br /&gt;
|~32.52€/vial (you pay 25%)&lt;br /&gt;
|1 vial (1000mg/4mL)/10-20 weeks&lt;br /&gt;
|A&lt;br /&gt;
|As a starting dose &#039;&#039;&#039;after a year of HRT&#039;&#039;&#039;, you could also consider:&lt;br /&gt;
&lt;br /&gt;
* Instead of injecting one vial per 20 weeks, you do half every 10-12 weeks, however nothing could be sourced to support this. Though logically it could make sense as a practice.&lt;br /&gt;
* Do a test at 6 weeks after starting, if T is too high don&#039;t take the 2nd dose, if it&#039;s not you can take the 2nd and then test 2 weeks before every other dose.&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
====== [https://www.galinos.gr/web/drugs/main/packages/15739 Tostran] ======&lt;br /&gt;
|Testogel&lt;br /&gt;
|Gel&lt;br /&gt;
|Trans-dermally&lt;br /&gt;
|&#039;&#039;&#039;Starting dose&#039;&#039;&#039;&lt;br /&gt;
&amp;lt;!--T:82--&amp;gt;&lt;br /&gt;
* 35.54€/2 months&lt;br /&gt;
* 213.24€/year&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--T:83--&amp;gt;&lt;br /&gt;
&#039;&#039;&#039;30 mg dose&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--T:84--&amp;gt;&lt;br /&gt;
* 35.54€/40 days&lt;br /&gt;
* ~324.30€/year&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--T:85--&amp;gt;&lt;br /&gt;
&#039;&#039;&#039;40 mg dose&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--T:73--&amp;gt;&lt;br /&gt;
* 35.54€/30 days&lt;br /&gt;
* 426.48€/year&lt;br /&gt;
([https://www.galinos.gr/service/drugs/drawPackagePrice/15739 Pricemap])&lt;br /&gt;
|35.54€ -&amp;gt; 8.89€&lt;br /&gt;
|20mg/day (starting dose)&lt;br /&gt;
30-40mg/day&lt;br /&gt;
|A&lt;br /&gt;
|&lt;br /&gt;
* 1 pump of Tostran (&#039;&#039;&#039;0.5g&#039;&#039;&#039;) delivers 10 mg of T.&lt;br /&gt;
* 2 pumps of Tostran are 1 pump of Testogel (20.25mg of T)&lt;br /&gt;
* Can cause skin reactions.&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
==== GNRH Agonists ====&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
!Brand Name(s)&lt;br /&gt;
!Substance&lt;br /&gt;
! Cost&lt;br /&gt;
!Cost with Healthcare Coverage&lt;br /&gt;
!Dosage&lt;br /&gt;
!Safety&lt;br /&gt;
!Form&lt;br /&gt;
!Type&lt;br /&gt;
!Notes&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
====== [https://www.galinos.gr/web/drugs/main/drugs/Arvekap Arvekap] ======&lt;br /&gt;
|Triptorelin&lt;br /&gt;
| -&lt;br /&gt;
|~200/year?&lt;br /&gt;
|&lt;br /&gt;
|A?&lt;br /&gt;
|Injection&lt;br /&gt;
|GNRH Agonist&lt;br /&gt;
(indirectly) Stops testosterone AND estrogen production&lt;br /&gt;
|Also a puberty blocker&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
==== Other anti-androgens (optional) ====&lt;br /&gt;
These are used to block conversion of other androgens to DHT (which causes hair loss (hair) and body hair growth). They aren&#039;t general use Anti-Androgens.&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
!Brand Name(s)&lt;br /&gt;
!Substance&lt;br /&gt;
!Cost&lt;br /&gt;
!Cost with Healthcare Coverage&lt;br /&gt;
!Dosage&lt;br /&gt;
!Safety&lt;br /&gt;
!Form&lt;br /&gt;
!Type&lt;br /&gt;
!Notes&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
====== [https://www.galinos.gr/web/drugs/main/packages/26485 Dastidem], [https://www.galinos.gr/web/drugs/main/packages/25557 Rafuster], [https://www.galinos.gr/web/drugs/main/packages/25893 Duaride], [https://www.galinos.gr/web/drugs/main/packages/25894 Dustezor] ======&lt;br /&gt;
|Dutasteride&lt;br /&gt;
|7.90€/30 caps&lt;br /&gt;
|~6€/30 caps&lt;br /&gt;
|0.5mg/day (?/TBD)&lt;br /&gt;
|A-&lt;br /&gt;
|Capsule&lt;br /&gt;
| -&lt;br /&gt;
|High effectiveness. &lt;br /&gt;
Not to be confused with proper Anti-Androgens.&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== Nonbinary hrt *under construction* ==&lt;br /&gt;
&lt;br /&gt;
=== !!! disclaimer-warning about potential issues !!! ===&lt;br /&gt;
&lt;br /&gt;
=== General outline of nb hrt for amab and afab ===&lt;br /&gt;
&lt;br /&gt;
=== Medications ===&lt;br /&gt;
&lt;br /&gt;
==== Selective Estrogen Receptor Modulators (SERMs) ====&lt;br /&gt;
&lt;br /&gt;
* Tamoxifen is a selective estrogen receptor modulator (SERM). In some tissues such as the brain it activates estrogen receptors, which may help reduce dysphoria. In breast tissue it antagonizes estrogen receptors, preventing the formation of breast tissue if desired. There is some evidence that Tamoxifen inhibits memory, though the effects of taking it alongside regular estrogen are undocumented. Tamoxifen can cause cognitive dysfunction and increase your risk of stroke and pulmonary embolism. Tamoxifen may also be taken alongside 17β-estradiol, more research is needed. In this combination, estradiol should still have its effects (combating dysphoria in the brain, redistribution of body fat, smoother skin etc.) while tamoxifen prevents the growth of breast tissue.&lt;br /&gt;
* Raloxifene is another SERM. It is an estrogen receptor antagonist in breast tissue. It is an estrogen receptor agonist in bone and can be used to prevent osteoporosis. Raloxifene has been shown to reduce ERα expression in breast tissue in premenopausal women. As the synthesis of progesterone receptors (PR) is estrogen-regulated, raloxifene also decreases the expression of PR. Additionally, it was shown to decrease the presence of Ki-67, a biomarker for cell proliferation, in breast tissue of premenopausal women. As a result, it can be used to treat gynecomastia, and has been shown effective in reducing breast size in those with the condition. Raloxifene may promote feminine fat distribution: in a study on 56-66 year old postmenopausal women, there was an increase in fat in the legs and buttocks and a decrease in fat in the abdomen and trunk after 1 year on 60 mg/day raloxifene. It is not yet known how pronounced this effect is, as there have been no comparisons of body fat distribution between raloxifene and estradiol. Raloxifene may increase the risk of stroke and pulmonary embolism.&lt;br /&gt;
* Afimoxifene is a topical SERM and the primary metabolite of tamoxifen.&lt;br /&gt;
&lt;br /&gt;
==== Anti-androgens ====&lt;br /&gt;
&lt;br /&gt;
==== Bicalutamide ====&lt;br /&gt;
Bicalutamide is an  anti-androgen which is used mainly in the treatment of prostate cancer but can also be used to treat hirsutism, or as a component of hormone therapy in feminizing HRT, among other uses. It is nonsteroidal anti-androgen and a selective/pure antagonist of the androgen receptor. It has no other hormonal activity and does not lower androgen levels. Bicalutamide crosses the blood-brain barrier and blocks the effects of testosterone and dihydrotestosterone (DHT) both in the body and in the brain. While it has been observed that bicalutamide does not cross the blood-brain barrier in rats and dogs, this was found not to be the case in humans&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
In general Ralox seems the best idea based on overall effectiveness and less severe side effects compared to other SERMs. Most people on this kind of MtNB hrt seem to be using a combination of ralox (in place of estradiol) and bica [expand this + powers e1s schizo stuff?]&lt;br /&gt;
&lt;br /&gt;
== Legal ==&lt;br /&gt;
It is legal to buy anything without a diagnosis or a prescription (off the counter - OTC), Testosterone can be hit or miss, look for [https://www.galinos.gr/web/drugs/main/packages/15739 Tostran] (Testogel) or [https://www.galinos.gr/web/drugs/main/packages/4929 TEn] (Testosterone Enanthate/Norma, injections).  &lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--T:86--&amp;gt;&lt;br /&gt;
You can also check the &#039;&#039;&#039;[https://diyon.top/map Trans-Friendly Pharmacies Map]&#039;&#039;&#039; for any pharmacies near you (this goes for both Transfem and Transmasc HRT). &lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--T:75--&amp;gt;&lt;br /&gt;
There is no minimum or maximum legal age for someone to start HRT. &lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--T:76--&amp;gt;&lt;br /&gt;
It is not legally mandatory for someone to have a diagnosis by a psychiatrist in order to medically transition.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--T:77--&amp;gt;&lt;br /&gt;
There is no legally mandatory time restriction for a psychiatrist to monitor you before diagnosing you.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--T:78--&amp;gt;&lt;br /&gt;
You don&#039;t legally need to be on HRT in order to be exempt from the [[army]], change your [[Legal|legal sex]], or to have a [[surgery]].&lt;br /&gt;
&lt;br /&gt;
== Other resources == &amp;lt;!--T:79--&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--T:80--&amp;gt;&lt;br /&gt;
* Simulator: https://www.estrannai.se/&lt;br /&gt;
* https://transfemscience.org/ (note, the authors of this site disagree with a lot of what they are saying, regardless, it is still interesting)&lt;br /&gt;
** Introduction to Hormone Therapy for Transfeminine People: https://transfemscience.org/articles/transfem-intro/&lt;br /&gt;
** Older simulator: https://transfemscience.org/misc/injectable-e2-simulator/&lt;br /&gt;
** Dosage calculator: https://transfemscience.org/misc/injectable-dose-vol-conc-conv/&lt;br /&gt;
* https://diyhrt.wiki/ (alt link: https://anarch.cc/transfeminine-diy-hrt-the-ultimate-guide-2/)&lt;br /&gt;
* https://hrtcafe.net/&lt;br /&gt;
* ?? https://hrt.coffee/&lt;br /&gt;
* https://www.reddit.com/r/TransDIY/&lt;br /&gt;
* https://www.reddit.com/r/TransfemScience/&lt;br /&gt;
* https://groups.io/g/MTFHRT/wiki/29602 (alt link: https://anarch.cc/mtf-hrt-ultimate-diy/)&lt;br /&gt;
* https://hrt.cat/ - info for making your own (you will probably not need it - version 1.0: https://hrtcafe.net/hrtcat/)&lt;br /&gt;
* https://archive.ph/uQb8g (alt link: https://anarch.cc/making-your-own-injections/, as above)&lt;br /&gt;
* https://crimethinc.com/2022/12/15/producing-transdermal-estrogen-a-do-it-yourself-guide (alt link: https://anarch.cc/producing-transdermal-estrogen-a-do-it-yourself-guide/, as above)&lt;br /&gt;
* https://archive.ph/cpy7k (alt link: https://anarch.cc/homebrewing-hormones-mtf-guide/, as above)&lt;br /&gt;
&amp;lt;/translate&amp;gt;&lt;/div&gt;</summary>
		<author><name>Goblinmoder</name></author>
	</entry>
	<entry>
		<id>https://wiki.diyon.top/index.php?title=Blood_Testing&amp;diff=1004</id>
		<title>Blood Testing</title>
		<link rel="alternate" type="text/html" href="https://wiki.diyon.top/index.php?title=Blood_Testing&amp;diff=1004"/>
		<updated>2025-04-17T12:22:01Z</updated>

		<summary type="html">&lt;p&gt;Goblinmoder: mtf =&amp;gt; transfem&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{#seo:|title=Blood Testing|title_mode=replace}}&lt;br /&gt;
== Insurance ==&lt;br /&gt;
Οι εξετάσεις που πραγματοποιούνται σε δημόσιες δομές (Κέντρα Υγείας - ΚΥ / Νοσοκομεία) &#039;&#039;&#039;είναι δωρεάν για όλα&#039;&#039;&#039;.&lt;br /&gt;
&lt;br /&gt;
Από 01/07/2022 βάσει &#039;&#039;&#039;άρθρου 38 του ν.4865/2021 και Υ.Α (υπουργικής απόφασης) 30268/30-05-2022&#039;&#039;&#039; οι &#039;&#039;&#039;ανασφάλιστα πολιτά&#039;&#039;&#039; δεν μπορούν να λάβουν &#039;&#039;&#039;συνταγές ΕΟΠΥΥ από ιδιώτες γιατρούς&#039;&#039;&#039;. Το οποίο πρακτικά σημαίνει πως αν είμαστε ανασφάλιστα, τότε είναι πρακτικό αδύνατο να εξυπηρετηθούμε από ιδιώτες.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Θέλετε να μάθετε περισσότερες πληροφορίες για την κατάσταση ασφάλισης σας όπως το αν είστε ασφαλισμένο και για ποιο χρονικό διάστημα;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Αναφερθείτε στις e-υπηρεσίες του ATLAS στον εξής σύνδεσμο με χρήση κωδικών taxisnet και ΑΜΚΑ ή στοιχείων eIDAS (who uses that anyways): https://www.atlas.gov.gr/ATLAS/Atlas/Login2.aspx &lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Σε περίπτωση που είστε ανασφάλιστοι και επιθυμείτε να ασφαλιστείτε για να προβείτε σε εκτέλεση συνταγών υπάρχουν αρκετοί συχνοί λόγοι που μπορείτε να λάβετε την κατάσταση ασφαλισμένου, μερικοί από αυτούς συμπεριλαμβάνουν:&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
* Για φοιτητά και άτομα που αποφοίτησαν &amp;lt; 2 χρόνια νωρίτερα από την σημερινή, έμμεσα μέσω ασφαλισμένου γονέα. Η ανανέωση της κατάστασης ασφάλισης γίνεται κάθε 6 μήνες στον ΕΦΚΑ και συνήθως απαιτείται απλά ο ΑΜΚΑ των εξαρτώμενων μελών και πρόσφατη βεβαίωση σπουδών / απονομή σπουδών.&lt;br /&gt;
* Εργασία ως ιδιωτικό/δημόσιο υπάλληλο (μερική ή πλήρης).&lt;br /&gt;
* Αν είστε συνταξιούχα (αυτό περιλαμβάνει σύνταξη χηρείας και ορφανού).&lt;br /&gt;
* Αυτασφάλιση για ελεύθερα επαγγελματία/ αυτοαπασχολούμενα.&lt;br /&gt;
* Είστε μακροχρόνια άνεργο ή λαμβάνετε ταμείο ανεργίας.&lt;br /&gt;
* Μέσω του συζύγου σας.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Δεν γνωρίζετε σε ποιον ΕΦΚΑ να απευθυνθείτε για θέματα ασφάλισης;&#039;&#039;&#039; &lt;br /&gt;
&lt;br /&gt;
Χρησιμοποιήστε την εξής εφαρμογή του ΕΦΚΑ για να βρείτε που ανήκετε μόνο με χρήση ταχυδρομικού κώδικα (ΤΚ) και περιφέρειας: https://www.efka.gov.gr/mathepouanikeis.php&lt;br /&gt;
&lt;br /&gt;
== Cost ==&lt;br /&gt;
Συνταγογραφημένες εξετάσεις μπορούν να πραγματοποιηθούν σε οποιαδήποτε δημόσια δομή (π.χ τμήμα αιματολογικών Νοσοκομείου ή Κέντρο Υγείας) &#039;&#039;&#039;δωρεάν&#039;&#039;&#039;.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Μη συνταγογραφημένες εξετάσεις (DIY)&#039;&#039;&#039; καθώς και &#039;&#039;&#039;συνταγογραφημένες εξετάσεις&#039;&#039;&#039; μπορούν να πραγματοποιηθούν σε &#039;&#039;&#039;ιδιωτικές δομές (κέντρα αιματολογικών εξετάσεων) με μερική κάλυψη από τον ΕΟΠΥΥ όταν υπάρχει συνταγή&#039;&#039;&#039;. Το θετικό των ιδιωτικών κέντρων είναι συνήθως η αυξημένη μέριμνα του ασθενή και η ταχύτερη έκδοση αποτελεσμάτων (συνήθως γίνεται αυθημερόν ενώ στα δημόσια παίρνει 10+ μέρες).&lt;br /&gt;
&lt;br /&gt;
Άρα για ανακεφαλαίωση, στα δημόσια εκτελούμε συνταγές ΕΟΠΥΥ &#039;&#039;&#039;χωρίς κόστος, όμως με καθυστερήσεις&#039;&#039;&#039;. Σε κάθε περίπτωση, με κάποιο κόστος, με συνταγή ή χωρίς, μπορούμε επίσης να εκτελέσουμε &#039;&#039;&#039;εξετάσεις και συνταγές ΕΟΠΥΥ σε ιδιωτικές δομές&#039;&#039;&#039;.&lt;br /&gt;
&lt;br /&gt;
Για Transfem άτομα, σε περίπτωση που κάνουμε DIY εξετάσεις (χωρίς συνταγή ΕΟΠΥΥ) το κόστος είναι σχετικά υψηλό, με αποτέλεσμα να εξετάζουμε κυρίως:&lt;br /&gt;
&lt;br /&gt;
- Testosterone - Ολική τεστοστερόνη (T)&lt;br /&gt;
&lt;br /&gt;
- Estradiol - Οιστραδιόλη (Ε2)&lt;br /&gt;
&lt;br /&gt;
- Dihydrotestosterone - Διυδροτεστοστερόνη (DHT - Σε περίπτωση που μας ενδιαφέρει ή σε περίπτωση που παίρνουμε Progesterone - Προγεστερόνη)&lt;br /&gt;
&lt;br /&gt;
- Prolactine - Προλακτίνη (PRL - Σε περίπτωση που λαμβάνουμε κυπροτερόνη - CPA).&lt;br /&gt;
&lt;br /&gt;
Η εξέταση χωρίς συνταγή ΕΟΠΥΥ για Τ+Ε2+DHT είναι στο range &#039;&#039;&#039;30-55€ στις μεγάλες πόλεις&#039;&#039;&#039;.&lt;br /&gt;
&lt;br /&gt;
Σε γενικές γραμμές, τα έξοδα ενός ασφαλισμένου - ακόμα και αν πραγματοποιήσει εξετάσεις σε ιδιωτική δομή - είναι αρκετά μειωμένα, εφόσον υπάρχει συνταγή ΕΟΠΥΥ.&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|+Κόστος Εξετάσεων Ασφαλισμένου σε Ιδιωτική Δομή με συνταγή ΕΟΠΥΥ&lt;br /&gt;
!Εξέταση&lt;br /&gt;
!Συμμετοχή Ασφαλισμένου&lt;br /&gt;
!Δαπάνες ΕΟΠΥΥ&lt;br /&gt;
!Σημειώσεις&lt;br /&gt;
|-&lt;br /&gt;
|Testosterone - Τεστοστερόνη (Τ)&lt;br /&gt;
|2,47€&lt;br /&gt;
|7,58€&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|Serum Estradiol - Οιστραδιόλη (Ε2)&lt;br /&gt;
|1,86€&lt;br /&gt;
|6,36€&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|Γενική Εξέταση Αίματος&lt;br /&gt;
|0,43€&lt;br /&gt;
|1,69€&lt;br /&gt;
|Χρήσιμη, προσοχή σε false positives για αναιμία σε transfem άτομα.&lt;br /&gt;
|-&lt;br /&gt;
|Prolactine - Προλακτίνη (PRL)&lt;br /&gt;
|1,86€&lt;br /&gt;
|6,01€&lt;br /&gt;
|Ιδιαίτερα χρήσιμη σε άτομα που λαμβάνουν Κυπροτερόνη - CPA.&lt;br /&gt;
|-&lt;br /&gt;
|Luteinizing Hormone - Ωχρινοτρόπος Ορμόνη (LH)&lt;br /&gt;
|1,62€&lt;br /&gt;
|8,36€&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|Sex Hormone Binding Globulin - Δεσμευτική Σφαιρίνη των Ορμονών του Φύλου (SHBG)&lt;br /&gt;
|? - Χαμηλό&lt;br /&gt;
|7,16€&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|Thyroid-Stimulating Hormone - Θυρεοτρόπος Ορμόνη (TSH)&lt;br /&gt;
|1,86€&lt;br /&gt;
|12,38€&lt;br /&gt;
|Για άτομα με προδιάθεση θυροειδή, καλή γενική εξέταση &lt;br /&gt;
|-&lt;br /&gt;
|Free Thyroxine - Ελεύθερη Θυροξίνη (FT4)&lt;br /&gt;
|3,08€&lt;br /&gt;
|4,88€&lt;br /&gt;
|Για άτομα με προδιάθεση θυροειδή, καλή γενική εξέταση &lt;br /&gt;
|-&lt;br /&gt;
|Follicle-Stimulating Hormone - Θυλακιοτρόπος Ορμόνη (FSH)&lt;br /&gt;
|1,62€&lt;br /&gt;
|5,26€&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|Pottasium - Κάλιο (K-Pottasium)&lt;br /&gt;
|0,78€&lt;br /&gt;
|1,71€&lt;br /&gt;
|Ιδιαίτερα χρήσιμη για άτομα που λαμβάνουν Σπιρονολακτόνη - Spironolactone&lt;br /&gt;
|-&lt;br /&gt;
|Alanine Aminotransferase - Πυροσταφυλική Τρανσαμινάση (ALT/SGPT)&lt;br /&gt;
|? - Χαμηλό&lt;br /&gt;
|1,34€&lt;br /&gt;
|Ιδιαίτερα χρήσιμη για άτομα που λαμβάνουν Βικαλουταμίδη - Bicalutamide&lt;br /&gt;
|-&lt;br /&gt;
|Aspartate Aminotransferase - Οξαλοξεϊκή Τρανσαμινάση (AST/SGOT)&lt;br /&gt;
|? - Χαμηλό&lt;br /&gt;
|1,34€&lt;br /&gt;
|Ιδιαίτερα χρήσιμη για άτομα που λαμβάνουν Βικαλουταμίδη - Bicalutamide&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== Transfem ==&lt;br /&gt;
Τα πιο σημαντικά επίπεδα για καταμέτρηση είναι Τεστοστερόνη (T) και Οιστραδιόλη (E2).&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|+&lt;br /&gt;
!Εξέταση&lt;br /&gt;
!Αποδεκτές Τιμές&lt;br /&gt;
!Σημειώσεις&lt;br /&gt;
|-&lt;br /&gt;
|Estradiol - Οιστραδιόλη (E2)&lt;br /&gt;
|100-200 pg/mL ή 450-700 pmol/L αν λαμβάνονται [[HRT#Anti-androgens and GNRH Agonists|αντιανδρογόνα]]&lt;br /&gt;
&amp;gt;300 pg/mL ή &amp;gt;1100 pmol/L σε [[HRT#Μονοθεραπεία|μονοθεραπεία]]&lt;br /&gt;
|Για [[HRT#Μονοθεραπεία|μονοθεραπεία]] οι αποδεκτές τιμές εξαρτώνται από το αν έχει επιτευχθεί σωστή καταστολή της τεστοστερόνης. Οι τιμές είναι ενδικτεικές και μπορούν να διαφέρουν κατά πολύ από άτομο σε άτομο.&lt;br /&gt;
|-&lt;br /&gt;
|Testosterone - Τεστοστερόνη (T)&lt;br /&gt;
|15-50 ng/dL&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|Dihydrotestosterone - Διυδροτεστοστερόνη (DHT)&lt;br /&gt;
|&amp;lt;10 ng/dL&lt;br /&gt;
|Οι αποδεκτές τιμές είναι ισχυρισμός του Dr. Will Powers. Η DHT μπορεί να προκαλέσει ανδροποίηση ακόμη και αν η τεστοστερόνη είναι μέσα στις αποδεκτές τιμές. TODO: Write available actions when DHT is high.&lt;br /&gt;
|-&lt;br /&gt;
|Prolactine - Προλακτίνη (PRL)&lt;br /&gt;
|2-29 ng/mL (TODO: Check if higher levels are acceptable)&lt;br /&gt;
|Σημαντική εξέταση αν χορηγείται [[HRT#Αντιανδρογόνα και GNRH ανταγωνιστές|κυπροτερόνη]]  για την πρόληψη [[wikipedia:Prolactinoma|προλακτινώματος]].&lt;br /&gt;
|-&lt;br /&gt;
|Progesterone - Προγεστερόνη (P4)&lt;br /&gt;
|5-10 ng/mL&lt;br /&gt;
|Αν δεν χορηγείται [[HRT#Αντιανδρογόνα και GNRH ανταγωνιστές|προγεστερόνη]] η εξέταση δεν είναι σημαντική.&lt;br /&gt;
|-&lt;br /&gt;
|Sex Hormone Binding Globulin - Φυλοσύνδετη Σφαιρίνη ή Δεσμευτική Σφαιρίνη των Ορμονών του Φύλου (SHBG)&lt;br /&gt;
|14.60-110 nmol/L&lt;br /&gt;
|Επιρρεάζει την ελεύθερη οιστραδιόλη. Χαμηλότερα επίπεδα SHBG αυξάνουν την ελεύθερη οιστραδιόλη.&amp;lt;ref name=&amp;quot;:0&amp;quot;&amp;gt;https://www.sciencedirect.com/science/article/abs/pii/S0039128X14001986&amp;lt;/ref&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|Thyroid Stimulating Hormone - Θυρεοειδοτρόπος Ορμόνη (TSH)&lt;br /&gt;
|0.27-5 μIU/mL&lt;br /&gt;
|Σημαντική εξέταση αν υπάρχει ιστορικό στην οικογένεια για θέματα με τον θυροειδή. Άτομα με θυληκές ορμόνες έχουν παραπάνω πιθανότητες να τα αναπτύξουν.&lt;br /&gt;
|-&lt;br /&gt;
|Free Estradiol - Ελεύθερη Οιστραδιόλη&lt;br /&gt;
|&amp;gt;1,5% της Ε2&lt;br /&gt;
|Η διαθέσιμη οιστραδιόλη για να δεσμευτεί από τους υποδοχείς (προκαλεί τη θυληκοποίηση). Η SHBG και η τεστοστερόνη επιρρεάζουν την τιμή. Μπορεί και να υπολογιστεί με μαθηματικό τύπο.&amp;lt;ref name=&amp;quot;:0&amp;quot; /&amp;gt;&amp;lt;ref&amp;gt;https://aacrjournals.org/cebp/article/11/10/1065/166164/Validity-of-Free-Testosterone-and-Free-Estradiol&amp;lt;/ref&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|Estrone - Οιστρόνη (E1)&lt;br /&gt;
|Το 1/3 της Ε2&lt;br /&gt;
|Οι αποδεκτές τιμές είναι ισχυρισμός του Dr. Will Powers και σύμφωνα με αυτόν η σωστή αναλογία συμβάλει στην ανάπτυξη στήθους για ορισμένα άτομα. TODO: Find which cases.&lt;br /&gt;
|-&lt;br /&gt;
|Follicle-Stimulating Hormone - Θυλακιοτρόπος Ορμόνη (FSH)&lt;br /&gt;
|TODO&lt;br /&gt;
|TODO&lt;br /&gt;
|-&lt;br /&gt;
|Luteinizing Hormone - Ωχρινοτρόπος Ορμόνη (LH)&lt;br /&gt;
|TODO&lt;br /&gt;
|TODO&lt;br /&gt;
|-&lt;br /&gt;
|Dehydroepiandrosterone - Δεϋδροεπιανδροστερόνη (DHEA)&lt;br /&gt;
|TODO&lt;br /&gt;
|TODO: Find the case which this blood test is relevant.&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== Transmasc ==&lt;br /&gt;
&lt;br /&gt;
== Πηγές ==&lt;br /&gt;
&amp;lt;references /&amp;gt;&lt;/div&gt;</summary>
		<author><name>Goblinmoder</name></author>
	</entry>
	<entry>
		<id>https://wiki.diyon.top/index.php?title=HRT&amp;diff=1003</id>
		<title>HRT</title>
		<link rel="alternate" type="text/html" href="https://wiki.diyon.top/index.php?title=HRT&amp;diff=1003"/>
		<updated>2025-04-17T12:12:30Z</updated>

		<summary type="html">&lt;p&gt;Goblinmoder: separate blood levels from transfem and put them in general&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{#seo:&lt;br /&gt;
|title_mode=replace&lt;br /&gt;
|title=HRT&lt;br /&gt;
|description=We are open to discussion and actively on-going changes in formatting and contents of this Page and Website (in general). The e-mail address to refer to is fox@diyon.top&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
&amp;lt;languages/&amp;gt;&lt;br /&gt;
&amp;lt;translate&amp;gt;&lt;br /&gt;
&amp;lt;!--T:41--&amp;gt;&lt;br /&gt;
After around a month on HRT some of your ranges in your [[Blood Testing|blood test]] should be within desired ranges.&lt;br /&gt;
&lt;br /&gt;
== Disclaimer ==&lt;br /&gt;
 To clarify on &#039;&#039;&#039;dosages&#039;&#039;&#039;, the values mentioned below are rather speculative and most are based on &#039;&#039;&#039;personal experiences&#039;&#039;&#039; or &#039;&#039;&#039;(diy)hrt pages/websites/papers&#039;&#039;&#039;. Therefore it is encouraged to do [[Blood Testing|blood tests]] and if possible, check with an [[Doctors#Ενδοκρινολόγοι|endocrinologist]] (we also suggest [[Doctors]] that can help with such cases), especially if you have any specific &#039;&#039;&#039;health conditions&#039;&#039;&#039;. &lt;br /&gt;
Pricemaps are there to evaluate prices through &#039;&#039;&#039;[https://galinos.gr galinos.gr]&#039;&#039;&#039; (in case something is outdated, look for the green line that says &amp;quot;Λιανική&amp;quot;)&lt;br /&gt;
&lt;br /&gt;
We are open to discussion and actively on-going changes in formatting and contents of this Page and Website (in general). The e-mail address to refer to is &#039;&#039;&#039;fox@diyon.top&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
== Blood Levels ==&lt;br /&gt;
&lt;br /&gt;
==== Refer to the [[Blood Testing]] page. ====&lt;br /&gt;
== Transfem ==&lt;br /&gt;
Taking Puberty Blockers ([[HRT#Antiandrogens and GNRH Agonists|GNRH Agonists]], e.g: Arvekap) or any Anti Androgen (e.g: Aldactone, Androcur) &#039;&#039;&#039;without [[HRT#Estrogens|Estrogens]]&#039;&#039;&#039; is generally discouraged even during youth transitioning (This is &#039;&#039;&#039;non-definitive&#039;&#039;&#039; for Enby folks)&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--T:44--&amp;gt;&lt;br /&gt;
=== Monotherapy ===&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|+&lt;br /&gt;
!Type&lt;br /&gt;
!Commercial Names&lt;br /&gt;
!Dosage&lt;br /&gt;
!Notes&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
====== Sublingual (E Valerate or Hemihydrate) ======&lt;br /&gt;
|Cyclacur (EV), Estrofem (EH, imported), Trisequens (12 pills 2mg EH, 10 pills norgestrel, 6 pills 1mg EH)&lt;br /&gt;
|&amp;gt;=8-12mg/day&lt;br /&gt;
|While it is possible, even with a smaller dosage (&#039;&#039;&#039;at least 6mg&#039;&#039;&#039;), it&#039;s not that common. Ideally, use your blood tests to &#039;&#039;&#039;minmax&#039;&#039;&#039; your doses.&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
====== Injectable Estradiol Valerate (EV) ======&lt;br /&gt;
|Neofollin (can be ordered from pharmacies near Czechia, or aptekaapo.com &#039;&#039;&#039;but they’re not on hrtcafe&#039;&#039;&#039;, not tested in Greece), Delestrogen (Vial, unavailable), Progynon Depot (Ampules, unavailable), [[File:What-excuse-me.gif|thumb|[[HRT#Other resources|my honest reaction]]]]&lt;br /&gt;
|5-7mg/5 days&lt;br /&gt;
|&lt;br /&gt;
* Due to the large spikes in levels combined with the short [https://en.wikipedia.org/wiki/Biological_half-life half-life] it is not recommended for dosages to surpass the 5 day mark because it may cause menopause symptoms.&lt;br /&gt;
* Branded versions of this medication are not available in greece.&lt;br /&gt;
* The ampules contain a certain mg and do not allow for larger dosages, they are not re-usable. It is recommended to use a vial with a cap.&lt;br /&gt;
* Look for &#039;&#039;&#039;[https://arc-w.nihr.ac.uk/Wordpress/wp-content/uploads/2015/07/Low-dead-space-syringes.png syringe dead space]([[HRT#:~:text=* = It has been mentioned that syringes account for dead space, although that is not 100% certain.|*]])&#039;&#039;&#039;, e.g. if there&#039;s &#039;&#039;&#039;0.05mL&#039;&#039;&#039; remaining after injecting, draw &#039;&#039;&#039;+0.05mL&#039;&#039;&#039; from the vial.&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
====== Injectable Estradiol Cypionate (EC) ======&lt;br /&gt;
|[[File:What-excuse-me.gif|thumb|[[HRT#Other resources|my honest reaction]]]]Depo-Estradiol (US only, unavailable),&lt;br /&gt;
|5-7mg/7 days&lt;br /&gt;
|&lt;br /&gt;
* Look for &#039;&#039;&#039;[https://arc-w.nihr.ac.uk/Wordpress/wp-content/uploads/2015/07/Low-dead-space-syringes.png syringe dead space]([[HRT#:~:text=* = It has been mentioned that syringes account for dead space, although that is not 100% certain.|*]])&#039;&#039;&#039;, e.g. if there&#039;s &#039;&#039;&#039;0.05mL&#039;&#039;&#039; remaining after injecting, draw &#039;&#039;&#039;+0.05mL&#039;&#039;&#039; from the vial.&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
====== Injectable Estradiol Enanthate (EEn) ======&lt;br /&gt;
|[[File:What-excuse-me.gif|thumb|[[HRT#Other resources|my honest reaction]]]]&lt;br /&gt;
|4-7mg/7 days&lt;br /&gt;
7-10mg/10 days (7.2mg usually, depending on the vial, it&#039;s optimal because drawing cents of mL are hard to get right)&lt;br /&gt;
|&lt;br /&gt;
* You can multiply the weekly dosage by 2, which lasts up to 14 days (as much as the [https://en.wikipedia.org/wiki/Biological_half-life half-life] of Enanthate)&lt;br /&gt;
* Look for &#039;&#039;&#039;[https://arc-w.nihr.ac.uk/Wordpress/wp-content/uploads/2015/07/Low-dead-space-syringes.png syringe dead space]([[HRT#:~:text=* = It has been mentioned that syringes account for dead space, although that is not 100% certain.|*]])&#039;&#039;&#039;, e.g. if there&#039;s &#039;&#039;&#039;0.05mL&#039;&#039;&#039; remaining after injecting, draw &#039;&#039;&#039;+0.05mL&#039;&#039;&#039; from the vial.&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
====== Injectable Estradiol Undecylate (EU/EUn) ======&lt;br /&gt;
|[[File:What-excuse-me.gif|thumb|[[HRT#Other resources|my honest reaction]]]]&lt;br /&gt;
|There&#039;s not enough information on dosage. The frequency of those may differ according to the oil used (MCT/Castor oil). Indicative Dosages:&lt;br /&gt;
15-20mg/2 weeks&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--T:45--&amp;gt;&lt;br /&gt;
20-40mg+/4 weeks&lt;br /&gt;
|&lt;br /&gt;
* There&#039;s not enough information on its [[wikipedia:Biological_half-life|half-life]], a higher dosage can be administered that can last up to 20-30 days.&lt;br /&gt;
* [[wikipedia:Intramuscular_injection|IM injections]] last longer so they give better levels during the same period of time per injection.&lt;br /&gt;
* Needs at least 90 days to reach stable levels.&lt;br /&gt;
* Look for &#039;&#039;&#039;[https://arc-w.nihr.ac.uk/Wordpress/wp-content/uploads/2015/07/Low-dead-space-syringes.png syringe dead space]([[HRT#:~:text=* = It has been mentioned that syringes account for dead space, although that is not 100% certain.|*]])&#039;&#039;&#039;, e.g. if there&#039;s &#039;&#039;&#039;0.05mL&#039;&#039;&#039; remaining after injecting, draw &#039;&#039;&#039;+0.05mL&#039;&#039;&#039; from the vial.&lt;br /&gt;
|}&lt;br /&gt;
&#039;&#039;&#039;*&#039;&#039;&#039; = It has been mentioned that syringes account for dead space, although that is not 100% certain.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--T:46--&amp;gt;&lt;br /&gt;
=== Sublingual vs Oral ===&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|+&lt;br /&gt;
!Method&lt;br /&gt;
!Substance&lt;br /&gt;
!Dosage&lt;br /&gt;
!Observations&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
====== Oral ======&lt;br /&gt;
|Estradiol Valerate in pill form (e.g. Cyclacur)&lt;br /&gt;
|&amp;gt;=6mg/day&lt;br /&gt;
(max 10mg as per Dr. Powers)&lt;br /&gt;
|It is recommended that doses are taken separately on set time intervals during the day for more stable estradiol levels, e.g. for a 6mg dose you would take 2mg per 8 hours. By the oral route the active substance is metabolized by the liver and part of it is converted to estrone (E1), which has much less feminizing effects than estradiol (E2) so the desired effect is essentially prevented. The bioavailability of estradiol by oral administration is very low (~5%) and usually lower levels of E2 are observed in blood tests than other methods of administration. [anecdotal apo to server, wikipedia kai tttt - correct/expand?] It is also necessary to administer anti-androgens to reduce testosterone levels to the female range.&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
====== Sublingual ======&lt;br /&gt;
|Estradiol Valerate in pill form (e.g. Cyclacur)&lt;br /&gt;
|&amp;gt;=4mg/day&lt;br /&gt;
|It is recommended that doses are taken separately on set time intervals during the day for more stable estradiol levels, e.g. for a 6mg dose you would take 2mg per 8 hours. The sublingual way bypasses estradiol metabolism by the liver and has about 5 times the estradiol bioavailability of the oral way. This way, estradiol levels have greater range than orally (higher peak lower bottom), in oral they remain higher for ~12 hours while sublingually they go away after 3-4 hours [idk if honscience the study is from 2005 on cis women]&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== Vial info === &amp;lt;!--T:47--&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--T:48--&amp;gt;&lt;br /&gt;
=== Medications ===&lt;br /&gt;
For cyclacur: &#039;&#039;&#039;take only the white pills, the brown pills are Norgestrel which have 0.5mg of estradiol but has an androgenic effect and may also cause other side effects&#039;&#039;&#039;. &lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--T:49--&amp;gt;&lt;br /&gt;
==== Estrogens ====&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|+&lt;br /&gt;
!Brand Name(s)&lt;br /&gt;
!Substance&lt;br /&gt;
!Form&lt;br /&gt;
!Method of Administration&lt;br /&gt;
!Cost&lt;br /&gt;
!Cost with Healthcare Coverage&lt;br /&gt;
!Dosage&lt;br /&gt;
!Safety&lt;br /&gt;
!Notes&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
====== [https://www.galinos.gr/web/drugs/main/drugs/Cyclacur Cyclacur] ======&lt;br /&gt;
|Estradiol Valerate (EV)&lt;br /&gt;
|Pill tablet&lt;br /&gt;
|Orally or sublingually&lt;br /&gt;
|2.01€ for 11 pills ([https://www.galinos.gr/service/drugs/drawPackagePrice/1198 Pricemap])&lt;br /&gt;
~130.8-328.€/year&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--T:50--&amp;gt;&lt;br /&gt;
~10.9-27.4€/month&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--T:51--&amp;gt;&lt;br /&gt;
Prices are indicative, the cost depends on the dosage.&lt;br /&gt;
| -&lt;br /&gt;
|6mg-10mg/day (according to Dr. Will Powers)&lt;br /&gt;
4mg-8mg/day (according to Greek Endocrinologists)&lt;br /&gt;
|A&lt;br /&gt;
|&lt;br /&gt;
* &#039;&#039;&#039;Only white pills are used.&#039;&#039;&#039; Brown pills do have a bit of estradiol but arent taken due to other side effects.&lt;br /&gt;
* You need antiandrogens or GNRH antagonists if you haven&#039;t had an orchiectomy.&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
====== Progynova ======&lt;br /&gt;
|Estradiol Valerate (EV)&lt;br /&gt;
|Pill tablet&lt;br /&gt;
|Orally or sublingually&lt;br /&gt;
|~22€ for 72 pills of 1 mg or ~32€ for 72 pills of 2 mg&lt;br /&gt;
Prices are indicative, the cost depends on the dosage.&lt;br /&gt;
| -&lt;br /&gt;
|4mg-8mg/day&lt;br /&gt;
|A&lt;br /&gt;
|&lt;br /&gt;
* There is no reason to use it in Greece since Cyclacur is available in Greek pharmacies.&lt;br /&gt;
* You need antiandrogens or GNRH antagonists if you haven&#039;t had an orchiectomy.&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
====== Estrofem, Estrifam (german brand name), [https://www.galinos.gr/web/drugs/main/drugs/trisequens Trisequens] ======&lt;br /&gt;
|Estradiol Hemihydrate&lt;br /&gt;
|Pill tablet&lt;br /&gt;
|Orally or sublingually&lt;br /&gt;
|~30€ for 28 pills of 2 mg without shipping costs.&lt;br /&gt;
Prices are indicative, the cost depends on the dosage.&lt;br /&gt;
| -&lt;br /&gt;
|4mg-8mg/day&lt;br /&gt;
|A&lt;br /&gt;
|&lt;br /&gt;
* There is no reason to use it in Greece since Cyclacur is available in Greek pharmacies.&lt;br /&gt;
* You need antiandrogens or GNRH antagonists if you haven&#039;t had an orchiectomy.&lt;br /&gt;
* Trisequens, while being available in Greece, is odd to take with 12 pills being 2mg EH, 10 norgestrel, and 6 1mg EH, for a much higher price than [[HRT#Cyclacur|Cyclacur]].&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
====== [https://www.galinos.gr/web/drugs/main/drugs/Dermestril Dermestril] ======&lt;br /&gt;
|Estradiol Hemihydrate&lt;br /&gt;
|Patch&lt;br /&gt;
|Trans-dermally&lt;br /&gt;
|44€ for 24 patches of 100mcg&lt;br /&gt;
~15€ for 8 patches of 50mcg&lt;br /&gt;
| -&lt;br /&gt;
|50mcg/3.5 days (when starting off)&lt;br /&gt;
100mcg/3.5 days (whenever your e2 levels are stable)&lt;br /&gt;
|A&lt;br /&gt;
|&lt;br /&gt;
* &#039;&#039;&#039;If you have no idea how to apply patches watch this:&#039;&#039;&#039; [https://youtu.be/tXGIYWPqdpI?si=O0dlE19pq0ic0PZP Demonstrational Video]&lt;br /&gt;
* You need antiandrogens or GNRH antagonists if you haven&#039;t had an orchiectomy.&lt;br /&gt;
* 100mcg patches can be cut into 2 if needed.&lt;br /&gt;
|-&lt;br /&gt;
|Neofollin (can be ordered from pharmacies near Czechia, not tested in Greece), Delestrogen (Vial, unavailable), Progynon Depot (Ampules, unavailable)&lt;br /&gt;
|&lt;br /&gt;
====== Estradiol Valerate (EV) ======&lt;br /&gt;
|Injectable&lt;br /&gt;
|Subcutaneous or Intramuscular&lt;br /&gt;
|80€/year (including shipping costs, syringes and alcohol swabs)&lt;br /&gt;
| -&lt;br /&gt;
|5-7mg/5 days (monotherapy)&lt;br /&gt;
4-5mg/7 days (only in combination with an antiandrogen or GNRH agonist)&lt;br /&gt;
|A+&lt;br /&gt;
|&lt;br /&gt;
* It can be used without antiandrogens or GNRH agonists in ([[HRT#Μονοθεραπεία|Monotherapy]]) by increasing the dosage.&lt;br /&gt;
|-&lt;br /&gt;
|Depo-Estradiol (US only, unavailable)&lt;br /&gt;
|&lt;br /&gt;
====== Estradiol Cypionate (EC) ======&lt;br /&gt;
|Injectable&lt;br /&gt;
|Subcutaneous or Intramuscular&lt;br /&gt;
|~70-80€/year (not including shipping costs, syringes and alcohol swabs)&lt;br /&gt;
| -&lt;br /&gt;
|5-7mg/7 days&lt;br /&gt;
(&#039;&#039;&#039;mono dose&#039;&#039;&#039;)&lt;br /&gt;
? (TBD/&#039;&#039;&#039;dose with AA&#039;&#039;&#039;)&lt;br /&gt;
|?&lt;br /&gt;
|&lt;br /&gt;
* It can be used without antiandrogens or GNRH agonists in ([[HRT#Μονοθεραπεία|Monotherapy]])&lt;br /&gt;
|-&lt;br /&gt;
| -&lt;br /&gt;
|&lt;br /&gt;
====== Estradiol Enanthate (EEn) ======&lt;br /&gt;
|Injectable&lt;br /&gt;
|Subcutaneous or Intramuscular&lt;br /&gt;
|80€/year (including shipping costs, syringes and alcohol swabs)&lt;br /&gt;
| -&lt;br /&gt;
|2.5mg-7mg/7 days&lt;br /&gt;
(usual dosage: 4mg/7days)&lt;br /&gt;
|A+&lt;br /&gt;
|&lt;br /&gt;
* It can be used without antiandrogens or GNRH agonists in ([[HRT#Μονοθεραπεία|Monotherapy]]) by increasing the dosage.&lt;br /&gt;
|-&lt;br /&gt;
| -&lt;br /&gt;
|&lt;br /&gt;
====== Estradiol Undecylate (EU, EUn) ======&lt;br /&gt;
|Injectable&lt;br /&gt;
|Subcutaneous or Intramuscular&lt;br /&gt;
|130€/year (including shipping costs, syringes and alcohol swabs)&lt;br /&gt;
| -&lt;br /&gt;
|15-20mg/2 weeks&lt;br /&gt;
20-40mg+/4 weeks&lt;br /&gt;
|A+&lt;br /&gt;
|&lt;br /&gt;
* There&#039;s not much info on dosages, usually seen in [[HRT#Μονοθεραπεία|monotherapy]].&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--T:52--&amp;gt;&lt;br /&gt;
==== Anti-Androgens and GNRH Agonists ====&lt;br /&gt;
These should &#039;&#039;&#039;not&#039;&#039;&#039; be taken sublingually.&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|+&lt;br /&gt;
!Brand Name(s)&lt;br /&gt;
!Substance&lt;br /&gt;
!Cost&lt;br /&gt;
!Cost with Healthcare Coverage&lt;br /&gt;
!Dosage&lt;br /&gt;
!Safety&lt;br /&gt;
!Form&lt;br /&gt;
!Type&lt;br /&gt;
!Notes&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
====== [https://www.galinos.gr/web/drugs/main/drugs/Androcur Androcur] ======&lt;br /&gt;
|Cyproterone Acetate (CPA) is also referred to as cypro&lt;br /&gt;
|21.58€/50mg * 50 pills &lt;br /&gt;
19.7-31.5€/year&lt;br /&gt;
&lt;br /&gt;
([https://www.galinos.gr/service/drugs/drawPackagePrice/8023 Pricemap])&lt;br /&gt;
|?&lt;br /&gt;
|12.5mg/2 days- 10mg/day&lt;br /&gt;
&#039;&#039;&#039;Larger doses shouldn&#039;t be administered&#039;&#039;&#039;&lt;br /&gt;
|C&lt;br /&gt;
|Pill tablet&lt;br /&gt;
|Progestin (Steroidal antiandrogen)&lt;br /&gt;
Stops testosterone production.&lt;br /&gt;
|The max recommended dosage is 10mg/day . Monitoring of prolactin levels is recommended through [[Blood Testing#MTF|blood testing]].&lt;br /&gt;
&#039;&#039;&#039;Many doctors give overdoses of 50 mg/day. Cyproterone is a strong anti-androgen and testosterone suppression is possible with lower doses. A change of doctor is recommended.&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--T:53--&amp;gt;&lt;br /&gt;
[[wikipedia:Side_effects_of_cyproterone_acetate|Side Effects]]:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--T:54--&amp;gt;&lt;br /&gt;
* Benign brain tumor.&lt;br /&gt;
* In rare cases, liver damage.&lt;br /&gt;
* Vitamin B12 deficiency.&lt;br /&gt;
* Breast cancer.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--T:55--&amp;gt;&lt;br /&gt;
Testosterone suppression can be achieved with even lower doses, however a 50 mg pill is difficult to cut into pieces of less than 12.5 mg even with a pill cutter.&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
====== [https://www.galinos.gr/web/drugs/main/drugs/Bicalut Bicalut] ======&lt;br /&gt;
|Bicalutamide (aka: bica)&lt;br /&gt;
|29.10 euro/30 pills&lt;br /&gt;
29.10 euro/month&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--T:56--&amp;gt;&lt;br /&gt;
~350 euro/year&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
([https://www.galinos.gr/service/drugs/drawPackagePrice/11120 Pricemap])&lt;br /&gt;
|6.77 euro/month (28 tabs)&lt;br /&gt;
~95 euro/year&lt;br /&gt;
|50mg/day&lt;br /&gt;
|A-&lt;br /&gt;
|Pill/Tablet&lt;br /&gt;
|Androgen receptor antagonist (Nonsteroidal antiandrogen)&lt;br /&gt;
Blocks absorption of all androgens (including testosterone)&lt;br /&gt;
|&#039;&#039;&#039;Serious negative interactions can be noted if combined with other anti-androgens and GNRH agonists (except progesterone)&#039;&#039;&#039;&lt;br /&gt;
&#039;&#039;&#039;Very rare&#039;&#039;&#039; chance for recoverable and non-fatal liver damage for people with a certain rare mutation.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--T:57--&amp;gt;&lt;br /&gt;
Most of the effects listen in the instruction manual are scaremongering. (it lists a very high chance of liver issues when they are actually very rare, and also lists photosensitivity, which if it even occurs at all, it should be quite rare. We are aware of nobody who had a negative interction between alexandrite laser hair removal and bicalutamide).&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--T:58--&amp;gt;&lt;br /&gt;
Note that bicalutamide, unlike most other anti-androgens, &#039;&#039;&#039;does not&#039;&#039;&#039; lower testosterone levels, in fact they usually rise as the body responds to testosterone receptors being inhibited. Do not be alarmed if you notice an increase of testosterone in your blood tests.&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
====== [https://www.galinos.gr/web/drugs/main/drugs/Arvekap Arvekap] ======&lt;br /&gt;
|Triptorelin&lt;br /&gt;
| -&lt;br /&gt;
|~200/year?&lt;br /&gt;
|&lt;br /&gt;
|A?&lt;br /&gt;
|Injection&lt;br /&gt;
|GNRH Agonist&lt;br /&gt;
(indirectly) Stops testosterone AND estrogen production&lt;br /&gt;
|Also a puberty blocker&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
====== [https://www.galinos.gr/web/drugs/main/drugs/aldactone Aldactone] ======&lt;br /&gt;
|Spironolactone&lt;br /&gt;
|5.19 euro/20 tabs (100mg)&lt;br /&gt;
([https://www.galinos.gr/service/drugs/drawPackagePrice/148 Pricemap])&lt;br /&gt;
|?&lt;br /&gt;
|50mg-200mg/day&lt;br /&gt;
|B-C&lt;br /&gt;
|Tablet&lt;br /&gt;
|Antimineralocorticoid/MCRA&lt;br /&gt;
|Very inefficient, makes you pee, it&#039;s a medication for blood pressure&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
|Flutamide&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|F---&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|Only in this table as an example to avoid&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
==== Miscellaneous/Progesterone ====&lt;br /&gt;
Progesterone falls under this category, as it is not quite the same as other Anti-Androgens, the mention of Progesterone in this title is necessary in order to reduce confusion and questions such as &amp;quot;Where is progesterone?&amp;quot; and &amp;quot;Did you remove prog from the page?&amp;quot;.&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
!Brand Name(s)&lt;br /&gt;
!Substance&lt;br /&gt;
!Cost&lt;br /&gt;
!Cost with Healthcare Coverage&lt;br /&gt;
!Dosage&lt;br /&gt;
!Safety&lt;br /&gt;
!Form&lt;br /&gt;
!Type&lt;br /&gt;
!Notes&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
====== [https://www.galinos.gr/web/drugs/main/drugs/utrogestran Utrogestan] ======&lt;br /&gt;
|Progesterone (P4) it is also referred to as prog&lt;br /&gt;
|5.83 euro/30 caps (100mg)&lt;br /&gt;
8.08 euro/15 caps (200mg)&lt;br /&gt;
([https://www.galinos.gr/service/drugs/drawPackagePrice/7619 Pricemap])&lt;br /&gt;
|?&lt;br /&gt;
|100mg or 200mg daily (rectal administration, [[Blood Testing|blood tests]] are recommended)&lt;br /&gt;
|A&lt;br /&gt;
|Capsule&lt;br /&gt;
|Stops testosterone production.&lt;br /&gt;
|There is not much confirmed information about progesterone.&lt;br /&gt;
It can also be taken orally but the absorption rate is very low.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--T:59--&amp;gt;&lt;br /&gt;
Anecdotal claims:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--T:60--&amp;gt;&lt;br /&gt;
* Helps with breast development and with feminization in general.&lt;br /&gt;
* Can be given after one year of estradiol.&lt;br /&gt;
* Suggested to be given after the individual reaches Tanner stage 3.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--T:61--&amp;gt;&lt;br /&gt;
It can have androgenic or other (non-serious, recoverable) effects for some individuals - in particular it can be converted to DHT by the body even in combination with dutasteride or bicalutamide.&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--T:62--&amp;gt;&lt;br /&gt;
==== Other anti-androgens (optional) ====&lt;br /&gt;
These are used to block conversion of other androgens to DHT (which causes hair loss (hair) and body hair growth). They aren&#039;t general use Anti-Androgens.&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
!Brand Name(s)&lt;br /&gt;
!Substance&lt;br /&gt;
!Cost&lt;br /&gt;
!Cost with Healthcare Coverage&lt;br /&gt;
!Dosage&lt;br /&gt;
!Safety&lt;br /&gt;
!Form&lt;br /&gt;
!Type&lt;br /&gt;
!Notes&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
====== [https://www.galinos.gr/web/drugs/main/packages/26485 Dastidem], [https://www.galinos.gr/web/drugs/main/packages/25557 Rafuster], [https://www.galinos.gr/web/drugs/main/packages/25893 Duaride], [https://www.galinos.gr/web/drugs/main/packages/25894 Dustezor] ======&lt;br /&gt;
|Dutasteride&lt;br /&gt;
|7.90€/30 caps&lt;br /&gt;
|~6€/30 caps&lt;br /&gt;
|0.5mg/day (?/TBD)&lt;br /&gt;
|A-&lt;br /&gt;
|Capsule&lt;br /&gt;
| -&lt;br /&gt;
|High effectiveness.&lt;br /&gt;
|-&lt;br /&gt;
| -&lt;br /&gt;
|Finasteride&lt;br /&gt;
| -&lt;br /&gt;
| -&lt;br /&gt;
| -&lt;br /&gt;
|F&lt;br /&gt;
| -&lt;br /&gt;
| -&lt;br /&gt;
|Effectiveness is none to medium (Just take Dutasteride - will not stop conversion of Progesterone to DHT)&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== Transmasc ==&lt;br /&gt;
&lt;br /&gt;
=== Medications ===&lt;br /&gt;
&lt;br /&gt;
==== Testosterone ====&lt;br /&gt;
[https://www.galinos.gr/web/drugs/main/substances/testosterone/marketing Galinos.gr&#039;s testosterone availability page]&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|+&lt;br /&gt;
!Brand Name(s)&lt;br /&gt;
!Substance&lt;br /&gt;
!Form&lt;br /&gt;
!Method of Administration&lt;br /&gt;
!Cost&lt;br /&gt;
!Cost with Healthcare Coverage&lt;br /&gt;
!Dosage&lt;br /&gt;
!Safety&lt;br /&gt;
!Notes&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
====== [https://www.galinos.gr/web/drugs/main/packages/4929 Norma] ======&lt;br /&gt;
|Testosterone Enanthate&lt;br /&gt;
|Injection/Ampule&lt;br /&gt;
|Subcutaneous or Intramuscular&lt;br /&gt;
|17.67€/ampule &lt;br /&gt;
([https://www.galinos.gr/service/drugs/drawPackagePrice/4929 Pricemap])&lt;br /&gt;
|?&lt;br /&gt;
|?&lt;br /&gt;
|?&lt;br /&gt;
| -&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
====== [https://www.galinos.gr/web/drugs/main/packages/21943 Nebido] ======&lt;br /&gt;
|Testosterone Undecanoate&lt;br /&gt;
|Injection/Vial&lt;br /&gt;
|Intramuscular&lt;br /&gt;
|100.37€/vial&lt;br /&gt;
([https://www.galinos.gr/service/drugs/drawPackagePrice/21943 Pricemap])&lt;br /&gt;
|~32.52€/vial (you pay 25%)&lt;br /&gt;
|1 vial (1000mg/4mL)/10-20 weeks&lt;br /&gt;
|A&lt;br /&gt;
|As a starting dose &#039;&#039;&#039;after a year of HRT&#039;&#039;&#039;, you could also consider:&lt;br /&gt;
&lt;br /&gt;
* Instead of injecting one vial per 20 weeks, you do half every 10-12 weeks, however nothing could be sourced to support this. Though logically it could make sense as a practice.&lt;br /&gt;
* Do a test at 6 weeks after starting, if T is too high don&#039;t take the 2nd dose, if it&#039;s not you can take the 2nd and then test 2 weeks before every other dose.&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
====== [https://www.galinos.gr/web/drugs/main/packages/15739 Tostran] ======&lt;br /&gt;
|Testogel&lt;br /&gt;
|Gel&lt;br /&gt;
|Trans-dermally&lt;br /&gt;
|&#039;&#039;&#039;Starting dose&#039;&#039;&#039;&lt;br /&gt;
&amp;lt;!--T:82--&amp;gt;&lt;br /&gt;
* 35.54€/2 months&lt;br /&gt;
* 213.24€/year&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--T:83--&amp;gt;&lt;br /&gt;
&#039;&#039;&#039;30 mg dose&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--T:84--&amp;gt;&lt;br /&gt;
* 35.54€/40 days&lt;br /&gt;
* ~324.30€/year&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--T:85--&amp;gt;&lt;br /&gt;
&#039;&#039;&#039;40 mg dose&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--T:73--&amp;gt;&lt;br /&gt;
* 35.54€/30 days&lt;br /&gt;
* 426.48€/year&lt;br /&gt;
([https://www.galinos.gr/service/drugs/drawPackagePrice/15739 Pricemap])&lt;br /&gt;
|35.54€ -&amp;gt; 8.89€&lt;br /&gt;
|20mg/day (starting dose)&lt;br /&gt;
30-40mg/day&lt;br /&gt;
|A&lt;br /&gt;
|&lt;br /&gt;
* 1 pump of Tostran (&#039;&#039;&#039;0.5g&#039;&#039;&#039;) delivers 10 mg of T.&lt;br /&gt;
* 2 pumps of Tostran are 1 pump of Testogel (20.25mg of T)&lt;br /&gt;
* Can cause skin reactions.&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
==== GNRH Agonists ====&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
!Brand Name(s)&lt;br /&gt;
!Substance&lt;br /&gt;
! Cost&lt;br /&gt;
!Cost with Healthcare Coverage&lt;br /&gt;
!Dosage&lt;br /&gt;
!Safety&lt;br /&gt;
!Form&lt;br /&gt;
!Type&lt;br /&gt;
!Notes&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
====== [https://www.galinos.gr/web/drugs/main/drugs/Arvekap Arvekap] ======&lt;br /&gt;
|Triptorelin&lt;br /&gt;
| -&lt;br /&gt;
|~200/year?&lt;br /&gt;
|&lt;br /&gt;
|A?&lt;br /&gt;
|Injection&lt;br /&gt;
|GNRH Agonist&lt;br /&gt;
(indirectly) Stops testosterone AND estrogen production&lt;br /&gt;
|Also a puberty blocker&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
==== Other anti-androgens (optional) ====&lt;br /&gt;
These are used to block conversion of other androgens to DHT (which causes hair loss (hair) and body hair growth). They aren&#039;t general use Anti-Androgens.&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
!Brand Name(s)&lt;br /&gt;
!Substance&lt;br /&gt;
!Cost&lt;br /&gt;
!Cost with Healthcare Coverage&lt;br /&gt;
!Dosage&lt;br /&gt;
!Safety&lt;br /&gt;
!Form&lt;br /&gt;
!Type&lt;br /&gt;
!Notes&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
====== [https://www.galinos.gr/web/drugs/main/packages/26485 Dastidem], [https://www.galinos.gr/web/drugs/main/packages/25557 Rafuster], [https://www.galinos.gr/web/drugs/main/packages/25893 Duaride], [https://www.galinos.gr/web/drugs/main/packages/25894 Dustezor] ======&lt;br /&gt;
|Dutasteride&lt;br /&gt;
|7.90€/30 caps&lt;br /&gt;
|~6€/30 caps&lt;br /&gt;
|0.5mg/day (?/TBD)&lt;br /&gt;
|A-&lt;br /&gt;
|Capsule&lt;br /&gt;
| -&lt;br /&gt;
|High effectiveness. &lt;br /&gt;
Not to be confused with proper Anti-Androgens.&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== Nonbinary hrt *under construction* ==&lt;br /&gt;
&lt;br /&gt;
=== !!! disclaimer-warning about potential issues !!! ===&lt;br /&gt;
&lt;br /&gt;
=== General outline of nb hrt for amab and afab ===&lt;br /&gt;
&lt;br /&gt;
=== Medications ===&lt;br /&gt;
&lt;br /&gt;
==== Selective Estrogen Receptor Modulators (SERMs) ====&lt;br /&gt;
&lt;br /&gt;
* Tamoxifen is a selective estrogen receptor modulator (SERM). In some tissues such as the brain it activates estrogen receptors, which may help reduce dysphoria. In breast tissue it antagonizes estrogen receptors, preventing the formation of breast tissue if desired. There is some evidence that Tamoxifen inhibits memory, though the effects of taking it alongside regular estrogen are undocumented. Tamoxifen can cause cognitive dysfunction and increase your risk of stroke and pulmonary embolism. Tamoxifen may also be taken alongside 17β-estradiol, more research is needed. In this combination, estradiol should still have its effects (combating dysphoria in the brain, redistribution of body fat, smoother skin etc.) while tamoxifen prevents the growth of breast tissue.&lt;br /&gt;
* Raloxifene is another SERM. It is an estrogen receptor antagonist in breast tissue. It is an estrogen receptor agonist in bone and can be used to prevent osteoporosis. Raloxifene has been shown to reduce ERα expression in breast tissue in premenopausal women. As the synthesis of progesterone receptors (PR) is estrogen-regulated, raloxifene also decreases the expression of PR. Additionally, it was shown to decrease the presence of Ki-67, a biomarker for cell proliferation, in breast tissue of premenopausal women. As a result, it can be used to treat gynecomastia, and has been shown effective in reducing breast size in those with the condition. Raloxifene may promote feminine fat distribution: in a study on 56-66 year old postmenopausal women, there was an increase in fat in the legs and buttocks and a decrease in fat in the abdomen and trunk after 1 year on 60 mg/day raloxifene. It is not yet known how pronounced this effect is, as there have been no comparisons of body fat distribution between raloxifene and estradiol. Raloxifene may increase the risk of stroke and pulmonary embolism.&lt;br /&gt;
* Afimoxifene is a topical SERM and the primary metabolite of tamoxifen.&lt;br /&gt;
&lt;br /&gt;
==== Anti-androgens ====&lt;br /&gt;
&lt;br /&gt;
==== Bicalutamide ====&lt;br /&gt;
Bicalutamide is an  anti-androgen which is used mainly in the treatment of prostate cancer but can also be used to treat hirsutism, or as a component of hormone therapy in feminizing HRT, among other uses. It is nonsteroidal anti-androgen and a selective/pure antagonist of the androgen receptor. It has no other hormonal activity and does not lower androgen levels. Bicalutamide crosses the blood-brain barrier and blocks the effects of testosterone and dihydrotestosterone (DHT) both in the body and in the brain. While it has been observed that bicalutamide does not cross the blood-brain barrier in rats and dogs, this was found not to be the case in humans&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
In general Ralox seems the best idea based on overall effectiveness and less severe side effects compared to other SERMs. Most people on this kind of MtNB hrt seem to be using a combination of ralox (in place of estradiol) and bica [expand this + powers e1s schizo stuff?]&lt;br /&gt;
&lt;br /&gt;
== Legal ==&lt;br /&gt;
It is legal to buy anything without a diagnosis or a prescription (off the counter - OTC), Testosterone can be hit or miss, look for [https://www.galinos.gr/web/drugs/main/packages/15739 Tostran] (Testogel) or [https://www.galinos.gr/web/drugs/main/packages/4929 TEn] (Testosterone Enanthate/Norma, injections).  &lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--T:86--&amp;gt;&lt;br /&gt;
You can also check the &#039;&#039;&#039;[https://diyon.top/map Trans-Friendly Pharmacies Map]&#039;&#039;&#039; for any pharmacies near you (this goes for both Transfem and Transmasc HRT). &lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--T:75--&amp;gt;&lt;br /&gt;
There is no minimum or maximum legal age for someone to start HRT. &lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--T:76--&amp;gt;&lt;br /&gt;
It is not legally mandatory for someone to have a diagnosis by a psychiatrist in order to medically transition.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--T:77--&amp;gt;&lt;br /&gt;
There is no legally mandatory time restriction for a psychiatrist to monitor you before diagnosing you.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--T:78--&amp;gt;&lt;br /&gt;
You don&#039;t legally need to be on HRT in order to be exempt from the [[army]], change your [[Legal|legal sex]], or to have a [[surgery]].&lt;br /&gt;
&lt;br /&gt;
== Other resources == &amp;lt;!--T:79--&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--T:80--&amp;gt;&lt;br /&gt;
* Simulator: https://www.estrannai.se/&lt;br /&gt;
* https://transfemscience.org/ (note, the authors of this site disagree with a lot of what they are saying, regardless, it is still interesting)&lt;br /&gt;
** Introduction to Hormone Therapy for Transfeminine People: https://transfemscience.org/articles/transfem-intro/&lt;br /&gt;
** Older simulator: https://transfemscience.org/misc/injectable-e2-simulator/&lt;br /&gt;
** Dosage calculator: https://transfemscience.org/misc/injectable-dose-vol-conc-conv/&lt;br /&gt;
* https://diyhrt.wiki/ (alt link: https://anarch.cc/transfeminine-diy-hrt-the-ultimate-guide-2/)&lt;br /&gt;
* https://hrtcafe.net/&lt;br /&gt;
* ?? https://hrt.coffee/&lt;br /&gt;
* https://www.reddit.com/r/TransDIY/&lt;br /&gt;
* https://www.reddit.com/r/TransfemScience/&lt;br /&gt;
* https://groups.io/g/MTFHRT/wiki/29602 (alt link: https://anarch.cc/mtf-hrt-ultimate-diy/)&lt;br /&gt;
* https://hrt.cat/ - info for making your own (you will probably not need it - version 1.0: https://hrtcafe.net/hrtcat/)&lt;br /&gt;
* https://archive.ph/uQb8g (alt link: https://anarch.cc/making-your-own-injections/, as above)&lt;br /&gt;
* https://crimethinc.com/2022/12/15/producing-transdermal-estrogen-a-do-it-yourself-guide (alt link: https://anarch.cc/producing-transdermal-estrogen-a-do-it-yourself-guide/, as above)&lt;br /&gt;
* https://archive.ph/cpy7k (alt link: https://anarch.cc/homebrewing-hormones-mtf-guide/, as above)&lt;br /&gt;
&amp;lt;/translate&amp;gt;&lt;/div&gt;</summary>
		<author><name>Goblinmoder</name></author>
	</entry>
	<entry>
		<id>https://wiki.diyon.top/index.php?title=HRT&amp;diff=1002</id>
		<title>HRT</title>
		<link rel="alternate" type="text/html" href="https://wiki.diyon.top/index.php?title=HRT&amp;diff=1002"/>
		<updated>2025-04-17T12:10:19Z</updated>

		<summary type="html">&lt;p&gt;Goblinmoder: /* Miscellaneous/Progesterone */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{#seo:&lt;br /&gt;
|title_mode=replace&lt;br /&gt;
|title=HRT&lt;br /&gt;
|description=We are open to discussion and actively on-going changes in formatting and contents of this Page and Website (in general). The e-mail address to refer to is fox@diyon.top&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
&amp;lt;languages/&amp;gt;&lt;br /&gt;
&amp;lt;translate&amp;gt;&lt;br /&gt;
&amp;lt;!--T:41--&amp;gt;&lt;br /&gt;
After around a month on HRT some of your ranges in your [[Blood Testing|blood test]] should be within desired ranges.&lt;br /&gt;
&lt;br /&gt;
== Disclaimer ==&lt;br /&gt;
 To clarify on &#039;&#039;&#039;dosages&#039;&#039;&#039;, the values mentioned below are rather speculative and most are based on &#039;&#039;&#039;personal experiences&#039;&#039;&#039; or &#039;&#039;&#039;(diy)hrt pages/websites/papers&#039;&#039;&#039;. Therefore it is encouraged to do [[Blood Testing|blood tests]] and if possible, check with an [[Doctors#Ενδοκρινολόγοι|endocrinologist]] (we also suggest [[Doctors]] that can help with such cases), especially if you have any specific &#039;&#039;&#039;health conditions&#039;&#039;&#039;. &lt;br /&gt;
Pricemaps are there to evaluate prices through &#039;&#039;&#039;[https://galinos.gr galinos.gr]&#039;&#039;&#039; (in case something is outdated, look for the green line that says &amp;quot;Λιανική&amp;quot;)&lt;br /&gt;
&lt;br /&gt;
We are open to discussion and actively on-going changes in formatting and contents of this Page and Website (in general). The e-mail address to refer to is &#039;&#039;&#039;fox@diyon.top&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--T:43--&amp;gt;&lt;br /&gt;
== Transfem ==&lt;br /&gt;
Taking Puberty Blockers ([[HRT#Antiandrogens and GNRH Agonists|GNRH Agonists]], e.g: Arvekap) or any Anti Androgen (e.g: Aldactone, Androcur) &#039;&#039;&#039;without [[HRT#Estrogens|Estrogens]]&#039;&#039;&#039; is generally discouraged even during youth transitioning (This is &#039;&#039;&#039;non-definitive&#039;&#039;&#039; for Enby folks)&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--T:44--&amp;gt;&lt;br /&gt;
=== Monotherapy ===&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|+&lt;br /&gt;
!Type&lt;br /&gt;
!Commercial Names&lt;br /&gt;
!Dosage&lt;br /&gt;
!Notes&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
====== Sublingual (E Valerate or Hemihydrate) ======&lt;br /&gt;
|Cyclacur (EV), Estrofem (EH, imported), Trisequens (12 pills 2mg EH, 10 pills norgestrel, 6 pills 1mg EH)&lt;br /&gt;
|&amp;gt;=8-12mg/day&lt;br /&gt;
|While it is possible, even with a smaller dosage (&#039;&#039;&#039;at least 6mg&#039;&#039;&#039;), it&#039;s not that common. Ideally, use your blood tests to &#039;&#039;&#039;minmax&#039;&#039;&#039; your doses.&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
====== Injectable Estradiol Valerate (EV) ======&lt;br /&gt;
|Neofollin (can be ordered from pharmacies near Czechia, or aptekaapo.com &#039;&#039;&#039;but they’re not on hrtcafe&#039;&#039;&#039;, not tested in Greece), Delestrogen (Vial, unavailable), Progynon Depot (Ampules, unavailable), [[File:What-excuse-me.gif|thumb|[[HRT#Other resources|my honest reaction]]]]&lt;br /&gt;
|5-7mg/5 days&lt;br /&gt;
|&lt;br /&gt;
* Due to the large spikes in levels combined with the short [https://en.wikipedia.org/wiki/Biological_half-life half-life] it is not recommended for dosages to surpass the 5 day mark because it may cause menopause symptoms.&lt;br /&gt;
* Branded versions of this medication are not available in greece.&lt;br /&gt;
* The ampules contain a certain mg and do not allow for larger dosages, they are not re-usable. It is recommended to use a vial with a cap.&lt;br /&gt;
* Look for &#039;&#039;&#039;[https://arc-w.nihr.ac.uk/Wordpress/wp-content/uploads/2015/07/Low-dead-space-syringes.png syringe dead space]([[HRT#:~:text=* = It has been mentioned that syringes account for dead space, although that is not 100% certain.|*]])&#039;&#039;&#039;, e.g. if there&#039;s &#039;&#039;&#039;0.05mL&#039;&#039;&#039; remaining after injecting, draw &#039;&#039;&#039;+0.05mL&#039;&#039;&#039; from the vial.&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
====== Injectable Estradiol Cypionate (EC) ======&lt;br /&gt;
|[[File:What-excuse-me.gif|thumb|[[HRT#Other resources|my honest reaction]]]]Depo-Estradiol (US only, unavailable),&lt;br /&gt;
|5-7mg/7 days&lt;br /&gt;
|&lt;br /&gt;
* Look for &#039;&#039;&#039;[https://arc-w.nihr.ac.uk/Wordpress/wp-content/uploads/2015/07/Low-dead-space-syringes.png syringe dead space]([[HRT#:~:text=* = It has been mentioned that syringes account for dead space, although that is not 100% certain.|*]])&#039;&#039;&#039;, e.g. if there&#039;s &#039;&#039;&#039;0.05mL&#039;&#039;&#039; remaining after injecting, draw &#039;&#039;&#039;+0.05mL&#039;&#039;&#039; from the vial.&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
====== Injectable Estradiol Enanthate (EEn) ======&lt;br /&gt;
|[[File:What-excuse-me.gif|thumb|[[HRT#Other resources|my honest reaction]]]]&lt;br /&gt;
|4-7mg/7 days&lt;br /&gt;
7-10mg/10 days (7.2mg usually, depending on the vial, it&#039;s optimal because drawing cents of mL are hard to get right)&lt;br /&gt;
|&lt;br /&gt;
* You can multiply the weekly dosage by 2, which lasts up to 14 days (as much as the [https://en.wikipedia.org/wiki/Biological_half-life half-life] of Enanthate)&lt;br /&gt;
* Look for &#039;&#039;&#039;[https://arc-w.nihr.ac.uk/Wordpress/wp-content/uploads/2015/07/Low-dead-space-syringes.png syringe dead space]([[HRT#:~:text=* = It has been mentioned that syringes account for dead space, although that is not 100% certain.|*]])&#039;&#039;&#039;, e.g. if there&#039;s &#039;&#039;&#039;0.05mL&#039;&#039;&#039; remaining after injecting, draw &#039;&#039;&#039;+0.05mL&#039;&#039;&#039; from the vial.&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
====== Injectable Estradiol Undecylate (EU/EUn) ======&lt;br /&gt;
|[[File:What-excuse-me.gif|thumb|[[HRT#Other resources|my honest reaction]]]]&lt;br /&gt;
|There&#039;s not enough information on dosage. The frequency of those may differ according to the oil used (MCT/Castor oil). Indicative Dosages:&lt;br /&gt;
15-20mg/2 weeks&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--T:45--&amp;gt;&lt;br /&gt;
20-40mg+/4 weeks&lt;br /&gt;
|&lt;br /&gt;
* There&#039;s not enough information on its [[wikipedia:Biological_half-life|half-life]], a higher dosage can be administered that can last up to 20-30 days.&lt;br /&gt;
* [[wikipedia:Intramuscular_injection|IM injections]] last longer so they give better levels during the same period of time per injection.&lt;br /&gt;
* Needs at least 90 days to reach stable levels.&lt;br /&gt;
* Look for &#039;&#039;&#039;[https://arc-w.nihr.ac.uk/Wordpress/wp-content/uploads/2015/07/Low-dead-space-syringes.png syringe dead space]([[HRT#:~:text=* = It has been mentioned that syringes account for dead space, although that is not 100% certain.|*]])&#039;&#039;&#039;, e.g. if there&#039;s &#039;&#039;&#039;0.05mL&#039;&#039;&#039; remaining after injecting, draw &#039;&#039;&#039;+0.05mL&#039;&#039;&#039; from the vial.&lt;br /&gt;
|}&lt;br /&gt;
&#039;&#039;&#039;*&#039;&#039;&#039; = It has been mentioned that syringes account for dead space, although that is not 100% certain.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--T:46--&amp;gt;&lt;br /&gt;
=== Sublingual vs Oral ===&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|+&lt;br /&gt;
!Method&lt;br /&gt;
!Substance&lt;br /&gt;
!Dosage&lt;br /&gt;
!Observations&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
====== Oral ======&lt;br /&gt;
|Estradiol Valerate in pill form (e.g. Cyclacur)&lt;br /&gt;
|&amp;gt;=6mg/day&lt;br /&gt;
(max 10mg as per Dr. Powers)&lt;br /&gt;
|It is recommended that doses are taken separately on set time intervals during the day for more stable estradiol levels, e.g. for a 6mg dose you would take 2mg per 8 hours. By the oral route the active substance is metabolized by the liver and part of it is converted to estrone (E1), which has much less feminizing effects than estradiol (E2) so the desired effect is essentially prevented. The bioavailability of estradiol by oral administration is very low (~5%) and usually lower levels of E2 are observed in blood tests than other methods of administration. [anecdotal apo to server, wikipedia kai tttt - correct/expand?] It is also necessary to administer anti-androgens to reduce testosterone levels to the female range.&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
====== Sublingual ======&lt;br /&gt;
|Estradiol Valerate in pill form (e.g. Cyclacur)&lt;br /&gt;
|&amp;gt;=4mg/day&lt;br /&gt;
|It is recommended that doses are taken separately on set time intervals during the day for more stable estradiol levels, e.g. for a 6mg dose you would take 2mg per 8 hours. The sublingual way bypasses estradiol metabolism by the liver and has about 5 times the estradiol bioavailability of the oral way. This way, estradiol levels have greater range than orally (higher peak lower bottom), in oral they remain higher for ~12 hours while sublingually they go away after 3-4 hours [idk if honscience the study is from 2005 on cis women]&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== Vial info === &amp;lt;!--T:47--&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--T:48--&amp;gt;&lt;br /&gt;
=== Medications ===&lt;br /&gt;
For cyclacur: &#039;&#039;&#039;take only the white pills, the brown pills are Norgestrel which have 0.5mg of estradiol but has an androgenic effect and may also cause other side effects&#039;&#039;&#039;. &lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--T:49--&amp;gt;&lt;br /&gt;
==== Estrogens ====&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|+&lt;br /&gt;
!Brand Name(s)&lt;br /&gt;
!Substance&lt;br /&gt;
!Form&lt;br /&gt;
!Method of Administration&lt;br /&gt;
!Cost&lt;br /&gt;
!Cost with Healthcare Coverage&lt;br /&gt;
!Dosage&lt;br /&gt;
!Safety&lt;br /&gt;
!Notes&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
====== [https://www.galinos.gr/web/drugs/main/drugs/Cyclacur Cyclacur] ======&lt;br /&gt;
|Estradiol Valerate (EV)&lt;br /&gt;
|Pill tablet&lt;br /&gt;
|Orally or sublingually&lt;br /&gt;
|2.01€ for 11 pills ([https://www.galinos.gr/service/drugs/drawPackagePrice/1198 Pricemap])&lt;br /&gt;
~130.8-328.€/year&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--T:50--&amp;gt;&lt;br /&gt;
~10.9-27.4€/month&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--T:51--&amp;gt;&lt;br /&gt;
Prices are indicative, the cost depends on the dosage.&lt;br /&gt;
| -&lt;br /&gt;
|6mg-10mg/day (according to Dr. Will Powers)&lt;br /&gt;
4mg-8mg/day (according to Greek Endocrinologists)&lt;br /&gt;
|A&lt;br /&gt;
|&lt;br /&gt;
* &#039;&#039;&#039;Only white pills are used.&#039;&#039;&#039; Brown pills do have a bit of estradiol but arent taken due to other side effects.&lt;br /&gt;
* You need antiandrogens or GNRH antagonists if you haven&#039;t had an orchiectomy.&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
====== Progynova ======&lt;br /&gt;
|Estradiol Valerate (EV)&lt;br /&gt;
|Pill tablet&lt;br /&gt;
|Orally or sublingually&lt;br /&gt;
|~22€ for 72 pills of 1 mg or ~32€ for 72 pills of 2 mg&lt;br /&gt;
Prices are indicative, the cost depends on the dosage.&lt;br /&gt;
| -&lt;br /&gt;
|4mg-8mg/day&lt;br /&gt;
|A&lt;br /&gt;
|&lt;br /&gt;
* There is no reason to use it in Greece since Cyclacur is available in Greek pharmacies.&lt;br /&gt;
* You need antiandrogens or GNRH antagonists if you haven&#039;t had an orchiectomy.&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
====== Estrofem, Estrifam (german brand name), [https://www.galinos.gr/web/drugs/main/drugs/trisequens Trisequens] ======&lt;br /&gt;
|Estradiol Hemihydrate&lt;br /&gt;
|Pill tablet&lt;br /&gt;
|Orally or sublingually&lt;br /&gt;
|~30€ for 28 pills of 2 mg without shipping costs.&lt;br /&gt;
Prices are indicative, the cost depends on the dosage.&lt;br /&gt;
| -&lt;br /&gt;
|4mg-8mg/day&lt;br /&gt;
|A&lt;br /&gt;
|&lt;br /&gt;
* There is no reason to use it in Greece since Cyclacur is available in Greek pharmacies.&lt;br /&gt;
* You need antiandrogens or GNRH antagonists if you haven&#039;t had an orchiectomy.&lt;br /&gt;
* Trisequens, while being available in Greece, is odd to take with 12 pills being 2mg EH, 10 norgestrel, and 6 1mg EH, for a much higher price than [[HRT#Cyclacur|Cyclacur]].&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
====== [https://www.galinos.gr/web/drugs/main/drugs/Dermestril Dermestril] ======&lt;br /&gt;
|Estradiol Hemihydrate&lt;br /&gt;
|Patch&lt;br /&gt;
|Trans-dermally&lt;br /&gt;
|44€ for 24 patches of 100mcg&lt;br /&gt;
~15€ for 8 patches of 50mcg&lt;br /&gt;
| -&lt;br /&gt;
|50mcg/3.5 days (when starting off)&lt;br /&gt;
100mcg/3.5 days (whenever your e2 levels are stable)&lt;br /&gt;
|A&lt;br /&gt;
|&lt;br /&gt;
* &#039;&#039;&#039;If you have no idea how to apply patches watch this:&#039;&#039;&#039; [https://youtu.be/tXGIYWPqdpI?si=O0dlE19pq0ic0PZP Demonstrational Video]&lt;br /&gt;
* You need antiandrogens or GNRH antagonists if you haven&#039;t had an orchiectomy.&lt;br /&gt;
* 100mcg patches can be cut into 2 if needed.&lt;br /&gt;
|-&lt;br /&gt;
|Neofollin (can be ordered from pharmacies near Czechia, not tested in Greece), Delestrogen (Vial, unavailable), Progynon Depot (Ampules, unavailable)&lt;br /&gt;
|&lt;br /&gt;
====== Estradiol Valerate (EV) ======&lt;br /&gt;
|Injectable&lt;br /&gt;
|Subcutaneous or Intramuscular&lt;br /&gt;
|80€/year (including shipping costs, syringes and alcohol swabs)&lt;br /&gt;
| -&lt;br /&gt;
|5-7mg/5 days (monotherapy)&lt;br /&gt;
4-5mg/7 days (only in combination with an antiandrogen or GNRH agonist)&lt;br /&gt;
|A+&lt;br /&gt;
|&lt;br /&gt;
* It can be used without antiandrogens or GNRH agonists in ([[HRT#Μονοθεραπεία|Monotherapy]]) by increasing the dosage.&lt;br /&gt;
|-&lt;br /&gt;
|Depo-Estradiol (US only, unavailable)&lt;br /&gt;
|&lt;br /&gt;
====== Estradiol Cypionate (EC) ======&lt;br /&gt;
|Injectable&lt;br /&gt;
|Subcutaneous or Intramuscular&lt;br /&gt;
|~70-80€/year (not including shipping costs, syringes and alcohol swabs)&lt;br /&gt;
| -&lt;br /&gt;
|5-7mg/7 days&lt;br /&gt;
(&#039;&#039;&#039;mono dose&#039;&#039;&#039;)&lt;br /&gt;
? (TBD/&#039;&#039;&#039;dose with AA&#039;&#039;&#039;)&lt;br /&gt;
|?&lt;br /&gt;
|&lt;br /&gt;
* It can be used without antiandrogens or GNRH agonists in ([[HRT#Μονοθεραπεία|Monotherapy]])&lt;br /&gt;
|-&lt;br /&gt;
| -&lt;br /&gt;
|&lt;br /&gt;
====== Estradiol Enanthate (EEn) ======&lt;br /&gt;
|Injectable&lt;br /&gt;
|Subcutaneous or Intramuscular&lt;br /&gt;
|80€/year (including shipping costs, syringes and alcohol swabs)&lt;br /&gt;
| -&lt;br /&gt;
|2.5mg-7mg/7 days&lt;br /&gt;
(usual dosage: 4mg/7days)&lt;br /&gt;
|A+&lt;br /&gt;
|&lt;br /&gt;
* It can be used without antiandrogens or GNRH agonists in ([[HRT#Μονοθεραπεία|Monotherapy]]) by increasing the dosage.&lt;br /&gt;
|-&lt;br /&gt;
| -&lt;br /&gt;
|&lt;br /&gt;
====== Estradiol Undecylate (EU, EUn) ======&lt;br /&gt;
|Injectable&lt;br /&gt;
|Subcutaneous or Intramuscular&lt;br /&gt;
|130€/year (including shipping costs, syringes and alcohol swabs)&lt;br /&gt;
| -&lt;br /&gt;
|15-20mg/2 weeks&lt;br /&gt;
20-40mg+/4 weeks&lt;br /&gt;
|A+&lt;br /&gt;
|&lt;br /&gt;
* There&#039;s not much info on dosages, usually seen in [[HRT#Μονοθεραπεία|monotherapy]].&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--T:52--&amp;gt;&lt;br /&gt;
==== Anti-Androgens and GNRH Agonists ====&lt;br /&gt;
These should &#039;&#039;&#039;not&#039;&#039;&#039; be taken sublingually.&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|+&lt;br /&gt;
!Brand Name(s)&lt;br /&gt;
!Substance&lt;br /&gt;
!Cost&lt;br /&gt;
!Cost with Healthcare Coverage&lt;br /&gt;
!Dosage&lt;br /&gt;
!Safety&lt;br /&gt;
!Form&lt;br /&gt;
!Type&lt;br /&gt;
!Notes&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
====== [https://www.galinos.gr/web/drugs/main/drugs/Androcur Androcur] ======&lt;br /&gt;
|Cyproterone Acetate (CPA) is also referred to as cypro&lt;br /&gt;
|21.58€/50mg * 50 pills &lt;br /&gt;
19.7-31.5€/year&lt;br /&gt;
&lt;br /&gt;
([https://www.galinos.gr/service/drugs/drawPackagePrice/8023 Pricemap])&lt;br /&gt;
|?&lt;br /&gt;
|12.5mg/2 days- 10mg/day&lt;br /&gt;
&#039;&#039;&#039;Larger doses shouldn&#039;t be administered&#039;&#039;&#039;&lt;br /&gt;
|C&lt;br /&gt;
|Pill tablet&lt;br /&gt;
|Progestin (Steroidal antiandrogen)&lt;br /&gt;
Stops testosterone production.&lt;br /&gt;
|The max recommended dosage is 10mg/day . Monitoring of prolactin levels is recommended through [[Blood Testing#MTF|blood testing]].&lt;br /&gt;
&#039;&#039;&#039;Many doctors give overdoses of 50 mg/day. Cyproterone is a strong anti-androgen and testosterone suppression is possible with lower doses. A change of doctor is recommended.&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--T:53--&amp;gt;&lt;br /&gt;
[[wikipedia:Side_effects_of_cyproterone_acetate|Side Effects]]:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--T:54--&amp;gt;&lt;br /&gt;
* Benign brain tumor.&lt;br /&gt;
* In rare cases, liver damage.&lt;br /&gt;
* Vitamin B12 deficiency.&lt;br /&gt;
* Breast cancer.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--T:55--&amp;gt;&lt;br /&gt;
Testosterone suppression can be achieved with even lower doses, however a 50 mg pill is difficult to cut into pieces of less than 12.5 mg even with a pill cutter.&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
====== [https://www.galinos.gr/web/drugs/main/drugs/Bicalut Bicalut] ======&lt;br /&gt;
|Bicalutamide (aka: bica)&lt;br /&gt;
|29.10 euro/30 pills&lt;br /&gt;
29.10 euro/month&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--T:56--&amp;gt;&lt;br /&gt;
~350 euro/year&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
([https://www.galinos.gr/service/drugs/drawPackagePrice/11120 Pricemap])&lt;br /&gt;
|6.77 euro/month (28 tabs)&lt;br /&gt;
~95 euro/year&lt;br /&gt;
|50mg/day&lt;br /&gt;
|A-&lt;br /&gt;
|Pill/Tablet&lt;br /&gt;
|Androgen receptor antagonist (Nonsteroidal antiandrogen)&lt;br /&gt;
Blocks absorption of all androgens (including testosterone)&lt;br /&gt;
|&#039;&#039;&#039;Serious negative interactions can be noted if combined with other anti-androgens and GNRH agonists (except progesterone)&#039;&#039;&#039;&lt;br /&gt;
&#039;&#039;&#039;Very rare&#039;&#039;&#039; chance for recoverable and non-fatal liver damage for people with a certain rare mutation.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--T:57--&amp;gt;&lt;br /&gt;
Most of the effects listen in the instruction manual are scaremongering. (it lists a very high chance of liver issues when they are actually very rare, and also lists photosensitivity, which if it even occurs at all, it should be quite rare. We are aware of nobody who had a negative interction between alexandrite laser hair removal and bicalutamide).&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--T:58--&amp;gt;&lt;br /&gt;
Note that bicalutamide, unlike most other anti-androgens, &#039;&#039;&#039;does not&#039;&#039;&#039; lower testosterone levels, in fact they usually rise as the body responds to testosterone receptors being inhibited. Do not be alarmed if you notice an increase of testosterone in your blood tests.&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
====== [https://www.galinos.gr/web/drugs/main/drugs/Arvekap Arvekap] ======&lt;br /&gt;
|Triptorelin&lt;br /&gt;
| -&lt;br /&gt;
|~200/year?&lt;br /&gt;
|&lt;br /&gt;
|A?&lt;br /&gt;
|Injection&lt;br /&gt;
|GNRH Agonist&lt;br /&gt;
(indirectly) Stops testosterone AND estrogen production&lt;br /&gt;
|Also a puberty blocker&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
====== [https://www.galinos.gr/web/drugs/main/drugs/aldactone Aldactone] ======&lt;br /&gt;
|Spironolactone&lt;br /&gt;
|5.19 euro/20 tabs (100mg)&lt;br /&gt;
([https://www.galinos.gr/service/drugs/drawPackagePrice/148 Pricemap])&lt;br /&gt;
|?&lt;br /&gt;
|50mg-200mg/day&lt;br /&gt;
|B-C&lt;br /&gt;
|Tablet&lt;br /&gt;
|Antimineralocorticoid/MCRA&lt;br /&gt;
|Very inefficient, makes you pee, it&#039;s a medication for blood pressure&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
|Flutamide&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|F---&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|Only in this table as an example to avoid&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
==== Miscellaneous/Progesterone ====&lt;br /&gt;
Progesterone falls under this category, as it is not quite the same as other Anti-Androgens, the mention of Progesterone in this title is necessary in order to reduce confusion and questions such as &amp;quot;Where is progesterone?&amp;quot; and &amp;quot;Did you remove prog from the page?&amp;quot;.&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
!Brand Name(s)&lt;br /&gt;
!Substance&lt;br /&gt;
!Cost&lt;br /&gt;
!Cost with Healthcare Coverage&lt;br /&gt;
!Dosage&lt;br /&gt;
!Safety&lt;br /&gt;
!Form&lt;br /&gt;
!Type&lt;br /&gt;
!Notes&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
====== [https://www.galinos.gr/web/drugs/main/drugs/utrogestran Utrogestan] ======&lt;br /&gt;
|Progesterone (P4) it is also referred to as prog&lt;br /&gt;
|5.83 euro/30 caps (100mg)&lt;br /&gt;
8.08 euro/15 caps (200mg)&lt;br /&gt;
([https://www.galinos.gr/service/drugs/drawPackagePrice/7619 Pricemap])&lt;br /&gt;
|?&lt;br /&gt;
|100mg or 200mg daily (rectal administration, [[Blood Testing|blood tests]] are recommended)&lt;br /&gt;
|A&lt;br /&gt;
|Capsule&lt;br /&gt;
|Stops testosterone production.&lt;br /&gt;
|There is not much confirmed information about progesterone.&lt;br /&gt;
It can also be taken orally but the absorption rate is very low.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--T:59--&amp;gt;&lt;br /&gt;
Anecdotal claims:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--T:60--&amp;gt;&lt;br /&gt;
* Helps with breast development and with feminization in general.&lt;br /&gt;
* Can be given after one year of estradiol.&lt;br /&gt;
* Suggested to be given after the individual reaches Tanner stage 3.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--T:61--&amp;gt;&lt;br /&gt;
It can have androgenic or other (non-serious, recoverable) effects for some individuals - in particular it can be converted to DHT by the body even in combination with dutasteride or bicalutamide.&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--T:62--&amp;gt;&lt;br /&gt;
==== Other anti-androgens (optional) ====&lt;br /&gt;
These are used to block conversion of other androgens to DHT (which causes hair loss (hair) and body hair growth). They aren&#039;t general use Anti-Androgens.&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
!Brand Name(s)&lt;br /&gt;
!Substance&lt;br /&gt;
!Cost&lt;br /&gt;
!Cost with Healthcare Coverage&lt;br /&gt;
!Dosage&lt;br /&gt;
!Safety&lt;br /&gt;
!Form&lt;br /&gt;
!Type&lt;br /&gt;
!Notes&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
====== [https://www.galinos.gr/web/drugs/main/packages/26485 Dastidem], [https://www.galinos.gr/web/drugs/main/packages/25557 Rafuster], [https://www.galinos.gr/web/drugs/main/packages/25893 Duaride], [https://www.galinos.gr/web/drugs/main/packages/25894 Dustezor] ======&lt;br /&gt;
|Dutasteride&lt;br /&gt;
|7.90€/30 caps&lt;br /&gt;
|~6€/30 caps&lt;br /&gt;
|0.5mg/day (?/TBD)&lt;br /&gt;
|A-&lt;br /&gt;
|Capsule&lt;br /&gt;
| -&lt;br /&gt;
|High effectiveness.&lt;br /&gt;
|-&lt;br /&gt;
| -&lt;br /&gt;
|Finasteride&lt;br /&gt;
| -&lt;br /&gt;
| -&lt;br /&gt;
| -&lt;br /&gt;
|F&lt;br /&gt;
| -&lt;br /&gt;
| -&lt;br /&gt;
|Effectiveness is none to medium (Just take Dutasteride - will not stop conversion of Progesterone to DHT)&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--T:63--&amp;gt;&lt;br /&gt;
=== Blood Levels ===&lt;br /&gt;
&lt;br /&gt;
==== Refer to the [[Blood Testing]] page. ====&amp;lt;!--T:81--&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Transmasc ==&lt;br /&gt;
&lt;br /&gt;
=== Medications ===&lt;br /&gt;
&lt;br /&gt;
==== Testosterone ====&lt;br /&gt;
[https://www.galinos.gr/web/drugs/main/substances/testosterone/marketing Galinos.gr&#039;s testosterone availability page]&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|+&lt;br /&gt;
!Brand Name(s)&lt;br /&gt;
!Substance&lt;br /&gt;
!Form&lt;br /&gt;
!Method of Administration&lt;br /&gt;
!Cost&lt;br /&gt;
!Cost with Healthcare Coverage&lt;br /&gt;
!Dosage&lt;br /&gt;
!Safety&lt;br /&gt;
!Notes&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
====== [https://www.galinos.gr/web/drugs/main/packages/4929 Norma] ======&lt;br /&gt;
|Testosterone Enanthate&lt;br /&gt;
|Injection/Ampule&lt;br /&gt;
|Subcutaneous or Intramuscular&lt;br /&gt;
|17.67€/ampule &lt;br /&gt;
([https://www.galinos.gr/service/drugs/drawPackagePrice/4929 Pricemap])&lt;br /&gt;
|?&lt;br /&gt;
|?&lt;br /&gt;
|?&lt;br /&gt;
| -&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
====== [https://www.galinos.gr/web/drugs/main/packages/21943 Nebido] ======&lt;br /&gt;
|Testosterone Undecanoate&lt;br /&gt;
|Injection/Vial&lt;br /&gt;
|Intramuscular&lt;br /&gt;
|100.37€/vial&lt;br /&gt;
([https://www.galinos.gr/service/drugs/drawPackagePrice/21943 Pricemap])&lt;br /&gt;
|~32.52€/vial (you pay 25%)&lt;br /&gt;
|1 vial (1000mg/4mL)/10-20 weeks&lt;br /&gt;
|A&lt;br /&gt;
|As a starting dose &#039;&#039;&#039;after a year of HRT&#039;&#039;&#039;, you could also consider:&lt;br /&gt;
&lt;br /&gt;
* Instead of injecting one vial per 20 weeks, you do half every 10-12 weeks, however nothing could be sourced to support this. Though logically it could make sense as a practice.&lt;br /&gt;
* Do a test at 6 weeks after starting, if T is too high don&#039;t take the 2nd dose, if it&#039;s not you can take the 2nd and then test 2 weeks before every other dose.&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
====== [https://www.galinos.gr/web/drugs/main/packages/15739 Tostran] ======&lt;br /&gt;
|Testogel&lt;br /&gt;
|Gel&lt;br /&gt;
|Trans-dermally&lt;br /&gt;
|&#039;&#039;&#039;Starting dose&#039;&#039;&#039;&lt;br /&gt;
&amp;lt;!--T:82--&amp;gt;&lt;br /&gt;
* 35.54€/2 months&lt;br /&gt;
* 213.24€/year&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--T:83--&amp;gt;&lt;br /&gt;
&#039;&#039;&#039;30 mg dose&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--T:84--&amp;gt;&lt;br /&gt;
* 35.54€/40 days&lt;br /&gt;
* ~324.30€/year&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--T:85--&amp;gt;&lt;br /&gt;
&#039;&#039;&#039;40 mg dose&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--T:73--&amp;gt;&lt;br /&gt;
* 35.54€/30 days&lt;br /&gt;
* 426.48€/year&lt;br /&gt;
([https://www.galinos.gr/service/drugs/drawPackagePrice/15739 Pricemap])&lt;br /&gt;
|35.54€ -&amp;gt; 8.89€&lt;br /&gt;
|20mg/day (starting dose)&lt;br /&gt;
30-40mg/day&lt;br /&gt;
|A&lt;br /&gt;
|&lt;br /&gt;
* 1 pump of Tostran (&#039;&#039;&#039;0.5g&#039;&#039;&#039;) delivers 10 mg of T.&lt;br /&gt;
* 2 pumps of Tostran are 1 pump of Testogel (20.25mg of T)&lt;br /&gt;
* Can cause skin reactions.&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
==== GNRH Agonists ====&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
!Brand Name(s)&lt;br /&gt;
!Substance&lt;br /&gt;
! Cost&lt;br /&gt;
!Cost with Healthcare Coverage&lt;br /&gt;
!Dosage&lt;br /&gt;
!Safety&lt;br /&gt;
!Form&lt;br /&gt;
!Type&lt;br /&gt;
!Notes&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
====== [https://www.galinos.gr/web/drugs/main/drugs/Arvekap Arvekap] ======&lt;br /&gt;
|Triptorelin&lt;br /&gt;
| -&lt;br /&gt;
|~200/year?&lt;br /&gt;
|&lt;br /&gt;
|A?&lt;br /&gt;
|Injection&lt;br /&gt;
|GNRH Agonist&lt;br /&gt;
(indirectly) Stops testosterone AND estrogen production&lt;br /&gt;
|Also a puberty blocker&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
==== Other anti-androgens (optional) ====&lt;br /&gt;
These are used to block conversion of other androgens to DHT (which causes hair loss (hair) and body hair growth). They aren&#039;t general use Anti-Androgens.&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
!Brand Name(s)&lt;br /&gt;
!Substance&lt;br /&gt;
!Cost&lt;br /&gt;
!Cost with Healthcare Coverage&lt;br /&gt;
!Dosage&lt;br /&gt;
!Safety&lt;br /&gt;
!Form&lt;br /&gt;
!Type&lt;br /&gt;
!Notes&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
====== [https://www.galinos.gr/web/drugs/main/packages/26485 Dastidem], [https://www.galinos.gr/web/drugs/main/packages/25557 Rafuster], [https://www.galinos.gr/web/drugs/main/packages/25893 Duaride], [https://www.galinos.gr/web/drugs/main/packages/25894 Dustezor] ======&lt;br /&gt;
|Dutasteride&lt;br /&gt;
|7.90€/30 caps&lt;br /&gt;
|~6€/30 caps&lt;br /&gt;
|0.5mg/day (?/TBD)&lt;br /&gt;
|A-&lt;br /&gt;
|Capsule&lt;br /&gt;
| -&lt;br /&gt;
|High effectiveness. &lt;br /&gt;
Not to be confused with proper Anti-Androgens.&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== Nonbinary hrt *under construction* ==&lt;br /&gt;
&lt;br /&gt;
=== !!! disclaimer-warning about potential issues !!! ===&lt;br /&gt;
&lt;br /&gt;
=== General outline of nb hrt for amab and afab ===&lt;br /&gt;
&lt;br /&gt;
=== Medications ===&lt;br /&gt;
&lt;br /&gt;
==== Selective Estrogen Receptor Modulators (SERMs) ====&lt;br /&gt;
&lt;br /&gt;
* Tamoxifen is a selective estrogen receptor modulator (SERM). In some tissues such as the brain it activates estrogen receptors, which may help reduce dysphoria. In breast tissue it antagonizes estrogen receptors, preventing the formation of breast tissue if desired. There is some evidence that Tamoxifen inhibits memory, though the effects of taking it alongside regular estrogen are undocumented. Tamoxifen can cause cognitive dysfunction and increase your risk of stroke and pulmonary embolism. Tamoxifen may also be taken alongside 17β-estradiol, more research is needed. In this combination, estradiol should still have its effects (combating dysphoria in the brain, redistribution of body fat, smoother skin etc.) while tamoxifen prevents the growth of breast tissue.&lt;br /&gt;
* Raloxifene is another SERM. It is an estrogen receptor antagonist in breast tissue. It is an estrogen receptor agonist in bone and can be used to prevent osteoporosis. Raloxifene has been shown to reduce ERα expression in breast tissue in premenopausal women. As the synthesis of progesterone receptors (PR) is estrogen-regulated, raloxifene also decreases the expression of PR. Additionally, it was shown to decrease the presence of Ki-67, a biomarker for cell proliferation, in breast tissue of premenopausal women. As a result, it can be used to treat gynecomastia, and has been shown effective in reducing breast size in those with the condition. Raloxifene may promote feminine fat distribution: in a study on 56-66 year old postmenopausal women, there was an increase in fat in the legs and buttocks and a decrease in fat in the abdomen and trunk after 1 year on 60 mg/day raloxifene. It is not yet known how pronounced this effect is, as there have been no comparisons of body fat distribution between raloxifene and estradiol. Raloxifene may increase the risk of stroke and pulmonary embolism.&lt;br /&gt;
* Afimoxifene is a topical SERM and the primary metabolite of tamoxifen.&lt;br /&gt;
&lt;br /&gt;
==== Anti-androgens ====&lt;br /&gt;
&lt;br /&gt;
==== Bicalutamide ====&lt;br /&gt;
Bicalutamide is an  anti-androgen which is used mainly in the treatment of prostate cancer but can also be used to treat hirsutism, or as a component of hormone therapy in feminizing HRT, among other uses. It is nonsteroidal anti-androgen and a selective/pure antagonist of the androgen receptor. It has no other hormonal activity and does not lower androgen levels. Bicalutamide crosses the blood-brain barrier and blocks the effects of testosterone and dihydrotestosterone (DHT) both in the body and in the brain. While it has been observed that bicalutamide does not cross the blood-brain barrier in rats and dogs, this was found not to be the case in humans&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
In general Ralox seems the best idea based on overall effectiveness and less severe side effects compared to other SERMs. Most people on this kind of MtNB hrt seem to be using a combination of ralox (in place of estradiol) and bica [expand this + powers e1s schizo stuff?]&lt;br /&gt;
&lt;br /&gt;
== Legal ==&lt;br /&gt;
It is legal to buy anything without a diagnosis or a prescription (off the counter - OTC), Testosterone can be hit or miss, look for [https://www.galinos.gr/web/drugs/main/packages/15739 Tostran] (Testogel) or [https://www.galinos.gr/web/drugs/main/packages/4929 TEn] (Testosterone Enanthate/Norma, injections).  &lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--T:86--&amp;gt;&lt;br /&gt;
You can also check the &#039;&#039;&#039;[https://diyon.top/map Trans-Friendly Pharmacies Map]&#039;&#039;&#039; for any pharmacies near you (this goes for both Transfem and Transmasc HRT). &lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--T:75--&amp;gt;&lt;br /&gt;
There is no minimum or maximum legal age for someone to start HRT. &lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--T:76--&amp;gt;&lt;br /&gt;
It is not legally mandatory for someone to have a diagnosis by a psychiatrist in order to medically transition.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--T:77--&amp;gt;&lt;br /&gt;
There is no legally mandatory time restriction for a psychiatrist to monitor you before diagnosing you.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--T:78--&amp;gt;&lt;br /&gt;
You don&#039;t legally need to be on HRT in order to be exempt from the [[army]], change your [[Legal|legal sex]], or to have a [[surgery]].&lt;br /&gt;
&lt;br /&gt;
== Other resources == &amp;lt;!--T:79--&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--T:80--&amp;gt;&lt;br /&gt;
* Simulator: https://www.estrannai.se/&lt;br /&gt;
* https://transfemscience.org/ (note, the authors of this site disagree with a lot of what they are saying, regardless, it is still interesting)&lt;br /&gt;
** Introduction to Hormone Therapy for Transfeminine People: https://transfemscience.org/articles/transfem-intro/&lt;br /&gt;
** Older simulator: https://transfemscience.org/misc/injectable-e2-simulator/&lt;br /&gt;
** Dosage calculator: https://transfemscience.org/misc/injectable-dose-vol-conc-conv/&lt;br /&gt;
* https://diyhrt.wiki/ (alt link: https://anarch.cc/transfeminine-diy-hrt-the-ultimate-guide-2/)&lt;br /&gt;
* https://hrtcafe.net/&lt;br /&gt;
* ?? https://hrt.coffee/&lt;br /&gt;
* https://www.reddit.com/r/TransDIY/&lt;br /&gt;
* https://www.reddit.com/r/TransfemScience/&lt;br /&gt;
* https://groups.io/g/MTFHRT/wiki/29602 (alt link: https://anarch.cc/mtf-hrt-ultimate-diy/)&lt;br /&gt;
* https://hrt.cat/ - info for making your own (you will probably not need it - version 1.0: https://hrtcafe.net/hrtcat/)&lt;br /&gt;
* https://archive.ph/uQb8g (alt link: https://anarch.cc/making-your-own-injections/, as above)&lt;br /&gt;
* https://crimethinc.com/2022/12/15/producing-transdermal-estrogen-a-do-it-yourself-guide (alt link: https://anarch.cc/producing-transdermal-estrogen-a-do-it-yourself-guide/, as above)&lt;br /&gt;
* https://archive.ph/cpy7k (alt link: https://anarch.cc/homebrewing-hormones-mtf-guide/, as above)&lt;br /&gt;
&amp;lt;/translate&amp;gt;&lt;/div&gt;</summary>
		<author><name>Goblinmoder</name></author>
	</entry>
	<entry>
		<id>https://wiki.diyon.top/index.php?title=HRT&amp;diff=1001</id>
		<title>HRT</title>
		<link rel="alternate" type="text/html" href="https://wiki.diyon.top/index.php?title=HRT&amp;diff=1001"/>
		<updated>2025-04-17T12:09:06Z</updated>

		<summary type="html">&lt;p&gt;Goblinmoder: /* Miscellaneous/Progesterone */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{#seo:&lt;br /&gt;
|title_mode=replace&lt;br /&gt;
|title=HRT&lt;br /&gt;
|description=We are open to discussion and actively on-going changes in formatting and contents of this Page and Website (in general). The e-mail address to refer to is fox@diyon.top&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
&amp;lt;languages/&amp;gt;&lt;br /&gt;
&amp;lt;translate&amp;gt;&lt;br /&gt;
&amp;lt;!--T:41--&amp;gt;&lt;br /&gt;
After around a month on HRT some of your ranges in your [[Blood Testing|blood test]] should be within desired ranges.&lt;br /&gt;
&lt;br /&gt;
== Disclaimer ==&lt;br /&gt;
 To clarify on &#039;&#039;&#039;dosages&#039;&#039;&#039;, the values mentioned below are rather speculative and most are based on &#039;&#039;&#039;personal experiences&#039;&#039;&#039; or &#039;&#039;&#039;(diy)hrt pages/websites/papers&#039;&#039;&#039;. Therefore it is encouraged to do [[Blood Testing|blood tests]] and if possible, check with an [[Doctors#Ενδοκρινολόγοι|endocrinologist]] (we also suggest [[Doctors]] that can help with such cases), especially if you have any specific &#039;&#039;&#039;health conditions&#039;&#039;&#039;. &lt;br /&gt;
Pricemaps are there to evaluate prices through &#039;&#039;&#039;[https://galinos.gr galinos.gr]&#039;&#039;&#039; (in case something is outdated, look for the green line that says &amp;quot;Λιανική&amp;quot;)&lt;br /&gt;
&lt;br /&gt;
We are open to discussion and actively on-going changes in formatting and contents of this Page and Website (in general). The e-mail address to refer to is &#039;&#039;&#039;fox@diyon.top&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--T:43--&amp;gt;&lt;br /&gt;
== Transfem ==&lt;br /&gt;
Taking Puberty Blockers ([[HRT#Antiandrogens and GNRH Agonists|GNRH Agonists]], e.g: Arvekap) or any Anti Androgen (e.g: Aldactone, Androcur) &#039;&#039;&#039;without [[HRT#Estrogens|Estrogens]]&#039;&#039;&#039; is generally discouraged even during youth transitioning (This is &#039;&#039;&#039;non-definitive&#039;&#039;&#039; for Enby folks)&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--T:44--&amp;gt;&lt;br /&gt;
=== Monotherapy ===&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|+&lt;br /&gt;
!Type&lt;br /&gt;
!Commercial Names&lt;br /&gt;
!Dosage&lt;br /&gt;
!Notes&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
====== Sublingual (E Valerate or Hemihydrate) ======&lt;br /&gt;
|Cyclacur (EV), Estrofem (EH, imported), Trisequens (12 pills 2mg EH, 10 pills norgestrel, 6 pills 1mg EH)&lt;br /&gt;
|&amp;gt;=8-12mg/day&lt;br /&gt;
|While it is possible, even with a smaller dosage (&#039;&#039;&#039;at least 6mg&#039;&#039;&#039;), it&#039;s not that common. Ideally, use your blood tests to &#039;&#039;&#039;minmax&#039;&#039;&#039; your doses.&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
====== Injectable Estradiol Valerate (EV) ======&lt;br /&gt;
|Neofollin (can be ordered from pharmacies near Czechia, or aptekaapo.com &#039;&#039;&#039;but they’re not on hrtcafe&#039;&#039;&#039;, not tested in Greece), Delestrogen (Vial, unavailable), Progynon Depot (Ampules, unavailable), [[File:What-excuse-me.gif|thumb|[[HRT#Other resources|my honest reaction]]]]&lt;br /&gt;
|5-7mg/5 days&lt;br /&gt;
|&lt;br /&gt;
* Due to the large spikes in levels combined with the short [https://en.wikipedia.org/wiki/Biological_half-life half-life] it is not recommended for dosages to surpass the 5 day mark because it may cause menopause symptoms.&lt;br /&gt;
* Branded versions of this medication are not available in greece.&lt;br /&gt;
* The ampules contain a certain mg and do not allow for larger dosages, they are not re-usable. It is recommended to use a vial with a cap.&lt;br /&gt;
* Look for &#039;&#039;&#039;[https://arc-w.nihr.ac.uk/Wordpress/wp-content/uploads/2015/07/Low-dead-space-syringes.png syringe dead space]([[HRT#:~:text=* = It has been mentioned that syringes account for dead space, although that is not 100% certain.|*]])&#039;&#039;&#039;, e.g. if there&#039;s &#039;&#039;&#039;0.05mL&#039;&#039;&#039; remaining after injecting, draw &#039;&#039;&#039;+0.05mL&#039;&#039;&#039; from the vial.&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
====== Injectable Estradiol Cypionate (EC) ======&lt;br /&gt;
|[[File:What-excuse-me.gif|thumb|[[HRT#Other resources|my honest reaction]]]]Depo-Estradiol (US only, unavailable),&lt;br /&gt;
|5-7mg/7 days&lt;br /&gt;
|&lt;br /&gt;
* Look for &#039;&#039;&#039;[https://arc-w.nihr.ac.uk/Wordpress/wp-content/uploads/2015/07/Low-dead-space-syringes.png syringe dead space]([[HRT#:~:text=* = It has been mentioned that syringes account for dead space, although that is not 100% certain.|*]])&#039;&#039;&#039;, e.g. if there&#039;s &#039;&#039;&#039;0.05mL&#039;&#039;&#039; remaining after injecting, draw &#039;&#039;&#039;+0.05mL&#039;&#039;&#039; from the vial.&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
====== Injectable Estradiol Enanthate (EEn) ======&lt;br /&gt;
|[[File:What-excuse-me.gif|thumb|[[HRT#Other resources|my honest reaction]]]]&lt;br /&gt;
|4-7mg/7 days&lt;br /&gt;
7-10mg/10 days (7.2mg usually, depending on the vial, it&#039;s optimal because drawing cents of mL are hard to get right)&lt;br /&gt;
|&lt;br /&gt;
* You can multiply the weekly dosage by 2, which lasts up to 14 days (as much as the [https://en.wikipedia.org/wiki/Biological_half-life half-life] of Enanthate)&lt;br /&gt;
* Look for &#039;&#039;&#039;[https://arc-w.nihr.ac.uk/Wordpress/wp-content/uploads/2015/07/Low-dead-space-syringes.png syringe dead space]([[HRT#:~:text=* = It has been mentioned that syringes account for dead space, although that is not 100% certain.|*]])&#039;&#039;&#039;, e.g. if there&#039;s &#039;&#039;&#039;0.05mL&#039;&#039;&#039; remaining after injecting, draw &#039;&#039;&#039;+0.05mL&#039;&#039;&#039; from the vial.&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
====== Injectable Estradiol Undecylate (EU/EUn) ======&lt;br /&gt;
|[[File:What-excuse-me.gif|thumb|[[HRT#Other resources|my honest reaction]]]]&lt;br /&gt;
|There&#039;s not enough information on dosage. The frequency of those may differ according to the oil used (MCT/Castor oil). Indicative Dosages:&lt;br /&gt;
15-20mg/2 weeks&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--T:45--&amp;gt;&lt;br /&gt;
20-40mg+/4 weeks&lt;br /&gt;
|&lt;br /&gt;
* There&#039;s not enough information on its [[wikipedia:Biological_half-life|half-life]], a higher dosage can be administered that can last up to 20-30 days.&lt;br /&gt;
* [[wikipedia:Intramuscular_injection|IM injections]] last longer so they give better levels during the same period of time per injection.&lt;br /&gt;
* Needs at least 90 days to reach stable levels.&lt;br /&gt;
* Look for &#039;&#039;&#039;[https://arc-w.nihr.ac.uk/Wordpress/wp-content/uploads/2015/07/Low-dead-space-syringes.png syringe dead space]([[HRT#:~:text=* = It has been mentioned that syringes account for dead space, although that is not 100% certain.|*]])&#039;&#039;&#039;, e.g. if there&#039;s &#039;&#039;&#039;0.05mL&#039;&#039;&#039; remaining after injecting, draw &#039;&#039;&#039;+0.05mL&#039;&#039;&#039; from the vial.&lt;br /&gt;
|}&lt;br /&gt;
&#039;&#039;&#039;*&#039;&#039;&#039; = It has been mentioned that syringes account for dead space, although that is not 100% certain.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--T:46--&amp;gt;&lt;br /&gt;
=== Sublingual vs Oral ===&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|+&lt;br /&gt;
!Method&lt;br /&gt;
!Substance&lt;br /&gt;
!Dosage&lt;br /&gt;
!Observations&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
====== Oral ======&lt;br /&gt;
|Estradiol Valerate in pill form (e.g. Cyclacur)&lt;br /&gt;
|&amp;gt;=6mg/day&lt;br /&gt;
(max 10mg as per Dr. Powers)&lt;br /&gt;
|It is recommended that doses are taken separately on set time intervals during the day for more stable estradiol levels, e.g. for a 6mg dose you would take 2mg per 8 hours. By the oral route the active substance is metabolized by the liver and part of it is converted to estrone (E1), which has much less feminizing effects than estradiol (E2) so the desired effect is essentially prevented. The bioavailability of estradiol by oral administration is very low (~5%) and usually lower levels of E2 are observed in blood tests than other methods of administration. [anecdotal apo to server, wikipedia kai tttt - correct/expand?] It is also necessary to administer anti-androgens to reduce testosterone levels to the female range.&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
====== Sublingual ======&lt;br /&gt;
|Estradiol Valerate in pill form (e.g. Cyclacur)&lt;br /&gt;
|&amp;gt;=4mg/day&lt;br /&gt;
|It is recommended that doses are taken separately on set time intervals during the day for more stable estradiol levels, e.g. for a 6mg dose you would take 2mg per 8 hours. The sublingual way bypasses estradiol metabolism by the liver and has about 5 times the estradiol bioavailability of the oral way. This way, estradiol levels have greater range than orally (higher peak lower bottom), in oral they remain higher for ~12 hours while sublingually they go away after 3-4 hours [idk if honscience the study is from 2005 on cis women]&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== Vial info === &amp;lt;!--T:47--&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--T:48--&amp;gt;&lt;br /&gt;
=== Medications ===&lt;br /&gt;
For cyclacur: &#039;&#039;&#039;take only the white pills, the brown pills are Norgestrel which have 0.5mg of estradiol but has an androgenic effect and may also cause other side effects&#039;&#039;&#039;. &lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--T:49--&amp;gt;&lt;br /&gt;
==== Estrogens ====&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|+&lt;br /&gt;
!Brand Name(s)&lt;br /&gt;
!Substance&lt;br /&gt;
!Form&lt;br /&gt;
!Method of Administration&lt;br /&gt;
!Cost&lt;br /&gt;
!Cost with Healthcare Coverage&lt;br /&gt;
!Dosage&lt;br /&gt;
!Safety&lt;br /&gt;
!Notes&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
====== [https://www.galinos.gr/web/drugs/main/drugs/Cyclacur Cyclacur] ======&lt;br /&gt;
|Estradiol Valerate (EV)&lt;br /&gt;
|Pill tablet&lt;br /&gt;
|Orally or sublingually&lt;br /&gt;
|2.01€ for 11 pills ([https://www.galinos.gr/service/drugs/drawPackagePrice/1198 Pricemap])&lt;br /&gt;
~130.8-328.€/year&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--T:50--&amp;gt;&lt;br /&gt;
~10.9-27.4€/month&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--T:51--&amp;gt;&lt;br /&gt;
Prices are indicative, the cost depends on the dosage.&lt;br /&gt;
| -&lt;br /&gt;
|6mg-10mg/day (according to Dr. Will Powers)&lt;br /&gt;
4mg-8mg/day (according to Greek Endocrinologists)&lt;br /&gt;
|A&lt;br /&gt;
|&lt;br /&gt;
* &#039;&#039;&#039;Only white pills are used.&#039;&#039;&#039; Brown pills do have a bit of estradiol but arent taken due to other side effects.&lt;br /&gt;
* You need antiandrogens or GNRH antagonists if you haven&#039;t had an orchiectomy.&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
====== Progynova ======&lt;br /&gt;
|Estradiol Valerate (EV)&lt;br /&gt;
|Pill tablet&lt;br /&gt;
|Orally or sublingually&lt;br /&gt;
|~22€ for 72 pills of 1 mg or ~32€ for 72 pills of 2 mg&lt;br /&gt;
Prices are indicative, the cost depends on the dosage.&lt;br /&gt;
| -&lt;br /&gt;
|4mg-8mg/day&lt;br /&gt;
|A&lt;br /&gt;
|&lt;br /&gt;
* There is no reason to use it in Greece since Cyclacur is available in Greek pharmacies.&lt;br /&gt;
* You need antiandrogens or GNRH antagonists if you haven&#039;t had an orchiectomy.&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
====== Estrofem, Estrifam (german brand name), [https://www.galinos.gr/web/drugs/main/drugs/trisequens Trisequens] ======&lt;br /&gt;
|Estradiol Hemihydrate&lt;br /&gt;
|Pill tablet&lt;br /&gt;
|Orally or sublingually&lt;br /&gt;
|~30€ for 28 pills of 2 mg without shipping costs.&lt;br /&gt;
Prices are indicative, the cost depends on the dosage.&lt;br /&gt;
| -&lt;br /&gt;
|4mg-8mg/day&lt;br /&gt;
|A&lt;br /&gt;
|&lt;br /&gt;
* There is no reason to use it in Greece since Cyclacur is available in Greek pharmacies.&lt;br /&gt;
* You need antiandrogens or GNRH antagonists if you haven&#039;t had an orchiectomy.&lt;br /&gt;
* Trisequens, while being available in Greece, is odd to take with 12 pills being 2mg EH, 10 norgestrel, and 6 1mg EH, for a much higher price than [[HRT#Cyclacur|Cyclacur]].&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
====== [https://www.galinos.gr/web/drugs/main/drugs/Dermestril Dermestril] ======&lt;br /&gt;
|Estradiol Hemihydrate&lt;br /&gt;
|Patch&lt;br /&gt;
|Trans-dermally&lt;br /&gt;
|44€ for 24 patches of 100mcg&lt;br /&gt;
~15€ for 8 patches of 50mcg&lt;br /&gt;
| -&lt;br /&gt;
|50mcg/3.5 days (when starting off)&lt;br /&gt;
100mcg/3.5 days (whenever your e2 levels are stable)&lt;br /&gt;
|A&lt;br /&gt;
|&lt;br /&gt;
* &#039;&#039;&#039;If you have no idea how to apply patches watch this:&#039;&#039;&#039; [https://youtu.be/tXGIYWPqdpI?si=O0dlE19pq0ic0PZP Demonstrational Video]&lt;br /&gt;
* You need antiandrogens or GNRH antagonists if you haven&#039;t had an orchiectomy.&lt;br /&gt;
* 100mcg patches can be cut into 2 if needed.&lt;br /&gt;
|-&lt;br /&gt;
|Neofollin (can be ordered from pharmacies near Czechia, not tested in Greece), Delestrogen (Vial, unavailable), Progynon Depot (Ampules, unavailable)&lt;br /&gt;
|&lt;br /&gt;
====== Estradiol Valerate (EV) ======&lt;br /&gt;
|Injectable&lt;br /&gt;
|Subcutaneous or Intramuscular&lt;br /&gt;
|80€/year (including shipping costs, syringes and alcohol swabs)&lt;br /&gt;
| -&lt;br /&gt;
|5-7mg/5 days (monotherapy)&lt;br /&gt;
4-5mg/7 days (only in combination with an antiandrogen or GNRH agonist)&lt;br /&gt;
|A+&lt;br /&gt;
|&lt;br /&gt;
* It can be used without antiandrogens or GNRH agonists in ([[HRT#Μονοθεραπεία|Monotherapy]]) by increasing the dosage.&lt;br /&gt;
|-&lt;br /&gt;
|Depo-Estradiol (US only, unavailable)&lt;br /&gt;
|&lt;br /&gt;
====== Estradiol Cypionate (EC) ======&lt;br /&gt;
|Injectable&lt;br /&gt;
|Subcutaneous or Intramuscular&lt;br /&gt;
|~70-80€/year (not including shipping costs, syringes and alcohol swabs)&lt;br /&gt;
| -&lt;br /&gt;
|5-7mg/7 days&lt;br /&gt;
(&#039;&#039;&#039;mono dose&#039;&#039;&#039;)&lt;br /&gt;
? (TBD/&#039;&#039;&#039;dose with AA&#039;&#039;&#039;)&lt;br /&gt;
|?&lt;br /&gt;
|&lt;br /&gt;
* It can be used without antiandrogens or GNRH agonists in ([[HRT#Μονοθεραπεία|Monotherapy]])&lt;br /&gt;
|-&lt;br /&gt;
| -&lt;br /&gt;
|&lt;br /&gt;
====== Estradiol Enanthate (EEn) ======&lt;br /&gt;
|Injectable&lt;br /&gt;
|Subcutaneous or Intramuscular&lt;br /&gt;
|80€/year (including shipping costs, syringes and alcohol swabs)&lt;br /&gt;
| -&lt;br /&gt;
|2.5mg-7mg/7 days&lt;br /&gt;
(usual dosage: 4mg/7days)&lt;br /&gt;
|A+&lt;br /&gt;
|&lt;br /&gt;
* It can be used without antiandrogens or GNRH agonists in ([[HRT#Μονοθεραπεία|Monotherapy]]) by increasing the dosage.&lt;br /&gt;
|-&lt;br /&gt;
| -&lt;br /&gt;
|&lt;br /&gt;
====== Estradiol Undecylate (EU, EUn) ======&lt;br /&gt;
|Injectable&lt;br /&gt;
|Subcutaneous or Intramuscular&lt;br /&gt;
|130€/year (including shipping costs, syringes and alcohol swabs)&lt;br /&gt;
| -&lt;br /&gt;
|15-20mg/2 weeks&lt;br /&gt;
20-40mg+/4 weeks&lt;br /&gt;
|A+&lt;br /&gt;
|&lt;br /&gt;
* There&#039;s not much info on dosages, usually seen in [[HRT#Μονοθεραπεία|monotherapy]].&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--T:52--&amp;gt;&lt;br /&gt;
==== Anti-Androgens and GNRH Agonists ====&lt;br /&gt;
These should &#039;&#039;&#039;not&#039;&#039;&#039; be taken sublingually.&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|+&lt;br /&gt;
!Brand Name(s)&lt;br /&gt;
!Substance&lt;br /&gt;
!Cost&lt;br /&gt;
!Cost with Healthcare Coverage&lt;br /&gt;
!Dosage&lt;br /&gt;
!Safety&lt;br /&gt;
!Form&lt;br /&gt;
!Type&lt;br /&gt;
!Notes&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
====== [https://www.galinos.gr/web/drugs/main/drugs/Androcur Androcur] ======&lt;br /&gt;
|Cyproterone Acetate (CPA) is also referred to as cypro&lt;br /&gt;
|21.58€/50mg * 50 pills &lt;br /&gt;
19.7-31.5€/year&lt;br /&gt;
&lt;br /&gt;
([https://www.galinos.gr/service/drugs/drawPackagePrice/8023 Pricemap])&lt;br /&gt;
|?&lt;br /&gt;
|12.5mg/2 days- 10mg/day&lt;br /&gt;
&#039;&#039;&#039;Larger doses shouldn&#039;t be administered&#039;&#039;&#039;&lt;br /&gt;
|C&lt;br /&gt;
|Pill tablet&lt;br /&gt;
|Progestin (Steroidal antiandrogen)&lt;br /&gt;
Stops testosterone production.&lt;br /&gt;
|The max recommended dosage is 10mg/day . Monitoring of prolactin levels is recommended through [[Blood Testing#MTF|blood testing]].&lt;br /&gt;
&#039;&#039;&#039;Many doctors give overdoses of 50 mg/day. Cyproterone is a strong anti-androgen and testosterone suppression is possible with lower doses. A change of doctor is recommended.&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--T:53--&amp;gt;&lt;br /&gt;
[[wikipedia:Side_effects_of_cyproterone_acetate|Side Effects]]:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--T:54--&amp;gt;&lt;br /&gt;
* Benign brain tumor.&lt;br /&gt;
* In rare cases, liver damage.&lt;br /&gt;
* Vitamin B12 deficiency.&lt;br /&gt;
* Breast cancer.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--T:55--&amp;gt;&lt;br /&gt;
Testosterone suppression can be achieved with even lower doses, however a 50 mg pill is difficult to cut into pieces of less than 12.5 mg even with a pill cutter.&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
====== [https://www.galinos.gr/web/drugs/main/drugs/Bicalut Bicalut] ======&lt;br /&gt;
|Bicalutamide (aka: bica)&lt;br /&gt;
|29.10 euro/30 pills&lt;br /&gt;
29.10 euro/month&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--T:56--&amp;gt;&lt;br /&gt;
~350 euro/year&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
([https://www.galinos.gr/service/drugs/drawPackagePrice/11120 Pricemap])&lt;br /&gt;
|6.77 euro/month (28 tabs)&lt;br /&gt;
~95 euro/year&lt;br /&gt;
|50mg/day&lt;br /&gt;
|A-&lt;br /&gt;
|Pill/Tablet&lt;br /&gt;
|Androgen receptor antagonist (Nonsteroidal antiandrogen)&lt;br /&gt;
Blocks absorption of all androgens (including testosterone)&lt;br /&gt;
|&#039;&#039;&#039;Serious negative interactions can be noted if combined with other anti-androgens and GNRH agonists (except progesterone)&#039;&#039;&#039;&lt;br /&gt;
&#039;&#039;&#039;Very rare&#039;&#039;&#039; chance for recoverable and non-fatal liver damage for people with a certain rare mutation.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--T:57--&amp;gt;&lt;br /&gt;
Most of the effects listen in the instruction manual are scaremongering. (it lists a very high chance of liver issues when they are actually very rare, and also lists photosensitivity, which if it even occurs at all, it should be quite rare. We are aware of nobody who had a negative interction between alexandrite laser hair removal and bicalutamide).&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--T:58--&amp;gt;&lt;br /&gt;
Note that bicalutamide, unlike most other anti-androgens, &#039;&#039;&#039;does not&#039;&#039;&#039; lower testosterone levels, in fact they usually rise as the body responds to testosterone receptors being inhibited. Do not be alarmed if you notice an increase of testosterone in your blood tests.&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
====== [https://www.galinos.gr/web/drugs/main/drugs/Arvekap Arvekap] ======&lt;br /&gt;
|Triptorelin&lt;br /&gt;
| -&lt;br /&gt;
|~200/year?&lt;br /&gt;
|&lt;br /&gt;
|A?&lt;br /&gt;
|Injection&lt;br /&gt;
|GNRH Agonist&lt;br /&gt;
(indirectly) Stops testosterone AND estrogen production&lt;br /&gt;
|Also a puberty blocker&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
====== [https://www.galinos.gr/web/drugs/main/drugs/aldactone Aldactone] ======&lt;br /&gt;
|Spironolactone&lt;br /&gt;
|5.19 euro/20 tabs (100mg)&lt;br /&gt;
([https://www.galinos.gr/service/drugs/drawPackagePrice/148 Pricemap])&lt;br /&gt;
|?&lt;br /&gt;
|50mg-200mg/day&lt;br /&gt;
|B-C&lt;br /&gt;
|Tablet&lt;br /&gt;
|Antimineralocorticoid/MCRA&lt;br /&gt;
|Very inefficient, makes you pee, it&#039;s a medication for blood pressure&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
|Flutamide&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|F---&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|Only in this table as an example to avoid&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
==== Miscellaneous/Progesterone ====&lt;br /&gt;
Progesterone falls under this category, as it is not quite the same as other Anti-Androgens, the mention of Progesterone in this title is necessary in order to reduce confusion and questions such as &amp;quot;Where is progesterone?&amp;quot; and &amp;quot;Did you remove prog from the page?&amp;quot;.&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
!Brand Name(s)&lt;br /&gt;
!Substance&lt;br /&gt;
!Cost&lt;br /&gt;
!Cost with Healthcare Coverage&lt;br /&gt;
!Dosage&lt;br /&gt;
!Safety&lt;br /&gt;
!Form&lt;br /&gt;
!Type&lt;br /&gt;
!Notes&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
====== [https://www.galinos.gr/web/drugs/main/drugs/utrogestran Utrogestan] ======&lt;br /&gt;
|Progesterone (P4) it is also referred to as prog&lt;br /&gt;
|5.83 euro/30 caps (100mg)&lt;br /&gt;
8.08 euro/15 caps (200mg)&lt;br /&gt;
([https://www.galinos.gr/service/drugs/drawPackagePrice/7619 Pricemap])&lt;br /&gt;
|?&lt;br /&gt;
|100mg or 200mg daily (rectal administration, blood tests are recommended)&lt;br /&gt;
|A&lt;br /&gt;
|Capsule&lt;br /&gt;
|Stops testosterone production.&lt;br /&gt;
|There is not much confirmed information about progesterone.&lt;br /&gt;
It can also be taken orally but the absorption rate is very low.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--T:59--&amp;gt;&lt;br /&gt;
Anecdotal claims:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--T:60--&amp;gt;&lt;br /&gt;
* Helps with breast development and with feminization in general.&lt;br /&gt;
* Can be given after one year of estradiol.&lt;br /&gt;
* Suggested to be given after the individual reaches Tanner stage 3.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--T:61--&amp;gt;&lt;br /&gt;
It can have androgenic or other (non-serious, recoverable) effects for some individuals - in particular it can be converted to DHT by the body even in combination with dutasteride or bicalutamide.&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--T:62--&amp;gt;&lt;br /&gt;
==== Other anti-androgens (optional) ====&lt;br /&gt;
These are used to block conversion of other androgens to DHT (which causes hair loss (hair) and body hair growth). They aren&#039;t general use Anti-Androgens.&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
!Brand Name(s)&lt;br /&gt;
!Substance&lt;br /&gt;
!Cost&lt;br /&gt;
!Cost with Healthcare Coverage&lt;br /&gt;
!Dosage&lt;br /&gt;
!Safety&lt;br /&gt;
!Form&lt;br /&gt;
!Type&lt;br /&gt;
!Notes&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
====== [https://www.galinos.gr/web/drugs/main/packages/26485 Dastidem], [https://www.galinos.gr/web/drugs/main/packages/25557 Rafuster], [https://www.galinos.gr/web/drugs/main/packages/25893 Duaride], [https://www.galinos.gr/web/drugs/main/packages/25894 Dustezor] ======&lt;br /&gt;
|Dutasteride&lt;br /&gt;
|7.90€/30 caps&lt;br /&gt;
|~6€/30 caps&lt;br /&gt;
|0.5mg/day (?/TBD)&lt;br /&gt;
|A-&lt;br /&gt;
|Capsule&lt;br /&gt;
| -&lt;br /&gt;
|High effectiveness.&lt;br /&gt;
|-&lt;br /&gt;
| -&lt;br /&gt;
|Finasteride&lt;br /&gt;
| -&lt;br /&gt;
| -&lt;br /&gt;
| -&lt;br /&gt;
|F&lt;br /&gt;
| -&lt;br /&gt;
| -&lt;br /&gt;
|Effectiveness is none to medium (Just take Dutasteride - will not stop conversion of Progesterone to DHT)&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--T:63--&amp;gt;&lt;br /&gt;
=== Blood Levels ===&lt;br /&gt;
&lt;br /&gt;
==== Refer to the [[Blood Testing]] page. ====&amp;lt;!--T:81--&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Transmasc ==&lt;br /&gt;
&lt;br /&gt;
=== Medications ===&lt;br /&gt;
&lt;br /&gt;
==== Testosterone ====&lt;br /&gt;
[https://www.galinos.gr/web/drugs/main/substances/testosterone/marketing Galinos.gr&#039;s testosterone availability page]&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|+&lt;br /&gt;
!Brand Name(s)&lt;br /&gt;
!Substance&lt;br /&gt;
!Form&lt;br /&gt;
!Method of Administration&lt;br /&gt;
!Cost&lt;br /&gt;
!Cost with Healthcare Coverage&lt;br /&gt;
!Dosage&lt;br /&gt;
!Safety&lt;br /&gt;
!Notes&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
====== [https://www.galinos.gr/web/drugs/main/packages/4929 Norma] ======&lt;br /&gt;
|Testosterone Enanthate&lt;br /&gt;
|Injection/Ampule&lt;br /&gt;
|Subcutaneous or Intramuscular&lt;br /&gt;
|17.67€/ampule &lt;br /&gt;
([https://www.galinos.gr/service/drugs/drawPackagePrice/4929 Pricemap])&lt;br /&gt;
|?&lt;br /&gt;
|?&lt;br /&gt;
|?&lt;br /&gt;
| -&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
====== [https://www.galinos.gr/web/drugs/main/packages/21943 Nebido] ======&lt;br /&gt;
|Testosterone Undecanoate&lt;br /&gt;
|Injection/Vial&lt;br /&gt;
|Intramuscular&lt;br /&gt;
|100.37€/vial&lt;br /&gt;
([https://www.galinos.gr/service/drugs/drawPackagePrice/21943 Pricemap])&lt;br /&gt;
|~32.52€/vial (you pay 25%)&lt;br /&gt;
|1 vial (1000mg/4mL)/10-20 weeks&lt;br /&gt;
|A&lt;br /&gt;
|As a starting dose &#039;&#039;&#039;after a year of HRT&#039;&#039;&#039;, you could also consider:&lt;br /&gt;
&lt;br /&gt;
* Instead of injecting one vial per 20 weeks, you do half every 10-12 weeks, however nothing could be sourced to support this. Though logically it could make sense as a practice.&lt;br /&gt;
* Do a test at 6 weeks after starting, if T is too high don&#039;t take the 2nd dose, if it&#039;s not you can take the 2nd and then test 2 weeks before every other dose.&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
====== [https://www.galinos.gr/web/drugs/main/packages/15739 Tostran] ======&lt;br /&gt;
|Testogel&lt;br /&gt;
|Gel&lt;br /&gt;
|Trans-dermally&lt;br /&gt;
|&#039;&#039;&#039;Starting dose&#039;&#039;&#039;&lt;br /&gt;
&amp;lt;!--T:82--&amp;gt;&lt;br /&gt;
* 35.54€/2 months&lt;br /&gt;
* 213.24€/year&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--T:83--&amp;gt;&lt;br /&gt;
&#039;&#039;&#039;30 mg dose&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--T:84--&amp;gt;&lt;br /&gt;
* 35.54€/40 days&lt;br /&gt;
* ~324.30€/year&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--T:85--&amp;gt;&lt;br /&gt;
&#039;&#039;&#039;40 mg dose&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--T:73--&amp;gt;&lt;br /&gt;
* 35.54€/30 days&lt;br /&gt;
* 426.48€/year&lt;br /&gt;
([https://www.galinos.gr/service/drugs/drawPackagePrice/15739 Pricemap])&lt;br /&gt;
|35.54€ -&amp;gt; 8.89€&lt;br /&gt;
|20mg/day (starting dose)&lt;br /&gt;
30-40mg/day&lt;br /&gt;
|A&lt;br /&gt;
|&lt;br /&gt;
* 1 pump of Tostran (&#039;&#039;&#039;0.5g&#039;&#039;&#039;) delivers 10 mg of T.&lt;br /&gt;
* 2 pumps of Tostran are 1 pump of Testogel (20.25mg of T)&lt;br /&gt;
* Can cause skin reactions.&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
==== GNRH Agonists ====&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
!Brand Name(s)&lt;br /&gt;
!Substance&lt;br /&gt;
! Cost&lt;br /&gt;
!Cost with Healthcare Coverage&lt;br /&gt;
!Dosage&lt;br /&gt;
!Safety&lt;br /&gt;
!Form&lt;br /&gt;
!Type&lt;br /&gt;
!Notes&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
====== [https://www.galinos.gr/web/drugs/main/drugs/Arvekap Arvekap] ======&lt;br /&gt;
|Triptorelin&lt;br /&gt;
| -&lt;br /&gt;
|~200/year?&lt;br /&gt;
|&lt;br /&gt;
|A?&lt;br /&gt;
|Injection&lt;br /&gt;
|GNRH Agonist&lt;br /&gt;
(indirectly) Stops testosterone AND estrogen production&lt;br /&gt;
|Also a puberty blocker&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
==== Other anti-androgens (optional) ====&lt;br /&gt;
These are used to block conversion of other androgens to DHT (which causes hair loss (hair) and body hair growth). They aren&#039;t general use Anti-Androgens.&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
!Brand Name(s)&lt;br /&gt;
!Substance&lt;br /&gt;
!Cost&lt;br /&gt;
!Cost with Healthcare Coverage&lt;br /&gt;
!Dosage&lt;br /&gt;
!Safety&lt;br /&gt;
!Form&lt;br /&gt;
!Type&lt;br /&gt;
!Notes&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
====== [https://www.galinos.gr/web/drugs/main/packages/26485 Dastidem], [https://www.galinos.gr/web/drugs/main/packages/25557 Rafuster], [https://www.galinos.gr/web/drugs/main/packages/25893 Duaride], [https://www.galinos.gr/web/drugs/main/packages/25894 Dustezor] ======&lt;br /&gt;
|Dutasteride&lt;br /&gt;
|7.90€/30 caps&lt;br /&gt;
|~6€/30 caps&lt;br /&gt;
|0.5mg/day (?/TBD)&lt;br /&gt;
|A-&lt;br /&gt;
|Capsule&lt;br /&gt;
| -&lt;br /&gt;
|High effectiveness. &lt;br /&gt;
Not to be confused with proper Anti-Androgens.&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== Nonbinary hrt *under construction* ==&lt;br /&gt;
&lt;br /&gt;
=== !!! disclaimer-warning about potential issues !!! ===&lt;br /&gt;
&lt;br /&gt;
=== General outline of nb hrt for amab and afab ===&lt;br /&gt;
&lt;br /&gt;
=== Medications ===&lt;br /&gt;
&lt;br /&gt;
==== Selective Estrogen Receptor Modulators (SERMs) ====&lt;br /&gt;
&lt;br /&gt;
* Tamoxifen is a selective estrogen receptor modulator (SERM). In some tissues such as the brain it activates estrogen receptors, which may help reduce dysphoria. In breast tissue it antagonizes estrogen receptors, preventing the formation of breast tissue if desired. There is some evidence that Tamoxifen inhibits memory, though the effects of taking it alongside regular estrogen are undocumented. Tamoxifen can cause cognitive dysfunction and increase your risk of stroke and pulmonary embolism. Tamoxifen may also be taken alongside 17β-estradiol, more research is needed. In this combination, estradiol should still have its effects (combating dysphoria in the brain, redistribution of body fat, smoother skin etc.) while tamoxifen prevents the growth of breast tissue.&lt;br /&gt;
* Raloxifene is another SERM. It is an estrogen receptor antagonist in breast tissue. It is an estrogen receptor agonist in bone and can be used to prevent osteoporosis. Raloxifene has been shown to reduce ERα expression in breast tissue in premenopausal women. As the synthesis of progesterone receptors (PR) is estrogen-regulated, raloxifene also decreases the expression of PR. Additionally, it was shown to decrease the presence of Ki-67, a biomarker for cell proliferation, in breast tissue of premenopausal women. As a result, it can be used to treat gynecomastia, and has been shown effective in reducing breast size in those with the condition. Raloxifene may promote feminine fat distribution: in a study on 56-66 year old postmenopausal women, there was an increase in fat in the legs and buttocks and a decrease in fat in the abdomen and trunk after 1 year on 60 mg/day raloxifene. It is not yet known how pronounced this effect is, as there have been no comparisons of body fat distribution between raloxifene and estradiol. Raloxifene may increase the risk of stroke and pulmonary embolism.&lt;br /&gt;
* Afimoxifene is a topical SERM and the primary metabolite of tamoxifen.&lt;br /&gt;
&lt;br /&gt;
==== Anti-androgens ====&lt;br /&gt;
&lt;br /&gt;
==== Bicalutamide ====&lt;br /&gt;
Bicalutamide is an  anti-androgen which is used mainly in the treatment of prostate cancer but can also be used to treat hirsutism, or as a component of hormone therapy in feminizing HRT, among other uses. It is nonsteroidal anti-androgen and a selective/pure antagonist of the androgen receptor. It has no other hormonal activity and does not lower androgen levels. Bicalutamide crosses the blood-brain barrier and blocks the effects of testosterone and dihydrotestosterone (DHT) both in the body and in the brain. While it has been observed that bicalutamide does not cross the blood-brain barrier in rats and dogs, this was found not to be the case in humans&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
In general Ralox seems the best idea based on overall effectiveness and less severe side effects compared to other SERMs. Most people on this kind of MtNB hrt seem to be using a combination of ralox (in place of estradiol) and bica [expand this + powers e1s schizo stuff?]&lt;br /&gt;
&lt;br /&gt;
== Legal ==&lt;br /&gt;
It is legal to buy anything without a diagnosis or a prescription (off the counter - OTC), Testosterone can be hit or miss, look for [https://www.galinos.gr/web/drugs/main/packages/15739 Tostran] (Testogel) or [https://www.galinos.gr/web/drugs/main/packages/4929 TEn] (Testosterone Enanthate/Norma, injections).  &lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--T:86--&amp;gt;&lt;br /&gt;
You can also check the &#039;&#039;&#039;[https://diyon.top/map Trans-Friendly Pharmacies Map]&#039;&#039;&#039; for any pharmacies near you (this goes for both Transfem and Transmasc HRT). &lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--T:75--&amp;gt;&lt;br /&gt;
There is no minimum or maximum legal age for someone to start HRT. &lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--T:76--&amp;gt;&lt;br /&gt;
It is not legally mandatory for someone to have a diagnosis by a psychiatrist in order to medically transition.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--T:77--&amp;gt;&lt;br /&gt;
There is no legally mandatory time restriction for a psychiatrist to monitor you before diagnosing you.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--T:78--&amp;gt;&lt;br /&gt;
You don&#039;t legally need to be on HRT in order to be exempt from the [[army]], change your [[Legal|legal sex]], or to have a [[surgery]].&lt;br /&gt;
&lt;br /&gt;
== Other resources == &amp;lt;!--T:79--&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--T:80--&amp;gt;&lt;br /&gt;
* Simulator: https://www.estrannai.se/&lt;br /&gt;
* https://transfemscience.org/ (note, the authors of this site disagree with a lot of what they are saying, regardless, it is still interesting)&lt;br /&gt;
** Introduction to Hormone Therapy for Transfeminine People: https://transfemscience.org/articles/transfem-intro/&lt;br /&gt;
** Older simulator: https://transfemscience.org/misc/injectable-e2-simulator/&lt;br /&gt;
** Dosage calculator: https://transfemscience.org/misc/injectable-dose-vol-conc-conv/&lt;br /&gt;
* https://diyhrt.wiki/ (alt link: https://anarch.cc/transfeminine-diy-hrt-the-ultimate-guide-2/)&lt;br /&gt;
* https://hrtcafe.net/&lt;br /&gt;
* ?? https://hrt.coffee/&lt;br /&gt;
* https://www.reddit.com/r/TransDIY/&lt;br /&gt;
* https://www.reddit.com/r/TransfemScience/&lt;br /&gt;
* https://groups.io/g/MTFHRT/wiki/29602 (alt link: https://anarch.cc/mtf-hrt-ultimate-diy/)&lt;br /&gt;
* https://hrt.cat/ - info for making your own (you will probably not need it - version 1.0: https://hrtcafe.net/hrtcat/)&lt;br /&gt;
* https://archive.ph/uQb8g (alt link: https://anarch.cc/making-your-own-injections/, as above)&lt;br /&gt;
* https://crimethinc.com/2022/12/15/producing-transdermal-estrogen-a-do-it-yourself-guide (alt link: https://anarch.cc/producing-transdermal-estrogen-a-do-it-yourself-guide/, as above)&lt;br /&gt;
* https://archive.ph/cpy7k (alt link: https://anarch.cc/homebrewing-hormones-mtf-guide/, as above)&lt;br /&gt;
&amp;lt;/translate&amp;gt;&lt;/div&gt;</summary>
		<author><name>Goblinmoder</name></author>
	</entry>
	<entry>
		<id>https://wiki.diyon.top/index.php?title=HRT&amp;diff=1000</id>
		<title>HRT</title>
		<link rel="alternate" type="text/html" href="https://wiki.diyon.top/index.php?title=HRT&amp;diff=1000"/>
		<updated>2025-04-17T12:07:36Z</updated>

		<summary type="html">&lt;p&gt;Goblinmoder: /* Miscellaneous/Progesterone */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{#seo:&lt;br /&gt;
|title_mode=replace&lt;br /&gt;
|title=HRT&lt;br /&gt;
|description=We are open to discussion and actively on-going changes in formatting and contents of this Page and Website (in general). The e-mail address to refer to is fox@diyon.top&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
&amp;lt;languages/&amp;gt;&lt;br /&gt;
&amp;lt;translate&amp;gt;&lt;br /&gt;
&amp;lt;!--T:41--&amp;gt;&lt;br /&gt;
After around a month on HRT some of your ranges in your [[Blood Testing|blood test]] should be within desired ranges.&lt;br /&gt;
&lt;br /&gt;
== Disclaimer ==&lt;br /&gt;
 To clarify on &#039;&#039;&#039;dosages&#039;&#039;&#039;, the values mentioned below are rather speculative and most are based on &#039;&#039;&#039;personal experiences&#039;&#039;&#039; or &#039;&#039;&#039;(diy)hrt pages/websites/papers&#039;&#039;&#039;. Therefore it is encouraged to do [[Blood Testing|blood tests]] and if possible, check with an [[Doctors#Ενδοκρινολόγοι|endocrinologist]] (we also suggest [[Doctors]] that can help with such cases), especially if you have any specific &#039;&#039;&#039;health conditions&#039;&#039;&#039;. &lt;br /&gt;
Pricemaps are there to evaluate prices through &#039;&#039;&#039;[https://galinos.gr galinos.gr]&#039;&#039;&#039; (in case something is outdated, look for the green line that says &amp;quot;Λιανική&amp;quot;)&lt;br /&gt;
&lt;br /&gt;
We are open to discussion and actively on-going changes in formatting and contents of this Page and Website (in general). The e-mail address to refer to is &#039;&#039;&#039;fox@diyon.top&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--T:43--&amp;gt;&lt;br /&gt;
== Transfem ==&lt;br /&gt;
Taking Puberty Blockers ([[HRT#Antiandrogens and GNRH Agonists|GNRH Agonists]], e.g: Arvekap) or any Anti Androgen (e.g: Aldactone, Androcur) &#039;&#039;&#039;without [[HRT#Estrogens|Estrogens]]&#039;&#039;&#039; is generally discouraged even during youth transitioning (This is &#039;&#039;&#039;non-definitive&#039;&#039;&#039; for Enby folks)&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--T:44--&amp;gt;&lt;br /&gt;
=== Monotherapy ===&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|+&lt;br /&gt;
!Type&lt;br /&gt;
!Commercial Names&lt;br /&gt;
!Dosage&lt;br /&gt;
!Notes&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
====== Sublingual (E Valerate or Hemihydrate) ======&lt;br /&gt;
|Cyclacur (EV), Estrofem (EH, imported), Trisequens (12 pills 2mg EH, 10 pills norgestrel, 6 pills 1mg EH)&lt;br /&gt;
|&amp;gt;=8-12mg/day&lt;br /&gt;
|While it is possible, even with a smaller dosage (&#039;&#039;&#039;at least 6mg&#039;&#039;&#039;), it&#039;s not that common. Ideally, use your blood tests to &#039;&#039;&#039;minmax&#039;&#039;&#039; your doses.&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
====== Injectable Estradiol Valerate (EV) ======&lt;br /&gt;
|Neofollin (can be ordered from pharmacies near Czechia, or aptekaapo.com &#039;&#039;&#039;but they’re not on hrtcafe&#039;&#039;&#039;, not tested in Greece), Delestrogen (Vial, unavailable), Progynon Depot (Ampules, unavailable), [[File:What-excuse-me.gif|thumb|[[HRT#Other resources|my honest reaction]]]]&lt;br /&gt;
|5-7mg/5 days&lt;br /&gt;
|&lt;br /&gt;
* Due to the large spikes in levels combined with the short [https://en.wikipedia.org/wiki/Biological_half-life half-life] it is not recommended for dosages to surpass the 5 day mark because it may cause menopause symptoms.&lt;br /&gt;
* Branded versions of this medication are not available in greece.&lt;br /&gt;
* The ampules contain a certain mg and do not allow for larger dosages, they are not re-usable. It is recommended to use a vial with a cap.&lt;br /&gt;
* Look for &#039;&#039;&#039;[https://arc-w.nihr.ac.uk/Wordpress/wp-content/uploads/2015/07/Low-dead-space-syringes.png syringe dead space]([[HRT#:~:text=* = It has been mentioned that syringes account for dead space, although that is not 100% certain.|*]])&#039;&#039;&#039;, e.g. if there&#039;s &#039;&#039;&#039;0.05mL&#039;&#039;&#039; remaining after injecting, draw &#039;&#039;&#039;+0.05mL&#039;&#039;&#039; from the vial.&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
====== Injectable Estradiol Cypionate (EC) ======&lt;br /&gt;
|[[File:What-excuse-me.gif|thumb|[[HRT#Other resources|my honest reaction]]]]Depo-Estradiol (US only, unavailable),&lt;br /&gt;
|5-7mg/7 days&lt;br /&gt;
|&lt;br /&gt;
* Look for &#039;&#039;&#039;[https://arc-w.nihr.ac.uk/Wordpress/wp-content/uploads/2015/07/Low-dead-space-syringes.png syringe dead space]([[HRT#:~:text=* = It has been mentioned that syringes account for dead space, although that is not 100% certain.|*]])&#039;&#039;&#039;, e.g. if there&#039;s &#039;&#039;&#039;0.05mL&#039;&#039;&#039; remaining after injecting, draw &#039;&#039;&#039;+0.05mL&#039;&#039;&#039; from the vial.&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
====== Injectable Estradiol Enanthate (EEn) ======&lt;br /&gt;
|[[File:What-excuse-me.gif|thumb|[[HRT#Other resources|my honest reaction]]]]&lt;br /&gt;
|4-7mg/7 days&lt;br /&gt;
7-10mg/10 days (7.2mg usually, depending on the vial, it&#039;s optimal because drawing cents of mL are hard to get right)&lt;br /&gt;
|&lt;br /&gt;
* You can multiply the weekly dosage by 2, which lasts up to 14 days (as much as the [https://en.wikipedia.org/wiki/Biological_half-life half-life] of Enanthate)&lt;br /&gt;
* Look for &#039;&#039;&#039;[https://arc-w.nihr.ac.uk/Wordpress/wp-content/uploads/2015/07/Low-dead-space-syringes.png syringe dead space]([[HRT#:~:text=* = It has been mentioned that syringes account for dead space, although that is not 100% certain.|*]])&#039;&#039;&#039;, e.g. if there&#039;s &#039;&#039;&#039;0.05mL&#039;&#039;&#039; remaining after injecting, draw &#039;&#039;&#039;+0.05mL&#039;&#039;&#039; from the vial.&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
====== Injectable Estradiol Undecylate (EU/EUn) ======&lt;br /&gt;
|[[File:What-excuse-me.gif|thumb|[[HRT#Other resources|my honest reaction]]]]&lt;br /&gt;
|There&#039;s not enough information on dosage. The frequency of those may differ according to the oil used (MCT/Castor oil). Indicative Dosages:&lt;br /&gt;
15-20mg/2 weeks&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--T:45--&amp;gt;&lt;br /&gt;
20-40mg+/4 weeks&lt;br /&gt;
|&lt;br /&gt;
* There&#039;s not enough information on its [[wikipedia:Biological_half-life|half-life]], a higher dosage can be administered that can last up to 20-30 days.&lt;br /&gt;
* [[wikipedia:Intramuscular_injection|IM injections]] last longer so they give better levels during the same period of time per injection.&lt;br /&gt;
* Needs at least 90 days to reach stable levels.&lt;br /&gt;
* Look for &#039;&#039;&#039;[https://arc-w.nihr.ac.uk/Wordpress/wp-content/uploads/2015/07/Low-dead-space-syringes.png syringe dead space]([[HRT#:~:text=* = It has been mentioned that syringes account for dead space, although that is not 100% certain.|*]])&#039;&#039;&#039;, e.g. if there&#039;s &#039;&#039;&#039;0.05mL&#039;&#039;&#039; remaining after injecting, draw &#039;&#039;&#039;+0.05mL&#039;&#039;&#039; from the vial.&lt;br /&gt;
|}&lt;br /&gt;
&#039;&#039;&#039;*&#039;&#039;&#039; = It has been mentioned that syringes account for dead space, although that is not 100% certain.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--T:46--&amp;gt;&lt;br /&gt;
=== Sublingual vs Oral ===&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|+&lt;br /&gt;
!Method&lt;br /&gt;
!Substance&lt;br /&gt;
!Dosage&lt;br /&gt;
!Observations&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
====== Oral ======&lt;br /&gt;
|Estradiol Valerate in pill form (e.g. Cyclacur)&lt;br /&gt;
|&amp;gt;=6mg/day&lt;br /&gt;
(max 10mg as per Dr. Powers)&lt;br /&gt;
|It is recommended that doses are taken separately on set time intervals during the day for more stable estradiol levels, e.g. for a 6mg dose you would take 2mg per 8 hours. By the oral route the active substance is metabolized by the liver and part of it is converted to estrone (E1), which has much less feminizing effects than estradiol (E2) so the desired effect is essentially prevented. The bioavailability of estradiol by oral administration is very low (~5%) and usually lower levels of E2 are observed in blood tests than other methods of administration. [anecdotal apo to server, wikipedia kai tttt - correct/expand?] It is also necessary to administer anti-androgens to reduce testosterone levels to the female range.&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
====== Sublingual ======&lt;br /&gt;
|Estradiol Valerate in pill form (e.g. Cyclacur)&lt;br /&gt;
|&amp;gt;=4mg/day&lt;br /&gt;
|It is recommended that doses are taken separately on set time intervals during the day for more stable estradiol levels, e.g. for a 6mg dose you would take 2mg per 8 hours. The sublingual way bypasses estradiol metabolism by the liver and has about 5 times the estradiol bioavailability of the oral way. This way, estradiol levels have greater range than orally (higher peak lower bottom), in oral they remain higher for ~12 hours while sublingually they go away after 3-4 hours [idk if honscience the study is from 2005 on cis women]&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== Vial info === &amp;lt;!--T:47--&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--T:48--&amp;gt;&lt;br /&gt;
=== Medications ===&lt;br /&gt;
For cyclacur: &#039;&#039;&#039;take only the white pills, the brown pills are Norgestrel which have 0.5mg of estradiol but has an androgenic effect and may also cause other side effects&#039;&#039;&#039;. &lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--T:49--&amp;gt;&lt;br /&gt;
==== Estrogens ====&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|+&lt;br /&gt;
!Brand Name(s)&lt;br /&gt;
!Substance&lt;br /&gt;
!Form&lt;br /&gt;
!Method of Administration&lt;br /&gt;
!Cost&lt;br /&gt;
!Cost with Healthcare Coverage&lt;br /&gt;
!Dosage&lt;br /&gt;
!Safety&lt;br /&gt;
!Notes&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
====== [https://www.galinos.gr/web/drugs/main/drugs/Cyclacur Cyclacur] ======&lt;br /&gt;
|Estradiol Valerate (EV)&lt;br /&gt;
|Pill tablet&lt;br /&gt;
|Orally or sublingually&lt;br /&gt;
|2.01€ for 11 pills ([https://www.galinos.gr/service/drugs/drawPackagePrice/1198 Pricemap])&lt;br /&gt;
~130.8-328.€/year&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--T:50--&amp;gt;&lt;br /&gt;
~10.9-27.4€/month&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--T:51--&amp;gt;&lt;br /&gt;
Prices are indicative, the cost depends on the dosage.&lt;br /&gt;
| -&lt;br /&gt;
|6mg-10mg/day (according to Dr. Will Powers)&lt;br /&gt;
4mg-8mg/day (according to Greek Endocrinologists)&lt;br /&gt;
|A&lt;br /&gt;
|&lt;br /&gt;
* &#039;&#039;&#039;Only white pills are used.&#039;&#039;&#039; Brown pills do have a bit of estradiol but arent taken due to other side effects.&lt;br /&gt;
* You need antiandrogens or GNRH antagonists if you haven&#039;t had an orchiectomy.&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
====== Progynova ======&lt;br /&gt;
|Estradiol Valerate (EV)&lt;br /&gt;
|Pill tablet&lt;br /&gt;
|Orally or sublingually&lt;br /&gt;
|~22€ for 72 pills of 1 mg or ~32€ for 72 pills of 2 mg&lt;br /&gt;
Prices are indicative, the cost depends on the dosage.&lt;br /&gt;
| -&lt;br /&gt;
|4mg-8mg/day&lt;br /&gt;
|A&lt;br /&gt;
|&lt;br /&gt;
* There is no reason to use it in Greece since Cyclacur is available in Greek pharmacies.&lt;br /&gt;
* You need antiandrogens or GNRH antagonists if you haven&#039;t had an orchiectomy.&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
====== Estrofem, Estrifam (german brand name), [https://www.galinos.gr/web/drugs/main/drugs/trisequens Trisequens] ======&lt;br /&gt;
|Estradiol Hemihydrate&lt;br /&gt;
|Pill tablet&lt;br /&gt;
|Orally or sublingually&lt;br /&gt;
|~30€ for 28 pills of 2 mg without shipping costs.&lt;br /&gt;
Prices are indicative, the cost depends on the dosage.&lt;br /&gt;
| -&lt;br /&gt;
|4mg-8mg/day&lt;br /&gt;
|A&lt;br /&gt;
|&lt;br /&gt;
* There is no reason to use it in Greece since Cyclacur is available in Greek pharmacies.&lt;br /&gt;
* You need antiandrogens or GNRH antagonists if you haven&#039;t had an orchiectomy.&lt;br /&gt;
* Trisequens, while being available in Greece, is odd to take with 12 pills being 2mg EH, 10 norgestrel, and 6 1mg EH, for a much higher price than [[HRT#Cyclacur|Cyclacur]].&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
====== [https://www.galinos.gr/web/drugs/main/drugs/Dermestril Dermestril] ======&lt;br /&gt;
|Estradiol Hemihydrate&lt;br /&gt;
|Patch&lt;br /&gt;
|Trans-dermally&lt;br /&gt;
|44€ for 24 patches of 100mcg&lt;br /&gt;
~15€ for 8 patches of 50mcg&lt;br /&gt;
| -&lt;br /&gt;
|50mcg/3.5 days (when starting off)&lt;br /&gt;
100mcg/3.5 days (whenever your e2 levels are stable)&lt;br /&gt;
|A&lt;br /&gt;
|&lt;br /&gt;
* &#039;&#039;&#039;If you have no idea how to apply patches watch this:&#039;&#039;&#039; [https://youtu.be/tXGIYWPqdpI?si=O0dlE19pq0ic0PZP Demonstrational Video]&lt;br /&gt;
* You need antiandrogens or GNRH antagonists if you haven&#039;t had an orchiectomy.&lt;br /&gt;
* 100mcg patches can be cut into 2 if needed.&lt;br /&gt;
|-&lt;br /&gt;
|Neofollin (can be ordered from pharmacies near Czechia, not tested in Greece), Delestrogen (Vial, unavailable), Progynon Depot (Ampules, unavailable)&lt;br /&gt;
|&lt;br /&gt;
====== Estradiol Valerate (EV) ======&lt;br /&gt;
|Injectable&lt;br /&gt;
|Subcutaneous or Intramuscular&lt;br /&gt;
|80€/year (including shipping costs, syringes and alcohol swabs)&lt;br /&gt;
| -&lt;br /&gt;
|5-7mg/5 days (monotherapy)&lt;br /&gt;
4-5mg/7 days (only in combination with an antiandrogen or GNRH agonist)&lt;br /&gt;
|A+&lt;br /&gt;
|&lt;br /&gt;
* It can be used without antiandrogens or GNRH agonists in ([[HRT#Μονοθεραπεία|Monotherapy]]) by increasing the dosage.&lt;br /&gt;
|-&lt;br /&gt;
|Depo-Estradiol (US only, unavailable)&lt;br /&gt;
|&lt;br /&gt;
====== Estradiol Cypionate (EC) ======&lt;br /&gt;
|Injectable&lt;br /&gt;
|Subcutaneous or Intramuscular&lt;br /&gt;
|~70-80€/year (not including shipping costs, syringes and alcohol swabs)&lt;br /&gt;
| -&lt;br /&gt;
|5-7mg/7 days&lt;br /&gt;
(&#039;&#039;&#039;mono dose&#039;&#039;&#039;)&lt;br /&gt;
? (TBD/&#039;&#039;&#039;dose with AA&#039;&#039;&#039;)&lt;br /&gt;
|?&lt;br /&gt;
|&lt;br /&gt;
* It can be used without antiandrogens or GNRH agonists in ([[HRT#Μονοθεραπεία|Monotherapy]])&lt;br /&gt;
|-&lt;br /&gt;
| -&lt;br /&gt;
|&lt;br /&gt;
====== Estradiol Enanthate (EEn) ======&lt;br /&gt;
|Injectable&lt;br /&gt;
|Subcutaneous or Intramuscular&lt;br /&gt;
|80€/year (including shipping costs, syringes and alcohol swabs)&lt;br /&gt;
| -&lt;br /&gt;
|2.5mg-7mg/7 days&lt;br /&gt;
(usual dosage: 4mg/7days)&lt;br /&gt;
|A+&lt;br /&gt;
|&lt;br /&gt;
* It can be used without antiandrogens or GNRH agonists in ([[HRT#Μονοθεραπεία|Monotherapy]]) by increasing the dosage.&lt;br /&gt;
|-&lt;br /&gt;
| -&lt;br /&gt;
|&lt;br /&gt;
====== Estradiol Undecylate (EU, EUn) ======&lt;br /&gt;
|Injectable&lt;br /&gt;
|Subcutaneous or Intramuscular&lt;br /&gt;
|130€/year (including shipping costs, syringes and alcohol swabs)&lt;br /&gt;
| -&lt;br /&gt;
|15-20mg/2 weeks&lt;br /&gt;
20-40mg+/4 weeks&lt;br /&gt;
|A+&lt;br /&gt;
|&lt;br /&gt;
* There&#039;s not much info on dosages, usually seen in [[HRT#Μονοθεραπεία|monotherapy]].&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--T:52--&amp;gt;&lt;br /&gt;
==== Anti-Androgens and GNRH Agonists ====&lt;br /&gt;
These should &#039;&#039;&#039;not&#039;&#039;&#039; be taken sublingually.&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|+&lt;br /&gt;
!Brand Name(s)&lt;br /&gt;
!Substance&lt;br /&gt;
!Cost&lt;br /&gt;
!Cost with Healthcare Coverage&lt;br /&gt;
!Dosage&lt;br /&gt;
!Safety&lt;br /&gt;
!Form&lt;br /&gt;
!Type&lt;br /&gt;
!Notes&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
====== [https://www.galinos.gr/web/drugs/main/drugs/Androcur Androcur] ======&lt;br /&gt;
|Cyproterone Acetate (CPA) is also referred to as cypro&lt;br /&gt;
|21.58€/50mg * 50 pills &lt;br /&gt;
19.7-31.5€/year&lt;br /&gt;
&lt;br /&gt;
([https://www.galinos.gr/service/drugs/drawPackagePrice/8023 Pricemap])&lt;br /&gt;
|?&lt;br /&gt;
|12.5mg/2 days- 10mg/day&lt;br /&gt;
&#039;&#039;&#039;Larger doses shouldn&#039;t be administered&#039;&#039;&#039;&lt;br /&gt;
|C&lt;br /&gt;
|Pill tablet&lt;br /&gt;
|Progestin (Steroidal antiandrogen)&lt;br /&gt;
Stops testosterone production.&lt;br /&gt;
|The max recommended dosage is 10mg/day . Monitoring of prolactin levels is recommended through [[Blood Testing#MTF|blood testing]].&lt;br /&gt;
&#039;&#039;&#039;Many doctors give overdoses of 50 mg/day. Cyproterone is a strong anti-androgen and testosterone suppression is possible with lower doses. A change of doctor is recommended.&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--T:53--&amp;gt;&lt;br /&gt;
[[wikipedia:Side_effects_of_cyproterone_acetate|Side Effects]]:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--T:54--&amp;gt;&lt;br /&gt;
* Benign brain tumor.&lt;br /&gt;
* In rare cases, liver damage.&lt;br /&gt;
* Vitamin B12 deficiency.&lt;br /&gt;
* Breast cancer.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--T:55--&amp;gt;&lt;br /&gt;
Testosterone suppression can be achieved with even lower doses, however a 50 mg pill is difficult to cut into pieces of less than 12.5 mg even with a pill cutter.&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
====== [https://www.galinos.gr/web/drugs/main/drugs/Bicalut Bicalut] ======&lt;br /&gt;
|Bicalutamide (aka: bica)&lt;br /&gt;
|29.10 euro/30 pills&lt;br /&gt;
29.10 euro/month&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--T:56--&amp;gt;&lt;br /&gt;
~350 euro/year&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
([https://www.galinos.gr/service/drugs/drawPackagePrice/11120 Pricemap])&lt;br /&gt;
|6.77 euro/month (28 tabs)&lt;br /&gt;
~95 euro/year&lt;br /&gt;
|50mg/day&lt;br /&gt;
|A-&lt;br /&gt;
|Pill/Tablet&lt;br /&gt;
|Androgen receptor antagonist (Nonsteroidal antiandrogen)&lt;br /&gt;
Blocks absorption of all androgens (including testosterone)&lt;br /&gt;
|&#039;&#039;&#039;Serious negative interactions can be noted if combined with other anti-androgens and GNRH agonists (except progesterone)&#039;&#039;&#039;&lt;br /&gt;
&#039;&#039;&#039;Very rare&#039;&#039;&#039; chance for recoverable and non-fatal liver damage for people with a certain rare mutation.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--T:57--&amp;gt;&lt;br /&gt;
Most of the effects listen in the instruction manual are scaremongering. (it lists a very high chance of liver issues when they are actually very rare, and also lists photosensitivity, which if it even occurs at all, it should be quite rare. We are aware of nobody who had a negative interction between alexandrite laser hair removal and bicalutamide).&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--T:58--&amp;gt;&lt;br /&gt;
Note that bicalutamide, unlike most other anti-androgens, &#039;&#039;&#039;does not&#039;&#039;&#039; lower testosterone levels, in fact they usually rise as the body responds to testosterone receptors being inhibited. Do not be alarmed if you notice an increase of testosterone in your blood tests.&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
====== [https://www.galinos.gr/web/drugs/main/drugs/Arvekap Arvekap] ======&lt;br /&gt;
|Triptorelin&lt;br /&gt;
| -&lt;br /&gt;
|~200/year?&lt;br /&gt;
|&lt;br /&gt;
|A?&lt;br /&gt;
|Injection&lt;br /&gt;
|GNRH Agonist&lt;br /&gt;
(indirectly) Stops testosterone AND estrogen production&lt;br /&gt;
|Also a puberty blocker&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
====== [https://www.galinos.gr/web/drugs/main/drugs/aldactone Aldactone] ======&lt;br /&gt;
|Spironolactone&lt;br /&gt;
|5.19 euro/20 tabs (100mg)&lt;br /&gt;
([https://www.galinos.gr/service/drugs/drawPackagePrice/148 Pricemap])&lt;br /&gt;
|?&lt;br /&gt;
|50mg-200mg/day&lt;br /&gt;
|B-C&lt;br /&gt;
|Tablet&lt;br /&gt;
|Antimineralocorticoid/MCRA&lt;br /&gt;
|Very inefficient, makes you pee, it&#039;s a medication for blood pressure&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
|Flutamide&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|F---&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|Only in this table as an example to avoid&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
==== Miscellaneous/Progesterone ====&lt;br /&gt;
Progesterone falls under this category, as it is not quite the same as other Anti-Androgens, the mention of Progesterone in this title is necessary in order to reduce confusion and questions such as &amp;quot;Where is progesterone?&amp;quot; and &amp;quot;Did you remove prog from the page?&amp;quot;.&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
!Brand Name(s)&lt;br /&gt;
!Substance&lt;br /&gt;
!Cost&lt;br /&gt;
!Cost with Healthcare Coverage&lt;br /&gt;
!Dosage&lt;br /&gt;
!Safety&lt;br /&gt;
!Form&lt;br /&gt;
!Type&lt;br /&gt;
!Notes&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
====== [https://www.galinos.gr/web/drugs/main/drugs/utrogestran Utrogestan] ======&lt;br /&gt;
|Progesterone (P4) it is also referred to as prog&lt;br /&gt;
|5.83 euro/30 caps (100mg)&lt;br /&gt;
8.08 euro/15 caps (200mg)&lt;br /&gt;
([https://www.galinos.gr/service/drugs/drawPackagePrice/7619 Pricemap])&lt;br /&gt;
|?&lt;br /&gt;
|100mg daily (rectal administration)&lt;br /&gt;
or&lt;br /&gt;
200mg daily (rectal administration)&lt;br /&gt;
|A&lt;br /&gt;
|Capsule&lt;br /&gt;
|Stops testosterone production.&lt;br /&gt;
|There is not much confirmed information about progesterone.&lt;br /&gt;
It can also be taken orally but the absorption rate is very low.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--T:59--&amp;gt;&lt;br /&gt;
Anecdotal claims:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--T:60--&amp;gt;&lt;br /&gt;
* Helps with breast development and with feminization in general.&lt;br /&gt;
* Can be given after one year of estradiol.&lt;br /&gt;
* Suggested to be given after the individual reaches Tanner stage 3.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--T:61--&amp;gt;&lt;br /&gt;
It can have androgenic or other (non-serious, recoverable) effects for some individuals - in particular it can be converted to DHT by the body even in combination with dutasteride or bicalutamide.&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--T:62--&amp;gt;&lt;br /&gt;
==== Other anti-androgens (optional) ====&lt;br /&gt;
These are used to block conversion of other androgens to DHT (which causes hair loss (hair) and body hair growth). They aren&#039;t general use Anti-Androgens.&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
!Brand Name(s)&lt;br /&gt;
!Substance&lt;br /&gt;
!Cost&lt;br /&gt;
!Cost with Healthcare Coverage&lt;br /&gt;
!Dosage&lt;br /&gt;
!Safety&lt;br /&gt;
!Form&lt;br /&gt;
!Type&lt;br /&gt;
!Notes&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
====== [https://www.galinos.gr/web/drugs/main/packages/26485 Dastidem], [https://www.galinos.gr/web/drugs/main/packages/25557 Rafuster], [https://www.galinos.gr/web/drugs/main/packages/25893 Duaride], [https://www.galinos.gr/web/drugs/main/packages/25894 Dustezor] ======&lt;br /&gt;
|Dutasteride&lt;br /&gt;
|7.90€/30 caps&lt;br /&gt;
|~6€/30 caps&lt;br /&gt;
|0.5mg/day (?/TBD)&lt;br /&gt;
|A-&lt;br /&gt;
|Capsule&lt;br /&gt;
| -&lt;br /&gt;
|High effectiveness.&lt;br /&gt;
|-&lt;br /&gt;
| -&lt;br /&gt;
|Finasteride&lt;br /&gt;
| -&lt;br /&gt;
| -&lt;br /&gt;
| -&lt;br /&gt;
|F&lt;br /&gt;
| -&lt;br /&gt;
| -&lt;br /&gt;
|Effectiveness is none to medium (Just take Dutasteride - will not stop conversion of Progesterone to DHT)&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--T:63--&amp;gt;&lt;br /&gt;
=== Blood Levels ===&lt;br /&gt;
&lt;br /&gt;
==== Refer to the [[Blood Testing]] page. ====&amp;lt;!--T:81--&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Transmasc ==&lt;br /&gt;
&lt;br /&gt;
=== Medications ===&lt;br /&gt;
&lt;br /&gt;
==== Testosterone ====&lt;br /&gt;
[https://www.galinos.gr/web/drugs/main/substances/testosterone/marketing Galinos.gr&#039;s testosterone availability page]&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|+&lt;br /&gt;
!Brand Name(s)&lt;br /&gt;
!Substance&lt;br /&gt;
!Form&lt;br /&gt;
!Method of Administration&lt;br /&gt;
!Cost&lt;br /&gt;
!Cost with Healthcare Coverage&lt;br /&gt;
!Dosage&lt;br /&gt;
!Safety&lt;br /&gt;
!Notes&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
====== [https://www.galinos.gr/web/drugs/main/packages/4929 Norma] ======&lt;br /&gt;
|Testosterone Enanthate&lt;br /&gt;
|Injection/Ampule&lt;br /&gt;
|Subcutaneous or Intramuscular&lt;br /&gt;
|17.67€/ampule &lt;br /&gt;
([https://www.galinos.gr/service/drugs/drawPackagePrice/4929 Pricemap])&lt;br /&gt;
|?&lt;br /&gt;
|?&lt;br /&gt;
|?&lt;br /&gt;
| -&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
====== [https://www.galinos.gr/web/drugs/main/packages/21943 Nebido] ======&lt;br /&gt;
|Testosterone Undecanoate&lt;br /&gt;
|Injection/Vial&lt;br /&gt;
|Intramuscular&lt;br /&gt;
|100.37€/vial&lt;br /&gt;
([https://www.galinos.gr/service/drugs/drawPackagePrice/21943 Pricemap])&lt;br /&gt;
|~32.52€/vial (you pay 25%)&lt;br /&gt;
|1 vial (1000mg/4mL)/10-20 weeks&lt;br /&gt;
|A&lt;br /&gt;
|As a starting dose &#039;&#039;&#039;after a year of HRT&#039;&#039;&#039;, you could also consider:&lt;br /&gt;
&lt;br /&gt;
* Instead of injecting one vial per 20 weeks, you do half every 10-12 weeks, however nothing could be sourced to support this. Though logically it could make sense as a practice.&lt;br /&gt;
* Do a test at 6 weeks after starting, if T is too high don&#039;t take the 2nd dose, if it&#039;s not you can take the 2nd and then test 2 weeks before every other dose.&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
====== [https://www.galinos.gr/web/drugs/main/packages/15739 Tostran] ======&lt;br /&gt;
|Testogel&lt;br /&gt;
|Gel&lt;br /&gt;
|Trans-dermally&lt;br /&gt;
|&#039;&#039;&#039;Starting dose&#039;&#039;&#039;&lt;br /&gt;
&amp;lt;!--T:82--&amp;gt;&lt;br /&gt;
* 35.54€/2 months&lt;br /&gt;
* 213.24€/year&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--T:83--&amp;gt;&lt;br /&gt;
&#039;&#039;&#039;30 mg dose&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--T:84--&amp;gt;&lt;br /&gt;
* 35.54€/40 days&lt;br /&gt;
* ~324.30€/year&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--T:85--&amp;gt;&lt;br /&gt;
&#039;&#039;&#039;40 mg dose&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--T:73--&amp;gt;&lt;br /&gt;
* 35.54€/30 days&lt;br /&gt;
* 426.48€/year&lt;br /&gt;
([https://www.galinos.gr/service/drugs/drawPackagePrice/15739 Pricemap])&lt;br /&gt;
|35.54€ -&amp;gt; 8.89€&lt;br /&gt;
|20mg/day (starting dose)&lt;br /&gt;
30-40mg/day&lt;br /&gt;
|A&lt;br /&gt;
|&lt;br /&gt;
* 1 pump of Tostran (&#039;&#039;&#039;0.5g&#039;&#039;&#039;) delivers 10 mg of T.&lt;br /&gt;
* 2 pumps of Tostran are 1 pump of Testogel (20.25mg of T)&lt;br /&gt;
* Can cause skin reactions.&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
==== GNRH Agonists ====&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
!Brand Name(s)&lt;br /&gt;
!Substance&lt;br /&gt;
! Cost&lt;br /&gt;
!Cost with Healthcare Coverage&lt;br /&gt;
!Dosage&lt;br /&gt;
!Safety&lt;br /&gt;
!Form&lt;br /&gt;
!Type&lt;br /&gt;
!Notes&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
====== [https://www.galinos.gr/web/drugs/main/drugs/Arvekap Arvekap] ======&lt;br /&gt;
|Triptorelin&lt;br /&gt;
| -&lt;br /&gt;
|~200/year?&lt;br /&gt;
|&lt;br /&gt;
|A?&lt;br /&gt;
|Injection&lt;br /&gt;
|GNRH Agonist&lt;br /&gt;
(indirectly) Stops testosterone AND estrogen production&lt;br /&gt;
|Also a puberty blocker&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
==== Other anti-androgens (optional) ====&lt;br /&gt;
These are used to block conversion of other androgens to DHT (which causes hair loss (hair) and body hair growth). They aren&#039;t general use Anti-Androgens.&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
!Brand Name(s)&lt;br /&gt;
!Substance&lt;br /&gt;
!Cost&lt;br /&gt;
!Cost with Healthcare Coverage&lt;br /&gt;
!Dosage&lt;br /&gt;
!Safety&lt;br /&gt;
!Form&lt;br /&gt;
!Type&lt;br /&gt;
!Notes&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
====== [https://www.galinos.gr/web/drugs/main/packages/26485 Dastidem], [https://www.galinos.gr/web/drugs/main/packages/25557 Rafuster], [https://www.galinos.gr/web/drugs/main/packages/25893 Duaride], [https://www.galinos.gr/web/drugs/main/packages/25894 Dustezor] ======&lt;br /&gt;
|Dutasteride&lt;br /&gt;
|7.90€/30 caps&lt;br /&gt;
|~6€/30 caps&lt;br /&gt;
|0.5mg/day (?/TBD)&lt;br /&gt;
|A-&lt;br /&gt;
|Capsule&lt;br /&gt;
| -&lt;br /&gt;
|High effectiveness. &lt;br /&gt;
Not to be confused with proper Anti-Androgens.&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== Nonbinary hrt *under construction* ==&lt;br /&gt;
&lt;br /&gt;
=== !!! disclaimer-warning about potential issues !!! ===&lt;br /&gt;
&lt;br /&gt;
=== General outline of nb hrt for amab and afab ===&lt;br /&gt;
&lt;br /&gt;
=== Medications ===&lt;br /&gt;
&lt;br /&gt;
==== Selective Estrogen Receptor Modulators (SERMs) ====&lt;br /&gt;
&lt;br /&gt;
* Tamoxifen is a selective estrogen receptor modulator (SERM). In some tissues such as the brain it activates estrogen receptors, which may help reduce dysphoria. In breast tissue it antagonizes estrogen receptors, preventing the formation of breast tissue if desired. There is some evidence that Tamoxifen inhibits memory, though the effects of taking it alongside regular estrogen are undocumented. Tamoxifen can cause cognitive dysfunction and increase your risk of stroke and pulmonary embolism. Tamoxifen may also be taken alongside 17β-estradiol, more research is needed. In this combination, estradiol should still have its effects (combating dysphoria in the brain, redistribution of body fat, smoother skin etc.) while tamoxifen prevents the growth of breast tissue.&lt;br /&gt;
* Raloxifene is another SERM. It is an estrogen receptor antagonist in breast tissue. It is an estrogen receptor agonist in bone and can be used to prevent osteoporosis. Raloxifene has been shown to reduce ERα expression in breast tissue in premenopausal women. As the synthesis of progesterone receptors (PR) is estrogen-regulated, raloxifene also decreases the expression of PR. Additionally, it was shown to decrease the presence of Ki-67, a biomarker for cell proliferation, in breast tissue of premenopausal women. As a result, it can be used to treat gynecomastia, and has been shown effective in reducing breast size in those with the condition. Raloxifene may promote feminine fat distribution: in a study on 56-66 year old postmenopausal women, there was an increase in fat in the legs and buttocks and a decrease in fat in the abdomen and trunk after 1 year on 60 mg/day raloxifene. It is not yet known how pronounced this effect is, as there have been no comparisons of body fat distribution between raloxifene and estradiol. Raloxifene may increase the risk of stroke and pulmonary embolism.&lt;br /&gt;
* Afimoxifene is a topical SERM and the primary metabolite of tamoxifen.&lt;br /&gt;
&lt;br /&gt;
==== Anti-androgens ====&lt;br /&gt;
&lt;br /&gt;
==== Bicalutamide ====&lt;br /&gt;
Bicalutamide is an  anti-androgen which is used mainly in the treatment of prostate cancer but can also be used to treat hirsutism, or as a component of hormone therapy in feminizing HRT, among other uses. It is nonsteroidal anti-androgen and a selective/pure antagonist of the androgen receptor. It has no other hormonal activity and does not lower androgen levels. Bicalutamide crosses the blood-brain barrier and blocks the effects of testosterone and dihydrotestosterone (DHT) both in the body and in the brain. While it has been observed that bicalutamide does not cross the blood-brain barrier in rats and dogs, this was found not to be the case in humans&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
In general Ralox seems the best idea based on overall effectiveness and less severe side effects compared to other SERMs. Most people on this kind of MtNB hrt seem to be using a combination of ralox (in place of estradiol) and bica [expand this + powers e1s schizo stuff?]&lt;br /&gt;
&lt;br /&gt;
== Legal ==&lt;br /&gt;
It is legal to buy anything without a diagnosis or a prescription (off the counter - OTC), Testosterone can be hit or miss, look for [https://www.galinos.gr/web/drugs/main/packages/15739 Tostran] (Testogel) or [https://www.galinos.gr/web/drugs/main/packages/4929 TEn] (Testosterone Enanthate/Norma, injections).  &lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--T:86--&amp;gt;&lt;br /&gt;
You can also check the &#039;&#039;&#039;[https://diyon.top/map Trans-Friendly Pharmacies Map]&#039;&#039;&#039; for any pharmacies near you (this goes for both Transfem and Transmasc HRT). &lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--T:75--&amp;gt;&lt;br /&gt;
There is no minimum or maximum legal age for someone to start HRT. &lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--T:76--&amp;gt;&lt;br /&gt;
It is not legally mandatory for someone to have a diagnosis by a psychiatrist in order to medically transition.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--T:77--&amp;gt;&lt;br /&gt;
There is no legally mandatory time restriction for a psychiatrist to monitor you before diagnosing you.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--T:78--&amp;gt;&lt;br /&gt;
You don&#039;t legally need to be on HRT in order to be exempt from the [[army]], change your [[Legal|legal sex]], or to have a [[surgery]].&lt;br /&gt;
&lt;br /&gt;
== Other resources == &amp;lt;!--T:79--&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--T:80--&amp;gt;&lt;br /&gt;
* Simulator: https://www.estrannai.se/&lt;br /&gt;
* https://transfemscience.org/ (note, the authors of this site disagree with a lot of what they are saying, regardless, it is still interesting)&lt;br /&gt;
** Introduction to Hormone Therapy for Transfeminine People: https://transfemscience.org/articles/transfem-intro/&lt;br /&gt;
** Older simulator: https://transfemscience.org/misc/injectable-e2-simulator/&lt;br /&gt;
** Dosage calculator: https://transfemscience.org/misc/injectable-dose-vol-conc-conv/&lt;br /&gt;
* https://diyhrt.wiki/ (alt link: https://anarch.cc/transfeminine-diy-hrt-the-ultimate-guide-2/)&lt;br /&gt;
* https://hrtcafe.net/&lt;br /&gt;
* ?? https://hrt.coffee/&lt;br /&gt;
* https://www.reddit.com/r/TransDIY/&lt;br /&gt;
* https://www.reddit.com/r/TransfemScience/&lt;br /&gt;
* https://groups.io/g/MTFHRT/wiki/29602 (alt link: https://anarch.cc/mtf-hrt-ultimate-diy/)&lt;br /&gt;
* https://hrt.cat/ - info for making your own (you will probably not need it - version 1.0: https://hrtcafe.net/hrtcat/)&lt;br /&gt;
* https://archive.ph/uQb8g (alt link: https://anarch.cc/making-your-own-injections/, as above)&lt;br /&gt;
* https://crimethinc.com/2022/12/15/producing-transdermal-estrogen-a-do-it-yourself-guide (alt link: https://anarch.cc/producing-transdermal-estrogen-a-do-it-yourself-guide/, as above)&lt;br /&gt;
* https://archive.ph/cpy7k (alt link: https://anarch.cc/homebrewing-hormones-mtf-guide/, as above)&lt;br /&gt;
&amp;lt;/translate&amp;gt;&lt;/div&gt;</summary>
		<author><name>Goblinmoder</name></author>
	</entry>
	<entry>
		<id>https://wiki.diyon.top/index.php?title=HRT&amp;diff=999</id>
		<title>HRT</title>
		<link rel="alternate" type="text/html" href="https://wiki.diyon.top/index.php?title=HRT&amp;diff=999"/>
		<updated>2025-04-17T11:40:19Z</updated>

		<summary type="html">&lt;p&gt;Goblinmoder: fixed disclaimer&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{#seo:&lt;br /&gt;
|title_mode=replace&lt;br /&gt;
|title=HRT&lt;br /&gt;
|description=We are open to discussion and actively on-going changes in formatting and contents of this Page and Website (in general). The e-mail address to refer to is fox@diyon.top&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
&amp;lt;languages/&amp;gt;&lt;br /&gt;
&amp;lt;translate&amp;gt;&lt;br /&gt;
&amp;lt;!--T:41--&amp;gt;&lt;br /&gt;
After around a month on HRT some of your ranges in your [[Blood Testing|blood test]] should be within desired ranges.&lt;br /&gt;
&lt;br /&gt;
== Disclaimer ==&lt;br /&gt;
 To clarify on &#039;&#039;&#039;dosages&#039;&#039;&#039;, the values mentioned below are rather speculative and most are based on &#039;&#039;&#039;personal experiences&#039;&#039;&#039; or &#039;&#039;&#039;(diy)hrt pages/websites/papers&#039;&#039;&#039;. Therefore it is encouraged to do [[Blood Testing|blood tests]] and if possible, check with an [[Doctors#Ενδοκρινολόγοι|endocrinologist]] (we also suggest [[Doctors]] that can help with such cases), especially if you have any specific &#039;&#039;&#039;health conditions&#039;&#039;&#039;. &lt;br /&gt;
Pricemaps are there to evaluate prices through &#039;&#039;&#039;[https://galinos.gr galinos.gr]&#039;&#039;&#039; (in case something is outdated, look for the green line that says &amp;quot;Λιανική&amp;quot;)&lt;br /&gt;
&lt;br /&gt;
We are open to discussion and actively on-going changes in formatting and contents of this Page and Website (in general). The e-mail address to refer to is &#039;&#039;&#039;fox@diyon.top&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--T:43--&amp;gt;&lt;br /&gt;
== Transfem ==&lt;br /&gt;
Taking Puberty Blockers ([[HRT#Antiandrogens and GNRH Agonists|GNRH Agonists]], e.g: Arvekap) or any Anti Androgen (e.g: Aldactone, Androcur) &#039;&#039;&#039;without [[HRT#Estrogens|Estrogens]]&#039;&#039;&#039; is generally discouraged even during youth transitioning (This is &#039;&#039;&#039;non-definitive&#039;&#039;&#039; for Enby folks)&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--T:44--&amp;gt;&lt;br /&gt;
=== Monotherapy ===&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|+&lt;br /&gt;
!Type&lt;br /&gt;
!Commercial Names&lt;br /&gt;
!Dosage&lt;br /&gt;
!Notes&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
====== Sublingual (E Valerate or Hemihydrate) ======&lt;br /&gt;
|Cyclacur (EV), Estrofem (EH, imported), Trisequens (12 pills 2mg EH, 10 pills norgestrel, 6 pills 1mg EH)&lt;br /&gt;
|&amp;gt;=8-12mg/day&lt;br /&gt;
|While it is possible, even with a smaller dosage (&#039;&#039;&#039;at least 6mg&#039;&#039;&#039;), it&#039;s not that common. Ideally, use your blood tests to &#039;&#039;&#039;minmax&#039;&#039;&#039; your doses.&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
====== Injectable Estradiol Valerate (EV) ======&lt;br /&gt;
|Neofollin (can be ordered from pharmacies near Czechia, or aptekaapo.com &#039;&#039;&#039;but they’re not on hrtcafe&#039;&#039;&#039;, not tested in Greece), Delestrogen (Vial, unavailable), Progynon Depot (Ampules, unavailable), [[File:What-excuse-me.gif|thumb|[[HRT#Other resources|my honest reaction]]]]&lt;br /&gt;
|5-7mg/5 days&lt;br /&gt;
|&lt;br /&gt;
* Due to the large spikes in levels combined with the short [https://en.wikipedia.org/wiki/Biological_half-life half-life] it is not recommended for dosages to surpass the 5 day mark because it may cause menopause symptoms.&lt;br /&gt;
* Branded versions of this medication are not available in greece.&lt;br /&gt;
* The ampules contain a certain mg and do not allow for larger dosages, they are not re-usable. It is recommended to use a vial with a cap.&lt;br /&gt;
* Look for &#039;&#039;&#039;[https://arc-w.nihr.ac.uk/Wordpress/wp-content/uploads/2015/07/Low-dead-space-syringes.png syringe dead space]([[HRT#:~:text=* = It has been mentioned that syringes account for dead space, although that is not 100% certain.|*]])&#039;&#039;&#039;, e.g. if there&#039;s &#039;&#039;&#039;0.05mL&#039;&#039;&#039; remaining after injecting, draw &#039;&#039;&#039;+0.05mL&#039;&#039;&#039; from the vial.&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
====== Injectable Estradiol Cypionate (EC) ======&lt;br /&gt;
|[[File:What-excuse-me.gif|thumb|[[HRT#Other resources|my honest reaction]]]]Depo-Estradiol (US only, unavailable),&lt;br /&gt;
|5-7mg/7 days&lt;br /&gt;
|&lt;br /&gt;
* Look for &#039;&#039;&#039;[https://arc-w.nihr.ac.uk/Wordpress/wp-content/uploads/2015/07/Low-dead-space-syringes.png syringe dead space]([[HRT#:~:text=* = It has been mentioned that syringes account for dead space, although that is not 100% certain.|*]])&#039;&#039;&#039;, e.g. if there&#039;s &#039;&#039;&#039;0.05mL&#039;&#039;&#039; remaining after injecting, draw &#039;&#039;&#039;+0.05mL&#039;&#039;&#039; from the vial.&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
====== Injectable Estradiol Enanthate (EEn) ======&lt;br /&gt;
|[[File:What-excuse-me.gif|thumb|[[HRT#Other resources|my honest reaction]]]]&lt;br /&gt;
|4-7mg/7 days&lt;br /&gt;
7-10mg/10 days (7.2mg usually, depending on the vial, it&#039;s optimal because drawing cents of mL are hard to get right)&lt;br /&gt;
|&lt;br /&gt;
* You can multiply the weekly dosage by 2, which lasts up to 14 days (as much as the [https://en.wikipedia.org/wiki/Biological_half-life half-life] of Enanthate)&lt;br /&gt;
* Look for &#039;&#039;&#039;[https://arc-w.nihr.ac.uk/Wordpress/wp-content/uploads/2015/07/Low-dead-space-syringes.png syringe dead space]([[HRT#:~:text=* = It has been mentioned that syringes account for dead space, although that is not 100% certain.|*]])&#039;&#039;&#039;, e.g. if there&#039;s &#039;&#039;&#039;0.05mL&#039;&#039;&#039; remaining after injecting, draw &#039;&#039;&#039;+0.05mL&#039;&#039;&#039; from the vial.&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
====== Injectable Estradiol Undecylate (EU/EUn) ======&lt;br /&gt;
|[[File:What-excuse-me.gif|thumb|[[HRT#Other resources|my honest reaction]]]]&lt;br /&gt;
|There&#039;s not enough information on dosage. The frequency of those may differ according to the oil used (MCT/Castor oil). Indicative Dosages:&lt;br /&gt;
15-20mg/2 weeks&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--T:45--&amp;gt;&lt;br /&gt;
20-40mg+/4 weeks&lt;br /&gt;
|&lt;br /&gt;
* There&#039;s not enough information on its [[wikipedia:Biological_half-life|half-life]], a higher dosage can be administered that can last up to 20-30 days.&lt;br /&gt;
* [[wikipedia:Intramuscular_injection|IM injections]] last longer so they give better levels during the same period of time per injection.&lt;br /&gt;
* Needs at least 90 days to reach stable levels.&lt;br /&gt;
* Look for &#039;&#039;&#039;[https://arc-w.nihr.ac.uk/Wordpress/wp-content/uploads/2015/07/Low-dead-space-syringes.png syringe dead space]([[HRT#:~:text=* = It has been mentioned that syringes account for dead space, although that is not 100% certain.|*]])&#039;&#039;&#039;, e.g. if there&#039;s &#039;&#039;&#039;0.05mL&#039;&#039;&#039; remaining after injecting, draw &#039;&#039;&#039;+0.05mL&#039;&#039;&#039; from the vial.&lt;br /&gt;
|}&lt;br /&gt;
&#039;&#039;&#039;*&#039;&#039;&#039; = It has been mentioned that syringes account for dead space, although that is not 100% certain.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--T:46--&amp;gt;&lt;br /&gt;
=== Sublingual vs Oral ===&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|+&lt;br /&gt;
!Method&lt;br /&gt;
!Substance&lt;br /&gt;
!Dosage&lt;br /&gt;
!Observations&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
====== Oral ======&lt;br /&gt;
|Estradiol Valerate in pill form (e.g. Cyclacur)&lt;br /&gt;
|&amp;gt;=6mg/day&lt;br /&gt;
(max 10mg as per Dr. Powers)&lt;br /&gt;
|It is recommended that doses are taken separately on set time intervals during the day for more stable estradiol levels, e.g. for a 6mg dose you would take 2mg per 8 hours. By the oral route the active substance is metabolized by the liver and part of it is converted to estrone (E1), which has much less feminizing effects than estradiol (E2) so the desired effect is essentially prevented. The bioavailability of estradiol by oral administration is very low (~5%) and usually lower levels of E2 are observed in blood tests than other methods of administration. [anecdotal apo to server, wikipedia kai tttt - correct/expand?] It is also necessary to administer anti-androgens to reduce testosterone levels to the female range.&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
====== Sublingual ======&lt;br /&gt;
|Estradiol Valerate in pill form (e.g. Cyclacur)&lt;br /&gt;
|&amp;gt;=4mg/day&lt;br /&gt;
|It is recommended that doses are taken separately on set time intervals during the day for more stable estradiol levels, e.g. for a 6mg dose you would take 2mg per 8 hours. The sublingual way bypasses estradiol metabolism by the liver and has about 5 times the estradiol bioavailability of the oral way. This way, estradiol levels have greater range than orally (higher peak lower bottom), in oral they remain higher for ~12 hours while sublingually they go away after 3-4 hours [idk if honscience the study is from 2005 on cis women]&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== Vial info === &amp;lt;!--T:47--&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--T:48--&amp;gt;&lt;br /&gt;
=== Medications ===&lt;br /&gt;
For cyclacur: &#039;&#039;&#039;take only the white pills, the brown pills are Norgestrel which have 0.5mg of estradiol but has an androgenic effect and may also cause other side effects&#039;&#039;&#039;. &lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--T:49--&amp;gt;&lt;br /&gt;
==== Estrogens ====&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|+&lt;br /&gt;
!Brand Name(s)&lt;br /&gt;
!Substance&lt;br /&gt;
!Form&lt;br /&gt;
!Method of Administration&lt;br /&gt;
!Cost&lt;br /&gt;
!Cost with Healthcare Coverage&lt;br /&gt;
!Dosage&lt;br /&gt;
!Safety&lt;br /&gt;
!Notes&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
====== [https://www.galinos.gr/web/drugs/main/drugs/Cyclacur Cyclacur] ======&lt;br /&gt;
|Estradiol Valerate (EV)&lt;br /&gt;
|Pill tablet&lt;br /&gt;
|Orally or sublingually&lt;br /&gt;
|2.01€ for 11 pills ([https://www.galinos.gr/service/drugs/drawPackagePrice/1198 Pricemap])&lt;br /&gt;
~130.8-328.€/year&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--T:50--&amp;gt;&lt;br /&gt;
~10.9-27.4€/month&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--T:51--&amp;gt;&lt;br /&gt;
Prices are indicative, the cost depends on the dosage.&lt;br /&gt;
| -&lt;br /&gt;
|6mg-10mg/day (according to Dr. Will Powers)&lt;br /&gt;
4mg-8mg/day (according to Greek Endocrinologists)&lt;br /&gt;
|A&lt;br /&gt;
|&lt;br /&gt;
* &#039;&#039;&#039;Only white pills are used.&#039;&#039;&#039; Brown pills do have a bit of estradiol but arent taken due to other side effects.&lt;br /&gt;
* You need antiandrogens or GNRH antagonists if you haven&#039;t had an orchiectomy.&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
====== Progynova ======&lt;br /&gt;
|Estradiol Valerate (EV)&lt;br /&gt;
|Pill tablet&lt;br /&gt;
|Orally or sublingually&lt;br /&gt;
|~22€ for 72 pills of 1 mg or ~32€ for 72 pills of 2 mg&lt;br /&gt;
Prices are indicative, the cost depends on the dosage.&lt;br /&gt;
| -&lt;br /&gt;
|4mg-8mg/day&lt;br /&gt;
|A&lt;br /&gt;
|&lt;br /&gt;
* There is no reason to use it in Greece since Cyclacur is available in Greek pharmacies.&lt;br /&gt;
* You need antiandrogens or GNRH antagonists if you haven&#039;t had an orchiectomy.&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
====== Estrofem, Estrifam (german brand name), [https://www.galinos.gr/web/drugs/main/drugs/trisequens Trisequens] ======&lt;br /&gt;
|Estradiol Hemihydrate&lt;br /&gt;
|Pill tablet&lt;br /&gt;
|Orally or sublingually&lt;br /&gt;
|~30€ for 28 pills of 2 mg without shipping costs.&lt;br /&gt;
Prices are indicative, the cost depends on the dosage.&lt;br /&gt;
| -&lt;br /&gt;
|4mg-8mg/day&lt;br /&gt;
|A&lt;br /&gt;
|&lt;br /&gt;
* There is no reason to use it in Greece since Cyclacur is available in Greek pharmacies.&lt;br /&gt;
* You need antiandrogens or GNRH antagonists if you haven&#039;t had an orchiectomy.&lt;br /&gt;
* Trisequens, while being available in Greece, is odd to take with 12 pills being 2mg EH, 10 norgestrel, and 6 1mg EH, for a much higher price than [[HRT#Cyclacur|Cyclacur]].&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
====== [https://www.galinos.gr/web/drugs/main/drugs/Dermestril Dermestril] ======&lt;br /&gt;
|Estradiol Hemihydrate&lt;br /&gt;
|Patch&lt;br /&gt;
|Trans-dermally&lt;br /&gt;
|44€ for 24 patches of 100mcg&lt;br /&gt;
~15€ for 8 patches of 50mcg&lt;br /&gt;
| -&lt;br /&gt;
|50mcg/3.5 days (when starting off)&lt;br /&gt;
100mcg/3.5 days (whenever your e2 levels are stable)&lt;br /&gt;
|A&lt;br /&gt;
|&lt;br /&gt;
* &#039;&#039;&#039;If you have no idea how to apply patches watch this:&#039;&#039;&#039; [https://youtu.be/tXGIYWPqdpI?si=O0dlE19pq0ic0PZP Demonstrational Video]&lt;br /&gt;
* You need antiandrogens or GNRH antagonists if you haven&#039;t had an orchiectomy.&lt;br /&gt;
* 100mcg patches can be cut into 2 if needed.&lt;br /&gt;
|-&lt;br /&gt;
|Neofollin (can be ordered from pharmacies near Czechia, not tested in Greece), Delestrogen (Vial, unavailable), Progynon Depot (Ampules, unavailable)&lt;br /&gt;
|&lt;br /&gt;
====== Estradiol Valerate (EV) ======&lt;br /&gt;
|Injectable&lt;br /&gt;
|Subcutaneous or Intramuscular&lt;br /&gt;
|80€/year (including shipping costs, syringes and alcohol swabs)&lt;br /&gt;
| -&lt;br /&gt;
|5-7mg/5 days (monotherapy)&lt;br /&gt;
4-5mg/7 days (only in combination with an antiandrogen or GNRH agonist)&lt;br /&gt;
|A+&lt;br /&gt;
|&lt;br /&gt;
* It can be used without antiandrogens or GNRH agonists in ([[HRT#Μονοθεραπεία|Monotherapy]]) by increasing the dosage.&lt;br /&gt;
|-&lt;br /&gt;
|Depo-Estradiol (US only, unavailable)&lt;br /&gt;
|&lt;br /&gt;
====== Estradiol Cypionate (EC) ======&lt;br /&gt;
|Injectable&lt;br /&gt;
|Subcutaneous or Intramuscular&lt;br /&gt;
|~70-80€/year (not including shipping costs, syringes and alcohol swabs)&lt;br /&gt;
| -&lt;br /&gt;
|5-7mg/7 days&lt;br /&gt;
(&#039;&#039;&#039;mono dose&#039;&#039;&#039;)&lt;br /&gt;
? (TBD/&#039;&#039;&#039;dose with AA&#039;&#039;&#039;)&lt;br /&gt;
|?&lt;br /&gt;
|&lt;br /&gt;
* It can be used without antiandrogens or GNRH agonists in ([[HRT#Μονοθεραπεία|Monotherapy]])&lt;br /&gt;
|-&lt;br /&gt;
| -&lt;br /&gt;
|&lt;br /&gt;
====== Estradiol Enanthate (EEn) ======&lt;br /&gt;
|Injectable&lt;br /&gt;
|Subcutaneous or Intramuscular&lt;br /&gt;
|80€/year (including shipping costs, syringes and alcohol swabs)&lt;br /&gt;
| -&lt;br /&gt;
|2.5mg-7mg/7 days&lt;br /&gt;
(usual dosage: 4mg/7days)&lt;br /&gt;
|A+&lt;br /&gt;
|&lt;br /&gt;
* It can be used without antiandrogens or GNRH agonists in ([[HRT#Μονοθεραπεία|Monotherapy]]) by increasing the dosage.&lt;br /&gt;
|-&lt;br /&gt;
| -&lt;br /&gt;
|&lt;br /&gt;
====== Estradiol Undecylate (EU, EUn) ======&lt;br /&gt;
|Injectable&lt;br /&gt;
|Subcutaneous or Intramuscular&lt;br /&gt;
|130€/year (including shipping costs, syringes and alcohol swabs)&lt;br /&gt;
| -&lt;br /&gt;
|15-20mg/2 weeks&lt;br /&gt;
20-40mg+/4 weeks&lt;br /&gt;
|A+&lt;br /&gt;
|&lt;br /&gt;
* There&#039;s not much info on dosages, usually seen in [[HRT#Μονοθεραπεία|monotherapy]].&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--T:52--&amp;gt;&lt;br /&gt;
==== Anti-Androgens and GNRH Agonists ====&lt;br /&gt;
These should &#039;&#039;&#039;not&#039;&#039;&#039; be taken sublingually.&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|+&lt;br /&gt;
!Brand Name(s)&lt;br /&gt;
!Substance&lt;br /&gt;
!Cost&lt;br /&gt;
!Cost with Healthcare Coverage&lt;br /&gt;
!Dosage&lt;br /&gt;
!Safety&lt;br /&gt;
!Form&lt;br /&gt;
!Type&lt;br /&gt;
!Notes&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
====== [https://www.galinos.gr/web/drugs/main/drugs/Androcur Androcur] ======&lt;br /&gt;
|Cyproterone Acetate (CPA) is also referred to as cypro&lt;br /&gt;
|21.58€/50mg * 50 pills &lt;br /&gt;
19.7-31.5€/year&lt;br /&gt;
&lt;br /&gt;
([https://www.galinos.gr/service/drugs/drawPackagePrice/8023 Pricemap])&lt;br /&gt;
|?&lt;br /&gt;
|12.5mg/2 days- 10mg/day&lt;br /&gt;
&#039;&#039;&#039;Larger doses shouldn&#039;t be administered&#039;&#039;&#039;&lt;br /&gt;
|C&lt;br /&gt;
|Pill tablet&lt;br /&gt;
|Progestin (Steroidal antiandrogen)&lt;br /&gt;
Stops testosterone production.&lt;br /&gt;
|The max recommended dosage is 10mg/day . Monitoring of prolactin levels is recommended through [[Blood Testing#MTF|blood testing]].&lt;br /&gt;
&#039;&#039;&#039;Many doctors give overdoses of 50 mg/day. Cyproterone is a strong anti-androgen and testosterone suppression is possible with lower doses. A change of doctor is recommended.&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--T:53--&amp;gt;&lt;br /&gt;
[[wikipedia:Side_effects_of_cyproterone_acetate|Side Effects]]:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--T:54--&amp;gt;&lt;br /&gt;
* Benign brain tumor.&lt;br /&gt;
* In rare cases, liver damage.&lt;br /&gt;
* Vitamin B12 deficiency.&lt;br /&gt;
* Breast cancer.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--T:55--&amp;gt;&lt;br /&gt;
Testosterone suppression can be achieved with even lower doses, however a 50 mg pill is difficult to cut into pieces of less than 12.5 mg even with a pill cutter.&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
====== [https://www.galinos.gr/web/drugs/main/drugs/Bicalut Bicalut] ======&lt;br /&gt;
|Bicalutamide (aka: bica)&lt;br /&gt;
|29.10 euro/30 pills&lt;br /&gt;
29.10 euro/month&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--T:56--&amp;gt;&lt;br /&gt;
~350 euro/year&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
([https://www.galinos.gr/service/drugs/drawPackagePrice/11120 Pricemap])&lt;br /&gt;
|6.77 euro/month (28 tabs)&lt;br /&gt;
~95 euro/year&lt;br /&gt;
|50mg/day&lt;br /&gt;
|A-&lt;br /&gt;
|Pill/Tablet&lt;br /&gt;
|Androgen receptor antagonist (Nonsteroidal antiandrogen)&lt;br /&gt;
Blocks absorption of all androgens (including testosterone)&lt;br /&gt;
|&#039;&#039;&#039;Serious negative interactions can be noted if combined with other anti-androgens and GNRH agonists (except progesterone)&#039;&#039;&#039;&lt;br /&gt;
&#039;&#039;&#039;Very rare&#039;&#039;&#039; chance for recoverable and non-fatal liver damage for people with a certain rare mutation.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--T:57--&amp;gt;&lt;br /&gt;
Most of the effects listen in the instruction manual are scaremongering. (it lists a very high chance of liver issues when they are actually very rare, and also lists photosensitivity, which if it even occurs at all, it should be quite rare. We are aware of nobody who had a negative interction between alexandrite laser hair removal and bicalutamide).&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--T:58--&amp;gt;&lt;br /&gt;
Note that bicalutamide, unlike most other anti-androgens, &#039;&#039;&#039;does not&#039;&#039;&#039; lower testosterone levels, in fact they usually rise as the body responds to testosterone receptors being inhibited. Do not be alarmed if you notice an increase of testosterone in your blood tests.&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
====== [https://www.galinos.gr/web/drugs/main/drugs/Arvekap Arvekap] ======&lt;br /&gt;
|Triptorelin&lt;br /&gt;
| -&lt;br /&gt;
|~200/year?&lt;br /&gt;
|&lt;br /&gt;
|A?&lt;br /&gt;
|Injection&lt;br /&gt;
|GNRH Agonist&lt;br /&gt;
(indirectly) Stops testosterone AND estrogen production&lt;br /&gt;
|Also a puberty blocker&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
====== [https://www.galinos.gr/web/drugs/main/drugs/aldactone Aldactone] ======&lt;br /&gt;
|Spironolactone&lt;br /&gt;
|5.19 euro/20 tabs (100mg)&lt;br /&gt;
([https://www.galinos.gr/service/drugs/drawPackagePrice/148 Pricemap])&lt;br /&gt;
|?&lt;br /&gt;
|50mg-200mg/day&lt;br /&gt;
|B-C&lt;br /&gt;
|Tablet&lt;br /&gt;
|Antimineralocorticoid/MCRA&lt;br /&gt;
|Very inefficient, makes you pee, it&#039;s a medication for blood pressure&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
|Flutamide&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|F---&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|Only in this table as an example to avoid&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
==== Miscellaneous/Progesterone ====&lt;br /&gt;
Progesterone falls under this category, as it is not quite the same as other Anti-Androgens, the mention of Progesterone in this title is necessary in order to reduce confusion and questions such as &amp;quot;Where is progesterone?&amp;quot; and &amp;quot;Did you remove prog from the page?&amp;quot;.&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
!Brand Name(s)&lt;br /&gt;
!Substance&lt;br /&gt;
!Cost&lt;br /&gt;
!Cost with Healthcare Coverage&lt;br /&gt;
!Dosage&lt;br /&gt;
!Safety&lt;br /&gt;
!Form&lt;br /&gt;
!Type&lt;br /&gt;
!Notes&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
====== [https://www.galinos.gr/web/drugs/main/drugs/utrogestran Utrogestan] ======&lt;br /&gt;
|Progesterone (P4) it is also referred to as prog&lt;br /&gt;
|5.83 euro/30 caps (100mg)&lt;br /&gt;
8.08 euro/15 caps (200mg)&lt;br /&gt;
([https://www.galinos.gr/service/drugs/drawPackagePrice/7619 Pricemap])&lt;br /&gt;
|?&lt;br /&gt;
|200mg daily (rectal administration)&lt;br /&gt;
|A&lt;br /&gt;
|Capsule&lt;br /&gt;
|Stops testosterone production.&lt;br /&gt;
|There is not much confirmed information about progesterone.&lt;br /&gt;
It can also be taken orally but the absorption rate is very low.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--T:59--&amp;gt;&lt;br /&gt;
Anecdotal claims:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--T:60--&amp;gt;&lt;br /&gt;
* Helps with breast development and with feminization in general.&lt;br /&gt;
* Can be given after one year of estradiol.&lt;br /&gt;
* Suggested to be given after the individual reaches Tanner stage 3.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--T:61--&amp;gt;&lt;br /&gt;
It can have androgenic or other (non-serious, recoverable) effects for some individuals - in particular it can be converted to DHT by the body even in combination with dutasteride or bicalutamide.&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--T:62--&amp;gt;&lt;br /&gt;
==== Other anti-androgens (optional) ====&lt;br /&gt;
These are used to block conversion of other androgens to DHT (which causes hair loss (hair) and body hair growth). They aren&#039;t general use Anti-Androgens.&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
!Brand Name(s)&lt;br /&gt;
!Substance&lt;br /&gt;
!Cost&lt;br /&gt;
!Cost with Healthcare Coverage&lt;br /&gt;
!Dosage&lt;br /&gt;
!Safety&lt;br /&gt;
!Form&lt;br /&gt;
!Type&lt;br /&gt;
!Notes&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
====== [https://www.galinos.gr/web/drugs/main/packages/26485 Dastidem], [https://www.galinos.gr/web/drugs/main/packages/25557 Rafuster], [https://www.galinos.gr/web/drugs/main/packages/25893 Duaride], [https://www.galinos.gr/web/drugs/main/packages/25894 Dustezor] ======&lt;br /&gt;
|Dutasteride&lt;br /&gt;
|7.90€/30 caps&lt;br /&gt;
|~6€/30 caps&lt;br /&gt;
|0.5mg/day (?/TBD)&lt;br /&gt;
|A-&lt;br /&gt;
|Capsule&lt;br /&gt;
| -&lt;br /&gt;
|High effectiveness.&lt;br /&gt;
|-&lt;br /&gt;
| -&lt;br /&gt;
|Finasteride&lt;br /&gt;
| -&lt;br /&gt;
| -&lt;br /&gt;
| -&lt;br /&gt;
|F&lt;br /&gt;
| -&lt;br /&gt;
| -&lt;br /&gt;
|Effectiveness is none to medium (Just take Dutasteride - will not stop conversion of Progesterone to DHT)&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--T:63--&amp;gt;&lt;br /&gt;
=== Blood Levels ===&lt;br /&gt;
&lt;br /&gt;
==== Refer to the [[Blood Testing]] page. ====&amp;lt;!--T:81--&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Transmasc ==&lt;br /&gt;
&lt;br /&gt;
=== Medications ===&lt;br /&gt;
&lt;br /&gt;
==== Testosterone ====&lt;br /&gt;
[https://www.galinos.gr/web/drugs/main/substances/testosterone/marketing Galinos.gr&#039;s testosterone availability page]&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|+&lt;br /&gt;
!Brand Name(s)&lt;br /&gt;
!Substance&lt;br /&gt;
!Form&lt;br /&gt;
!Method of Administration&lt;br /&gt;
!Cost&lt;br /&gt;
!Cost with Healthcare Coverage&lt;br /&gt;
!Dosage&lt;br /&gt;
!Safety&lt;br /&gt;
!Notes&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
====== [https://www.galinos.gr/web/drugs/main/packages/4929 Norma] ======&lt;br /&gt;
|Testosterone Enanthate&lt;br /&gt;
|Injection/Ampule&lt;br /&gt;
|Subcutaneous or Intramuscular&lt;br /&gt;
|17.67€/ampule &lt;br /&gt;
([https://www.galinos.gr/service/drugs/drawPackagePrice/4929 Pricemap])&lt;br /&gt;
|?&lt;br /&gt;
|?&lt;br /&gt;
|?&lt;br /&gt;
| -&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
====== [https://www.galinos.gr/web/drugs/main/packages/21943 Nebido] ======&lt;br /&gt;
|Testosterone Undecanoate&lt;br /&gt;
|Injection/Vial&lt;br /&gt;
|Intramuscular&lt;br /&gt;
|100.37€/vial&lt;br /&gt;
([https://www.galinos.gr/service/drugs/drawPackagePrice/21943 Pricemap])&lt;br /&gt;
|~32.52€/vial (you pay 25%)&lt;br /&gt;
|1 vial (1000mg/4mL)/10-20 weeks&lt;br /&gt;
|A&lt;br /&gt;
|As a starting dose &#039;&#039;&#039;after a year of HRT&#039;&#039;&#039;, you could also consider:&lt;br /&gt;
&lt;br /&gt;
* Instead of injecting one vial per 20 weeks, you do half every 10-12 weeks, however nothing could be sourced to support this. Though logically it could make sense as a practice.&lt;br /&gt;
* Do a test at 6 weeks after starting, if T is too high don&#039;t take the 2nd dose, if it&#039;s not you can take the 2nd and then test 2 weeks before every other dose.&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
====== [https://www.galinos.gr/web/drugs/main/packages/15739 Tostran] ======&lt;br /&gt;
|Testogel&lt;br /&gt;
|Gel&lt;br /&gt;
|Trans-dermally&lt;br /&gt;
|&#039;&#039;&#039;Starting dose&#039;&#039;&#039;&lt;br /&gt;
&amp;lt;!--T:82--&amp;gt;&lt;br /&gt;
* 35.54€/2 months&lt;br /&gt;
* 213.24€/year&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--T:83--&amp;gt;&lt;br /&gt;
&#039;&#039;&#039;30 mg dose&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--T:84--&amp;gt;&lt;br /&gt;
* 35.54€/40 days&lt;br /&gt;
* ~324.30€/year&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--T:85--&amp;gt;&lt;br /&gt;
&#039;&#039;&#039;40 mg dose&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--T:73--&amp;gt;&lt;br /&gt;
* 35.54€/30 days&lt;br /&gt;
* 426.48€/year&lt;br /&gt;
([https://www.galinos.gr/service/drugs/drawPackagePrice/15739 Pricemap])&lt;br /&gt;
|35.54€ -&amp;gt; 8.89€&lt;br /&gt;
|20mg/day (starting dose)&lt;br /&gt;
30-40mg/day&lt;br /&gt;
|A&lt;br /&gt;
|&lt;br /&gt;
* 1 pump of Tostran (&#039;&#039;&#039;0.5g&#039;&#039;&#039;) delivers 10 mg of T.&lt;br /&gt;
* 2 pumps of Tostran are 1 pump of Testogel (20.25mg of T)&lt;br /&gt;
* Can cause skin reactions.&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
==== GNRH Agonists ====&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
!Brand Name(s)&lt;br /&gt;
!Substance&lt;br /&gt;
! Cost&lt;br /&gt;
!Cost with Healthcare Coverage&lt;br /&gt;
!Dosage&lt;br /&gt;
!Safety&lt;br /&gt;
!Form&lt;br /&gt;
!Type&lt;br /&gt;
!Notes&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
====== [https://www.galinos.gr/web/drugs/main/drugs/Arvekap Arvekap] ======&lt;br /&gt;
|Triptorelin&lt;br /&gt;
| -&lt;br /&gt;
|~200/year?&lt;br /&gt;
|&lt;br /&gt;
|A?&lt;br /&gt;
|Injection&lt;br /&gt;
|GNRH Agonist&lt;br /&gt;
(indirectly) Stops testosterone AND estrogen production&lt;br /&gt;
|Also a puberty blocker&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
==== Other anti-androgens (optional) ====&lt;br /&gt;
These are used to block conversion of other androgens to DHT (which causes hair loss (hair) and body hair growth). They aren&#039;t general use Anti-Androgens.&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
!Brand Name(s)&lt;br /&gt;
!Substance&lt;br /&gt;
!Cost&lt;br /&gt;
!Cost with Healthcare Coverage&lt;br /&gt;
!Dosage&lt;br /&gt;
!Safety&lt;br /&gt;
!Form&lt;br /&gt;
!Type&lt;br /&gt;
!Notes&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
====== [https://www.galinos.gr/web/drugs/main/packages/26485 Dastidem], [https://www.galinos.gr/web/drugs/main/packages/25557 Rafuster], [https://www.galinos.gr/web/drugs/main/packages/25893 Duaride], [https://www.galinos.gr/web/drugs/main/packages/25894 Dustezor] ======&lt;br /&gt;
|Dutasteride&lt;br /&gt;
|7.90€/30 caps&lt;br /&gt;
|~6€/30 caps&lt;br /&gt;
|0.5mg/day (?/TBD)&lt;br /&gt;
|A-&lt;br /&gt;
|Capsule&lt;br /&gt;
| -&lt;br /&gt;
|High effectiveness. &lt;br /&gt;
Not to be confused with proper Anti-Androgens.&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== Nonbinary hrt *under construction* ==&lt;br /&gt;
&lt;br /&gt;
=== !!! disclaimer-warning about potential issues !!! ===&lt;br /&gt;
&lt;br /&gt;
=== General outline of nb hrt for amab and afab ===&lt;br /&gt;
&lt;br /&gt;
=== Medications ===&lt;br /&gt;
&lt;br /&gt;
==== Selective Estrogen Receptor Modulators (SERMs) ====&lt;br /&gt;
&lt;br /&gt;
* Tamoxifen is a selective estrogen receptor modulator (SERM). In some tissues such as the brain it activates estrogen receptors, which may help reduce dysphoria. In breast tissue it antagonizes estrogen receptors, preventing the formation of breast tissue if desired. There is some evidence that Tamoxifen inhibits memory, though the effects of taking it alongside regular estrogen are undocumented. Tamoxifen can cause cognitive dysfunction and increase your risk of stroke and pulmonary embolism. Tamoxifen may also be taken alongside 17β-estradiol, more research is needed. In this combination, estradiol should still have its effects (combating dysphoria in the brain, redistribution of body fat, smoother skin etc.) while tamoxifen prevents the growth of breast tissue.&lt;br /&gt;
* Raloxifene is another SERM. It is an estrogen receptor antagonist in breast tissue. It is an estrogen receptor agonist in bone and can be used to prevent osteoporosis. Raloxifene has been shown to reduce ERα expression in breast tissue in premenopausal women. As the synthesis of progesterone receptors (PR) is estrogen-regulated, raloxifene also decreases the expression of PR. Additionally, it was shown to decrease the presence of Ki-67, a biomarker for cell proliferation, in breast tissue of premenopausal women. As a result, it can be used to treat gynecomastia, and has been shown effective in reducing breast size in those with the condition. Raloxifene may promote feminine fat distribution: in a study on 56-66 year old postmenopausal women, there was an increase in fat in the legs and buttocks and a decrease in fat in the abdomen and trunk after 1 year on 60 mg/day raloxifene. It is not yet known how pronounced this effect is, as there have been no comparisons of body fat distribution between raloxifene and estradiol. Raloxifene may increase the risk of stroke and pulmonary embolism.&lt;br /&gt;
* Afimoxifene is a topical SERM and the primary metabolite of tamoxifen.&lt;br /&gt;
&lt;br /&gt;
==== Anti-androgens ====&lt;br /&gt;
&lt;br /&gt;
==== Bicalutamide ====&lt;br /&gt;
Bicalutamide is an  anti-androgen which is used mainly in the treatment of prostate cancer but can also be used to treat hirsutism, or as a component of hormone therapy in feminizing HRT, among other uses. It is nonsteroidal anti-androgen and a selective/pure antagonist of the androgen receptor. It has no other hormonal activity and does not lower androgen levels. Bicalutamide crosses the blood-brain barrier and blocks the effects of testosterone and dihydrotestosterone (DHT) both in the body and in the brain. While it has been observed that bicalutamide does not cross the blood-brain barrier in rats and dogs, this was found not to be the case in humans&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
In general Ralox seems the best idea based on overall effectiveness and less severe side effects compared to other SERMs. Most people on this kind of MtNB hrt seem to be using a combination of ralox (in place of estradiol) and bica [expand this + powers e1s schizo stuff?]&lt;br /&gt;
&lt;br /&gt;
== Legal ==&lt;br /&gt;
It is legal to buy anything without a diagnosis or a prescription (off the counter - OTC), Testosterone can be hit or miss, look for [https://www.galinos.gr/web/drugs/main/packages/15739 Tostran] (Testogel) or [https://www.galinos.gr/web/drugs/main/packages/4929 TEn] (Testosterone Enanthate/Norma, injections).  &lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--T:86--&amp;gt;&lt;br /&gt;
You can also check the &#039;&#039;&#039;[https://diyon.top/map Trans-Friendly Pharmacies Map]&#039;&#039;&#039; for any pharmacies near you (this goes for both Transfem and Transmasc HRT). &lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--T:75--&amp;gt;&lt;br /&gt;
There is no minimum or maximum legal age for someone to start HRT. &lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--T:76--&amp;gt;&lt;br /&gt;
It is not legally mandatory for someone to have a diagnosis by a psychiatrist in order to medically transition.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--T:77--&amp;gt;&lt;br /&gt;
There is no legally mandatory time restriction for a psychiatrist to monitor you before diagnosing you.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--T:78--&amp;gt;&lt;br /&gt;
You don&#039;t legally need to be on HRT in order to be exempt from the [[army]], change your [[Legal|legal sex]], or to have a [[surgery]].&lt;br /&gt;
&lt;br /&gt;
== Other resources == &amp;lt;!--T:79--&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--T:80--&amp;gt;&lt;br /&gt;
* Simulator: https://www.estrannai.se/&lt;br /&gt;
* https://transfemscience.org/ (note, the authors of this site disagree with a lot of what they are saying, regardless, it is still interesting)&lt;br /&gt;
** Introduction to Hormone Therapy for Transfeminine People: https://transfemscience.org/articles/transfem-intro/&lt;br /&gt;
** Older simulator: https://transfemscience.org/misc/injectable-e2-simulator/&lt;br /&gt;
** Dosage calculator: https://transfemscience.org/misc/injectable-dose-vol-conc-conv/&lt;br /&gt;
* https://diyhrt.wiki/ (alt link: https://anarch.cc/transfeminine-diy-hrt-the-ultimate-guide-2/)&lt;br /&gt;
* https://hrtcafe.net/&lt;br /&gt;
* ?? https://hrt.coffee/&lt;br /&gt;
* https://www.reddit.com/r/TransDIY/&lt;br /&gt;
* https://www.reddit.com/r/TransfemScience/&lt;br /&gt;
* https://groups.io/g/MTFHRT/wiki/29602 (alt link: https://anarch.cc/mtf-hrt-ultimate-diy/)&lt;br /&gt;
* https://hrt.cat/ - info for making your own (you will probably not need it - version 1.0: https://hrtcafe.net/hrtcat/)&lt;br /&gt;
* https://archive.ph/uQb8g (alt link: https://anarch.cc/making-your-own-injections/, as above)&lt;br /&gt;
* https://crimethinc.com/2022/12/15/producing-transdermal-estrogen-a-do-it-yourself-guide (alt link: https://anarch.cc/producing-transdermal-estrogen-a-do-it-yourself-guide/, as above)&lt;br /&gt;
* https://archive.ph/cpy7k (alt link: https://anarch.cc/homebrewing-hormones-mtf-guide/, as above)&lt;br /&gt;
&amp;lt;/translate&amp;gt;&lt;/div&gt;</summary>
		<author><name>Goblinmoder</name></author>
	</entry>
	<entry>
		<id>https://wiki.diyon.top/index.php?title=HRT&amp;diff=998</id>
		<title>HRT</title>
		<link rel="alternate" type="text/html" href="https://wiki.diyon.top/index.php?title=HRT&amp;diff=998"/>
		<updated>2025-04-17T11:37:02Z</updated>

		<summary type="html">&lt;p&gt;Goblinmoder: /* Miscellaneous/Progesterone */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{#seo:&lt;br /&gt;
|title_mode=replace&lt;br /&gt;
|title=HRT&lt;br /&gt;
|description=We are open to discussion and actively on-going changes in formatting and contents of this Page and Website (in general). The e-mail address to refer to is fox@diyon.top&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
&amp;lt;languages/&amp;gt;&lt;br /&gt;
&amp;lt;translate&amp;gt;&lt;br /&gt;
&amp;lt;!--T:41--&amp;gt;&lt;br /&gt;
After around a month on HRT some of your ranges in your [[Blood Testing|blood test]] should be within desired ranges.&lt;br /&gt;
&lt;br /&gt;
== Disclaimer ==&lt;br /&gt;
 To clarify on &#039;&#039;&#039;dosages&#039;&#039;&#039;, the values mentioned below are rather speculative and most are based on &#039;&#039;&#039;personal experiences&#039;&#039;&#039;. Therefore it is encouraged to do [[Blood Testing|blood tests]] and if possible, check with an [[Doctors#Ενδοκρινολόγοι|endocrinologist]] (we also suggest [[Doctors]] that can help with such cases), especially if you have any specific &#039;&#039;&#039;health conditions&#039;&#039;&#039;. &lt;br /&gt;
Pricemaps are there to evaluate prices through &#039;&#039;&#039;[https://galinos.gr galinos.gr]&#039;&#039;&#039; (in case something is outdated, look for the green line that says &amp;quot;Λιανική&amp;quot;)&lt;br /&gt;
&lt;br /&gt;
We are open to discussion and actively on-going changes in formatting and contents of this Page and Website (in general). The e-mail address to refer to is &#039;&#039;&#039;fox@diyon.top&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--T:43--&amp;gt;&lt;br /&gt;
== Transfem ==&lt;br /&gt;
Taking Puberty Blockers ([[HRT#Antiandrogens and GNRH Agonists|GNRH Agonists]], e.g: Arvekap) or any Anti Androgen (e.g: Aldactone, Androcur) &#039;&#039;&#039;without [[HRT#Estrogens|Estrogens]]&#039;&#039;&#039; is generally discouraged even during youth transitioning (This is &#039;&#039;&#039;non-definitive&#039;&#039;&#039; for Enby folks)&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--T:44--&amp;gt;&lt;br /&gt;
=== Monotherapy ===&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|+&lt;br /&gt;
!Type&lt;br /&gt;
!Commercial Names&lt;br /&gt;
!Dosage&lt;br /&gt;
!Notes&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
====== Sublingual (E Valerate or Hemihydrate) ======&lt;br /&gt;
|Cyclacur (EV), Estrofem (EH, imported), Trisequens (12 pills 2mg EH, 10 pills norgestrel, 6 pills 1mg EH)&lt;br /&gt;
|&amp;gt;=8-12mg/day&lt;br /&gt;
|While it is possible, even with a smaller dosage (&#039;&#039;&#039;at least 6mg&#039;&#039;&#039;), it&#039;s not that common. Ideally, use your blood tests to &#039;&#039;&#039;minmax&#039;&#039;&#039; your doses.&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
====== Injectable Estradiol Valerate (EV) ======&lt;br /&gt;
|Neofollin (can be ordered from pharmacies near Czechia, or aptekaapo.com &#039;&#039;&#039;but they’re not on hrtcafe&#039;&#039;&#039;, not tested in Greece), Delestrogen (Vial, unavailable), Progynon Depot (Ampules, unavailable), [[File:What-excuse-me.gif|thumb|[[HRT#Other resources|my honest reaction]]]]&lt;br /&gt;
|5-7mg/5 days&lt;br /&gt;
|&lt;br /&gt;
* Due to the large spikes in levels combined with the short [https://en.wikipedia.org/wiki/Biological_half-life half-life] it is not recommended for dosages to surpass the 5 day mark because it may cause menopause symptoms.&lt;br /&gt;
* Branded versions of this medication are not available in greece.&lt;br /&gt;
* The ampules contain a certain mg and do not allow for larger dosages, they are not re-usable. It is recommended to use a vial with a cap.&lt;br /&gt;
* Look for &#039;&#039;&#039;[https://arc-w.nihr.ac.uk/Wordpress/wp-content/uploads/2015/07/Low-dead-space-syringes.png syringe dead space]([[HRT#:~:text=* = It has been mentioned that syringes account for dead space, although that is not 100% certain.|*]])&#039;&#039;&#039;, e.g. if there&#039;s &#039;&#039;&#039;0.05mL&#039;&#039;&#039; remaining after injecting, draw &#039;&#039;&#039;+0.05mL&#039;&#039;&#039; from the vial.&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
====== Injectable Estradiol Cypionate (EC) ======&lt;br /&gt;
|[[File:What-excuse-me.gif|thumb|[[HRT#Other resources|my honest reaction]]]]Depo-Estradiol (US only, unavailable),&lt;br /&gt;
|5-7mg/7 days&lt;br /&gt;
|&lt;br /&gt;
* Look for &#039;&#039;&#039;[https://arc-w.nihr.ac.uk/Wordpress/wp-content/uploads/2015/07/Low-dead-space-syringes.png syringe dead space]([[HRT#:~:text=* = It has been mentioned that syringes account for dead space, although that is not 100% certain.|*]])&#039;&#039;&#039;, e.g. if there&#039;s &#039;&#039;&#039;0.05mL&#039;&#039;&#039; remaining after injecting, draw &#039;&#039;&#039;+0.05mL&#039;&#039;&#039; from the vial.&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
====== Injectable Estradiol Enanthate (EEn) ======&lt;br /&gt;
|[[File:What-excuse-me.gif|thumb|[[HRT#Other resources|my honest reaction]]]]&lt;br /&gt;
|4-7mg/7 days&lt;br /&gt;
7-10mg/10 days (7.2mg usually, depending on the vial, it&#039;s optimal because drawing cents of mL are hard to get right)&lt;br /&gt;
|&lt;br /&gt;
* You can multiply the weekly dosage by 2, which lasts up to 14 days (as much as the [https://en.wikipedia.org/wiki/Biological_half-life half-life] of Enanthate)&lt;br /&gt;
* Look for &#039;&#039;&#039;[https://arc-w.nihr.ac.uk/Wordpress/wp-content/uploads/2015/07/Low-dead-space-syringes.png syringe dead space]([[HRT#:~:text=* = It has been mentioned that syringes account for dead space, although that is not 100% certain.|*]])&#039;&#039;&#039;, e.g. if there&#039;s &#039;&#039;&#039;0.05mL&#039;&#039;&#039; remaining after injecting, draw &#039;&#039;&#039;+0.05mL&#039;&#039;&#039; from the vial.&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
====== Injectable Estradiol Undecylate (EU/EUn) ======&lt;br /&gt;
|[[File:What-excuse-me.gif|thumb|[[HRT#Other resources|my honest reaction]]]]&lt;br /&gt;
|There&#039;s not enough information on dosage. The frequency of those may differ according to the oil used (MCT/Castor oil). Indicative Dosages:&lt;br /&gt;
15-20mg/2 weeks&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--T:45--&amp;gt;&lt;br /&gt;
20-40mg+/4 weeks&lt;br /&gt;
|&lt;br /&gt;
* There&#039;s not enough information on its [[wikipedia:Biological_half-life|half-life]], a higher dosage can be administered that can last up to 20-30 days.&lt;br /&gt;
* [[wikipedia:Intramuscular_injection|IM injections]] last longer so they give better levels during the same period of time per injection.&lt;br /&gt;
* Needs at least 90 days to reach stable levels.&lt;br /&gt;
* Look for &#039;&#039;&#039;[https://arc-w.nihr.ac.uk/Wordpress/wp-content/uploads/2015/07/Low-dead-space-syringes.png syringe dead space]([[HRT#:~:text=* = It has been mentioned that syringes account for dead space, although that is not 100% certain.|*]])&#039;&#039;&#039;, e.g. if there&#039;s &#039;&#039;&#039;0.05mL&#039;&#039;&#039; remaining after injecting, draw &#039;&#039;&#039;+0.05mL&#039;&#039;&#039; from the vial.&lt;br /&gt;
|}&lt;br /&gt;
&#039;&#039;&#039;*&#039;&#039;&#039; = It has been mentioned that syringes account for dead space, although that is not 100% certain.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--T:46--&amp;gt;&lt;br /&gt;
=== Sublingual vs Oral ===&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|+&lt;br /&gt;
!Method&lt;br /&gt;
!Substance&lt;br /&gt;
!Dosage&lt;br /&gt;
!Observations&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
====== Oral ======&lt;br /&gt;
|Estradiol Valerate in pill form (e.g. Cyclacur)&lt;br /&gt;
|&amp;gt;=6mg/day&lt;br /&gt;
(max 10mg as per Dr. Powers)&lt;br /&gt;
|It is recommended that doses are taken separately on set time intervals during the day for more stable estradiol levels, e.g. for a 6mg dose you would take 2mg per 8 hours. By the oral route the active substance is metabolized by the liver and part of it is converted to estrone (E1), which has much less feminizing effects than estradiol (E2) so the desired effect is essentially prevented. The bioavailability of estradiol by oral administration is very low (~5%) and usually lower levels of E2 are observed in blood tests than other methods of administration. [anecdotal apo to server, wikipedia kai tttt - correct/expand?] It is also necessary to administer anti-androgens to reduce testosterone levels to the female range.&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
====== Sublingual ======&lt;br /&gt;
|Estradiol Valerate in pill form (e.g. Cyclacur)&lt;br /&gt;
|&amp;gt;=4mg/day&lt;br /&gt;
|It is recommended that doses are taken separately on set time intervals during the day for more stable estradiol levels, e.g. for a 6mg dose you would take 2mg per 8 hours. The sublingual way bypasses estradiol metabolism by the liver and has about 5 times the estradiol bioavailability of the oral way. This way, estradiol levels have greater range than orally (higher peak lower bottom), in oral they remain higher for ~12 hours while sublingually they go away after 3-4 hours [idk if honscience the study is from 2005 on cis women]&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== Vial info === &amp;lt;!--T:47--&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--T:48--&amp;gt;&lt;br /&gt;
=== Medications ===&lt;br /&gt;
For cyclacur: &#039;&#039;&#039;take only the white pills, the brown pills are Norgestrel which have 0.5mg of estradiol but has an androgenic effect and may also cause other side effects&#039;&#039;&#039;. &lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--T:49--&amp;gt;&lt;br /&gt;
==== Estrogens ====&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|+&lt;br /&gt;
!Brand Name(s)&lt;br /&gt;
!Substance&lt;br /&gt;
!Form&lt;br /&gt;
!Method of Administration&lt;br /&gt;
!Cost&lt;br /&gt;
!Cost with Healthcare Coverage&lt;br /&gt;
!Dosage&lt;br /&gt;
!Safety&lt;br /&gt;
!Notes&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
====== [https://www.galinos.gr/web/drugs/main/drugs/Cyclacur Cyclacur] ======&lt;br /&gt;
|Estradiol Valerate (EV)&lt;br /&gt;
|Pill tablet&lt;br /&gt;
|Orally or sublingually&lt;br /&gt;
|2.01€ for 11 pills ([https://www.galinos.gr/service/drugs/drawPackagePrice/1198 Pricemap])&lt;br /&gt;
~130.8-328.€/year&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--T:50--&amp;gt;&lt;br /&gt;
~10.9-27.4€/month&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--T:51--&amp;gt;&lt;br /&gt;
Prices are indicative, the cost depends on the dosage.&lt;br /&gt;
| -&lt;br /&gt;
|6mg-10mg/day (according to Dr. Will Powers)&lt;br /&gt;
4mg-8mg/day (according to Greek Endocrinologists)&lt;br /&gt;
|A&lt;br /&gt;
|&lt;br /&gt;
* &#039;&#039;&#039;Only white pills are used.&#039;&#039;&#039; Brown pills do have a bit of estradiol but arent taken due to other side effects.&lt;br /&gt;
* You need antiandrogens or GNRH antagonists if you haven&#039;t had an orchiectomy.&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
====== Progynova ======&lt;br /&gt;
|Estradiol Valerate (EV)&lt;br /&gt;
|Pill tablet&lt;br /&gt;
|Orally or sublingually&lt;br /&gt;
|~22€ for 72 pills of 1 mg or ~32€ for 72 pills of 2 mg&lt;br /&gt;
Prices are indicative, the cost depends on the dosage.&lt;br /&gt;
| -&lt;br /&gt;
|4mg-8mg/day&lt;br /&gt;
|A&lt;br /&gt;
|&lt;br /&gt;
* There is no reason to use it in Greece since Cyclacur is available in Greek pharmacies.&lt;br /&gt;
* You need antiandrogens or GNRH antagonists if you haven&#039;t had an orchiectomy.&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
====== Estrofem, Estrifam (german brand name), [https://www.galinos.gr/web/drugs/main/drugs/trisequens Trisequens] ======&lt;br /&gt;
|Estradiol Hemihydrate&lt;br /&gt;
|Pill tablet&lt;br /&gt;
|Orally or sublingually&lt;br /&gt;
|~30€ for 28 pills of 2 mg without shipping costs.&lt;br /&gt;
Prices are indicative, the cost depends on the dosage.&lt;br /&gt;
| -&lt;br /&gt;
|4mg-8mg/day&lt;br /&gt;
|A&lt;br /&gt;
|&lt;br /&gt;
* There is no reason to use it in Greece since Cyclacur is available in Greek pharmacies.&lt;br /&gt;
* You need antiandrogens or GNRH antagonists if you haven&#039;t had an orchiectomy.&lt;br /&gt;
* Trisequens, while being available in Greece, is odd to take with 12 pills being 2mg EH, 10 norgestrel, and 6 1mg EH, for a much higher price than [[HRT#Cyclacur|Cyclacur]].&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
====== [https://www.galinos.gr/web/drugs/main/drugs/Dermestril Dermestril] ======&lt;br /&gt;
|Estradiol Hemihydrate&lt;br /&gt;
|Patch&lt;br /&gt;
|Trans-dermally&lt;br /&gt;
|44€ for 24 patches of 100mcg&lt;br /&gt;
~15€ for 8 patches of 50mcg&lt;br /&gt;
| -&lt;br /&gt;
|50mcg/3.5 days (when starting off)&lt;br /&gt;
100mcg/3.5 days (whenever your e2 levels are stable)&lt;br /&gt;
|A&lt;br /&gt;
|&lt;br /&gt;
* &#039;&#039;&#039;If you have no idea how to apply patches watch this:&#039;&#039;&#039; [https://youtu.be/tXGIYWPqdpI?si=O0dlE19pq0ic0PZP Demonstrational Video]&lt;br /&gt;
* You need antiandrogens or GNRH antagonists if you haven&#039;t had an orchiectomy.&lt;br /&gt;
* 100mcg patches can be cut into 2 if needed.&lt;br /&gt;
|-&lt;br /&gt;
|Neofollin (can be ordered from pharmacies near Czechia, not tested in Greece), Delestrogen (Vial, unavailable), Progynon Depot (Ampules, unavailable)&lt;br /&gt;
|&lt;br /&gt;
====== Estradiol Valerate (EV) ======&lt;br /&gt;
|Injectable&lt;br /&gt;
|Subcutaneous or Intramuscular&lt;br /&gt;
|80€/year (including shipping costs, syringes and alcohol swabs)&lt;br /&gt;
| -&lt;br /&gt;
|5-7mg/5 days (monotherapy)&lt;br /&gt;
4-5mg/7 days (only in combination with an antiandrogen or GNRH agonist)&lt;br /&gt;
|A+&lt;br /&gt;
|&lt;br /&gt;
* It can be used without antiandrogens or GNRH agonists in ([[HRT#Μονοθεραπεία|Monotherapy]]) by increasing the dosage.&lt;br /&gt;
|-&lt;br /&gt;
|Depo-Estradiol (US only, unavailable)&lt;br /&gt;
|&lt;br /&gt;
====== Estradiol Cypionate (EC) ======&lt;br /&gt;
|Injectable&lt;br /&gt;
|Subcutaneous or Intramuscular&lt;br /&gt;
|~70-80€/year (not including shipping costs, syringes and alcohol swabs)&lt;br /&gt;
| -&lt;br /&gt;
|5-7mg/7 days&lt;br /&gt;
(&#039;&#039;&#039;mono dose&#039;&#039;&#039;)&lt;br /&gt;
? (TBD/&#039;&#039;&#039;dose with AA&#039;&#039;&#039;)&lt;br /&gt;
|?&lt;br /&gt;
|&lt;br /&gt;
* It can be used without antiandrogens or GNRH agonists in ([[HRT#Μονοθεραπεία|Monotherapy]])&lt;br /&gt;
|-&lt;br /&gt;
| -&lt;br /&gt;
|&lt;br /&gt;
====== Estradiol Enanthate (EEn) ======&lt;br /&gt;
|Injectable&lt;br /&gt;
|Subcutaneous or Intramuscular&lt;br /&gt;
|80€/year (including shipping costs, syringes and alcohol swabs)&lt;br /&gt;
| -&lt;br /&gt;
|2.5mg-7mg/7 days&lt;br /&gt;
(usual dosage: 4mg/7days)&lt;br /&gt;
|A+&lt;br /&gt;
|&lt;br /&gt;
* It can be used without antiandrogens or GNRH agonists in ([[HRT#Μονοθεραπεία|Monotherapy]]) by increasing the dosage.&lt;br /&gt;
|-&lt;br /&gt;
| -&lt;br /&gt;
|&lt;br /&gt;
====== Estradiol Undecylate (EU, EUn) ======&lt;br /&gt;
|Injectable&lt;br /&gt;
|Subcutaneous or Intramuscular&lt;br /&gt;
|130€/year (including shipping costs, syringes and alcohol swabs)&lt;br /&gt;
| -&lt;br /&gt;
|15-20mg/2 weeks&lt;br /&gt;
20-40mg+/4 weeks&lt;br /&gt;
|A+&lt;br /&gt;
|&lt;br /&gt;
* There&#039;s not much info on dosages, usually seen in [[HRT#Μονοθεραπεία|monotherapy]].&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--T:52--&amp;gt;&lt;br /&gt;
==== Anti-Androgens and GNRH Agonists ====&lt;br /&gt;
These should &#039;&#039;&#039;not&#039;&#039;&#039; be taken sublingually.&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|+&lt;br /&gt;
!Brand Name(s)&lt;br /&gt;
!Substance&lt;br /&gt;
!Cost&lt;br /&gt;
!Cost with Healthcare Coverage&lt;br /&gt;
!Dosage&lt;br /&gt;
!Safety&lt;br /&gt;
!Form&lt;br /&gt;
!Type&lt;br /&gt;
!Notes&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
====== [https://www.galinos.gr/web/drugs/main/drugs/Androcur Androcur] ======&lt;br /&gt;
|Cyproterone Acetate (CPA) is also referred to as cypro&lt;br /&gt;
|21.58€/50mg * 50 pills &lt;br /&gt;
19.7-31.5€/year&lt;br /&gt;
&lt;br /&gt;
([https://www.galinos.gr/service/drugs/drawPackagePrice/8023 Pricemap])&lt;br /&gt;
|?&lt;br /&gt;
|12.5mg/2 days- 10mg/day&lt;br /&gt;
&#039;&#039;&#039;Larger doses shouldn&#039;t be administered&#039;&#039;&#039;&lt;br /&gt;
|C&lt;br /&gt;
|Pill tablet&lt;br /&gt;
|Progestin (Steroidal antiandrogen)&lt;br /&gt;
Stops testosterone production.&lt;br /&gt;
|The max recommended dosage is 10mg/day . Monitoring of prolactin levels is recommended through [[Blood Testing#MTF|blood testing]].&lt;br /&gt;
&#039;&#039;&#039;Many doctors give overdoses of 50 mg/day. Cyproterone is a strong anti-androgen and testosterone suppression is possible with lower doses. A change of doctor is recommended.&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--T:53--&amp;gt;&lt;br /&gt;
[[wikipedia:Side_effects_of_cyproterone_acetate|Side Effects]]:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--T:54--&amp;gt;&lt;br /&gt;
* Benign brain tumor.&lt;br /&gt;
* In rare cases, liver damage.&lt;br /&gt;
* Vitamin B12 deficiency.&lt;br /&gt;
* Breast cancer.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--T:55--&amp;gt;&lt;br /&gt;
Testosterone suppression can be achieved with even lower doses, however a 50 mg pill is difficult to cut into pieces of less than 12.5 mg even with a pill cutter.&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
====== [https://www.galinos.gr/web/drugs/main/drugs/Bicalut Bicalut] ======&lt;br /&gt;
|Bicalutamide (aka: bica)&lt;br /&gt;
|29.10 euro/30 pills&lt;br /&gt;
29.10 euro/month&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--T:56--&amp;gt;&lt;br /&gt;
~350 euro/year&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
([https://www.galinos.gr/service/drugs/drawPackagePrice/11120 Pricemap])&lt;br /&gt;
|6.77 euro/month (28 tabs)&lt;br /&gt;
~95 euro/year&lt;br /&gt;
|50mg/day&lt;br /&gt;
|A-&lt;br /&gt;
|Pill/Tablet&lt;br /&gt;
|Androgen receptor antagonist (Nonsteroidal antiandrogen)&lt;br /&gt;
Blocks absorption of all androgens (including testosterone)&lt;br /&gt;
|&#039;&#039;&#039;Serious negative interactions can be noted if combined with other anti-androgens and GNRH agonists (except progesterone)&#039;&#039;&#039;&lt;br /&gt;
&#039;&#039;&#039;Very rare&#039;&#039;&#039; chance for recoverable and non-fatal liver damage for people with a certain rare mutation.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--T:57--&amp;gt;&lt;br /&gt;
Most of the effects listen in the instruction manual are scaremongering. (it lists a very high chance of liver issues when they are actually very rare, and also lists photosensitivity, which if it even occurs at all, it should be quite rare. We are aware of nobody who had a negative interction between alexandrite laser hair removal and bicalutamide).&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--T:58--&amp;gt;&lt;br /&gt;
Note that bicalutamide, unlike most other anti-androgens, &#039;&#039;&#039;does not&#039;&#039;&#039; lower testosterone levels, in fact they usually rise as the body responds to testosterone receptors being inhibited. Do not be alarmed if you notice an increase of testosterone in your blood tests.&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
====== [https://www.galinos.gr/web/drugs/main/drugs/Arvekap Arvekap] ======&lt;br /&gt;
|Triptorelin&lt;br /&gt;
| -&lt;br /&gt;
|~200/year?&lt;br /&gt;
|&lt;br /&gt;
|A?&lt;br /&gt;
|Injection&lt;br /&gt;
|GNRH Agonist&lt;br /&gt;
(indirectly) Stops testosterone AND estrogen production&lt;br /&gt;
|Also a puberty blocker&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
====== [https://www.galinos.gr/web/drugs/main/drugs/aldactone Aldactone] ======&lt;br /&gt;
|Spironolactone&lt;br /&gt;
|5.19 euro/20 tabs (100mg)&lt;br /&gt;
([https://www.galinos.gr/service/drugs/drawPackagePrice/148 Pricemap])&lt;br /&gt;
|?&lt;br /&gt;
|50mg-200mg/day&lt;br /&gt;
|B-C&lt;br /&gt;
|Tablet&lt;br /&gt;
|Antimineralocorticoid/MCRA&lt;br /&gt;
|Very inefficient, makes you pee, it&#039;s a medication for blood pressure&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
|Flutamide&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|F---&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|Only in this table as an example to avoid&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
==== Miscellaneous/Progesterone ====&lt;br /&gt;
Progesterone falls under this category, as it is not quite the same as other Anti-Androgens, the mention of Progesterone in this title is necessary in order to reduce confusion and questions such as &amp;quot;Where is progesterone?&amp;quot; and &amp;quot;Did you remove prog from the page?&amp;quot;.&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
!Brand Name(s)&lt;br /&gt;
!Substance&lt;br /&gt;
!Cost&lt;br /&gt;
!Cost with Healthcare Coverage&lt;br /&gt;
!Dosage&lt;br /&gt;
!Safety&lt;br /&gt;
!Form&lt;br /&gt;
!Type&lt;br /&gt;
!Notes&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
====== [https://www.galinos.gr/web/drugs/main/drugs/utrogestran Utrogestan] ======&lt;br /&gt;
|Progesterone (P4) it is also referred to as prog&lt;br /&gt;
|5.83 euro/30 caps (100mg)&lt;br /&gt;
8.08 euro/15 caps (200mg)&lt;br /&gt;
([https://www.galinos.gr/service/drugs/drawPackagePrice/7619 Pricemap])&lt;br /&gt;
|?&lt;br /&gt;
|200mg daily (rectal administration)&lt;br /&gt;
|A&lt;br /&gt;
|Capsule&lt;br /&gt;
|Stops testosterone production.&lt;br /&gt;
|There is not much confirmed information about progesterone.&lt;br /&gt;
It can also be taken orally but the absorption rate is very low.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--T:59--&amp;gt;&lt;br /&gt;
Anecdotal claims:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--T:60--&amp;gt;&lt;br /&gt;
* Helps with breast development and with feminization in general.&lt;br /&gt;
* Can be given after one year of estradiol.&lt;br /&gt;
* Suggested to be given after the individual reaches Tanner stage 3.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--T:61--&amp;gt;&lt;br /&gt;
It can have androgenic or other (non-serious, recoverable) effects for some individuals - in particular it can be converted to DHT by the body even in combination with dutasteride or bicalutamide.&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--T:62--&amp;gt;&lt;br /&gt;
==== Other anti-androgens (optional) ====&lt;br /&gt;
These are used to block conversion of other androgens to DHT (which causes hair loss (hair) and body hair growth). They aren&#039;t general use Anti-Androgens.&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
!Brand Name(s)&lt;br /&gt;
!Substance&lt;br /&gt;
!Cost&lt;br /&gt;
!Cost with Healthcare Coverage&lt;br /&gt;
!Dosage&lt;br /&gt;
!Safety&lt;br /&gt;
!Form&lt;br /&gt;
!Type&lt;br /&gt;
!Notes&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
====== [https://www.galinos.gr/web/drugs/main/packages/26485 Dastidem], [https://www.galinos.gr/web/drugs/main/packages/25557 Rafuster], [https://www.galinos.gr/web/drugs/main/packages/25893 Duaride], [https://www.galinos.gr/web/drugs/main/packages/25894 Dustezor] ======&lt;br /&gt;
|Dutasteride&lt;br /&gt;
|7.90€/30 caps&lt;br /&gt;
|~6€/30 caps&lt;br /&gt;
|0.5mg/day (?/TBD)&lt;br /&gt;
|A-&lt;br /&gt;
|Capsule&lt;br /&gt;
| -&lt;br /&gt;
|High effectiveness.&lt;br /&gt;
|-&lt;br /&gt;
| -&lt;br /&gt;
|Finasteride&lt;br /&gt;
| -&lt;br /&gt;
| -&lt;br /&gt;
| -&lt;br /&gt;
|F&lt;br /&gt;
| -&lt;br /&gt;
| -&lt;br /&gt;
|Effectiveness is none to medium (Just take Dutasteride - will not stop conversion of Progesterone to DHT)&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--T:63--&amp;gt;&lt;br /&gt;
=== Blood Levels ===&lt;br /&gt;
&lt;br /&gt;
==== Refer to the [[Blood Testing]] page. ====&amp;lt;!--T:81--&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Transmasc ==&lt;br /&gt;
&lt;br /&gt;
=== Medications ===&lt;br /&gt;
&lt;br /&gt;
==== Testosterone ====&lt;br /&gt;
[https://www.galinos.gr/web/drugs/main/substances/testosterone/marketing Galinos.gr&#039;s testosterone availability page]&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|+&lt;br /&gt;
!Brand Name(s)&lt;br /&gt;
!Substance&lt;br /&gt;
!Form&lt;br /&gt;
!Method of Administration&lt;br /&gt;
!Cost&lt;br /&gt;
!Cost with Healthcare Coverage&lt;br /&gt;
!Dosage&lt;br /&gt;
!Safety&lt;br /&gt;
!Notes&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
====== [https://www.galinos.gr/web/drugs/main/packages/4929 Norma] ======&lt;br /&gt;
|Testosterone Enanthate&lt;br /&gt;
|Injection/Ampule&lt;br /&gt;
|Subcutaneous or Intramuscular&lt;br /&gt;
|17.67€/ampule &lt;br /&gt;
([https://www.galinos.gr/service/drugs/drawPackagePrice/4929 Pricemap])&lt;br /&gt;
|?&lt;br /&gt;
|?&lt;br /&gt;
|?&lt;br /&gt;
| -&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
====== [https://www.galinos.gr/web/drugs/main/packages/21943 Nebido] ======&lt;br /&gt;
|Testosterone Undecanoate&lt;br /&gt;
|Injection/Vial&lt;br /&gt;
|Intramuscular&lt;br /&gt;
|100.37€/vial&lt;br /&gt;
([https://www.galinos.gr/service/drugs/drawPackagePrice/21943 Pricemap])&lt;br /&gt;
|~32.52€/vial (you pay 25%)&lt;br /&gt;
|1 vial (1000mg/4mL)/10-20 weeks&lt;br /&gt;
|A&lt;br /&gt;
|As a starting dose &#039;&#039;&#039;after a year of HRT&#039;&#039;&#039;, you could also consider:&lt;br /&gt;
&lt;br /&gt;
* Instead of injecting one vial per 20 weeks, you do half every 10-12 weeks, however nothing could be sourced to support this. Though logically it could make sense as a practice.&lt;br /&gt;
* Do a test at 6 weeks after starting, if T is too high don&#039;t take the 2nd dose, if it&#039;s not you can take the 2nd and then test 2 weeks before every other dose.&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
====== [https://www.galinos.gr/web/drugs/main/packages/15739 Tostran] ======&lt;br /&gt;
|Testogel&lt;br /&gt;
|Gel&lt;br /&gt;
|Trans-dermally&lt;br /&gt;
|&#039;&#039;&#039;Starting dose&#039;&#039;&#039;&lt;br /&gt;
&amp;lt;!--T:82--&amp;gt;&lt;br /&gt;
* 35.54€/2 months&lt;br /&gt;
* 213.24€/year&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--T:83--&amp;gt;&lt;br /&gt;
&#039;&#039;&#039;30 mg dose&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--T:84--&amp;gt;&lt;br /&gt;
* 35.54€/40 days&lt;br /&gt;
* ~324.30€/year&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--T:85--&amp;gt;&lt;br /&gt;
&#039;&#039;&#039;40 mg dose&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--T:73--&amp;gt;&lt;br /&gt;
* 35.54€/30 days&lt;br /&gt;
* 426.48€/year&lt;br /&gt;
([https://www.galinos.gr/service/drugs/drawPackagePrice/15739 Pricemap])&lt;br /&gt;
|35.54€ -&amp;gt; 8.89€&lt;br /&gt;
|20mg/day (starting dose)&lt;br /&gt;
30-40mg/day&lt;br /&gt;
|A&lt;br /&gt;
|&lt;br /&gt;
* 1 pump of Tostran (&#039;&#039;&#039;0.5g&#039;&#039;&#039;) delivers 10 mg of T.&lt;br /&gt;
* 2 pumps of Tostran are 1 pump of Testogel (20.25mg of T)&lt;br /&gt;
* Can cause skin reactions.&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
==== GNRH Agonists ====&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
!Brand Name(s)&lt;br /&gt;
!Substance&lt;br /&gt;
! Cost&lt;br /&gt;
!Cost with Healthcare Coverage&lt;br /&gt;
!Dosage&lt;br /&gt;
!Safety&lt;br /&gt;
!Form&lt;br /&gt;
!Type&lt;br /&gt;
!Notes&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
====== [https://www.galinos.gr/web/drugs/main/drugs/Arvekap Arvekap] ======&lt;br /&gt;
|Triptorelin&lt;br /&gt;
| -&lt;br /&gt;
|~200/year?&lt;br /&gt;
|&lt;br /&gt;
|A?&lt;br /&gt;
|Injection&lt;br /&gt;
|GNRH Agonist&lt;br /&gt;
(indirectly) Stops testosterone AND estrogen production&lt;br /&gt;
|Also a puberty blocker&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
==== Other anti-androgens (optional) ====&lt;br /&gt;
These are used to block conversion of other androgens to DHT (which causes hair loss (hair) and body hair growth). They aren&#039;t general use Anti-Androgens.&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
!Brand Name(s)&lt;br /&gt;
!Substance&lt;br /&gt;
!Cost&lt;br /&gt;
!Cost with Healthcare Coverage&lt;br /&gt;
!Dosage&lt;br /&gt;
!Safety&lt;br /&gt;
!Form&lt;br /&gt;
!Type&lt;br /&gt;
!Notes&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
====== [https://www.galinos.gr/web/drugs/main/packages/26485 Dastidem], [https://www.galinos.gr/web/drugs/main/packages/25557 Rafuster], [https://www.galinos.gr/web/drugs/main/packages/25893 Duaride], [https://www.galinos.gr/web/drugs/main/packages/25894 Dustezor] ======&lt;br /&gt;
|Dutasteride&lt;br /&gt;
|7.90€/30 caps&lt;br /&gt;
|~6€/30 caps&lt;br /&gt;
|0.5mg/day (?/TBD)&lt;br /&gt;
|A-&lt;br /&gt;
|Capsule&lt;br /&gt;
| -&lt;br /&gt;
|High effectiveness. &lt;br /&gt;
Not to be confused with proper Anti-Androgens.&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== Nonbinary hrt *under construction* ==&lt;br /&gt;
&lt;br /&gt;
=== !!! disclaimer-warning about potential issues !!! ===&lt;br /&gt;
&lt;br /&gt;
=== General outline of nb hrt for amab and afab ===&lt;br /&gt;
&lt;br /&gt;
=== Medications ===&lt;br /&gt;
&lt;br /&gt;
==== Selective Estrogen Receptor Modulators (SERMs) ====&lt;br /&gt;
&lt;br /&gt;
* Tamoxifen is a selective estrogen receptor modulator (SERM). In some tissues such as the brain it activates estrogen receptors, which may help reduce dysphoria. In breast tissue it antagonizes estrogen receptors, preventing the formation of breast tissue if desired. There is some evidence that Tamoxifen inhibits memory, though the effects of taking it alongside regular estrogen are undocumented. Tamoxifen can cause cognitive dysfunction and increase your risk of stroke and pulmonary embolism. Tamoxifen may also be taken alongside 17β-estradiol, more research is needed. In this combination, estradiol should still have its effects (combating dysphoria in the brain, redistribution of body fat, smoother skin etc.) while tamoxifen prevents the growth of breast tissue.&lt;br /&gt;
* Raloxifene is another SERM. It is an estrogen receptor antagonist in breast tissue. It is an estrogen receptor agonist in bone and can be used to prevent osteoporosis. Raloxifene has been shown to reduce ERα expression in breast tissue in premenopausal women. As the synthesis of progesterone receptors (PR) is estrogen-regulated, raloxifene also decreases the expression of PR. Additionally, it was shown to decrease the presence of Ki-67, a biomarker for cell proliferation, in breast tissue of premenopausal women. As a result, it can be used to treat gynecomastia, and has been shown effective in reducing breast size in those with the condition. Raloxifene may promote feminine fat distribution: in a study on 56-66 year old postmenopausal women, there was an increase in fat in the legs and buttocks and a decrease in fat in the abdomen and trunk after 1 year on 60 mg/day raloxifene. It is not yet known how pronounced this effect is, as there have been no comparisons of body fat distribution between raloxifene and estradiol. Raloxifene may increase the risk of stroke and pulmonary embolism.&lt;br /&gt;
* Afimoxifene is a topical SERM and the primary metabolite of tamoxifen.&lt;br /&gt;
&lt;br /&gt;
==== Anti-androgens ====&lt;br /&gt;
&lt;br /&gt;
==== Bicalutamide ====&lt;br /&gt;
Bicalutamide is an  anti-androgen which is used mainly in the treatment of prostate cancer but can also be used to treat hirsutism, or as a component of hormone therapy in feminizing HRT, among other uses. It is nonsteroidal anti-androgen and a selective/pure antagonist of the androgen receptor. It has no other hormonal activity and does not lower androgen levels. Bicalutamide crosses the blood-brain barrier and blocks the effects of testosterone and dihydrotestosterone (DHT) both in the body and in the brain. While it has been observed that bicalutamide does not cross the blood-brain barrier in rats and dogs, this was found not to be the case in humans&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
In general Ralox seems the best idea based on overall effectiveness and less severe side effects compared to other SERMs. Most people on this kind of MtNB hrt seem to be using a combination of ralox (in place of estradiol) and bica [expand this + powers e1s schizo stuff?]&lt;br /&gt;
&lt;br /&gt;
== Legal ==&lt;br /&gt;
It is legal to buy anything without a diagnosis or a prescription (off the counter - OTC), Testosterone can be hit or miss, look for [https://www.galinos.gr/web/drugs/main/packages/15739 Tostran] (Testogel) or [https://www.galinos.gr/web/drugs/main/packages/4929 TEn] (Testosterone Enanthate/Norma, injections).  &lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--T:86--&amp;gt;&lt;br /&gt;
You can also check the &#039;&#039;&#039;[https://diyon.top/map Trans-Friendly Pharmacies Map]&#039;&#039;&#039; for any pharmacies near you (this goes for both Transfem and Transmasc HRT). &lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--T:75--&amp;gt;&lt;br /&gt;
There is no minimum or maximum legal age for someone to start HRT. &lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--T:76--&amp;gt;&lt;br /&gt;
It is not legally mandatory for someone to have a diagnosis by a psychiatrist in order to medically transition.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--T:77--&amp;gt;&lt;br /&gt;
There is no legally mandatory time restriction for a psychiatrist to monitor you before diagnosing you.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--T:78--&amp;gt;&lt;br /&gt;
You don&#039;t legally need to be on HRT in order to be exempt from the [[army]], change your [[Legal|legal sex]], or to have a [[surgery]].&lt;br /&gt;
&lt;br /&gt;
== Other resources == &amp;lt;!--T:79--&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--T:80--&amp;gt;&lt;br /&gt;
* Simulator: https://www.estrannai.se/&lt;br /&gt;
* https://transfemscience.org/ (note, the authors of this site disagree with a lot of what they are saying, regardless, it is still interesting)&lt;br /&gt;
** Introduction to Hormone Therapy for Transfeminine People: https://transfemscience.org/articles/transfem-intro/&lt;br /&gt;
** Older simulator: https://transfemscience.org/misc/injectable-e2-simulator/&lt;br /&gt;
** Dosage calculator: https://transfemscience.org/misc/injectable-dose-vol-conc-conv/&lt;br /&gt;
* https://diyhrt.wiki/ (alt link: https://anarch.cc/transfeminine-diy-hrt-the-ultimate-guide-2/)&lt;br /&gt;
* https://hrtcafe.net/&lt;br /&gt;
* ?? https://hrt.coffee/&lt;br /&gt;
* https://www.reddit.com/r/TransDIY/&lt;br /&gt;
* https://www.reddit.com/r/TransfemScience/&lt;br /&gt;
* https://groups.io/g/MTFHRT/wiki/29602 (alt link: https://anarch.cc/mtf-hrt-ultimate-diy/)&lt;br /&gt;
* https://hrt.cat/ - info for making your own (you will probably not need it - version 1.0: https://hrtcafe.net/hrtcat/)&lt;br /&gt;
* https://archive.ph/uQb8g (alt link: https://anarch.cc/making-your-own-injections/, as above)&lt;br /&gt;
* https://crimethinc.com/2022/12/15/producing-transdermal-estrogen-a-do-it-yourself-guide (alt link: https://anarch.cc/producing-transdermal-estrogen-a-do-it-yourself-guide/, as above)&lt;br /&gt;
* https://archive.ph/cpy7k (alt link: https://anarch.cc/homebrewing-hormones-mtf-guide/, as above)&lt;br /&gt;
&amp;lt;/translate&amp;gt;&lt;/div&gt;</summary>
		<author><name>Goblinmoder</name></author>
	</entry>
	<entry>
		<id>https://wiki.diyon.top/index.php?title=HRT&amp;diff=997</id>
		<title>HRT</title>
		<link rel="alternate" type="text/html" href="https://wiki.diyon.top/index.php?title=HRT&amp;diff=997"/>
		<updated>2025-04-17T11:27:20Z</updated>

		<summary type="html">&lt;p&gt;Goblinmoder: added disclaimer&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{#seo:&lt;br /&gt;
|title_mode=replace&lt;br /&gt;
|title=HRT&lt;br /&gt;
|description=We are open to discussion and actively on-going changes in formatting and contents of this Page and Website (in general). The e-mail address to refer to is fox@diyon.top&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
&amp;lt;languages/&amp;gt;&lt;br /&gt;
&amp;lt;translate&amp;gt;&lt;br /&gt;
&amp;lt;!--T:41--&amp;gt;&lt;br /&gt;
After around a month on HRT some of your ranges in your [[Blood Testing|blood test]] should be within desired ranges.&lt;br /&gt;
&lt;br /&gt;
== Disclaimer ==&lt;br /&gt;
 To clarify on &#039;&#039;&#039;dosages&#039;&#039;&#039;, the values mentioned below are rather speculative and most are based on &#039;&#039;&#039;personal experiences&#039;&#039;&#039;. Therefore it is encouraged to do [[Blood Testing|blood tests]] and if possible, check with an [[Doctors#Ενδοκρινολόγοι|endocrinologist]] (we also suggest [[Doctors]] that can help with such cases), especially if you have any specific &#039;&#039;&#039;health conditions&#039;&#039;&#039;. &lt;br /&gt;
Pricemaps are there to evaluate prices through &#039;&#039;&#039;[https://galinos.gr galinos.gr]&#039;&#039;&#039; (in case something is outdated, look for the green line that says &amp;quot;Λιανική&amp;quot;)&lt;br /&gt;
&lt;br /&gt;
We are open to discussion and actively on-going changes in formatting and contents of this Page and Website (in general). The e-mail address to refer to is &#039;&#039;&#039;fox@diyon.top&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--T:43--&amp;gt;&lt;br /&gt;
== Transfem ==&lt;br /&gt;
Taking Puberty Blockers ([[HRT#Antiandrogens and GNRH Agonists|GNRH Agonists]], e.g: Arvekap) or any Anti Androgen (e.g: Aldactone, Androcur) &#039;&#039;&#039;without [[HRT#Estrogens|Estrogens]]&#039;&#039;&#039; is generally discouraged even during youth transitioning (This is &#039;&#039;&#039;non-definitive&#039;&#039;&#039; for Enby folks)&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--T:44--&amp;gt;&lt;br /&gt;
=== Monotherapy ===&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|+&lt;br /&gt;
!Type&lt;br /&gt;
!Commercial Names&lt;br /&gt;
!Dosage&lt;br /&gt;
!Notes&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
====== Sublingual (E Valerate or Hemihydrate) ======&lt;br /&gt;
|Cyclacur (EV), Estrofem (EH, imported), Trisequens (12 pills 2mg EH, 10 pills norgestrel, 6 pills 1mg EH)&lt;br /&gt;
|&amp;gt;=8-12mg/day&lt;br /&gt;
|While it is possible, even with a smaller dosage (&#039;&#039;&#039;at least 6mg&#039;&#039;&#039;), it&#039;s not that common. Ideally, use your blood tests to &#039;&#039;&#039;minmax&#039;&#039;&#039; your doses.&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
====== Injectable Estradiol Valerate (EV) ======&lt;br /&gt;
|Neofollin (can be ordered from pharmacies near Czechia, or aptekaapo.com &#039;&#039;&#039;but they’re not on hrtcafe&#039;&#039;&#039;, not tested in Greece), Delestrogen (Vial, unavailable), Progynon Depot (Ampules, unavailable), [[File:What-excuse-me.gif|thumb|[[HRT#Other resources|my honest reaction]]]]&lt;br /&gt;
|5-7mg/5 days&lt;br /&gt;
|&lt;br /&gt;
* Due to the large spikes in levels combined with the short [https://en.wikipedia.org/wiki/Biological_half-life half-life] it is not recommended for dosages to surpass the 5 day mark because it may cause menopause symptoms.&lt;br /&gt;
* Branded versions of this medication are not available in greece.&lt;br /&gt;
* The ampules contain a certain mg and do not allow for larger dosages, they are not re-usable. It is recommended to use a vial with a cap.&lt;br /&gt;
* Look for &#039;&#039;&#039;[https://arc-w.nihr.ac.uk/Wordpress/wp-content/uploads/2015/07/Low-dead-space-syringes.png syringe dead space]([[HRT#:~:text=* = It has been mentioned that syringes account for dead space, although that is not 100% certain.|*]])&#039;&#039;&#039;, e.g. if there&#039;s &#039;&#039;&#039;0.05mL&#039;&#039;&#039; remaining after injecting, draw &#039;&#039;&#039;+0.05mL&#039;&#039;&#039; from the vial.&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
====== Injectable Estradiol Cypionate (EC) ======&lt;br /&gt;
|[[File:What-excuse-me.gif|thumb|[[HRT#Other resources|my honest reaction]]]]Depo-Estradiol (US only, unavailable),&lt;br /&gt;
|5-7mg/7 days&lt;br /&gt;
|&lt;br /&gt;
* Look for &#039;&#039;&#039;[https://arc-w.nihr.ac.uk/Wordpress/wp-content/uploads/2015/07/Low-dead-space-syringes.png syringe dead space]([[HRT#:~:text=* = It has been mentioned that syringes account for dead space, although that is not 100% certain.|*]])&#039;&#039;&#039;, e.g. if there&#039;s &#039;&#039;&#039;0.05mL&#039;&#039;&#039; remaining after injecting, draw &#039;&#039;&#039;+0.05mL&#039;&#039;&#039; from the vial.&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
====== Injectable Estradiol Enanthate (EEn) ======&lt;br /&gt;
|[[File:What-excuse-me.gif|thumb|[[HRT#Other resources|my honest reaction]]]]&lt;br /&gt;
|4-7mg/7 days&lt;br /&gt;
7-10mg/10 days (7.2mg usually, depending on the vial, it&#039;s optimal because drawing cents of mL are hard to get right)&lt;br /&gt;
|&lt;br /&gt;
* You can multiply the weekly dosage by 2, which lasts up to 14 days (as much as the [https://en.wikipedia.org/wiki/Biological_half-life half-life] of Enanthate)&lt;br /&gt;
* Look for &#039;&#039;&#039;[https://arc-w.nihr.ac.uk/Wordpress/wp-content/uploads/2015/07/Low-dead-space-syringes.png syringe dead space]([[HRT#:~:text=* = It has been mentioned that syringes account for dead space, although that is not 100% certain.|*]])&#039;&#039;&#039;, e.g. if there&#039;s &#039;&#039;&#039;0.05mL&#039;&#039;&#039; remaining after injecting, draw &#039;&#039;&#039;+0.05mL&#039;&#039;&#039; from the vial.&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
====== Injectable Estradiol Undecylate (EU/EUn) ======&lt;br /&gt;
|[[File:What-excuse-me.gif|thumb|[[HRT#Other resources|my honest reaction]]]]&lt;br /&gt;
|There&#039;s not enough information on dosage. The frequency of those may differ according to the oil used (MCT/Castor oil). Indicative Dosages:&lt;br /&gt;
15-20mg/2 weeks&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--T:45--&amp;gt;&lt;br /&gt;
20-40mg+/4 weeks&lt;br /&gt;
|&lt;br /&gt;
* There&#039;s not enough information on its [[wikipedia:Biological_half-life|half-life]], a higher dosage can be administered that can last up to 20-30 days.&lt;br /&gt;
* [[wikipedia:Intramuscular_injection|IM injections]] last longer so they give better levels during the same period of time per injection.&lt;br /&gt;
* Needs at least 90 days to reach stable levels.&lt;br /&gt;
* Look for &#039;&#039;&#039;[https://arc-w.nihr.ac.uk/Wordpress/wp-content/uploads/2015/07/Low-dead-space-syringes.png syringe dead space]([[HRT#:~:text=* = It has been mentioned that syringes account for dead space, although that is not 100% certain.|*]])&#039;&#039;&#039;, e.g. if there&#039;s &#039;&#039;&#039;0.05mL&#039;&#039;&#039; remaining after injecting, draw &#039;&#039;&#039;+0.05mL&#039;&#039;&#039; from the vial.&lt;br /&gt;
|}&lt;br /&gt;
&#039;&#039;&#039;*&#039;&#039;&#039; = It has been mentioned that syringes account for dead space, although that is not 100% certain.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--T:46--&amp;gt;&lt;br /&gt;
=== Sublingual vs Oral ===&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|+&lt;br /&gt;
!Method&lt;br /&gt;
!Substance&lt;br /&gt;
!Dosage&lt;br /&gt;
!Observations&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
====== Oral ======&lt;br /&gt;
|Estradiol Valerate in pill form (e.g. Cyclacur)&lt;br /&gt;
|&amp;gt;=6mg/day&lt;br /&gt;
(max 10mg as per Dr. Powers)&lt;br /&gt;
|It is recommended that doses are taken separately on set time intervals during the day for more stable estradiol levels, e.g. for a 6mg dose you would take 2mg per 8 hours. By the oral route the active substance is metabolized by the liver and part of it is converted to estrone (E1), which has much less feminizing effects than estradiol (E2) so the desired effect is essentially prevented. The bioavailability of estradiol by oral administration is very low (~5%) and usually lower levels of E2 are observed in blood tests than other methods of administration. [anecdotal apo to server, wikipedia kai tttt - correct/expand?] It is also necessary to administer anti-androgens to reduce testosterone levels to the female range.&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
====== Sublingual ======&lt;br /&gt;
|Estradiol Valerate in pill form (e.g. Cyclacur)&lt;br /&gt;
|&amp;gt;=4mg/day&lt;br /&gt;
|It is recommended that doses are taken separately on set time intervals during the day for more stable estradiol levels, e.g. for a 6mg dose you would take 2mg per 8 hours. The sublingual way bypasses estradiol metabolism by the liver and has about 5 times the estradiol bioavailability of the oral way. This way, estradiol levels have greater range than orally (higher peak lower bottom), in oral they remain higher for ~12 hours while sublingually they go away after 3-4 hours [idk if honscience the study is from 2005 on cis women]&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== Vial info === &amp;lt;!--T:47--&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--T:48--&amp;gt;&lt;br /&gt;
=== Medications ===&lt;br /&gt;
For cyclacur: &#039;&#039;&#039;take only the white pills, the brown pills are Norgestrel which have 0.5mg of estradiol but has an androgenic effect and may also cause other side effects&#039;&#039;&#039;. &lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--T:49--&amp;gt;&lt;br /&gt;
==== Estrogens ====&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|+&lt;br /&gt;
!Brand Name(s)&lt;br /&gt;
!Substance&lt;br /&gt;
!Form&lt;br /&gt;
!Method of Administration&lt;br /&gt;
!Cost&lt;br /&gt;
!Cost with Healthcare Coverage&lt;br /&gt;
!Dosage&lt;br /&gt;
!Safety&lt;br /&gt;
!Notes&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
====== [https://www.galinos.gr/web/drugs/main/drugs/Cyclacur Cyclacur] ======&lt;br /&gt;
|Estradiol Valerate (EV)&lt;br /&gt;
|Pill tablet&lt;br /&gt;
|Orally or sublingually&lt;br /&gt;
|2.01€ for 11 pills ([https://www.galinos.gr/service/drugs/drawPackagePrice/1198 Pricemap])&lt;br /&gt;
~130.8-328.€/year&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--T:50--&amp;gt;&lt;br /&gt;
~10.9-27.4€/month&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--T:51--&amp;gt;&lt;br /&gt;
Prices are indicative, the cost depends on the dosage.&lt;br /&gt;
| -&lt;br /&gt;
|6mg-10mg/day (according to Dr. Will Powers)&lt;br /&gt;
4mg-8mg/day (according to Greek Endocrinologists)&lt;br /&gt;
|A&lt;br /&gt;
|&lt;br /&gt;
* &#039;&#039;&#039;Only white pills are used.&#039;&#039;&#039; Brown pills do have a bit of estradiol but arent taken due to other side effects.&lt;br /&gt;
* You need antiandrogens or GNRH antagonists if you haven&#039;t had an orchiectomy.&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
====== Progynova ======&lt;br /&gt;
|Estradiol Valerate (EV)&lt;br /&gt;
|Pill tablet&lt;br /&gt;
|Orally or sublingually&lt;br /&gt;
|~22€ for 72 pills of 1 mg or ~32€ for 72 pills of 2 mg&lt;br /&gt;
Prices are indicative, the cost depends on the dosage.&lt;br /&gt;
| -&lt;br /&gt;
|4mg-8mg/day&lt;br /&gt;
|A&lt;br /&gt;
|&lt;br /&gt;
* There is no reason to use it in Greece since Cyclacur is available in Greek pharmacies.&lt;br /&gt;
* You need antiandrogens or GNRH antagonists if you haven&#039;t had an orchiectomy.&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
====== Estrofem, Estrifam (german brand name), [https://www.galinos.gr/web/drugs/main/drugs/trisequens Trisequens] ======&lt;br /&gt;
|Estradiol Hemihydrate&lt;br /&gt;
|Pill tablet&lt;br /&gt;
|Orally or sublingually&lt;br /&gt;
|~30€ for 28 pills of 2 mg without shipping costs.&lt;br /&gt;
Prices are indicative, the cost depends on the dosage.&lt;br /&gt;
| -&lt;br /&gt;
|4mg-8mg/day&lt;br /&gt;
|A&lt;br /&gt;
|&lt;br /&gt;
* There is no reason to use it in Greece since Cyclacur is available in Greek pharmacies.&lt;br /&gt;
* You need antiandrogens or GNRH antagonists if you haven&#039;t had an orchiectomy.&lt;br /&gt;
* Trisequens, while being available in Greece, is odd to take with 12 pills being 2mg EH, 10 norgestrel, and 6 1mg EH, for a much higher price than [[HRT#Cyclacur|Cyclacur]].&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
====== [https://www.galinos.gr/web/drugs/main/drugs/Dermestril Dermestril] ======&lt;br /&gt;
|Estradiol Hemihydrate&lt;br /&gt;
|Patch&lt;br /&gt;
|Trans-dermally&lt;br /&gt;
|44€ for 24 patches of 100mcg&lt;br /&gt;
~15€ for 8 patches of 50mcg&lt;br /&gt;
| -&lt;br /&gt;
|50mcg/3.5 days (when starting off)&lt;br /&gt;
100mcg/3.5 days (whenever your e2 levels are stable)&lt;br /&gt;
|A&lt;br /&gt;
|&lt;br /&gt;
* &#039;&#039;&#039;If you have no idea how to apply patches watch this:&#039;&#039;&#039; [https://youtu.be/tXGIYWPqdpI?si=O0dlE19pq0ic0PZP Demonstrational Video]&lt;br /&gt;
* You need antiandrogens or GNRH antagonists if you haven&#039;t had an orchiectomy.&lt;br /&gt;
* 100mcg patches can be cut into 2 if needed.&lt;br /&gt;
|-&lt;br /&gt;
|Neofollin (can be ordered from pharmacies near Czechia, not tested in Greece), Delestrogen (Vial, unavailable), Progynon Depot (Ampules, unavailable)&lt;br /&gt;
|&lt;br /&gt;
====== Estradiol Valerate (EV) ======&lt;br /&gt;
|Injectable&lt;br /&gt;
|Subcutaneous or Intramuscular&lt;br /&gt;
|80€/year (including shipping costs, syringes and alcohol swabs)&lt;br /&gt;
| -&lt;br /&gt;
|5-7mg/5 days (monotherapy)&lt;br /&gt;
4-5mg/7 days (only in combination with an antiandrogen or GNRH agonist)&lt;br /&gt;
|A+&lt;br /&gt;
|&lt;br /&gt;
* It can be used without antiandrogens or GNRH agonists in ([[HRT#Μονοθεραπεία|Monotherapy]]) by increasing the dosage.&lt;br /&gt;
|-&lt;br /&gt;
|Depo-Estradiol (US only, unavailable)&lt;br /&gt;
|&lt;br /&gt;
====== Estradiol Cypionate (EC) ======&lt;br /&gt;
|Injectable&lt;br /&gt;
|Subcutaneous or Intramuscular&lt;br /&gt;
|~70-80€/year (not including shipping costs, syringes and alcohol swabs)&lt;br /&gt;
| -&lt;br /&gt;
|5-7mg/7 days&lt;br /&gt;
(&#039;&#039;&#039;mono dose&#039;&#039;&#039;)&lt;br /&gt;
? (TBD/&#039;&#039;&#039;dose with AA&#039;&#039;&#039;)&lt;br /&gt;
|?&lt;br /&gt;
|&lt;br /&gt;
* It can be used without antiandrogens or GNRH agonists in ([[HRT#Μονοθεραπεία|Monotherapy]])&lt;br /&gt;
|-&lt;br /&gt;
| -&lt;br /&gt;
|&lt;br /&gt;
====== Estradiol Enanthate (EEn) ======&lt;br /&gt;
|Injectable&lt;br /&gt;
|Subcutaneous or Intramuscular&lt;br /&gt;
|80€/year (including shipping costs, syringes and alcohol swabs)&lt;br /&gt;
| -&lt;br /&gt;
|2.5mg-7mg/7 days&lt;br /&gt;
(usual dosage: 4mg/7days)&lt;br /&gt;
|A+&lt;br /&gt;
|&lt;br /&gt;
* It can be used without antiandrogens or GNRH agonists in ([[HRT#Μονοθεραπεία|Monotherapy]]) by increasing the dosage.&lt;br /&gt;
|-&lt;br /&gt;
| -&lt;br /&gt;
|&lt;br /&gt;
====== Estradiol Undecylate (EU, EUn) ======&lt;br /&gt;
|Injectable&lt;br /&gt;
|Subcutaneous or Intramuscular&lt;br /&gt;
|130€/year (including shipping costs, syringes and alcohol swabs)&lt;br /&gt;
| -&lt;br /&gt;
|15-20mg/2 weeks&lt;br /&gt;
20-40mg+/4 weeks&lt;br /&gt;
|A+&lt;br /&gt;
|&lt;br /&gt;
* There&#039;s not much info on dosages, usually seen in [[HRT#Μονοθεραπεία|monotherapy]].&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--T:52--&amp;gt;&lt;br /&gt;
==== Anti-Androgens and GNRH Agonists ====&lt;br /&gt;
These should &#039;&#039;&#039;not&#039;&#039;&#039; be taken sublingually.&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|+&lt;br /&gt;
!Brand Name(s)&lt;br /&gt;
!Substance&lt;br /&gt;
!Cost&lt;br /&gt;
!Cost with Healthcare Coverage&lt;br /&gt;
!Dosage&lt;br /&gt;
!Safety&lt;br /&gt;
!Form&lt;br /&gt;
!Type&lt;br /&gt;
!Notes&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
====== [https://www.galinos.gr/web/drugs/main/drugs/Androcur Androcur] ======&lt;br /&gt;
|Cyproterone Acetate (CPA) is also referred to as cypro&lt;br /&gt;
|21.58€/50mg * 50 pills &lt;br /&gt;
19.7-31.5€/year&lt;br /&gt;
&lt;br /&gt;
([https://www.galinos.gr/service/drugs/drawPackagePrice/8023 Pricemap])&lt;br /&gt;
|?&lt;br /&gt;
|12.5mg/2 days- 10mg/day&lt;br /&gt;
&#039;&#039;&#039;Larger doses shouldn&#039;t be administered&#039;&#039;&#039;&lt;br /&gt;
|C&lt;br /&gt;
|Pill tablet&lt;br /&gt;
|Progestin (Steroidal antiandrogen)&lt;br /&gt;
Stops testosterone production.&lt;br /&gt;
|The max recommended dosage is 10mg/day . Monitoring of prolactin levels is recommended through [[Blood Testing#MTF|blood testing]].&lt;br /&gt;
&#039;&#039;&#039;Many doctors give overdoses of 50 mg/day. Cyproterone is a strong anti-androgen and testosterone suppression is possible with lower doses. A change of doctor is recommended.&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--T:53--&amp;gt;&lt;br /&gt;
[[wikipedia:Side_effects_of_cyproterone_acetate|Side Effects]]:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--T:54--&amp;gt;&lt;br /&gt;
* Benign brain tumor.&lt;br /&gt;
* In rare cases, liver damage.&lt;br /&gt;
* Vitamin B12 deficiency.&lt;br /&gt;
* Breast cancer.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--T:55--&amp;gt;&lt;br /&gt;
Testosterone suppression can be achieved with even lower doses, however a 50 mg pill is difficult to cut into pieces of less than 12.5 mg even with a pill cutter.&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
====== [https://www.galinos.gr/web/drugs/main/drugs/Bicalut Bicalut] ======&lt;br /&gt;
|Bicalutamide (aka: bica)&lt;br /&gt;
|29.10 euro/30 pills&lt;br /&gt;
29.10 euro/month&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--T:56--&amp;gt;&lt;br /&gt;
~350 euro/year&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
([https://www.galinos.gr/service/drugs/drawPackagePrice/11120 Pricemap])&lt;br /&gt;
|6.77 euro/month (28 tabs)&lt;br /&gt;
~95 euro/year&lt;br /&gt;
|50mg/day&lt;br /&gt;
|A-&lt;br /&gt;
|Pill/Tablet&lt;br /&gt;
|Androgen receptor antagonist (Nonsteroidal antiandrogen)&lt;br /&gt;
Blocks absorption of all androgens (including testosterone)&lt;br /&gt;
|&#039;&#039;&#039;Serious negative interactions can be noted if combined with other anti-androgens and GNRH agonists (except progesterone)&#039;&#039;&#039;&lt;br /&gt;
&#039;&#039;&#039;Very rare&#039;&#039;&#039; chance for recoverable and non-fatal liver damage for people with a certain rare mutation.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--T:57--&amp;gt;&lt;br /&gt;
Most of the effects listen in the instruction manual are scaremongering. (it lists a very high chance of liver issues when they are actually very rare, and also lists photosensitivity, which if it even occurs at all, it should be quite rare. We are aware of nobody who had a negative interction between alexandrite laser hair removal and bicalutamide).&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--T:58--&amp;gt;&lt;br /&gt;
Note that bicalutamide, unlike most other anti-androgens, &#039;&#039;&#039;does not&#039;&#039;&#039; lower testosterone levels, in fact they usually rise as the body responds to testosterone receptors being inhibited. Do not be alarmed if you notice an increase of testosterone in your blood tests.&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
====== [https://www.galinos.gr/web/drugs/main/drugs/Arvekap Arvekap] ======&lt;br /&gt;
|Triptorelin&lt;br /&gt;
| -&lt;br /&gt;
|~200/year?&lt;br /&gt;
|&lt;br /&gt;
|A?&lt;br /&gt;
|Injection&lt;br /&gt;
|GNRH Agonist&lt;br /&gt;
(indirectly) Stops testosterone AND estrogen production&lt;br /&gt;
|Also a puberty blocker&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
====== [https://www.galinos.gr/web/drugs/main/drugs/aldactone Aldactone] ======&lt;br /&gt;
|Spironolactone&lt;br /&gt;
|5.19 euro/20 tabs (100mg)&lt;br /&gt;
([https://www.galinos.gr/service/drugs/drawPackagePrice/148 Pricemap])&lt;br /&gt;
|?&lt;br /&gt;
|50mg-200mg/day&lt;br /&gt;
|B-C&lt;br /&gt;
|Tablet&lt;br /&gt;
|Antimineralocorticoid/MCRA&lt;br /&gt;
|Very inefficient, makes you pee, it&#039;s a medication for blood pressure&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
|Flutamide&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|F---&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|Only in this table as an example to avoid&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
==== Miscellaneous/Progesterone ====&lt;br /&gt;
Progesterone falls under this category, as it is not quite the same as other Anti-Androgens, the mention of Progesterone in this title is necessary in order to reduce confusion and questions such as &amp;quot;Where is progesterone?&amp;quot; and &amp;quot;Did you remove prog from the page?&amp;quot;.&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
!Brand Name(s)&lt;br /&gt;
!Substance&lt;br /&gt;
!Cost&lt;br /&gt;
!Cost with Healthcare Coverage&lt;br /&gt;
!Dosage&lt;br /&gt;
!Safety&lt;br /&gt;
!Form&lt;br /&gt;
!Type&lt;br /&gt;
!Notes&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
====== [https://www.galinos.gr/web/drugs/main/drugs/utrogestran Utrogestan] ======&lt;br /&gt;
|Progesterone (P4) it is also referred to as prog&lt;br /&gt;
|6.56 euro/15 caps (200mg)&lt;br /&gt;
([https://www.galinos.gr/service/drugs/drawPackagePrice/7619 Pricemap])&lt;br /&gt;
|?&lt;br /&gt;
|200mg daily (rectal administration)&lt;br /&gt;
|A&lt;br /&gt;
|Capsule&lt;br /&gt;
|Stops testosterone production.&lt;br /&gt;
|There is not much confirmed information about progesterone.&lt;br /&gt;
It can also be taken orally but the absorption rate is very low.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--T:59--&amp;gt;&lt;br /&gt;
Anecdotal claims:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--T:60--&amp;gt;&lt;br /&gt;
* Helps with breast development and with feminization in general.&lt;br /&gt;
* Can be given after one year of estradiol.&lt;br /&gt;
* Suggested to be given after the individual reaches Tanner stage 3.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--T:61--&amp;gt;&lt;br /&gt;
It can have androgenic or other (non-serious, recoverable) effects for some individuals - in particular it can be converted to DHT by the body even in combination with dutasteride or bicalutamide.&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--T:62--&amp;gt;&lt;br /&gt;
==== Other anti-androgens (optional) ====&lt;br /&gt;
These are used to block conversion of other androgens to DHT (which causes hair loss (hair) and body hair growth). They aren&#039;t general use Anti-Androgens.&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
!Brand Name(s)&lt;br /&gt;
!Substance&lt;br /&gt;
!Cost&lt;br /&gt;
!Cost with Healthcare Coverage&lt;br /&gt;
!Dosage&lt;br /&gt;
!Safety&lt;br /&gt;
!Form&lt;br /&gt;
!Type&lt;br /&gt;
!Notes&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
====== [https://www.galinos.gr/web/drugs/main/packages/26485 Dastidem], [https://www.galinos.gr/web/drugs/main/packages/25557 Rafuster], [https://www.galinos.gr/web/drugs/main/packages/25893 Duaride], [https://www.galinos.gr/web/drugs/main/packages/25894 Dustezor] ======&lt;br /&gt;
|Dutasteride&lt;br /&gt;
|7.90€/30 caps&lt;br /&gt;
|~6€/30 caps&lt;br /&gt;
|0.5mg/day (?/TBD)&lt;br /&gt;
|A-&lt;br /&gt;
|Capsule&lt;br /&gt;
| -&lt;br /&gt;
|High effectiveness.&lt;br /&gt;
|-&lt;br /&gt;
| -&lt;br /&gt;
|Finasteride&lt;br /&gt;
| -&lt;br /&gt;
| -&lt;br /&gt;
| -&lt;br /&gt;
|F&lt;br /&gt;
| -&lt;br /&gt;
| -&lt;br /&gt;
|Effectiveness is none to medium (Just take Dutasteride - will not stop conversion of Progesterone to DHT)&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--T:63--&amp;gt;&lt;br /&gt;
=== Blood Levels ===&lt;br /&gt;
&lt;br /&gt;
==== Refer to the [[Blood Testing]] page. ====&amp;lt;!--T:81--&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Transmasc ==&lt;br /&gt;
&lt;br /&gt;
=== Medications ===&lt;br /&gt;
&lt;br /&gt;
==== Testosterone ====&lt;br /&gt;
[https://www.galinos.gr/web/drugs/main/substances/testosterone/marketing Galinos.gr&#039;s testosterone availability page]&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|+&lt;br /&gt;
!Brand Name(s)&lt;br /&gt;
!Substance&lt;br /&gt;
!Form&lt;br /&gt;
!Method of Administration&lt;br /&gt;
!Cost&lt;br /&gt;
!Cost with Healthcare Coverage&lt;br /&gt;
!Dosage&lt;br /&gt;
!Safety&lt;br /&gt;
!Notes&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
====== [https://www.galinos.gr/web/drugs/main/packages/4929 Norma] ======&lt;br /&gt;
|Testosterone Enanthate&lt;br /&gt;
|Injection/Ampule&lt;br /&gt;
|Subcutaneous or Intramuscular&lt;br /&gt;
|17.67€/ampule &lt;br /&gt;
([https://www.galinos.gr/service/drugs/drawPackagePrice/4929 Pricemap])&lt;br /&gt;
|?&lt;br /&gt;
|?&lt;br /&gt;
|?&lt;br /&gt;
| -&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
====== [https://www.galinos.gr/web/drugs/main/packages/21943 Nebido] ======&lt;br /&gt;
|Testosterone Undecanoate&lt;br /&gt;
|Injection/Vial&lt;br /&gt;
|Intramuscular&lt;br /&gt;
|100.37€/vial&lt;br /&gt;
([https://www.galinos.gr/service/drugs/drawPackagePrice/21943 Pricemap])&lt;br /&gt;
|~32.52€/vial (you pay 25%)&lt;br /&gt;
|1 vial (1000mg/4mL)/10-20 weeks&lt;br /&gt;
|A&lt;br /&gt;
|As a starting dose &#039;&#039;&#039;after a year of HRT&#039;&#039;&#039;, you could also consider:&lt;br /&gt;
&lt;br /&gt;
* Instead of injecting one vial per 20 weeks, you do half every 10-12 weeks, however nothing could be sourced to support this. Though logically it could make sense as a practice.&lt;br /&gt;
* Do a test at 6 weeks after starting, if T is too high don&#039;t take the 2nd dose, if it&#039;s not you can take the 2nd and then test 2 weeks before every other dose.&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
====== [https://www.galinos.gr/web/drugs/main/packages/15739 Tostran] ======&lt;br /&gt;
|Testogel&lt;br /&gt;
|Gel&lt;br /&gt;
|Trans-dermally&lt;br /&gt;
|&#039;&#039;&#039;Starting dose&#039;&#039;&#039;&lt;br /&gt;
&amp;lt;!--T:82--&amp;gt;&lt;br /&gt;
* 35.54€/2 months&lt;br /&gt;
* 213.24€/year&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--T:83--&amp;gt;&lt;br /&gt;
&#039;&#039;&#039;30 mg dose&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--T:84--&amp;gt;&lt;br /&gt;
* 35.54€/40 days&lt;br /&gt;
* ~324.30€/year&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--T:85--&amp;gt;&lt;br /&gt;
&#039;&#039;&#039;40 mg dose&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--T:73--&amp;gt;&lt;br /&gt;
* 35.54€/30 days&lt;br /&gt;
* 426.48€/year&lt;br /&gt;
([https://www.galinos.gr/service/drugs/drawPackagePrice/15739 Pricemap])&lt;br /&gt;
|35.54€ -&amp;gt; 8.89€&lt;br /&gt;
|20mg/day (starting dose)&lt;br /&gt;
30-40mg/day&lt;br /&gt;
|A&lt;br /&gt;
|&lt;br /&gt;
* 1 pump of Tostran (&#039;&#039;&#039;0.5g&#039;&#039;&#039;) delivers 10 mg of T.&lt;br /&gt;
* 2 pumps of Tostran are 1 pump of Testogel (20.25mg of T)&lt;br /&gt;
* Can cause skin reactions.&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
==== GNRH Agonists ====&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
!Brand Name(s)&lt;br /&gt;
!Substance&lt;br /&gt;
! Cost&lt;br /&gt;
!Cost with Healthcare Coverage&lt;br /&gt;
!Dosage&lt;br /&gt;
!Safety&lt;br /&gt;
!Form&lt;br /&gt;
!Type&lt;br /&gt;
!Notes&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
====== [https://www.galinos.gr/web/drugs/main/drugs/Arvekap Arvekap] ======&lt;br /&gt;
|Triptorelin&lt;br /&gt;
| -&lt;br /&gt;
|~200/year?&lt;br /&gt;
|&lt;br /&gt;
|A?&lt;br /&gt;
|Injection&lt;br /&gt;
|GNRH Agonist&lt;br /&gt;
(indirectly) Stops testosterone AND estrogen production&lt;br /&gt;
|Also a puberty blocker&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
==== Other anti-androgens (optional) ====&lt;br /&gt;
These are used to block conversion of other androgens to DHT (which causes hair loss (hair) and body hair growth). They aren&#039;t general use Anti-Androgens.&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
!Brand Name(s)&lt;br /&gt;
!Substance&lt;br /&gt;
!Cost&lt;br /&gt;
!Cost with Healthcare Coverage&lt;br /&gt;
!Dosage&lt;br /&gt;
!Safety&lt;br /&gt;
!Form&lt;br /&gt;
!Type&lt;br /&gt;
!Notes&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
====== [https://www.galinos.gr/web/drugs/main/packages/26485 Dastidem], [https://www.galinos.gr/web/drugs/main/packages/25557 Rafuster], [https://www.galinos.gr/web/drugs/main/packages/25893 Duaride], [https://www.galinos.gr/web/drugs/main/packages/25894 Dustezor] ======&lt;br /&gt;
|Dutasteride&lt;br /&gt;
|7.90€/30 caps&lt;br /&gt;
|~6€/30 caps&lt;br /&gt;
|0.5mg/day (?/TBD)&lt;br /&gt;
|A-&lt;br /&gt;
|Capsule&lt;br /&gt;
| -&lt;br /&gt;
|High effectiveness. &lt;br /&gt;
Not to be confused with proper Anti-Androgens.&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== Nonbinary hrt *under construction* ==&lt;br /&gt;
&lt;br /&gt;
=== !!! disclaimer-warning about potential issues !!! ===&lt;br /&gt;
&lt;br /&gt;
=== General outline of nb hrt for amab and afab ===&lt;br /&gt;
&lt;br /&gt;
=== Medications ===&lt;br /&gt;
&lt;br /&gt;
==== Selective Estrogen Receptor Modulators (SERMs) ====&lt;br /&gt;
&lt;br /&gt;
* Tamoxifen is a selective estrogen receptor modulator (SERM). In some tissues such as the brain it activates estrogen receptors, which may help reduce dysphoria. In breast tissue it antagonizes estrogen receptors, preventing the formation of breast tissue if desired. There is some evidence that Tamoxifen inhibits memory, though the effects of taking it alongside regular estrogen are undocumented. Tamoxifen can cause cognitive dysfunction and increase your risk of stroke and pulmonary embolism. Tamoxifen may also be taken alongside 17β-estradiol, more research is needed. In this combination, estradiol should still have its effects (combating dysphoria in the brain, redistribution of body fat, smoother skin etc.) while tamoxifen prevents the growth of breast tissue.&lt;br /&gt;
* Raloxifene is another SERM. It is an estrogen receptor antagonist in breast tissue. It is an estrogen receptor agonist in bone and can be used to prevent osteoporosis. Raloxifene has been shown to reduce ERα expression in breast tissue in premenopausal women. As the synthesis of progesterone receptors (PR) is estrogen-regulated, raloxifene also decreases the expression of PR. Additionally, it was shown to decrease the presence of Ki-67, a biomarker for cell proliferation, in breast tissue of premenopausal women. As a result, it can be used to treat gynecomastia, and has been shown effective in reducing breast size in those with the condition. Raloxifene may promote feminine fat distribution: in a study on 56-66 year old postmenopausal women, there was an increase in fat in the legs and buttocks and a decrease in fat in the abdomen and trunk after 1 year on 60 mg/day raloxifene. It is not yet known how pronounced this effect is, as there have been no comparisons of body fat distribution between raloxifene and estradiol. Raloxifene may increase the risk of stroke and pulmonary embolism.&lt;br /&gt;
* Afimoxifene is a topical SERM and the primary metabolite of tamoxifen.&lt;br /&gt;
&lt;br /&gt;
==== Anti-androgens ====&lt;br /&gt;
&lt;br /&gt;
==== Bicalutamide ====&lt;br /&gt;
Bicalutamide is an  anti-androgen which is used mainly in the treatment of prostate cancer but can also be used to treat hirsutism, or as a component of hormone therapy in feminizing HRT, among other uses. It is nonsteroidal anti-androgen and a selective/pure antagonist of the androgen receptor. It has no other hormonal activity and does not lower androgen levels. Bicalutamide crosses the blood-brain barrier and blocks the effects of testosterone and dihydrotestosterone (DHT) both in the body and in the brain. While it has been observed that bicalutamide does not cross the blood-brain barrier in rats and dogs, this was found not to be the case in humans&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
In general Ralox seems the best idea based on overall effectiveness and less severe side effects compared to other SERMs. Most people on this kind of MtNB hrt seem to be using a combination of ralox (in place of estradiol) and bica [expand this + powers e1s schizo stuff?]&lt;br /&gt;
&lt;br /&gt;
== Legal ==&lt;br /&gt;
It is legal to buy anything without a diagnosis or a prescription (off the counter - OTC), Testosterone can be hit or miss, look for [https://www.galinos.gr/web/drugs/main/packages/15739 Tostran] (Testogel) or [https://www.galinos.gr/web/drugs/main/packages/4929 TEn] (Testosterone Enanthate/Norma, injections).  &lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--T:86--&amp;gt;&lt;br /&gt;
You can also check the &#039;&#039;&#039;[https://diyon.top/map Trans-Friendly Pharmacies Map]&#039;&#039;&#039; for any pharmacies near you (this goes for both Transfem and Transmasc HRT). &lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--T:75--&amp;gt;&lt;br /&gt;
There is no minimum or maximum legal age for someone to start HRT. &lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--T:76--&amp;gt;&lt;br /&gt;
It is not legally mandatory for someone to have a diagnosis by a psychiatrist in order to medically transition.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--T:77--&amp;gt;&lt;br /&gt;
There is no legally mandatory time restriction for a psychiatrist to monitor you before diagnosing you.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--T:78--&amp;gt;&lt;br /&gt;
You don&#039;t legally need to be on HRT in order to be exempt from the [[army]], change your [[Legal|legal sex]], or to have a [[surgery]].&lt;br /&gt;
&lt;br /&gt;
== Other resources == &amp;lt;!--T:79--&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--T:80--&amp;gt;&lt;br /&gt;
* Simulator: https://www.estrannai.se/&lt;br /&gt;
* https://transfemscience.org/ (note, the authors of this site disagree with a lot of what they are saying, regardless, it is still interesting)&lt;br /&gt;
** Introduction to Hormone Therapy for Transfeminine People: https://transfemscience.org/articles/transfem-intro/&lt;br /&gt;
** Older simulator: https://transfemscience.org/misc/injectable-e2-simulator/&lt;br /&gt;
** Dosage calculator: https://transfemscience.org/misc/injectable-dose-vol-conc-conv/&lt;br /&gt;
* https://diyhrt.wiki/ (alt link: https://anarch.cc/transfeminine-diy-hrt-the-ultimate-guide-2/)&lt;br /&gt;
* https://hrtcafe.net/&lt;br /&gt;
* ?? https://hrt.coffee/&lt;br /&gt;
* https://www.reddit.com/r/TransDIY/&lt;br /&gt;
* https://www.reddit.com/r/TransfemScience/&lt;br /&gt;
* https://groups.io/g/MTFHRT/wiki/29602 (alt link: https://anarch.cc/mtf-hrt-ultimate-diy/)&lt;br /&gt;
* https://hrt.cat/ - info for making your own (you will probably not need it - version 1.0: https://hrtcafe.net/hrtcat/)&lt;br /&gt;
* https://archive.ph/uQb8g (alt link: https://anarch.cc/making-your-own-injections/, as above)&lt;br /&gt;
* https://crimethinc.com/2022/12/15/producing-transdermal-estrogen-a-do-it-yourself-guide (alt link: https://anarch.cc/producing-transdermal-estrogen-a-do-it-yourself-guide/, as above)&lt;br /&gt;
* https://archive.ph/cpy7k (alt link: https://anarch.cc/homebrewing-hormones-mtf-guide/, as above)&lt;br /&gt;
&amp;lt;/translate&amp;gt;&lt;/div&gt;</summary>
		<author><name>Goblinmoder</name></author>
	</entry>
	<entry>
		<id>https://wiki.diyon.top/index.php?title=Doctors&amp;diff=996</id>
		<title>Doctors</title>
		<link rel="alternate" type="text/html" href="https://wiki.diyon.top/index.php?title=Doctors&amp;diff=996"/>
		<updated>2025-04-17T11:19:40Z</updated>

		<summary type="html">&lt;p&gt;Goblinmoder: minor punctuation mistake&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{#seo:&lt;br /&gt;
|title_mode=replace&lt;br /&gt;
|title=Doctors&lt;br /&gt;
|description=List of doctors documented, most of which are from real life encounters, opinions are non-definitive.&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
== Ψυχίατροι ==&lt;br /&gt;
{| class=&amp;quot;wikitable sortable&amp;quot;&lt;br /&gt;
|+&lt;br /&gt;
!✅/🟨/🟧/❌&lt;br /&gt;
!Όνομα&lt;br /&gt;
!Περιοχή&lt;br /&gt;
!Δημόσιο/Ιδιωτικό&lt;br /&gt;
!Επικοινωνία&lt;br /&gt;
!Τιμή&lt;br /&gt;
!Περιοχή&lt;br /&gt;
!Διαδικτυακά&lt;br /&gt;
!Κριτικές&lt;br /&gt;
!Σημειώσεις&lt;br /&gt;
|-&lt;br /&gt;
|✅&lt;br /&gt;
|Καρατζαφέρης Λυκούργος&lt;br /&gt;
|Αθήνα / Διαδικτυακά&lt;br /&gt;
|Ιδιωτικό&lt;br /&gt;
|Σταθερό: 2177207765&lt;br /&gt;
Τηλέφωνο: 6944302577&lt;br /&gt;
|30-70 ευρώ, 1-2 συνεδρίες για γνωμάτευση.&lt;br /&gt;
|Αμφιτρύωνος 78, Αττική, 11853.&lt;br /&gt;
|Κάνει και online αλλά προτιμάει irl.&lt;br /&gt;
|&lt;br /&gt;
* 2 ✅&lt;br /&gt;
* 0 🟨&lt;br /&gt;
* 0 🟧&lt;br /&gt;
* 0 ❌&lt;br /&gt;
| -&lt;br /&gt;
|-&lt;br /&gt;
|✅&lt;br /&gt;
|Μαρία Αναστασάκη&lt;br /&gt;
|Ηράκλειο / Διαδικτυακά&lt;br /&gt;
|Ιδιωτικό&lt;br /&gt;
|Σταθερό: 2810223940&lt;br /&gt;
Τηλέφωνο: 6980566188&lt;br /&gt;
&lt;br /&gt;
E-mail: [mailto:anastasakitherapy@gmail.com anastasakitherapy@gmail.com]&lt;br /&gt;
|40Ε ανα συνεδρία / 80Ε (γνωμάτευση)&lt;br /&gt;
|Λεωφόρος Ιωνίας 136, Ηράκλειο [Δήμος], Ηράκλειο, 71305&lt;br /&gt;
|Ναι.&lt;br /&gt;
|&lt;br /&gt;
* 2 ✅&lt;br /&gt;
* 1 🟨&lt;br /&gt;
* 0 🟧&lt;br /&gt;
* 0 ❌&lt;br /&gt;
| Μπορεί να είναι δύσκολη η επικοινωνία.&lt;br /&gt;
|-&lt;br /&gt;
|✅&lt;br /&gt;
|Κατερίνα Χαλκιαδάκη&lt;br /&gt;
|Ηράκλειο / Διαδικτυακά&lt;br /&gt;
|Ιδιωτικό&lt;br /&gt;
|Σταθερό: 2810223940&lt;br /&gt;
|40Ε ανα συνεδρία / 80Ε (γνωμάτευση)&lt;br /&gt;
|Λεωφόρος Ιωνίας 136, Ηράκλειο [Δήμος], Ηράκλειο, 71305&lt;br /&gt;
|Ναι.&lt;br /&gt;
|&lt;br /&gt;
* 1 ✅&lt;br /&gt;
* 0 🟨&lt;br /&gt;
* 0 🟧&lt;br /&gt;
* 0 ❌&lt;br /&gt;
|Συνάδελφος της Αναστασάκη.&lt;br /&gt;
|-&lt;br /&gt;
|✅&lt;br /&gt;
|Ελένη Ζαχάρη&lt;br /&gt;
|Αθήνα&lt;br /&gt;
|Ιδιωτικό&lt;br /&gt;
|Τηλέφωνο: 6942493053&lt;br /&gt;
|50-70€ το ραντεβού (γνωμάτευση σε 2 συνεδρίες)&lt;br /&gt;
|Χατζηκώστα 8Α, Πλατεία Μαβίλη, Αττική.&lt;br /&gt;
|Ναι.&lt;br /&gt;
|&lt;br /&gt;
* 1 ✅&lt;br /&gt;
* 0 🟨&lt;br /&gt;
* 0 🟧&lt;br /&gt;
* 0 ❌&lt;br /&gt;
| -&lt;br /&gt;
|-&lt;br /&gt;
|✅&lt;br /&gt;
|Γεωργιλαδάκης Ιωάννης&lt;br /&gt;
|Ηράκλειο&lt;br /&gt;
|Ιδιωτικό&lt;br /&gt;
|Σταθερό: 2107442019&lt;br /&gt;
|50€ το ραντεβού. (Στο [https://www.doctoranytime.gr/d/Psychiatros/georgiladakis-ioannis site]&amp;lt;nowiki&amp;gt; αναφέρεται το εξής: &amp;quot;Πιστοποιητικά/Βεβαιώσεις | Από 20€ έως 40€&amp;quot;)&amp;lt;/nowiki&amp;gt;&lt;br /&gt;
|Πλατεία Ρήγα Φεραίου 13, Ηράκλειο, Κρήτη.&lt;br /&gt;
|Λογικά όχι πια (writer&#039;s conclusion, citation needed)&lt;br /&gt;
|&lt;br /&gt;
* 1 ✅&lt;br /&gt;
* 0 🟨&lt;br /&gt;
* 0 🟧&lt;br /&gt;
* 0 ❌&lt;br /&gt;
| -&lt;br /&gt;
|-&lt;br /&gt;
|✅&lt;br /&gt;
|Πάγκαλος Γεώργιος&lt;br /&gt;
|Θεσσαλονίκη&lt;br /&gt;
|Ιδιωτικό&lt;br /&gt;
|Τηλέφωνο: 6933091536&lt;br /&gt;
|100€ ανα συνεδρία &lt;br /&gt;
|Καρόλου Ντηλ 25, 54623&lt;br /&gt;
|Ναι.&lt;br /&gt;
|&lt;br /&gt;
* 1 ✅&lt;br /&gt;
* 0 🟨&lt;br /&gt;
* 0 🟧&lt;br /&gt;
* 0 ❌&lt;br /&gt;
| -&lt;br /&gt;
|-&lt;br /&gt;
|🟨&lt;br /&gt;
|Δημήτρης Ξυλάς&lt;br /&gt;
|Θεσσαλονίκη&lt;br /&gt;
|Ιδιωτικό&lt;br /&gt;
|Σταθερό: 2310236236&lt;br /&gt;
|70€ αναγκαστικό ψυχομετρικό τεστ και 60€ η συνεδρία&lt;br /&gt;
|Εγνατία 70 &amp;amp; Χαλκέων 16, 546 24&lt;br /&gt;
| -&lt;br /&gt;
|&lt;br /&gt;
* 0 ✅&lt;br /&gt;
* 1 🟨&lt;br /&gt;
* 0 🟧&lt;br /&gt;
* 0 ❌&lt;br /&gt;
|Δεν είναι NB friendly.&lt;br /&gt;
|-&lt;br /&gt;
|🟨&lt;br /&gt;
|Σταυριανάκος Κυριάκος&lt;br /&gt;
|Αθήνα / Διαδικτυακά&lt;br /&gt;
|Ιδιωτικό&lt;br /&gt;
| Σταθερό: 2108064113&lt;br /&gt;
| 70€ ανα ραντεβού (επι 6 μήνες gatekeeping)&lt;br /&gt;
| Θησέως 15-17, Μαρούσι 151 24&lt;br /&gt;
| Ναι.&lt;br /&gt;
|&lt;br /&gt;
* 0 ✅&lt;br /&gt;
* 2 🟨&lt;br /&gt;
* 0 🟧&lt;br /&gt;
* 0 ❌&lt;br /&gt;
| Διάβασε καλά την τιμή.&lt;br /&gt;
|-&lt;br /&gt;
|🟧&lt;br /&gt;
|Μεταξάς Σπυρίδων&lt;br /&gt;
|Αθήνα&lt;br /&gt;
|Ιδιωτικό&lt;br /&gt;
|Σταθερό: 2107116438&lt;br /&gt;
|70 ευρώ με κάρτα, 60 ευρώ χωρίς.&lt;br /&gt;
|Ρόδου 17, Μαρούσι, Αττική.&lt;br /&gt;
|Όχι.&lt;br /&gt;
|&lt;br /&gt;
* 1 ✅&lt;br /&gt;
* 0 🟨&lt;br /&gt;
* 0 🟧&lt;br /&gt;
* 1 ❌&lt;br /&gt;
| Με MTF ήταν super friendly, ενώ με FTM το ακριβώς αντίθετο. &lt;br /&gt;
|-&lt;br /&gt;
|🟧 &lt;br /&gt;
|Σαρρηγιανίδης Αλέξιος&lt;br /&gt;
|Θεσσαλονίκη&lt;br /&gt;
|Δημόσιο&lt;br /&gt;
| -&lt;br /&gt;
| -&lt;br /&gt;
| Ιπποκράτειο Θεσσαλονίκης&lt;br /&gt;
| Όχι.&lt;br /&gt;
|&lt;br /&gt;
* 0 ✅&lt;br /&gt;
* 0 🟨&lt;br /&gt;
* 1 🟧&lt;br /&gt;
* 0 ❌&lt;br /&gt;
| Δεν είναι κακός απλώς προτείνει τον Πάγκαλο (δλ. πήγαινε κατ&#039; ευθείαν εκεί) και έπειτα τον &#039;&#039;Μπουφίδη&#039;&#039; (γι&#039; αυτό και είναι 🟧 και όχι 🟨/✅) &lt;br /&gt;
|-&lt;br /&gt;
|❌&lt;br /&gt;
|Φλούδας Γεώργιος&lt;br /&gt;
|Αθήνα&lt;br /&gt;
|Δημόσιο&lt;br /&gt;
|[[File:Floudaskeeper.jpg|thumb|172x172px]]&lt;br /&gt;
| [[File:Flouda.png|thumb|163x163px|courtesy of Αθανασιάδης Λουκάς]]&lt;br /&gt;
| [https://media.discordapp.net/attachments/785742455928520725/1290054603814993930/hgf.png?ex=66fb1079&amp;amp;is=66f9bef9&amp;amp;hm=0441ce6ca9438130027d61078d2b76bc9abaa83ad99e97e7718a05554e2221f3&amp;amp;=&amp;amp;format=webp&amp;amp;quality=lossless&amp;amp;width=687&amp;amp;height=305 206]&lt;br /&gt;
| Όχι.&lt;br /&gt;
|&lt;br /&gt;
* 1 ✅&lt;br /&gt;
* 1 🟨&lt;br /&gt;
* 0 🟧&lt;br /&gt;
* 6 ❌&lt;br /&gt;
|Ο βασιλιάς του Gatekeeping, zero tolenace στο diy.&lt;br /&gt;
|-&lt;br /&gt;
|❌&lt;br /&gt;
|Απαζίδου Παρθένα&lt;br /&gt;
|Θεσσαλονίκη&lt;br /&gt;
|Δημόσιο&lt;br /&gt;
| -&lt;br /&gt;
| -&lt;br /&gt;
| Νοσοκομείο Αφροδισίων  &amp;amp; Δερματικών Νόσων Θεσσαλονίκης (παράρτημα Ιπποκράτειου στην Δελφών 124)&lt;br /&gt;
| Όχι.&lt;br /&gt;
|&lt;br /&gt;
* 0 ✅&lt;br /&gt;
* 0 🟨&lt;br /&gt;
* 0 🟧&lt;br /&gt;
* 1 ❌&lt;br /&gt;
|Δεν γνωρίζει απο &amp;quot;τρανς θέματα&amp;quot;.&lt;br /&gt;
|-&lt;br /&gt;
|❌ &lt;br /&gt;
|Λουκάς Αθανασιάδης&lt;br /&gt;
|Θεσσαλονίκη&lt;br /&gt;
|Δημόσιο&lt;br /&gt;
| -&lt;br /&gt;
| -&lt;br /&gt;
| -&lt;br /&gt;
| Όχι.&lt;br /&gt;
|&lt;br /&gt;
* 0 ✅&lt;br /&gt;
* 0 🟨&lt;br /&gt;
* 0 🟧&lt;br /&gt;
* 3 ❌&lt;br /&gt;
|Gatekeeping, zero tolenace στο diy, σπατάλη 2+ χρόνων.&lt;br /&gt;
|-&lt;br /&gt;
|❌&lt;br /&gt;
|Μπουφίδης Σταύρος&lt;br /&gt;
|Θεσσαλονίκη&lt;br /&gt;
|Ιδιωτικό&lt;br /&gt;
|Σταθερό: 2310253793&lt;br /&gt;
|&amp;quot;100€ μετρητά, 80€ κά- α όχι, συγνώμη, 80€ μέτρητα. 100€ κάρτα&amp;quot;&lt;br /&gt;
|Ερμού 36, Θεσσαλονίκη, 54623&lt;br /&gt;
|Όχι.&lt;br /&gt;
|&lt;br /&gt;
* 0 ✅&lt;br /&gt;
* 0 🟨&lt;br /&gt;
* 0 🟧&lt;br /&gt;
* 2 ❌&lt;br /&gt;
|Αν σ&#039; αρέσει να πληρώνεις για να σε κάνουν gatekeep, είναι τέλειος.&lt;br /&gt;
|-&lt;br /&gt;
|❌&lt;br /&gt;
|Καλλιόπη Προκοπάκη&lt;br /&gt;
|Αθήνα&lt;br /&gt;
|Ιδιωτικό&lt;br /&gt;
| -&lt;br /&gt;
| -&lt;br /&gt;
| -&lt;br /&gt;
| -&lt;br /&gt;
|&lt;br /&gt;
* 0 ✅&lt;br /&gt;
* 0 🟨&lt;br /&gt;
* 0 🟧&lt;br /&gt;
* 1 ❌&lt;br /&gt;
|Είναι κατά τον γάμο ομόφυλων ζευγαριών.&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== Ψυχολόγοι ==&lt;br /&gt;
{| class=&amp;quot;wikitable sortable&amp;quot;&lt;br /&gt;
|+&lt;br /&gt;
!✅/🟨/🟧/❌&lt;br /&gt;
!Όνομα&lt;br /&gt;
!Περιοχή&lt;br /&gt;
!Δημόσιο/Ιδιωτικό&lt;br /&gt;
!Επικοινωνία&lt;br /&gt;
!Τιμή&lt;br /&gt;
!Περιοχή&lt;br /&gt;
!Διαδικτυακά&lt;br /&gt;
!Κριτικές&lt;br /&gt;
!Σημειώσεις&lt;br /&gt;
|-&lt;br /&gt;
|✅&lt;br /&gt;
|Γεωργία Καμπόλη&lt;br /&gt;
|Άνω Λιόσια / Διαδικτυακά&lt;br /&gt;
|Ιδιωτικό&lt;br /&gt;
| Τηλέφωνο: 6931170170 &lt;br /&gt;
Email: geokaboli@gmail.com &lt;br /&gt;
&lt;br /&gt;
Email (στην ιστοσελίδα): info@kabolipsychologist.gr&lt;br /&gt;
| -&lt;br /&gt;
| Οδ. Ελύτη 2, Άνω Λιόσια 133 41&lt;br /&gt;
| Ναι.&lt;br /&gt;
|&lt;br /&gt;
* 1 ✅&lt;br /&gt;
* 0 🟨&lt;br /&gt;
* 0 🟧&lt;br /&gt;
* 0 ❌&lt;br /&gt;
| -&lt;br /&gt;
|-&lt;br /&gt;
|❌&lt;br /&gt;
|Γιαντσίδου Βασιλική&lt;br /&gt;
|Ορεστιάδα&lt;br /&gt;
|Ιδιωτικό&lt;br /&gt;
| -&lt;br /&gt;
| -&lt;br /&gt;
| -&lt;br /&gt;
| -&lt;br /&gt;
| -&lt;br /&gt;
| Στον κώλο της μαϊμούς, δεν θα βγάλεις άκρη, why bother?&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== Παιδοψυχίατροι ==&lt;br /&gt;
{| class=&amp;quot;wikitable sortable&amp;quot;&lt;br /&gt;
|+&lt;br /&gt;
!✅/🟨/🟧/❌&lt;br /&gt;
!Όνομα&lt;br /&gt;
!Περιοχή&lt;br /&gt;
!Δημόσιο/Ιδιωτικό&lt;br /&gt;
!Επικοινωνία&lt;br /&gt;
!Τιμή&lt;br /&gt;
!Περιοχή&lt;br /&gt;
!Διαδικτυακά&lt;br /&gt;
!Κριτικές&lt;br /&gt;
!Σημειώσεις&lt;br /&gt;
|-&lt;br /&gt;
|❌&lt;br /&gt;
|Στέλλα/Στυλιανή Βαγιωνά&lt;br /&gt;
|Θεσσαλονίκη&lt;br /&gt;
|Ιδιωτικό&lt;br /&gt;
| -&lt;br /&gt;
|70€ (χωρίς απόδειξη)&lt;br /&gt;
| -&lt;br /&gt;
| -&lt;br /&gt;
|&lt;br /&gt;
* 0 ✅&lt;br /&gt;
* 0 🟨&lt;br /&gt;
* 0 🟧&lt;br /&gt;
* 1 ❌&lt;br /&gt;
| -&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== Ενδοκρινολόγοι ==&lt;br /&gt;
{| class=&amp;quot;wikitable sortable&amp;quot;&lt;br /&gt;
|+&lt;br /&gt;
!✅/🟨/🟧/❌&lt;br /&gt;
!Όνομα&lt;br /&gt;
!Περιοχή&lt;br /&gt;
!Δημόσιο/Ιδιωτικό&lt;br /&gt;
!Επικοινωνία&lt;br /&gt;
!Τιμή&lt;br /&gt;
!Περιοχή&lt;br /&gt;
!Διαδικτυακά&lt;br /&gt;
!Κριτικές&lt;br /&gt;
!Σημειώσεις&lt;br /&gt;
|-&lt;br /&gt;
|🟨&lt;br /&gt;
|Κούκκου Ευτυχία&lt;br /&gt;
|Αθήνα&lt;br /&gt;
|Δημόσιο&lt;br /&gt;
| -&lt;br /&gt;
| -&lt;br /&gt;
| Γ.Ν. Έλενα Βενιζέλου, Αθήνα 115 21&lt;br /&gt;
| Όχι.&lt;br /&gt;
|&lt;br /&gt;
* 4 ✅&lt;br /&gt;
* 0 🟨&lt;br /&gt;
* 1 🟧&lt;br /&gt;
* 1 ❌&lt;br /&gt;
| - Θέλει διάγνωση. &lt;br /&gt;
- Κάνει περίεργο misgendering μερικές φορές.&lt;br /&gt;
|-&lt;br /&gt;
|🟨 (Βλέπε Σημειώσεις)&lt;br /&gt;
|Θεώδορος Θωμάς&lt;br /&gt;
|Αθήνα&lt;br /&gt;
|Ιδιωτικό&lt;br /&gt;
| Σταθερό: 2106436115&lt;br /&gt;
| 80-100€ η συνεδρία&lt;br /&gt;
| Λεωφ. Κηφισίας 5, 115 23 Αμπελόκηποι, Αθήνα&lt;br /&gt;
| -&lt;br /&gt;
|&lt;br /&gt;
* 4 ✅&lt;br /&gt;
* 1 🟨&lt;br /&gt;
* 0 🟧&lt;br /&gt;
* 0 ❌&lt;br /&gt;
| - Θέλει διάγνωση. &lt;br /&gt;
- Είναι γνωστό πως έχει γράψει &#039;&#039;&#039;50mg androcur&#039;&#039;&#039; ανά &#039;&#039;&#039;μέρα&#039;&#039;&#039;. &lt;br /&gt;
- Αντίστοιχη αντιμετώπιση με το σύνδρομο &amp;quot;Broken Arm&amp;quot; αλλά σε Τρανς έκδοση.&lt;br /&gt;
|-&lt;br /&gt;
|✅&lt;br /&gt;
|Σκαράκης Νικήτας&lt;br /&gt;
|Αθήνα&lt;br /&gt;
|Ιδιωτικό&lt;br /&gt;
| Σταθερό:  2107117965&lt;br /&gt;
| 50€ η συνεδρία&lt;br /&gt;
| Κυκλαμίνων 7 (Περιοχή Αγίου Ιεροθέου), Περιστέρι, Αττική&lt;br /&gt;
| Ναι. (60€ η συνεδρία)&lt;br /&gt;
|&lt;br /&gt;
* 1 ✅&lt;br /&gt;
* 0 🟨&lt;br /&gt;
* 0 🟧&lt;br /&gt;
* 0 ❌&lt;br /&gt;
| - Θέλει διάγνωση.&lt;br /&gt;
|-&lt;br /&gt;
|✅&lt;br /&gt;
|Στέργιος Κιούρας&lt;br /&gt;
|Θεσσαλονίκη&lt;br /&gt;
|Ιδιωτικό&lt;br /&gt;
| Σταθερό: 2310256498&lt;br /&gt;
| 50€ η συνεδρία&lt;br /&gt;
| Ερμού 36, Θεσσαλονίκη 546 23&lt;br /&gt;
| -&lt;br /&gt;
|&lt;br /&gt;
* 1 ✅&lt;br /&gt;
* 0 🟨&lt;br /&gt;
* 0 🟧&lt;br /&gt;
* 0 ❌&lt;br /&gt;
| - &#039;&#039;&#039;Δεν ζήτησε&#039;&#039;&#039; διάγνωση.&lt;br /&gt;
|-&lt;br /&gt;
|🟨&lt;br /&gt;
|Θεμιστοκλής Καλτσάς&lt;br /&gt;
|Θεσσαλονίκη&lt;br /&gt;
|Ιδιωτικό&lt;br /&gt;
| Σταθερό: 2310238719&lt;br /&gt;
| 50€ η συνεδρία&lt;br /&gt;
| Παλαιών Πατρών Γερμανού 21, Θεσσαλονίκη&lt;br /&gt;
| -&lt;br /&gt;
|&lt;br /&gt;
* 1 ✅&lt;br /&gt;
* 1 🟨&lt;br /&gt;
* 0 🟧&lt;br /&gt;
* 0 ❌&lt;br /&gt;
| - Δεν έχει θέμα με DIY, &#039;&#039;&#039;δεν ζήτησε άμεσα&#039;&#039;&#039; διάγνωση, αλλά &#039;&#039;&#039;την θέλει&#039;&#039;&#039; γενικότερα (δλ. αν δεν έχεις θα στη ζητήσει μελλοντικά μεσω e-mail)&lt;br /&gt;
- Έχει θέμα με τα &amp;quot;υψηλά&amp;quot; επίπεδα (π.χ. κανονικά pg/ml e2 στην μονοθεραπεία με injections είναι περίεργα γι&#039; αυτόν)&lt;br /&gt;
- Ζητάει διάγνωση στα άτομα που δεν λαμβάνουν DIY HRT.&lt;br /&gt;
- Ημι-συχνό misgendering.&lt;br /&gt;
|-&lt;br /&gt;
|✅&lt;br /&gt;
|Παναγιώτης Μ. Μπουντούρης&lt;br /&gt;
|Σύρος&lt;br /&gt;
|Ιδιωτικό&lt;br /&gt;
|Σταθερό: 2281082030&lt;br /&gt;
Κινητό: 6946545831&lt;br /&gt;
|30€ η πρώτη συνεδρία&lt;br /&gt;
10€ η συνταγή&lt;br /&gt;
|Κλεισθένους 15, Ερμούπολη, 84100, Κυκλάδων&lt;br /&gt;
| -&lt;br /&gt;
|&lt;br /&gt;
* 1 ✅&lt;br /&gt;
* 0 🟨&lt;br /&gt;
* 0 🟧&lt;br /&gt;
* 0 ❌&lt;br /&gt;
| -&lt;br /&gt;
|-&lt;br /&gt;
|🟨&lt;br /&gt;
|Κωνσταντίνος Α. Τούλης&lt;br /&gt;
|Θεσσαλονίκη&lt;br /&gt;
|Ιδιωτικό&lt;br /&gt;
|Τηλέφωνο: 2310222799&lt;br /&gt;
|50€ η συνεδρία&lt;br /&gt;
|Μητροπόλεως 73, Θεσσαλονίκη 546 22&lt;br /&gt;
| -&lt;br /&gt;
|&lt;br /&gt;
* 0 ✅&lt;br /&gt;
* 1 🟨&lt;br /&gt;
* 0 🟧&lt;br /&gt;
* 0 ❌&lt;br /&gt;
| - Θέλει διάγνωση.&lt;br /&gt;
|-&lt;br /&gt;
|🟨&lt;br /&gt;
|Γεώργιος Α. Κανάκης&lt;br /&gt;
|Αθήνα&lt;br /&gt;
|Ιδιωτικό&lt;br /&gt;
|Σταθερό: 2107709248&lt;br /&gt;
|&amp;lt;!-- we don&#039;t even fucking know --&amp;gt;&lt;br /&gt;
|Τσόχα 15-17, Αμπελόκηποι &lt;br /&gt;
| -&lt;br /&gt;
| -&lt;br /&gt;
| - Έχει ακουστεί πως έχει παραβιάσει την ανωνυμία δεδομένων.&lt;br /&gt;
|-&lt;br /&gt;
|❌&lt;br /&gt;
|Πουλάκος Πάυλος&lt;br /&gt;
|Θεσσαλονίκη&lt;br /&gt;
|Ιδιωτικό&lt;br /&gt;
|Σταθερό: 2105579147&lt;br /&gt;
|50€ η συνεδρία &lt;br /&gt;
|Τσιμισκή Ιωάννη 69, Αγία Σοφία, 546 22&lt;br /&gt;
| -&lt;br /&gt;
|&lt;br /&gt;
* 0 ✅&lt;br /&gt;
* 0 🟨&lt;br /&gt;
* 0 🟧&lt;br /&gt;
* 1 ❌&lt;br /&gt;
| - 100mg cypro ανά μέρα χωρίς προειδοποίηση στο cyclacur για τα πορτοκαλί/καφέ χάπια (πολύ κακό)&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== Δερματολόγοι/Αφροδισιολόγοι/Laser Κλινικές ==&lt;br /&gt;
{| class=&amp;quot;wikitable sortable&amp;quot;&lt;br /&gt;
|+&lt;br /&gt;
!✅/🟨/🟧/❌&lt;br /&gt;
!Όνομα&lt;br /&gt;
!Περιοχή&lt;br /&gt;
!Είδος&lt;br /&gt;
!Δημόσιο/Ιδιωτικό&lt;br /&gt;
!Επικοινωνία&lt;br /&gt;
!Τιμή&lt;br /&gt;
!Διαδικτυακά&lt;br /&gt;
!Κριτικές&lt;br /&gt;
!Σημειώσεις&lt;br /&gt;
|-&lt;br /&gt;
|❌&lt;br /&gt;
|Ζαχαρίας Ι. Ανδρεαδάκης&lt;br /&gt;
|Αθήνα&lt;br /&gt;
|Δερματολόγος/Αφροδισιολόγος/Laser&lt;br /&gt;
|Ιδιωτικό&lt;br /&gt;
| -&lt;br /&gt;
| -&lt;br /&gt;
| -&lt;br /&gt;
|&lt;br /&gt;
* 0 ✅&lt;br /&gt;
* 0 🟨&lt;br /&gt;
* 0 🟧&lt;br /&gt;
* 1 ❌&lt;br /&gt;
| -&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== Χειρούργοι ==&lt;br /&gt;
{| class=&amp;quot;wikitable sortable&amp;quot;&lt;br /&gt;
|+&lt;br /&gt;
!✅/🟨/🟧/❌&lt;br /&gt;
!Όνομα&lt;br /&gt;
!Περιοχή&lt;br /&gt;
!Δημόσιο/Ιδιωτικό&lt;br /&gt;
!Επικοινωνία&lt;br /&gt;
!Τιμή&lt;br /&gt;
!Περιοχή&lt;br /&gt;
!Διαδικτυακά&lt;br /&gt;
!Κριτικές&lt;br /&gt;
!Σημειώσεις&lt;br /&gt;
|-&lt;br /&gt;
|✅&lt;br /&gt;
|Ηλίας Μεξής&lt;br /&gt;
|Αθήνα&lt;br /&gt;
|Ιδιωτικό&lt;br /&gt;
| Σταθερό: 2114068315&lt;br /&gt;
| Top surgery ~3000€&lt;br /&gt;
|Αγ. Θεοδώρων 10, 14562 Κηφισιά&lt;br /&gt;
| -&lt;br /&gt;
|&lt;br /&gt;
* 1 ✅&lt;br /&gt;
* 0 🟨&lt;br /&gt;
* 0 🟧&lt;br /&gt;
* 0 ❌&lt;br /&gt;
| - Δεν ζητάει γνωμάτευση.&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== Δικηγόροι ==&lt;br /&gt;
{| class=&amp;quot;wikitable sortable&amp;quot;&lt;br /&gt;
|+&lt;br /&gt;
!✅/🟨/🟧/❌&lt;br /&gt;
!Όνομα&lt;br /&gt;
!Περιοχή&lt;br /&gt;
!Δημόσιο/Ιδιωτικό&lt;br /&gt;
!Επικοινωνία&lt;br /&gt;
!Τιμή&lt;br /&gt;
!Περιοχή&lt;br /&gt;
!Διαδικτυακά&lt;br /&gt;
!Κριτικές&lt;br /&gt;
!Σημειώσεις&lt;br /&gt;
|-&lt;br /&gt;
|✅&lt;br /&gt;
|Αθηνά Καλογρίδη&lt;br /&gt;
|Θεσσαλονίκη&lt;br /&gt;
|Ιδιωτικό&lt;br /&gt;
| Σταθερό: 2310220704&lt;br /&gt;
| 125€ αίτηση&lt;br /&gt;
125€ δικαστήριο&lt;br /&gt;
43€ εισαγγελέας&lt;br /&gt;
| Κομνηνών 20, Θεσσαλονίκη, 54624, ΘΕΣΣΑΛΟΝΙΚΗΣ&lt;br /&gt;
| -&lt;br /&gt;
|&lt;br /&gt;
* 1 ✅&lt;br /&gt;
* 0 🟨&lt;br /&gt;
* 0 🟧&lt;br /&gt;
* 0 ❌&lt;br /&gt;
| -&lt;br /&gt;
|}&lt;/div&gt;</summary>
		<author><name>Goblinmoder</name></author>
	</entry>
	<entry>
		<id>https://wiki.diyon.top/index.php?title=Doctors&amp;diff=995</id>
		<title>Doctors</title>
		<link rel="alternate" type="text/html" href="https://wiki.diyon.top/index.php?title=Doctors&amp;diff=995"/>
		<updated>2025-04-17T11:17:50Z</updated>

		<summary type="html">&lt;p&gt;Goblinmoder: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{#seo:&lt;br /&gt;
|title_mode=replace&lt;br /&gt;
|title=Doctors&lt;br /&gt;
|description=List of doctors documented, most of which are from real life encounters, opinions are non-definitive&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
== Ψυχίατροι ==&lt;br /&gt;
{| class=&amp;quot;wikitable sortable&amp;quot;&lt;br /&gt;
|+&lt;br /&gt;
!✅/🟨/🟧/❌&lt;br /&gt;
!Όνομα&lt;br /&gt;
!Περιοχή&lt;br /&gt;
!Δημόσιο/Ιδιωτικό&lt;br /&gt;
!Επικοινωνία&lt;br /&gt;
!Τιμή&lt;br /&gt;
!Περιοχή&lt;br /&gt;
!Διαδικτυακά&lt;br /&gt;
!Κριτικές&lt;br /&gt;
!Σημειώσεις&lt;br /&gt;
|-&lt;br /&gt;
|✅&lt;br /&gt;
|Καρατζαφέρης Λυκούργος&lt;br /&gt;
|Αθήνα / Διαδικτυακά&lt;br /&gt;
|Ιδιωτικό&lt;br /&gt;
|Σταθερό: 2177207765&lt;br /&gt;
Τηλέφωνο: 6944302577&lt;br /&gt;
|30-70 ευρώ, 1-2 συνεδρίες για γνωμάτευση.&lt;br /&gt;
|Αμφιτρύωνος 78, Αττική, 11853.&lt;br /&gt;
|Κάνει και online αλλά προτιμάει irl.&lt;br /&gt;
|&lt;br /&gt;
* 2 ✅&lt;br /&gt;
* 0 🟨&lt;br /&gt;
* 0 🟧&lt;br /&gt;
* 0 ❌&lt;br /&gt;
| -&lt;br /&gt;
|-&lt;br /&gt;
|✅&lt;br /&gt;
|Μαρία Αναστασάκη&lt;br /&gt;
|Ηράκλειο / Διαδικτυακά&lt;br /&gt;
|Ιδιωτικό&lt;br /&gt;
|Σταθερό: 2810223940&lt;br /&gt;
Τηλέφωνο: 6980566188&lt;br /&gt;
&lt;br /&gt;
E-mail: [mailto:anastasakitherapy@gmail.com anastasakitherapy@gmail.com]&lt;br /&gt;
|40Ε ανα συνεδρία / 80Ε (γνωμάτευση)&lt;br /&gt;
|Λεωφόρος Ιωνίας 136, Ηράκλειο [Δήμος], Ηράκλειο, 71305&lt;br /&gt;
|Ναι.&lt;br /&gt;
|&lt;br /&gt;
* 2 ✅&lt;br /&gt;
* 1 🟨&lt;br /&gt;
* 0 🟧&lt;br /&gt;
* 0 ❌&lt;br /&gt;
| Μπορεί να είναι δύσκολη η επικοινωνία.&lt;br /&gt;
|-&lt;br /&gt;
|✅&lt;br /&gt;
|Κατερίνα Χαλκιαδάκη&lt;br /&gt;
|Ηράκλειο / Διαδικτυακά&lt;br /&gt;
|Ιδιωτικό&lt;br /&gt;
|Σταθερό: 2810223940&lt;br /&gt;
|40Ε ανα συνεδρία / 80Ε (γνωμάτευση)&lt;br /&gt;
|Λεωφόρος Ιωνίας 136, Ηράκλειο [Δήμος], Ηράκλειο, 71305&lt;br /&gt;
|Ναι.&lt;br /&gt;
|&lt;br /&gt;
* 1 ✅&lt;br /&gt;
* 0 🟨&lt;br /&gt;
* 0 🟧&lt;br /&gt;
* 0 ❌&lt;br /&gt;
|Συνάδελφος της Αναστασάκη.&lt;br /&gt;
|-&lt;br /&gt;
|✅&lt;br /&gt;
|Ελένη Ζαχάρη&lt;br /&gt;
|Αθήνα&lt;br /&gt;
|Ιδιωτικό&lt;br /&gt;
|Τηλέφωνο: 6942493053&lt;br /&gt;
|50-70€ το ραντεβού (γνωμάτευση σε 2 συνεδρίες)&lt;br /&gt;
|Χατζηκώστα 8Α, Πλατεία Μαβίλη, Αττική.&lt;br /&gt;
|Ναι.&lt;br /&gt;
|&lt;br /&gt;
* 1 ✅&lt;br /&gt;
* 0 🟨&lt;br /&gt;
* 0 🟧&lt;br /&gt;
* 0 ❌&lt;br /&gt;
| -&lt;br /&gt;
|-&lt;br /&gt;
|✅&lt;br /&gt;
|Γεωργιλαδάκης Ιωάννης&lt;br /&gt;
|Ηράκλειο&lt;br /&gt;
|Ιδιωτικό&lt;br /&gt;
|Σταθερό: 2107442019&lt;br /&gt;
|50€ το ραντεβού. (Στο [https://www.doctoranytime.gr/d/Psychiatros/georgiladakis-ioannis site]&amp;lt;nowiki&amp;gt; αναφέρεται το εξής: &amp;quot;Πιστοποιητικά/Βεβαιώσεις | Από 20€ έως 40€&amp;quot;)&amp;lt;/nowiki&amp;gt;&lt;br /&gt;
|Πλατεία Ρήγα Φεραίου 13, Ηράκλειο, Κρήτη.&lt;br /&gt;
|Λογικά όχι πια (writer&#039;s conclusion, citation needed)&lt;br /&gt;
|&lt;br /&gt;
* 1 ✅&lt;br /&gt;
* 0 🟨&lt;br /&gt;
* 0 🟧&lt;br /&gt;
* 0 ❌&lt;br /&gt;
| -&lt;br /&gt;
|-&lt;br /&gt;
|✅&lt;br /&gt;
|Πάγκαλος Γεώργιος&lt;br /&gt;
|Θεσσαλονίκη&lt;br /&gt;
|Ιδιωτικό&lt;br /&gt;
|Τηλέφωνο: 6933091536&lt;br /&gt;
|100€ ανα συνεδρία &lt;br /&gt;
|Καρόλου Ντηλ 25, 54623&lt;br /&gt;
|Ναι.&lt;br /&gt;
|&lt;br /&gt;
* 1 ✅&lt;br /&gt;
* 0 🟨&lt;br /&gt;
* 0 🟧&lt;br /&gt;
* 0 ❌&lt;br /&gt;
| -&lt;br /&gt;
|-&lt;br /&gt;
|🟨&lt;br /&gt;
|Δημήτρης Ξυλάς&lt;br /&gt;
|Θεσσαλονίκη&lt;br /&gt;
|Ιδιωτικό&lt;br /&gt;
|Σταθερό: 2310236236&lt;br /&gt;
|70€ αναγκαστικό ψυχομετρικό τεστ και 60€ η συνεδρία&lt;br /&gt;
|Εγνατία 70 &amp;amp; Χαλκέων 16, 546 24&lt;br /&gt;
| -&lt;br /&gt;
|&lt;br /&gt;
* 0 ✅&lt;br /&gt;
* 1 🟨&lt;br /&gt;
* 0 🟧&lt;br /&gt;
* 0 ❌&lt;br /&gt;
|Δεν είναι NB friendly.&lt;br /&gt;
|-&lt;br /&gt;
|🟨&lt;br /&gt;
|Σταυριανάκος Κυριάκος&lt;br /&gt;
|Αθήνα / Διαδικτυακά&lt;br /&gt;
|Ιδιωτικό&lt;br /&gt;
| Σταθερό: 2108064113&lt;br /&gt;
| 70€ ανα ραντεβού (επι 6 μήνες gatekeeping)&lt;br /&gt;
| Θησέως 15-17, Μαρούσι 151 24&lt;br /&gt;
| Ναι.&lt;br /&gt;
|&lt;br /&gt;
* 0 ✅&lt;br /&gt;
* 2 🟨&lt;br /&gt;
* 0 🟧&lt;br /&gt;
* 0 ❌&lt;br /&gt;
| Διάβασε καλά την τιμή.&lt;br /&gt;
|-&lt;br /&gt;
|🟧&lt;br /&gt;
|Μεταξάς Σπυρίδων&lt;br /&gt;
|Αθήνα&lt;br /&gt;
|Ιδιωτικό&lt;br /&gt;
|Σταθερό: 2107116438&lt;br /&gt;
|70 ευρώ με κάρτα, 60 ευρώ χωρίς.&lt;br /&gt;
|Ρόδου 17, Μαρούσι, Αττική.&lt;br /&gt;
|Όχι.&lt;br /&gt;
|&lt;br /&gt;
* 1 ✅&lt;br /&gt;
* 0 🟨&lt;br /&gt;
* 0 🟧&lt;br /&gt;
* 1 ❌&lt;br /&gt;
| Με MTF ήταν super friendly, ενώ με FTM το ακριβώς αντίθετο. &lt;br /&gt;
|-&lt;br /&gt;
|🟧 &lt;br /&gt;
|Σαρρηγιανίδης Αλέξιος&lt;br /&gt;
|Θεσσαλονίκη&lt;br /&gt;
|Δημόσιο&lt;br /&gt;
| -&lt;br /&gt;
| -&lt;br /&gt;
| Ιπποκράτειο Θεσσαλονίκης&lt;br /&gt;
| Όχι.&lt;br /&gt;
|&lt;br /&gt;
* 0 ✅&lt;br /&gt;
* 0 🟨&lt;br /&gt;
* 1 🟧&lt;br /&gt;
* 0 ❌&lt;br /&gt;
| Δεν είναι κακός απλώς προτείνει τον Πάγκαλο (δλ. πήγαινε κατ&#039; ευθείαν εκεί) και έπειτα τον &#039;&#039;Μπουφίδη&#039;&#039; (γι&#039; αυτό και είναι 🟧 και όχι 🟨/✅) &lt;br /&gt;
|-&lt;br /&gt;
|❌&lt;br /&gt;
|Φλούδας Γεώργιος&lt;br /&gt;
|Αθήνα&lt;br /&gt;
|Δημόσιο&lt;br /&gt;
|[[File:Floudaskeeper.jpg|thumb|172x172px]]&lt;br /&gt;
| [[File:Flouda.png|thumb|163x163px|courtesy of Αθανασιάδης Λουκάς]]&lt;br /&gt;
| [https://media.discordapp.net/attachments/785742455928520725/1290054603814993930/hgf.png?ex=66fb1079&amp;amp;is=66f9bef9&amp;amp;hm=0441ce6ca9438130027d61078d2b76bc9abaa83ad99e97e7718a05554e2221f3&amp;amp;=&amp;amp;format=webp&amp;amp;quality=lossless&amp;amp;width=687&amp;amp;height=305 206]&lt;br /&gt;
| Όχι.&lt;br /&gt;
|&lt;br /&gt;
* 1 ✅&lt;br /&gt;
* 1 🟨&lt;br /&gt;
* 0 🟧&lt;br /&gt;
* 6 ❌&lt;br /&gt;
|Ο βασιλιάς του Gatekeeping, zero tolenace στο diy.&lt;br /&gt;
|-&lt;br /&gt;
|❌&lt;br /&gt;
|Απαζίδου Παρθένα&lt;br /&gt;
|Θεσσαλονίκη&lt;br /&gt;
|Δημόσιο&lt;br /&gt;
| -&lt;br /&gt;
| -&lt;br /&gt;
| Νοσοκομείο Αφροδισίων  &amp;amp; Δερματικών Νόσων Θεσσαλονίκης (παράρτημα Ιπποκράτειου στην Δελφών 124)&lt;br /&gt;
| Όχι.&lt;br /&gt;
|&lt;br /&gt;
* 0 ✅&lt;br /&gt;
* 0 🟨&lt;br /&gt;
* 0 🟧&lt;br /&gt;
* 1 ❌&lt;br /&gt;
|Δεν γνωρίζει απο &amp;quot;τρανς θέματα&amp;quot;.&lt;br /&gt;
|-&lt;br /&gt;
|❌ &lt;br /&gt;
|Λουκάς Αθανασιάδης&lt;br /&gt;
|Θεσσαλονίκη&lt;br /&gt;
|Δημόσιο&lt;br /&gt;
| -&lt;br /&gt;
| -&lt;br /&gt;
| -&lt;br /&gt;
| Όχι.&lt;br /&gt;
|&lt;br /&gt;
* 0 ✅&lt;br /&gt;
* 0 🟨&lt;br /&gt;
* 0 🟧&lt;br /&gt;
* 3 ❌&lt;br /&gt;
|Gatekeeping, zero tolenace στο diy, σπατάλη 2+ χρόνων.&lt;br /&gt;
|-&lt;br /&gt;
|❌&lt;br /&gt;
|Μπουφίδης Σταύρος&lt;br /&gt;
|Θεσσαλονίκη&lt;br /&gt;
|Ιδιωτικό&lt;br /&gt;
|Σταθερό: 2310253793&lt;br /&gt;
|&amp;quot;100€ μετρητά, 80€ κά- α όχι, συγνώμη, 80€ μέτρητα. 100€ κάρτα&amp;quot;&lt;br /&gt;
|Ερμού 36, Θεσσαλονίκη, 54623&lt;br /&gt;
|Όχι.&lt;br /&gt;
|&lt;br /&gt;
* 0 ✅&lt;br /&gt;
* 0 🟨&lt;br /&gt;
* 0 🟧&lt;br /&gt;
* 2 ❌&lt;br /&gt;
|Αν σ&#039; αρέσει να πληρώνεις για να σε κάνουν gatekeep, είναι τέλειος.&lt;br /&gt;
|-&lt;br /&gt;
|❌&lt;br /&gt;
|Καλλιόπη Προκοπάκη&lt;br /&gt;
|Αθήνα&lt;br /&gt;
|Ιδιωτικό&lt;br /&gt;
| -&lt;br /&gt;
| -&lt;br /&gt;
| -&lt;br /&gt;
| -&lt;br /&gt;
|&lt;br /&gt;
* 0 ✅&lt;br /&gt;
* 0 🟨&lt;br /&gt;
* 0 🟧&lt;br /&gt;
* 1 ❌&lt;br /&gt;
|Είναι κατά τον γάμο ομόφυλων ζευγαριών.&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== Ψυχολόγοι ==&lt;br /&gt;
{| class=&amp;quot;wikitable sortable&amp;quot;&lt;br /&gt;
|+&lt;br /&gt;
!✅/🟨/🟧/❌&lt;br /&gt;
!Όνομα&lt;br /&gt;
!Περιοχή&lt;br /&gt;
!Δημόσιο/Ιδιωτικό&lt;br /&gt;
!Επικοινωνία&lt;br /&gt;
!Τιμή&lt;br /&gt;
!Περιοχή&lt;br /&gt;
!Διαδικτυακά&lt;br /&gt;
!Κριτικές&lt;br /&gt;
!Σημειώσεις&lt;br /&gt;
|-&lt;br /&gt;
|✅&lt;br /&gt;
|Γεωργία Καμπόλη&lt;br /&gt;
|Άνω Λιόσια / Διαδικτυακά&lt;br /&gt;
|Ιδιωτικό&lt;br /&gt;
| Τηλέφωνο: 6931170170 &lt;br /&gt;
Email: geokaboli@gmail.com &lt;br /&gt;
&lt;br /&gt;
Email (στην ιστοσελίδα): info@kabolipsychologist.gr&lt;br /&gt;
| -&lt;br /&gt;
| Οδ. Ελύτη 2, Άνω Λιόσια 133 41&lt;br /&gt;
| Ναι.&lt;br /&gt;
|&lt;br /&gt;
* 1 ✅&lt;br /&gt;
* 0 🟨&lt;br /&gt;
* 0 🟧&lt;br /&gt;
* 0 ❌&lt;br /&gt;
| -&lt;br /&gt;
|-&lt;br /&gt;
|❌&lt;br /&gt;
|Γιαντσίδου Βασιλική&lt;br /&gt;
|Ορεστιάδα&lt;br /&gt;
|Ιδιωτικό&lt;br /&gt;
| -&lt;br /&gt;
| -&lt;br /&gt;
| -&lt;br /&gt;
| -&lt;br /&gt;
| -&lt;br /&gt;
| Στον κώλο της μαϊμούς, δεν θα βγάλεις άκρη, why bother?&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== Παιδοψυχίατροι ==&lt;br /&gt;
{| class=&amp;quot;wikitable sortable&amp;quot;&lt;br /&gt;
|+&lt;br /&gt;
!✅/🟨/🟧/❌&lt;br /&gt;
!Όνομα&lt;br /&gt;
!Περιοχή&lt;br /&gt;
!Δημόσιο/Ιδιωτικό&lt;br /&gt;
!Επικοινωνία&lt;br /&gt;
!Τιμή&lt;br /&gt;
!Περιοχή&lt;br /&gt;
!Διαδικτυακά&lt;br /&gt;
!Κριτικές&lt;br /&gt;
!Σημειώσεις&lt;br /&gt;
|-&lt;br /&gt;
|❌&lt;br /&gt;
|Στέλλα/Στυλιανή Βαγιωνά&lt;br /&gt;
|Θεσσαλονίκη&lt;br /&gt;
|Ιδιωτικό&lt;br /&gt;
| -&lt;br /&gt;
|70€ (χωρίς απόδειξη)&lt;br /&gt;
| -&lt;br /&gt;
| -&lt;br /&gt;
|&lt;br /&gt;
* 0 ✅&lt;br /&gt;
* 0 🟨&lt;br /&gt;
* 0 🟧&lt;br /&gt;
* 1 ❌&lt;br /&gt;
| -&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== Ενδοκρινολόγοι ==&lt;br /&gt;
{| class=&amp;quot;wikitable sortable&amp;quot;&lt;br /&gt;
|+&lt;br /&gt;
!✅/🟨/🟧/❌&lt;br /&gt;
!Όνομα&lt;br /&gt;
!Περιοχή&lt;br /&gt;
!Δημόσιο/Ιδιωτικό&lt;br /&gt;
!Επικοινωνία&lt;br /&gt;
!Τιμή&lt;br /&gt;
!Περιοχή&lt;br /&gt;
!Διαδικτυακά&lt;br /&gt;
!Κριτικές&lt;br /&gt;
!Σημειώσεις&lt;br /&gt;
|-&lt;br /&gt;
|🟨&lt;br /&gt;
|Κούκκου Ευτυχία&lt;br /&gt;
|Αθήνα&lt;br /&gt;
|Δημόσιο&lt;br /&gt;
| -&lt;br /&gt;
| -&lt;br /&gt;
| Γ.Ν. Έλενα Βενιζέλου, Αθήνα 115 21&lt;br /&gt;
| Όχι.&lt;br /&gt;
|&lt;br /&gt;
* 4 ✅&lt;br /&gt;
* 0 🟨&lt;br /&gt;
* 1 🟧&lt;br /&gt;
* 1 ❌&lt;br /&gt;
| - Θέλει διάγνωση. &lt;br /&gt;
- Κάνει περίεργο misgendering μερικές φορές.&lt;br /&gt;
|-&lt;br /&gt;
|🟨 (Βλέπε Σημειώσεις)&lt;br /&gt;
|Θεώδορος Θωμάς&lt;br /&gt;
|Αθήνα&lt;br /&gt;
|Ιδιωτικό&lt;br /&gt;
| Σταθερό: 2106436115&lt;br /&gt;
| 80-100€ η συνεδρία&lt;br /&gt;
| Λεωφ. Κηφισίας 5, 115 23 Αμπελόκηποι, Αθήνα&lt;br /&gt;
| -&lt;br /&gt;
|&lt;br /&gt;
* 4 ✅&lt;br /&gt;
* 1 🟨&lt;br /&gt;
* 0 🟧&lt;br /&gt;
* 0 ❌&lt;br /&gt;
| - Θέλει διάγνωση. &lt;br /&gt;
- Είναι γνωστό πως έχει γράψει &#039;&#039;&#039;50mg androcur&#039;&#039;&#039; ανά &#039;&#039;&#039;μέρα&#039;&#039;&#039;. &lt;br /&gt;
- Αντίστοιχη αντιμετώπιση με το σύνδρομο &amp;quot;Broken Arm&amp;quot; αλλά σε Τρανς έκδοση.&lt;br /&gt;
|-&lt;br /&gt;
|✅&lt;br /&gt;
|Σκαράκης Νικήτας&lt;br /&gt;
|Αθήνα&lt;br /&gt;
|Ιδιωτικό&lt;br /&gt;
| Σταθερό:  2107117965&lt;br /&gt;
| 50€ η συνεδρία&lt;br /&gt;
| Κυκλαμίνων 7 (Περιοχή Αγίου Ιεροθέου), Περιστέρι, Αττική&lt;br /&gt;
| Ναι. (60€ η συνεδρία)&lt;br /&gt;
|&lt;br /&gt;
* 1 ✅&lt;br /&gt;
* 0 🟨&lt;br /&gt;
* 0 🟧&lt;br /&gt;
* 0 ❌&lt;br /&gt;
| - Θέλει διάγνωση.&lt;br /&gt;
|-&lt;br /&gt;
|✅&lt;br /&gt;
|Στέργιος Κιούρας&lt;br /&gt;
|Θεσσαλονίκη&lt;br /&gt;
|Ιδιωτικό&lt;br /&gt;
| Σταθερό: 2310256498&lt;br /&gt;
| 50€ η συνεδρία&lt;br /&gt;
| Ερμού 36, Θεσσαλονίκη 546 23&lt;br /&gt;
| -&lt;br /&gt;
|&lt;br /&gt;
* 1 ✅&lt;br /&gt;
* 0 🟨&lt;br /&gt;
* 0 🟧&lt;br /&gt;
* 0 ❌&lt;br /&gt;
| - &#039;&#039;&#039;Δεν ζήτησε&#039;&#039;&#039; διάγνωση.&lt;br /&gt;
|-&lt;br /&gt;
|🟨&lt;br /&gt;
|Θεμιστοκλής Καλτσάς&lt;br /&gt;
|Θεσσαλονίκη&lt;br /&gt;
|Ιδιωτικό&lt;br /&gt;
| Σταθερό: 2310238719&lt;br /&gt;
| 50€ η συνεδρία&lt;br /&gt;
| Παλαιών Πατρών Γερμανού 21, Θεσσαλονίκη&lt;br /&gt;
| -&lt;br /&gt;
|&lt;br /&gt;
* 1 ✅&lt;br /&gt;
* 1 🟨&lt;br /&gt;
* 0 🟧&lt;br /&gt;
* 0 ❌&lt;br /&gt;
| - Δεν έχει θέμα με DIY, &#039;&#039;&#039;δεν ζήτησε άμεσα&#039;&#039;&#039; διάγνωση, αλλά &#039;&#039;&#039;την θέλει&#039;&#039;&#039; γενικότερα (δλ. αν δεν έχεις θα στη ζητήσει μελλοντικά μεσω e-mail)&lt;br /&gt;
- Έχει θέμα με τα &amp;quot;υψηλά&amp;quot; επίπεδα (π.χ. κανονικά pg/ml e2 στην μονοθεραπεία με injections είναι περίεργα γι&#039; αυτόν)&lt;br /&gt;
- Ζητάει διάγνωση στα άτομα που δεν λαμβάνουν DIY HRT.&lt;br /&gt;
- Ημι-συχνό misgendering.&lt;br /&gt;
|-&lt;br /&gt;
|✅&lt;br /&gt;
|Παναγιώτης Μ. Μπουντούρης&lt;br /&gt;
|Σύρος&lt;br /&gt;
|Ιδιωτικό&lt;br /&gt;
|Σταθερό: 2281082030&lt;br /&gt;
Κινητό: 6946545831&lt;br /&gt;
|30€ η πρώτη συνεδρία&lt;br /&gt;
10€ η συνταγή&lt;br /&gt;
|Κλεισθένους 15, Ερμούπολη, 84100, Κυκλάδων&lt;br /&gt;
| -&lt;br /&gt;
|&lt;br /&gt;
* 1 ✅&lt;br /&gt;
* 0 🟨&lt;br /&gt;
* 0 🟧&lt;br /&gt;
* 0 ❌&lt;br /&gt;
| -&lt;br /&gt;
|-&lt;br /&gt;
|🟨&lt;br /&gt;
|Κωνσταντίνος Α. Τούλης&lt;br /&gt;
|Θεσσαλονίκη&lt;br /&gt;
|Ιδιωτικό&lt;br /&gt;
|Τηλέφωνο: 2310222799&lt;br /&gt;
|50€ η συνεδρία&lt;br /&gt;
|Μητροπόλεως 73, Θεσσαλονίκη 546 22&lt;br /&gt;
| -&lt;br /&gt;
|&lt;br /&gt;
* 0 ✅&lt;br /&gt;
* 1 🟨&lt;br /&gt;
* 0 🟧&lt;br /&gt;
* 0 ❌&lt;br /&gt;
| - Θέλει διάγνωση.&lt;br /&gt;
|-&lt;br /&gt;
|🟨&lt;br /&gt;
|Γεώργιος Α. Κανάκης&lt;br /&gt;
|Αθήνα&lt;br /&gt;
|Ιδιωτικό&lt;br /&gt;
|Σταθερό: 2107709248&lt;br /&gt;
|&amp;lt;!-- we don&#039;t even fucking know --&amp;gt;&lt;br /&gt;
|Τσόχα 15-17, Αμπελόκηποι &lt;br /&gt;
| -&lt;br /&gt;
| -&lt;br /&gt;
| - Έχει ακουστεί πως έχει παραβιάσει την ανωνυμία δεδομένων.&lt;br /&gt;
|-&lt;br /&gt;
|❌&lt;br /&gt;
|Πουλάκος Πάυλος&lt;br /&gt;
|Θεσσαλονίκη&lt;br /&gt;
|Ιδιωτικό&lt;br /&gt;
|Σταθερό: 2105579147&lt;br /&gt;
|50€ η συνεδρία &lt;br /&gt;
|Τσιμισκή Ιωάννη 69, Αγία Σοφία, 546 22&lt;br /&gt;
| -&lt;br /&gt;
|&lt;br /&gt;
* 0 ✅&lt;br /&gt;
* 0 🟨&lt;br /&gt;
* 0 🟧&lt;br /&gt;
* 1 ❌&lt;br /&gt;
| - 100mg cypro ανά μέρα χωρίς προειδοποίηση στο cyclacur για τα πορτοκαλί/καφέ χάπια (πολύ κακό)&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== Δερματολόγοι/Αφροδισιολόγοι/Laser Κλινικές ==&lt;br /&gt;
{| class=&amp;quot;wikitable sortable&amp;quot;&lt;br /&gt;
|+&lt;br /&gt;
!✅/🟨/🟧/❌&lt;br /&gt;
!Όνομα&lt;br /&gt;
!Περιοχή&lt;br /&gt;
!Είδος&lt;br /&gt;
!Δημόσιο/Ιδιωτικό&lt;br /&gt;
!Επικοινωνία&lt;br /&gt;
!Τιμή&lt;br /&gt;
!Διαδικτυακά&lt;br /&gt;
!Κριτικές&lt;br /&gt;
!Σημειώσεις&lt;br /&gt;
|-&lt;br /&gt;
|❌&lt;br /&gt;
|Ζαχαρίας Ι. Ανδρεαδάκης&lt;br /&gt;
|Αθήνα&lt;br /&gt;
|Δερματολόγος/Αφροδισιολόγος/Laser&lt;br /&gt;
|Ιδιωτικό&lt;br /&gt;
| -&lt;br /&gt;
| -&lt;br /&gt;
| -&lt;br /&gt;
|&lt;br /&gt;
* 0 ✅&lt;br /&gt;
* 0 🟨&lt;br /&gt;
* 0 🟧&lt;br /&gt;
* 1 ❌&lt;br /&gt;
| -&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== Χειρούργοι ==&lt;br /&gt;
{| class=&amp;quot;wikitable sortable&amp;quot;&lt;br /&gt;
|+&lt;br /&gt;
!✅/🟨/🟧/❌&lt;br /&gt;
!Όνομα&lt;br /&gt;
!Περιοχή&lt;br /&gt;
!Δημόσιο/Ιδιωτικό&lt;br /&gt;
!Επικοινωνία&lt;br /&gt;
!Τιμή&lt;br /&gt;
!Περιοχή&lt;br /&gt;
!Διαδικτυακά&lt;br /&gt;
!Κριτικές&lt;br /&gt;
!Σημειώσεις&lt;br /&gt;
|-&lt;br /&gt;
|✅&lt;br /&gt;
|Ηλίας Μεξής&lt;br /&gt;
|Αθήνα&lt;br /&gt;
|Ιδιωτικό&lt;br /&gt;
| Σταθερό: 2114068315&lt;br /&gt;
| Top surgery ~3000€&lt;br /&gt;
|Αγ. Θεοδώρων 10, 14562 Κηφισιά&lt;br /&gt;
| -&lt;br /&gt;
|&lt;br /&gt;
* 1 ✅&lt;br /&gt;
* 0 🟨&lt;br /&gt;
* 0 🟧&lt;br /&gt;
* 0 ❌&lt;br /&gt;
| - Δεν ζητάει γνωμάτευση.&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== Δικηγόροι ==&lt;br /&gt;
{| class=&amp;quot;wikitable sortable&amp;quot;&lt;br /&gt;
|+&lt;br /&gt;
!✅/🟨/🟧/❌&lt;br /&gt;
!Όνομα&lt;br /&gt;
!Περιοχή&lt;br /&gt;
!Δημόσιο/Ιδιωτικό&lt;br /&gt;
!Επικοινωνία&lt;br /&gt;
!Τιμή&lt;br /&gt;
!Περιοχή&lt;br /&gt;
!Διαδικτυακά&lt;br /&gt;
!Κριτικές&lt;br /&gt;
!Σημειώσεις&lt;br /&gt;
|-&lt;br /&gt;
|✅&lt;br /&gt;
|Αθηνά Καλογρίδη&lt;br /&gt;
|Θεσσαλονίκη&lt;br /&gt;
|Ιδιωτικό&lt;br /&gt;
| Σταθερό: 2310220704&lt;br /&gt;
| 125€ αίτηση&lt;br /&gt;
125€ δικαστήριο&lt;br /&gt;
43€ εισαγγελέας&lt;br /&gt;
| Κομνηνών 20, Θεσσαλονίκη, 54624, ΘΕΣΣΑΛΟΝΙΚΗΣ&lt;br /&gt;
| -&lt;br /&gt;
|&lt;br /&gt;
* 1 ✅&lt;br /&gt;
* 0 🟨&lt;br /&gt;
* 0 🟧&lt;br /&gt;
* 0 ❌&lt;br /&gt;
| -&lt;br /&gt;
|}&lt;/div&gt;</summary>
		<author><name>Goblinmoder</name></author>
	</entry>
	<entry>
		<id>https://wiki.diyon.top/index.php?title=HRT&amp;diff=994</id>
		<title>HRT</title>
		<link rel="alternate" type="text/html" href="https://wiki.diyon.top/index.php?title=HRT&amp;diff=994"/>
		<updated>2025-04-16T19:36:23Z</updated>

		<summary type="html">&lt;p&gt;Goblinmoder: added EC to regular E&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{#seo:&lt;br /&gt;
|title_mode=replace&lt;br /&gt;
|title=HRT&lt;br /&gt;
|description=We are open to discussion and actively on-going changes in formatting and contents of this Page and Website (in general). The e-mail address to refer to is fox@diyon.top&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
&amp;lt;languages/&amp;gt;&lt;br /&gt;
&amp;lt;translate&amp;gt;&lt;br /&gt;
&amp;lt;!--T:41--&amp;gt;&lt;br /&gt;
After around a month on HRT some of your ranges in your [[Blood Testing|blood test]] should be within desired ranges.&lt;br /&gt;
&lt;br /&gt;
Pricemaps are there to evaluate prices through &#039;&#039;&#039;[https://galinos.gr galinos.gr]&#039;&#039;&#039; (in case something is outdated, look for the green line that says &amp;quot;Λιανική&amp;quot;)&lt;br /&gt;
&lt;br /&gt;
We are open to discussion and actively on-going changes in formatting and contents of this Page and Website (in general). The e-mail address to refer to is &#039;&#039;&#039;fox@diyon.top&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--T:43--&amp;gt;&lt;br /&gt;
== Transfem ==&lt;br /&gt;
Taking Puberty Blockers ([[HRT#Antiandrogens and GNRH Agonists|GNRH Agonists]], e.g: Arvekap) or any Anti Androgen (e.g: Aldactone, Androcur) &#039;&#039;&#039;without [[HRT#Estrogens|Estrogens]]&#039;&#039;&#039; is generally discouraged even during youth transitioning (This is &#039;&#039;&#039;non-definitive&#039;&#039;&#039; for Enby folks)&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--T:44--&amp;gt;&lt;br /&gt;
=== Monotherapy ===&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|+&lt;br /&gt;
!Type&lt;br /&gt;
!Commercial Names&lt;br /&gt;
!Dosage&lt;br /&gt;
!Notes&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
====== Sublingual (E Valerate or Hemihydrate) ======&lt;br /&gt;
|Cyclacur (EV), Estrofem (EH, imported), Trisequens (12 pills 2mg EH, 10 pills norgestrel, 6 pills 1mg EH)&lt;br /&gt;
|&amp;gt;=8-12mg/day&lt;br /&gt;
|While it is possible, even with a smaller dosage (&#039;&#039;&#039;at least 6mg&#039;&#039;&#039;), it&#039;s not that common. Ideally, use your blood tests to &#039;&#039;&#039;minmax&#039;&#039;&#039; your doses.&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
====== Injectable Estradiol Valerate (EV) ======&lt;br /&gt;
|Neofollin (can be ordered from pharmacies near Czechia, or aptekaapo.com &#039;&#039;&#039;but they’re not on hrtcafe&#039;&#039;&#039;, not tested in Greece), Delestrogen (Vial, unavailable), Progynon Depot (Ampules, unavailable), [[File:What-excuse-me.gif|thumb|[[HRT#Other resources|my honest reaction]]]]&lt;br /&gt;
|5-7mg/5 days&lt;br /&gt;
|&lt;br /&gt;
* Due to the large spikes in levels combined with the short [https://en.wikipedia.org/wiki/Biological_half-life half-life] it is not recommended for dosages to surpass the 5 day mark because it may cause menopause symptoms.&lt;br /&gt;
* Branded versions of this medication are not available in greece.&lt;br /&gt;
* The ampules contain a certain mg and do not allow for larger dosages, they are not re-usable. It is recommended to use a vial with a cap.&lt;br /&gt;
* Look for &#039;&#039;&#039;[https://arc-w.nihr.ac.uk/Wordpress/wp-content/uploads/2015/07/Low-dead-space-syringes.png syringe dead space]([[HRT#:~:text=* = It has been mentioned that syringes account for dead space, although that is not 100% certain.|*]])&#039;&#039;&#039;, e.g. if there&#039;s &#039;&#039;&#039;0.05mL&#039;&#039;&#039; remaining after injecting, draw &#039;&#039;&#039;+0.05mL&#039;&#039;&#039; from the vial.&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
====== Injectable Estradiol Cypionate (EC) ======&lt;br /&gt;
|[[File:What-excuse-me.gif|thumb|[[HRT#Other resources|my honest reaction]]]]Depo-Estradiol (US only, unavailable),&lt;br /&gt;
|5-7mg/7 days&lt;br /&gt;
|&lt;br /&gt;
* Look for &#039;&#039;&#039;[https://arc-w.nihr.ac.uk/Wordpress/wp-content/uploads/2015/07/Low-dead-space-syringes.png syringe dead space]([[HRT#:~:text=* = It has been mentioned that syringes account for dead space, although that is not 100% certain.|*]])&#039;&#039;&#039;, e.g. if there&#039;s &#039;&#039;&#039;0.05mL&#039;&#039;&#039; remaining after injecting, draw &#039;&#039;&#039;+0.05mL&#039;&#039;&#039; from the vial.&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
====== Injectable Estradiol Enanthate (EEn) ======&lt;br /&gt;
|[[File:What-excuse-me.gif|thumb|[[HRT#Other resources|my honest reaction]]]]&lt;br /&gt;
|4-7mg/7 days&lt;br /&gt;
7-10mg/10 days (7.2mg usually, depending on the vial, it&#039;s optimal because drawing cents of mL are hard to get right)&lt;br /&gt;
|&lt;br /&gt;
* You can multiply the weekly dosage by 2, which lasts up to 14 days (as much as the [https://en.wikipedia.org/wiki/Biological_half-life half-life] of Enanthate)&lt;br /&gt;
* Look for &#039;&#039;&#039;[https://arc-w.nihr.ac.uk/Wordpress/wp-content/uploads/2015/07/Low-dead-space-syringes.png syringe dead space]([[HRT#:~:text=* = It has been mentioned that syringes account for dead space, although that is not 100% certain.|*]])&#039;&#039;&#039;, e.g. if there&#039;s &#039;&#039;&#039;0.05mL&#039;&#039;&#039; remaining after injecting, draw &#039;&#039;&#039;+0.05mL&#039;&#039;&#039; from the vial.&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
====== Injectable Estradiol Undecylate (EU/EUn) ======&lt;br /&gt;
|[[File:What-excuse-me.gif|thumb|[[HRT#Other resources|my honest reaction]]]]&lt;br /&gt;
|There&#039;s not enough information on dosage. The frequency of those may differ according to the oil used (MCT/Castor oil). Indicative Dosages:&lt;br /&gt;
15-20mg/2 weeks&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--T:45--&amp;gt;&lt;br /&gt;
20-40mg+/4 weeks&lt;br /&gt;
|&lt;br /&gt;
* There&#039;s not enough information on its [[wikipedia:Biological_half-life|half-life]], a higher dosage can be administered that can last up to 20-30 days.&lt;br /&gt;
* [[wikipedia:Intramuscular_injection|IM injections]] last longer so they give better levels during the same period of time per injection.&lt;br /&gt;
* Needs at least 90 days to reach stable levels.&lt;br /&gt;
* Look for &#039;&#039;&#039;[https://arc-w.nihr.ac.uk/Wordpress/wp-content/uploads/2015/07/Low-dead-space-syringes.png syringe dead space]([[HRT#:~:text=* = It has been mentioned that syringes account for dead space, although that is not 100% certain.|*]])&#039;&#039;&#039;, e.g. if there&#039;s &#039;&#039;&#039;0.05mL&#039;&#039;&#039; remaining after injecting, draw &#039;&#039;&#039;+0.05mL&#039;&#039;&#039; from the vial.&lt;br /&gt;
|}&lt;br /&gt;
&#039;&#039;&#039;*&#039;&#039;&#039; = It has been mentioned that syringes account for dead space, although that is not 100% certain.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--T:46--&amp;gt;&lt;br /&gt;
=== Sublingual vs Oral ===&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|+&lt;br /&gt;
!Method&lt;br /&gt;
!Substance&lt;br /&gt;
!Dosage&lt;br /&gt;
!Observations&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
====== Oral ======&lt;br /&gt;
|Estradiol Valerate in pill form (e.g. Cyclacur)&lt;br /&gt;
|&amp;gt;=6mg/day&lt;br /&gt;
(max 10mg as per Dr. Powers)&lt;br /&gt;
|It is recommended that doses are taken separately on set time intervals during the day for more stable estradiol levels, e.g. for a 6mg dose you would take 2mg per 8 hours. By the oral route the active substance is metabolized by the liver and part of it is converted to estrone (E1), which has much less feminizing effects than estradiol (E2) so the desired effect is essentially prevented. The bioavailability of estradiol by oral administration is very low (~5%) and usually lower levels of E2 are observed in blood tests than other methods of administration. [anecdotal apo to server, wikipedia kai tttt - correct/expand?] It is also necessary to administer anti-androgens to reduce testosterone levels to the female range.&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
====== Sublingual ======&lt;br /&gt;
|Estradiol Valerate in pill form (e.g. Cyclacur)&lt;br /&gt;
|&amp;gt;=4mg/day&lt;br /&gt;
|It is recommended that doses are taken separately on set time intervals during the day for more stable estradiol levels, e.g. for a 6mg dose you would take 2mg per 8 hours. The sublingual way bypasses estradiol metabolism by the liver and has about 5 times the estradiol bioavailability of the oral way. This way, estradiol levels have greater range than orally (higher peak lower bottom), in oral they remain higher for ~12 hours while sublingually they go away after 3-4 hours [idk if honscience the study is from 2005 on cis women]&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== Vial info === &amp;lt;!--T:47--&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--T:48--&amp;gt;&lt;br /&gt;
=== Medications ===&lt;br /&gt;
For cyclacur: &#039;&#039;&#039;take only the white pills, the brown pills are Norgestrel which have 0.5mg of estradiol but has an androgenic effect and may also cause other side effects&#039;&#039;&#039;. &lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--T:49--&amp;gt;&lt;br /&gt;
==== Estrogens ====&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|+&lt;br /&gt;
!Brand Name(s)&lt;br /&gt;
!Substance&lt;br /&gt;
!Form&lt;br /&gt;
!Method of Administration&lt;br /&gt;
!Cost&lt;br /&gt;
!Cost with Healthcare Coverage&lt;br /&gt;
!Dosage&lt;br /&gt;
!Safety&lt;br /&gt;
!Notes&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
====== [https://www.galinos.gr/web/drugs/main/drugs/Cyclacur Cyclacur] ======&lt;br /&gt;
|Estradiol Valerate (EV)&lt;br /&gt;
|Pill tablet&lt;br /&gt;
|Orally or sublingually&lt;br /&gt;
|2.01€ for 11 pills ([https://www.galinos.gr/service/drugs/drawPackagePrice/1198 Pricemap])&lt;br /&gt;
~130.8-328.€/year&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--T:50--&amp;gt;&lt;br /&gt;
~10.9-27.4€/month&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--T:51--&amp;gt;&lt;br /&gt;
Prices are indicative, the cost depends on the dosage.&lt;br /&gt;
| -&lt;br /&gt;
|6mg-10mg/day (according to Dr. Will Powers)&lt;br /&gt;
4mg-8mg/day (according to Greek Endocrinologists)&lt;br /&gt;
|A&lt;br /&gt;
|&lt;br /&gt;
* &#039;&#039;&#039;Only white pills are used.&#039;&#039;&#039; Brown pills do have a bit of estradiol but arent taken due to other side effects.&lt;br /&gt;
* You need antiandrogens or GNRH antagonists if you haven&#039;t had an orchiectomy.&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
====== Progynova ======&lt;br /&gt;
|Estradiol Valerate (EV)&lt;br /&gt;
|Pill tablet&lt;br /&gt;
|Orally or sublingually&lt;br /&gt;
|~22€ for 72 pills of 1 mg or ~32€ for 72 pills of 2 mg&lt;br /&gt;
Prices are indicative, the cost depends on the dosage.&lt;br /&gt;
| -&lt;br /&gt;
|4mg-8mg/day&lt;br /&gt;
|A&lt;br /&gt;
|&lt;br /&gt;
* There is no reason to use it in Greece since Cyclacur is available in Greek pharmacies.&lt;br /&gt;
* You need antiandrogens or GNRH antagonists if you haven&#039;t had an orchiectomy.&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
====== Estrofem, Estrifam (german brand name), [https://www.galinos.gr/web/drugs/main/drugs/trisequens Trisequens] ======&lt;br /&gt;
|Estradiol Hemihydrate&lt;br /&gt;
|Pill tablet&lt;br /&gt;
|Orally or sublingually&lt;br /&gt;
|~30€ for 28 pills of 2 mg without shipping costs.&lt;br /&gt;
Prices are indicative, the cost depends on the dosage.&lt;br /&gt;
| -&lt;br /&gt;
|4mg-8mg/day&lt;br /&gt;
|A&lt;br /&gt;
|&lt;br /&gt;
* There is no reason to use it in Greece since Cyclacur is available in Greek pharmacies.&lt;br /&gt;
* You need antiandrogens or GNRH antagonists if you haven&#039;t had an orchiectomy.&lt;br /&gt;
* Trisequens, while being available in Greece, is odd to take with 12 pills being 2mg EH, 10 norgestrel, and 6 1mg EH, for a much higher price than [[HRT#Cyclacur|Cyclacur]].&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
====== [https://www.galinos.gr/web/drugs/main/drugs/Dermestril Dermestril] ======&lt;br /&gt;
|Estradiol Hemihydrate&lt;br /&gt;
|Patch&lt;br /&gt;
|Trans-dermally&lt;br /&gt;
|44€ for 24 patches of 100mcg&lt;br /&gt;
~15€ for 8 patches of 50mcg&lt;br /&gt;
| -&lt;br /&gt;
|50mcg/3.5 days (when starting off)&lt;br /&gt;
100mcg/3.5 days (whenever your e2 levels are stable)&lt;br /&gt;
|A&lt;br /&gt;
|&lt;br /&gt;
* &#039;&#039;&#039;If you have no idea how to apply patches watch this:&#039;&#039;&#039; [https://youtu.be/tXGIYWPqdpI?si=O0dlE19pq0ic0PZP Demonstrational Video]&lt;br /&gt;
* You need antiandrogens or GNRH antagonists if you haven&#039;t had an orchiectomy.&lt;br /&gt;
* 100mcg patches can be cut into 2 if needed.&lt;br /&gt;
|-&lt;br /&gt;
|Neofollin (can be ordered from pharmacies near Czechia, not tested in Greece), Delestrogen (Vial, unavailable), Progynon Depot (Ampules, unavailable)&lt;br /&gt;
|&lt;br /&gt;
====== Estradiol Valerate (EV) ======&lt;br /&gt;
|Injectable&lt;br /&gt;
|Subcutaneous or Intramuscular&lt;br /&gt;
|80€/year (including shipping costs, syringes and alcohol swabs)&lt;br /&gt;
| -&lt;br /&gt;
|5-7mg/5 days (monotherapy)&lt;br /&gt;
4-5mg/7 days (only in combination with an antiandrogen or GNRH agonist)&lt;br /&gt;
|A+&lt;br /&gt;
|&lt;br /&gt;
* It can be used without antiandrogens or GNRH agonists in ([[HRT#Μονοθεραπεία|Monotherapy]]) by increasing the dosage.&lt;br /&gt;
|-&lt;br /&gt;
|Depo-Estradiol (US only, unavailable)&lt;br /&gt;
|&lt;br /&gt;
====== Estradiol Cypionate (EC) ======&lt;br /&gt;
|Injectable&lt;br /&gt;
|Subcutaneous or Intramuscular&lt;br /&gt;
|~70-80€/year (not including shipping costs, syringes and alcohol swabs)&lt;br /&gt;
| -&lt;br /&gt;
|5-7mg/7 days&lt;br /&gt;
(&#039;&#039;&#039;mono dose&#039;&#039;&#039;)&lt;br /&gt;
? (TBD/&#039;&#039;&#039;dose with AA&#039;&#039;&#039;)&lt;br /&gt;
|?&lt;br /&gt;
|&lt;br /&gt;
* It can be used without antiandrogens or GNRH agonists in ([[HRT#Μονοθεραπεία|Monotherapy]])&lt;br /&gt;
|-&lt;br /&gt;
| -&lt;br /&gt;
|&lt;br /&gt;
====== Estradiol Enanthate (EEn) ======&lt;br /&gt;
|Injectable&lt;br /&gt;
|Subcutaneous or Intramuscular&lt;br /&gt;
|80€/year (including shipping costs, syringes and alcohol swabs)&lt;br /&gt;
| -&lt;br /&gt;
|2.5mg-7mg/7 days&lt;br /&gt;
(usual dosage: 4mg/7days)&lt;br /&gt;
|A+&lt;br /&gt;
|&lt;br /&gt;
* It can be used without antiandrogens or GNRH agonists in ([[HRT#Μονοθεραπεία|Monotherapy]]) by increasing the dosage.&lt;br /&gt;
|-&lt;br /&gt;
| -&lt;br /&gt;
|&lt;br /&gt;
====== Estradiol Undecylate (EU, EUn) ======&lt;br /&gt;
|Injectable&lt;br /&gt;
|Subcutaneous or Intramuscular&lt;br /&gt;
|130€/year (including shipping costs, syringes and alcohol swabs)&lt;br /&gt;
| -&lt;br /&gt;
|15-20mg/2 weeks&lt;br /&gt;
20-40mg+/4 weeks&lt;br /&gt;
|A+&lt;br /&gt;
|&lt;br /&gt;
* There&#039;s not much info on dosages, usually seen in [[HRT#Μονοθεραπεία|monotherapy]].&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--T:52--&amp;gt;&lt;br /&gt;
==== Anti-Androgens and GNRH Agonists ====&lt;br /&gt;
These should &#039;&#039;&#039;not&#039;&#039;&#039; be taken sublingually.&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|+&lt;br /&gt;
!Brand Name(s)&lt;br /&gt;
!Substance&lt;br /&gt;
!Cost&lt;br /&gt;
!Cost with Healthcare Coverage&lt;br /&gt;
!Dosage&lt;br /&gt;
!Safety&lt;br /&gt;
!Form&lt;br /&gt;
!Type&lt;br /&gt;
!Notes&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
====== [https://www.galinos.gr/web/drugs/main/drugs/Androcur Androcur] ======&lt;br /&gt;
|Cyproterone Acetate (CPA) is also referred to as cypro&lt;br /&gt;
|21.58€/50mg * 50 pills &lt;br /&gt;
19.7-31.5€/year&lt;br /&gt;
&lt;br /&gt;
([https://www.galinos.gr/service/drugs/drawPackagePrice/8023 Pricemap])&lt;br /&gt;
|?&lt;br /&gt;
|12.5mg/2 days- 10mg/day&lt;br /&gt;
&#039;&#039;&#039;Larger doses shouldn&#039;t be administered&#039;&#039;&#039;&lt;br /&gt;
|C&lt;br /&gt;
|Pill tablet&lt;br /&gt;
|Progestin (Steroidal antiandrogen)&lt;br /&gt;
Stops testosterone production.&lt;br /&gt;
|The max recommended dosage is 10mg/day . Monitoring of prolactin levels is recommended through [[Blood Testing#MTF|blood testing]].&lt;br /&gt;
&#039;&#039;&#039;Many doctors give overdoses of 50 mg/day. Cyproterone is a strong anti-androgen and testosterone suppression is possible with lower doses. A change of doctor is recommended.&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--T:53--&amp;gt;&lt;br /&gt;
[[wikipedia:Side_effects_of_cyproterone_acetate|Side Effects]]:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--T:54--&amp;gt;&lt;br /&gt;
* Benign brain tumor.&lt;br /&gt;
* In rare cases, liver damage.&lt;br /&gt;
* Vitamin B12 deficiency.&lt;br /&gt;
* Breast cancer.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--T:55--&amp;gt;&lt;br /&gt;
Testosterone suppression can be achieved with even lower doses, however a 50 mg pill is difficult to cut into pieces of less than 12.5 mg even with a pill cutter.&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
====== [https://www.galinos.gr/web/drugs/main/drugs/Bicalut Bicalut] ======&lt;br /&gt;
|Bicalutamide (aka: bica)&lt;br /&gt;
|29.10 euro/30 pills&lt;br /&gt;
29.10 euro/month&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--T:56--&amp;gt;&lt;br /&gt;
~350 euro/year&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
([https://www.galinos.gr/service/drugs/drawPackagePrice/11120 Pricemap])&lt;br /&gt;
|6.77 euro/month (28 tabs)&lt;br /&gt;
~95 euro/year&lt;br /&gt;
|50mg/day&lt;br /&gt;
|A-&lt;br /&gt;
|Pill/Tablet&lt;br /&gt;
|Androgen receptor antagonist (Nonsteroidal antiandrogen)&lt;br /&gt;
Blocks absorption of all androgens (including testosterone)&lt;br /&gt;
|&#039;&#039;&#039;Serious negative interactions can be noted if combined with other anti-androgens and GNRH agonists (except progesterone)&#039;&#039;&#039;&lt;br /&gt;
&#039;&#039;&#039;Very rare&#039;&#039;&#039; chance for recoverable and non-fatal liver damage for people with a certain rare mutation.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--T:57--&amp;gt;&lt;br /&gt;
Most of the effects listen in the instruction manual are scaremongering. (it lists a very high chance of liver issues when they are actually very rare, and also lists photosensitivity, which if it even occurs at all, it should be quite rare. We are aware of nobody who had a negative interction between alexandrite laser hair removal and bicalutamide).&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--T:58--&amp;gt;&lt;br /&gt;
Note that bicalutamide, unlike most other anti-androgens, &#039;&#039;&#039;does not&#039;&#039;&#039; lower testosterone levels, in fact they usually rise as the body responds to testosterone receptors being inhibited. Do not be alarmed if you notice an increase of testosterone in your blood tests.&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
====== [https://www.galinos.gr/web/drugs/main/drugs/Arvekap Arvekap] ======&lt;br /&gt;
|Triptorelin&lt;br /&gt;
| -&lt;br /&gt;
|~200/year?&lt;br /&gt;
|&lt;br /&gt;
|A?&lt;br /&gt;
|Injection&lt;br /&gt;
|GNRH Agonist&lt;br /&gt;
(indirectly) Stops testosterone AND estrogen production&lt;br /&gt;
|Also a puberty blocker&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
====== [https://www.galinos.gr/web/drugs/main/drugs/aldactone Aldactone] ======&lt;br /&gt;
|Spironolactone&lt;br /&gt;
|5.19 euro/20 tabs (100mg)&lt;br /&gt;
([https://www.galinos.gr/service/drugs/drawPackagePrice/148 Pricemap])&lt;br /&gt;
|?&lt;br /&gt;
|50mg-200mg/day&lt;br /&gt;
|B-C&lt;br /&gt;
|Tablet&lt;br /&gt;
|Antimineralocorticoid/MCRA&lt;br /&gt;
|Very inefficient, makes you pee, it&#039;s a medication for blood pressure&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
|Flutamide&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|F---&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|Only in this table as an example to avoid&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
==== Miscellaneous/Progesterone ====&lt;br /&gt;
Progesterone falls under this category, as it is not quite the same as other Anti-Androgens, the mention of Progesterone in this title is necessary in order to reduce confusion and questions such as &amp;quot;Where is progesterone?&amp;quot; and &amp;quot;Did you remove prog from the page?&amp;quot;.&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
!Brand Name(s)&lt;br /&gt;
!Substance&lt;br /&gt;
!Cost&lt;br /&gt;
!Cost with Healthcare Coverage&lt;br /&gt;
!Dosage&lt;br /&gt;
!Safety&lt;br /&gt;
!Form&lt;br /&gt;
!Type&lt;br /&gt;
!Notes&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
====== [https://www.galinos.gr/web/drugs/main/drugs/utrogestran Utrogestan] ======&lt;br /&gt;
|Progesterone (P4) it is also referred to as prog&lt;br /&gt;
|6.56 euro/15 caps (200mg)&lt;br /&gt;
([https://www.galinos.gr/service/drugs/drawPackagePrice/7619 Pricemap])&lt;br /&gt;
|?&lt;br /&gt;
|200mg daily (rectal administration)&lt;br /&gt;
|A&lt;br /&gt;
|Capsule&lt;br /&gt;
|Stops testosterone production.&lt;br /&gt;
|There is not much confirmed information about progesterone.&lt;br /&gt;
It can also be taken orally but the absorption rate is very low.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--T:59--&amp;gt;&lt;br /&gt;
Anecdotal claims:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--T:60--&amp;gt;&lt;br /&gt;
* Helps with breast development and with feminization in general.&lt;br /&gt;
* Can be given after one year of estradiol.&lt;br /&gt;
* Suggested to be given after the individual reaches Tanner stage 3.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--T:61--&amp;gt;&lt;br /&gt;
It can have androgenic or other (non-serious, recoverable) effects for some individuals - in particular it can be converted to DHT by the body even in combination with dutasteride or bicalutamide.&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--T:62--&amp;gt;&lt;br /&gt;
==== Other anti-androgens (optional) ====&lt;br /&gt;
These are used to block conversion of other androgens to DHT (which causes hair loss (hair) and body hair growth). They aren&#039;t general use Anti-Androgens.&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
!Brand Name(s)&lt;br /&gt;
!Substance&lt;br /&gt;
!Cost&lt;br /&gt;
!Cost with Healthcare Coverage&lt;br /&gt;
!Dosage&lt;br /&gt;
!Safety&lt;br /&gt;
!Form&lt;br /&gt;
!Type&lt;br /&gt;
!Notes&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
====== [https://www.galinos.gr/web/drugs/main/packages/26485 Dastidem], [https://www.galinos.gr/web/drugs/main/packages/25557 Rafuster], [https://www.galinos.gr/web/drugs/main/packages/25893 Duaride], [https://www.galinos.gr/web/drugs/main/packages/25894 Dustezor] ======&lt;br /&gt;
|Dutasteride&lt;br /&gt;
|7.90€/30 caps&lt;br /&gt;
|~6€/30 caps&lt;br /&gt;
|0.5mg/day (?/TBD)&lt;br /&gt;
|A-&lt;br /&gt;
|Capsule&lt;br /&gt;
| -&lt;br /&gt;
|High effectiveness.&lt;br /&gt;
|-&lt;br /&gt;
| -&lt;br /&gt;
|Finasteride&lt;br /&gt;
| -&lt;br /&gt;
| -&lt;br /&gt;
| -&lt;br /&gt;
|F&lt;br /&gt;
| -&lt;br /&gt;
| -&lt;br /&gt;
|Effectiveness is none to medium (Just take Dutasteride - will not stop conversion of Progesterone to DHT)&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--T:63--&amp;gt;&lt;br /&gt;
=== Blood Levels ===&lt;br /&gt;
&lt;br /&gt;
==== Refer to the [[Blood Testing]] page. ====&amp;lt;!--T:81--&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Transmasc ==&lt;br /&gt;
&lt;br /&gt;
=== Medications ===&lt;br /&gt;
&lt;br /&gt;
==== Testosterone ====&lt;br /&gt;
[https://www.galinos.gr/web/drugs/main/substances/testosterone/marketing Galinos.gr&#039;s testosterone availability page]&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|+&lt;br /&gt;
!Brand Name(s)&lt;br /&gt;
!Substance&lt;br /&gt;
!Form&lt;br /&gt;
!Method of Administration&lt;br /&gt;
!Cost&lt;br /&gt;
!Cost with Healthcare Coverage&lt;br /&gt;
!Dosage&lt;br /&gt;
!Safety&lt;br /&gt;
!Notes&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
====== [https://www.galinos.gr/web/drugs/main/packages/4929 Norma] ======&lt;br /&gt;
|Testosterone Enanthate&lt;br /&gt;
|Injection/Ampule&lt;br /&gt;
|Subcutaneous or Intramuscular&lt;br /&gt;
|17.67€/ampule &lt;br /&gt;
([https://www.galinos.gr/service/drugs/drawPackagePrice/4929 Pricemap])&lt;br /&gt;
|?&lt;br /&gt;
|?&lt;br /&gt;
|?&lt;br /&gt;
| -&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
====== [https://www.galinos.gr/web/drugs/main/packages/21943 Nebido] ======&lt;br /&gt;
|Testosterone Undecanoate&lt;br /&gt;
|Injection/Vial&lt;br /&gt;
|Intramuscular&lt;br /&gt;
|100.37€/vial&lt;br /&gt;
([https://www.galinos.gr/service/drugs/drawPackagePrice/21943 Pricemap])&lt;br /&gt;
|~32.52€/vial (you pay 25%)&lt;br /&gt;
|1 vial (1000mg/4mL)/10-20 weeks&lt;br /&gt;
|A&lt;br /&gt;
|As a starting dose &#039;&#039;&#039;after a year of HRT&#039;&#039;&#039;, you could also consider:&lt;br /&gt;
&lt;br /&gt;
* Instead of injecting one vial per 20 weeks, you do half every 10-12 weeks, however nothing could be sourced to support this. Though logically it could make sense as a practice.&lt;br /&gt;
* Do a test at 6 weeks after starting, if T is too high don&#039;t take the 2nd dose, if it&#039;s not you can take the 2nd and then test 2 weeks before every other dose.&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
====== [https://www.galinos.gr/web/drugs/main/packages/15739 Tostran] ======&lt;br /&gt;
|Testogel&lt;br /&gt;
|Gel&lt;br /&gt;
|Trans-dermally&lt;br /&gt;
|&#039;&#039;&#039;Starting dose&#039;&#039;&#039;&lt;br /&gt;
&amp;lt;!--T:82--&amp;gt;&lt;br /&gt;
* 35.54€/2 months&lt;br /&gt;
* 213.24€/year&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--T:83--&amp;gt;&lt;br /&gt;
&#039;&#039;&#039;30 mg dose&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--T:84--&amp;gt;&lt;br /&gt;
* 35.54€/40 days&lt;br /&gt;
* ~324.30€/year&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--T:85--&amp;gt;&lt;br /&gt;
&#039;&#039;&#039;40 mg dose&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--T:73--&amp;gt;&lt;br /&gt;
* 35.54€/30 days&lt;br /&gt;
* 426.48€/year&lt;br /&gt;
([https://www.galinos.gr/service/drugs/drawPackagePrice/15739 Pricemap])&lt;br /&gt;
|35.54€ -&amp;gt; 8.89€&lt;br /&gt;
|20mg/day (starting dose)&lt;br /&gt;
30-40mg/day&lt;br /&gt;
|A&lt;br /&gt;
|&lt;br /&gt;
* 1 pump of Tostran (&#039;&#039;&#039;0.5g&#039;&#039;&#039;) delivers 10 mg of T.&lt;br /&gt;
* 2 pumps of Tostran are 1 pump of Testogel (20.25mg of T)&lt;br /&gt;
* Can cause skin reactions.&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
==== GNRH Agonists ====&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
!Brand Name(s)&lt;br /&gt;
!Substance&lt;br /&gt;
! Cost&lt;br /&gt;
!Cost with Healthcare Coverage&lt;br /&gt;
!Dosage&lt;br /&gt;
!Safety&lt;br /&gt;
!Form&lt;br /&gt;
!Type&lt;br /&gt;
!Notes&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
====== [https://www.galinos.gr/web/drugs/main/drugs/Arvekap Arvekap] ======&lt;br /&gt;
|Triptorelin&lt;br /&gt;
| -&lt;br /&gt;
|~200/year?&lt;br /&gt;
|&lt;br /&gt;
|A?&lt;br /&gt;
|Injection&lt;br /&gt;
|GNRH Agonist&lt;br /&gt;
(indirectly) Stops testosterone AND estrogen production&lt;br /&gt;
|Also a puberty blocker&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
==== Other anti-androgens (optional) ====&lt;br /&gt;
These are used to block conversion of other androgens to DHT (which causes hair loss (hair) and body hair growth). They aren&#039;t general use Anti-Androgens.&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
!Brand Name(s)&lt;br /&gt;
!Substance&lt;br /&gt;
!Cost&lt;br /&gt;
!Cost with Healthcare Coverage&lt;br /&gt;
!Dosage&lt;br /&gt;
!Safety&lt;br /&gt;
!Form&lt;br /&gt;
!Type&lt;br /&gt;
!Notes&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
====== [https://www.galinos.gr/web/drugs/main/packages/26485 Dastidem], [https://www.galinos.gr/web/drugs/main/packages/25557 Rafuster], [https://www.galinos.gr/web/drugs/main/packages/25893 Duaride], [https://www.galinos.gr/web/drugs/main/packages/25894 Dustezor] ======&lt;br /&gt;
|Dutasteride&lt;br /&gt;
|7.90€/30 caps&lt;br /&gt;
|~6€/30 caps&lt;br /&gt;
|0.5mg/day (?/TBD)&lt;br /&gt;
|A-&lt;br /&gt;
|Capsule&lt;br /&gt;
| -&lt;br /&gt;
|High effectiveness. &lt;br /&gt;
Not to be confused with proper Anti-Androgens.&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== Nonbinary hrt *under construction* ==&lt;br /&gt;
&lt;br /&gt;
=== !!! disclaimer-warning about potential issues !!! ===&lt;br /&gt;
&lt;br /&gt;
=== General outline of nb hrt for amab and afab ===&lt;br /&gt;
&lt;br /&gt;
=== Medications ===&lt;br /&gt;
&lt;br /&gt;
==== Selective Estrogen Receptor Modulators (SERMs) ====&lt;br /&gt;
&lt;br /&gt;
* Tamoxifen is a selective estrogen receptor modulator (SERM). In some tissues such as the brain it activates estrogen receptors, which may help reduce dysphoria. In breast tissue it antagonizes estrogen receptors, preventing the formation of breast tissue if desired. There is some evidence that Tamoxifen inhibits memory, though the effects of taking it alongside regular estrogen are undocumented. Tamoxifen can cause cognitive dysfunction and increase your risk of stroke and pulmonary embolism. Tamoxifen may also be taken alongside 17β-estradiol, more research is needed. In this combination, estradiol should still have its effects (combating dysphoria in the brain, redistribution of body fat, smoother skin etc.) while tamoxifen prevents the growth of breast tissue.&lt;br /&gt;
* Raloxifene is another SERM. It is an estrogen receptor antagonist in breast tissue. It is an estrogen receptor agonist in bone and can be used to prevent osteoporosis. Raloxifene has been shown to reduce ERα expression in breast tissue in premenopausal women. As the synthesis of progesterone receptors (PR) is estrogen-regulated, raloxifene also decreases the expression of PR. Additionally, it was shown to decrease the presence of Ki-67, a biomarker for cell proliferation, in breast tissue of premenopausal women. As a result, it can be used to treat gynecomastia, and has been shown effective in reducing breast size in those with the condition. Raloxifene may promote feminine fat distribution: in a study on 56-66 year old postmenopausal women, there was an increase in fat in the legs and buttocks and a decrease in fat in the abdomen and trunk after 1 year on 60 mg/day raloxifene. It is not yet known how pronounced this effect is, as there have been no comparisons of body fat distribution between raloxifene and estradiol. Raloxifene may increase the risk of stroke and pulmonary embolism.&lt;br /&gt;
* Afimoxifene is a topical SERM and the primary metabolite of tamoxifen.&lt;br /&gt;
&lt;br /&gt;
==== Anti-androgens ====&lt;br /&gt;
&lt;br /&gt;
==== Bicalutamide ====&lt;br /&gt;
Bicalutamide is an  anti-androgen which is used mainly in the treatment of prostate cancer but can also be used to treat hirsutism, or as a component of hormone therapy in feminizing HRT, among other uses. It is nonsteroidal anti-androgen and a selective/pure antagonist of the androgen receptor. It has no other hormonal activity and does not lower androgen levels. Bicalutamide crosses the blood-brain barrier and blocks the effects of testosterone and dihydrotestosterone (DHT) both in the body and in the brain. While it has been observed that bicalutamide does not cross the blood-brain barrier in rats and dogs, this was found not to be the case in humans&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
In general Ralox seems the best idea based on overall effectiveness and less severe side effects compared to other SERMs. Most people on this kind of MtNB hrt seem to be using a combination of ralox (in place of estradiol) and bica [expand this + powers e1s schizo stuff?]&lt;br /&gt;
&lt;br /&gt;
== Legal ==&lt;br /&gt;
It is legal to buy anything without a diagnosis or a prescription (off the counter - OTC), Testosterone can be hit or miss, look for [https://www.galinos.gr/web/drugs/main/packages/15739 Tostran] (Testogel) or [https://www.galinos.gr/web/drugs/main/packages/4929 TEn] (Testosterone Enanthate/Norma, injections).  &lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--T:86--&amp;gt;&lt;br /&gt;
You can also check the &#039;&#039;&#039;[https://diyon.top/map Trans-Friendly Pharmacies Map]&#039;&#039;&#039; for any pharmacies near you (this goes for both Transfem and Transmasc HRT). &lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--T:75--&amp;gt;&lt;br /&gt;
There is no minimum or maximum legal age for someone to start HRT. &lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--T:76--&amp;gt;&lt;br /&gt;
It is not legally mandatory for someone to have a diagnosis by a psychiatrist in order to medically transition.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--T:77--&amp;gt;&lt;br /&gt;
There is no legally mandatory time restriction for a psychiatrist to monitor you before diagnosing you.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--T:78--&amp;gt;&lt;br /&gt;
You don&#039;t legally need to be on HRT in order to be exempt from the [[army]], change your [[Legal|legal sex]], or to have a [[surgery]].&lt;br /&gt;
&lt;br /&gt;
== Other resources == &amp;lt;!--T:79--&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--T:80--&amp;gt;&lt;br /&gt;
* Simulator: https://www.estrannai.se/&lt;br /&gt;
* https://transfemscience.org/ (note, the authors of this site disagree with a lot of what they are saying, regardless, it is still interesting)&lt;br /&gt;
** Introduction to Hormone Therapy for Transfeminine People: https://transfemscience.org/articles/transfem-intro/&lt;br /&gt;
** Older simulator: https://transfemscience.org/misc/injectable-e2-simulator/&lt;br /&gt;
** Dosage calculator: https://transfemscience.org/misc/injectable-dose-vol-conc-conv/&lt;br /&gt;
* https://diyhrt.wiki/ (alt link: https://anarch.cc/transfeminine-diy-hrt-the-ultimate-guide-2/)&lt;br /&gt;
* https://hrtcafe.net/&lt;br /&gt;
* ?? https://hrt.coffee/&lt;br /&gt;
* https://www.reddit.com/r/TransDIY/&lt;br /&gt;
* https://www.reddit.com/r/TransfemScience/&lt;br /&gt;
* https://groups.io/g/MTFHRT/wiki/29602 (alt link: https://anarch.cc/mtf-hrt-ultimate-diy/)&lt;br /&gt;
* https://hrt.cat/ - info for making your own (you will probably not need it - version 1.0: https://hrtcafe.net/hrtcat/)&lt;br /&gt;
* https://archive.ph/uQb8g (alt link: https://anarch.cc/making-your-own-injections/, as above)&lt;br /&gt;
* https://crimethinc.com/2022/12/15/producing-transdermal-estrogen-a-do-it-yourself-guide (alt link: https://anarch.cc/producing-transdermal-estrogen-a-do-it-yourself-guide/, as above)&lt;br /&gt;
* https://archive.ph/cpy7k (alt link: https://anarch.cc/homebrewing-hormones-mtf-guide/, as above)&lt;br /&gt;
&amp;lt;/translate&amp;gt;&lt;/div&gt;</summary>
		<author><name>Goblinmoder</name></author>
	</entry>
	<entry>
		<id>https://wiki.diyon.top/index.php?title=HRT&amp;diff=993</id>
		<title>HRT</title>
		<link rel="alternate" type="text/html" href="https://wiki.diyon.top/index.php?title=HRT&amp;diff=993"/>
		<updated>2025-04-16T19:06:12Z</updated>

		<summary type="html">&lt;p&gt;Goblinmoder: add EC and separate Prog&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{#seo:&lt;br /&gt;
|title_mode=replace&lt;br /&gt;
|title=HRT&lt;br /&gt;
|description=We are open to discussion and actively on-going changes in formatting and contents of this Page and Website (in general). The e-mail address to refer to is fox@diyon.top&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
&amp;lt;languages/&amp;gt;&lt;br /&gt;
&amp;lt;translate&amp;gt;&lt;br /&gt;
&amp;lt;!--T:41--&amp;gt;&lt;br /&gt;
After around a month on HRT some of your ranges in your [[Blood Testing|blood test]] should be within desired ranges.&lt;br /&gt;
&lt;br /&gt;
Pricemaps are there to evaluate prices through &#039;&#039;&#039;[https://galinos.gr galinos.gr]&#039;&#039;&#039; (in case something is outdated, look for the green line that says &amp;quot;Λιανική&amp;quot;)&lt;br /&gt;
&lt;br /&gt;
We are open to discussion and actively on-going changes in formatting and contents of this Page and Website (in general). The e-mail address to refer to is &#039;&#039;&#039;fox@diyon.top&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--T:43--&amp;gt;&lt;br /&gt;
== Transfem ==&lt;br /&gt;
Taking Puberty Blockers ([[HRT#Antiandrogens and GNRH Agonists|GNRH Agonists]], e.g: Arvekap) or any Anti Androgen (e.g: Aldactone, Androcur) &#039;&#039;&#039;without [[HRT#Estrogens|Estrogens]]&#039;&#039;&#039; is generally discouraged even during youth transitioning (This is &#039;&#039;&#039;non-definitive&#039;&#039;&#039; for Enby folks)&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--T:44--&amp;gt;&lt;br /&gt;
=== Monotherapy ===&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|+&lt;br /&gt;
!Type&lt;br /&gt;
!Commercial Names&lt;br /&gt;
!Dosage&lt;br /&gt;
!Notes&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
====== Sublingual (E Valerate or Hemihydrate) ======&lt;br /&gt;
|Cyclacur (EV), Estrofem (EH, imported), Trisequens (12 pills 2mg EH, 10 pills norgestrel, 6 pills 1mg EH)&lt;br /&gt;
|&amp;gt;=8-12mg/day&lt;br /&gt;
|While it is possible, even with a smaller dosage (&#039;&#039;&#039;at least 6mg&#039;&#039;&#039;), it&#039;s not that common. Ideally, use your blood tests to &#039;&#039;&#039;minmax&#039;&#039;&#039; your doses.&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
====== Injectable Estradiol Valerate (EV) ======&lt;br /&gt;
|Neofollin (can be ordered from pharmacies near Czechia, or aptekaapo.com &#039;&#039;&#039;but they’re not on hrtcafe&#039;&#039;&#039;, not tested in Greece), Delestrogen (Vial, unavailable), Progynon Depot (Ampules, unavailable), [[File:What-excuse-me.gif|thumb|[[HRT#Other resources|my honest reaction]]]]&lt;br /&gt;
|5-7mg/5 days&lt;br /&gt;
|&lt;br /&gt;
* Due to the large spikes in levels combined with the short [https://en.wikipedia.org/wiki/Biological_half-life half-life] it is not recommended for dosages to surpass the 5 day mark because it may cause menopause symptoms.&lt;br /&gt;
* Branded versions of this medication are not available in greece.&lt;br /&gt;
* The ampules contain a certain mg and do not allow for larger dosages, they are not re-usable. It is recommended to use a vial with a cap.&lt;br /&gt;
* Look for &#039;&#039;&#039;[https://arc-w.nihr.ac.uk/Wordpress/wp-content/uploads/2015/07/Low-dead-space-syringes.png syringe dead space]([[HRT#:~:text=* = It has been mentioned that syringes account for dead space, although that is not 100% certain.|*]])&#039;&#039;&#039;, e.g. if there&#039;s &#039;&#039;&#039;0.05mL&#039;&#039;&#039; remaining after injecting, draw &#039;&#039;&#039;+0.05mL&#039;&#039;&#039; from the vial.&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
====== Injectable Estradiol Cypionate (EC) ======&lt;br /&gt;
|[[File:What-excuse-me.gif|thumb|[[HRT#Other resources|my honest reaction]]]]Depo-Estradiol (US only, unavailable),&lt;br /&gt;
|5-7mg/7 days&lt;br /&gt;
|&lt;br /&gt;
* Look for &#039;&#039;&#039;[https://arc-w.nihr.ac.uk/Wordpress/wp-content/uploads/2015/07/Low-dead-space-syringes.png syringe dead space]([[HRT#:~:text=* = It has been mentioned that syringes account for dead space, although that is not 100% certain.|*]])&#039;&#039;&#039;, e.g. if there&#039;s &#039;&#039;&#039;0.05mL&#039;&#039;&#039; remaining after injecting, draw &#039;&#039;&#039;+0.05mL&#039;&#039;&#039; from the vial.&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
====== Injectable Estradiol Enanthate (EEn) ======&lt;br /&gt;
|[[File:What-excuse-me.gif|thumb|[[HRT#Other resources|my honest reaction]]]]&lt;br /&gt;
|4-7mg/7 days&lt;br /&gt;
7-10mg/10 days (7.2mg usually, depending on the vial, it&#039;s optimal because drawing cents of mL are hard to get right)&lt;br /&gt;
|&lt;br /&gt;
* You can multiply the weekly dosage by 2, which lasts up to 14 days (as much as the [https://en.wikipedia.org/wiki/Biological_half-life half-life] of Enanthate)&lt;br /&gt;
* Look for &#039;&#039;&#039;[https://arc-w.nihr.ac.uk/Wordpress/wp-content/uploads/2015/07/Low-dead-space-syringes.png syringe dead space]([[HRT#:~:text=* = It has been mentioned that syringes account for dead space, although that is not 100% certain.|*]])&#039;&#039;&#039;, e.g. if there&#039;s &#039;&#039;&#039;0.05mL&#039;&#039;&#039; remaining after injecting, draw &#039;&#039;&#039;+0.05mL&#039;&#039;&#039; from the vial.&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
====== Injectable Estradiol Undecylate (EU/EUn) ======&lt;br /&gt;
|[[File:What-excuse-me.gif|thumb|[[HRT#Other resources|my honest reaction]]]]&lt;br /&gt;
|There&#039;s not enough information on dosage. The frequency of those may differ according to the oil used (MCT/Castor oil). Indicative Dosages:&lt;br /&gt;
15-20mg/2 weeks&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--T:45--&amp;gt;&lt;br /&gt;
20-40mg+/4 weeks&lt;br /&gt;
|&lt;br /&gt;
* There&#039;s not enough information on its [[wikipedia:Biological_half-life|half-life]], a higher dosage can be administered that can last up to 20-30 days.&lt;br /&gt;
* [[wikipedia:Intramuscular_injection|IM injections]] last longer so they give better levels during the same period of time per injection.&lt;br /&gt;
* Needs at least 90 days to reach stable levels.&lt;br /&gt;
* Look for &#039;&#039;&#039;[https://arc-w.nihr.ac.uk/Wordpress/wp-content/uploads/2015/07/Low-dead-space-syringes.png syringe dead space]([[HRT#:~:text=* = It has been mentioned that syringes account for dead space, although that is not 100% certain.|*]])&#039;&#039;&#039;, e.g. if there&#039;s &#039;&#039;&#039;0.05mL&#039;&#039;&#039; remaining after injecting, draw &#039;&#039;&#039;+0.05mL&#039;&#039;&#039; from the vial.&lt;br /&gt;
|}&lt;br /&gt;
&#039;&#039;&#039;*&#039;&#039;&#039; = It has been mentioned that syringes account for dead space, although that is not 100% certain.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--T:46--&amp;gt;&lt;br /&gt;
=== Sublingual vs Oral ===&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|+&lt;br /&gt;
!Method&lt;br /&gt;
!Substance&lt;br /&gt;
!Dosage&lt;br /&gt;
!Observations&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
====== Oral ======&lt;br /&gt;
|Estradiol Valerate in pill form (e.g. Cyclacur)&lt;br /&gt;
|&amp;gt;=6mg/day&lt;br /&gt;
(max 10mg as per Dr. Powers)&lt;br /&gt;
|It is recommended that doses are taken separately on set time intervals during the day for more stable estradiol levels, e.g. for a 6mg dose you would take 2mg per 8 hours. By the oral route the active substance is metabolized by the liver and part of it is converted to estrone (E1), which has much less feminizing effects than estradiol (E2) so the desired effect is essentially prevented. The bioavailability of estradiol by oral administration is very low (~5%) and usually lower levels of E2 are observed in blood tests than other methods of administration. [anecdotal apo to server, wikipedia kai tttt - correct/expand?] It is also necessary to administer anti-androgens to reduce testosterone levels to the female range.&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
====== Sublingual ======&lt;br /&gt;
|Estradiol Valerate in pill form (e.g. Cyclacur)&lt;br /&gt;
|&amp;gt;=4mg/day&lt;br /&gt;
|It is recommended that doses are taken separately on set time intervals during the day for more stable estradiol levels, e.g. for a 6mg dose you would take 2mg per 8 hours. The sublingual way bypasses estradiol metabolism by the liver and has about 5 times the estradiol bioavailability of the oral way. This way, estradiol levels have greater range than orally (higher peak lower bottom), in oral they remain higher for ~12 hours while sublingually they go away after 3-4 hours [idk if honscience the study is from 2005 on cis women]&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== Vial info === &amp;lt;!--T:47--&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--T:48--&amp;gt;&lt;br /&gt;
=== Medications ===&lt;br /&gt;
For cyclacur: &#039;&#039;&#039;take only the white pills, the brown pills are Norgestrel which have 0.5mg of estradiol but has an androgenic effect and may also cause other side effects&#039;&#039;&#039;. &lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--T:49--&amp;gt;&lt;br /&gt;
==== Estrogens ====&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|+&lt;br /&gt;
!Brand Name(s)&lt;br /&gt;
!Substance&lt;br /&gt;
!Form&lt;br /&gt;
!Method of Administration&lt;br /&gt;
!Cost&lt;br /&gt;
!Cost with Healthcare Coverage&lt;br /&gt;
!Dosage&lt;br /&gt;
!Safety&lt;br /&gt;
!Notes&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
====== [https://www.galinos.gr/web/drugs/main/drugs/Cyclacur Cyclacur] ======&lt;br /&gt;
|Estradiol Valerate (EV)&lt;br /&gt;
|Pill tablet&lt;br /&gt;
|Orally or sublingually&lt;br /&gt;
|2.01€ for 11 pills ([https://www.galinos.gr/service/drugs/drawPackagePrice/1198 Pricemap])&lt;br /&gt;
~130.8-328.€/year&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--T:50--&amp;gt;&lt;br /&gt;
~10.9-27.4€/month&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--T:51--&amp;gt;&lt;br /&gt;
Prices are indicative, the cost depends on the dosage.&lt;br /&gt;
| -&lt;br /&gt;
|6mg-10mg/day (according to Dr. Will Powers)&lt;br /&gt;
4mg-8mg/day (according to Greek Endocrinologists)&lt;br /&gt;
|A&lt;br /&gt;
|&lt;br /&gt;
* &#039;&#039;&#039;Only white pills are used.&#039;&#039;&#039; Brown pills do have a bit of estradiol but arent taken due to other side effects.&lt;br /&gt;
* You need antiandrogens or GNRH antagonists if you haven&#039;t had an orchiectomy.&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
====== Progynova ======&lt;br /&gt;
|Estradiol Valerate (EV)&lt;br /&gt;
|Pill tablet&lt;br /&gt;
|Orally or sublingually&lt;br /&gt;
|~22€ for 72 pills of 1 mg or ~32€ for 72 pills of 2 mg&lt;br /&gt;
Prices are indicative, the cost depends on the dosage.&lt;br /&gt;
| -&lt;br /&gt;
|4mg-8mg/day&lt;br /&gt;
|A&lt;br /&gt;
|&lt;br /&gt;
* There is no reason to use it in Greece since Cyclacur is available in Greek pharmacies.&lt;br /&gt;
* You need antiandrogens or GNRH antagonists if you haven&#039;t had an orchiectomy.&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
====== Estrofem, Estrifam (german brand name), [https://www.galinos.gr/web/drugs/main/drugs/trisequens Trisequens] ======&lt;br /&gt;
|Estradiol Hemihydrate&lt;br /&gt;
|Pill tablet&lt;br /&gt;
|Orally or sublingually&lt;br /&gt;
|~30€ for 28 pills of 2 mg without shipping costs.&lt;br /&gt;
Prices are indicative, the cost depends on the dosage.&lt;br /&gt;
| -&lt;br /&gt;
|4mg-8mg/day&lt;br /&gt;
|A&lt;br /&gt;
|&lt;br /&gt;
* There is no reason to use it in Greece since Cyclacur is available in Greek pharmacies.&lt;br /&gt;
* You need antiandrogens or GNRH antagonists if you haven&#039;t had an orchiectomy.&lt;br /&gt;
* Trisequens, while being available in Greece, is odd to take with 12 pills being 2mg EH, 10 norgestrel, and 6 1mg EH, for a much higher price than [[HRT#Cyclacur|Cyclacur]].&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
====== [https://www.galinos.gr/web/drugs/main/drugs/Dermestril Dermestril] ======&lt;br /&gt;
|Estradiol Hemihydrate&lt;br /&gt;
|Patch&lt;br /&gt;
|Trans-dermally&lt;br /&gt;
|44€ for 24 patches of 100mcg&lt;br /&gt;
~15€ for 8 patches of 50mcg&lt;br /&gt;
| -&lt;br /&gt;
|50mcg/3.5 days (when starting off)&lt;br /&gt;
100mcg/3.5 days (whenever your e2 levels are stable)&lt;br /&gt;
|A&lt;br /&gt;
|&lt;br /&gt;
* &#039;&#039;&#039;If you have no idea how to apply patches watch this:&#039;&#039;&#039; [https://youtu.be/tXGIYWPqdpI?si=O0dlE19pq0ic0PZP Demonstrational Video]&lt;br /&gt;
* You need antiandrogens or GNRH antagonists if you haven&#039;t had an orchiectomy.&lt;br /&gt;
* 100mcg patches can be cut into 2 if needed.&lt;br /&gt;
|-&lt;br /&gt;
|Neofollin (can be ordered from pharmacies near Czechia, not tested in Greece), Delestrogen (Vial, unavailable), Progynon Depot (Ampules, unavailable)&lt;br /&gt;
|&lt;br /&gt;
====== Estradiol Valerate (EV) ======&lt;br /&gt;
|Injectable&lt;br /&gt;
|Subcutaneous or Intramuscular&lt;br /&gt;
|80€/year (including shipping costs, syringes and alcohol swabs)&lt;br /&gt;
| -&lt;br /&gt;
|5-7mg/5 days (monotherapy)&lt;br /&gt;
4-5mg/7 days (only in combination with an antiandrogen or GNRH agonist)&lt;br /&gt;
|A+&lt;br /&gt;
|&lt;br /&gt;
* It can be used without antiandrogens or GNRH agonists in ([[HRT#Μονοθεραπεία|Monotherapy]]) by increasing the dosage.&lt;br /&gt;
|-&lt;br /&gt;
| -&lt;br /&gt;
|&lt;br /&gt;
====== Estradiol Enanthate (EEn) ======&lt;br /&gt;
|Injectable&lt;br /&gt;
|Subcutaneous or Intramuscular&lt;br /&gt;
|80€/year (including shipping costs, syringes and alcohol swabs)&lt;br /&gt;
| -&lt;br /&gt;
|2.5mg-7mg/7 days&lt;br /&gt;
(usual dosage: 4mg/7days)&lt;br /&gt;
|A+&lt;br /&gt;
|&lt;br /&gt;
* It can be used without antiandrogens or GNRH agonists in ([[HRT#Μονοθεραπεία|Monotherapy]]) by increasing the dosage.&lt;br /&gt;
|-&lt;br /&gt;
| -&lt;br /&gt;
|&lt;br /&gt;
====== Estradiol Undecylate (EU, EUn) ======&lt;br /&gt;
|Injectable&lt;br /&gt;
|Subcutaneous or Intramuscular&lt;br /&gt;
|130€/year (including shipping costs, syringes and alcohol swabs)&lt;br /&gt;
| -&lt;br /&gt;
|15-20mg/2 weeks&lt;br /&gt;
20-40mg+/4 weeks&lt;br /&gt;
|A+&lt;br /&gt;
|&lt;br /&gt;
* There&#039;s not much info on dosages, usually seen in [[HRT#Μονοθεραπεία|monotherapy]].&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--T:52--&amp;gt;&lt;br /&gt;
==== Anti-Androgens and GNRH Agonists ====&lt;br /&gt;
These should &#039;&#039;&#039;not&#039;&#039;&#039; be taken sublingually.&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|+&lt;br /&gt;
!Brand Name(s)&lt;br /&gt;
!Substance&lt;br /&gt;
!Cost&lt;br /&gt;
!Cost with Healthcare Coverage&lt;br /&gt;
!Dosage&lt;br /&gt;
!Safety&lt;br /&gt;
!Form&lt;br /&gt;
!Type&lt;br /&gt;
!Notes&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
====== [https://www.galinos.gr/web/drugs/main/drugs/Androcur Androcur] ======&lt;br /&gt;
|Cyproterone Acetate (CPA) is also referred to as cypro&lt;br /&gt;
|21.58€/50mg * 50 pills &lt;br /&gt;
19.7-31.5€/year&lt;br /&gt;
&lt;br /&gt;
([https://www.galinos.gr/service/drugs/drawPackagePrice/8023 Pricemap])&lt;br /&gt;
|?&lt;br /&gt;
|12.5mg/2 days- 10mg/day&lt;br /&gt;
&#039;&#039;&#039;Larger doses shouldn&#039;t be administered&#039;&#039;&#039;&lt;br /&gt;
|C&lt;br /&gt;
|Pill tablet&lt;br /&gt;
|Progestin (Steroidal antiandrogen)&lt;br /&gt;
Stops testosterone production.&lt;br /&gt;
|The max recommended dosage is 10mg/day . Monitoring of prolactin levels is recommended through [[Blood Testing#MTF|blood testing]].&lt;br /&gt;
&#039;&#039;&#039;Many doctors give overdoses of 50 mg/day. Cyproterone is a strong anti-androgen and testosterone suppression is possible with lower doses. A change of doctor is recommended.&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--T:53--&amp;gt;&lt;br /&gt;
[[wikipedia:Side_effects_of_cyproterone_acetate|Side Effects]]:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--T:54--&amp;gt;&lt;br /&gt;
* Benign brain tumor.&lt;br /&gt;
* In rare cases, liver damage.&lt;br /&gt;
* Vitamin B12 deficiency.&lt;br /&gt;
* Breast cancer.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--T:55--&amp;gt;&lt;br /&gt;
Testosterone suppression can be achieved with even lower doses, however a 50 mg pill is difficult to cut into pieces of less than 12.5 mg even with a pill cutter.&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
====== [https://www.galinos.gr/web/drugs/main/drugs/Bicalut Bicalut] ======&lt;br /&gt;
|Bicalutamide (aka: bica)&lt;br /&gt;
|29.10 euro/30 pills&lt;br /&gt;
29.10 euro/month&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--T:56--&amp;gt;&lt;br /&gt;
~350 euro/year&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
([https://www.galinos.gr/service/drugs/drawPackagePrice/11120 Pricemap])&lt;br /&gt;
|6.77 euro/month (28 tabs)&lt;br /&gt;
~95 euro/year&lt;br /&gt;
|50mg/day&lt;br /&gt;
|A-&lt;br /&gt;
|Pill/Tablet&lt;br /&gt;
|Androgen receptor antagonist (Nonsteroidal antiandrogen)&lt;br /&gt;
Blocks absorption of all androgens (including testosterone)&lt;br /&gt;
|&#039;&#039;&#039;Serious negative interactions can be noted if combined with other anti-androgens and GNRH agonists (except progesterone)&#039;&#039;&#039;&lt;br /&gt;
&#039;&#039;&#039;Very rare&#039;&#039;&#039; chance for recoverable and non-fatal liver damage for people with a certain rare mutation.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--T:57--&amp;gt;&lt;br /&gt;
Most of the effects listen in the instruction manual are scaremongering. (it lists a very high chance of liver issues when they are actually very rare, and also lists photosensitivity, which if it even occurs at all, it should be quite rare. We are aware of nobody who had a negative interction between alexandrite laser hair removal and bicalutamide).&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--T:58--&amp;gt;&lt;br /&gt;
Note that bicalutamide, unlike most other anti-androgens, &#039;&#039;&#039;does not&#039;&#039;&#039; lower testosterone levels, in fact they usually rise as the body responds to testosterone receptors being inhibited. Do not be alarmed if you notice an increase of testosterone in your blood tests.&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
====== [https://www.galinos.gr/web/drugs/main/drugs/Arvekap Arvekap] ======&lt;br /&gt;
|Triptorelin&lt;br /&gt;
| -&lt;br /&gt;
|~200/year?&lt;br /&gt;
|&lt;br /&gt;
|A?&lt;br /&gt;
|Injection&lt;br /&gt;
|GNRH Agonist&lt;br /&gt;
(indirectly) Stops testosterone AND estrogen production&lt;br /&gt;
|Also a puberty blocker&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
====== [https://www.galinos.gr/web/drugs/main/drugs/aldactone Aldactone] ======&lt;br /&gt;
|Spironolactone&lt;br /&gt;
|5.19 euro/20 tabs (100mg)&lt;br /&gt;
([https://www.galinos.gr/service/drugs/drawPackagePrice/148 Pricemap])&lt;br /&gt;
|?&lt;br /&gt;
|50mg-200mg/day&lt;br /&gt;
|B-C&lt;br /&gt;
|Tablet&lt;br /&gt;
|Antimineralocorticoid/MCRA&lt;br /&gt;
|Very inefficient, makes you pee, it&#039;s a medication for blood pressure&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
|Flutamide&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|F---&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|Only in this table as an example to avoid&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
==== Miscellaneous/Progesterone ====&lt;br /&gt;
Progesterone falls under this category, as it is not quite the same as other Anti-Androgens, the mention of Progesterone in this title is necessary in order to reduce confusion and questions such as &amp;quot;Where is progesterone?&amp;quot; and &amp;quot;Did you remove prog from the page?&amp;quot;.&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
!Brand Name(s)&lt;br /&gt;
!Substance&lt;br /&gt;
!Cost&lt;br /&gt;
!Cost with Healthcare Coverage&lt;br /&gt;
!Dosage&lt;br /&gt;
!Safety&lt;br /&gt;
!Form&lt;br /&gt;
!Type&lt;br /&gt;
!Notes&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
====== [https://www.galinos.gr/web/drugs/main/drugs/utrogestran Utrogestan] ======&lt;br /&gt;
|Progesterone (P4) it is also referred to as prog&lt;br /&gt;
|6.56 euro/15 caps (200mg)&lt;br /&gt;
([https://www.galinos.gr/service/drugs/drawPackagePrice/7619 Pricemap])&lt;br /&gt;
|?&lt;br /&gt;
|200mg daily (rectal administration)&lt;br /&gt;
|A&lt;br /&gt;
|Capsule&lt;br /&gt;
|Stops testosterone production.&lt;br /&gt;
|There is not much confirmed information about progesterone.&lt;br /&gt;
It can also be taken orally but the absorption rate is very low.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--T:59--&amp;gt;&lt;br /&gt;
Anecdotal claims:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--T:60--&amp;gt;&lt;br /&gt;
* Helps with breast development and with feminization in general.&lt;br /&gt;
* Can be given after one year of estradiol.&lt;br /&gt;
* Suggested to be given after the individual reaches Tanner stage 3.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--T:61--&amp;gt;&lt;br /&gt;
It can have androgenic or other (non-serious, recoverable) effects for some individuals - in particular it can be converted to DHT by the body even in combination with dutasteride or bicalutamide.&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--T:62--&amp;gt;&lt;br /&gt;
==== Other anti-androgens (optional) ====&lt;br /&gt;
These are used to block conversion of other androgens to DHT (which causes hair loss (hair) and body hair growth). They aren&#039;t general use Anti-Androgens.&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
!Brand Name(s)&lt;br /&gt;
!Substance&lt;br /&gt;
!Cost&lt;br /&gt;
!Cost with Healthcare Coverage&lt;br /&gt;
!Dosage&lt;br /&gt;
!Safety&lt;br /&gt;
!Form&lt;br /&gt;
!Type&lt;br /&gt;
!Notes&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
====== [https://www.galinos.gr/web/drugs/main/packages/26485 Dastidem], [https://www.galinos.gr/web/drugs/main/packages/25557 Rafuster], [https://www.galinos.gr/web/drugs/main/packages/25893 Duaride], [https://www.galinos.gr/web/drugs/main/packages/25894 Dustezor] ======&lt;br /&gt;
|Dutasteride&lt;br /&gt;
|7.90€/30 caps&lt;br /&gt;
|~6€/30 caps&lt;br /&gt;
|0.5mg/day (?/TBD)&lt;br /&gt;
|A-&lt;br /&gt;
|Capsule&lt;br /&gt;
| -&lt;br /&gt;
|High effectiveness.&lt;br /&gt;
|-&lt;br /&gt;
| -&lt;br /&gt;
|Finasteride&lt;br /&gt;
| -&lt;br /&gt;
| -&lt;br /&gt;
| -&lt;br /&gt;
|F&lt;br /&gt;
| -&lt;br /&gt;
| -&lt;br /&gt;
|Effectiveness is none to medium (Just take Dutasteride - will not stop conversion of Progesterone to DHT)&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--T:63--&amp;gt;&lt;br /&gt;
=== Blood Levels ===&lt;br /&gt;
&lt;br /&gt;
==== Refer to the [[Blood Testing]] page. ====&amp;lt;!--T:81--&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Transmasc ==&lt;br /&gt;
&lt;br /&gt;
=== Medications ===&lt;br /&gt;
&lt;br /&gt;
==== Testosterone ====&lt;br /&gt;
[https://www.galinos.gr/web/drugs/main/substances/testosterone/marketing Galinos.gr&#039;s testosterone availability page]&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|+&lt;br /&gt;
!Brand Name(s)&lt;br /&gt;
!Substance&lt;br /&gt;
!Form&lt;br /&gt;
!Method of Administration&lt;br /&gt;
!Cost&lt;br /&gt;
!Cost with Healthcare Coverage&lt;br /&gt;
!Dosage&lt;br /&gt;
!Safety&lt;br /&gt;
!Notes&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
====== [https://www.galinos.gr/web/drugs/main/packages/4929 Norma] ======&lt;br /&gt;
|Testosterone Enanthate&lt;br /&gt;
|Injection/Ampule&lt;br /&gt;
|Subcutaneous or Intramuscular&lt;br /&gt;
|17.67€/ampule &lt;br /&gt;
([https://www.galinos.gr/service/drugs/drawPackagePrice/4929 Pricemap])&lt;br /&gt;
|?&lt;br /&gt;
|?&lt;br /&gt;
|?&lt;br /&gt;
| -&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
====== [https://www.galinos.gr/web/drugs/main/packages/21943 Nebido] ======&lt;br /&gt;
|Testosterone Undecanoate&lt;br /&gt;
|Injection/Vial&lt;br /&gt;
|Intramuscular&lt;br /&gt;
|100.37€/vial&lt;br /&gt;
([https://www.galinos.gr/service/drugs/drawPackagePrice/21943 Pricemap])&lt;br /&gt;
|~32.52€/vial (you pay 25%)&lt;br /&gt;
|1 vial (1000mg/4mL)/10-20 weeks&lt;br /&gt;
|A&lt;br /&gt;
|As a starting dose &#039;&#039;&#039;after a year of HRT&#039;&#039;&#039;, you could also consider:&lt;br /&gt;
&lt;br /&gt;
* Instead of injecting one vial per 20 weeks, you do half every 10-12 weeks, however nothing could be sourced to support this. Though logically it could make sense as a practice.&lt;br /&gt;
* Do a test at 6 weeks after starting, if T is too high don&#039;t take the 2nd dose, if it&#039;s not you can take the 2nd and then test 2 weeks before every other dose.&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
====== [https://www.galinos.gr/web/drugs/main/packages/15739 Tostran] ======&lt;br /&gt;
|Testogel&lt;br /&gt;
|Gel&lt;br /&gt;
|Trans-dermally&lt;br /&gt;
|&#039;&#039;&#039;Starting dose&#039;&#039;&#039;&lt;br /&gt;
&amp;lt;!--T:82--&amp;gt;&lt;br /&gt;
* 35.54€/2 months&lt;br /&gt;
* 213.24€/year&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--T:83--&amp;gt;&lt;br /&gt;
&#039;&#039;&#039;30 mg dose&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--T:84--&amp;gt;&lt;br /&gt;
* 35.54€/40 days&lt;br /&gt;
* ~324.30€/year&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--T:85--&amp;gt;&lt;br /&gt;
&#039;&#039;&#039;40 mg dose&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--T:73--&amp;gt;&lt;br /&gt;
* 35.54€/30 days&lt;br /&gt;
* 426.48€/year&lt;br /&gt;
([https://www.galinos.gr/service/drugs/drawPackagePrice/15739 Pricemap])&lt;br /&gt;
|35.54€ -&amp;gt; 8.89€&lt;br /&gt;
|20mg/day (starting dose)&lt;br /&gt;
30-40mg/day&lt;br /&gt;
|A&lt;br /&gt;
|&lt;br /&gt;
* 1 pump of Tostran (&#039;&#039;&#039;0.5g&#039;&#039;&#039;) delivers 10 mg of T.&lt;br /&gt;
* 2 pumps of Tostran are 1 pump of Testogel (20.25mg of T)&lt;br /&gt;
* Can cause skin reactions.&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
==== GNRH Agonists ====&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
!Brand Name(s)&lt;br /&gt;
!Substance&lt;br /&gt;
! Cost&lt;br /&gt;
!Cost with Healthcare Coverage&lt;br /&gt;
!Dosage&lt;br /&gt;
!Safety&lt;br /&gt;
!Form&lt;br /&gt;
!Type&lt;br /&gt;
!Notes&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
====== [https://www.galinos.gr/web/drugs/main/drugs/Arvekap Arvekap] ======&lt;br /&gt;
|Triptorelin&lt;br /&gt;
| -&lt;br /&gt;
|~200/year?&lt;br /&gt;
|&lt;br /&gt;
|A?&lt;br /&gt;
|Injection&lt;br /&gt;
|GNRH Agonist&lt;br /&gt;
(indirectly) Stops testosterone AND estrogen production&lt;br /&gt;
|Also a puberty blocker&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
==== Other anti-androgens (optional) ====&lt;br /&gt;
These are used to block conversion of other androgens to DHT (which causes hair loss (hair) and body hair growth). They aren&#039;t general use Anti-Androgens.&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
!Brand Name(s)&lt;br /&gt;
!Substance&lt;br /&gt;
!Cost&lt;br /&gt;
!Cost with Healthcare Coverage&lt;br /&gt;
!Dosage&lt;br /&gt;
!Safety&lt;br /&gt;
!Form&lt;br /&gt;
!Type&lt;br /&gt;
!Notes&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
====== [https://www.galinos.gr/web/drugs/main/packages/26485 Dastidem], [https://www.galinos.gr/web/drugs/main/packages/25557 Rafuster], [https://www.galinos.gr/web/drugs/main/packages/25893 Duaride], [https://www.galinos.gr/web/drugs/main/packages/25894 Dustezor] ======&lt;br /&gt;
|Dutasteride&lt;br /&gt;
|7.90€/30 caps&lt;br /&gt;
|~6€/30 caps&lt;br /&gt;
|0.5mg/day (?/TBD)&lt;br /&gt;
|A-&lt;br /&gt;
|Capsule&lt;br /&gt;
| -&lt;br /&gt;
|High effectiveness. &lt;br /&gt;
Not to be confused with proper Anti-Androgens.&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== Nonbinary hrt *under construction* ==&lt;br /&gt;
&lt;br /&gt;
=== !!! disclaimer-warning about potential issues !!! ===&lt;br /&gt;
&lt;br /&gt;
=== General outline of nb hrt for amab and afab ===&lt;br /&gt;
&lt;br /&gt;
=== Medications ===&lt;br /&gt;
&lt;br /&gt;
==== Selective Estrogen Receptor Modulators (SERMs) ====&lt;br /&gt;
&lt;br /&gt;
* Tamoxifen is a selective estrogen receptor modulator (SERM). In some tissues such as the brain it activates estrogen receptors, which may help reduce dysphoria. In breast tissue it antagonizes estrogen receptors, preventing the formation of breast tissue if desired. There is some evidence that Tamoxifen inhibits memory, though the effects of taking it alongside regular estrogen are undocumented. Tamoxifen can cause cognitive dysfunction and increase your risk of stroke and pulmonary embolism. Tamoxifen may also be taken alongside 17β-estradiol, more research is needed. In this combination, estradiol should still have its effects (combating dysphoria in the brain, redistribution of body fat, smoother skin etc.) while tamoxifen prevents the growth of breast tissue.&lt;br /&gt;
* Raloxifene is another SERM. It is an estrogen receptor antagonist in breast tissue. It is an estrogen receptor agonist in bone and can be used to prevent osteoporosis. Raloxifene has been shown to reduce ERα expression in breast tissue in premenopausal women. As the synthesis of progesterone receptors (PR) is estrogen-regulated, raloxifene also decreases the expression of PR. Additionally, it was shown to decrease the presence of Ki-67, a biomarker for cell proliferation, in breast tissue of premenopausal women. As a result, it can be used to treat gynecomastia, and has been shown effective in reducing breast size in those with the condition. Raloxifene may promote feminine fat distribution: in a study on 56-66 year old postmenopausal women, there was an increase in fat in the legs and buttocks and a decrease in fat in the abdomen and trunk after 1 year on 60 mg/day raloxifene. It is not yet known how pronounced this effect is, as there have been no comparisons of body fat distribution between raloxifene and estradiol. Raloxifene may increase the risk of stroke and pulmonary embolism.&lt;br /&gt;
* Afimoxifene is a topical SERM and the primary metabolite of tamoxifen.&lt;br /&gt;
&lt;br /&gt;
==== Anti-androgens ====&lt;br /&gt;
&lt;br /&gt;
==== Bicalutamide ====&lt;br /&gt;
Bicalutamide is an  anti-androgen which is used mainly in the treatment of prostate cancer but can also be used to treat hirsutism, or as a component of hormone therapy in feminizing HRT, among other uses. It is nonsteroidal anti-androgen and a selective/pure antagonist of the androgen receptor. It has no other hormonal activity and does not lower androgen levels. Bicalutamide crosses the blood-brain barrier and blocks the effects of testosterone and dihydrotestosterone (DHT) both in the body and in the brain. While it has been observed that bicalutamide does not cross the blood-brain barrier in rats and dogs, this was found not to be the case in humans&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
In general Ralox seems the best idea based on overall effectiveness and less severe side effects compared to other SERMs. Most people on this kind of MtNB hrt seem to be using a combination of ralox (in place of estradiol) and bica [expand this + powers e1s schizo stuff?]&lt;br /&gt;
&lt;br /&gt;
== Legal ==&lt;br /&gt;
It is legal to buy anything without a diagnosis or a prescription (off the counter - OTC), Testosterone can be hit or miss, look for [https://www.galinos.gr/web/drugs/main/packages/15739 Tostran] (Testogel) or [https://www.galinos.gr/web/drugs/main/packages/4929 TEn] (Testosterone Enanthate/Norma, injections).  &lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--T:86--&amp;gt;&lt;br /&gt;
You can also check the &#039;&#039;&#039;[https://diyon.top/map Trans-Friendly Pharmacies Map]&#039;&#039;&#039; for any pharmacies near you (this goes for both Transfem and Transmasc HRT). &lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--T:75--&amp;gt;&lt;br /&gt;
There is no minimum or maximum legal age for someone to start HRT. &lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--T:76--&amp;gt;&lt;br /&gt;
It is not legally mandatory for someone to have a diagnosis by a psychiatrist in order to medically transition.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--T:77--&amp;gt;&lt;br /&gt;
There is no legally mandatory time restriction for a psychiatrist to monitor you before diagnosing you.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--T:78--&amp;gt;&lt;br /&gt;
You don&#039;t legally need to be on HRT in order to be exempt from the [[army]], change your [[Legal|legal sex]], or to have a [[surgery]].&lt;br /&gt;
&lt;br /&gt;
== Other resources == &amp;lt;!--T:79--&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--T:80--&amp;gt;&lt;br /&gt;
* Simulator: https://www.estrannai.se/&lt;br /&gt;
* https://transfemscience.org/ (note, the authors of this site disagree with a lot of what they are saying, regardless, it is still interesting)&lt;br /&gt;
** Introduction to Hormone Therapy for Transfeminine People: https://transfemscience.org/articles/transfem-intro/&lt;br /&gt;
** Older simulator: https://transfemscience.org/misc/injectable-e2-simulator/&lt;br /&gt;
** Dosage calculator: https://transfemscience.org/misc/injectable-dose-vol-conc-conv/&lt;br /&gt;
* https://diyhrt.wiki/ (alt link: https://anarch.cc/transfeminine-diy-hrt-the-ultimate-guide-2/)&lt;br /&gt;
* https://hrtcafe.net/&lt;br /&gt;
* ?? https://hrt.coffee/&lt;br /&gt;
* https://www.reddit.com/r/TransDIY/&lt;br /&gt;
* https://www.reddit.com/r/TransfemScience/&lt;br /&gt;
* https://groups.io/g/MTFHRT/wiki/29602 (alt link: https://anarch.cc/mtf-hrt-ultimate-diy/)&lt;br /&gt;
* https://hrt.cat/ - info for making your own (you will probably not need it - version 1.0: https://hrtcafe.net/hrtcat/)&lt;br /&gt;
* https://archive.ph/uQb8g (alt link: https://anarch.cc/making-your-own-injections/, as above)&lt;br /&gt;
* https://crimethinc.com/2022/12/15/producing-transdermal-estrogen-a-do-it-yourself-guide (alt link: https://anarch.cc/producing-transdermal-estrogen-a-do-it-yourself-guide/, as above)&lt;br /&gt;
* https://archive.ph/cpy7k (alt link: https://anarch.cc/homebrewing-hormones-mtf-guide/, as above)&lt;br /&gt;
&amp;lt;/translate&amp;gt;&lt;/div&gt;</summary>
		<author><name>Goblinmoder</name></author>
	</entry>
	<entry>
		<id>https://wiki.diyon.top/index.php?title=HRT&amp;diff=991</id>
		<title>HRT</title>
		<link rel="alternate" type="text/html" href="https://wiki.diyon.top/index.php?title=HRT&amp;diff=991"/>
		<updated>2025-04-11T21:46:15Z</updated>

		<summary type="html">&lt;p&gt;Goblinmoder: galinos.gr link&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{#seo:&lt;br /&gt;
|title_mode=replace&lt;br /&gt;
|title=HRT&lt;br /&gt;
|description=We are open to discussion and actively on-going changes in formatting and contents of this Page and Website (in general). The e-mail address to refer to is fox@diyon.top&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
&amp;lt;languages/&amp;gt;&lt;br /&gt;
&amp;lt;translate&amp;gt;&lt;br /&gt;
&amp;lt;!--T:41--&amp;gt;&lt;br /&gt;
After around a month on HRT some of your ranges in your [[Blood Testing|blood test]] should be within desired ranges.&lt;br /&gt;
&lt;br /&gt;
Pricemaps are there to evaluate prices through &#039;&#039;&#039;[https://galinos.gr galinos.gr]&#039;&#039;&#039; (in case something is outdated, look for the green line that says &amp;quot;Λιανική&amp;quot;)&lt;br /&gt;
&lt;br /&gt;
We are open to discussion and actively on-going changes in formatting and contents of this Page and Website (in general). The e-mail address to refer to is &#039;&#039;&#039;fox@diyon.top&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--T:43--&amp;gt;&lt;br /&gt;
== Transfem ==&lt;br /&gt;
Taking Puberty Blockers ([[HRT#Antiandrogens and GNRH Agonists|GNRH Agonists]], e.g: Arvekap) or any Anti Androgen (e.g: Aldactone, Androcur) &#039;&#039;&#039;without [[HRT#Estrogens|Estrogens]]&#039;&#039;&#039; is generally discouraged even during youth transitioning (This is &#039;&#039;&#039;non-definitive&#039;&#039;&#039; for Enby folks)&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--T:44--&amp;gt;&lt;br /&gt;
=== Monotherapy ===&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|+&lt;br /&gt;
!Type&lt;br /&gt;
!Commercial Names&lt;br /&gt;
!Dosage&lt;br /&gt;
!Notes&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
====== Sublingual (E Valerate or Hemihydrate) ======&lt;br /&gt;
|Cyclacur (EV), Estrofem (EH, imported), Trisequens (12 pills 2mg EH, 10 pills norgestrel, 6 pills 1mg EH)&lt;br /&gt;
|&amp;gt;=8-12mg/day&lt;br /&gt;
|While it is possible, even with a smaller dosage (&#039;&#039;&#039;at least 6mg&#039;&#039;&#039;), it&#039;s not that common. Ideally, use your blood tests to &#039;&#039;&#039;minmax&#039;&#039;&#039; your doses.&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
====== Injectable Estradiol Valerate (EV) ======&lt;br /&gt;
|Neofollin (can be ordered from pharmacies near Czechia, not tested in Greece), Delestrogen (Vial, unavailable), Progynon Depot (Ampules, unavailable), [[File:What-excuse-me.gif|thumb|[[HRT#Other resources|my honest reaction]]]]&lt;br /&gt;
|5-7mg/5 days&lt;br /&gt;
|&lt;br /&gt;
* Due to the large spikes in levels combined with the short [https://en.wikipedia.org/wiki/Biological_half-life half-life] it is not recommended for dosages to surpass the 5 day mark because it may cause menopause symptoms.&lt;br /&gt;
* Branded versions of this medication are not available in greece.&lt;br /&gt;
* The ampules contain a certain mg and do not allow for larger dosages, they are not re-usable. It is recommended to use a vial with a cap.&lt;br /&gt;
* Look for &#039;&#039;&#039;[https://arc-w.nihr.ac.uk/Wordpress/wp-content/uploads/2015/07/Low-dead-space-syringes.png syringe dead space](*)&#039;&#039;&#039;, e.g. if there&#039;s &#039;&#039;&#039;0.05mL&#039;&#039;&#039; remaining after injecting, draw &#039;&#039;&#039;+0.05mL&#039;&#039;&#039; from the vial.&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
====== Injectable Estradiol Enanthate (EEn) ======&lt;br /&gt;
|[[File:What-excuse-me.gif|thumb|[[HRT#Other resources|my honest reaction]]]]&lt;br /&gt;
|4-7mg/Week&lt;br /&gt;
7-10mg/10 days (7.2mg usually, depending on the vial, it&#039;s optimal because drawing cents of mL are hard to get right)&lt;br /&gt;
|&lt;br /&gt;
* You can multiply the weekly dosage by 2, which lasts up to 14 days (as much as the [https://en.wikipedia.org/wiki/Biological_half-life half-life] of Enanthate)&lt;br /&gt;
* Look for &#039;&#039;&#039;[https://arc-w.nihr.ac.uk/Wordpress/wp-content/uploads/2015/07/Low-dead-space-syringes.png syringe dead space](*)&#039;&#039;&#039;, e.g. if there&#039;s &#039;&#039;&#039;0.05mL&#039;&#039;&#039; remaining after injecting, draw &#039;&#039;&#039;+0.05mL&#039;&#039;&#039; from the vial.&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
====== Injectable Estradiol Undecylate (EU/EUn) ======&lt;br /&gt;
|[[File:What-excuse-me.gif|thumb|[[HRT#Other resources|my honest reaction]]]]&lt;br /&gt;
|There&#039;s not enough information on dosage. The frequency of those may differ according to the oil used (MCT/Castor oil). Indicative Dosages:&lt;br /&gt;
15-20mg/2 weeks&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--T:45--&amp;gt;&lt;br /&gt;
20-40mg+/4 weeks&lt;br /&gt;
|&lt;br /&gt;
* There&#039;s not enough information on its [https://en.wikipedia.org/wiki/Biological_half-life half-life], a higher dosage can be administered that can last up to 20-30 days.&lt;br /&gt;
* [https://en.wikipedia.org/wiki/Intramuscular_injection IM injections] last longer so they give better levels during the same period of time per injection.&lt;br /&gt;
* Needs at least 90 days to reach stable levels.&lt;br /&gt;
* Look for &#039;&#039;&#039;[https://arc-w.nihr.ac.uk/Wordpress/wp-content/uploads/2015/07/Low-dead-space-syringes.png syringe dead space](*)&#039;&#039;&#039;, e.g. if there&#039;s &#039;&#039;&#039;0.05mL&#039;&#039;&#039; remaining after injecting, draw &#039;&#039;&#039;+0.05mL&#039;&#039;&#039; from the vial.&lt;br /&gt;
|}&lt;br /&gt;
&#039;&#039;&#039;*&#039;&#039;&#039; = It has been mentioned that syringes account for dead space, although that is not 100% certain.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--T:46--&amp;gt;&lt;br /&gt;
=== Sublingual vs Oral ===&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|+&lt;br /&gt;
!Method&lt;br /&gt;
!Substance&lt;br /&gt;
!Dosage&lt;br /&gt;
!Observations&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
====== Oral ======&lt;br /&gt;
|Estradiol Valerate in pill form (e.g. Cyclacur)&lt;br /&gt;
|&amp;gt;=6mg/day&lt;br /&gt;
(max 10mg as per Dr. Powers)&lt;br /&gt;
|It is recommended that doses are taken separately on set time intervals during the day for more stable estradiol levels, e.g. for a 6mg dose you would take 2mg per 8 hours. By the oral route the active substance is metabolized by the liver and part of it is converted to estrone (E1), which has much less feminizing effects than estradiol (E2) so the desired effect is essentially prevented. The bioavailability of estradiol by oral administration is very low (~5%) and usually lower levels of E2 are observed in blood tests than other methods of administration. [anecdotal apo to server, wikipedia kai tttt - correct/expand?] It is also necessary to administer anti-androgens to reduce testosterone levels to the female range.&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
====== Sublingual ======&lt;br /&gt;
|Estradiol Valerate in pill form (e.g. Cyclacur)&lt;br /&gt;
|&amp;gt;=4mg/day&lt;br /&gt;
|It is recommended that doses are taken separately on set time intervals during the day for more stable estradiol levels, e.g. for a 6mg dose you would take 2mg per 8 hours. The sublingual way bypasses estradiol metabolism by the liver and has about 5 times the estradiol bioavailability of the oral way. This way, estradiol levels have greater range than orally (higher peak lower bottom), in oral they remain higher for ~12 hours while sublingually they go away after 3-4 hours [idk if honscience the study is from 2005 on cis women]&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== Vial info === &amp;lt;!--T:47--&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--T:48--&amp;gt;&lt;br /&gt;
=== Medications ===&lt;br /&gt;
For cyclacur: &#039;&#039;&#039;take only the white pills, the brown pills are Norgestrel which have 0.5mg of estradiol but has an androgenic effect and may also cause other side effects&#039;&#039;&#039;. &lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--T:49--&amp;gt;&lt;br /&gt;
==== Estrogens ====&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|+&lt;br /&gt;
!Brand Name(s)&lt;br /&gt;
!Substance&lt;br /&gt;
!Form&lt;br /&gt;
!Method of Administration&lt;br /&gt;
!Cost&lt;br /&gt;
!Cost with Healthcare Coverage&lt;br /&gt;
!Dosage&lt;br /&gt;
!Safety&lt;br /&gt;
!Notes&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
====== [https://www.galinos.gr/web/drugs/main/drugs/Cyclacur Cyclacur] ======&lt;br /&gt;
|Estradiol Valerate (EV)&lt;br /&gt;
|Pill tablet&lt;br /&gt;
|Orally or sublingually&lt;br /&gt;
|2.01€ for 11 pills ([https://www.galinos.gr/service/drugs/drawPackagePrice/1198 Pricemap])&lt;br /&gt;
~130.8-328.€/year&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--T:50--&amp;gt;&lt;br /&gt;
~10.9-27.4€/month&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--T:51--&amp;gt;&lt;br /&gt;
Prices are indicative, the cost depends on the dosage.&lt;br /&gt;
| -&lt;br /&gt;
|6mg-10mg/day (according to Dr. Will Powers)&lt;br /&gt;
4mg-8mg/day (according to Greek Endocrinologists)&lt;br /&gt;
|A&lt;br /&gt;
|&lt;br /&gt;
* &#039;&#039;&#039;Only white pills are used.&#039;&#039;&#039; Brown pills do have a bit of estradiol but arent taken due to other side effects.&lt;br /&gt;
* You need antiandrogens or GNRH antagonists if you haven&#039;t had an orchiectomy.&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
====== Progynova ======&lt;br /&gt;
|Estradiol Valerate (EV)&lt;br /&gt;
|Pill tablet&lt;br /&gt;
|Orally or sublingually&lt;br /&gt;
|~22€ for 72 pills of 1 mg or ~32€ for 72 pills of 2 mg&lt;br /&gt;
Prices are indicative, the cost depends on the dosage.&lt;br /&gt;
| -&lt;br /&gt;
|4mg-8mg/day&lt;br /&gt;
|A&lt;br /&gt;
|&lt;br /&gt;
* There is no reason to use it in Greece since Cyclacur is available in Greek pharmacies.&lt;br /&gt;
* You need antiandrogens or GNRH antagonists if you haven&#039;t had an orchiectomy.&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
====== Estrofem, Estrifam (german brand name), [https://www.galinos.gr/web/drugs/main/drugs/trisequens Trisequens] ======&lt;br /&gt;
|Estradiol Hemihydrate&lt;br /&gt;
|Pill tablet&lt;br /&gt;
|Orally or sublingually&lt;br /&gt;
|~30€ for 28 pills of 2 mg without shipping costs.&lt;br /&gt;
Prices are indicative, the cost depends on the dosage.&lt;br /&gt;
| -&lt;br /&gt;
|4mg-8mg/day&lt;br /&gt;
|A&lt;br /&gt;
|&lt;br /&gt;
* There is no reason to use it in Greece since Cyclacur is available in Greek pharmacies.&lt;br /&gt;
* You need antiandrogens or GNRH antagonists if you haven&#039;t had an orchiectomy.&lt;br /&gt;
* Trisequens, while being available in Greece, is odd to take with 12 pills being 2mg EH, 10 norgestrel, and 6 1mg EH, for a much higher price than [[HRT#Cyclacur|Cyclacur]].&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
====== [https://www.galinos.gr/web/drugs/main/drugs/Dermestril Dermestril] ======&lt;br /&gt;
|Estradiol Hemihydrate&lt;br /&gt;
|Patch&lt;br /&gt;
|Trans-dermally&lt;br /&gt;
|44€ for 24 patches of 100mcg&lt;br /&gt;
~15€ for 8 patches of 50mcg&lt;br /&gt;
| -&lt;br /&gt;
|50mcg/3.5 days (when starting off)&lt;br /&gt;
100mcg/3.5 days (whenever your e2 levels are stable)&lt;br /&gt;
|A&lt;br /&gt;
|&lt;br /&gt;
* &#039;&#039;&#039;If you have no idea how to apply patches watch this:&#039;&#039;&#039; [https://youtu.be/tXGIYWPqdpI?si=O0dlE19pq0ic0PZP Demonstrational Video]&lt;br /&gt;
* You need antiandrogens or GNRH antagonists if you haven&#039;t had an orchiectomy.&lt;br /&gt;
* 100mcg patches can be cut into 2 if needed.&lt;br /&gt;
|-&lt;br /&gt;
|Neofollin (can be ordered from pharmacies near Czechia, not tested in Greece), Delestrogen (Vial, unavailable), Progynon Depot (Ampules, unavailable)&lt;br /&gt;
|&lt;br /&gt;
====== Estradiol Valerate (EV) ======&lt;br /&gt;
|Injectable&lt;br /&gt;
|Subcutaneous or Intramuscular&lt;br /&gt;
|80€/year (including shipping costs, syringes and alcohol swabs)&lt;br /&gt;
| -&lt;br /&gt;
|5-7mg/5 days (monotherapy)&lt;br /&gt;
4-5mg/7 days (only in combination with an antiandrogen or GNRH agonist)&lt;br /&gt;
|A+&lt;br /&gt;
|&lt;br /&gt;
* It can be used without antiandrogens or GNRH agonists in ([[HRT#Μονοθεραπεία|Monotherapy]]) by increasing the dosage.&lt;br /&gt;
|-&lt;br /&gt;
| -&lt;br /&gt;
|&lt;br /&gt;
====== Estradiol Enanthate (EEn) ======&lt;br /&gt;
|Injectable&lt;br /&gt;
|Subcutaneous or Intramuscular&lt;br /&gt;
|80€/year (including shipping costs, syringes and alcohol swabs)&lt;br /&gt;
| -&lt;br /&gt;
|2.5mg-7mg/7 days&lt;br /&gt;
(usual dosage: 4mg/7days)&lt;br /&gt;
|A+&lt;br /&gt;
|&lt;br /&gt;
* It can be used without antiandrogens or GNRH agonists in ([[HRT#Μονοθεραπεία|Monotherapy]]) by increasing the dosage.&lt;br /&gt;
|-&lt;br /&gt;
| -&lt;br /&gt;
|&lt;br /&gt;
====== Estradiol Undecylate (EU, EUn) ======&lt;br /&gt;
|Injectable&lt;br /&gt;
|Subcutaneous or Intramuscular&lt;br /&gt;
|130€/year (including shipping costs, syringes and alcohol swabs)&lt;br /&gt;
| -&lt;br /&gt;
|15-20mg/2 weeks&lt;br /&gt;
20-40mg+/4 weeks&lt;br /&gt;
|A+&lt;br /&gt;
|&lt;br /&gt;
* There&#039;s not much info on dosages, usually seen in [[HRT#Μονοθεραπεία|monotherapy]].&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--T:52--&amp;gt;&lt;br /&gt;
==== Anti-Androgens and GNRH Agonists ====&lt;br /&gt;
These should &#039;&#039;&#039;not&#039;&#039;&#039; be taken sublingually.&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|+&lt;br /&gt;
!Brand Name(s)&lt;br /&gt;
!Substance&lt;br /&gt;
!Cost&lt;br /&gt;
!Cost with Healthcare Coverage&lt;br /&gt;
!Dosage&lt;br /&gt;
!Safety&lt;br /&gt;
!Form&lt;br /&gt;
!Type&lt;br /&gt;
!Notes&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
====== [https://www.galinos.gr/web/drugs/main/drugs/Androcur Androcur] ======&lt;br /&gt;
|Cyproterone Acetate (CPA) is also referred to as cypro&lt;br /&gt;
|21.58€/50mg * 50 pills &lt;br /&gt;
19.7-31.5€/year&lt;br /&gt;
&lt;br /&gt;
([https://www.galinos.gr/service/drugs/drawPackagePrice/8023 Pricemap])&lt;br /&gt;
|?&lt;br /&gt;
|12.5mg/2 days- 10mg/day&lt;br /&gt;
&#039;&#039;&#039;Larger doses shouldn&#039;t be administered&#039;&#039;&#039;&lt;br /&gt;
|C&lt;br /&gt;
|Pill tablet&lt;br /&gt;
|Progestin (Steroidal antiandrogen)&lt;br /&gt;
Stops testosterone production.&lt;br /&gt;
|The max recommended dosage is 10mg/day . Monitoring of prolactin levels is recommended through [[Blood Testing#MTF|blood testing]].&lt;br /&gt;
&#039;&#039;&#039;Many doctors give overdoses of 50 mg/day. Cyproterone is a strong anti-androgen and testosterone suppression is possible with lower doses. A change of doctor is recommended.&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--T:53--&amp;gt;&lt;br /&gt;
[[wikipedia:Side_effects_of_cyproterone_acetate|Side Effects]]:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--T:54--&amp;gt;&lt;br /&gt;
* Benign brain tumor.&lt;br /&gt;
* In rare cases, liver damage.&lt;br /&gt;
* Vitamin B12 deficiency.&lt;br /&gt;
* Breast cancer.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--T:55--&amp;gt;&lt;br /&gt;
Testosterone suppression can be achieved with even lower doses, however a 50 mg pill is difficult to cut into pieces of less than 12.5 mg even with a pill cutter.&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
====== [https://www.galinos.gr/web/drugs/main/drugs/Bicalut Bicalut] ======&lt;br /&gt;
|Bicalutamide (aka: bica)&lt;br /&gt;
|29.10 euro/30 pills&lt;br /&gt;
29.10 euro/month&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--T:56--&amp;gt;&lt;br /&gt;
~350 euro/year&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
([https://www.galinos.gr/service/drugs/drawPackagePrice/11120 Pricemap])&lt;br /&gt;
|6.77 euro/month (28 tabs)&lt;br /&gt;
~95 euro/year&lt;br /&gt;
|50mg/day&lt;br /&gt;
|A-&lt;br /&gt;
|Pill/Tablet&lt;br /&gt;
|Androgen receptor antagonist (Nonsteroidal antiandrogen)&lt;br /&gt;
Blocks absorption of all androgens (including testosterone)&lt;br /&gt;
|&#039;&#039;&#039;Serious negative interactions can be noted if combined with other anti-androgens and GNRH agonists (except progesterone)&#039;&#039;&#039;&lt;br /&gt;
&#039;&#039;&#039;Very rare&#039;&#039;&#039; chance for recoverable and non-fatal liver damage for people with a certain rare mutation.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--T:57--&amp;gt;&lt;br /&gt;
Most of the effects listen in the instruction manual are scaremongering. (it lists a very high chance of liver issues when they are actually very rare, and also lists photosensitivity, which if it even occurs at all, it should be quite rare. We are aware of nobody who had a negative interction between alexandrite laser hair removal and bicalutamide).&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--T:58--&amp;gt;&lt;br /&gt;
Note that bicalutamide, unlike most other anti-androgens, &#039;&#039;&#039;does not&#039;&#039;&#039; lower testosterone levels, in fact they usually rise as the body responds to testosterone receptors being inhibited. Do not be alarmed if you notice an increase of testosterone in your blood tests.&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
====== [https://www.galinos.gr/web/drugs/main/drugs/utrogestran Utrogestan] ======&lt;br /&gt;
|Progesterone (P4) it is also referred to as prog&lt;br /&gt;
|6.56 euro/15 caps (200mg)&lt;br /&gt;
([https://www.galinos.gr/service/drugs/drawPackagePrice/7619 Pricemap])&lt;br /&gt;
|?&lt;br /&gt;
|200mg daily (rectal administration)&lt;br /&gt;
|A&lt;br /&gt;
|Capsule&lt;br /&gt;
|Stops testosterone production.&lt;br /&gt;
|There is not much confirmed information about progesterone.&lt;br /&gt;
It can also be taken orally but the absorption rate is very low.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--T:59--&amp;gt;&lt;br /&gt;
Anecdotal claims:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--T:60--&amp;gt;&lt;br /&gt;
* Helps with breast development and with feminization in general.&lt;br /&gt;
* Can be given after one year of estradiol.&lt;br /&gt;
* Suggested to be given after the individual reaches Tanner stage 3.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--T:61--&amp;gt;&lt;br /&gt;
It can have androgenic or other (non-serious, recoverable) effects for some individuals - in particular it can be converted to DHT by the body even in combination with dutasteride or bicalutamide.&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
====== [https://www.galinos.gr/web/drugs/main/drugs/Arvekap Arvekap] ======&lt;br /&gt;
|Triptorelin&lt;br /&gt;
| -&lt;br /&gt;
|~200/year?&lt;br /&gt;
|&lt;br /&gt;
|A?&lt;br /&gt;
|Injection&lt;br /&gt;
|GNRH Agonist&lt;br /&gt;
(indirectly) Stops testosterone AND estrogen production&lt;br /&gt;
|Also a puberty blocker&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
====== [https://www.galinos.gr/web/drugs/main/drugs/aldactone Aldactone] ======&lt;br /&gt;
|Spironolactone&lt;br /&gt;
|5.19 euro/20 tabs (100mg)&lt;br /&gt;
([https://www.galinos.gr/service/drugs/drawPackagePrice/148 Pricemap])&lt;br /&gt;
|?&lt;br /&gt;
|50mg-200mg/day&lt;br /&gt;
|B-C&lt;br /&gt;
|Tablet&lt;br /&gt;
|Antimineralocorticoid/MCRA&lt;br /&gt;
|Very inefficient, makes you pee, it&#039;s a medication for blood pressure&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
|Flutamide&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|F---&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|Only in this table as an example to avoid&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--T:62--&amp;gt;&lt;br /&gt;
==== Other anti-androgens (optional) ====&lt;br /&gt;
These are used to block conversion of other androgens to DHT (which causes hair loss (hair) and body hair growth). They aren&#039;t general use Anti-Androgens.&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
!Brand Name(s)&lt;br /&gt;
!Substance&lt;br /&gt;
!Cost&lt;br /&gt;
!Cost with Healthcare Coverage&lt;br /&gt;
!Dosage&lt;br /&gt;
!Safety&lt;br /&gt;
!Form&lt;br /&gt;
!Type&lt;br /&gt;
!Notes&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
====== [https://www.galinos.gr/web/drugs/main/packages/26485 Dastidem], [https://www.galinos.gr/web/drugs/main/packages/25557 Rafuster], [https://www.galinos.gr/web/drugs/main/packages/25893 Duaride], [https://www.galinos.gr/web/drugs/main/packages/25894 Dustezor] ======&lt;br /&gt;
|Dutasteride&lt;br /&gt;
|7.90€/30 caps&lt;br /&gt;
|~6€/30 caps&lt;br /&gt;
|0.5mg/day (?/TBD)&lt;br /&gt;
|A-&lt;br /&gt;
|Capsule&lt;br /&gt;
| -&lt;br /&gt;
|High effectiveness.&lt;br /&gt;
|-&lt;br /&gt;
| -&lt;br /&gt;
|Finasteride&lt;br /&gt;
| -&lt;br /&gt;
| -&lt;br /&gt;
| -&lt;br /&gt;
|F&lt;br /&gt;
| -&lt;br /&gt;
| -&lt;br /&gt;
|Effectiveness is none to medium (Just take Dutasteride - will not stop conversion of Progesterone to DHT)&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--T:63--&amp;gt;&lt;br /&gt;
=== Blood Levels ===&lt;br /&gt;
&lt;br /&gt;
==== Refer to the [[Blood Testing]] page. ====&amp;lt;!--T:81--&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Transmasc ==&lt;br /&gt;
&lt;br /&gt;
=== Medications ===&lt;br /&gt;
&lt;br /&gt;
==== Testosterone ====&lt;br /&gt;
[https://www.galinos.gr/web/drugs/main/substances/testosterone/marketing Galinos.gr&#039;s testosterone availability page]&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|+&lt;br /&gt;
!Brand Name(s)&lt;br /&gt;
!Substance&lt;br /&gt;
!Form&lt;br /&gt;
!Method of Administration&lt;br /&gt;
!Cost&lt;br /&gt;
!Cost with Healthcare Coverage&lt;br /&gt;
!Dosage&lt;br /&gt;
!Safety&lt;br /&gt;
!Notes&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
====== [https://www.galinos.gr/web/drugs/main/packages/4929 Norma] ======&lt;br /&gt;
|Testosterone Enanthate&lt;br /&gt;
|Injection/Ampule&lt;br /&gt;
|Subcutaneous or Intramuscular&lt;br /&gt;
|17.67€/ampule &lt;br /&gt;
([https://www.galinos.gr/service/drugs/drawPackagePrice/4929 Pricemap])&lt;br /&gt;
|?&lt;br /&gt;
|?&lt;br /&gt;
|?&lt;br /&gt;
| -&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
====== [https://www.galinos.gr/web/drugs/main/packages/21943 Nebido] ======&lt;br /&gt;
|Testosterone Undecanoate&lt;br /&gt;
|Injection/Vial&lt;br /&gt;
|Intramuscular&lt;br /&gt;
|100.37€/vial&lt;br /&gt;
([https://www.galinos.gr/service/drugs/drawPackagePrice/21943 Pricemap])&lt;br /&gt;
|~32.52€/vial (you pay 25%)&lt;br /&gt;
|1 vial (1000mg/4mL)/10-20 weeks&lt;br /&gt;
|A&lt;br /&gt;
|As a starting dose &#039;&#039;&#039;after a year of HRT&#039;&#039;&#039;, you could also consider:&lt;br /&gt;
&lt;br /&gt;
* Instead of injecting one vial per 20 weeks, you do half every 10-12 weeks, however nothing could be sourced to support this. Though logically it could make sense as a practice.&lt;br /&gt;
* Do a test at 6 weeks after starting, if T is too high don&#039;t take the 2nd dose, if it&#039;s not you can take the 2nd and then test 2 weeks before every other dose.&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
====== [https://www.galinos.gr/web/drugs/main/packages/15739 Tostran] ======&lt;br /&gt;
|Testogel&lt;br /&gt;
|Gel&lt;br /&gt;
|Trans-dermally&lt;br /&gt;
|&#039;&#039;&#039;Starting dose&#039;&#039;&#039;&lt;br /&gt;
&amp;lt;!--T:82--&amp;gt;&lt;br /&gt;
* 35.54€/2 months&lt;br /&gt;
* 213.24€/year&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--T:83--&amp;gt;&lt;br /&gt;
&#039;&#039;&#039;30 mg dose&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--T:84--&amp;gt;&lt;br /&gt;
* 35.54€/40 days&lt;br /&gt;
* ~324.30€/year&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--T:85--&amp;gt;&lt;br /&gt;
&#039;&#039;&#039;40 mg dose&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--T:73--&amp;gt;&lt;br /&gt;
* 35.54€/30 days&lt;br /&gt;
* 426.48€/year&lt;br /&gt;
([https://www.galinos.gr/service/drugs/drawPackagePrice/15739 Pricemap])&lt;br /&gt;
|35.54€ -&amp;gt; 8.89€&lt;br /&gt;
|20mg/day (starting dose)&lt;br /&gt;
30-40mg/day&lt;br /&gt;
|A&lt;br /&gt;
|&lt;br /&gt;
* 1 pump of Tostran (&#039;&#039;&#039;0.5g&#039;&#039;&#039;) delivers 10 mg of T.&lt;br /&gt;
* 2 pumps of Tostran are 1 pump of Testogel (20.25mg of T)&lt;br /&gt;
* Can cause skin reactions.&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
==== GNRH Agonists ====&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
!Brand Name(s)&lt;br /&gt;
!Substance&lt;br /&gt;
! Cost&lt;br /&gt;
!Cost with Healthcare Coverage&lt;br /&gt;
!Dosage&lt;br /&gt;
!Safety&lt;br /&gt;
!Form&lt;br /&gt;
!Type&lt;br /&gt;
!Notes&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
====== [https://www.galinos.gr/web/drugs/main/drugs/Arvekap Arvekap] ======&lt;br /&gt;
|Triptorelin&lt;br /&gt;
| -&lt;br /&gt;
|~200/year?&lt;br /&gt;
|&lt;br /&gt;
|A?&lt;br /&gt;
|Injection&lt;br /&gt;
|GNRH Agonist&lt;br /&gt;
(indirectly) Stops testosterone AND estrogen production&lt;br /&gt;
|Also a puberty blocker&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
==== Other anti-androgens (optional) ====&lt;br /&gt;
These are used to block conversion of other androgens to DHT (which causes hair loss (hair) and body hair growth). They aren&#039;t general use Anti-Androgens.&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
!Brand Name(s)&lt;br /&gt;
!Substance&lt;br /&gt;
!Cost&lt;br /&gt;
!Cost with Healthcare Coverage&lt;br /&gt;
!Dosage&lt;br /&gt;
!Safety&lt;br /&gt;
!Form&lt;br /&gt;
!Type&lt;br /&gt;
!Notes&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
====== [https://www.galinos.gr/web/drugs/main/packages/26485 Dastidem], [https://www.galinos.gr/web/drugs/main/packages/25557 Rafuster], [https://www.galinos.gr/web/drugs/main/packages/25893 Duaride], [https://www.galinos.gr/web/drugs/main/packages/25894 Dustezor] ======&lt;br /&gt;
|Dutasteride&lt;br /&gt;
|7.90€/30 caps&lt;br /&gt;
|~6€/30 caps&lt;br /&gt;
|0.5mg/day (?/TBD)&lt;br /&gt;
|A-&lt;br /&gt;
|Capsule&lt;br /&gt;
| -&lt;br /&gt;
|High effectiveness. &lt;br /&gt;
Not to be confused with proper Anti-Androgens.&lt;br /&gt;
|}&lt;br /&gt;
== Legal ==&lt;br /&gt;
It is legal to buy anything without a diagnosis or a prescription (off the counter - OTC), Testosterone can be hit or miss, look for [https://www.galinos.gr/web/drugs/main/packages/15739 Tostran] (Testogel) or [https://www.galinos.gr/web/drugs/main/packages/4929 TEn] (Testosterone Enanthate/Norma, injections).  &lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--T:86--&amp;gt;&lt;br /&gt;
You can also check the &#039;&#039;&#039;[https://diyon.top/map Trans-Friendly Pharmacies Map]&#039;&#039;&#039; for any pharmacies near you (this goes for both Transfem and Transmasc HRT). &lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--T:75--&amp;gt;&lt;br /&gt;
There is no minimum or maximum legal age for someone to start HRT. &lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--T:76--&amp;gt;&lt;br /&gt;
It is not legally mandatory for someone to have a diagnosis by a psychiatrist in order to medically transition.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--T:77--&amp;gt;&lt;br /&gt;
There is no legally mandatory time restriction for a psychiatrist to monitor you before diagnosing you.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--T:78--&amp;gt;&lt;br /&gt;
You don&#039;t legally need to be on HRT in order to be exempt from the [[army]], change your [[Legal|legal sex]], or to have a [[surgery]].&lt;br /&gt;
&lt;br /&gt;
== Other resources == &amp;lt;!--T:79--&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--T:80--&amp;gt;&lt;br /&gt;
* Simulator: https://www.estrannai.se/&lt;br /&gt;
* https://transfemscience.org/ (note, the authors of this site disagree with a lot of what they are saying, regardless, it is still interesting)&lt;br /&gt;
** Introduction to Hormone Therapy for Transfeminine People: https://transfemscience.org/articles/transfem-intro/&lt;br /&gt;
** Older simulator: https://transfemscience.org/misc/injectable-e2-simulator/&lt;br /&gt;
** Dosage calculator: https://transfemscience.org/misc/injectable-dose-vol-conc-conv/&lt;br /&gt;
* https://diyhrt.wiki/ (alt link: https://anarch.cc/transfeminine-diy-hrt-the-ultimate-guide-2/)&lt;br /&gt;
* https://hrtcafe.net/&lt;br /&gt;
* ?? https://hrt.coffee/&lt;br /&gt;
* https://www.reddit.com/r/TransDIY/&lt;br /&gt;
* https://www.reddit.com/r/TransfemScience/&lt;br /&gt;
* https://groups.io/g/MTFHRT/wiki/29602 (alt link: https://anarch.cc/mtf-hrt-ultimate-diy/)&lt;br /&gt;
* https://hrt.cat/ - info for making your own (you will probably not need it - version 1.0: https://hrtcafe.net/hrtcat/)&lt;br /&gt;
* https://archive.ph/uQb8g (alt link: https://anarch.cc/making-your-own-injections/, as above)&lt;br /&gt;
* https://crimethinc.com/2022/12/15/producing-transdermal-estrogen-a-do-it-yourself-guide (alt link: https://anarch.cc/producing-transdermal-estrogen-a-do-it-yourself-guide/, as above)&lt;br /&gt;
* https://archive.ph/cpy7k (alt link: https://anarch.cc/homebrewing-hormones-mtf-guide/, as above)&lt;br /&gt;
&amp;lt;/translate&amp;gt;&lt;/div&gt;</summary>
		<author><name>Goblinmoder</name></author>
	</entry>
	<entry>
		<id>https://wiki.diyon.top/index.php?title=Blood_Testing/el&amp;diff=990</id>
		<title>Blood Testing/el</title>
		<link rel="alternate" type="text/html" href="https://wiki.diyon.top/index.php?title=Blood_Testing/el&amp;diff=990"/>
		<updated>2025-04-11T21:21:47Z</updated>

		<summary type="html">&lt;p&gt;Goblinmoder: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{#seo:|title=Blood Testing|title_mode=replace}}&lt;br /&gt;
&lt;br /&gt;
&amp;lt;languages/&amp;gt;&lt;br /&gt;
== Ασφάλιση == &lt;br /&gt;
Οι εξετάσεις που πραγματοποιούνται σε δημόσιες δομές (Κέντρα Υγείας - ΚΥ / Νοσοκομεία) &#039;&#039;&#039;είναι δωρεάν για όλους&#039;&#039;&#039;.&lt;br /&gt;
&lt;br /&gt;
Από 01/07/2022 βάσει &#039;&#039;&#039;άρθρου 38 του ν.4865/2021 και Υ.Α (υπουργικής απόφασης) 30268/30-05-2022&#039;&#039;&#039; οι &#039;&#039;&#039;ανασφάλιστοι πολίτες&#039;&#039;&#039; δεν μπορούν να λάβουν &#039;&#039;&#039;συνταγές ΕΟΠΥΥ από ιδιώτες γιατρούς&#039;&#039;&#039;. Το οποίο πρακτικά σημαίνει πως αν είμαστε ανασφάλιστοι, τότε είναι πρακτικό αδύνατο να εξυπηρετηθούμε από ιδιώτες.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Θέλετε να μάθετε περισσότερες πληροφορίες για την κατάσταση ασφάλισης σας όπως το αν είστε ασφαλισμένo και για ποιο χρονικό διάστημα;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Αναφερθείτε στις e-υπηρεσίες του ATLAS στον εξής σύνδεσμο με χρήση κωδικών taxisnet και ΑΜΚΑ ή στοιχείων eIDAS (ποιος το χρησιμοποιεί αυτο τελος πάντων): https://www.atlas.gov.gr/ATLAS/Atlas/Login2.aspx &lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Σε περίπτωση που είστε ανασφάλιστοι και επιθυμείτε να ασφαλιστείτε για να προβείτε σε εκτέλεση συνταγών υπάρχουν αρκετοί συχνοί λόγοι που μπορείτε να λάβετε την κατάσταση ασφαλισμένου, μερικοί από αυτούς συμπεριλαμβάνουν:&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
* Για φοιτητά και άτομα που αποφοίτησαν &amp;lt; 2 χρόνια νωρίτερα από την σημερινή, έμμεσα μέσω ασφαλισμένου γονέα. Η ανανέωση της κατάστασης ασφάλισης γίνεται κάθε 6 μήνες στον ΕΦΚΑ και συνήθως απαιτείται απλά ο ΑΜΚΑ των εξαρτώμενων μελών και πρόσφατη βεβαίωση σπουδών / απονομή σπουδών.&lt;br /&gt;
* Εργασία ως ιδιωτικό/δημόσιο υπάλληλο (μερική ή πλήρης).&lt;br /&gt;
* Αν είστε συνταξιούχα (αυτό περιλαμβάνει σύνταξη χηρείας και ορφανού).&lt;br /&gt;
* Αυτασφάλιση για ελεύθερα επαγγελματία/ αυτοαπασχολούμενα.&lt;br /&gt;
* Είστε μακροχρόνια άνεργο ή λαμβάνετε ταμείο ανεργίας.&lt;br /&gt;
* Μέσω του συζύγου σας.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Δεν γνωρίζετε σε ποιον ΕΦΚΑ να απευθυνθείτε για θέματα ασφάλισης;&#039;&#039;&#039; &lt;br /&gt;
&lt;br /&gt;
Χρησιμοποιήστε την εξής εφαρμογή του ΕΦΚΑ για να βρείτε που ανήκετε μόνο με χρήση ταχυδρομικού κώδικα (ΤΚ) και περιφέρειας: https://www.efka.gov.gr/mathepouanikeis.php&lt;br /&gt;
&lt;br /&gt;
== Κόστος ==&lt;br /&gt;
Συνταγογραφημένες εξετάσεις μπορούν να πραγματοποιηθούν σε οποιαδήποτε δημόσια δομή (π.χ τμήμα αιματολογικών Νοσοκομείου ή Κέντρο Υγείας) &#039;&#039;&#039;δωρεάν&#039;&#039;&#039;.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Μη συνταγογραφημένες εξετάσεις (DIY)&#039;&#039;&#039; καθώς και &#039;&#039;&#039;συνταγογραφημένες εξετάσεις&#039;&#039;&#039; μπορούν να πραγματοποιηθούν σε &#039;&#039;&#039;ιδιωτικές δομές (κέντρα αιματολογικών εξετάσεων) με μερική κάλυψη από τον ΕΟΠΥΥ όταν υπάρχει συνταγή&#039;&#039;&#039;. Το θετικό των ιδιωτικών κέντρων είναι συνήθως η αυξημένη μέριμνα του ασθενή και η ταχύτερη έκδοση αποτελεσμάτων (συνήθως γίνεται αυθημερόν ενώ στα δημόσια παίρνει 10+ μέρες).&lt;br /&gt;
&lt;br /&gt;
Άρα για ανακεφαλαίωση, στα δημόσια εκτελούμε συνταγές ΕΟΠΥΥ &#039;&#039;&#039;χωρίς κόστος, όμως με καθυστερήσεις&#039;&#039;&#039;. Σε κάθε περίπτωση, με κάποιο κόστος, με συνταγή ή χωρίς, μπορούμε επίσης να εκτελέσουμε &#039;&#039;&#039;εξετάσεις και συνταγές ΕΟΠΥΥ σε ιδιωτικές δομές&#039;&#039;&#039;.&lt;br /&gt;
&lt;br /&gt;
Για MTF άτομα, σε περίπτωση που κάνουμε DIY εξετάσεις (χωρίς συνταγή ΕΟΠΥΥ) το κόστος είναι σχετικά υψηλό, με αποτέλεσμα να εξετάζουμε κυρίως:&lt;br /&gt;
&lt;br /&gt;
- Testosterone - Ολική τεστοστερόνη (T)&lt;br /&gt;
&lt;br /&gt;
- Estradiol - Οιστραδιόλη (Ε2)&lt;br /&gt;
&lt;br /&gt;
- Dihydrotestosterone - Διυδροτεστοστερόνη (DHT - Σε περίπτωση που μας ενδιαφέρει ή σε περίπτωση που παίρνουμε Progesterone - Προγεστερόνη)&lt;br /&gt;
&lt;br /&gt;
- Prolactine - Προλακτίνη (PRL - Σε περίπτωση που λαμβάνουμε κυπροτερόνη - CPA).&lt;br /&gt;
&lt;br /&gt;
Η εξέταση χωρίς συνταγή ΕΟΠΥΥ για Τ+Ε2+DHT είναι στο εύρος των &#039;&#039;&#039;30-55€ στις μεγάλες πόλεις&#039;&#039;&#039;.&lt;br /&gt;
&lt;br /&gt;
Σε γενικές γραμμές, τα έξοδα ενός ασφαλισμένου - ακόμα και αν πραγματοποιήσει εξετάσεις σε ιδιωτική δομή - είναι αρκετά μειωμένα, εφόσον υπάρχει συνταγή ΕΟΠΥΥ.&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|+Κόστος Εξετάσεων Ασφαλισμένου σε Ιδιωτική Δομή με συνταγή ΕΟΠΥΥ&lt;br /&gt;
!Εξέταση&lt;br /&gt;
!Συμμετοχή Ασφαλισμένου&lt;br /&gt;
!Δαπάνες ΕΟΠΥΥ&lt;br /&gt;
!Σημειώσεις&lt;br /&gt;
|-&lt;br /&gt;
|Testosterone - Τεστοστερόνη (Τ)&lt;br /&gt;
|2,47€&lt;br /&gt;
|7,58€&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|Serum Estradiol - Οιστραδιόλη (Ε2)&lt;br /&gt;
|1,86€&lt;br /&gt;
|6,36€&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|Γενική Εξέταση Αίματος&lt;br /&gt;
|0,43€&lt;br /&gt;
|1,69€&lt;br /&gt;
|Χρήσιμη, προσοχή σε false positives για αναιμία σε MtF άτομα.&lt;br /&gt;
|-&lt;br /&gt;
|Prolactine - Προλακτίνη (PRL)&lt;br /&gt;
|1,86€&lt;br /&gt;
|6,01€&lt;br /&gt;
|Ιδιαίτερα χρήσιμη σε άτομα που λαμβάνουν Κυπροτερόνη - CPA.&lt;br /&gt;
|-&lt;br /&gt;
|Luteinizing Hormone - Ωχρινοτρόπος Ορμόνη (LH)&lt;br /&gt;
|1,62€&lt;br /&gt;
|8,36€&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|Sex Hormone Binding Globulin - Δεσμευτική Σφαιρίνη των Ορμονών του Φύλου (SHBG)&lt;br /&gt;
|? - Χαμηλό&lt;br /&gt;
|7,16€&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|Thyroid-Stimulating Hormone - Θυρεοτρόπος Ορμόνη (TSH)&lt;br /&gt;
|1,86€&lt;br /&gt;
|12,38€&lt;br /&gt;
|Για άτομα με προδιάθεση θυροειδή, καλή γενική εξέταση &lt;br /&gt;
|-&lt;br /&gt;
|Free Thyroxine - Ελεύθερη Θυροξίνη (FT4)&lt;br /&gt;
|3,08€&lt;br /&gt;
|4,88€&lt;br /&gt;
|Για άτομα με προδιάθεση θυροειδή, καλή γενική εξέταση &lt;br /&gt;
|-&lt;br /&gt;
|Follicle-Stimulating Hormone - Θυλακιοτρόπος Ορμόνη (FSH)&lt;br /&gt;
|1,62€&lt;br /&gt;
|5,26€&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|Pottasium - Κάλιο (K-Pottasium)&lt;br /&gt;
|0,78€&lt;br /&gt;
|1,71€&lt;br /&gt;
|Ιδιαίτερα χρήσιμη για άτομα που λαμβάνουν Σπιρονολακτόνη - Spironolactone&lt;br /&gt;
|-&lt;br /&gt;
|Alanine Aminotransferase - Πυροσταφυλική Τρανσαμινάση (ALT/SGPT)&lt;br /&gt;
|? - Χαμηλό&lt;br /&gt;
|1,34€&lt;br /&gt;
|Ιδιαίτερα χρήσιμη για άτομα που λαμβάνουν Βικαλουταμίδη - Bicalutamide&lt;br /&gt;
|-&lt;br /&gt;
|Aspartate Aminotransferase - Οξαλοξεϊκή Τρανσαμινάση (AST/SGOT)&lt;br /&gt;
|? - Χαμηλό&lt;br /&gt;
|1,34€&lt;br /&gt;
|Ιδιαίτερα χρήσιμη για άτομα που λαμβάνουν Βικαλουταμίδη - Bicalutamide&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== Transfem ==&lt;br /&gt;
Τα ποιο σημαντικά επίπεδα για καταμέτρηση είναι Τεστοστερόνη (T) και Οιστραδιόλη (E2).&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|+&lt;br /&gt;
!Εξέταση&lt;br /&gt;
!Αποδεκτές Τιμές&lt;br /&gt;
!Σημειώσεις&lt;br /&gt;
|-&lt;br /&gt;
|Estradiol - Οιστραδιόλη (E2)&lt;br /&gt;
|100-200 pg/mL ή 450-700 pmol/L αν λαμβάνονται [[HRT#Anti-androgens and GNRH Agonists|αντιανδρογόνα]]&lt;br /&gt;
&amp;gt;300 pg/mL ή &amp;gt;1100 pmol/L σε [[HRT#Μονοθεραπεία|μονοθεραπεία]]&lt;br /&gt;
|Για [[HRT#Μονοθεραπεία|μονοθεραπεία]] οι αποδεκτές τιμές εξαρτώνται από το αν έχει επιτευχθεί σωστή καταστολή της τεστοστερόνης. Οι τιμές είναι ενδικτεικές και μπορούν να διαφέρουν κατά πολύ από άτομο σε άτομο.&lt;br /&gt;
|-&lt;br /&gt;
|Testosterone - Τεστοστερόνη (T)&lt;br /&gt;
|15-50 ng/dL&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|Dihydrotestosterone - Διυδροτεστοστερόνη (DHT)&lt;br /&gt;
|&amp;lt;10 ng/dL&lt;br /&gt;
|Οι αποδεκτές τιμές είναι ισχυρισμός του Dr. Will Powers. Η DHT μπορεί να προκαλέσει ανδροποίηση ακόμη και αν η τεστοστερόνη είναι μέσα στις αποδεκτές τιμές. TODO: Write available actions when DHT is high.&lt;br /&gt;
|-&lt;br /&gt;
|Prolactine - Προλακτίνη (PRL)&lt;br /&gt;
|2-29 ng/mL (TODO: Check if higher levels are acceptable)&lt;br /&gt;
|Σημαντική εξέταση αν χορηγείται [[HRT#Αντιανδρογόνα και GNRH ανταγωνιστές|κυπροτερόνη]]  για την πρόληψη [[wikipedia:Prolactinoma|προλακτινώματος]].&lt;br /&gt;
|-&lt;br /&gt;
|Progesterone - Προγεστερόνη (P4)&lt;br /&gt;
|5-10 ng/mL&lt;br /&gt;
|Αν δεν χορηγείται [[HRT#Αντιανδρογόνα και GNRH ανταγωνιστές|προγεστερόνη]] η εξέταση δεν είναι σημαντική.&lt;br /&gt;
|-&lt;br /&gt;
|Sex Hormone Binding Globulin - Φυλοσύνδετη Σφαιρίνη ή Δεσμευτική Σφαιρίνη των Ορμονών του Φύλου (SHBG)&lt;br /&gt;
|14.60-110 nmol/L&lt;br /&gt;
|Επιρρεάζει την ελεύθερη οιστραδιόλη. Χαμηλότερα επίπεδα SHBG αυξάνουν την ελεύθερη οιστραδιόλη.&amp;lt;ref name=&amp;quot;:0&amp;quot;&amp;gt;https://www.sciencedirect.com/science/article/abs/pii/S0039128X14001986&amp;lt;/ref&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|Thyroid Stimulating Hormone - Θυρεοειδοτρόπος Ορμόνη (TSH)&lt;br /&gt;
|0.27-5 μIU/mL&lt;br /&gt;
|Σημαντική εξέταση αν υπάρχει ιστορικό στην οικογένεια για θέματα με τον θυροειδή. Άτομα με θυληκές ορμόνες έχουν παραπάνω πιθανότητες να τα αναπτύξουν.&lt;br /&gt;
|-&lt;br /&gt;
|Free Estradiol - Ελεύθερη Οιστραδιόλη&lt;br /&gt;
|&amp;gt;1,5% της Ε2&lt;br /&gt;
|Η διαθέσιμη οιστραδιόλη για να δεσμευτεί από τους υποδοχείς (προκαλεί τη θυληκοποίηση). Η SHBG και η τεστοστερόνη επιρρεάζουν την τιμή. Μπορεί και να υπολογιστεί με μαθηματικό τύπο.&amp;lt;ref name=&amp;quot;:0&amp;quot; /&amp;gt;&amp;lt;ref&amp;gt;https://aacrjournals.org/cebp/article/11/10/1065/166164/Validity-of-Free-Testosterone-and-Free-Estradiol&amp;lt;/ref&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|Estrone - Οιστρόνη (E1)&lt;br /&gt;
|Το 1/3 της Ε2&lt;br /&gt;
|Οι αποδεκτές τιμές είναι ισχυρισμός του Dr. Will Powers και σύμφωνα με αυτόν η σωστή αναλογία συμβάλει στην ανάπτυξη στήθους για ορισμένα άτομα. TODO: Find which cases.&lt;br /&gt;
|-&lt;br /&gt;
|Follicle-Stimulating Hormone - Θυλακιοτρόπος Ορμόνη (FSH)&lt;br /&gt;
|TODO&lt;br /&gt;
|TODO&lt;br /&gt;
|-&lt;br /&gt;
|Luteinizing Hormone - Ωχρινοτρόπος Ορμόνη (LH)&lt;br /&gt;
|TODO&lt;br /&gt;
|TODO&lt;br /&gt;
|-&lt;br /&gt;
|Dehydroepiandrosterone - Δεϋδροεπιανδροστερόνη (DHEA)&lt;br /&gt;
|TODO&lt;br /&gt;
|TODO: Find the case which this blood test is relevant.&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== Transmasc ==&lt;br /&gt;
&lt;br /&gt;
== Πηγές ==&lt;br /&gt;
&amp;lt;references /&amp;gt;&lt;/div&gt;</summary>
		<author><name>Goblinmoder</name></author>
	</entry>
	<entry>
		<id>https://wiki.diyon.top/index.php?title=Legal&amp;diff=989</id>
		<title>Legal</title>
		<link rel="alternate" type="text/html" href="https://wiki.diyon.top/index.php?title=Legal&amp;diff=989"/>
		<updated>2025-04-11T20:28:39Z</updated>

		<summary type="html">&lt;p&gt;Goblinmoder: /* Καρτέλες Μαθητών/Σπουδαστών και Απολυτήρια */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{#seo:&lt;br /&gt;
|title=Legal&lt;br /&gt;
|title_mode=replace&lt;br /&gt;
|description=Bureaucracy my beloved&lt;br /&gt;
}}&#039;&#039;&#039;Ο νόμος που θα επικαλείστε είναι ο ν. 4491/2017 . Θα παροτρύναμε κάθε ενδιαφερόμενο άτομο να τον ξεφυλλίσει έστω και μία φορά, γιατί θα είναι χρήσιμο. Παρακάτω, δίνεται σύνδεσμος που σας ανακατευθύνει σε μία σελίδα με τα περιεχόμενα του νόμου.&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
https://www.kodiko.gr/nomothesia/document/304143/nomos-4491-2017&lt;br /&gt;
&lt;br /&gt;
Σύμφωνα με τον ν. 4491/2017 δικαίωμα στην νομική αλλαγή στοιχείων έχουν &#039;&#039;&#039;όλα τα έλληνα πολιτά&#039;&#039;&#039; που: &lt;br /&gt;
&lt;br /&gt;
* Δεν τους στερείται δικαιοπρακτική ικανότητα&lt;br /&gt;
* Είναι δεκαεφτά (17) ετών και άνω την ημέρα της κατάθεσης της δήλωσης&lt;br /&gt;
&lt;br /&gt;
Σε περίπτωση που δεν είναι δεκαεφτά (17) και άνω το άτομο, δίνεται και πάλι ικανότητα διόρθωσης στοιχείων για το αιτούν πρόσωπο σε περίπτωση που είναι &#039;&#039;&#039;τουλάχιστον δεκαπέντε (15) ετών ηλικιακά την ημέρα της κατάθεσης&#039;&#039;&#039; και &#039;&#039;&#039;υπάρχει θετική γνωμάτευση διεπιστημονικής Επιτροπής&#039;&#039;&#039; που συστήνεται με κοινή απόφαση των Υπουργών Δικαιοσύνης, Διαφάνειας και Ανθρωπίνων Δικαιωμάτων και Υγείας για δύο (2) έτη, στην οποία μετέχουν:&lt;br /&gt;
&lt;br /&gt;
# ένας παιδοψυχίατρος,&lt;br /&gt;
# ένας ψυχίατρος,&lt;br /&gt;
# ένας ενδοκρινολόγος,&lt;br /&gt;
# ένας παιδοχειρούργος,&lt;br /&gt;
# ένας ψυχολόγος,&lt;br /&gt;
# ένας κοινωνικός λειτουργός και&lt;br /&gt;
# ένας παιδίατρος, ως Πρόεδρος, άπαντες με εξειδίκευση στο συγκεκριμένο ζήτημα.  &lt;br /&gt;
&lt;br /&gt;
Επίσης, πλέον με την υπογραφή του νομοσχεδίου για την ισότητα στον γάμο ομόφυλων ζευγαριών διαγράφεται η 3η προϋπόθεση του άρθρου 3 του ν. 4491/2017 :&lt;br /&gt;
&lt;br /&gt;
* &amp;quot;&#039;&#039;&#039;3&#039;&#039;&#039;. Προϋπόθεση για τη διόρθωση του καταχωρισμένου φύλου είναι το πρόσωπο που αιτείται τη διόρθωση να μην είναι έγγαμο.&amp;quot;&lt;br /&gt;
&lt;br /&gt;
, &#039;&#039;&#039;καθώς πλέον αναγνωρίζονται οι ομοφυλόφιλοι γάμοι&#039;&#039;&#039;.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Πλέον τα Ειρηνοδικεία δεν αναλαμβάνουν τις δίκες Ν4491/2017 . Αναφερόμαστε μόνο σε πρωτοδικεία.&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Μέσω δικαστικού εκπροσώπου (κοινώς: δικηγόρου) γίνεται κατάθεση αιτήματος στο πρωτοδικείο και λαμβάνετε δικάσιμη ημέρα, που συνήθως είναι 2-4 μήνες μετά την ημέρα υποβολής του αιτήματος (βέβαια στο παρελθόν έχουμε δει και αρκετά μεγαλύτερες καθυστερήσεις). Στην δίκη επιτρέπεται να έχετε &amp;quot;μάρτυρα/ες&amp;quot; που μπορεί να είναι όποιο/όποια επιθυμείτε. &#039;&#039;&#039;Δεν υπάρχει (βάσει ν. 4491/2017) καμία υποχρέωση για ιατρική φυλομετάβαση&#039;&#039;&#039; (όπως εγχειρήσεις, ορμονοθεραπεία, κ.ά), καθώς και καμία υποχρέωση για γνωμάτευση ψυχιάτρου, παρόλο που πολλά τρανς άτομα επιλέγουν να παρουσιαστούν στην δίκη με γνωματεύσεις ψυχιάτρων. &lt;br /&gt;
&lt;br /&gt;
Σύμφωνα με τον ν. 4491/2017 η δίκη θα γίνει με απόρρητο, δηλαδή ανεξαρτήτως τι αριθμός σειράς δοθεί στην δίκη, θα γίνει τελευταία και αυστηρώς χωρίς ακροατήριο. &lt;br /&gt;
&lt;br /&gt;
Αφού τελειώσει η δίκη, το πρωτοδικείο έχει έως και 6 μήνες να βγάλει απόφαση. Μετά την δημοσίευση της απόφασης, υπάρχει μία περίοδος, συνήθως όχι μεγαλύτερη των 2 μηνών για τελεσιδικία. Αφού τελειώσει και αυτή η περίοδος και λάβετε όλα τα έγγραφα μπορείτε και από την επόμενη μέρα να ξεκινήσετε την νομική αλλαγή των στοιχείων σας και του καταχωρημένου φύλου σας.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Βάσει του ν. 4491/2017 άρθρο 4 παράγραφος 3 είναι επίσης ΠΑΡΑΝΟΜΟ για οποιαδήποτε δημόσια υπηρεσία/φορέα να κρατάει ιστορικό της μεταβολής ή αναγραφές (&amp;quot;πρωτότυπα&amp;quot;) των παλιών σας στοιχείων.&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Το &amp;quot;έγγραφο τελεσιδικίας&amp;quot; στο οποίο αναφερόμαστε, αναφέρεται πολλές φορές και ως &#039;&#039;&#039;έκθεση επίδοσης&#039;&#039;&#039;.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Επειδή τα επόμενα βήματα είναι αρκετά, θα τα σπάσουμε σε κατηγορίες με σειρά.&#039;&#039;&#039; &lt;br /&gt;
&lt;br /&gt;
=== &#039;&#039;&#039;&amp;lt;big&amp;gt;Ληξιαρχείο&amp;lt;/big&amp;gt;&#039;&#039;&#039; ===&lt;br /&gt;
Πρώτη δράση σας μετά την τελεσιδικία θα έπρεπε να είναι να πάτε στο Ληξιαρχείου που &#039;&#039;&#039;είναι δηλωμένη η γέννηση σας&#039;&#039;&#039;. Δεν χρειάζεται κάποιο ραντεβού, μπορείτε να παρουσιαστείτε οποιαδήποτε στιγμή εντός των ωρών λειτουργίας του Ληξιαρχείου. Το Ληξιαρχείο, με την απόφαση και το έγγραφο τελεσιδικίας αλλάζει βάσει του νόμου ν. 4491/2017 στον τόμο την εγγραφή της γέννησης σας. &lt;br /&gt;
&lt;br /&gt;
Τα στοιχεία ΟΛΩΝ των μελών (π.χ γονέων, αιτούντων) θα παραμείνουν τα ίδια, μόνο τα δικά σας στοιχεία θα αλλάξουν (συγκεκριμένα: όνομα, επώνυμο, φύλο). &lt;br /&gt;
&lt;br /&gt;
Το Ληξιαρχείο είναι υποχρεωμένο να αλλάξει την αρχική έγγραφη στον τόμο του και να μην κρατήσει κανένα ιστορικό της μεταβολής ή &amp;quot;πρωτότυπο&amp;quot; αλλά αυτό είναι θέμα συζήτησης καθώς υπάρχει μεγάλη υποψία από την κοινότητα πως, πράγματι, κρατάνε &amp;quot;πρωτότυπα&amp;quot;.&lt;br /&gt;
&lt;br /&gt;
Σε περίπτωση που διελεύσει διάστημα μεγαλύτερο των 30 ημερών μεταξύ της ημερομηνίας τελεσιδικίας και αίτησης στο Ληξιαρχείο, τότε χρειάζεται να πληρώσετε ένα πρόστιμο ύψους 30.00€ μέσω παράβολου (κωδικός: [ 3828 ] Εκπρόθεσμη δήλωση γέννησης, γάμου, μεταβολής αστικής κατάστασης (πέραν της 10ημερης/ 40ήμερης /30ημερης προθεσμίας).&lt;br /&gt;
&lt;br /&gt;
=== &#039;&#039;&#039;&amp;lt;big&amp;gt;Δήμος / Δημοτολόγιο&amp;lt;/big&amp;gt;&#039;&#039;&#039; ===&lt;br /&gt;
Δεύτερη δράση σας θα ήταν να ενημερώσετε την καρτέλα σας στον δήμο. Έως και 72 ώρες μετά την μεταβολή στο Ληξιαρχείο, το εκάστοτε Ληξιαρχείο είναι υπόχρεο να ενημερώσει τον δήμο στον οποίο ανήκετε για την μεταβολή των στοιχείων ώστε να αλλάξει η εγγραφή σας στο δημοτολόγιο αυτόματα, αν θέλετε (και είναι κάτι που προτείνουμε) μπορείτε να πάτε δια ζώσης να ρωτήσετε για την διαδικασία της μεταβολής. Ανεξαρτήτως, κάποια στιγμή θα χρειαστεί να παρευρεθείτε φυσικά στον δήμο για να κρατήσουν αντίγραφο σας για την συναίνεση μεταβολής και να σας δώσουν την Δημαρχιακή Απόφαση (που δεν εκδίδεται πουθενά διαδικτυακά) την οποία μπορείτε να χρησιμοποιήσετε για διαφόρους λόγους, όπως για την ταυτοποίηση σας με παλαιότερα στοιχεία σε σπάνιες περιπτώσεις που δεν υφίσταται η μεταβολή, για παράδειγμα σε έγγραφα όπως το &amp;quot;Πιστοποιητικό Εγγυτέρων Συγγενών&amp;quot;. &lt;br /&gt;
&lt;br /&gt;
Το δημαρχείο και πάλι, δεν υφίσταται να κρατάει ιστορικό σας. Επίσης, πλέον δεν λειτουργούν τα μητρώα αρρένων στα δημοτολόγια. Οπότε δεν χρειάζεται να αιτηθείτε την απεγγραφή/εγγραφή σας, αλλά μπορείτε (και δικαιούστε) να ζητήσετε την διαγραφή της παλιάς σας εγγραφής που έχουν κρατήσει στο αρχείο.  &lt;br /&gt;
&lt;br /&gt;
=== &#039;&#039;&#039;&amp;lt;big&amp;gt;Αστυνομία / Έκδοση νέας ταυτότητας&amp;lt;/big&amp;gt;&#039;&#039;&#039; ===&lt;br /&gt;
Για την έκδοση της νέας ταυτότητας &#039;&#039;&#039;πρέπει&#039;&#039;&#039; να έχει γίνει η ενημέρωση στο δημοτολόγιο.&lt;br /&gt;
&lt;br /&gt;
Μπορείτε να κλείσετε κανονικά ραντεβού στο τμήμα ταυτοτήτων ενός αστυνομικού τμήματος, αλλά ειδικά αυτήν την περίοδο με τον όχλο ατόμων που επιδιώκει την έκδοση της νέας ταυτότητας θα ήταν σοφό να μην κλείσετε κανονικό ραντεβού και να πάτε δια ζώσης με την απόφαση και το έγγραφο τελεσιδικίας στο αστυνομικό τμήμα και να αιτηθείτε να σας δώσουν έκτακτο ραντεβού. Δικαιούστε έκτακτο ραντεβού καθώς δεν είναι μόνο για κλοπές/απώλειες εγγράφων αλλά και για μεταβολές στοιχείων. Έτσι μπορείτε να γλιτώσετε πολύ χρόνο αναμονής μέσω κάτι που δικαιούστε.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Αφού εκδοθεί η νέα ταυτότητα ξεκινάει πάνω κάτω η μεταβολή στα πάντα, από εδώ και πέρα δεν υπάρχει κάποια &amp;quot;σωστή&amp;quot; σειρά με την οποία μπορούν να γίνουν οι μεταβολές, με εξαίρεση τον ΕΦΚΑ.&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
=== &#039;&#039;&#039;&amp;lt;big&amp;gt;GOV.GR / ΑΑΔΕ&amp;lt;/big&amp;gt;&#039;&#039;&#039; ===&lt;br /&gt;
Για την μεταβολή φυσικών στοιχείων (και για να γίνουν πάλι λειτουργικές οι υπηρεσίες που απαιτούν ταυτοποίηση μέσω taxisnet - ΑΑΔΕ, γιατί από την περίοδο μεταβολής στο Ληξιαρχείο και στο Δημοτολόγιο λόγω της ασυμφωνίας με τον ΑΑΔΕ δεν λειτουργούν) θα χρειαστεί να μπείτε με τους κωδικούς taxisnet στα αιτήματα του myaade (https://www1.aade.gr/saadekef/eticketaade) και να υποβάλετε αίτημα στον ΔΟΥ σας. Η κατηγορία του αιτήματος θα πρέπει να είναι &amp;quot;&#039;&#039;&#039;Μεταβολές στοιχείων φυσικού προσώπου πλην δήλωσης θανάτου και κληρονόμων.&amp;quot;&#039;&#039;&#039; . Μπορείτε να αναγράψετε ό,τι πιστεύετε εσείς στο κείμενο, αλλά στα επισυναπτόμενα αρχεία &#039;&#039;&#039;πρέπει&#039;&#039;&#039; να επισυνάψετε:&lt;br /&gt;
&lt;br /&gt;
* Συμπληρωμένη αίτηση Δ210, το έγγραφο μπορείτε να κατεβάσετε και να το συμπληρώσετε εδώ: (https://www.aade.gr/sites/default/files/2021-09/D210.pdf)&lt;br /&gt;
&lt;br /&gt;
* και την νέα σας αστυνομική ταυτότητα.&lt;br /&gt;
&lt;br /&gt;
Μετά την πραγματοποίηση της μεταβολής, πλέον σε όλες τις εφαρμογές που σας ταυτοποιούν μέσω ΑΑΔΕ - taxisnet θα εμφανίζονται καταχωρημένα τα νέα σας στοιχεία.&lt;br /&gt;
&lt;br /&gt;
Το πρόβλημα με τον ΑΑΔΕ είναι πως επιμένει στην παρακράτηση ιστορικού μεταβολής του ονόματος και του επιθέτου σας, κάτι που δεν θα έπρεπε να συμβαίνει καθώς δεν αλλάζει ο ΑΦΜ σας, αλλά δεν έχουμε καταφέρει να βρούμε άκρη ακόμα. Επίσης, ενδεχομένως μερικές εφαρμογές που χρησιμοποιούν το παλιό σύστημα του ΑΑΔΕ και οι σελίδες με τις οφειλές και τις επιστροφές να αναγράφουν ακόμα τα παλιά σας στοιχεία, όμως καμία αίτηση και κανένα νομικό έγγραφο δεν θα τα αναγράφει, είναι πιθανώς απλά ένα τεχνικό πρόβλημα του ΑΑΔΕ προς διερεύνηση.&lt;br /&gt;
&lt;br /&gt;
=== &#039;&#039;&#039;&amp;lt;big&amp;gt;ΕΦΚΑ - ΑΜΚΑ&amp;lt;/big&amp;gt;&#039;&#039;&#039; ===&lt;br /&gt;
Όπως μπορεί να γνωρίζετε, ο ΑΜΚΑ σαν αριθμός δεν μεταβάλλεται. Μεταβάλλονται όμως τα στοιχεία σας στον ΕΡΓΑΝΗ και τα σχετιζόμενα στοιχεία του ΑΜΚΑ (δηλαδή τα στοιχεία του φυσικού προσώπου στον οποίον ανήκει ο αριθμός).&lt;br /&gt;
&lt;br /&gt;
Για την μεταβολή του ΕΦΚΑ πρέπει να έχει πραγματοποιηθεί:&lt;br /&gt;
&lt;br /&gt;
* Μεταβολή στοιχείων στο Ληξιαρχείο&lt;br /&gt;
* Έκδοση νέας Α.Τ (αστυνομικής ταυτότητας)&lt;br /&gt;
&lt;br /&gt;
* Επιτυχής μεταβολή στον ΑΑΔΕ &lt;br /&gt;
&lt;br /&gt;
Για να γίνει η μεταβολή, μπορείτε να κλείσετε ραντεβού τηλεφωνικώς μέσω του αριθμού: 1555 (χωρίς χρέωση) στο τμήμα μητρώων του ΕΦΚΑ στον οποίο ανήκετε (δεν ξέρετε σε ποιον ΕΦΚΑ ανήκετε; Μπορείτε να το βρείτε εδώ: https://www.efka.gov.gr/mathepouanikeis.php ).&lt;br /&gt;
&lt;br /&gt;
Ο ΕΦΚΑ είναι κατά μεγάλης αποστάσεως η υπηρεσία με τους περισσότερους ανειδίκευτους υπαλλήλους που θα συναντήσετε σε όλη την διαδικασία, και επειδή κατά μία μεγάλη πιθανότητα θα γίνει λάθος από το υπάλληλο αν δεν εμπλακείτε και εσείς, ας ξεκαθαρίσουμε μερικά πράγματα για την &#039;&#039;&#039;βεβαίωση απογραφής&#039;&#039;&#039; και τον &#039;&#039;&#039;ΑΜΚΑ&#039;&#039;&#039;.&lt;br /&gt;
&lt;br /&gt;
Τα δύο έγγραφα έχουν την εξής μορφή - ανεξαιρέτως αν μιλάμε για cis ή τρανς/genderqueer/gender non typical πολιτά.&lt;br /&gt;
[[File:Απογραφή ΕΦΚΑ.png|left|thumb|Βεβαίωση Απογραφής ΕΦΚΑ - 2024 από eServices]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[File:ΑΜΚΑ.png|left|thumb|Ασφαλιστική Ικανότητα από ΑΤΛΑΣ - 2024 όπου αναγράφονται αναλυτικά τα στοιχεία του ΑΜΚΑ σας.]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
           &lt;br /&gt;
&lt;br /&gt;
Όπως μπορείτε να δείτε, &#039;&#039;&#039;υπάρχουν οι στήλες &amp;quot;επώνυμο γέννησης&amp;quot; και &amp;quot;επώνυμο σημερινό&#039;&#039;&#039;&amp;quot;. &#039;&#039;&#039;Αυτές οι στήλες δεν υπάρχουν μόνο στα άτομα που έχουν ζητήσει μεταβολή στοιχείων μέσω του ν. 4491/2017 αλλά σε κάθε Έλληνα πολιτό&#039;&#039;&#039;. &#039;&#039;&#039;ΟΜΩΣ&#039;&#039;&#039; αυτές οι στήλες &amp;quot;χρησιμοποιούνται&amp;quot; &#039;&#039;&#039;ΜΟΝΟ&#039;&#039;&#039; σε περιπτώσεις που ένα άτομο έχει κάνει μεταβολή επιθέτου &#039;&#039;&#039;ΕΚΤΟΣ&#039;&#039;&#039; του ν. 4491/2017 και άλλων σχετικών νομοσχεδίων που ενδεχομένως να καθίστανται ανυπόστατη η διάκριση αυτών των δύο. &lt;br /&gt;
&lt;br /&gt;
Δηλαδή, τα επίθετα σε αυτές τις δύο στήλες θα έπρεπε να διαφέρουν μόνο σε περιπτώσεις που αλλάζετε το επίθετο σας στο επίθετο του συζύγου σας και σε λοιπές παρόμοιες περιπτώσεις - σε καμία περίπτωση δεν επιτρέπεται να διαφέρουν σε περίπτωση μεταβολής στοιχείων λόγω αλλαγής καταχώρισης φύλου. &#039;&#039;&#039;Για τα άτομα που ζητούν μεταβολή στοιχείων λόγω διόρθωσης καταχώρισης φύλου, θα έπρεπε να είναι σαν τους υπόλοιπους πολιτά, ΔΗΛΑΔΗ ΙΔΙΕΣ. Σε πολλές περιπτώσεις, λόγω ανικανότητας των υπαλλήλων, κρατάν ως επώνυμο γέννησης το παλιό σας επίθετο, και ως σημερινό σας επίθετο το καινούργιο σας από την δικαστική απόφαση. Το οποίο όχι μόνο είναι άκρως παράνομο, αλλά και ανεπιθύμητο.&#039;&#039;&#039; &lt;br /&gt;
&lt;br /&gt;
Ο ΑΜΚΑ παλαιότερα ενημερωνόταν μέσω ΚΕΠ. Πλέον, λόγω προσπάθειας αποκεντροποίησης, η μεταβολή πραγματοποιείται στον ΕΦΚΑ.&lt;br /&gt;
&lt;br /&gt;
=== &amp;lt;big&amp;gt;&#039;&#039;&#039;Διπλώματα Οδήγησης&#039;&#039;&#039;&amp;lt;/big&amp;gt; ===&lt;br /&gt;
Πρέπει να πάμε στο Υπουργείο Μεταφορών με τα εξής έγγραφα:&lt;br /&gt;
&lt;br /&gt;
* Δικαστική απόφαση και έγγραφο τελεσιδικίας (έκθεση επίδοσης)&lt;br /&gt;
* Νέα ταυτότητα&lt;br /&gt;
* Παλιό/α δίπλωμα/τα&lt;br /&gt;
* 2 (δύο) φωτογραφίες τύπου διπλώματος/διαβατηρίου&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Εκεί κάνουμε αίτηση για έκδοση νέου διπλώματος και περιμένουμε να μας δώσουν μία προσωρινή βεβαίωση που αντικαθιστά το δίπλωμα μας μέχρι να εκδοθεί το καινούριο.&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
=== &amp;lt;big&amp;gt;&#039;&#039;&#039;Τράπεζες&#039;&#039;&#039;&amp;lt;/big&amp;gt; ===&lt;br /&gt;
Μετά την ενημέρωση του ΑΑΔΕ, μπορούμε να αιτηθούμε ψηφιακά σε ελληνικές και ξένες τράπεζες (όπως Πειραιώς, εθνική, κ.α) την επικαιροποίηση στοιχείων μέσω των διαπιστευτηρίων του ΑΑΔΕ (gov.gr login). Μερικές φορές μπορεί να μας ζητηθεί να ανεβάσουμε ως έγγραφο την νέα μας ταυτότητα.&lt;br /&gt;
&lt;br /&gt;
=== &amp;lt;big&amp;gt;&#039;&#039;&#039;Στρατολογία&#039;&#039;&#039;&amp;lt;/big&amp;gt; ===&lt;br /&gt;
Το μητρώο αρρένων δεν λειτουργεί πλέον στο Δημοτολόγιο καθώς δεν υφίσταται. Για την απεγγραφή/εγγραφή στην στρατολογία, απαιτείται η αλλαγή στοιχείων στον ΑΑΔΕ και ...............................................................&lt;br /&gt;
&lt;br /&gt;
Υπάρχει και η επιλογή για Ι5 - Αποβολή αλλά ειδικά στις θυληκότητες, δεν υπάρχει κάποιος λόγος για αποβολή καθώς μπορεί να γίνει διαγραφή.&lt;br /&gt;
&lt;br /&gt;
=== &#039;&#039;&#039;&amp;lt;big&amp;gt;Καρτέλες Μαθητών/Σπουδαστών και Απολυτήρια&amp;lt;/big&amp;gt;&#039;&#039;&#039; ===&lt;br /&gt;
Με την αλλαγή της αστυνομικής σας ταυτότητας δύναται πλέον να αλλάξετε τις εγγραφές σας στις καρτέλες σας στο εκπαιδευτικό ίδρυμα που είστε εγγεγραμμένο μέσω της γραμματείας. Σε περίπτωση που έχετε αποφοιτήσει από εκπαιδευτικά ιδρύματα και ενδιαφέρεστε να αλλάξετε τα αναγραφόμενα στοιχεία (π.χ αν ενδιαφέρεστε για ερευνητικές θέσεις, σπουδές στο εξωτερικό, κλπ.) τότε θα πρέπει να αναφερθείτε στο ίδρυμα από το οποίο αποφοιτήσατε.&lt;br /&gt;
&lt;br /&gt;
Πολλά άτομα επιλέγουν να μην αλλάξουν τα αναγραφόμενα στοιχεία τους από την Πρωτοβάθμια και την Δευτεροβάθμια εκπαίδευση καθώς η ανάδειξη αυτών των απολυτηρίων είναι σπάνια και ο μπελάς για την αλλαγή τους μεγάλος.&lt;br /&gt;
&lt;br /&gt;
Σε αντίθεση, για απολυτήρια τριτοβάθμιας εκπαίδευσης (ή για εγγεγραμμένα φοιτητά) η ανάγκη μπορεί να είναι μεγάλη. Κάθε τμήμα λειτουργεί διαφορετικά. Ανεξαρτήτως όμως, θα έπρεπε να αναφερθείτε στην γραμματεία και να παρουσιαστείτε με τα εξής έγγραφα (καλού κακού):&lt;br /&gt;
&lt;br /&gt;
* Δικαστική απόφαση και έγγραφο τελεσιδικίας&lt;br /&gt;
* Νέα αστυνομική ταυτότητα&lt;br /&gt;
* Παλιά φοιτητική ταυτότητα (πάσο)&lt;br /&gt;
&lt;br /&gt;
Σε περίπτωση που έχετε ήδη αποφοιτήσει από ίδρυμα Τριτοβάθμιας εκπαίδευσης και έχετε χρησιμοποιήσει την ειδικότητα σας για να γραφτείτε σε κάποιο οργανισμό (π.χ ΤΕΕ) τότε τα πράγματα ζορίζουνε αν θέλετε να επικαιροποιήσετε τα στοιχεία σας.&lt;br /&gt;
&lt;br /&gt;
==== &#039;&#039;&#039;ΤΕΕ και λοιπά τεχνικά σωματεία που απαιτούν πιστοποιητικά τριτοβάθμιας εκπαίδευσης&#039;&#039;&#039; ====&lt;br /&gt;
Έχει έρθει στην προσοχή της ΛΟΑΤΚΙ κοινότητας πως .............................&lt;br /&gt;
&lt;br /&gt;
=== &#039;&#039;&#039;&amp;lt;big&amp;gt;Λοιπές Υπηρεσίες&amp;lt;/big&amp;gt;&#039;&#039;&#039; ===&lt;br /&gt;
Με την έκδοση της νέας σας αστυνομικής ταυτότητας δύναται πλέον να αλλάξετε τα στοιχεία σας και τις εγγραφές σας από όλες τις υπηρεσίες στις οποίες είστε εγγεγραμμένο, όπως γυμναστήρια, πανεπιστήμια (μέσω της γραμματείας - κάθε σχολή διαφέρει), κ.α. Κανένα δεν μπορεί να σας στερηθεί το δικαίωμα της επικαιροποίησης των στοιχείων, αν κάπου σας πουν &amp;quot;δεν γίνεται&amp;quot; τότε κατά 99.9% δεν ξέρουν τι λένε.&lt;/div&gt;</summary>
		<author><name>Goblinmoder</name></author>
	</entry>
	<entry>
		<id>https://wiki.diyon.top/index.php?title=Blood_Testing&amp;diff=988</id>
		<title>Blood Testing</title>
		<link rel="alternate" type="text/html" href="https://wiki.diyon.top/index.php?title=Blood_Testing&amp;diff=988"/>
		<updated>2025-04-11T20:13:18Z</updated>

		<summary type="html">&lt;p&gt;Goblinmoder: @&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{#seo:|title=Blood Testing|title_mode=replace}}&lt;br /&gt;
== Insurance ==&lt;br /&gt;
Οι εξετάσεις που πραγματοποιούνται σε δημόσιες δομές (Κέντρα Υγείας - ΚΥ / Νοσοκομεία) &#039;&#039;&#039;είναι δωρεάν για όλα&#039;&#039;&#039;.&lt;br /&gt;
&lt;br /&gt;
Από 01/07/2022 βάσει &#039;&#039;&#039;άρθρου 38 του ν.4865/2021 και Υ.Α (υπουργικής απόφασης) 30268/30-05-2022&#039;&#039;&#039; οι &#039;&#039;&#039;ανασφάλιστα πολιτά&#039;&#039;&#039; δεν μπορούν να λάβουν &#039;&#039;&#039;συνταγές ΕΟΠΥΥ από ιδιώτες γιατρούς&#039;&#039;&#039;. Το οποίο πρακτικά σημαίνει πως αν είμαστε ανασφάλιστα, τότε είναι πρακτικό αδύνατο να εξυπηρετηθούμε από ιδιώτες.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Θέλετε να μάθετε περισσότερες πληροφορίες για την κατάσταση ασφάλισης σας όπως το αν είστε ασφαλισμένο και για ποιο χρονικό διάστημα;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Αναφερθείτε στις e-υπηρεσίες του ATLAS στον εξής σύνδεσμο με χρήση κωδικών taxisnet και ΑΜΚΑ ή στοιχείων eIDAS (who uses that anyways): https://www.atlas.gov.gr/ATLAS/Atlas/Login2.aspx &lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Σε περίπτωση που είστε ανασφάλιστοι και επιθυμείτε να ασφαλιστείτε για να προβείτε σε εκτέλεση συνταγών υπάρχουν αρκετοί συχνοί λόγοι που μπορείτε να λάβετε την κατάσταση ασφαλισμένου, μερικοί από αυτούς συμπεριλαμβάνουν:&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
* Για φοιτητά και άτομα που αποφοίτησαν &amp;lt; 2 χρόνια νωρίτερα από την σημερινή, έμμεσα μέσω ασφαλισμένου γονέα. Η ανανέωση της κατάστασης ασφάλισης γίνεται κάθε 6 μήνες στον ΕΦΚΑ και συνήθως απαιτείται απλά ο ΑΜΚΑ των εξαρτώμενων μελών και πρόσφατη βεβαίωση σπουδών / απονομή σπουδών.&lt;br /&gt;
* Εργασία ως ιδιωτικό/δημόσιο υπάλληλο (μερική ή πλήρης).&lt;br /&gt;
* Αν είστε συνταξιούχα (αυτό περιλαμβάνει σύνταξη χηρείας και ορφανού).&lt;br /&gt;
* Αυτασφάλιση για ελεύθερα επαγγελματία/ αυτοαπασχολούμενα.&lt;br /&gt;
* Είστε μακροχρόνια άνεργο ή λαμβάνετε ταμείο ανεργίας.&lt;br /&gt;
* Μέσω του συζύγου σας.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Δεν γνωρίζετε σε ποιον ΕΦΚΑ να απευθυνθείτε για θέματα ασφάλισης;&#039;&#039;&#039; &lt;br /&gt;
&lt;br /&gt;
Χρησιμοποιήστε την εξής εφαρμογή του ΕΦΚΑ για να βρείτε που ανήκετε μόνο με χρήση ταχυδρομικού κώδικα (ΤΚ) και περιφέρειας: https://www.efka.gov.gr/mathepouanikeis.php&lt;br /&gt;
&lt;br /&gt;
== Cost ==&lt;br /&gt;
Συνταγογραφημένες εξετάσεις μπορούν να πραγματοποιηθούν σε οποιαδήποτε δημόσια δομή (π.χ τμήμα αιματολογικών Νοσοκομείου ή Κέντρο Υγείας) &#039;&#039;&#039;δωρεάν&#039;&#039;&#039;.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Μη συνταγογραφημένες εξετάσεις (DIY)&#039;&#039;&#039; καθώς και &#039;&#039;&#039;συνταγογραφημένες εξετάσεις&#039;&#039;&#039; μπορούν να πραγματοποιηθούν σε &#039;&#039;&#039;ιδιωτικές δομές (κέντρα αιματολογικών εξετάσεων) με μερική κάλυψη από τον ΕΟΠΥΥ όταν υπάρχει συνταγή&#039;&#039;&#039;. Το θετικό των ιδιωτικών κέντρων είναι συνήθως η αυξημένη μέριμνα του ασθενή και η ταχύτερη έκδοση αποτελεσμάτων (συνήθως γίνεται αυθημερόν ενώ στα δημόσια παίρνει 10+ μέρες).&lt;br /&gt;
&lt;br /&gt;
Άρα για ανακεφαλαίωση, στα δημόσια εκτελούμε συνταγές ΕΟΠΥΥ &#039;&#039;&#039;χωρίς κόστος, όμως με καθυστερήσεις&#039;&#039;&#039;. Σε κάθε περίπτωση, με κάποιο κόστος, με συνταγή ή χωρίς, μπορούμε επίσης να εκτελέσουμε &#039;&#039;&#039;εξετάσεις και συνταγές ΕΟΠΥΥ σε ιδιωτικές δομές&#039;&#039;&#039;.&lt;br /&gt;
&lt;br /&gt;
Για Transfem άτομα, σε περίπτωση που κάνουμε DIY εξετάσεις (χωρίς συνταγή ΕΟΠΥΥ) το κόστος είναι σχετικά υψηλό, με αποτέλεσμα να εξετάζουμε κυρίως:&lt;br /&gt;
&lt;br /&gt;
- Testosterone - Ολική τεστοστερόνη (T)&lt;br /&gt;
&lt;br /&gt;
- Estradiol - Οιστραδιόλη (Ε2)&lt;br /&gt;
&lt;br /&gt;
- Dihydrotestosterone - Διυδροτεστοστερόνη (DHT - Σε περίπτωση που μας ενδιαφέρει ή σε περίπτωση που παίρνουμε Progesterone - Προγεστερόνη)&lt;br /&gt;
&lt;br /&gt;
- Prolactine - Προλακτίνη (PRL - Σε περίπτωση που λαμβάνουμε κυπροτερόνη - CPA).&lt;br /&gt;
&lt;br /&gt;
Η εξέταση χωρίς συνταγή ΕΟΠΥΥ για Τ+Ε2+DHT είναι στο range &#039;&#039;&#039;30-55€ στις μεγάλες πόλεις&#039;&#039;&#039;.&lt;br /&gt;
&lt;br /&gt;
Σε γενικές γραμμές, τα έξοδα ενός ασφαλισμένου - ακόμα και αν πραγματοποιήσει εξετάσεις σε ιδιωτική δομή - είναι αρκετά μειωμένα, εφόσον υπάρχει συνταγή ΕΟΠΥΥ.&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|+Κόστος Εξετάσεων Ασφαλισμένου σε Ιδιωτική Δομή με συνταγή ΕΟΠΥΥ&lt;br /&gt;
!Εξέταση&lt;br /&gt;
!Συμμετοχή Ασφαλισμένου&lt;br /&gt;
!Δαπάνες ΕΟΠΥΥ&lt;br /&gt;
!Σημειώσεις&lt;br /&gt;
|-&lt;br /&gt;
|Testosterone - Τεστοστερόνη (Τ)&lt;br /&gt;
|2,47€&lt;br /&gt;
|7,58€&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|Serum Estradiol - Οιστραδιόλη (Ε2)&lt;br /&gt;
|1,86€&lt;br /&gt;
|6,36€&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|Γενική Εξέταση Αίματος&lt;br /&gt;
|0,43€&lt;br /&gt;
|1,69€&lt;br /&gt;
|Χρήσιμη, προσοχή σε false positives για αναιμία σε MtF άτομα.&lt;br /&gt;
|-&lt;br /&gt;
|Prolactine - Προλακτίνη (PRL)&lt;br /&gt;
|1,86€&lt;br /&gt;
|6,01€&lt;br /&gt;
|Ιδιαίτερα χρήσιμη σε άτομα που λαμβάνουν Κυπροτερόνη - CPA.&lt;br /&gt;
|-&lt;br /&gt;
|Luteinizing Hormone - Ωχρινοτρόπος Ορμόνη (LH)&lt;br /&gt;
|1,62€&lt;br /&gt;
|8,36€&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|Sex Hormone Binding Globulin - Δεσμευτική Σφαιρίνη των Ορμονών του Φύλου (SHBG)&lt;br /&gt;
|? - Χαμηλό&lt;br /&gt;
|7,16€&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|Thyroid-Stimulating Hormone - Θυρεοτρόπος Ορμόνη (TSH)&lt;br /&gt;
|1,86€&lt;br /&gt;
|12,38€&lt;br /&gt;
|Για άτομα με προδιάθεση θυροειδή, καλή γενική εξέταση &lt;br /&gt;
|-&lt;br /&gt;
|Free Thyroxine - Ελεύθερη Θυροξίνη (FT4)&lt;br /&gt;
|3,08€&lt;br /&gt;
|4,88€&lt;br /&gt;
|Για άτομα με προδιάθεση θυροειδή, καλή γενική εξέταση &lt;br /&gt;
|-&lt;br /&gt;
|Follicle-Stimulating Hormone - Θυλακιοτρόπος Ορμόνη (FSH)&lt;br /&gt;
|1,62€&lt;br /&gt;
|5,26€&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|Pottasium - Κάλιο (K-Pottasium)&lt;br /&gt;
|0,78€&lt;br /&gt;
|1,71€&lt;br /&gt;
|Ιδιαίτερα χρήσιμη για άτομα που λαμβάνουν Σπιρονολακτόνη - Spironolactone&lt;br /&gt;
|-&lt;br /&gt;
|Alanine Aminotransferase - Πυροσταφυλική Τρανσαμινάση (ALT/SGPT)&lt;br /&gt;
|? - Χαμηλό&lt;br /&gt;
|1,34€&lt;br /&gt;
|Ιδιαίτερα χρήσιμη για άτομα που λαμβάνουν Βικαλουταμίδη - Bicalutamide&lt;br /&gt;
|-&lt;br /&gt;
|Aspartate Aminotransferase - Οξαλοξεϊκή Τρανσαμινάση (AST/SGOT)&lt;br /&gt;
|? - Χαμηλό&lt;br /&gt;
|1,34€&lt;br /&gt;
|Ιδιαίτερα χρήσιμη για άτομα που λαμβάνουν Βικαλουταμίδη - Bicalutamide&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== Transfem ==&lt;br /&gt;
Τα πιο σημαντικά επίπεδα για καταμέτρηση είναι Τεστοστερόνη (T) και Οιστραδιόλη (E2).&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|+&lt;br /&gt;
!Εξέταση&lt;br /&gt;
!Αποδεκτές Τιμές&lt;br /&gt;
!Σημειώσεις&lt;br /&gt;
|-&lt;br /&gt;
|Estradiol - Οιστραδιόλη (E2)&lt;br /&gt;
|100-200 pg/mL ή 450-700 pmol/L αν λαμβάνονται [[HRT#Anti-androgens and GNRH Agonists|αντιανδρογόνα]]&lt;br /&gt;
&amp;gt;300 pg/mL ή &amp;gt;1100 pmol/L σε [[HRT#Μονοθεραπεία|μονοθεραπεία]]&lt;br /&gt;
|Για [[HRT#Μονοθεραπεία|μονοθεραπεία]] οι αποδεκτές τιμές εξαρτώνται από το αν έχει επιτευχθεί σωστή καταστολή της τεστοστερόνης. Οι τιμές είναι ενδικτεικές και μπορούν να διαφέρουν κατά πολύ από άτομο σε άτομο.&lt;br /&gt;
|-&lt;br /&gt;
|Testosterone - Τεστοστερόνη (T)&lt;br /&gt;
|15-50 ng/dL&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|Dihydrotestosterone - Διυδροτεστοστερόνη (DHT)&lt;br /&gt;
|&amp;lt;10 ng/dL&lt;br /&gt;
|Οι αποδεκτές τιμές είναι ισχυρισμός του Dr. Will Powers. Η DHT μπορεί να προκαλέσει ανδροποίηση ακόμη και αν η τεστοστερόνη είναι μέσα στις αποδεκτές τιμές. TODO: Write available actions when DHT is high.&lt;br /&gt;
|-&lt;br /&gt;
|Prolactine - Προλακτίνη (PRL)&lt;br /&gt;
|2-29 ng/mL (TODO: Check if higher levels are acceptable)&lt;br /&gt;
|Σημαντική εξέταση αν χορηγείται [[HRT#Αντιανδρογόνα και GNRH ανταγωνιστές|κυπροτερόνη]]  για την πρόληψη [[wikipedia:Prolactinoma|προλακτινώματος]].&lt;br /&gt;
|-&lt;br /&gt;
|Progesterone - Προγεστερόνη (P4)&lt;br /&gt;
|5-10 ng/mL&lt;br /&gt;
|Αν δεν χορηγείται [[HRT#Αντιανδρογόνα και GNRH ανταγωνιστές|προγεστερόνη]] η εξέταση δεν είναι σημαντική.&lt;br /&gt;
|-&lt;br /&gt;
|Sex Hormone Binding Globulin - Φυλοσύνδετη Σφαιρίνη ή Δεσμευτική Σφαιρίνη των Ορμονών του Φύλου (SHBG)&lt;br /&gt;
|14.60-110 nmol/L&lt;br /&gt;
|Επιρρεάζει την ελεύθερη οιστραδιόλη. Χαμηλότερα επίπεδα SHBG αυξάνουν την ελεύθερη οιστραδιόλη.&amp;lt;ref name=&amp;quot;:0&amp;quot;&amp;gt;https://www.sciencedirect.com/science/article/abs/pii/S0039128X14001986&amp;lt;/ref&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|Thyroid Stimulating Hormone - Θυρεοειδοτρόπος Ορμόνη (TSH)&lt;br /&gt;
|0.27-5 μIU/mL&lt;br /&gt;
|Σημαντική εξέταση αν υπάρχει ιστορικό στην οικογένεια για θέματα με τον θυροειδή. Άτομα με θυληκές ορμόνες έχουν παραπάνω πιθανότητες να τα αναπτύξουν.&lt;br /&gt;
|-&lt;br /&gt;
|Free Estradiol - Ελεύθερη Οιστραδιόλη&lt;br /&gt;
|&amp;gt;1,5% της Ε2&lt;br /&gt;
|Η διαθέσιμη οιστραδιόλη για να δεσμευτεί από τους υποδοχείς (προκαλεί τη θυληκοποίηση). Η SHBG και η τεστοστερόνη επιρρεάζουν την τιμή. Μπορεί και να υπολογιστεί με μαθηματικό τύπο.&amp;lt;ref name=&amp;quot;:0&amp;quot; /&amp;gt;&amp;lt;ref&amp;gt;https://aacrjournals.org/cebp/article/11/10/1065/166164/Validity-of-Free-Testosterone-and-Free-Estradiol&amp;lt;/ref&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|Estrone - Οιστρόνη (E1)&lt;br /&gt;
|Το 1/3 της Ε2&lt;br /&gt;
|Οι αποδεκτές τιμές είναι ισχυρισμός του Dr. Will Powers και σύμφωνα με αυτόν η σωστή αναλογία συμβάλει στην ανάπτυξη στήθους για ορισμένα άτομα. TODO: Find which cases.&lt;br /&gt;
|-&lt;br /&gt;
|Follicle-Stimulating Hormone - Θυλακιοτρόπος Ορμόνη (FSH)&lt;br /&gt;
|TODO&lt;br /&gt;
|TODO&lt;br /&gt;
|-&lt;br /&gt;
|Luteinizing Hormone - Ωχρινοτρόπος Ορμόνη (LH)&lt;br /&gt;
|TODO&lt;br /&gt;
|TODO&lt;br /&gt;
|-&lt;br /&gt;
|Dehydroepiandrosterone - Δεϋδροεπιανδροστερόνη (DHEA)&lt;br /&gt;
|TODO&lt;br /&gt;
|TODO: Find the case which this blood test is relevant.&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== Transmasc ==&lt;br /&gt;
&lt;br /&gt;
== Πηγές ==&lt;br /&gt;
&amp;lt;references /&amp;gt;&lt;/div&gt;</summary>
		<author><name>Goblinmoder</name></author>
	</entry>
	<entry>
		<id>https://wiki.diyon.top/index.php?title=Main_Page/el&amp;diff=987</id>
		<title>Main Page/el</title>
		<link rel="alternate" type="text/html" href="https://wiki.diyon.top/index.php?title=Main_Page/el&amp;diff=987"/>
		<updated>2025-04-11T20:10:59Z</updated>

		<summary type="html">&lt;p&gt;Goblinmoder: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{#seo:|title=Main Page}}&lt;br /&gt;
{{#seo:|description=A general purpose greek-based, unbiased, trans wiki for everyone.}}&lt;br /&gt;
&lt;br /&gt;
&amp;lt;languages/&amp;gt;&lt;br /&gt;
Out with the old and in with the new, the wiki is alive again.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;span id=&amp;quot;Page_Catalog:&amp;quot;&amp;gt;&amp;lt;/span&amp;gt;&lt;br /&gt;
==== Κατάλογος: ====&lt;br /&gt;
&lt;br /&gt;
* [[HRT/el|Ορμονοθεραπεία]]&lt;br /&gt;
* [[Quick Guide|Ταχυ-οδηγός]]&lt;br /&gt;
* [[Doctors|Γιατροί]]&lt;br /&gt;
* [https://diyon.top/map Φαρμακεία]&lt;br /&gt;
* [[Εκτελωνισμός|Εκτελωνισμός]]&lt;br /&gt;
* [[Blood Testing/el|Εξετάσεις Αίματος]]&lt;br /&gt;
* [[Legal|Νομικά Θέματα]]&lt;br /&gt;
* [[Army|Στρατός]]&lt;br /&gt;
* [[Donate|Δωρεές]]&lt;br /&gt;
* [[About|Σχετικά]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Θερμή παράκληση να μην μοιράζεστε αυτό το site με cis άτομα, εκτός αν όντως το σκέφτονται. Αν θέλετε να συμμετάσχετε, ή για σχόλια σχετικά με την ιστοσελίδα, ερωτήσεις, ή για να αναφέρετε θετικές/αρνητικές εμπειρίες με γιατρούς/καταστήματα/κλπ, επικοινωνήστε μαζί μας στο &#039;&#039;&#039;fox@diyon.top&#039;&#039;&#039;&lt;/div&gt;</summary>
		<author><name>Goblinmoder</name></author>
	</entry>
	<entry>
		<id>https://wiki.diyon.top/index.php?title=Translations:Main_Page/1/el&amp;diff=986</id>
		<title>Translations:Main Page/1/el</title>
		<link rel="alternate" type="text/html" href="https://wiki.diyon.top/index.php?title=Translations:Main_Page/1/el&amp;diff=986"/>
		<updated>2025-04-11T20:10:52Z</updated>

		<summary type="html">&lt;p&gt;Goblinmoder: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Out with the old and in with the new, the wiki is alive again.&lt;/div&gt;</summary>
		<author><name>Goblinmoder</name></author>
	</entry>
	<entry>
		<id>https://wiki.diyon.top/index.php?title=Blood_Testing&amp;diff=982</id>
		<title>Blood Testing</title>
		<link rel="alternate" type="text/html" href="https://wiki.diyon.top/index.php?title=Blood_Testing&amp;diff=982"/>
		<updated>2025-04-11T20:03:57Z</updated>

		<summary type="html">&lt;p&gt;Goblinmoder: removed translations&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{#seo:|title=Blood Testing|title_mode=replace}}&lt;br /&gt;
== Insurance ==&lt;br /&gt;
Οι εξετάσεις που πραγματοποιούνται σε δημόσιες δομές (Κέντρα Υγείας - ΚΥ / Νοσοκομεία) &#039;&#039;&#039;είναι δωρεάν για όλα&#039;&#039;&#039;.&lt;br /&gt;
&lt;br /&gt;
Από 01/07/2022 βάσει &#039;&#039;&#039;άρθρου 38 του ν.4865/2021 και Υ.Α (υπουργικής απόφασης) 30268/30-05-2022&#039;&#039;&#039; οι &#039;&#039;&#039;ανασφάλιστα πολιτά&#039;&#039;&#039; δεν μπορούν να λάβουν &#039;&#039;&#039;συνταγές ΕΟΠΥΥ από ιδιώτες γιατρούς&#039;&#039;&#039;. Το οποίο πρακτικά σημαίνει πως αν είμαστε ανασφάλιστα, τότε είναι πρακτικό αδύνατο να εξυπηρετηθούμε από ιδιώτες.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Θέλετε να μάθετε περισσότερες πληροφορίες για την κατάσταση ασφάλισης σας όπως το αν είστε ασφαλισμένο και για ποιο χρονικό διάστημα;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Αναφερθείτε στις e-υπηρεσίες του ATLAS στον εξής σύνδεσμο με χρήση κωδικών taxisnet και ΑΜΚΑ ή στοιχείων eIDAS (who uses that anyways): https://www.atlas.gov.gr/ATLAS/Atlas/Login2.aspx &lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Σε περίπτωση που είστε ανασφάλιστοι και επιθυμείτε να ασφαλιστείτε για να προβείτε σε εκτέλεση συνταγών υπάρχουν αρκετοί συχνοί λόγοι που μπορείτε να λάβετε την κατάσταση ασφαλισμένου, μερικοί από αυτούς συμπεριλαμβάνουν:&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
* Για φοιτητά και άτομα που αποφοίτησαν &amp;lt; 2 χρόνια νωρίτερα από την σημερινή, έμμεσα μέσω ασφαλισμένου γονέα. Η ανανέωση της κατάστασης ασφάλισης γίνεται κάθε 6 μήνες στον ΕΦΚΑ και συνήθως απαιτείται απλά ο ΑΜΚΑ των εξαρτώμενων μελών και πρόσφατη βεβαίωση σπουδών / απονομή σπουδών.&lt;br /&gt;
* Εργασία ως ιδιωτικό/δημόσιο υπάλληλο (μερική ή πλήρης).&lt;br /&gt;
* Αν είστε συνταξιούχα (αυτό περιλαμβάνει σύνταξη χηρείας και ορφανού).&lt;br /&gt;
* Αυτασφάλιση για ελεύθερα επαγγελματί@/ αυτοαπασχολούμενα.&lt;br /&gt;
* Είστε μακροχρόνια άνεργο ή λαμβάνετε ταμείο ανεργίας.&lt;br /&gt;
* Μέσω του συζύγου σας.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Δεν γνωρίζετε σε ποιον ΕΦΚΑ να απευθυνθείτε για θέματα ασφάλισης;&#039;&#039;&#039; &lt;br /&gt;
&lt;br /&gt;
Χρησιμοποιήστε την εξής εφαρμογή του ΕΦΚΑ για να βρείτε που ανήκετε μόνο με χρήση ταχυδρομικού κώδικα (ΤΚ) και περιφέρειας: https://www.efka.gov.gr/mathepouanikeis.php&lt;br /&gt;
&lt;br /&gt;
== Cost ==&lt;br /&gt;
Συνταγογραφημένες εξετάσεις μπορούν να πραγματοποιηθούν σε οποιαδήποτε δημόσια δομή (π.χ τμήμα αιματολογικών Νοσοκομείου ή Κέντρο Υγείας) &#039;&#039;&#039;δωρεάν&#039;&#039;&#039;.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Μη συνταγογραφημένες εξετάσεις (DIY)&#039;&#039;&#039; καθώς και &#039;&#039;&#039;συνταγογραφημένες εξετάσεις&#039;&#039;&#039; μπορούν να πραγματοποιηθούν σε &#039;&#039;&#039;ιδιωτικές δομές (κέντρα αιματολογικών εξετάσεων) με μερική κάλυψη από τον ΕΟΠΥΥ όταν υπάρχει συνταγή&#039;&#039;&#039;. Το θετικό των ιδιωτικών κέντρων είναι συνήθως η αυξημένη μέριμνα του ασθενή και η ταχύτερη έκδοση αποτελεσμάτων (συνήθως γίνεται αυθημερόν ενώ στα δημόσια παίρνει 10+ μέρες).&lt;br /&gt;
&lt;br /&gt;
Άρα για ανακεφαλαίωση, στα δημόσια εκτελούμε συνταγές ΕΟΠΥΥ &#039;&#039;&#039;χωρίς κόστος, όμως με καθυστερήσεις&#039;&#039;&#039;. Σε κάθε περίπτωση, με κάποιο κόστος, με συνταγή ή χωρίς, μπορούμε επίσης να εκτελέσουμε &#039;&#039;&#039;εξετάσεις και συνταγές ΕΟΠΥΥ σε ιδιωτικές δομές&#039;&#039;&#039;.&lt;br /&gt;
&lt;br /&gt;
Για Transfem άτομα, σε περίπτωση που κάνουμε DIY εξετάσεις (χωρίς συνταγή ΕΟΠΥΥ) το κόστος είναι σχετικά υψηλό, με αποτέλεσμα να εξετάζουμε κυρίως:&lt;br /&gt;
&lt;br /&gt;
- Testosterone - Ολική τεστοστερόνη (T)&lt;br /&gt;
&lt;br /&gt;
- Estradiol - Οιστραδιόλη (Ε2)&lt;br /&gt;
&lt;br /&gt;
- Dihydrotestosterone - Διυδροτεστοστερόνη (DHT - Σε περίπτωση που μας ενδιαφέρει ή σε περίπτωση που παίρνουμε Progesterone - Προγεστερόνη)&lt;br /&gt;
&lt;br /&gt;
- Prolactine - Προλακτίνη (PRL - Σε περίπτωση που λαμβάνουμε κυπροτερόνη - CPA).&lt;br /&gt;
&lt;br /&gt;
Η εξέταση χωρίς συνταγή ΕΟΠΥΥ για Τ+Ε2+DHT είναι στο range &#039;&#039;&#039;30-55€ στις μεγάλες πόλεις&#039;&#039;&#039;.&lt;br /&gt;
&lt;br /&gt;
Σε γενικές γραμμές, τα έξοδα ενός ασφαλισμένου - ακόμα και αν πραγματοποιήσει εξετάσεις σε ιδιωτική δομή - είναι αρκετά μειωμένα, εφόσον υπάρχει συνταγή ΕΟΠΥΥ.&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|+Κόστος Εξετάσεων Ασφαλισμένου σε Ιδιωτική Δομή με συνταγή ΕΟΠΥΥ&lt;br /&gt;
!Εξέταση&lt;br /&gt;
!Συμμετοχή Ασφαλισμένου&lt;br /&gt;
!Δαπάνες ΕΟΠΥΥ&lt;br /&gt;
!Σημειώσεις&lt;br /&gt;
|-&lt;br /&gt;
|Testosterone - Τεστοστερόνη (Τ)&lt;br /&gt;
|2,47€&lt;br /&gt;
|7,58€&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|Serum Estradiol - Οιστραδιόλη (Ε2)&lt;br /&gt;
|1,86€&lt;br /&gt;
|6,36€&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|Γενική Εξέταση Αίματος&lt;br /&gt;
|0,43€&lt;br /&gt;
|1,69€&lt;br /&gt;
|Χρήσιμη, προσοχή σε false positives για αναιμία σε MtF άτομα.&lt;br /&gt;
|-&lt;br /&gt;
|Prolactine - Προλακτίνη (PRL)&lt;br /&gt;
|1,86€&lt;br /&gt;
|6,01€&lt;br /&gt;
|Ιδιαίτερα χρήσιμη σε άτομα που λαμβάνουν Κυπροτερόνη - CPA.&lt;br /&gt;
|-&lt;br /&gt;
|Luteinizing Hormone - Ωχρινοτρόπος Ορμόνη (LH)&lt;br /&gt;
|1,62€&lt;br /&gt;
|8,36€&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|Sex Hormone Binding Globulin - Δεσμευτική Σφαιρίνη των Ορμονών του Φύλου (SHBG)&lt;br /&gt;
|? - Χαμηλό&lt;br /&gt;
|7,16€&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|Thyroid-Stimulating Hormone - Θυρεοτρόπος Ορμόνη (TSH)&lt;br /&gt;
|1,86€&lt;br /&gt;
|12,38€&lt;br /&gt;
|Για άτομα με προδιάθεση θυροειδή, καλή γενική εξέταση &lt;br /&gt;
|-&lt;br /&gt;
|Free Thyroxine - Ελεύθερη Θυροξίνη (FT4)&lt;br /&gt;
|3,08€&lt;br /&gt;
|4,88€&lt;br /&gt;
|Για άτομα με προδιάθεση θυροειδή, καλή γενική εξέταση &lt;br /&gt;
|-&lt;br /&gt;
|Follicle-Stimulating Hormone - Θυλακιοτρόπος Ορμόνη (FSH)&lt;br /&gt;
|1,62€&lt;br /&gt;
|5,26€&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|Pottasium - Κάλιο (K-Pottasium)&lt;br /&gt;
|0,78€&lt;br /&gt;
|1,71€&lt;br /&gt;
|Ιδιαίτερα χρήσιμη για άτομα που λαμβάνουν Σπιρονολακτόνη - Spironolactone&lt;br /&gt;
|-&lt;br /&gt;
|Alanine Aminotransferase - Πυροσταφυλική Τρανσαμινάση (ALT/SGPT)&lt;br /&gt;
|? - Χαμηλό&lt;br /&gt;
|1,34€&lt;br /&gt;
|Ιδιαίτερα χρήσιμη για άτομα που λαμβάνουν Βικαλουταμίδη - Bicalutamide&lt;br /&gt;
|-&lt;br /&gt;
|Aspartate Aminotransferase - Οξαλοξεϊκή Τρανσαμινάση (AST/SGOT)&lt;br /&gt;
|? - Χαμηλό&lt;br /&gt;
|1,34€&lt;br /&gt;
|Ιδιαίτερα χρήσιμη για άτομα που λαμβάνουν Βικαλουταμίδη - Bicalutamide&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== Transfem ==&lt;br /&gt;
Τα πιο σημαντικά επίπεδα για καταμέτρηση είναι Τεστοστερόνη (T) και Οιστραδιόλη (E2).&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|+&lt;br /&gt;
!Εξέταση&lt;br /&gt;
!Αποδεκτές Τιμές&lt;br /&gt;
!Σημειώσεις&lt;br /&gt;
|-&lt;br /&gt;
|Estradiol - Οιστραδιόλη (E2)&lt;br /&gt;
|100-200 pg/mL ή 450-700 pmol/L αν λαμβάνονται [[HRT#Anti-androgens and GNRH Agonists|αντιανδρογόνα]]&lt;br /&gt;
&amp;gt;300 pg/mL ή &amp;gt;1100 pmol/L σε [[HRT#Μονοθεραπεία|μονοθεραπεία]]&lt;br /&gt;
|Για [[HRT#Μονοθεραπεία|μονοθεραπεία]] οι αποδεκτές τιμές εξαρτώνται από το αν έχει επιτευχθεί σωστή καταστολή της τεστοστερόνης. Οι τιμές είναι ενδικτεικές και μπορούν να διαφέρουν κατά πολύ από άτομο σε άτομο.&lt;br /&gt;
|-&lt;br /&gt;
|Testosterone - Τεστοστερόνη (T)&lt;br /&gt;
|15-50 ng/dL&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|Dihydrotestosterone - Διυδροτεστοστερόνη (DHT)&lt;br /&gt;
|&amp;lt;10 ng/dL&lt;br /&gt;
|Οι αποδεκτές τιμές είναι ισχυρισμός του Dr. Will Powers. Η DHT μπορεί να προκαλέσει ανδροποίηση ακόμη και αν η τεστοστερόνη είναι μέσα στις αποδεκτές τιμές. TODO: Write available actions when DHT is high.&lt;br /&gt;
|-&lt;br /&gt;
|Prolactine - Προλακτίνη (PRL)&lt;br /&gt;
|2-29 ng/mL (TODO: Check if higher levels are acceptable)&lt;br /&gt;
|Σημαντική εξέταση αν χορηγείται [[HRT#Αντιανδρογόνα και GNRH ανταγωνιστές|κυπροτερόνη]]  για την πρόληψη [[wikipedia:Prolactinoma|προλακτινώματος]].&lt;br /&gt;
|-&lt;br /&gt;
|Progesterone - Προγεστερόνη (P4)&lt;br /&gt;
|5-10 ng/mL&lt;br /&gt;
|Αν δεν χορηγείται [[HRT#Αντιανδρογόνα και GNRH ανταγωνιστές|προγεστερόνη]] η εξέταση δεν είναι σημαντική.&lt;br /&gt;
|-&lt;br /&gt;
|Sex Hormone Binding Globulin - Φυλοσύνδετη Σφαιρίνη ή Δεσμευτική Σφαιρίνη των Ορμονών του Φύλου (SHBG)&lt;br /&gt;
|14.60-110 nmol/L&lt;br /&gt;
|Επιρρεάζει την ελεύθερη οιστραδιόλη. Χαμηλότερα επίπεδα SHBG αυξάνουν την ελεύθερη οιστραδιόλη.&amp;lt;ref name=&amp;quot;:0&amp;quot;&amp;gt;https://www.sciencedirect.com/science/article/abs/pii/S0039128X14001986&amp;lt;/ref&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|Thyroid Stimulating Hormone - Θυρεοειδοτρόπος Ορμόνη (TSH)&lt;br /&gt;
|0.27-5 μIU/mL&lt;br /&gt;
|Σημαντική εξέταση αν υπάρχει ιστορικό στην οικογένεια για θέματα με τον θυροειδή. Άτομα με θυληκές ορμόνες έχουν παραπάνω πιθανότητες να τα αναπτύξουν.&lt;br /&gt;
|-&lt;br /&gt;
|Free Estradiol - Ελεύθερη Οιστραδιόλη&lt;br /&gt;
|&amp;gt;1,5% της Ε2&lt;br /&gt;
|Η διαθέσιμη οιστραδιόλη για να δεσμευτεί από τους υποδοχείς (προκαλεί τη θυληκοποίηση). Η SHBG και η τεστοστερόνη επιρρεάζουν την τιμή. Μπορεί και να υπολογιστεί με μαθηματικό τύπο.&amp;lt;ref name=&amp;quot;:0&amp;quot; /&amp;gt;&amp;lt;ref&amp;gt;https://aacrjournals.org/cebp/article/11/10/1065/166164/Validity-of-Free-Testosterone-and-Free-Estradiol&amp;lt;/ref&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|Estrone - Οιστρόνη (E1)&lt;br /&gt;
|Το 1/3 της Ε2&lt;br /&gt;
|Οι αποδεκτές τιμές είναι ισχυρισμός του Dr. Will Powers και σύμφωνα με αυτόν η σωστή αναλογία συμβάλει στην ανάπτυξη στήθους για ορισμένα άτομα. TODO: Find which cases.&lt;br /&gt;
|-&lt;br /&gt;
|Follicle-Stimulating Hormone - Θυλακιοτρόπος Ορμόνη (FSH)&lt;br /&gt;
|TODO&lt;br /&gt;
|TODO&lt;br /&gt;
|-&lt;br /&gt;
|Luteinizing Hormone - Ωχρινοτρόπος Ορμόνη (LH)&lt;br /&gt;
|TODO&lt;br /&gt;
|TODO&lt;br /&gt;
|-&lt;br /&gt;
|Dehydroepiandrosterone - Δεϋδροεπιανδροστερόνη (DHEA)&lt;br /&gt;
|TODO&lt;br /&gt;
|TODO: Find the case which this blood test is relevant.&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== Transmasc ==&lt;br /&gt;
&lt;br /&gt;
== Πηγές ==&lt;br /&gt;
&amp;lt;references /&amp;gt;&lt;/div&gt;</summary>
		<author><name>Goblinmoder</name></author>
	</entry>
	<entry>
		<id>https://wiki.diyon.top/index.php?title=Blood_Testing&amp;diff=981</id>
		<title>Blood Testing</title>
		<link rel="alternate" type="text/html" href="https://wiki.diyon.top/index.php?title=Blood_Testing&amp;diff=981"/>
		<updated>2025-04-11T17:59:17Z</updated>

		<summary type="html">&lt;p&gt;Goblinmoder: /* Insurance */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{#seo:|title=Blood Testing|title_mode=replace}}&lt;br /&gt;
&lt;br /&gt;
&amp;lt;languages/&amp;gt;&lt;br /&gt;
&amp;lt;translate&amp;gt;&lt;br /&gt;
&amp;lt;!--T:1--&amp;gt;&lt;br /&gt;
== Insurance ==&lt;br /&gt;
Οι εξετάσεις που πραγματοποιούνται σε δημόσιες δομές (Κέντρα Υγείας - ΚΥ / Νοσοκομεία) &#039;&#039;&#039;είναι δωρεάν για όλα&#039;&#039;&#039;.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--T:2--&amp;gt;&lt;br /&gt;
Από 01/07/2022 βάσει &#039;&#039;&#039;άρθρου 38 του ν.4865/2021 και Υ.Α (υπουργικής απόφασης) 30268/30-05-2022&#039;&#039;&#039; οι &#039;&#039;&#039;ανασφάλιστα πολιτά&#039;&#039;&#039; δεν μπορούν να λάβουν &#039;&#039;&#039;συνταγές ΕΟΠΥΥ από ιδιώτες γιατρούς&#039;&#039;&#039;. Το οποίο πρακτικά σημαίνει πως αν είμαστε ανασφάλιστα, τότε είναι πρακτικό αδύνατο να εξυπηρετηθούμε από ιδιώτες.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--T:3--&amp;gt;&lt;br /&gt;
&#039;&#039;&#039;Θέλετε να μάθετε περισσότερες πληροφορίες για την κατάσταση ασφάλισης σας όπως το αν είστε ασφαλισμένο και για ποιο χρονικό διάστημα;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--T:4--&amp;gt;&lt;br /&gt;
Αναφερθείτε στις e-υπηρεσίες του ATLAS στον εξής σύνδεσμο με χρήση κωδικών taxisnet και ΑΜΚΑ ή στοιχείων eIDAS (who uses that anyways): https://www.atlas.gov.gr/ATLAS/Atlas/Login2.aspx &lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--T:5--&amp;gt;&lt;br /&gt;
&#039;&#039;&#039;Σε περίπτωση που είστε ανασφάλιστοι και επιθυμείτε να ασφαλιστείτε για να προβείτε σε εκτέλεση συνταγών υπάρχουν αρκετοί συχνοί λόγοι που μπορείτε να λάβετε την κατάσταση ασφαλισμένου, μερικοί από αυτούς συμπεριλαμβάνουν:&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--T:6--&amp;gt;&lt;br /&gt;
* Για φοιτητά και άτομα που αποφοίτησαν &amp;lt; 2 χρόνια νωρίτερα από την σημερινή, έμμεσα μέσω ασφαλισμένου γονέα. Η ανανέωση της κατάστασης ασφάλισης γίνεται κάθε 6 μήνες στον ΕΦΚΑ και συνήθως απαιτείται απλά ο ΑΜΚΑ των εξαρτώμενων μελών και πρόσφατη βεβαίωση σπουδών / απονομή σπουδών.&lt;br /&gt;
* Εργασία ως ιδιωτικό/δημόσιο υπάλληλο (μερική ή πλήρης).&lt;br /&gt;
* Αν είστε συνταξιούχα (αυτό περιλαμβάνει σύνταξη χηρείας και ορφανού).&lt;br /&gt;
* Αυτασφάλιση για ελεύθερα επαγγελματί@/ αυτοαπασχολούμενα.&lt;br /&gt;
* Είστε μακροχρόνια άνεργο ή λαμβάνετε ταμείο ανεργίας.&lt;br /&gt;
* Μέσω του συζύγου σας.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--T:7--&amp;gt;&lt;br /&gt;
&#039;&#039;&#039;Δεν γνωρίζετε σε ποιον ΕΦΚΑ να απευθυνθείτε για θέματα ασφάλισης;&#039;&#039;&#039; &lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--T:8--&amp;gt;&lt;br /&gt;
Χρησιμοποιήστε την εξής εφαρμογή του ΕΦΚΑ για να βρείτε που ανήκετε μόνο με χρήση ταχυδρομικού κώδικα (ΤΚ) και περιφέρειας: https://www.efka.gov.gr/mathepouanikeis.php&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--T:9--&amp;gt;&lt;br /&gt;
== Cost ==&lt;br /&gt;
Συνταγογραφημένες εξετάσεις μπορούν να πραγματοποιηθούν σε οποιαδήποτε δημόσια δομή (π.χ τμήμα αιματολογικών Νοσοκομείου ή Κέντρο Υγείας) &#039;&#039;&#039;δωρεάν&#039;&#039;&#039;.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--T:10--&amp;gt;&lt;br /&gt;
&#039;&#039;&#039;Μη συνταγογραφημένες εξετάσεις (DIY)&#039;&#039;&#039; καθώς και &#039;&#039;&#039;συνταγογραφημένες εξετάσεις&#039;&#039;&#039; μπορούν να πραγματοποιηθούν σε &#039;&#039;&#039;ιδιωτικές δομές (κέντρα αιματολογικών εξετάσεων) με μερική κάλυψη από τον ΕΟΠΥΥ όταν υπάρχει συνταγή&#039;&#039;&#039;. Το θετικό των ιδιωτικών κέντρων είναι συνήθως η αυξημένη μέριμνα του ασθενή και η ταχύτερη έκδοση αποτελεσμάτων (συνήθως γίνεται αυθημερόν ενώ στα δημόσια παίρνει 10+ μέρες).&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--T:11--&amp;gt;&lt;br /&gt;
Άρα για ανακεφαλαίωση, στα δημόσια εκτελούμε συνταγές ΕΟΠΥΥ &#039;&#039;&#039;χωρίς κόστος, όμως με καθυστερήσεις&#039;&#039;&#039;. Σε κάθε περίπτωση, με κάποιο κόστος, με συνταγή ή χωρίς, μπορούμε επίσης να εκτελέσουμε &#039;&#039;&#039;εξετάσεις και συνταγές ΕΟΠΥΥ σε ιδιωτικές δομές&#039;&#039;&#039;.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--T:12--&amp;gt;&lt;br /&gt;
Για MTF άτομα, σε περίπτωση που κάνουμε DIY εξετάσεις (χωρίς συνταγή ΕΟΠΥΥ) το κόστος είναι σχετικά υψηλό, με αποτέλεσμα να εξετάζουμε κυρίως:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--T:13--&amp;gt;&lt;br /&gt;
- Testosterone - Ολική τεστοστερόνη (T)&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--T:14--&amp;gt;&lt;br /&gt;
- Estradiol - Οιστραδιόλη (Ε2)&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--T:15--&amp;gt;&lt;br /&gt;
- Dihydrotestosterone - Διυδροτεστοστερόνη (DHT - Σε περίπτωση που μας ενδιαφέρει ή σε περίπτωση που παίρνουμε Progesterone - Προγεστερόνη)&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--T:16--&amp;gt;&lt;br /&gt;
- Prolactine - Προλακτίνη (PRL - Σε περίπτωση που λαμβάνουμε κυπροτερόνη - CPA).&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--T:17--&amp;gt;&lt;br /&gt;
Η εξέταση χωρίς συνταγή ΕΟΠΥΥ για Τ+Ε2+DHT είναι στο range &#039;&#039;&#039;30-55€ στις μεγάλες πόλεις&#039;&#039;&#039;.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--T:18--&amp;gt;&lt;br /&gt;
Σε γενικές γραμμές, τα έξοδα ενός ασφαλισμένου - ακόμα και αν πραγματοποιήσει εξετάσεις σε ιδιωτική δομή - είναι αρκετά μειωμένα, εφόσον υπάρχει συνταγή ΕΟΠΥΥ.&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|+Κόστος Εξετάσεων Ασφαλισμένου σε Ιδιωτική Δομή με συνταγή ΕΟΠΥΥ&lt;br /&gt;
!Εξέταση&lt;br /&gt;
!Συμμετοχή Ασφαλισμένου&lt;br /&gt;
!Δαπάνες ΕΟΠΥΥ&lt;br /&gt;
!Σημειώσεις&lt;br /&gt;
|-&lt;br /&gt;
|Testosterone - Τεστοστερόνη (Τ)&lt;br /&gt;
|2,47€&lt;br /&gt;
|7,58€&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|Serum Estradiol - Οιστραδιόλη (Ε2)&lt;br /&gt;
|1,86€&lt;br /&gt;
|6,36€&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|Γενική Εξέταση Αίματος&lt;br /&gt;
|0,43€&lt;br /&gt;
|1,69€&lt;br /&gt;
|Χρήσιμη, προσοχή σε false positives για αναιμία σε MtF άτομα.&lt;br /&gt;
|-&lt;br /&gt;
|Prolactine - Προλακτίνη (PRL)&lt;br /&gt;
|1,86€&lt;br /&gt;
|6,01€&lt;br /&gt;
|Ιδιαίτερα χρήσιμη σε άτομα που λαμβάνουν Κυπροτερόνη - CPA.&lt;br /&gt;
|-&lt;br /&gt;
|Luteinizing Hormone - Ωχρινοτρόπος Ορμόνη (LH)&lt;br /&gt;
|1,62€&lt;br /&gt;
|8,36€&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|Sex Hormone Binding Globulin - Δεσμευτική Σφαιρίνη των Ορμονών του Φύλου (SHBG)&lt;br /&gt;
|? - Χαμηλό&lt;br /&gt;
|7,16€&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|Thyroid-Stimulating Hormone - Θυρεοτρόπος Ορμόνη (TSH)&lt;br /&gt;
|1,86€&lt;br /&gt;
|12,38€&lt;br /&gt;
|Για άτομα με προδιάθεση θυροειδή, καλή γενική εξέταση &lt;br /&gt;
|-&lt;br /&gt;
|Free Thyroxine - Ελεύθερη Θυροξίνη (FT4)&lt;br /&gt;
|3,08€&lt;br /&gt;
|4,88€&lt;br /&gt;
|Για άτομα με προδιάθεση θυροειδή, καλή γενική εξέταση &lt;br /&gt;
|-&lt;br /&gt;
|Follicle-Stimulating Hormone - Θυλακιοτρόπος Ορμόνη (FSH)&lt;br /&gt;
|1,62€&lt;br /&gt;
|5,26€&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|Pottasium - Κάλιο (K-Pottasium)&lt;br /&gt;
|0,78€&lt;br /&gt;
|1,71€&lt;br /&gt;
|Ιδιαίτερα χρήσιμη για άτομα που λαμβάνουν Σπιρονολακτόνη - Spironolactone&lt;br /&gt;
|-&lt;br /&gt;
|Alanine Aminotransferase - Πυροσταφυλική Τρανσαμινάση (ALT/SGPT)&lt;br /&gt;
|? - Χαμηλό&lt;br /&gt;
|1,34€&lt;br /&gt;
|Ιδιαίτερα χρήσιμη για άτομα που λαμβάνουν Βικαλουταμίδη - Bicalutamide&lt;br /&gt;
|-&lt;br /&gt;
|Aspartate Aminotransferase - Οξαλοξεϊκή Τρανσαμινάση (AST/SGOT)&lt;br /&gt;
|? - Χαμηλό&lt;br /&gt;
|1,34€&lt;br /&gt;
|Ιδιαίτερα χρήσιμη για άτομα που λαμβάνουν Βικαλουταμίδη - Bicalutamide&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--T:19--&amp;gt;&lt;br /&gt;
== Transfem ==&lt;br /&gt;
Τα πιο σημαντικά επίπεδα για καταμέτρηση είναι Τεστοστερόνη (T) και Οιστραδιόλη (E2).&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|+&lt;br /&gt;
!Εξέταση&lt;br /&gt;
!Αποδεκτές Τιμές&lt;br /&gt;
!Σημειώσεις&lt;br /&gt;
|-&lt;br /&gt;
|Estradiol - Οιστραδιόλη (E2)&lt;br /&gt;
|100-200 pg/mL ή 450-700 pmol/L αν λαμβάνονται [[HRT#Anti-androgens and GNRH Agonists|αντιανδρογόνα]]&lt;br /&gt;
&amp;gt;300 pg/mL ή &amp;gt;1100 pmol/L σε [[HRT#Μονοθεραπεία|μονοθεραπεία]]&lt;br /&gt;
|Για [[HRT#Μονοθεραπεία|μονοθεραπεία]] οι αποδεκτές τιμές εξαρτώνται από το αν έχει επιτευχθεί σωστή καταστολή της τεστοστερόνης. Οι τιμές είναι ενδικτεικές και μπορούν να διαφέρουν κατά πολύ από άτομο σε άτομο.&lt;br /&gt;
|-&lt;br /&gt;
|Testosterone - Τεστοστερόνη (T)&lt;br /&gt;
|15-50 ng/dL&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|Dihydrotestosterone - Διυδροτεστοστερόνη (DHT)&lt;br /&gt;
|&amp;lt;10 ng/dL&lt;br /&gt;
|Οι αποδεκτές τιμές είναι ισχυρισμός του Dr. Will Powers. Η DHT μπορεί να προκαλέσει ανδροποίηση ακόμη και αν η τεστοστερόνη είναι μέσα στις αποδεκτές τιμές. TODO: Write available actions when DHT is high.&lt;br /&gt;
|-&lt;br /&gt;
|Prolactine - Προλακτίνη (PRL)&lt;br /&gt;
|2-29 ng/mL (TODO: Check if higher levels are acceptable)&lt;br /&gt;
|Σημαντική εξέταση αν χορηγείται [[HRT#Αντιανδρογόνα και GNRH ανταγωνιστές|κυπροτερόνη]]  για την πρόληψη [[wikipedia:Prolactinoma|προλακτινώματος]].&lt;br /&gt;
|-&lt;br /&gt;
|Progesterone - Προγεστερόνη (P4)&lt;br /&gt;
|5-10 ng/mL&lt;br /&gt;
|Αν δεν χορηγείται [[HRT#Αντιανδρογόνα και GNRH ανταγωνιστές|προγεστερόνη]] η εξέταση δεν είναι σημαντική.&lt;br /&gt;
|-&lt;br /&gt;
|Sex Hormone Binding Globulin - Φυλοσύνδετη Σφαιρίνη ή Δεσμευτική Σφαιρίνη των Ορμονών του Φύλου (SHBG)&lt;br /&gt;
|14.60-110 nmol/L&lt;br /&gt;
|Επιρρεάζει την ελεύθερη οιστραδιόλη. Χαμηλότερα επίπεδα SHBG αυξάνουν την ελεύθερη οιστραδιόλη.&amp;lt;ref name=&amp;quot;:0&amp;quot;&amp;gt;https://www.sciencedirect.com/science/article/abs/pii/S0039128X14001986&amp;lt;/ref&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|Thyroid Stimulating Hormone - Θυρεοειδοτρόπος Ορμόνη (TSH)&lt;br /&gt;
|0.27-5 μIU/mL&lt;br /&gt;
|Σημαντική εξέταση αν υπάρχει ιστορικό στην οικογένεια για θέματα με τον θυροειδή. Άτομα με θυληκές ορμόνες έχουν παραπάνω πιθανότητες να τα αναπτύξουν.&lt;br /&gt;
|-&lt;br /&gt;
|Free Estradiol - Ελεύθερη Οιστραδιόλη&lt;br /&gt;
|&amp;gt;1,5% της Ε2&lt;br /&gt;
|Η διαθέσιμη οιστραδιόλη για να δεσμευτεί από τους υποδοχείς (προκαλεί τη θυληκοποίηση). Η SHBG και η τεστοστερόνη επιρρεάζουν την τιμή. Μπορεί και να υπολογιστεί με μαθηματικό τύπο.&amp;lt;ref name=&amp;quot;:0&amp;quot; /&amp;gt;&amp;lt;ref&amp;gt;https://aacrjournals.org/cebp/article/11/10/1065/166164/Validity-of-Free-Testosterone-and-Free-Estradiol&amp;lt;/ref&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|Estrone - Οιστρόνη (E1)&lt;br /&gt;
|Το 1/3 της Ε2&lt;br /&gt;
|Οι αποδεκτές τιμές είναι ισχυρισμός του Dr. Will Powers και σύμφωνα με αυτόν η σωστή αναλογία συμβάλει στην ανάπτυξη στήθους για ορισμένα άτομα. TODO: Find which cases.&lt;br /&gt;
|-&lt;br /&gt;
|Follicle-Stimulating Hormone - Θυλακιοτρόπος Ορμόνη (FSH)&lt;br /&gt;
|TODO&lt;br /&gt;
|TODO&lt;br /&gt;
|-&lt;br /&gt;
|Luteinizing Hormone - Ωχρινοτρόπος Ορμόνη (LH)&lt;br /&gt;
|TODO&lt;br /&gt;
|TODO&lt;br /&gt;
|-&lt;br /&gt;
|Dehydroepiandrosterone - Δεϋδροεπιανδροστερόνη (DHEA)&lt;br /&gt;
|TODO&lt;br /&gt;
|TODO: Find the case which this blood test is relevant.&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== Transmasc == &amp;lt;!--T:20--&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--T:21--&amp;gt;&lt;br /&gt;
== Πηγές ==&lt;br /&gt;
&amp;lt;references /&amp;gt;&lt;br /&gt;
&amp;lt;/translate&amp;gt;&lt;/div&gt;</summary>
		<author><name>Goblinmoder</name></author>
	</entry>
	<entry>
		<id>https://wiki.diyon.top/index.php?title=Legal&amp;diff=980</id>
		<title>Legal</title>
		<link rel="alternate" type="text/html" href="https://wiki.diyon.top/index.php?title=Legal&amp;diff=980"/>
		<updated>2025-04-11T17:41:44Z</updated>

		<summary type="html">&lt;p&gt;Goblinmoder: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{#seo:&lt;br /&gt;
|title=Legal&lt;br /&gt;
|title_mode=replace&lt;br /&gt;
|description=Bureaucracy my beloved&lt;br /&gt;
}}&#039;&#039;&#039;Ο νόμος που θα επικαλείστε είναι ο ν. 4491/2017 . Θα παροτρύναμε κάθε ενδιαφερόμενο άτομο να τον ξεφυλλίσει έστω και μία φορά, γιατί θα είναι χρήσιμο. Παρακάτω, δίνεται σύνδεσμος που σας ανακατευθύνει σε μία σελίδα με τα περιεχόμενα του νόμου.&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
https://www.kodiko.gr/nomothesia/document/304143/nomos-4491-2017&lt;br /&gt;
&lt;br /&gt;
Σύμφωνα με τον ν. 4491/2017 δικαίωμα στην νομική αλλαγή στοιχείων έχουν &#039;&#039;&#039;όλα τα έλληνα πολιτά&#039;&#039;&#039; που: &lt;br /&gt;
&lt;br /&gt;
* Δεν τους στερείται δικαιοπρακτική ικανότητα&lt;br /&gt;
* Είναι δεκαεφτά (17) ετών και άνω την ημέρα της κατάθεσης της δήλωσης&lt;br /&gt;
&lt;br /&gt;
Σε περίπτωση που δεν είναι δεκαεφτά (17) και άνω το άτομο, δίνεται και πάλι ικανότητα διόρθωσης στοιχείων για το αιτούν πρόσωπο σε περίπτωση που είναι &#039;&#039;&#039;τουλάχιστον δεκαπέντε (15) ετών ηλικιακά την ημέρα της κατάθεσης&#039;&#039;&#039; και &#039;&#039;&#039;υπάρχει θετική γνωμάτευση διεπιστημονικής Επιτροπής&#039;&#039;&#039; που συστήνεται με κοινή απόφαση των Υπουργών Δικαιοσύνης, Διαφάνειας και Ανθρωπίνων Δικαιωμάτων και Υγείας για δύο (2) έτη, στην οποία μετέχουν:&lt;br /&gt;
&lt;br /&gt;
# ένας παιδοψυχίατρος,&lt;br /&gt;
# ένας ψυχίατρος,&lt;br /&gt;
# ένας ενδοκρινολόγος,&lt;br /&gt;
# ένας παιδοχειρούργος,&lt;br /&gt;
# ένας ψυχολόγος,&lt;br /&gt;
# ένας κοινωνικός λειτουργός και&lt;br /&gt;
# ένας παιδίατρος, ως Πρόεδρος, άπαντες με εξειδίκευση στο συγκεκριμένο ζήτημα.  &lt;br /&gt;
&lt;br /&gt;
Επίσης, πλέον με την υπογραφή του νομοσχεδίου για την ισότητα στον γάμο ομόφυλων ζευγαριών διαγράφεται η 3η προϋπόθεση του άρθρου 3 του ν. 4491/2017 :&lt;br /&gt;
&lt;br /&gt;
* &amp;quot;&#039;&#039;&#039;3&#039;&#039;&#039;. Προϋπόθεση για τη διόρθωση του καταχωρισμένου φύλου είναι το πρόσωπο που αιτείται τη διόρθωση να μην είναι έγγαμο.&amp;quot;&lt;br /&gt;
&lt;br /&gt;
, &#039;&#039;&#039;καθώς πλέον αναγνωρίζονται οι ομοφυλόφιλοι γάμοι&#039;&#039;&#039;.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Πλέον τα Ειρηνοδικεία δεν αναλαμβάνουν τις δίκες Ν4491/2017 . Αναφερόμαστε μόνο σε πρωτοδικεία.&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Μέσω δικαστικού εκπροσώπου (κοινώς: δικηγόρου) γίνεται κατάθεση αιτήματος στο πρωτοδικείο και λαμβάνετε δικάσιμη ημέρα, που συνήθως είναι 2-4 μήνες μετά την ημέρα υποβολής του αιτήματος (βέβαια στο παρελθόν έχουμε δει και αρκετά μεγαλύτερες καθυστερήσεις). Στην δίκη επιτρέπεται να έχετε &amp;quot;μάρτυρα/ες&amp;quot; που μπορεί να είναι όποιο/όποια επιθυμείτε. &#039;&#039;&#039;Δεν υπάρχει (βάσει ν. 4491/2017) καμία υποχρέωση για ιατρική φυλομετάβαση&#039;&#039;&#039; (όπως εγχειρήσεις, ορμονοθεραπεία, κ.ά), καθώς και καμία υποχρέωση για γνωμάτευση ψυχιάτρου, παρόλο που πολλά τρανς άτομα επιλέγουν να παρουσιαστούν στην δίκη με γνωματεύσεις ψυχιάτρων. &lt;br /&gt;
&lt;br /&gt;
Σύμφωνα με τον ν. 4491/2017 η δίκη θα γίνει με απόρρητο, δηλαδή ανεξαρτήτως τι αριθμός σειράς δοθεί στην δίκη, θα γίνει τελευταία και αυστηρώς χωρίς ακροατήριο. &lt;br /&gt;
&lt;br /&gt;
Αφού τελειώσει η δίκη, το πρωτοδικείο έχει έως και 6 μήνες να βγάλει απόφαση. Μετά την δημοσίευση της απόφασης, υπάρχει μία περίοδος, συνήθως όχι μεγαλύτερη των 2 μηνών για τελεσιδικία. Αφού τελειώσει και αυτή η περίοδος και λάβετε όλα τα έγγραφα μπορείτε και από την επόμενη μέρα να ξεκινήσετε την νομική αλλαγή των στοιχείων σας και του καταχωρημένου φύλου σας.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Βάσει του ν. 4491/2017 άρθρο 4 παράγραφος 3 είναι επίσης ΠΑΡΑΝΟΜΟ για οποιαδήποτε δημόσια υπηρεσία/φορέα να κρατάει ιστορικό της μεταβολής ή αναγραφές (&amp;quot;πρωτότυπα&amp;quot;) των παλιών σας στοιχείων.&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Το &amp;quot;έγγραφο τελεσιδικίας&amp;quot; στο οποίο αναφερόμαστε, αναφέρεται πολλές φορές και ως &#039;&#039;&#039;έκθεση επίδοσης&#039;&#039;&#039;.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Επειδή τα επόμενα βήματα είναι αρκετά, θα τα σπάσουμε σε κατηγορίες με σειρά.&#039;&#039;&#039; &lt;br /&gt;
&lt;br /&gt;
=== &#039;&#039;&#039;&amp;lt;big&amp;gt;Ληξιαρχείο&amp;lt;/big&amp;gt;&#039;&#039;&#039; ===&lt;br /&gt;
Πρώτη δράση σας μετά την τελεσιδικία θα έπρεπε να είναι να πάτε στο Ληξιαρχείου που &#039;&#039;&#039;είναι δηλωμένη η γέννηση σας&#039;&#039;&#039;. Δεν χρειάζεται κάποιο ραντεβού, μπορείτε να παρουσιαστείτε οποιαδήποτε στιγμή εντός των ωρών λειτουργίας του Ληξιαρχείου. Το Ληξιαρχείο, με την απόφαση και το έγγραφο τελεσιδικίας αλλάζει βάσει του νόμου ν. 4491/2017 στον τόμο την εγγραφή της γέννησης σας. &lt;br /&gt;
&lt;br /&gt;
Τα στοιχεία ΟΛΩΝ των μελών (π.χ γονέων, αιτούντων) θα παραμείνουν τα ίδια, μόνο τα δικά σας στοιχεία θα αλλάξουν (συγκεκριμένα: όνομα, επώνυμο, φύλο). &lt;br /&gt;
&lt;br /&gt;
Το Ληξιαρχείο είναι υποχρεωμένο να αλλάξει την αρχική έγγραφη στον τόμο του και να μην κρατήσει κανένα ιστορικό της μεταβολής ή &amp;quot;πρωτότυπο&amp;quot; αλλά αυτό είναι θέμα συζήτησης καθώς υπάρχει μεγάλη υποψία από την κοινότητα πως, πράγματι, κρατάνε &amp;quot;πρωτότυπα&amp;quot;.&lt;br /&gt;
&lt;br /&gt;
Σε περίπτωση που διελεύσει διάστημα μεγαλύτερο των 30 ημερών μεταξύ της ημερομηνίας τελεσιδικίας και αίτησης στο Ληξιαρχείο, τότε χρειάζεται να πληρώσετε ένα πρόστιμο ύψους 30.00€ μέσω παράβολου (κωδικός: [ 3828 ] Εκπρόθεσμη δήλωση γέννησης, γάμου, μεταβολής αστικής κατάστασης (πέραν της 10ημερης/ 40ήμερης /30ημερης προθεσμίας).&lt;br /&gt;
&lt;br /&gt;
=== &#039;&#039;&#039;&amp;lt;big&amp;gt;Δήμος / Δημοτολόγιο&amp;lt;/big&amp;gt;&#039;&#039;&#039; ===&lt;br /&gt;
Δεύτερη δράση σας θα ήταν να ενημερώσετε την καρτέλα σας στον δήμο. Έως και 72 ώρες μετά την μεταβολή στο Ληξιαρχείο, το εκάστοτε Ληξιαρχείο είναι υπόχρεο να ενημερώσει τον δήμο στον οποίο ανήκετε για την μεταβολή των στοιχείων ώστε να αλλάξει η εγγραφή σας στο δημοτολόγιο αυτόματα, αν θέλετε (και είναι κάτι που προτείνουμε) μπορείτε να πάτε δια ζώσης να ρωτήσετε για την διαδικασία της μεταβολής. Ανεξαρτήτως, κάποια στιγμή θα χρειαστεί να παρευρεθείτε φυσικά στον δήμο για να κρατήσουν αντίγραφο σας για την συναίνεση μεταβολής και να σας δώσουν την Δημαρχιακή Απόφαση (που δεν εκδίδεται πουθενά διαδικτυακά) την οποία μπορείτε να χρησιμοποιήσετε για διαφόρους λόγους, όπως για την ταυτοποίηση σας με παλαιότερα στοιχεία σε σπάνιες περιπτώσεις που δεν υφίσταται η μεταβολή, για παράδειγμα σε έγγραφα όπως το &amp;quot;Πιστοποιητικό Εγγυτέρων Συγγενών&amp;quot;. &lt;br /&gt;
&lt;br /&gt;
Το δημαρχείο και πάλι, δεν υφίσταται να κρατάει ιστορικό σας. Επίσης, πλέον δεν λειτουργούν τα μητρώα αρρένων στα δημοτολόγια. Οπότε δεν χρειάζεται να αιτηθείτε την απεγγραφή/εγγραφή σας, αλλά μπορείτε (και δικαιούστε) να ζητήσετε την διαγραφή της παλιάς σας εγγραφής που έχουν κρατήσει στο αρχείο.  &lt;br /&gt;
&lt;br /&gt;
=== &#039;&#039;&#039;&amp;lt;big&amp;gt;Αστυνομία / Έκδοση νέας ταυτότητας&amp;lt;/big&amp;gt;&#039;&#039;&#039; ===&lt;br /&gt;
Για την έκδοση της νέας ταυτότητας &#039;&#039;&#039;πρέπει&#039;&#039;&#039; να έχει γίνει η ενημέρωση στο δημοτολόγιο.&lt;br /&gt;
&lt;br /&gt;
Μπορείτε να κλείσετε κανονικά ραντεβού στο τμήμα ταυτοτήτων ενός αστυνομικού τμήματος, αλλά ειδικά αυτήν την περίοδο με τον όχλο ατόμων που επιδιώκει την έκδοση της νέας ταυτότητας θα ήταν σοφό να μην κλείσετε κανονικό ραντεβού και να πάτε δια ζώσης με την απόφαση και το έγγραφο τελεσιδικίας στο αστυνομικό τμήμα και να αιτηθείτε να σας δώσουν έκτακτο ραντεβού. Δικαιούστε έκτακτο ραντεβού καθώς δεν είναι μόνο για κλοπές/απώλειες εγγράφων αλλά και για μεταβολές στοιχείων. Έτσι μπορείτε να γλιτώσετε πολύ χρόνο αναμονής μέσω κάτι που δικαιούστε.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Αφού εκδοθεί η νέα ταυτότητα ξεκινάει πάνω κάτω η μεταβολή στα πάντα, από εδώ και πέρα δεν υπάρχει κάποια &amp;quot;σωστή&amp;quot; σειρά με την οποία μπορούν να γίνουν οι μεταβολές, με εξαίρεση τον ΕΦΚΑ.&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
=== &#039;&#039;&#039;&amp;lt;big&amp;gt;GOV.GR / ΑΑΔΕ&amp;lt;/big&amp;gt;&#039;&#039;&#039; ===&lt;br /&gt;
Για την μεταβολή φυσικών στοιχείων (και για να γίνουν πάλι λειτουργικές οι υπηρεσίες που απαιτούν ταυτοποίηση μέσω taxisnet - ΑΑΔΕ, γιατί από την περίοδο μεταβολής στο Ληξιαρχείο και στο Δημοτολόγιο λόγω της ασυμφωνίας με τον ΑΑΔΕ δεν λειτουργούν) θα χρειαστεί να μπείτε με τους κωδικούς taxisnet στα αιτήματα του myaade (https://www1.aade.gr/saadekef/eticketaade) και να υποβάλετε αίτημα στον ΔΟΥ σας. Η κατηγορία του αιτήματος θα πρέπει να είναι &amp;quot;&#039;&#039;&#039;Μεταβολές στοιχείων φυσικού προσώπου πλην δήλωσης θανάτου και κληρονόμων.&amp;quot;&#039;&#039;&#039; . Μπορείτε να αναγράψετε ό,τι πιστεύετε εσείς στο κείμενο, αλλά στα επισυναπτόμενα αρχεία &#039;&#039;&#039;πρέπει&#039;&#039;&#039; να επισυνάψετε:&lt;br /&gt;
&lt;br /&gt;
* Συμπληρωμένη αίτηση Δ210, το έγγραφο μπορείτε να κατεβάσετε και να το συμπληρώσετε εδώ: (https://www.aade.gr/sites/default/files/2021-09/D210.pdf)&lt;br /&gt;
&lt;br /&gt;
* και την νέα σας αστυνομική ταυτότητα.&lt;br /&gt;
&lt;br /&gt;
Μετά την πραγματοποίηση της μεταβολής, πλέον σε όλες τις εφαρμογές που σας ταυτοποιούν μέσω ΑΑΔΕ - taxisnet θα εμφανίζονται καταχωρημένα τα νέα σας στοιχεία.&lt;br /&gt;
&lt;br /&gt;
Το πρόβλημα με τον ΑΑΔΕ είναι πως επιμένει στην παρακράτηση ιστορικού μεταβολής του ονόματος και του επιθέτου σας, κάτι που δεν θα έπρεπε να συμβαίνει καθώς δεν αλλάζει ο ΑΦΜ σας, αλλά δεν έχουμε καταφέρει να βρούμε άκρη ακόμα. Επίσης, ενδεχομένως μερικές εφαρμογές που χρησιμοποιούν το παλιό σύστημα του ΑΑΔΕ και οι σελίδες με τις οφειλές και τις επιστροφές να αναγράφουν ακόμα τα παλιά σας στοιχεία, όμως καμία αίτηση και κανένα νομικό έγγραφο δεν θα τα αναγράφει, είναι πιθανώς απλά ένα τεχνικό πρόβλημα του ΑΑΔΕ προς διερεύνηση.&lt;br /&gt;
&lt;br /&gt;
=== &#039;&#039;&#039;&amp;lt;big&amp;gt;ΕΦΚΑ - ΑΜΚΑ&amp;lt;/big&amp;gt;&#039;&#039;&#039; ===&lt;br /&gt;
Όπως μπορεί να γνωρίζετε, ο ΑΜΚΑ σαν αριθμός δεν μεταβάλλεται. Μεταβάλλονται όμως τα στοιχεία σας στον ΕΡΓΑΝΗ και τα σχετιζόμενα στοιχεία του ΑΜΚΑ (δηλαδή τα στοιχεία του φυσικού προσώπου στον οποίον ανήκει ο αριθμός).&lt;br /&gt;
&lt;br /&gt;
Για την μεταβολή του ΕΦΚΑ πρέπει να έχει πραγματοποιηθεί:&lt;br /&gt;
&lt;br /&gt;
* Μεταβολή στοιχείων στο Ληξιαρχείο&lt;br /&gt;
* Έκδοση νέας Α.Τ (αστυνομικής ταυτότητας)&lt;br /&gt;
&lt;br /&gt;
* Επιτυχής μεταβολή στον ΑΑΔΕ &lt;br /&gt;
&lt;br /&gt;
Για να γίνει η μεταβολή, μπορείτε να κλείσετε ραντεβού τηλεφωνικώς μέσω του αριθμού: 1555 (χωρίς χρέωση) στο τμήμα μητρώων του ΕΦΚΑ στον οποίο ανήκετε (δεν ξέρετε σε ποιον ΕΦΚΑ ανήκετε; Μπορείτε να το βρείτε εδώ: https://www.efka.gov.gr/mathepouanikeis.php ).&lt;br /&gt;
&lt;br /&gt;
Ο ΕΦΚΑ είναι κατά μεγάλης αποστάσεως η υπηρεσία με τους περισσότερους ανειδίκευτους υπαλλήλους που θα συναντήσετε σε όλη την διαδικασία, και επειδή κατά μία μεγάλη πιθανότητα θα γίνει λάθος από το υπάλληλο αν δεν εμπλακείτε και εσείς, ας ξεκαθαρίσουμε μερικά πράγματα για την &#039;&#039;&#039;βεβαίωση απογραφής&#039;&#039;&#039; και τον &#039;&#039;&#039;ΑΜΚΑ&#039;&#039;&#039;.&lt;br /&gt;
&lt;br /&gt;
Τα δύο έγγραφα έχουν την εξής μορφή - ανεξαιρέτως αν μιλάμε για cis ή τρανς/genderqueer/gender non typical πολιτά.&lt;br /&gt;
[[File:Απογραφή ΕΦΚΑ.png|left|thumb|Βεβαίωση Απογραφής ΕΦΚΑ - 2024 από eServices]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[File:ΑΜΚΑ.png|left|thumb|Ασφαλιστική Ικανότητα από ΑΤΛΑΣ - 2024 όπου αναγράφονται αναλυτικά τα στοιχεία του ΑΜΚΑ σας.]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
           &lt;br /&gt;
&lt;br /&gt;
Όπως μπορείτε να δείτε, &#039;&#039;&#039;υπάρχουν οι στήλες &amp;quot;επώνυμο γέννησης&amp;quot; και &amp;quot;επώνυμο σημερινό&#039;&#039;&#039;&amp;quot;. &#039;&#039;&#039;Αυτές οι στήλες δεν υπάρχουν μόνο στα άτομα που έχουν ζητήσει μεταβολή στοιχείων μέσω του ν. 4491/2017 αλλά σε κάθε Έλληνα πολίτη&#039;&#039;&#039;. &#039;&#039;&#039;ΟΜΩΣ&#039;&#039;&#039; αυτές οι στήλες &amp;quot;χρησιμοποιούνται&amp;quot; &#039;&#039;&#039;ΜΟΝΟ&#039;&#039;&#039; σε περιπτώσεις που ένα άτομο έχει κάνει μεταβολή επιθέτου &#039;&#039;&#039;ΕΚΤΟΣ&#039;&#039;&#039; του ν. 4491/2017 και άλλων σχετικών νομοσχεδίων που ενδεχομένως να καθίστανται ανυπόστατη η διάκριση αυτών των δύο. &lt;br /&gt;
&lt;br /&gt;
Δηλαδή, τα επίθετα σε αυτές τις δύο στήλες θα έπρεπε να διαφέρουν μόνο σε περιπτώσεις που αλλάζετε το επίθετο σας στο επίθετο του συζύγου σας και σε λοιπές παρόμοιες περιπτώσεις - σε καμία περίπτωση δεν επιτρέπεται να διαφέρουν σε περίπτωση μεταβολής στοιχείων λόγω αλλαγής καταχώρισης φύλου. &#039;&#039;&#039;Για τα άτομα που ζητούν μεταβολή στοιχείων λόγω διόρθωσης καταχώρισης φύλου, θα έπρεπε να είναι σαν τους υπόλοιπους πολίτες, ΔΗΛΑΔΗ ΙΔΙΕΣ. Σε πολλές περιπτώσεις, λόγω ανικανότητας των υπαλλήλων, κρατάν ως επώνυμο γέννησης το παλιό σας επίθετο, και ως σημερινό σας επίθετο το καινούργιο σας από την δικαστική απόφαση. Το οποίο όχι μόνο είναι άκρως παράνομο, αλλά και ανεπιθύμητο.&#039;&#039;&#039; &lt;br /&gt;
&lt;br /&gt;
Ο ΑΜΚΑ παλαιότερα ενημερωνόταν μέσω ΚΕΠ. Πλέον, λόγω προσπάθειας αποκεντροποίησης, η μεταβολή πραγματοποιείται στον ΕΦΚΑ.&lt;br /&gt;
&lt;br /&gt;
=== &amp;lt;big&amp;gt;&#039;&#039;&#039;Διπλώματα Οδήγησης&#039;&#039;&#039;&amp;lt;/big&amp;gt; ===&lt;br /&gt;
Πρέπει να πάμε στο Υπουργείο Μεταφορών με τα εξής έγγραφα:&lt;br /&gt;
&lt;br /&gt;
* Δικαστική απόφαση και έγγραφο τελεσιδικίας (έκθεση επίδοσης)&lt;br /&gt;
* Νέα ταυτότητα&lt;br /&gt;
* Παλιό/α δίπλωμα/τα&lt;br /&gt;
* 2 (δύο) φωτογραφίες τύπου διπλώματος/διαβατηρίου&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Εκεί κάνουμε αίτηση για έκδοση νέου διπλώματος και περιμένουμε να μας δώσουν μία προσωρινή βεβαίωση που αντικαθιστά το δίπλωμα μας μέχρι να εκδοθεί το καινούριο.&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
=== &amp;lt;big&amp;gt;&#039;&#039;&#039;Τράπεζες&#039;&#039;&#039;&amp;lt;/big&amp;gt; ===&lt;br /&gt;
Μετά την ενημέρωση του ΑΑΔΕ, μπορούμε να αιτηθούμε ψηφιακά σε ελληνικές και ξένες τράπεζες (όπως Πειραιώς, εθνική, κ.α) την επικαιροποίηση στοιχείων μέσω των διαπιστευτηρίων του ΑΑΔΕ (gov.gr login). Μερικές φορές μπορεί να μας ζητηθεί να ανεβάσουμε ως έγγραφο την νέα μας ταυτότητα.&lt;br /&gt;
&lt;br /&gt;
=== &amp;lt;big&amp;gt;&#039;&#039;&#039;Στρατολογία&#039;&#039;&#039;&amp;lt;/big&amp;gt; ===&lt;br /&gt;
Το μητρώο αρρένων δεν λειτουργεί πλέον στο Δημοτολόγιο καθώς δεν υφίσταται. Για την απεγγραφή/εγγραφή στην στρατολογία, απαιτείται η αλλαγή στοιχείων στον ΑΑΔΕ και ...............................................................&lt;br /&gt;
&lt;br /&gt;
Υπάρχει και η επιλογή για Ι5 - Αποβολή αλλά ειδικά στις θυληκότητες, δεν υπάρχει κάποιος λόγος για αποβολή καθώς μπορεί να γίνει διαγραφή.&lt;br /&gt;
&lt;br /&gt;
=== &#039;&#039;&#039;&amp;lt;big&amp;gt;Καρτέλες Μαθητών/Σπουδαστών και Απολυτήρια&amp;lt;/big&amp;gt;&#039;&#039;&#039; ===&lt;br /&gt;
Με την αλλαγή της αστυνομικής σας ταυτότητας δύναται πλέον να αλλάξετε τις εγγραφές σας στις καρτέλες σας στο εκπαιδευτικό ίδρυμα που είστε εγγεγραμμένο μέσω της γραμματείας. Σε περίπτωση που έχετε αποφοιτήσει από εκπαιδευτικά ιδρύματα και ενδιαφέρεστε να αλλάξετε τα αναγραφόμενα στοιχεία (π.χ αν ενδιαφέρεστε για ερευνητικές θέσεις, σπουδές στο εξωτερικό, κλπ.) τότε θα πρέπει να αναφερθείτε στο ίδρυμα από το οποίο αποφοιτήσατε.&lt;br /&gt;
&lt;br /&gt;
Πολλά άτομα επιλέγουν να μην αλλάξουν τα αναγραφόμενα στοιχεία τους από την Πρωτοβάθμια και την Δευτεροβάθμια εκπαίδευση καθώς η ανάδειξη αυτών των απολυτηρίων είναι σπάνια και ο μπελάς για την αλλαγή τους μεγάλος.&lt;br /&gt;
&lt;br /&gt;
Σε αντίθεση, για απολυτήρια τριτοβάθμιας εκπαίδευσης (ή για εγγεγραμμένο φοιτητό) η ανάγκη μπορεί να είναι μεγάλη. Κάθε τμήμα λειτουργεί διαφορετικά. Ανεξαρτήτως όμως, θα έπρεπε να αναφερθείτε στην γραμματεία και να παρουσιαστείτε με τα εξής έγγραφα (καλού κακού):&lt;br /&gt;
&lt;br /&gt;
* Δικαστική απόφαση και έγγραφο τελεσιδικίας&lt;br /&gt;
* Νέα αστυνομική ταυτότητα&lt;br /&gt;
* Παλιά φοιτητική ταυτότητα (πάσο)&lt;br /&gt;
&lt;br /&gt;
Σε περίπτωση που έχετε ήδη αποφοιτήσει από ίδρυμα Τριτοβάθμιας εκπαίδευσης και έχετε χρησιμοποιήσει την ειδικότητα σας για να γραφτείτε σε κάποιο οργανισμό (π.χ ΤΕΕ) τότε τα πράγματα ζορίζουνε αν θέλετε να επικαιροποιήσετε τα στοιχεία σας.&lt;br /&gt;
&lt;br /&gt;
==== &#039;&#039;&#039;ΤΕΕ και λοιπά τεχνικά σωματεία που απαιτούν πιστοποιητικά τριτοβάθμιας εκπαίδευσης&#039;&#039;&#039; ====&lt;br /&gt;
Έχει έρθει στην προσοχή της ΛΟΑΤΚΙ κοινότητας πως .............................&lt;br /&gt;
&lt;br /&gt;
=== &#039;&#039;&#039;&amp;lt;big&amp;gt;Λοιπές Υπηρεσίες&amp;lt;/big&amp;gt;&#039;&#039;&#039; ===&lt;br /&gt;
Με την έκδοση της νέας σας αστυνομικής ταυτότητας δύναται πλέον να αλλάξετε τα στοιχεία σας και τις εγγραφές σας από όλες τις υπηρεσίες στις οποίες είστε εγγεγραμμένο, όπως γυμναστήρια, πανεπιστήμια (μέσω της γραμματείας - κάθε σχολή διαφέρει), κ.α. Κανένα δεν μπορεί να σας στερηθεί το δικαίωμα της επικαιροποίησης των στοιχείων, αν κάπου σας πουν &amp;quot;δεν γίνεται&amp;quot; τότε κατά 99.9% δεν ξέρουν τι λένε.&lt;/div&gt;</summary>
		<author><name>Goblinmoder</name></author>
	</entry>
	<entry>
		<id>https://wiki.diyon.top/index.php?title=HRT&amp;diff=979</id>
		<title>HRT</title>
		<link rel="alternate" type="text/html" href="https://wiki.diyon.top/index.php?title=HRT&amp;diff=979"/>
		<updated>2025-04-11T17:22:58Z</updated>

		<summary type="html">&lt;p&gt;Goblinmoder: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{#seo:&lt;br /&gt;
|title_mode=replace&lt;br /&gt;
|title=HRT&lt;br /&gt;
|description=We are open to discussion and actively on-going changes in formatting and contents of this Page and Website (in general). The e-mail address to refer to is fox@diyon.top&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
&amp;lt;languages/&amp;gt;&lt;br /&gt;
&amp;lt;translate&amp;gt;&lt;br /&gt;
&amp;lt;!--T:41--&amp;gt;&lt;br /&gt;
After around a month on HRT some of your ranges in your [[Blood Testing|blood test]] should be within desired ranges.&lt;br /&gt;
&lt;br /&gt;
Pricemaps are there to evaluate prices through &#039;&#039;&#039;galinos.gr&#039;&#039;&#039; (in case something is outdated, look for the green line that says &amp;quot;Λιανική&amp;quot;)&lt;br /&gt;
&lt;br /&gt;
We are open to discussion and actively on-going changes in formatting and contents of this Page and Website (in general). The e-mail address to refer to is &#039;&#039;&#039;fox@diyon.top&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--T:43--&amp;gt;&lt;br /&gt;
== Transfem ==&lt;br /&gt;
Taking Puberty Blockers ([[HRT#Antiandrogens and GNRH Agonists|GNRH Agonists]], e.g: Arvekap) or any Anti Androgen (e.g: Aldactone, Androcur) &#039;&#039;&#039;without [[HRT#Estrogens|Estrogens]]&#039;&#039;&#039; is generally discouraged even during youth transitioning (This is &#039;&#039;&#039;non-definitive&#039;&#039;&#039; for Enby folks)&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--T:44--&amp;gt;&lt;br /&gt;
=== Monotherapy ===&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|+&lt;br /&gt;
!Type&lt;br /&gt;
!Commercial Names&lt;br /&gt;
!Dosage&lt;br /&gt;
!Notes&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
====== Sublingual (E Valerate or Hemihydrate) ======&lt;br /&gt;
|Cyclacur (EV), Estrofem (EH, imported), Trisequens (12 pills 2mg EH, 10 pills norgestrel, 6 pills 1mg EH)&lt;br /&gt;
|&amp;gt;=8-12mg/day&lt;br /&gt;
|While it is possible, even with a smaller dosage (&#039;&#039;&#039;at least 6mg&#039;&#039;&#039;), it&#039;s not that common. Ideally, use your blood tests to &#039;&#039;&#039;minmax&#039;&#039;&#039; your doses.&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
====== Injectable Estradiol Valerate (EV) ======&lt;br /&gt;
|Neofollin (can be ordered from pharmacies near Czechia, not tested in Greece), Delestrogen (Vial, unavailable), Progynon Depot (Ampules, unavailable), [[File:What-excuse-me.gif|thumb|[[HRT#Other resources|my honest reaction]]]]&lt;br /&gt;
|5-7mg/5 days&lt;br /&gt;
|&lt;br /&gt;
* Due to the large spikes in levels combined with the short [https://en.wikipedia.org/wiki/Biological_half-life half-life] it is not recommended for dosages to surpass the 5 day mark because it may cause menopause symptoms.&lt;br /&gt;
* Branded versions of this medication are not available in greece.&lt;br /&gt;
* The ampules contain a certain mg and do not allow for larger dosages, they are not re-usable. It is recommended to use a vial with a cap.&lt;br /&gt;
* Look for &#039;&#039;&#039;[https://arc-w.nihr.ac.uk/Wordpress/wp-content/uploads/2015/07/Low-dead-space-syringes.png syringe dead space](*)&#039;&#039;&#039;, e.g. if there&#039;s &#039;&#039;&#039;0.05mL&#039;&#039;&#039; remaining after injecting, draw &#039;&#039;&#039;+0.05mL&#039;&#039;&#039; from the vial.&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
====== Injectable Estradiol Enanthate (EEn) ======&lt;br /&gt;
|[[File:What-excuse-me.gif|thumb|[[HRT#Other resources|my honest reaction]]]]&lt;br /&gt;
|4-7mg/Week&lt;br /&gt;
7-10mg/10 days (7.2mg usually, depending on the vial, it&#039;s optimal because drawing cents of mL are hard to get right)&lt;br /&gt;
|&lt;br /&gt;
* You can multiply the weekly dosage by 2, which lasts up to 14 days (as much as the [https://en.wikipedia.org/wiki/Biological_half-life half-life] of Enanthate)&lt;br /&gt;
* Look for &#039;&#039;&#039;[https://arc-w.nihr.ac.uk/Wordpress/wp-content/uploads/2015/07/Low-dead-space-syringes.png syringe dead space](*)&#039;&#039;&#039;, e.g. if there&#039;s &#039;&#039;&#039;0.05mL&#039;&#039;&#039; remaining after injecting, draw &#039;&#039;&#039;+0.05mL&#039;&#039;&#039; from the vial.&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
====== Injectable Estradiol Undecylate (EU/EUn) ======&lt;br /&gt;
|[[File:What-excuse-me.gif|thumb|[[HRT#Other resources|my honest reaction]]]]&lt;br /&gt;
|There&#039;s not enough information on dosage. The frequency of those may differ according to the oil used (MCT/Castor oil). Indicative Dosages:&lt;br /&gt;
15-20mg/2 weeks&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--T:45--&amp;gt;&lt;br /&gt;
20-40mg+/4 weeks&lt;br /&gt;
|&lt;br /&gt;
* There&#039;s not enough information on its [https://en.wikipedia.org/wiki/Biological_half-life half-life], a higher dosage can be administered that can last up to 20-30 days.&lt;br /&gt;
* [https://en.wikipedia.org/wiki/Intramuscular_injection IM injections] last longer so they give better levels during the same period of time per injection.&lt;br /&gt;
* Needs at least 90 days to reach stable levels.&lt;br /&gt;
* Look for &#039;&#039;&#039;[https://arc-w.nihr.ac.uk/Wordpress/wp-content/uploads/2015/07/Low-dead-space-syringes.png syringe dead space](*)&#039;&#039;&#039;, e.g. if there&#039;s &#039;&#039;&#039;0.05mL&#039;&#039;&#039; remaining after injecting, draw &#039;&#039;&#039;+0.05mL&#039;&#039;&#039; from the vial.&lt;br /&gt;
|}&lt;br /&gt;
&#039;&#039;&#039;*&#039;&#039;&#039; = It has been mentioned that syringes account for dead space, although that is not 100% certain.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--T:46--&amp;gt;&lt;br /&gt;
=== Sublingual vs Oral ===&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|+&lt;br /&gt;
!Method&lt;br /&gt;
!Substance&lt;br /&gt;
!Dosage&lt;br /&gt;
!Observations&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
====== Oral ======&lt;br /&gt;
|Estradiol Valerate in pill form (e.g. Cyclacur)&lt;br /&gt;
|&amp;gt;=6mg/day&lt;br /&gt;
(max 10mg as per Dr. Powers)&lt;br /&gt;
|It is recommended that doses are taken separately on set time intervals during the day for more stable estradiol levels, e.g. for a 6mg dose you would take 2mg per 8 hours. By the oral route the active substance is metabolized by the liver and part of it is converted to estrone (E1), which has much less feminizing effects than estradiol (E2) so the desired effect is essentially prevented. The bioavailability of estradiol by oral administration is very low (~5%) and usually lower levels of E2 are observed in blood tests than other methods of administration. [anecdotal apo to server, wikipedia kai tttt - correct/expand?] It is also necessary to administer anti-androgens to reduce testosterone levels to the female range.&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
====== Sublingual ======&lt;br /&gt;
|Estradiol Valerate in pill form (e.g. Cyclacur)&lt;br /&gt;
|&amp;gt;=4mg/day&lt;br /&gt;
|It is recommended that doses are taken separately on set time intervals during the day for more stable estradiol levels, e.g. for a 6mg dose you would take 2mg per 8 hours. The sublingual way bypasses estradiol metabolism by the liver and has about 5 times the estradiol bioavailability of the oral way. This way, estradiol levels have greater range than orally (higher peak lower bottom), in oral they remain higher for ~12 hours while sublingually they go away after 3-4 hours [idk if honscience the study is from 2005 on cis women]&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== Vial info === &amp;lt;!--T:47--&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--T:48--&amp;gt;&lt;br /&gt;
=== Medications ===&lt;br /&gt;
For cyclacur: &#039;&#039;&#039;take only the white pills, the brown pills are Norgestrel which have 0.5mg of estradiol but has an androgenic effect and may also cause other side effects&#039;&#039;&#039;. &lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--T:49--&amp;gt;&lt;br /&gt;
==== Estrogens ====&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|+&lt;br /&gt;
!Brand Name(s)&lt;br /&gt;
!Substance&lt;br /&gt;
!Form&lt;br /&gt;
!Method of Administration&lt;br /&gt;
!Cost&lt;br /&gt;
!Cost with Healthcare Coverage&lt;br /&gt;
!Dosage&lt;br /&gt;
!Safety&lt;br /&gt;
!Notes&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
====== [https://www.galinos.gr/web/drugs/main/drugs/Cyclacur Cyclacur] ======&lt;br /&gt;
|Estradiol Valerate (EV)&lt;br /&gt;
|Pill tablet&lt;br /&gt;
|Orally or sublingually&lt;br /&gt;
|2.01€ for 11 pills ([https://www.galinos.gr/service/drugs/drawPackagePrice/1198 Pricemap])&lt;br /&gt;
~130.8-328.€/year&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--T:50--&amp;gt;&lt;br /&gt;
~10.9-27.4€/month&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--T:51--&amp;gt;&lt;br /&gt;
Prices are indicative, the cost depends on the dosage.&lt;br /&gt;
| -&lt;br /&gt;
|6mg-10mg/day (according to Dr. Will Powers)&lt;br /&gt;
4mg-8mg/day (according to Greek Endocrinologists)&lt;br /&gt;
|A&lt;br /&gt;
|&lt;br /&gt;
* &#039;&#039;&#039;Only white pills are used.&#039;&#039;&#039; Brown pills do have a bit of estradiol but arent taken due to other side effects.&lt;br /&gt;
* You need antiandrogens or GNRH antagonists if you haven&#039;t had an orchiectomy.&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
====== Progynova ======&lt;br /&gt;
|Estradiol Valerate (EV)&lt;br /&gt;
|Pill tablet&lt;br /&gt;
|Orally or sublingually&lt;br /&gt;
|~22€ for 72 pills of 1 mg or ~32€ for 72 pills of 2 mg&lt;br /&gt;
Prices are indicative, the cost depends on the dosage.&lt;br /&gt;
| -&lt;br /&gt;
|4mg-8mg/day&lt;br /&gt;
|A&lt;br /&gt;
|&lt;br /&gt;
* There is no reason to use it in Greece since Cyclacur is available in Greek pharmacies.&lt;br /&gt;
* You need antiandrogens or GNRH antagonists if you haven&#039;t had an orchiectomy.&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
====== Estrofem, Estrifam (german brand name), [https://www.galinos.gr/web/drugs/main/drugs/trisequens Trisequens] ======&lt;br /&gt;
|Estradiol Hemihydrate&lt;br /&gt;
|Pill tablet&lt;br /&gt;
|Orally or sublingually&lt;br /&gt;
|~30€ for 28 pills of 2 mg without shipping costs.&lt;br /&gt;
Prices are indicative, the cost depends on the dosage.&lt;br /&gt;
| -&lt;br /&gt;
|4mg-8mg/day&lt;br /&gt;
|A&lt;br /&gt;
|&lt;br /&gt;
* There is no reason to use it in Greece since Cyclacur is available in Greek pharmacies.&lt;br /&gt;
* You need antiandrogens or GNRH antagonists if you haven&#039;t had an orchiectomy.&lt;br /&gt;
* Trisequens, while being available in Greece, is odd to take with 12 pills being 2mg EH, 10 norgestrel, and 6 1mg EH, for a much higher price than [[HRT#Cyclacur|Cyclacur]].&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
====== [https://www.galinos.gr/web/drugs/main/drugs/Dermestril Dermestril] ======&lt;br /&gt;
|Estradiol Hemihydrate&lt;br /&gt;
|Patch&lt;br /&gt;
|Trans-dermally&lt;br /&gt;
|44€ for 24 patches of 100mcg&lt;br /&gt;
~15€ for 8 patches of 50mcg&lt;br /&gt;
| -&lt;br /&gt;
|50mcg/3.5 days (when starting off)&lt;br /&gt;
100mcg/3.5 days (whenever your e2 levels are stable)&lt;br /&gt;
|A&lt;br /&gt;
|&lt;br /&gt;
* &#039;&#039;&#039;If you have no idea how to apply patches watch this:&#039;&#039;&#039; [https://youtu.be/tXGIYWPqdpI?si=O0dlE19pq0ic0PZP Demonstrational Video]&lt;br /&gt;
* You need antiandrogens or GNRH antagonists if you haven&#039;t had an orchiectomy.&lt;br /&gt;
* 100mcg patches can be cut into 2 if needed.&lt;br /&gt;
|-&lt;br /&gt;
|Neofollin (can be ordered from pharmacies near Czechia, not tested in Greece), Delestrogen (Vial, unavailable), Progynon Depot (Ampules, unavailable)&lt;br /&gt;
|&lt;br /&gt;
====== Estradiol Valerate (EV) ======&lt;br /&gt;
|Injectable&lt;br /&gt;
|Subcutaneous or Intramuscular&lt;br /&gt;
|80€/year (including shipping costs, syringes and alcohol swabs)&lt;br /&gt;
| -&lt;br /&gt;
|5-7mg/5 days (monotherapy)&lt;br /&gt;
4-5mg/7 days (only in combination with an antiandrogen or GNRH agonist)&lt;br /&gt;
|A+&lt;br /&gt;
|&lt;br /&gt;
* It can be used without antiandrogens or GNRH agonists in ([[HRT#Μονοθεραπεία|Monotherapy]]) by increasing the dosage.&lt;br /&gt;
|-&lt;br /&gt;
| -&lt;br /&gt;
|&lt;br /&gt;
====== Estradiol Enanthate (EEn) ======&lt;br /&gt;
|Injectable&lt;br /&gt;
|Subcutaneous or Intramuscular&lt;br /&gt;
|80€/year (including shipping costs, syringes and alcohol swabs)&lt;br /&gt;
| -&lt;br /&gt;
|2.5mg-7mg/7 days&lt;br /&gt;
(usual dosage: 4mg/7days)&lt;br /&gt;
|A+&lt;br /&gt;
|&lt;br /&gt;
* It can be used without antiandrogens or GNRH agonists in ([[HRT#Μονοθεραπεία|Monotherapy]]) by increasing the dosage.&lt;br /&gt;
|-&lt;br /&gt;
| -&lt;br /&gt;
|&lt;br /&gt;
====== Estradiol Undecylate (EU, EUn) ======&lt;br /&gt;
|Injectable&lt;br /&gt;
|Subcutaneous or Intramuscular&lt;br /&gt;
|130€/year (including shipping costs, syringes and alcohol swabs)&lt;br /&gt;
| -&lt;br /&gt;
|15-20mg/2 weeks&lt;br /&gt;
20-40mg+/4 weeks&lt;br /&gt;
|A+&lt;br /&gt;
|&lt;br /&gt;
* There&#039;s not much info on dosages, usually seen in [[HRT#Μονοθεραπεία|monotherapy]].&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--T:52--&amp;gt;&lt;br /&gt;
==== Anti-Androgens and GNRH Agonists ====&lt;br /&gt;
These should &#039;&#039;&#039;not&#039;&#039;&#039; be taken sublingually.&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|+&lt;br /&gt;
!Brand Name(s)&lt;br /&gt;
!Substance&lt;br /&gt;
!Cost&lt;br /&gt;
!Cost with Healthcare Coverage&lt;br /&gt;
!Dosage&lt;br /&gt;
!Safety&lt;br /&gt;
!Form&lt;br /&gt;
!Type&lt;br /&gt;
!Notes&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
====== [https://www.galinos.gr/web/drugs/main/drugs/Androcur Androcur] ======&lt;br /&gt;
|Cyproterone Acetate (CPA) is also referred to as cypro&lt;br /&gt;
|21.58€/50mg * 50 pills &lt;br /&gt;
19.7-31.5€/year&lt;br /&gt;
&lt;br /&gt;
([https://www.galinos.gr/service/drugs/drawPackagePrice/8023 Pricemap])&lt;br /&gt;
|?&lt;br /&gt;
|12.5mg/2 days- 10mg/day&lt;br /&gt;
&#039;&#039;&#039;Larger doses shouldn&#039;t be administered&#039;&#039;&#039;&lt;br /&gt;
|C&lt;br /&gt;
|Pill tablet&lt;br /&gt;
|Progestin (Steroidal antiandrogen)&lt;br /&gt;
Stops testosterone production.&lt;br /&gt;
|The max recommended dosage is 10mg/day . Monitoring of prolactin levels is recommended through [[Blood Testing#MTF|blood testing]].&lt;br /&gt;
&#039;&#039;&#039;Many doctors give overdoses of 50 mg/day. Cyproterone is a strong anti-androgen and testosterone suppression is possible with lower doses. A change of doctor is recommended.&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--T:53--&amp;gt;&lt;br /&gt;
[[wikipedia:Side_effects_of_cyproterone_acetate|Side Effects]]:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--T:54--&amp;gt;&lt;br /&gt;
* Benign brain tumor.&lt;br /&gt;
* In rare cases, liver damage.&lt;br /&gt;
* Vitamin B12 deficiency.&lt;br /&gt;
* Breast cancer.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--T:55--&amp;gt;&lt;br /&gt;
Testosterone suppression can be achieved with even lower doses, however a 50 mg pill is difficult to cut into pieces of less than 12.5 mg even with a pill cutter.&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
====== [https://www.galinos.gr/web/drugs/main/drugs/Bicalut Bicalut] ======&lt;br /&gt;
|Bicalutamide (aka: bica)&lt;br /&gt;
|29.10 euro/30 pills&lt;br /&gt;
29.10 euro/month&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--T:56--&amp;gt;&lt;br /&gt;
~350 euro/year&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
([https://www.galinos.gr/service/drugs/drawPackagePrice/11120 Pricemap])&lt;br /&gt;
|6.77 euro/month (28 tabs)&lt;br /&gt;
~95 euro/year&lt;br /&gt;
|50mg/day&lt;br /&gt;
|A-&lt;br /&gt;
|Pill/Tablet&lt;br /&gt;
|Androgen receptor antagonist (Nonsteroidal antiandrogen)&lt;br /&gt;
Blocks absorption of all androgens (including testosterone)&lt;br /&gt;
|&#039;&#039;&#039;Serious negative interactions can be noted if combined with other anti-androgens and GNRH agonists (except progesterone)&#039;&#039;&#039;&lt;br /&gt;
&#039;&#039;&#039;Very rare&#039;&#039;&#039; chance for recoverable and non-fatal liver damage for people with a certain rare mutation.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--T:57--&amp;gt;&lt;br /&gt;
Most of the effects listen in the instruction manual are scaremongering. (it lists a very high chance of liver issues when they are actually very rare, and also lists photosensitivity, which if it even occurs at all, it should be quite rare. We are aware of nobody who had a negative interction between alexandrite laser hair removal and bicalutamide).&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--T:58--&amp;gt;&lt;br /&gt;
Note that bicalutamide, unlike most other anti-androgens, &#039;&#039;&#039;does not&#039;&#039;&#039; lower testosterone levels, in fact they usually rise as the body responds to testosterone receptors being inhibited. Do not be alarmed if you notice an increase of testosterone in your blood tests.&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
====== [https://www.galinos.gr/web/drugs/main/drugs/utrogestran Utrogestan] ======&lt;br /&gt;
|Progesterone (P4) it is also referred to as prog&lt;br /&gt;
|6.56 euro/15 caps (200mg)&lt;br /&gt;
([https://www.galinos.gr/service/drugs/drawPackagePrice/7619 Pricemap])&lt;br /&gt;
|?&lt;br /&gt;
|200mg daily (rectal administration)&lt;br /&gt;
|A&lt;br /&gt;
|Capsule&lt;br /&gt;
|Stops testosterone production.&lt;br /&gt;
|There is not much confirmed information about progesterone.&lt;br /&gt;
It can also be taken orally but the absorption rate is very low.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--T:59--&amp;gt;&lt;br /&gt;
Anecdotal claims:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--T:60--&amp;gt;&lt;br /&gt;
* Helps with breast development and with feminization in general.&lt;br /&gt;
* Can be given after one year of estradiol.&lt;br /&gt;
* Suggested to be given after the individual reaches Tanner stage 3.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--T:61--&amp;gt;&lt;br /&gt;
It can have androgenic or other (non-serious, recoverable) effects for some individuals - in particular it can be converted to DHT by the body even in combination with dutasteride or bicalutamide.&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
====== [https://www.galinos.gr/web/drugs/main/drugs/Arvekap Arvekap] ======&lt;br /&gt;
|Triptorelin&lt;br /&gt;
| -&lt;br /&gt;
|~200/year?&lt;br /&gt;
|&lt;br /&gt;
|A?&lt;br /&gt;
|Injection&lt;br /&gt;
|GNRH Agonist&lt;br /&gt;
(indirectly) Stops testosterone AND estrogen production&lt;br /&gt;
|Also a puberty blocker&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
====== [https://www.galinos.gr/web/drugs/main/drugs/aldactone Aldactone] ======&lt;br /&gt;
|Spironolactone&lt;br /&gt;
|5.19 euro/20 tabs (100mg)&lt;br /&gt;
([https://www.galinos.gr/service/drugs/drawPackagePrice/148 Pricemap])&lt;br /&gt;
|?&lt;br /&gt;
|50mg-200mg/day&lt;br /&gt;
|B-C&lt;br /&gt;
|Tablet&lt;br /&gt;
|Antimineralocorticoid/MCRA&lt;br /&gt;
|Very inefficient, makes you pee, it&#039;s a medication for blood pressure&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
|Flutamide&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|F---&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|Only in this table as an example to avoid&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--T:62--&amp;gt;&lt;br /&gt;
==== Other anti-androgens (optional) ====&lt;br /&gt;
These are used to block conversion of other androgens to DHT (which causes hair loss (hair) and body hair growth). They aren&#039;t general use Anti-Androgens.&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
!Brand Name(s)&lt;br /&gt;
!Substance&lt;br /&gt;
!Cost&lt;br /&gt;
!Cost with Healthcare Coverage&lt;br /&gt;
!Dosage&lt;br /&gt;
!Safety&lt;br /&gt;
!Form&lt;br /&gt;
!Type&lt;br /&gt;
!Notes&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
====== [https://www.galinos.gr/web/drugs/main/packages/26485 Dastidem], [https://www.galinos.gr/web/drugs/main/packages/25557 Rafuster], [https://www.galinos.gr/web/drugs/main/packages/25893 Duaride], [https://www.galinos.gr/web/drugs/main/packages/25894 Dustezor] ======&lt;br /&gt;
|Dutasteride&lt;br /&gt;
|7.90€/30 caps&lt;br /&gt;
|~6€/30 caps&lt;br /&gt;
|0.5mg/day (?/TBD)&lt;br /&gt;
|A-&lt;br /&gt;
|Capsule&lt;br /&gt;
| -&lt;br /&gt;
|High effectiveness.&lt;br /&gt;
|-&lt;br /&gt;
| -&lt;br /&gt;
|Finasteride&lt;br /&gt;
| -&lt;br /&gt;
| -&lt;br /&gt;
| -&lt;br /&gt;
|F&lt;br /&gt;
| -&lt;br /&gt;
| -&lt;br /&gt;
|Effectiveness is none to medium (Just take Dutasteride - will not stop conversion of Progesterone to DHT)&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--T:63--&amp;gt;&lt;br /&gt;
=== Blood Levels ===&lt;br /&gt;
&lt;br /&gt;
==== Refer to the [[Blood Testing]] page. ====&amp;lt;!--T:81--&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Transmasc ==&lt;br /&gt;
&lt;br /&gt;
=== Medications ===&lt;br /&gt;
&lt;br /&gt;
==== Testosterone ====&lt;br /&gt;
[https://www.galinos.gr/web/drugs/main/substances/testosterone/marketing Galinos.gr&#039;s testosterone availability page]&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|+&lt;br /&gt;
!Brand Name(s)&lt;br /&gt;
!Substance&lt;br /&gt;
!Form&lt;br /&gt;
!Method of Administration&lt;br /&gt;
!Cost&lt;br /&gt;
!Cost with Healthcare Coverage&lt;br /&gt;
!Dosage&lt;br /&gt;
!Safety&lt;br /&gt;
!Notes&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
====== [https://www.galinos.gr/web/drugs/main/packages/4929 Norma] ======&lt;br /&gt;
|Testosterone Enanthate&lt;br /&gt;
|Injection/Ampule&lt;br /&gt;
|Subcutaneous or Intramuscular&lt;br /&gt;
|17.67€/ampule &lt;br /&gt;
([https://www.galinos.gr/service/drugs/drawPackagePrice/4929 Pricemap])&lt;br /&gt;
|?&lt;br /&gt;
|?&lt;br /&gt;
|?&lt;br /&gt;
| -&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
====== [https://www.galinos.gr/web/drugs/main/packages/21943 Nebido] ======&lt;br /&gt;
|Testosterone Undecanoate&lt;br /&gt;
|Injection/Vial&lt;br /&gt;
|Intramuscular&lt;br /&gt;
|100.37€/vial&lt;br /&gt;
([https://www.galinos.gr/service/drugs/drawPackagePrice/21943 Pricemap])&lt;br /&gt;
|~32.52€/vial (you pay 25%)&lt;br /&gt;
|1 vial (1000mg/4mL)/10-20 weeks&lt;br /&gt;
|A&lt;br /&gt;
|As a starting dose &#039;&#039;&#039;after a year of HRT&#039;&#039;&#039;, you could also consider:&lt;br /&gt;
&lt;br /&gt;
* Instead of injecting one vial per 20 weeks, you do half every 10-12 weeks, however nothing could be sourced to support this. Though logically it could make sense as a practice.&lt;br /&gt;
* Do a test at 6 weeks after starting, if T is too high don&#039;t take the 2nd dose, if it&#039;s not you can take the 2nd and then test 2 weeks before every other dose.&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
====== [https://www.galinos.gr/web/drugs/main/packages/15739 Tostran] ======&lt;br /&gt;
|Testogel&lt;br /&gt;
|Gel&lt;br /&gt;
|Trans-dermally&lt;br /&gt;
|&#039;&#039;&#039;Starting dose&#039;&#039;&#039;&lt;br /&gt;
&amp;lt;!--T:82--&amp;gt;&lt;br /&gt;
* 35.54€/2 months&lt;br /&gt;
* 213.24€/year&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--T:83--&amp;gt;&lt;br /&gt;
&#039;&#039;&#039;30 mg dose&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--T:84--&amp;gt;&lt;br /&gt;
* 35.54€/40 days&lt;br /&gt;
* ~324.30€/year&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--T:85--&amp;gt;&lt;br /&gt;
&#039;&#039;&#039;40 mg dose&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--T:73--&amp;gt;&lt;br /&gt;
* 35.54€/30 days&lt;br /&gt;
* 426.48€/year&lt;br /&gt;
([https://www.galinos.gr/service/drugs/drawPackagePrice/15739 Pricemap])&lt;br /&gt;
|35.54€ -&amp;gt; 8.89€&lt;br /&gt;
|20mg/day (starting dose)&lt;br /&gt;
30-40mg/day&lt;br /&gt;
|A&lt;br /&gt;
|&lt;br /&gt;
* 1 pump of Tostran (&#039;&#039;&#039;0.5g&#039;&#039;&#039;) delivers 10 mg of T.&lt;br /&gt;
* 2 pumps of Tostran are 1 pump of Testogel (20.25mg of T)&lt;br /&gt;
* Can cause skin reactions.&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
==== GNRH Agonists ====&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
!Brand Name(s)&lt;br /&gt;
!Substance&lt;br /&gt;
! Cost&lt;br /&gt;
!Cost with Healthcare Coverage&lt;br /&gt;
!Dosage&lt;br /&gt;
!Safety&lt;br /&gt;
!Form&lt;br /&gt;
!Type&lt;br /&gt;
!Notes&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
====== [https://www.galinos.gr/web/drugs/main/drugs/Arvekap Arvekap] ======&lt;br /&gt;
|Triptorelin&lt;br /&gt;
| -&lt;br /&gt;
|~200/year?&lt;br /&gt;
|&lt;br /&gt;
|A?&lt;br /&gt;
|Injection&lt;br /&gt;
|GNRH Agonist&lt;br /&gt;
(indirectly) Stops testosterone AND estrogen production&lt;br /&gt;
|Also a puberty blocker&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
==== Other anti-androgens (optional) ====&lt;br /&gt;
These are used to block conversion of other androgens to DHT (which causes hair loss (hair) and body hair growth). They aren&#039;t general use Anti-Androgens.&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
!Brand Name(s)&lt;br /&gt;
!Substance&lt;br /&gt;
!Cost&lt;br /&gt;
!Cost with Healthcare Coverage&lt;br /&gt;
!Dosage&lt;br /&gt;
!Safety&lt;br /&gt;
!Form&lt;br /&gt;
!Type&lt;br /&gt;
!Notes&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
====== [https://www.galinos.gr/web/drugs/main/packages/26485 Dastidem], [https://www.galinos.gr/web/drugs/main/packages/25557 Rafuster], [https://www.galinos.gr/web/drugs/main/packages/25893 Duaride], [https://www.galinos.gr/web/drugs/main/packages/25894 Dustezor] ======&lt;br /&gt;
|Dutasteride&lt;br /&gt;
|7.90€/30 caps&lt;br /&gt;
|~6€/30 caps&lt;br /&gt;
|0.5mg/day (?/TBD)&lt;br /&gt;
|A-&lt;br /&gt;
|Capsule&lt;br /&gt;
| -&lt;br /&gt;
|High effectiveness. &lt;br /&gt;
Not to be confused with proper Anti-Androgens.&lt;br /&gt;
|}&lt;br /&gt;
== Legal ==&lt;br /&gt;
It is legal to buy anything without a diagnosis or a prescription (off the counter - OTC), Testosterone can be hit or miss, look for [https://www.galinos.gr/web/drugs/main/packages/15739 Tostran] (Testogel) or [https://www.galinos.gr/web/drugs/main/packages/4929 TEn] (Testosterone Enanthate/Norma, injections).  &lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--T:86--&amp;gt;&lt;br /&gt;
You can also check the &#039;&#039;&#039;[https://diyon.top/map Trans-Friendly Pharmacies Map]&#039;&#039;&#039; for any pharmacies near you (this goes for both Transfem and Transmasc HRT). &lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--T:75--&amp;gt;&lt;br /&gt;
There is no minimum or maximum legal age for someone to start HRT. &lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--T:76--&amp;gt;&lt;br /&gt;
It is not legally mandatory for someone to have a diagnosis by a psychiatrist in order to medically transition.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--T:77--&amp;gt;&lt;br /&gt;
There is no legally mandatory time restriction for a psychiatrist to monitor you before diagnosing you.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--T:78--&amp;gt;&lt;br /&gt;
You don&#039;t legally need to be on HRT in order to be exempt from the [[army]], change your [[Legal|legal sex]], or to have a [[surgery]].&lt;br /&gt;
&lt;br /&gt;
== Other resources == &amp;lt;!--T:79--&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--T:80--&amp;gt;&lt;br /&gt;
* Simulator: https://www.estrannai.se/&lt;br /&gt;
* https://transfemscience.org/ (note, the authors of this site disagree with a lot of what they are saying, regardless, it is still interesting)&lt;br /&gt;
** Introduction to Hormone Therapy for Transfeminine People: https://transfemscience.org/articles/transfem-intro/&lt;br /&gt;
** Older simulator: https://transfemscience.org/misc/injectable-e2-simulator/&lt;br /&gt;
** Dosage calculator: https://transfemscience.org/misc/injectable-dose-vol-conc-conv/&lt;br /&gt;
* https://diyhrt.wiki/ (alt link: https://anarch.cc/transfeminine-diy-hrt-the-ultimate-guide-2/)&lt;br /&gt;
* https://hrtcafe.net/&lt;br /&gt;
* ?? https://hrt.coffee/&lt;br /&gt;
* https://www.reddit.com/r/TransDIY/&lt;br /&gt;
* https://www.reddit.com/r/TransfemScience/&lt;br /&gt;
* https://groups.io/g/MTFHRT/wiki/29602 (alt link: https://anarch.cc/mtf-hrt-ultimate-diy/)&lt;br /&gt;
* https://hrt.cat/ - info for making your own (you will probably not need it - version 1.0: https://hrtcafe.net/hrtcat/)&lt;br /&gt;
* https://archive.ph/uQb8g (alt link: https://anarch.cc/making-your-own-injections/, as above)&lt;br /&gt;
* https://crimethinc.com/2022/12/15/producing-transdermal-estrogen-a-do-it-yourself-guide (alt link: https://anarch.cc/producing-transdermal-estrogen-a-do-it-yourself-guide/, as above)&lt;br /&gt;
* https://archive.ph/cpy7k (alt link: https://anarch.cc/homebrewing-hormones-mtf-guide/, as above)&lt;br /&gt;
&amp;lt;/translate&amp;gt;&lt;/div&gt;</summary>
		<author><name>Goblinmoder</name></author>
	</entry>
	<entry>
		<id>https://wiki.diyon.top/index.php?title=HRT&amp;diff=978</id>
		<title>HRT</title>
		<link rel="alternate" type="text/html" href="https://wiki.diyon.top/index.php?title=HRT&amp;diff=978"/>
		<updated>2025-04-11T17:11:30Z</updated>

		<summary type="html">&lt;p&gt;Goblinmoder: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{#seo:|title=HRT}}&lt;br /&gt;
{{#seo:|description=We are open to discussion and actively on-going changes in formatting and contents of this Page and Website (in general). The e-mail address to refer to is fox@diyon.top}}&lt;br /&gt;
&lt;br /&gt;
&amp;lt;languages/&amp;gt;&lt;br /&gt;
&amp;lt;translate&amp;gt;&lt;br /&gt;
&amp;lt;!--T:41--&amp;gt;&lt;br /&gt;
After around a month on HRT some of your ranges in your [[Blood Testing|blood test]] should be within desired ranges.&lt;br /&gt;
&lt;br /&gt;
Pricemaps are there to evaluate prices through &#039;&#039;&#039;galinos.gr&#039;&#039;&#039; (in case something is outdated, look for the green line that says &amp;quot;Λιανική&amp;quot;)&lt;br /&gt;
&lt;br /&gt;
We are open to discussion and actively on-going changes in formatting and contents of this Page and Website (in general). The e-mail address to refer to is &#039;&#039;&#039;fox@diyon.top&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--T:43--&amp;gt;&lt;br /&gt;
== Transfem ==&lt;br /&gt;
Taking Puberty Blockers ([[HRT#Antiandrogens and GNRH Agonists|GNRH Agonists]], e.g: Arvekap) or any Anti Androgen (e.g: Aldactone, Androcur) &#039;&#039;&#039;without [[HRT#Estrogens|Estrogens]]&#039;&#039;&#039; is generally discouraged even during youth transitioning (This is &#039;&#039;&#039;non-definitive&#039;&#039;&#039; for Enby folks)&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--T:44--&amp;gt;&lt;br /&gt;
=== Monotherapy ===&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|+&lt;br /&gt;
!Type&lt;br /&gt;
!Commercial Names&lt;br /&gt;
!Dosage&lt;br /&gt;
!Notes&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
====== Sublingual (E Valerate or Hemihydrate) ======&lt;br /&gt;
|Cyclacur (EV), Estrofem (EH, imported), Trisequens (12 pills 2mg EH, 10 pills norgestrel, 6 pills 1mg EH)&lt;br /&gt;
|&amp;gt;=8-12mg/day&lt;br /&gt;
|While it is possible, even with a smaller dosage (&#039;&#039;&#039;at least 6mg&#039;&#039;&#039;), it&#039;s not that common. Ideally, use your blood tests to &#039;&#039;&#039;minmax&#039;&#039;&#039; your doses.&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
====== Injectable Estradiol Valerate (EV) ======&lt;br /&gt;
|Neofollin (can be ordered from pharmacies near Czechia, not tested in Greece), Delestrogen (Vial, unavailable), Progynon Depot (Ampules, unavailable), [[File:What-excuse-me.gif|thumb|[[HRT#Other resources|my honest reaction]]]]&lt;br /&gt;
|5-7mg/5 days&lt;br /&gt;
|&lt;br /&gt;
* Due to the large spikes in levels combined with the short [https://en.wikipedia.org/wiki/Biological_half-life half-life] it is not recommended for dosages to surpass the 5 day mark because it may cause menopause symptoms.&lt;br /&gt;
* Branded versions of this medication are not available in greece.&lt;br /&gt;
* The ampules contain a certain mg and do not allow for larger dosages, they are not re-usable. It is recommended to use a vial with a cap.&lt;br /&gt;
* Look for &#039;&#039;&#039;[https://arc-w.nihr.ac.uk/Wordpress/wp-content/uploads/2015/07/Low-dead-space-syringes.png syringe dead space](*)&#039;&#039;&#039;, e.g. if there&#039;s &#039;&#039;&#039;0.05mL&#039;&#039;&#039; remaining after injecting, draw &#039;&#039;&#039;+0.05mL&#039;&#039;&#039; from the vial.&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
====== Injectable Estradiol Enanthate (EEn) ======&lt;br /&gt;
|[[File:What-excuse-me.gif|thumb|[[HRT#Other resources|my honest reaction]]]]&lt;br /&gt;
|4-7mg/Week&lt;br /&gt;
7-10mg/10 days (7.2mg usually, depending on the vial, it&#039;s optimal because drawing cents of mL are hard to get right)&lt;br /&gt;
|&lt;br /&gt;
* You can multiply the weekly dosage by 2, which lasts up to 14 days (as much as the [https://en.wikipedia.org/wiki/Biological_half-life half-life] of Enanthate)&lt;br /&gt;
* Look for &#039;&#039;&#039;[https://arc-w.nihr.ac.uk/Wordpress/wp-content/uploads/2015/07/Low-dead-space-syringes.png syringe dead space](*)&#039;&#039;&#039;, e.g. if there&#039;s &#039;&#039;&#039;0.05mL&#039;&#039;&#039; remaining after injecting, draw &#039;&#039;&#039;+0.05mL&#039;&#039;&#039; from the vial.&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
====== Injectable Estradiol Undecylate (EU/EUn) ======&lt;br /&gt;
|[[File:What-excuse-me.gif|thumb|[[HRT#Other resources|my honest reaction]]]]&lt;br /&gt;
|There&#039;s not enough information on dosage. The frequency of those may differ according to the oil used (MCT/Castor oil). Indicative Dosages:&lt;br /&gt;
15-20mg/2 weeks&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--T:45--&amp;gt;&lt;br /&gt;
20-40mg+/4 weeks&lt;br /&gt;
|&lt;br /&gt;
* There&#039;s not enough information on its [https://en.wikipedia.org/wiki/Biological_half-life half-life], a higher dosage can be administered that can last up to 20-30 days.&lt;br /&gt;
* [https://en.wikipedia.org/wiki/Intramuscular_injection IM injections] last longer so they give better levels during the same period of time per injection.&lt;br /&gt;
* Needs at least 90 days to reach stable levels.&lt;br /&gt;
* Look for &#039;&#039;&#039;[https://arc-w.nihr.ac.uk/Wordpress/wp-content/uploads/2015/07/Low-dead-space-syringes.png syringe dead space](*)&#039;&#039;&#039;, e.g. if there&#039;s &#039;&#039;&#039;0.05mL&#039;&#039;&#039; remaining after injecting, draw &#039;&#039;&#039;+0.05mL&#039;&#039;&#039; from the vial.&lt;br /&gt;
|}&lt;br /&gt;
&#039;&#039;&#039;*&#039;&#039;&#039; = It has been mentioned that syringes account for dead space, although that is not 100% certain.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--T:46--&amp;gt;&lt;br /&gt;
=== Sublingual vs Oral ===&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|+&lt;br /&gt;
!Method&lt;br /&gt;
!Substance&lt;br /&gt;
!Dosage&lt;br /&gt;
!Observations&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
====== Oral ======&lt;br /&gt;
|Estradiol Valerate in pill form (e.g. Cyclacur)&lt;br /&gt;
|&amp;gt;=6mg/day&lt;br /&gt;
(max 10mg as per Dr. Powers)&lt;br /&gt;
|It is recommended that doses are taken separately on set time intervals during the day for more stable estradiol levels, e.g. for a 6mg dose you would take 2mg per 8 hours. By the oral route the active substance is metabolized by the liver and part of it is converted to estrone (E1), which has much less feminizing effects than estradiol (E2) so the desired effect is essentially prevented. The bioavailability of estradiol by oral administration is very low (~5%) and usually lower levels of E2 are observed in blood tests than other methods of administration. [anecdotal apo to server, wikipedia kai tttt - correct/expand?] It is also necessary to administer anti-androgens to reduce testosterone levels to the female range.&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
====== Sublingual ======&lt;br /&gt;
|Estradiol Valerate in pill form (e.g. Cyclacur)&lt;br /&gt;
|&amp;gt;=4mg/day&lt;br /&gt;
|It is recommended that doses are taken separately on set time intervals during the day for more stable estradiol levels, e.g. for a 6mg dose you would take 2mg per 8 hours. The sublingual way bypasses estradiol metabolism by the liver and has about 5 times the estradiol bioavailability of the oral way. This way, estradiol levels have greater range than orally (higher peak lower bottom), in oral they remain higher for ~12 hours while sublingually they go away after 3-4 hours [idk if honscience the study is from 2005 on cis women]&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== Vial info === &amp;lt;!--T:47--&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--T:48--&amp;gt;&lt;br /&gt;
=== Medications ===&lt;br /&gt;
For cyclacur: &#039;&#039;&#039;take only the white pills, the brown pills are Norgestrel which have 0.5mg of estradiol but has an androgenic effect and may also cause other side effects&#039;&#039;&#039;. &lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--T:49--&amp;gt;&lt;br /&gt;
==== Estrogens ====&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|+&lt;br /&gt;
!Brand Name(s)&lt;br /&gt;
!Substance&lt;br /&gt;
!Form&lt;br /&gt;
!Method of Administration&lt;br /&gt;
!Cost&lt;br /&gt;
!Cost with Healthcare Coverage&lt;br /&gt;
!Dosage&lt;br /&gt;
!Safety&lt;br /&gt;
!Notes&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
====== [https://www.galinos.gr/web/drugs/main/drugs/Cyclacur Cyclacur] ======&lt;br /&gt;
|Estradiol Valerate (EV)&lt;br /&gt;
|Pill tablet&lt;br /&gt;
|Orally or sublingually&lt;br /&gt;
|2.01€ for 11 pills ([https://www.galinos.gr/service/drugs/drawPackagePrice/1198 Pricemap])&lt;br /&gt;
~130.8-328.€/year&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--T:50--&amp;gt;&lt;br /&gt;
~10.9-27.4€/month&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--T:51--&amp;gt;&lt;br /&gt;
Prices are indicative, the cost depends on the dosage.&lt;br /&gt;
| -&lt;br /&gt;
|6mg-10mg/day (according to Dr. Will Powers)&lt;br /&gt;
4mg-8mg/day (according to Greek Endocrinologists)&lt;br /&gt;
|A&lt;br /&gt;
|&lt;br /&gt;
* &#039;&#039;&#039;Only white pills are used.&#039;&#039;&#039; Brown pills do have a bit of estradiol but arent taken due to other side effects.&lt;br /&gt;
* You need antiandrogens or GNRH antagonists if you haven&#039;t had an orchiectomy.&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
====== Progynova ======&lt;br /&gt;
|Estradiol Valerate (EV)&lt;br /&gt;
|Pill tablet&lt;br /&gt;
|Orally or sublingually&lt;br /&gt;
|~22€ for 72 pills of 1 mg or ~32€ for 72 pills of 2 mg&lt;br /&gt;
Prices are indicative, the cost depends on the dosage.&lt;br /&gt;
| -&lt;br /&gt;
|4mg-8mg/day&lt;br /&gt;
|A&lt;br /&gt;
|&lt;br /&gt;
* There is no reason to use it in Greece since Cyclacur is available in Greek pharmacies.&lt;br /&gt;
* You need antiandrogens or GNRH antagonists if you haven&#039;t had an orchiectomy.&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
====== Estrofem, Estrifam (german brand name), [https://www.galinos.gr/web/drugs/main/drugs/trisequens Trisequens] ======&lt;br /&gt;
|Estradiol Hemihydrate&lt;br /&gt;
|Pill tablet&lt;br /&gt;
|Orally or sublingually&lt;br /&gt;
|~30€ for 28 pills of 2 mg without shipping costs.&lt;br /&gt;
Prices are indicative, the cost depends on the dosage.&lt;br /&gt;
| -&lt;br /&gt;
|4mg-8mg/day&lt;br /&gt;
|A&lt;br /&gt;
|&lt;br /&gt;
* There is no reason to use it in Greece since Cyclacur is available in Greek pharmacies.&lt;br /&gt;
* You need antiandrogens or GNRH antagonists if you haven&#039;t had an orchiectomy.&lt;br /&gt;
* Trisequens, while being available in Greece, is odd to take with 12 pills being 2mg EH, 10 norgestrel, and 6 1mg EH, for a much higher price than [[HRT#Cyclacur|Cyclacur]].&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
====== [https://www.galinos.gr/web/drugs/main/drugs/Dermestril Dermestril] ======&lt;br /&gt;
|Estradiol Hemihydrate&lt;br /&gt;
|Patch&lt;br /&gt;
|Trans-dermally&lt;br /&gt;
|44€ for 24 patches of 100mcg&lt;br /&gt;
~15€ for 8 patches of 50mcg&lt;br /&gt;
| -&lt;br /&gt;
|50mcg/3.5 days (when starting off)&lt;br /&gt;
100mcg/3.5 days (whenever your e2 levels are stable)&lt;br /&gt;
|A&lt;br /&gt;
|&lt;br /&gt;
* &#039;&#039;&#039;If you have no idea how to apply patches watch this:&#039;&#039;&#039; [https://youtu.be/tXGIYWPqdpI?si=O0dlE19pq0ic0PZP Demonstrational Video]&lt;br /&gt;
* You need antiandrogens or GNRH antagonists if you haven&#039;t had an orchiectomy.&lt;br /&gt;
* 100mcg patches can be cut into 2 if needed.&lt;br /&gt;
|-&lt;br /&gt;
|Neofollin (can be ordered from pharmacies near Czechia, not tested in Greece), Delestrogen (Vial, unavailable), Progynon Depot (Ampules, unavailable)&lt;br /&gt;
|&lt;br /&gt;
====== Estradiol Valerate (EV) ======&lt;br /&gt;
|Injectable&lt;br /&gt;
|Subcutaneous or Intramuscular&lt;br /&gt;
|80€/year (including shipping costs, syringes and alcohol swabs)&lt;br /&gt;
| -&lt;br /&gt;
|5-7mg/5 days (monotherapy)&lt;br /&gt;
4-5mg/7 days (only in combination with an antiandrogen or GNRH agonist)&lt;br /&gt;
|A+&lt;br /&gt;
|&lt;br /&gt;
* It can be used without antiandrogens or GNRH agonists in ([[HRT#Μονοθεραπεία|Monotherapy]]) by increasing the dosage.&lt;br /&gt;
|-&lt;br /&gt;
| -&lt;br /&gt;
|&lt;br /&gt;
====== Estradiol Enanthate (EEn) ======&lt;br /&gt;
|Injectable&lt;br /&gt;
|Subcutaneous or Intramuscular&lt;br /&gt;
|80€/year (including shipping costs, syringes and alcohol swabs)&lt;br /&gt;
| -&lt;br /&gt;
|2.5mg-7mg/7 days&lt;br /&gt;
(usual dosage: 4mg/7days)&lt;br /&gt;
|A+&lt;br /&gt;
|&lt;br /&gt;
* It can be used without antiandrogens or GNRH agonists in ([[HRT#Μονοθεραπεία|Monotherapy]]) by increasing the dosage.&lt;br /&gt;
|-&lt;br /&gt;
| -&lt;br /&gt;
|&lt;br /&gt;
====== Estradiol Undecylate (EU, EUn) ======&lt;br /&gt;
|Injectable&lt;br /&gt;
|Subcutaneous or Intramuscular&lt;br /&gt;
|130€/year (including shipping costs, syringes and alcohol swabs)&lt;br /&gt;
| -&lt;br /&gt;
|15-20mg/2 weeks&lt;br /&gt;
20-40mg+/4 weeks&lt;br /&gt;
|A+&lt;br /&gt;
|&lt;br /&gt;
* There&#039;s not much info on dosages, usually seen in [[HRT#Μονοθεραπεία|monotherapy]].&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--T:52--&amp;gt;&lt;br /&gt;
==== Anti-Androgens and GNRH Agonists ====&lt;br /&gt;
These should &#039;&#039;&#039;not&#039;&#039;&#039; be taken sublingually.&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|+&lt;br /&gt;
!Brand Name(s)&lt;br /&gt;
!Substance&lt;br /&gt;
!Cost&lt;br /&gt;
!Cost with Healthcare Coverage&lt;br /&gt;
!Dosage&lt;br /&gt;
!Safety&lt;br /&gt;
!Form&lt;br /&gt;
!Type&lt;br /&gt;
!Notes&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
====== [https://www.galinos.gr/web/drugs/main/drugs/Androcur Androcur] ======&lt;br /&gt;
|Cyproterone Acetate (CPA) is also referred to as cypro&lt;br /&gt;
|21.58€/50mg * 50 pills &lt;br /&gt;
19.7-31.5€/year&lt;br /&gt;
&lt;br /&gt;
([https://www.galinos.gr/service/drugs/drawPackagePrice/8023 Pricemap])&lt;br /&gt;
|?&lt;br /&gt;
|12.5mg/2 days- 10mg/day&lt;br /&gt;
&#039;&#039;&#039;Larger doses shouldn&#039;t be administered&#039;&#039;&#039;&lt;br /&gt;
|C&lt;br /&gt;
|Pill tablet&lt;br /&gt;
|Progestin (Steroidal antiandrogen)&lt;br /&gt;
Stops testosterone production.&lt;br /&gt;
|The max recommended dosage is 10mg/day . Monitoring of prolactin levels is recommended through [[Blood Testing#MTF|blood testing]].&lt;br /&gt;
&#039;&#039;&#039;Many doctors give overdoses of 50 mg/day. Cyproterone is a strong anti-androgen and testosterone suppression is possible with lower doses. A change of doctor is recommended.&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--T:53--&amp;gt;&lt;br /&gt;
[[wikipedia:Side_effects_of_cyproterone_acetate|Side Effects]]:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--T:54--&amp;gt;&lt;br /&gt;
* Benign brain tumor.&lt;br /&gt;
* In rare cases, liver damage.&lt;br /&gt;
* Vitamin B12 deficiency.&lt;br /&gt;
* Breast cancer.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--T:55--&amp;gt;&lt;br /&gt;
Testosterone suppression can be achieved with even lower doses, however a 50 mg pill is difficult to cut into pieces of less than 12.5 mg even with a pill cutter.&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
====== [https://www.galinos.gr/web/drugs/main/drugs/Bicalut Bicalut] ======&lt;br /&gt;
|Bicalutamide (aka: bica)&lt;br /&gt;
|29.10 euro/30 pills&lt;br /&gt;
29.10 euro/month&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--T:56--&amp;gt;&lt;br /&gt;
~350 euro/year&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
([https://www.galinos.gr/service/drugs/drawPackagePrice/11120 Pricemap])&lt;br /&gt;
|6.77 euro/month (28 tabs)&lt;br /&gt;
~95 euro/year&lt;br /&gt;
|50mg/day&lt;br /&gt;
|A-&lt;br /&gt;
|Pill/Tablet&lt;br /&gt;
|Androgen receptor antagonist (Nonsteroidal antiandrogen)&lt;br /&gt;
Blocks absorption of all androgens (including testosterone)&lt;br /&gt;
|&#039;&#039;&#039;Serious negative interactions can be noted if combined with other anti-androgens and GNRH agonists (except progesterone)&#039;&#039;&#039;&lt;br /&gt;
&#039;&#039;&#039;Very rare&#039;&#039;&#039; chance for recoverable and non-fatal liver damage for people with a certain rare mutation.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--T:57--&amp;gt;&lt;br /&gt;
Most of the effects listen in the instruction manual are scaremongering. (it lists a very high chance of liver issues when they are actually very rare, and also lists photosensitivity, which if it even occurs at all, it should be quite rare. We are aware of nobody who had a negative interction between alexandrite laser hair removal and bicalutamide).&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--T:58--&amp;gt;&lt;br /&gt;
Note that bicalutamide, unlike most other anti-androgens, &#039;&#039;&#039;does not&#039;&#039;&#039; lower testosterone levels, in fact they usually rise as the body responds to testosterone receptors being inhibited. Do not be alarmed if you notice an increase of testosterone in your blood tests.&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
====== [https://www.galinos.gr/web/drugs/main/drugs/utrogestran Utrogestan] ======&lt;br /&gt;
|Progesterone (P4) it is also referred to as prog&lt;br /&gt;
|6.56 euro/15 caps (200mg)&lt;br /&gt;
([https://www.galinos.gr/service/drugs/drawPackagePrice/7619 Pricemap])&lt;br /&gt;
|?&lt;br /&gt;
|200mg daily (rectal administration)&lt;br /&gt;
|A&lt;br /&gt;
|Capsule&lt;br /&gt;
|Stops testosterone production.&lt;br /&gt;
|There is not much confirmed information about progesterone.&lt;br /&gt;
It can also be taken orally but the absorption rate is very low.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--T:59--&amp;gt;&lt;br /&gt;
Anecdotal claims:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--T:60--&amp;gt;&lt;br /&gt;
* Helps with breast development and with feminization in general.&lt;br /&gt;
* Can be given after one year of estradiol.&lt;br /&gt;
* Suggested to be given after the individual reaches Tanner stage 3.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--T:61--&amp;gt;&lt;br /&gt;
It can have androgenic or other (non-serious, recoverable) effects for some individuals - in particular it can be converted to DHT by the body even in combination with dutasteride or bicalutamide.&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
====== [https://www.galinos.gr/web/drugs/main/drugs/Arvekap Arvekap] ======&lt;br /&gt;
|Triptorelin&lt;br /&gt;
| -&lt;br /&gt;
|~200/year?&lt;br /&gt;
|&lt;br /&gt;
|A?&lt;br /&gt;
|Injection&lt;br /&gt;
|GNRH Agonist&lt;br /&gt;
(indirectly) Stops testosterone AND estrogen production&lt;br /&gt;
|Also a puberty blocker&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
====== [https://www.galinos.gr/web/drugs/main/drugs/aldactone Aldactone] ======&lt;br /&gt;
|Spironolactone&lt;br /&gt;
|5.19 euro/20 tabs (100mg)&lt;br /&gt;
([https://www.galinos.gr/service/drugs/drawPackagePrice/148 Pricemap])&lt;br /&gt;
|?&lt;br /&gt;
|50mg-200mg/day&lt;br /&gt;
|B-C&lt;br /&gt;
|Tablet&lt;br /&gt;
|Antimineralocorticoid/MCRA&lt;br /&gt;
|Very inefficient, makes you pee, it&#039;s a medication for blood pressure&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
|Flutamide&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|F---&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|Only in this table as an example to avoid&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--T:62--&amp;gt;&lt;br /&gt;
==== Other anti-androgens (optional) ====&lt;br /&gt;
These are used to block conversion of other androgens to DHT (which causes hair loss (hair) and body hair growth). They aren&#039;t general use Anti-Androgens.&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
!Brand Name(s)&lt;br /&gt;
!Substance&lt;br /&gt;
!Cost&lt;br /&gt;
!Cost with Healthcare Coverage&lt;br /&gt;
!Dosage&lt;br /&gt;
!Safety&lt;br /&gt;
!Form&lt;br /&gt;
!Type&lt;br /&gt;
!Notes&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
====== [https://www.galinos.gr/web/drugs/main/packages/26485 Dastidem], [https://www.galinos.gr/web/drugs/main/packages/25557 Rafuster], [https://www.galinos.gr/web/drugs/main/packages/25893 Duaride], [https://www.galinos.gr/web/drugs/main/packages/25894 Dustezor] ======&lt;br /&gt;
|Dutasteride&lt;br /&gt;
|7.90€/30 caps&lt;br /&gt;
|~6€/30 caps&lt;br /&gt;
|0.5mg/day (?/TBD)&lt;br /&gt;
|A-&lt;br /&gt;
|Capsule&lt;br /&gt;
| -&lt;br /&gt;
|High effectiveness.&lt;br /&gt;
|-&lt;br /&gt;
| -&lt;br /&gt;
|Finasteride&lt;br /&gt;
| -&lt;br /&gt;
| -&lt;br /&gt;
| -&lt;br /&gt;
|F&lt;br /&gt;
| -&lt;br /&gt;
| -&lt;br /&gt;
|Effectiveness is none to medium (Just take Dutasteride - will not stop conversion of Progesterone to DHT)&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--T:63--&amp;gt;&lt;br /&gt;
=== Blood Levels ===&lt;br /&gt;
&lt;br /&gt;
==== Refer to the [[Blood Testing]] page. ====&amp;lt;!--T:81--&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Transmasc ==&lt;br /&gt;
&lt;br /&gt;
=== Medications ===&lt;br /&gt;
&lt;br /&gt;
==== Testosterone ====&lt;br /&gt;
[https://www.galinos.gr/web/drugs/main/substances/testosterone/marketing Galinos.gr&#039;s testosterone availability page]&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|+&lt;br /&gt;
!Brand Name(s)&lt;br /&gt;
!Substance&lt;br /&gt;
!Form&lt;br /&gt;
!Method of Administration&lt;br /&gt;
!Cost&lt;br /&gt;
!Cost with Healthcare Coverage&lt;br /&gt;
!Dosage&lt;br /&gt;
!Safety&lt;br /&gt;
!Notes&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
====== [https://www.galinos.gr/web/drugs/main/packages/4929 Norma] ======&lt;br /&gt;
|Testosterone Enanthate&lt;br /&gt;
|Injection/Ampule&lt;br /&gt;
|Subcutaneous or Intramuscular&lt;br /&gt;
|17.67€/ampule &lt;br /&gt;
([https://www.galinos.gr/service/drugs/drawPackagePrice/4929 Pricemap])&lt;br /&gt;
|?&lt;br /&gt;
|?&lt;br /&gt;
|?&lt;br /&gt;
| -&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
====== [https://www.galinos.gr/web/drugs/main/packages/21943 Nebido] ======&lt;br /&gt;
|Testosterone Undecanoate&lt;br /&gt;
|Injection/Vial&lt;br /&gt;
|Intramuscular&lt;br /&gt;
|100.37€/vial&lt;br /&gt;
([https://www.galinos.gr/service/drugs/drawPackagePrice/21943 Pricemap])&lt;br /&gt;
|~32.52€/vial (you pay 25%)&lt;br /&gt;
|1 vial (1000mg/4mL)/10-20 weeks&lt;br /&gt;
|A&lt;br /&gt;
|As a starting dose &#039;&#039;&#039;after a year of HRT&#039;&#039;&#039;, you could also consider:&lt;br /&gt;
&lt;br /&gt;
* Instead of injecting one vial per 20 weeks, you do half every 10-12 weeks, however nothing could be sourced to support this. Though logically it could make sense as a practice.&lt;br /&gt;
* Do a test at 6 weeks after starting, if T is too high don&#039;t take the 2nd dose, if it&#039;s not you can take the 2nd and then test 2 weeks before every other dose.&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
====== [https://www.galinos.gr/web/drugs/main/packages/15739 Tostran] ======&lt;br /&gt;
|Testogel&lt;br /&gt;
|Gel&lt;br /&gt;
|Trans-dermally&lt;br /&gt;
|&#039;&#039;&#039;Starting dose&#039;&#039;&#039;&lt;br /&gt;
&amp;lt;!--T:82--&amp;gt;&lt;br /&gt;
* 35.54€/2 months&lt;br /&gt;
* 213.24€/year&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--T:83--&amp;gt;&lt;br /&gt;
&#039;&#039;&#039;30 mg dose&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--T:84--&amp;gt;&lt;br /&gt;
* 35.54€/40 days&lt;br /&gt;
* ~324.30€/year&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--T:85--&amp;gt;&lt;br /&gt;
&#039;&#039;&#039;40 mg dose&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--T:73--&amp;gt;&lt;br /&gt;
* 35.54€/30 days&lt;br /&gt;
* 426.48€/year&lt;br /&gt;
([https://www.galinos.gr/service/drugs/drawPackagePrice/15739 Pricemap])&lt;br /&gt;
|35.54€ -&amp;gt; 8.89€&lt;br /&gt;
|20mg/day (starting dose)&lt;br /&gt;
30-40mg/day&lt;br /&gt;
|A&lt;br /&gt;
|&lt;br /&gt;
* 1 pump of Tostran (&#039;&#039;&#039;0.5g&#039;&#039;&#039;) delivers 10 mg of T.&lt;br /&gt;
* 2 pumps of Tostran are 1 pump of Testogel (20.25mg of T)&lt;br /&gt;
* Can cause skin reactions.&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
==== GNRH Agonists ====&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
!Brand Name(s)&lt;br /&gt;
!Substance&lt;br /&gt;
! Cost&lt;br /&gt;
!Cost with Healthcare Coverage&lt;br /&gt;
!Dosage&lt;br /&gt;
!Safety&lt;br /&gt;
!Form&lt;br /&gt;
!Type&lt;br /&gt;
!Notes&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
====== [https://www.galinos.gr/web/drugs/main/drugs/Arvekap Arvekap] ======&lt;br /&gt;
|Triptorelin&lt;br /&gt;
| -&lt;br /&gt;
|~200/year?&lt;br /&gt;
|&lt;br /&gt;
|A?&lt;br /&gt;
|Injection&lt;br /&gt;
|GNRH Agonist&lt;br /&gt;
(indirectly) Stops testosterone AND estrogen production&lt;br /&gt;
|Also a puberty blocker&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
==== Other anti-androgens (optional) ====&lt;br /&gt;
These are used to block conversion of other androgens to DHT (which causes hair loss (hair) and body hair growth). They aren&#039;t general use Anti-Androgens.&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
!Brand Name(s)&lt;br /&gt;
!Substance&lt;br /&gt;
!Cost&lt;br /&gt;
!Cost with Healthcare Coverage&lt;br /&gt;
!Dosage&lt;br /&gt;
!Safety&lt;br /&gt;
!Form&lt;br /&gt;
!Type&lt;br /&gt;
!Notes&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
====== [https://www.galinos.gr/web/drugs/main/packages/26485 Dastidem], [https://www.galinos.gr/web/drugs/main/packages/25557 Rafuster], [https://www.galinos.gr/web/drugs/main/packages/25893 Duaride], [https://www.galinos.gr/web/drugs/main/packages/25894 Dustezor] ======&lt;br /&gt;
|Dutasteride&lt;br /&gt;
|7.90€/30 caps&lt;br /&gt;
|~6€/30 caps&lt;br /&gt;
|0.5mg/day (?/TBD)&lt;br /&gt;
|A-&lt;br /&gt;
|Capsule&lt;br /&gt;
| -&lt;br /&gt;
|High effectiveness. &lt;br /&gt;
Not to be confused with proper Anti-Androgens.&lt;br /&gt;
|}&lt;br /&gt;
== Legal ==&lt;br /&gt;
It is legal to buy anything without a diagnosis or a prescription (off the counter - OTC), Testosterone can be hit or miss, look for [https://www.galinos.gr/web/drugs/main/packages/15739 Tostran] (Testogel) or [https://www.galinos.gr/web/drugs/main/packages/4929 TEn] (Testosterone Enanthate/Norma, injections).  &lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--T:86--&amp;gt;&lt;br /&gt;
You can also check the &#039;&#039;&#039;[https://diyon.top/map Trans-Friendly Pharmacies Map]&#039;&#039;&#039; for any pharmacies near you (this goes for both Transfem and Transmasc HRT). &lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--T:75--&amp;gt;&lt;br /&gt;
There is no minimum or maximum legal age for someone to start HRT. &lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--T:76--&amp;gt;&lt;br /&gt;
It is not legally mandatory for someone to have a diagnosis by a psychiatrist in order to medically transition.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--T:77--&amp;gt;&lt;br /&gt;
There is no legally mandatory time restriction for a psychiatrist to monitor you before diagnosing you.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--T:78--&amp;gt;&lt;br /&gt;
You don&#039;t legally need to be on HRT in order to be exempt from the [[army]], change your [[Legal|legal sex]], or to have a [[surgery]].&lt;br /&gt;
&lt;br /&gt;
== Other resources == &amp;lt;!--T:79--&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--T:80--&amp;gt;&lt;br /&gt;
* Simulator: https://www.estrannai.se/&lt;br /&gt;
* https://transfemscience.org/ (note, the authors of this site disagree with a lot of what they are saying, regardless, it is still interesting)&lt;br /&gt;
** Introduction to Hormone Therapy for Transfeminine People: https://transfemscience.org/articles/transfem-intro/&lt;br /&gt;
** Older simulator: https://transfemscience.org/misc/injectable-e2-simulator/&lt;br /&gt;
** Dosage calculator: https://transfemscience.org/misc/injectable-dose-vol-conc-conv/&lt;br /&gt;
* https://diyhrt.wiki/ (alt link: https://anarch.cc/transfeminine-diy-hrt-the-ultimate-guide-2/)&lt;br /&gt;
* https://hrtcafe.net/&lt;br /&gt;
* ?? https://hrt.coffee/&lt;br /&gt;
* https://www.reddit.com/r/TransDIY/&lt;br /&gt;
* https://www.reddit.com/r/TransfemScience/&lt;br /&gt;
* https://groups.io/g/MTFHRT/wiki/29602 (alt link: https://anarch.cc/mtf-hrt-ultimate-diy/)&lt;br /&gt;
* https://hrt.cat/ - info for making your own (you will probably not need it - version 1.0: https://hrtcafe.net/hrtcat/)&lt;br /&gt;
* https://archive.ph/uQb8g (alt link: https://anarch.cc/making-your-own-injections/, as above)&lt;br /&gt;
* https://crimethinc.com/2022/12/15/producing-transdermal-estrogen-a-do-it-yourself-guide (alt link: https://anarch.cc/producing-transdermal-estrogen-a-do-it-yourself-guide/, as above)&lt;br /&gt;
* https://archive.ph/cpy7k (alt link: https://anarch.cc/homebrewing-hormones-mtf-guide/, as above)&lt;br /&gt;
&amp;lt;/translate&amp;gt;&lt;/div&gt;</summary>
		<author><name>Goblinmoder</name></author>
	</entry>
	<entry>
		<id>https://wiki.diyon.top/index.php?title=Main_Page&amp;diff=977</id>
		<title>Main Page</title>
		<link rel="alternate" type="text/html" href="https://wiki.diyon.top/index.php?title=Main_Page&amp;diff=977"/>
		<updated>2025-04-11T17:02:16Z</updated>

		<summary type="html">&lt;p&gt;Goblinmoder: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{#seo:|title=Main Page}}&lt;br /&gt;
{{#seo:|description=A general purpose greek-based, unbiased, trans wiki for everyone.}}&lt;br /&gt;
&lt;br /&gt;
&amp;lt;languages/&amp;gt;&lt;br /&gt;
&amp;lt;translate&amp;gt;&lt;br /&gt;
&amp;lt;!--T:1--&amp;gt;&lt;br /&gt;
Out with the old and in with the new, the wiki is alive again.&lt;br /&gt;
&lt;br /&gt;
==== Page Catalog: ==== &amp;lt;!--T:2--&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--T:3--&amp;gt;&lt;br /&gt;
* [[HRT]]&lt;br /&gt;
* [[Quick Guide]]&lt;br /&gt;
* [[Doctors]]&lt;br /&gt;
* [https://diyon.top/map Pharmacies]&lt;br /&gt;
* [[Customs]]&lt;br /&gt;
* [[Blood Testing|Blood tests]]&lt;br /&gt;
* [[Legal]]&lt;br /&gt;
* [[Army]]&lt;br /&gt;
* [[Donate]]&lt;br /&gt;
* [[About]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--T:4--&amp;gt;&lt;br /&gt;
Please don&#039;t share this site with cis people unless they are questioning. If you want to get involved, or for site feedback, questions, or to report positive/negative experiences with doctors/shops/etc, contact us at &#039;&#039;&#039;fox@diyon.top&#039;&#039;&#039;&lt;br /&gt;
&amp;lt;/translate&amp;gt;&lt;/div&gt;</summary>
		<author><name>Goblinmoder</name></author>
	</entry>
	<entry>
		<id>https://wiki.diyon.top/index.php?title=HRT&amp;diff=976</id>
		<title>HRT</title>
		<link rel="alternate" type="text/html" href="https://wiki.diyon.top/index.php?title=HRT&amp;diff=976"/>
		<updated>2025-04-11T16:59:34Z</updated>

		<summary type="html">&lt;p&gt;Goblinmoder: testing titles&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{#seo:|title=HRT}}&lt;br /&gt;
&lt;br /&gt;
&amp;lt;languages/&amp;gt;&lt;br /&gt;
&amp;lt;translate&amp;gt;&lt;br /&gt;
&amp;lt;!--T:41--&amp;gt;&lt;br /&gt;
After around a month on HRT some of your ranges in your [[Blood Testing|blood test]] should be within desired ranges.&lt;br /&gt;
&lt;br /&gt;
Pricemaps are there to evaluate prices through &#039;&#039;&#039;galinos.gr&#039;&#039;&#039; (in case something is outdated, look for the green line that says &amp;quot;Λιανική&amp;quot;)&lt;br /&gt;
&lt;br /&gt;
We are open to discussion and actively on-going changes in formatting and contents of this Page and Website (in general). The e-mail address to refer to is &#039;&#039;&#039;fox@diyon.top&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--T:43--&amp;gt;&lt;br /&gt;
== Transfem ==&lt;br /&gt;
Taking Puberty Blockers ([[HRT#Antiandrogens and GNRH Agonists|GNRH Agonists]], e.g: Arvekap) or any Anti Androgen (e.g: Aldactone, Androcur) &#039;&#039;&#039;without [[HRT#Estrogens|Estrogens]]&#039;&#039;&#039; is generally discouraged even during youth transitioning (This is &#039;&#039;&#039;non-definitive&#039;&#039;&#039; for Enby folks)&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--T:44--&amp;gt;&lt;br /&gt;
=== Monotherapy ===&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|+&lt;br /&gt;
!Type&lt;br /&gt;
!Commercial Names&lt;br /&gt;
!Dosage&lt;br /&gt;
!Notes&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
====== Sublingual (E Valerate or Hemihydrate) ======&lt;br /&gt;
|Cyclacur (EV), Estrofem (EH, imported), Trisequens (12 pills 2mg EH, 10 pills norgestrel, 6 pills 1mg EH)&lt;br /&gt;
|&amp;gt;=8-12mg/day&lt;br /&gt;
|While it is possible, even with a smaller dosage (&#039;&#039;&#039;at least 6mg&#039;&#039;&#039;), it&#039;s not that common. Ideally, use your blood tests to &#039;&#039;&#039;minmax&#039;&#039;&#039; your doses.&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
====== Injectable Estradiol Valerate (EV) ======&lt;br /&gt;
|Neofollin (can be ordered from pharmacies near Czechia, not tested in Greece), Delestrogen (Vial, unavailable), Progynon Depot (Ampules, unavailable), [[File:What-excuse-me.gif|thumb|[[HRT#Other resources|my honest reaction]]]]&lt;br /&gt;
|5-7mg/5 days&lt;br /&gt;
|&lt;br /&gt;
* Due to the large spikes in levels combined with the short [https://en.wikipedia.org/wiki/Biological_half-life half-life] it is not recommended for dosages to surpass the 5 day mark because it may cause menopause symptoms.&lt;br /&gt;
* Branded versions of this medication are not available in greece.&lt;br /&gt;
* The ampules contain a certain mg and do not allow for larger dosages, they are not re-usable. It is recommended to use a vial with a cap.&lt;br /&gt;
* Look for &#039;&#039;&#039;[https://arc-w.nihr.ac.uk/Wordpress/wp-content/uploads/2015/07/Low-dead-space-syringes.png syringe dead space](*)&#039;&#039;&#039;, e.g. if there&#039;s &#039;&#039;&#039;0.05mL&#039;&#039;&#039; remaining after injecting, draw &#039;&#039;&#039;+0.05mL&#039;&#039;&#039; from the vial.&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
====== Injectable Estradiol Enanthate (EEn) ======&lt;br /&gt;
|[[File:What-excuse-me.gif|thumb|[[HRT#Other resources|my honest reaction]]]]&lt;br /&gt;
|4-7mg/Week&lt;br /&gt;
7-10mg/10 days (7.2mg usually, depending on the vial, it&#039;s optimal because drawing cents of mL are hard to get right)&lt;br /&gt;
|&lt;br /&gt;
* You can multiply the weekly dosage by 2, which lasts up to 14 days (as much as the [https://en.wikipedia.org/wiki/Biological_half-life half-life] of Enanthate)&lt;br /&gt;
* Look for &#039;&#039;&#039;[https://arc-w.nihr.ac.uk/Wordpress/wp-content/uploads/2015/07/Low-dead-space-syringes.png syringe dead space](*)&#039;&#039;&#039;, e.g. if there&#039;s &#039;&#039;&#039;0.05mL&#039;&#039;&#039; remaining after injecting, draw &#039;&#039;&#039;+0.05mL&#039;&#039;&#039; from the vial.&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
====== Injectable Estradiol Undecylate (EU/EUn) ======&lt;br /&gt;
|[[File:What-excuse-me.gif|thumb|[[HRT#Other resources|my honest reaction]]]]&lt;br /&gt;
|There&#039;s not enough information on dosage. The frequency of those may differ according to the oil used (MCT/Castor oil). Indicative Dosages:&lt;br /&gt;
15-20mg/2 weeks&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--T:45--&amp;gt;&lt;br /&gt;
20-40mg+/4 weeks&lt;br /&gt;
|&lt;br /&gt;
* There&#039;s not enough information on its [https://en.wikipedia.org/wiki/Biological_half-life half-life], a higher dosage can be administered that can last up to 20-30 days.&lt;br /&gt;
* [https://en.wikipedia.org/wiki/Intramuscular_injection IM injections] last longer so they give better levels during the same period of time per injection.&lt;br /&gt;
* Needs at least 90 days to reach stable levels.&lt;br /&gt;
* Look for &#039;&#039;&#039;[https://arc-w.nihr.ac.uk/Wordpress/wp-content/uploads/2015/07/Low-dead-space-syringes.png syringe dead space](*)&#039;&#039;&#039;, e.g. if there&#039;s &#039;&#039;&#039;0.05mL&#039;&#039;&#039; remaining after injecting, draw &#039;&#039;&#039;+0.05mL&#039;&#039;&#039; from the vial.&lt;br /&gt;
|}&lt;br /&gt;
&#039;&#039;&#039;*&#039;&#039;&#039; = It has been mentioned that syringes account for dead space, although that is not 100% certain.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--T:46--&amp;gt;&lt;br /&gt;
=== Sublingual vs Oral ===&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|+&lt;br /&gt;
!Method&lt;br /&gt;
!Substance&lt;br /&gt;
!Dosage&lt;br /&gt;
!Observations&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
====== Oral ======&lt;br /&gt;
|Estradiol Valerate in pill form (e.g. Cyclacur)&lt;br /&gt;
|&amp;gt;=6mg/day&lt;br /&gt;
(max 10mg as per Dr. Powers)&lt;br /&gt;
|It is recommended that doses are taken separately on set time intervals during the day for more stable estradiol levels, e.g. for a 6mg dose you would take 2mg per 8 hours. By the oral route the active substance is metabolized by the liver and part of it is converted to estrone (E1), which has much less feminizing effects than estradiol (E2) so the desired effect is essentially prevented. The bioavailability of estradiol by oral administration is very low (~5%) and usually lower levels of E2 are observed in blood tests than other methods of administration. [anecdotal apo to server, wikipedia kai tttt - correct/expand?] It is also necessary to administer anti-androgens to reduce testosterone levels to the female range.&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
====== Sublingual ======&lt;br /&gt;
|Estradiol Valerate in pill form (e.g. Cyclacur)&lt;br /&gt;
|&amp;gt;=4mg/day&lt;br /&gt;
|It is recommended that doses are taken separately on set time intervals during the day for more stable estradiol levels, e.g. for a 6mg dose you would take 2mg per 8 hours. The sublingual way bypasses estradiol metabolism by the liver and has about 5 times the estradiol bioavailability of the oral way. This way, estradiol levels have greater range than orally (higher peak lower bottom), in oral they remain higher for ~12 hours while sublingually they go away after 3-4 hours [idk if honscience the study is from 2005 on cis women]&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== Vial info === &amp;lt;!--T:47--&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--T:48--&amp;gt;&lt;br /&gt;
=== Medications ===&lt;br /&gt;
For cyclacur: &#039;&#039;&#039;take only the white pills, the brown pills are Norgestrel which have 0.5mg of estradiol but has an androgenic effect and may also cause other side effects&#039;&#039;&#039;. &lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--T:49--&amp;gt;&lt;br /&gt;
==== Estrogens ====&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|+&lt;br /&gt;
!Brand Name(s)&lt;br /&gt;
!Substance&lt;br /&gt;
!Form&lt;br /&gt;
!Method of Administration&lt;br /&gt;
!Cost&lt;br /&gt;
!Cost with Healthcare Coverage&lt;br /&gt;
!Dosage&lt;br /&gt;
!Safety&lt;br /&gt;
!Notes&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
====== [https://www.galinos.gr/web/drugs/main/drugs/Cyclacur Cyclacur] ======&lt;br /&gt;
|Estradiol Valerate (EV)&lt;br /&gt;
|Pill tablet&lt;br /&gt;
|Orally or sublingually&lt;br /&gt;
|2.01€ for 11 pills ([https://www.galinos.gr/service/drugs/drawPackagePrice/1198 Pricemap])&lt;br /&gt;
~130.8-328.€/year&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--T:50--&amp;gt;&lt;br /&gt;
~10.9-27.4€/month&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--T:51--&amp;gt;&lt;br /&gt;
Prices are indicative, the cost depends on the dosage.&lt;br /&gt;
| -&lt;br /&gt;
|6mg-10mg/day (according to Dr. Will Powers)&lt;br /&gt;
4mg-8mg/day (according to Greek Endocrinologists)&lt;br /&gt;
|A&lt;br /&gt;
|&lt;br /&gt;
* &#039;&#039;&#039;Only white pills are used.&#039;&#039;&#039; Brown pills do have a bit of estradiol but arent taken due to other side effects.&lt;br /&gt;
* You need antiandrogens or GNRH antagonists if you haven&#039;t had an orchiectomy.&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
====== Progynova ======&lt;br /&gt;
|Estradiol Valerate (EV)&lt;br /&gt;
|Pill tablet&lt;br /&gt;
|Orally or sublingually&lt;br /&gt;
|~22€ for 72 pills of 1 mg or ~32€ for 72 pills of 2 mg&lt;br /&gt;
Prices are indicative, the cost depends on the dosage.&lt;br /&gt;
| -&lt;br /&gt;
|4mg-8mg/day&lt;br /&gt;
|A&lt;br /&gt;
|&lt;br /&gt;
* There is no reason to use it in Greece since Cyclacur is available in Greek pharmacies.&lt;br /&gt;
* You need antiandrogens or GNRH antagonists if you haven&#039;t had an orchiectomy.&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
====== Estrofem, Estrifam (german brand name), [https://www.galinos.gr/web/drugs/main/drugs/trisequens Trisequens] ======&lt;br /&gt;
|Estradiol Hemihydrate&lt;br /&gt;
|Pill tablet&lt;br /&gt;
|Orally or sublingually&lt;br /&gt;
|~30€ for 28 pills of 2 mg without shipping costs.&lt;br /&gt;
Prices are indicative, the cost depends on the dosage.&lt;br /&gt;
| -&lt;br /&gt;
|4mg-8mg/day&lt;br /&gt;
|A&lt;br /&gt;
|&lt;br /&gt;
* There is no reason to use it in Greece since Cyclacur is available in Greek pharmacies.&lt;br /&gt;
* You need antiandrogens or GNRH antagonists if you haven&#039;t had an orchiectomy.&lt;br /&gt;
* Trisequens, while being available in Greece, is odd to take with 12 pills being 2mg EH, 10 norgestrel, and 6 1mg EH, for a much higher price than [[HRT#Cyclacur|Cyclacur]].&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
====== [https://www.galinos.gr/web/drugs/main/drugs/Dermestril Dermestril] ======&lt;br /&gt;
|Estradiol Hemihydrate&lt;br /&gt;
|Patch&lt;br /&gt;
|Trans-dermally&lt;br /&gt;
|44€ for 24 patches of 100mcg&lt;br /&gt;
~15€ for 8 patches of 50mcg&lt;br /&gt;
| -&lt;br /&gt;
|50mcg/3.5 days (when starting off)&lt;br /&gt;
100mcg/3.5 days (whenever your e2 levels are stable)&lt;br /&gt;
|A&lt;br /&gt;
|&lt;br /&gt;
* &#039;&#039;&#039;If you have no idea how to apply patches watch this:&#039;&#039;&#039; [https://youtu.be/tXGIYWPqdpI?si=O0dlE19pq0ic0PZP Demonstrational Video]&lt;br /&gt;
* You need antiandrogens or GNRH antagonists if you haven&#039;t had an orchiectomy.&lt;br /&gt;
* 100mcg patches can be cut into 2 if needed.&lt;br /&gt;
|-&lt;br /&gt;
|Neofollin (can be ordered from pharmacies near Czechia, not tested in Greece), Delestrogen (Vial, unavailable), Progynon Depot (Ampules, unavailable)&lt;br /&gt;
|&lt;br /&gt;
====== Estradiol Valerate (EV) ======&lt;br /&gt;
|Injectable&lt;br /&gt;
|Subcutaneous or Intramuscular&lt;br /&gt;
|80€/year (including shipping costs, syringes and alcohol swabs)&lt;br /&gt;
| -&lt;br /&gt;
|5-7mg/5 days (monotherapy)&lt;br /&gt;
4-5mg/7 days (only in combination with an antiandrogen or GNRH agonist)&lt;br /&gt;
|A+&lt;br /&gt;
|&lt;br /&gt;
* It can be used without antiandrogens or GNRH agonists in ([[HRT#Μονοθεραπεία|Monotherapy]]) by increasing the dosage.&lt;br /&gt;
|-&lt;br /&gt;
| -&lt;br /&gt;
|&lt;br /&gt;
====== Estradiol Enanthate (EEn) ======&lt;br /&gt;
|Injectable&lt;br /&gt;
|Subcutaneous or Intramuscular&lt;br /&gt;
|80€/year (including shipping costs, syringes and alcohol swabs)&lt;br /&gt;
| -&lt;br /&gt;
|2.5mg-7mg/7 days&lt;br /&gt;
(usual dosage: 4mg/7days)&lt;br /&gt;
|A+&lt;br /&gt;
|&lt;br /&gt;
* It can be used without antiandrogens or GNRH agonists in ([[HRT#Μονοθεραπεία|Monotherapy]]) by increasing the dosage.&lt;br /&gt;
|-&lt;br /&gt;
| -&lt;br /&gt;
|&lt;br /&gt;
====== Estradiol Undecylate (EU, EUn) ======&lt;br /&gt;
|Injectable&lt;br /&gt;
|Subcutaneous or Intramuscular&lt;br /&gt;
|130€/year (including shipping costs, syringes and alcohol swabs)&lt;br /&gt;
| -&lt;br /&gt;
|15-20mg/2 weeks&lt;br /&gt;
20-40mg+/4 weeks&lt;br /&gt;
|A+&lt;br /&gt;
|&lt;br /&gt;
* There&#039;s not much info on dosages, usually seen in [[HRT#Μονοθεραπεία|monotherapy]].&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--T:52--&amp;gt;&lt;br /&gt;
==== Anti-Androgens and GNRH Agonists ====&lt;br /&gt;
These should &#039;&#039;&#039;not&#039;&#039;&#039; be taken sublingually.&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|+&lt;br /&gt;
!Brand Name(s)&lt;br /&gt;
!Substance&lt;br /&gt;
!Cost&lt;br /&gt;
!Cost with Healthcare Coverage&lt;br /&gt;
!Dosage&lt;br /&gt;
!Safety&lt;br /&gt;
!Form&lt;br /&gt;
!Type&lt;br /&gt;
!Notes&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
====== [https://www.galinos.gr/web/drugs/main/drugs/Androcur Androcur] ======&lt;br /&gt;
|Cyproterone Acetate (CPA) is also referred to as cypro&lt;br /&gt;
|21.58€/50mg * 50 pills &lt;br /&gt;
19.7-31.5€/year&lt;br /&gt;
&lt;br /&gt;
([https://www.galinos.gr/service/drugs/drawPackagePrice/8023 Pricemap])&lt;br /&gt;
|?&lt;br /&gt;
|12.5mg/2 days- 10mg/day&lt;br /&gt;
&#039;&#039;&#039;Larger doses shouldn&#039;t be administered&#039;&#039;&#039;&lt;br /&gt;
|C&lt;br /&gt;
|Pill tablet&lt;br /&gt;
|Progestin (Steroidal antiandrogen)&lt;br /&gt;
Stops testosterone production.&lt;br /&gt;
|The max recommended dosage is 10mg/day . Monitoring of prolactin levels is recommended through [[Blood Testing#MTF|blood testing]].&lt;br /&gt;
&#039;&#039;&#039;Many doctors give overdoses of 50 mg/day. Cyproterone is a strong anti-androgen and testosterone suppression is possible with lower doses. A change of doctor is recommended.&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--T:53--&amp;gt;&lt;br /&gt;
[[wikipedia:Side_effects_of_cyproterone_acetate|Side Effects]]:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--T:54--&amp;gt;&lt;br /&gt;
* Benign brain tumor.&lt;br /&gt;
* In rare cases, liver damage.&lt;br /&gt;
* Vitamin B12 deficiency.&lt;br /&gt;
* Breast cancer.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--T:55--&amp;gt;&lt;br /&gt;
Testosterone suppression can be achieved with even lower doses, however a 50 mg pill is difficult to cut into pieces of less than 12.5 mg even with a pill cutter.&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
====== [https://www.galinos.gr/web/drugs/main/drugs/Bicalut Bicalut] ======&lt;br /&gt;
|Bicalutamide (aka: bica)&lt;br /&gt;
|29.10 euro/30 pills&lt;br /&gt;
29.10 euro/month&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--T:56--&amp;gt;&lt;br /&gt;
~350 euro/year&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
([https://www.galinos.gr/service/drugs/drawPackagePrice/11120 Pricemap])&lt;br /&gt;
|6.77 euro/month (28 tabs)&lt;br /&gt;
~95 euro/year&lt;br /&gt;
|50mg/day&lt;br /&gt;
|A-&lt;br /&gt;
|Pill/Tablet&lt;br /&gt;
|Androgen receptor antagonist (Nonsteroidal antiandrogen)&lt;br /&gt;
Blocks absorption of all androgens (including testosterone)&lt;br /&gt;
|&#039;&#039;&#039;Serious negative interactions can be noted if combined with other anti-androgens and GNRH agonists (except progesterone)&#039;&#039;&#039;&lt;br /&gt;
&#039;&#039;&#039;Very rare&#039;&#039;&#039; chance for recoverable and non-fatal liver damage for people with a certain rare mutation.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--T:57--&amp;gt;&lt;br /&gt;
Most of the effects listen in the instruction manual are scaremongering. (it lists a very high chance of liver issues when they are actually very rare, and also lists photosensitivity, which if it even occurs at all, it should be quite rare. We are aware of nobody who had a negative interction between alexandrite laser hair removal and bicalutamide).&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--T:58--&amp;gt;&lt;br /&gt;
Note that bicalutamide, unlike most other anti-androgens, &#039;&#039;&#039;does not&#039;&#039;&#039; lower testosterone levels, in fact they usually rise as the body responds to testosterone receptors being inhibited. Do not be alarmed if you notice an increase of testosterone in your blood tests.&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
====== [https://www.galinos.gr/web/drugs/main/drugs/utrogestran Utrogestan] ======&lt;br /&gt;
|Progesterone (P4) it is also referred to as prog&lt;br /&gt;
|6.56 euro/15 caps (200mg)&lt;br /&gt;
([https://www.galinos.gr/service/drugs/drawPackagePrice/7619 Pricemap])&lt;br /&gt;
|?&lt;br /&gt;
|200mg daily (rectal administration)&lt;br /&gt;
|A&lt;br /&gt;
|Capsule&lt;br /&gt;
|Stops testosterone production.&lt;br /&gt;
|There is not much confirmed information about progesterone.&lt;br /&gt;
It can also be taken orally but the absorption rate is very low.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--T:59--&amp;gt;&lt;br /&gt;
Anecdotal claims:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--T:60--&amp;gt;&lt;br /&gt;
* Helps with breast development and with feminization in general.&lt;br /&gt;
* Can be given after one year of estradiol.&lt;br /&gt;
* Suggested to be given after the individual reaches Tanner stage 3.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--T:61--&amp;gt;&lt;br /&gt;
It can have androgenic or other (non-serious, recoverable) effects for some individuals - in particular it can be converted to DHT by the body even in combination with dutasteride or bicalutamide.&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
====== [https://www.galinos.gr/web/drugs/main/drugs/Arvekap Arvekap] ======&lt;br /&gt;
|Triptorelin&lt;br /&gt;
| -&lt;br /&gt;
|~200/year?&lt;br /&gt;
|&lt;br /&gt;
|A?&lt;br /&gt;
|Injection&lt;br /&gt;
|GNRH Agonist&lt;br /&gt;
(indirectly) Stops testosterone AND estrogen production&lt;br /&gt;
|Also a puberty blocker&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
====== [https://www.galinos.gr/web/drugs/main/drugs/aldactone Aldactone] ======&lt;br /&gt;
|Spironolactone&lt;br /&gt;
|5.19 euro/20 tabs (100mg)&lt;br /&gt;
([https://www.galinos.gr/service/drugs/drawPackagePrice/148 Pricemap])&lt;br /&gt;
|?&lt;br /&gt;
|50mg-200mg/day&lt;br /&gt;
|B-C&lt;br /&gt;
|Tablet&lt;br /&gt;
|Antimineralocorticoid/MCRA&lt;br /&gt;
|Very inefficient, makes you pee, it&#039;s a medication for blood pressure&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
|Flutamide&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|F---&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|Only in this table as an example to avoid&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--T:62--&amp;gt;&lt;br /&gt;
==== Other anti-androgens (optional) ====&lt;br /&gt;
These are used to block conversion of other androgens to DHT (which causes hair loss (hair) and body hair growth). They aren&#039;t general use Anti-Androgens.&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
!Brand Name(s)&lt;br /&gt;
!Substance&lt;br /&gt;
!Cost&lt;br /&gt;
!Cost with Healthcare Coverage&lt;br /&gt;
!Dosage&lt;br /&gt;
!Safety&lt;br /&gt;
!Form&lt;br /&gt;
!Type&lt;br /&gt;
!Notes&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
====== [https://www.galinos.gr/web/drugs/main/packages/26485 Dastidem], [https://www.galinos.gr/web/drugs/main/packages/25557 Rafuster], [https://www.galinos.gr/web/drugs/main/packages/25893 Duaride], [https://www.galinos.gr/web/drugs/main/packages/25894 Dustezor] ======&lt;br /&gt;
|Dutasteride&lt;br /&gt;
|7.90€/30 caps&lt;br /&gt;
|~6€/30 caps&lt;br /&gt;
|0.5mg/day (?/TBD)&lt;br /&gt;
|A-&lt;br /&gt;
|Capsule&lt;br /&gt;
| -&lt;br /&gt;
|High effectiveness.&lt;br /&gt;
|-&lt;br /&gt;
| -&lt;br /&gt;
|Finasteride&lt;br /&gt;
| -&lt;br /&gt;
| -&lt;br /&gt;
| -&lt;br /&gt;
|F&lt;br /&gt;
| -&lt;br /&gt;
| -&lt;br /&gt;
|Effectiveness is none to medium (Just take Dutasteride - will not stop conversion of Progesterone to DHT)&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--T:63--&amp;gt;&lt;br /&gt;
=== Blood Levels ===&lt;br /&gt;
&lt;br /&gt;
==== Refer to the [[Blood Testing]] page. ====&amp;lt;!--T:81--&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Transmasc ==&lt;br /&gt;
&lt;br /&gt;
=== Medications ===&lt;br /&gt;
&lt;br /&gt;
==== Testosterone ====&lt;br /&gt;
[https://www.galinos.gr/web/drugs/main/substances/testosterone/marketing Galinos.gr&#039;s testosterone availability page]&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|+&lt;br /&gt;
!Brand Name(s)&lt;br /&gt;
!Substance&lt;br /&gt;
!Form&lt;br /&gt;
!Method of Administration&lt;br /&gt;
!Cost&lt;br /&gt;
!Cost with Healthcare Coverage&lt;br /&gt;
!Dosage&lt;br /&gt;
!Safety&lt;br /&gt;
!Notes&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
====== [https://www.galinos.gr/web/drugs/main/packages/4929 Norma] ======&lt;br /&gt;
|Testosterone Enanthate&lt;br /&gt;
|Injection/Ampule&lt;br /&gt;
|Subcutaneous or Intramuscular&lt;br /&gt;
|17.67€/ampule &lt;br /&gt;
([https://www.galinos.gr/service/drugs/drawPackagePrice/4929 Pricemap])&lt;br /&gt;
|?&lt;br /&gt;
|?&lt;br /&gt;
|?&lt;br /&gt;
| -&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
====== [https://www.galinos.gr/web/drugs/main/packages/21943 Nebido] ======&lt;br /&gt;
|Testosterone Undecanoate&lt;br /&gt;
|Injection/Vial&lt;br /&gt;
|Intramuscular&lt;br /&gt;
|100.37€/vial&lt;br /&gt;
([https://www.galinos.gr/service/drugs/drawPackagePrice/21943 Pricemap])&lt;br /&gt;
|~32.52€/vial (you pay 25%)&lt;br /&gt;
|1 vial (1000mg/4mL)/10-20 weeks&lt;br /&gt;
|A&lt;br /&gt;
|As a starting dose &#039;&#039;&#039;after a year of HRT&#039;&#039;&#039;, you could also consider:&lt;br /&gt;
&lt;br /&gt;
* Instead of injecting one vial per 20 weeks, you do half every 10-12 weeks, however nothing could be sourced to support this. Though logically it could make sense as a practice.&lt;br /&gt;
* Do a test at 6 weeks after starting, if T is too high don&#039;t take the 2nd dose, if it&#039;s not you can take the 2nd and then test 2 weeks before every other dose.&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
====== [https://www.galinos.gr/web/drugs/main/packages/15739 Tostran] ======&lt;br /&gt;
|Testogel&lt;br /&gt;
|Gel&lt;br /&gt;
|Trans-dermally&lt;br /&gt;
|&#039;&#039;&#039;Starting dose&#039;&#039;&#039;&lt;br /&gt;
&amp;lt;!--T:82--&amp;gt;&lt;br /&gt;
* 35.54€/2 months&lt;br /&gt;
* 213.24€/year&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--T:83--&amp;gt;&lt;br /&gt;
&#039;&#039;&#039;30 mg dose&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--T:84--&amp;gt;&lt;br /&gt;
* 35.54€/40 days&lt;br /&gt;
* ~324.30€/year&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--T:85--&amp;gt;&lt;br /&gt;
&#039;&#039;&#039;40 mg dose&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--T:73--&amp;gt;&lt;br /&gt;
* 35.54€/30 days&lt;br /&gt;
* 426.48€/year&lt;br /&gt;
([https://www.galinos.gr/service/drugs/drawPackagePrice/15739 Pricemap])&lt;br /&gt;
|35.54€ -&amp;gt; 8.89€&lt;br /&gt;
|20mg/day (starting dose)&lt;br /&gt;
30-40mg/day&lt;br /&gt;
|A&lt;br /&gt;
|&lt;br /&gt;
* 1 pump of Tostran (&#039;&#039;&#039;0.5g&#039;&#039;&#039;) delivers 10 mg of T.&lt;br /&gt;
* 2 pumps of Tostran are 1 pump of Testogel (20.25mg of T)&lt;br /&gt;
* Can cause skin reactions.&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
==== GNRH Agonists ====&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
!Brand Name(s)&lt;br /&gt;
!Substance&lt;br /&gt;
! Cost&lt;br /&gt;
!Cost with Healthcare Coverage&lt;br /&gt;
!Dosage&lt;br /&gt;
!Safety&lt;br /&gt;
!Form&lt;br /&gt;
!Type&lt;br /&gt;
!Notes&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
====== [https://www.galinos.gr/web/drugs/main/drugs/Arvekap Arvekap] ======&lt;br /&gt;
|Triptorelin&lt;br /&gt;
| -&lt;br /&gt;
|~200/year?&lt;br /&gt;
|&lt;br /&gt;
|A?&lt;br /&gt;
|Injection&lt;br /&gt;
|GNRH Agonist&lt;br /&gt;
(indirectly) Stops testosterone AND estrogen production&lt;br /&gt;
|Also a puberty blocker&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
==== Other anti-androgens (optional) ====&lt;br /&gt;
These are used to block conversion of other androgens to DHT (which causes hair loss (hair) and body hair growth). They aren&#039;t general use Anti-Androgens.&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
!Brand Name(s)&lt;br /&gt;
!Substance&lt;br /&gt;
!Cost&lt;br /&gt;
!Cost with Healthcare Coverage&lt;br /&gt;
!Dosage&lt;br /&gt;
!Safety&lt;br /&gt;
!Form&lt;br /&gt;
!Type&lt;br /&gt;
!Notes&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
====== [https://www.galinos.gr/web/drugs/main/packages/26485 Dastidem], [https://www.galinos.gr/web/drugs/main/packages/25557 Rafuster], [https://www.galinos.gr/web/drugs/main/packages/25893 Duaride], [https://www.galinos.gr/web/drugs/main/packages/25894 Dustezor] ======&lt;br /&gt;
|Dutasteride&lt;br /&gt;
|7.90€/30 caps&lt;br /&gt;
|~6€/30 caps&lt;br /&gt;
|0.5mg/day (?/TBD)&lt;br /&gt;
|A-&lt;br /&gt;
|Capsule&lt;br /&gt;
| -&lt;br /&gt;
|High effectiveness. &lt;br /&gt;
Not to be confused with proper Anti-Androgens.&lt;br /&gt;
|}&lt;br /&gt;
== Legal ==&lt;br /&gt;
It is legal to buy anything without a diagnosis or a prescription (off the counter - OTC), Testosterone can be hit or miss, look for [https://www.galinos.gr/web/drugs/main/packages/15739 Tostran] (Testogel) or [https://www.galinos.gr/web/drugs/main/packages/4929 TEn] (Testosterone Enanthate/Norma, injections).  &lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--T:86--&amp;gt;&lt;br /&gt;
You can also check the &#039;&#039;&#039;[https://diyon.top/map Trans-Friendly Pharmacies Map]&#039;&#039;&#039; for any pharmacies near you (this goes for both Transfem and Transmasc HRT). &lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--T:75--&amp;gt;&lt;br /&gt;
There is no minimum or maximum legal age for someone to start HRT. &lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--T:76--&amp;gt;&lt;br /&gt;
It is not legally mandatory for someone to have a diagnosis by a psychiatrist in order to medically transition.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--T:77--&amp;gt;&lt;br /&gt;
There is no legally mandatory time restriction for a psychiatrist to monitor you before diagnosing you.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--T:78--&amp;gt;&lt;br /&gt;
You don&#039;t legally need to be on HRT in order to be exempt from the [[army]], change your [[Legal|legal sex]], or to have a [[surgery]].&lt;br /&gt;
&lt;br /&gt;
== Other resources == &amp;lt;!--T:79--&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--T:80--&amp;gt;&lt;br /&gt;
* Simulator: https://www.estrannai.se/&lt;br /&gt;
* https://transfemscience.org/ (note, the authors of this site disagree with a lot of what they are saying, regardless, it is still interesting)&lt;br /&gt;
** Introduction to Hormone Therapy for Transfeminine People: https://transfemscience.org/articles/transfem-intro/&lt;br /&gt;
** Older simulator: https://transfemscience.org/misc/injectable-e2-simulator/&lt;br /&gt;
** Dosage calculator: https://transfemscience.org/misc/injectable-dose-vol-conc-conv/&lt;br /&gt;
* https://diyhrt.wiki/ (alt link: https://anarch.cc/transfeminine-diy-hrt-the-ultimate-guide-2/)&lt;br /&gt;
* https://hrtcafe.net/&lt;br /&gt;
* ?? https://hrt.coffee/&lt;br /&gt;
* https://www.reddit.com/r/TransDIY/&lt;br /&gt;
* https://www.reddit.com/r/TransfemScience/&lt;br /&gt;
* https://groups.io/g/MTFHRT/wiki/29602 (alt link: https://anarch.cc/mtf-hrt-ultimate-diy/)&lt;br /&gt;
* https://hrt.cat/ - info for making your own (you will probably not need it - version 1.0: https://hrtcafe.net/hrtcat/)&lt;br /&gt;
* https://archive.ph/uQb8g (alt link: https://anarch.cc/making-your-own-injections/, as above)&lt;br /&gt;
* https://crimethinc.com/2022/12/15/producing-transdermal-estrogen-a-do-it-yourself-guide (alt link: https://anarch.cc/producing-transdermal-estrogen-a-do-it-yourself-guide/, as above)&lt;br /&gt;
* https://archive.ph/cpy7k (alt link: https://anarch.cc/homebrewing-hormones-mtf-guide/, as above)&lt;br /&gt;
&amp;lt;/translate&amp;gt;&lt;/div&gt;</summary>
		<author><name>Goblinmoder</name></author>
	</entry>
	<entry>
		<id>https://wiki.diyon.top/index.php?title=Main_Page&amp;diff=975</id>
		<title>Main Page</title>
		<link rel="alternate" type="text/html" href="https://wiki.diyon.top/index.php?title=Main_Page&amp;diff=975"/>
		<updated>2025-04-11T16:25:23Z</updated>

		<summary type="html">&lt;p&gt;Goblinmoder: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{#seo:|description=A general purpose greek-based, unbiased, trans wiki for everyone.}}&lt;br /&gt;
&lt;br /&gt;
&amp;lt;languages/&amp;gt;&lt;br /&gt;
&amp;lt;translate&amp;gt;&lt;br /&gt;
&amp;lt;!--T:1--&amp;gt;&lt;br /&gt;
Out with the old and in with the new, the wiki is alive again.&lt;br /&gt;
&lt;br /&gt;
==== Page Catalog: ==== &amp;lt;!--T:2--&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--T:3--&amp;gt;&lt;br /&gt;
* [[HRT]]&lt;br /&gt;
* [[Quick Guide]]&lt;br /&gt;
* [[Doctors]]&lt;br /&gt;
* [https://diyon.top/map Pharmacies]&lt;br /&gt;
* [[Customs]]&lt;br /&gt;
* [[Blood Testing|Blood tests]]&lt;br /&gt;
* [[Legal]]&lt;br /&gt;
* [[Army]]&lt;br /&gt;
* [[Donate]]&lt;br /&gt;
* [[About]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--T:4--&amp;gt;&lt;br /&gt;
Please don&#039;t share this site with cis people unless they are questioning. If you want to get involved, or for site feedback, questions, or to report positive/negative experiences with doctors/shops/etc, contact us at &#039;&#039;&#039;fox@diyon.top&#039;&#039;&#039;&lt;br /&gt;
&amp;lt;/translate&amp;gt;&lt;/div&gt;</summary>
		<author><name>Goblinmoder</name></author>
	</entry>
	<entry>
		<id>https://wiki.diyon.top/index.php?title=Main_Page&amp;diff=974</id>
		<title>Main Page</title>
		<link rel="alternate" type="text/html" href="https://wiki.diyon.top/index.php?title=Main_Page&amp;diff=974"/>
		<updated>2025-04-11T16:14:04Z</updated>

		<summary type="html">&lt;p&gt;Goblinmoder: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{#seo:|description=Come one come all to the Greek info emporium for transing your gender and living to tell the tale ^-^}}&lt;br /&gt;
&lt;br /&gt;
&amp;lt;languages/&amp;gt;&lt;br /&gt;
&amp;lt;translate&amp;gt;&lt;br /&gt;
&amp;lt;!--T:1--&amp;gt;&lt;br /&gt;
Out with the old and in with the new, the wiki is alive again.&lt;br /&gt;
&lt;br /&gt;
==== Page Catalog: ==== &amp;lt;!--T:2--&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--T:3--&amp;gt;&lt;br /&gt;
* [[HRT]]&lt;br /&gt;
* [[Quick Guide]]&lt;br /&gt;
* [[Doctors]]&lt;br /&gt;
* [https://diyon.top/map Pharmacies]&lt;br /&gt;
* [[Customs]]&lt;br /&gt;
* [[Blood Testing|Blood tests]]&lt;br /&gt;
* [[Legal]]&lt;br /&gt;
* [[Army]]&lt;br /&gt;
* [[Donate]]&lt;br /&gt;
* [[About]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--T:4--&amp;gt;&lt;br /&gt;
Please don&#039;t share this site with cis people unless they are questioning. If you want to get involved, or for site feedback, questions, or to report positive/negative experiences with doctors/shops/etc, contact us at &#039;&#039;&#039;fox@diyon.top&#039;&#039;&#039;&lt;br /&gt;
&amp;lt;/translate&amp;gt;&lt;/div&gt;</summary>
		<author><name>Goblinmoder</name></author>
	</entry>
</feed>