Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
SWIFT
SWIFTsim
Commits
3b874df8
Commit
3b874df8
authored
Feb 06, 2019
by
Matthieu Schaller
Browse files
Merge branch 'schaye08' into 'master'
Star formation following Schaye08 See merge request
!705
parents
8af4a013
8fbdb9af
Changes
78
Hide whitespace changes
Inline
Side-by-side
configure.ac
View file @
3b874df8
...
...
@@ -1186,8 +1186,9 @@ AC_ARG_WITH([subgrid],
with_subgrid_cooling=none
with_subgrid_chemistry=none
with_subgrid_tracers=none
with_subgrid_
hydro
=none
with_subgrid_
entropy_floor
=none
with_subgrid_stars=none
with_subgrid_star_formation=none
with_subgrid_feedback=none
case "$with_subgrid" in
...
...
@@ -1200,16 +1201,18 @@ case "$with_subgrid" in
with_subgrid_cooling=grackle
with_subgrid_chemistry=GEAR
with_subgrid_tracers=none
with_subgrid_
hydro=gadget2
with_subgrid_
entropy_floor=none
with_subgrid_stars=GEAR
with_subgrid_star_formation=none
with_subgrid_feedback=thermal
;;
EAGLE)
with_subgrid_cooling=EAGLE
with_subgrid_chemistry=EAGLE
with_subgrid_tracers=EAGLE
with_subgrid_hydro=gadget2
with_subgrid_stars=none
with_subgrid_entropy_floor=EAGLE
with_subgrid_stars=EAGLE
with_subgrid_star_formation=EAGLE
with_subgrid_feedback=none
;;
*)
...
...
@@ -1247,14 +1250,6 @@ AC_ARG_WITH([hydro],
[with_hydro="gadget2"]
)
if test "$with_subgrid" != "none"; then
if test "$with_hydro" != "gadget2"; then
AC_MSG_ERROR([Cannot provide with-subgrid and with-hydro together])
else
with_hydro="$with_subgrid_hydro"
fi
fi
case "$with_hydro" in
gadget2)
AC_DEFINE([GADGET2_SPH], [1], [Gadget-2 SPH])
...
...
@@ -1586,7 +1581,7 @@ esac
# Stellar model.
AC_ARG_WITH([stars],
[AS_HELP_STRING([--with-stars=<model>],
[Stellar model to use @<:@none, GEAR, debug default: none@:>@]
[Stellar model to use @<:@none,
EAGLE,
GEAR, debug default: none@:>@]
)],
[with_stars="$withval"],
[with_stars="none"]
...
...
@@ -1601,10 +1596,14 @@ if test "$with_subgrid" != "none"; then
fi
case "$with_stars" in
EAGLE)
AC_DEFINE([STARS_EAGLE], [1], [EAGLE stellar model])
;;
GEAR)
AC_DEFINE([STARS_GEAR], [1], [GEAR stellar model])
;;
none)
AC_DEFINE([STARS_NONE], [1], [None stellar model])
;;
*)
...
...
@@ -1682,6 +1681,62 @@ case "$with_potential" in
;;
esac
# Entropy floor
AC_ARG_WITH([entropy-floor],
[AS_HELP_STRING([--with-entropy-floor=<floor>],
[entropy floor @<:@none, EAGLE, default: none@:>@]
)],
[with_entropy_floor="$withval"],
[with_entropy_floor="none"]
)
if test "$with_subgrid" != "none"; then
if test "$with_entropy_floor" != "none"; then
AC_MSG_ERROR([Cannot provide with-subgrid and with-entropy-floor together])
else
with_entropy_floor="$with_subgrid_entropy_floor"
fi
fi
case "$with_entropy_floor" in
none)
AC_DEFINE([ENTROPY_FLOOR_NONE], [1], [No entropy floor])
;;
EAGLE)
AC_DEFINE([ENTROPY_FLOOR_EAGLE], [1], [EAGLE entropy floor])
;;
*)
AC_MSG_ERROR([Unknown entropy floor model])
;;
esac
# Star formation
AC_ARG_WITH([star-formation],
[AS_HELP_STRING([--with-star-formation=<sfm>],
[star formation @<:@none, EAGLE, default: none@:>@]
)],
[with_star_formation="$withval"],
[with_star_formation="none"]
)
if test "$with_subgrid" != "none"; then
if test "$with_star_formation" != "none"; then
AC_MSG_ERROR([Cannot provide with-subgrid and with-star-formation together])
else
with_star_formation="$with_subgrid_star_formation"
fi
fi
case "$with_star_formation" in
none)
AC_DEFINE([STAR_FORMATION_NONE], [1], [No star formation])
;;
EAGLE)
AC_DEFINE([STAR_FORMATION_EAGLE], [1], [EAGLE star formation model (Schaye and Dalla Vecchia (2008))])
;;
*)
AC_MSG_ERROR([Unknown star formation model])
;;
esac
# Gravity multipole order
AC_ARG_WITH([multipole-order],
[AS_HELP_STRING([--with-multipole-order=<order>],
...
...
@@ -1773,11 +1828,13 @@ AC_MSG_RESULT([
Make gravity glass : $gravity_glass_making
External potential : $with_potential
Cooling function : $with_cooling
Chemistry : $with_chemistry
Tracers : $with_tracers
Stellar model : $with_stars
Feedback model : $with_feedback
Entropy floor : $with_entropy_floor
Cooling function : $with_cooling
Chemistry : $with_chemistry
Tracers : $with_tracers
Stellar model : $with_stars
Star formation model : $with_star_formation
Feedback model : $with_feedback
Individual timers : $enable_timers
Task debugging : $enable_task_debugging
...
...
doc/Doxyfile.in
View file @
3b874df8
...
...
@@ -772,6 +772,8 @@ INPUT += @top_srcdir@/src/cooling/const_lambda
INPUT += @top_srcdir@/src/cooling/Compton
INPUT += @top_srcdir@/src/cooling/EAGLE
INPUT += @top_srcdir@/src/chemistry/EAGLE
INPUT += @top_srcdir@/src/entropy_floor/EAGLE
INPUT += @top_srcdir@/src/star_formation/EAGLE
INPUT += @top_srcdir@/src/tracers/EAGLE
# This tag can be used to specify the character encoding of the source files
...
...
doc/RTD/source/SubgridModels/EAGLE/EAGLE_entropy_floor.svg
0 → 100644
View file @
3b874df8
<?xml version="1.0" encoding="utf-8" standalone="no"?>
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN"
"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
<!-- Created with matplotlib (http://matplotlib.org/) -->
<svg
height=
"226pt"
version=
"1.1"
viewBox=
"0 0 226 226"
width=
"226pt"
xmlns=
"http://www.w3.org/2000/svg"
xmlns:xlink=
"http://www.w3.org/1999/xlink"
>
<defs>
<style
type=
"text/css"
>
*{stroke-linecap:butt;stroke-linejoin:round;}
</style>
</defs>
<g
id=
"figure_1"
>
<g
id=
"patch_1"
>
<path
d=
"M 0 226.8
L 226.8 226.8
L 226.8 0
L 0 0
z
"
style=
"fill:#ffffff;"
/>
</g>
<g
id=
"axes_1"
>
<g
id=
"patch_2"
>
<path
d=
"M 34.02 197.316
L 224.532 197.316
L 224.532 2.268
L 34.02 2.268
z
"
style=
"fill:#ffffff;"
/>
</g>
<g
id=
"PolyCollection_1"
>
<defs>
<path
d=
"M 77.714425 -156.365649
L 77.714425 -14.805175
L 250.907152 -14.805175
L 250.907152 -156.365649
L 250.907152 -156.365649
L 77.714425 -156.365649
z
"
id=
"m8f9d87720a"
style=
"stroke:#e6e6e6;"
/>
</defs>
<g
clip-path=
"url(#p107a2e5a22)"
>
<use
style=
"fill:#e6e6e6;stroke:#e6e6e6;"
x=
"0"
xlink:href=
"#m8f9d87720a"
y=
"226.8"
/>
</g>
</g>
<g
id=
"PolyCollection_2"
>
<path
clip-path=
"url(#p107a2e5a22)"
d=
"M 146.991516 49022.756825
L 146.991516 85.113175
L 250.907152 -12.410825
L 250.907152 49022.756825
L 250.907152 49022.756825
L 146.991516 49022.756825
z
"
style=
"fill:#e6e6e6;stroke:#e6e6e6;"
/>
</g>
<g
id=
"PathCollection_1"
>
<defs>
<path
d=
"M 0 1
C 0.265203 1 0.51958 0.894634 0.707107 0.707107
C 0.894634 0.51958 1 0.265203 1 0
C 1 -0.265203 0.894634 -0.51958 0.707107 -0.707107
C 0.51958 -0.894634 0.265203 -1 0 -1
C -0.265203 -1 -0.51958 -0.894634 -0.707107 -0.707107
C -0.894634 -0.51958 -1 -0.265203 -1 0
C -1 0.265203 -0.894634 0.51958 -0.707107 0.707107
C -0.51958 0.894634 -0.265203 1 0 1
z
"
id=
"me37d9803e9"
style=
"stroke:#000000;"
/>
</defs>
<g
clip-path=
"url(#p107a2e5a22)"
>
<use
style=
"stroke:#000000;"
x=
"77.714425"
xlink:href=
"#me37d9803e9"
y=
"70.434351"
/>
</g>
</g>
<g
id=
"PathCollection_2"
>
<g
clip-path=
"url(#p107a2e5a22)"
>
<use
style=
"stroke:#000000;"
x=
"146.991516"
xlink:href=
"#me37d9803e9"
y=
"85.113175"
/>
</g>
</g>
<g
id=
"matplotlib.axis_1"
>
<g
id=
"xtick_1"
>
<g
id=
"line2d_1"
>
<defs>
<path
d=
"M 0 0
L 0 3.5
"
id=
"mddab006ef2"
style=
"stroke:#000000;stroke-width:0.8;"
/>
</defs>
<g>
<use
style=
"stroke:#000000;stroke-width:0.8;"
x=
"60.395152"
xlink:href=
"#mddab006ef2"
y=
"197.316"
/>
</g>
</g>
<g
id=
"text_1"
>
<!-- $10^{-6}$ -->
<defs>
<path
d=
"M 29.09375 67.796875
L 11.09375 58.703125
L 11.09375 57.296875
C 12.296875 57.796875 13.40625 58.203125 13.796875 58.40625
C 15.59375 59.109375 17.296875 59.5 18.296875 59.5
C 20.40625 59.5 21.296875 57.984375 21.296875 54.765625
L 21.296875 9.25
C 21.296875 5.921875 20.5 3.625 18.90625 2.703125
C 17.40625 1.8125 16 1.5 11.796875 1.5
L 11.796875 0
L 39.40625 0
L 39.40625 1.5
C 31.5 1.5 29.90625 2.5 29.90625 7.34375
L 29.90625 67.609375
z
"
id=
"Nimbus_Roman_No9_L_Regular-49"
/>
<path
d=
"M 25.40625 68
C 19.90625 68 15.703125 66.3125 12 62.8125
C 6.203125 57.203125 2.40625 45.703125 2.40625 34
C 2.40625 23.109375 5.703125 11.40625 10.40625 5.8125
C 14.09375 1.40625 19.203125 -1 25 -1
C 30.09375 -1 34.40625 0.703125 38 4.203125
C 43.796875 9.703125 47.59375 21.3125 47.59375 33.40625
C 47.59375 53.90625 38.5 68 25.40625 68
z
M 25.09375 65.40625
C 33.5 65.40625 38 54.109375 38 33.203125
C 38 12.3125 33.59375 1.609375 25 1.609375
C 16.40625 1.609375 12 12.3125 12 33.109375
C 12 54.3125 16.5 65.40625 25.09375 65.40625
z
"
id=
"Nimbus_Roman_No9_L_Regular-48"
/>
<path
d=
"M 65.90625 23
C 67.59375 23 69.40625 23 69.40625 25
C 69.40625 27 67.59375 27 65.90625 27
L 11.796875 27
C 10.09375 27 8.296875 27 8.296875 25
C 8.296875 23 10.09375 23 11.796875 23
z
"
id=
"CMSY10-0"
/>
<path
d=
"M 44.59375 68.609375
C 33.203125 67.609375 27.40625 65.703125 20.09375 60.609375
C 9.296875 52.90625 3.40625 41.5 3.40625 28.15625
C 3.40625 19.5 6.09375 10.75 10.40625 5.78125
C 14.203125 1.390625 19.59375 -1 25.796875 -1
C 38.203125 -1 46.796875 8.453125 46.796875 22.203125
C 46.796875 34.9375 39.5 43 28 43
C 23.59375 43 21.5 42.296875 15.203125 38.5
C 17.90625 53.609375 29.09375 64.40625 44.796875 67
z
M 24.203125 38.40625
C 32.796875 38.40625 37.796875 31.25 37.796875 18.8125
C 37.796875 7.875 33.90625 1.8125 26.90625 1.8125
C 18.09375 1.8125 12.703125 11.15625 12.703125 26.5625
C 12.703125 31.640625 13.5 34.421875 15.5 35.921875
C 17.59375 37.5 20.703125 38.40625 24.203125 38.40625
z
"
id=
"Nimbus_Roman_No9_L_Regular-54"
/>
</defs>
<g
transform=
"translate(50.706631 211.234498)scale(0.1 -0.1)"
>
<use
transform=
"scale(0.996264)"
xlink:href=
"#Nimbus_Roman_No9_L_Regular-49"
/>
<use
transform=
"translate(49.8132 0)scale(0.996264)"
xlink:href=
"#Nimbus_Roman_No9_L_Regular-48"
/>
<use
transform=
"translate(99.626401 36.163231)scale(0.737241)"
xlink:href=
"#CMSY10-0"
/>
<use
transform=
"translate(156.909271 36.163231)scale(0.737241)"
xlink:href=
"#Nimbus_Roman_No9_L_Regular-54"
/>
</g>
</g>
</g>
<g
id=
"xtick_2"
>
<g
id=
"line2d_2"
>
<g>
<use
style=
"stroke:#000000;stroke-width:0.8;"
x=
"95.033698"
xlink:href=
"#mddab006ef2"
y=
"197.316"
/>
</g>
</g>
<g
id=
"text_2"
>
<!-- $10^{-4}$ -->
<defs>
<path
d=
"M 47.203125 23.390625
L 37 23.390625
L 37 68
L 32.59375 68
L 1.203125 23.390625
L 1.203125 17
L 29.296875 17
L 29.296875 0.5
L 37 0.5
L 37 17
L 47.203125 17
z
M 29.203125 23.390625
L 5.203125 23.390625
L 29.203125 57.78125
z
"
id=
"Nimbus_Roman_No9_L_Regular-52"
/>
</defs>
<g
transform=
"translate(85.345176 211.234498)scale(0.1 -0.1)"
>
<use
transform=
"scale(0.996264)"
xlink:href=
"#Nimbus_Roman_No9_L_Regular-49"
/>
<use
transform=
"translate(49.8132 0)scale(0.996264)"
xlink:href=
"#Nimbus_Roman_No9_L_Regular-48"
/>
<use
transform=
"translate(99.626401 36.163231)scale(0.737241)"
xlink:href=
"#CMSY10-0"
/>
<use
transform=
"translate(156.909271 36.163231)scale(0.737241)"
xlink:href=
"#Nimbus_Roman_No9_L_Regular-52"
/>
</g>
</g>
</g>
<g
id=
"xtick_3"
>
<g
id=
"line2d_3"
>
<g>
<use
style=
"stroke:#000000;stroke-width:0.8;"
x=
"129.672243"
xlink:href=
"#mddab006ef2"
y=
"197.316"
/>
</g>
</g>
<g
id=
"text_3"
>
<!-- $10^{-2}$ -->
<defs>
<path
d=
"M 47.5 13.671875
L 46.203125 14.171875
C 42.5 8.5 41.203125 7.59375 36.703125 7.59375
L 12.796875 7.59375
L 29.59375 25.140625
C 38.5 34.40625 42.40625 41.984375 42.40625 49.765625
C 42.40625 59.734375 34.296875 67.390625 23.90625 67.390625
C 18.40625 67.390625 13.203125 65.203125 9.5 61.21875
C 6.296875 57.8125 4.796875 54.625 3.09375 47.546875
L 5.203125 47.046875
C 9.203125 56.8125 12.796875 60 19.703125 60
C 28.09375 60 33.796875 54.3125 33.796875 45.9375
C 33.796875 38.171875 29.203125 28.90625 20.796875 20.03125
L 3 1.203125
L 3 0
L 42 0
z
"
id=
"Nimbus_Roman_No9_L_Regular-50"
/>
</defs>
<g
transform=
"translate(119.983722 211.234498)scale(0.1 -0.1)"
>
<use
transform=
"scale(0.996264)"
xlink:href=
"#Nimbus_Roman_No9_L_Regular-49"
/>
<use
transform=
"translate(49.8132 0)scale(0.996264)"
xlink:href=
"#Nimbus_Roman_No9_L_Regular-48"
/>
<use
transform=
"translate(99.626401 36.163231)scale(0.737241)"
xlink:href=
"#CMSY10-0"
/>
<use
transform=
"translate(156.909271 36.163231)scale(0.737241)"
xlink:href=
"#Nimbus_Roman_No9_L_Regular-50"
/>
</g>
</g>
</g>
<g
id=
"xtick_4"
>
<g
id=
"line2d_4"
>
<g>
<use
style=
"stroke:#000000;stroke-width:0.8;"
x=
"164.310789"
xlink:href=
"#mddab006ef2"
y=
"197.316"
/>
</g>
</g>
<g
id=
"text_4"
>
<!-- $10^{0}$ -->
<g
transform=
"translate(157.486382 211.234498)scale(0.1 -0.1)"
>
<use
transform=
"scale(0.996264)"
xlink:href=
"#Nimbus_Roman_No9_L_Regular-49"
/>
<use
transform=
"translate(49.8132 0)scale(0.996264)"
xlink:href=
"#Nimbus_Roman_No9_L_Regular-48"
/>
<use
transform=
"translate(99.626401 36.163231)scale(0.737241)"
xlink:href=
"#Nimbus_Roman_No9_L_Regular-48"
/>
</g>
</g>
</g>
<g
id=
"xtick_5"
>
<g
id=
"line2d_5"
>
<g>
<use
style=
"stroke:#000000;stroke-width:0.8;"
x=
"198.949334"
xlink:href=
"#mddab006ef2"
y=
"197.316"
/>
</g>
</g>
<g
id=
"text_5"
>
<!-- $10^{2}$ -->
<g
transform=
"translate(192.124927 211.234498)scale(0.1 -0.1)"
>
<use
transform=
"scale(0.996264)"
xlink:href=
"#Nimbus_Roman_No9_L_Regular-49"
/>
<use
transform=
"translate(49.8132 0)scale(0.996264)"
xlink:href=
"#Nimbus_Roman_No9_L_Regular-48"
/>
<use
transform=
"translate(99.626401 36.163231)scale(0.737241)"
xlink:href=
"#Nimbus_Roman_No9_L_Regular-50"
/>
</g>
</g>
</g>
<g
id=
"text_6"
>
<!-- ${\rm Density}~n_{\rm H}~[{\rm cm^{-3}}]$ -->
<defs>
<path
d=
"M 10.40625 10.609375
C 10.40625 3.390625 9.203125 2.09375 1.59375 2.09375
L 1.59375 0
L 30 0
C 41.59375 0 52.09375 3.28125 58.296875 8.875
C 64.796875 14.75 68.5 23.625 68.5 33.296875
C 68.5 42.28125 65.5 50.046875 60 55.53125
C 53.203125 62.40625 42.296875 66 28.59375 66
L 1.59375 66
L 1.59375 64.09375
C 9.5 63.390625 10.40625 62.5 10.40625 55.078125
z
M 20.59375 58.40625
C 20.59375 61.5 21.703125 62.296875 25.796875 62.296875
C 34.40625 62.296875 40.90625 60.703125 45.703125 57.3125
C 53.5 51.921875 57.59375 43.359375 57.59375 32.609375
C 57.59375 20.84375 53.5 12.46875 45.40625 7.78125
C 40.296875 4.90625 34.5 3.703125 25.796875 3.703125
C 21.796875 3.703125 20.59375 4.59375 20.59375 7.78125
z
"
id=
"Nimbus_Roman_No9_L_Regular-68"
/>
<path
d=
"M 40.796875 16.453125
C 36 8.8125 31.703125 5.90625 25.296875 5.90625
C 19.59375 5.90625 15.296875 8.8125 12.40625 14.53125
C 10.59375 18.34375 9.90625 21.65625 9.703125 27.796875
L 40.5 27.796875
C 39.703125 34.265625 38.703125 37.140625 36.203125 40.328125
C 33.203125 43.921875 28.59375 46 23.40625 46
C 18.40625 46 13.703125 44.203125 9.90625 40.796875
C 5.203125 36.703125 2.5 29.59375 2.5 21.40625
C 2.5 7.59375 9.703125 -1 21.203125 -1
C 30.703125 -1 38.203125 4.921875 42.40625 15.75
z
M 9.90625 31
C 11 38.734375 14.40625 42.40625 20.5 42.40625
C 26.59375 42.40625 29 39.609375 30.296875 31
z
"
id=
"Nimbus_Roman_No9_L_Regular-101"
/>
<path
d=
"M 1.59375 40.296875
C 2.203125 40.59375 3.203125 40.703125 4.296875 40.703125
C 7.09375 40.703125 8 39.203125 8 34.296875
L 8 9.5
C 8 3.796875 6.90625 2.40625 1.796875 2
L 1.796875 0.5
L 23 0.5
L 23 2
C 17.90625 2.40625 16.40625 3.59375 16.40625 7.203125
L 16.40625 35.296875
C 21.203125 39.796875 23.40625 41 26.703125 41
C 31.59375 41 34 37.90625 34 31.296875
L 34 10.40625
C 34 4.09375 32.703125 2.40625 27.703125 2
L 27.703125 0.5
L 48.5 0.5
L 48.5 2
C 43.59375 2.5 42.40625 3.703125 42.40625 8.59375
L 42.40625 31.5
C 42.40625 40.90625 38 46.5 30.59375 46.5
C 26 46.5 22.90625 44.796875 16.09375 38.40625
L 16.09375 46.296875
L 15.40625 46.5
C 10.5 44.703125 7.09375 43.59375 1.59375 42
z
"
id=
"Nimbus_Roman_No9_L_Regular-110"
/>
<path
d=
"M 31.5 31.40625
L 31.09375 45
L 30 45
L 29.796875 44.796875
C 28.90625 44.09375 28.796875 44 28.40625 44
C 27.796875 44 26.796875 44.203125 25.703125 44.703125
C 23.5 45.546875 21.296875 46 18.703125 46
C 10.796875 46 5.09375 40.875 5.09375 33.65625
C 5.09375 28.0625 8.296875 24.046875 16.796875 19.234375
L 22.59375 15.9375
C 26.09375 13.9375 27.796875 11.515625 27.796875 8.421875
C 27.796875 4 24.59375 1.203125 19.5 1.203125
C 16.09375 1.203125 13 2.484375 11.09375 4.65625
C 9 7.109375 8.09375 9.375 6.796875 15
L 5.203125 15
L 5.203125 -0.609375
L 6.5 -0.609375
C 7.203125 0.515625 7.59375 0.75 8.796875 0.75
C 9.703125 0.75 11.09375 0.546875 13.40625 -0.03125
C 16.203125 -0.609375 18.90625 -1 20.703125 -1
C 28.40625 -1 34.796875 4.8125 34.796875 11.828125
C 34.796875 16.828125 32.40625 20.140625 26.40625 23.75
L 15.59375 30.15625
C 12.796875 31.765625 11.296875 34.28125 11.296875 36.984375
C 11.296875 41 14.40625 43.796875 19 43.796875
C 24.703125 43.796875 27.703125 40.359375 30 31.40625
z
"
id=
"Nimbus_Roman_No9_L_Regular-115"
/>
<path
d=
"M 17.5 45.765625
L 2 40.296875
L 2 38.8125
L 2.796875 38.90625
C 4 39.09375 5.296875 39.203125 6.203125 39.203125
C 8.59375 39.203125 9.5 37.59375 9.5 33.203125
L 9.5 10
C 9.5 2.796875 8.5 1.703125 1.59375 1.703125
L 1.59375 0
L 25.296875 0
L 25.296875 1.5
C 18.703125 2 17.90625 2.984375 17.90625 10.15625
L 17.90625 45.46875
z
M 12.796875 68
C 10.09375 68 7.796875 65.703125 7.796875 62.90625
C 7.796875 60.109375 10 57.796875 12.796875 57.796875
C 15.703125 57.796875 18 60 18 62.90625
C 18 65.703125 15.703125 68 12.796875 68
z
"
id=
"Nimbus_Roman_No9_L_Regular-105"
/>
<path
d=
"M 25.5 45
L 15.40625 45
L 15.40625 56.59375
C 15.40625 57.59375 15.296875 57.90625 14.703125 57.90625
C 14 57 13.40625 56.09375 12.703125 55.09375
C 8.90625 49.59375 4.59375 44.796875 3 44.390625
C 1.90625 43.65625 1.296875 42.9375 1.296875 42.421875
C 1.296875 42.109375 1.40625 41.90625 1.703125 41.90625
L 7 41.90625
L 7 11.734375
C 7 3.3125 10 -1 15.90625 -1
C 20.796875 -1 24.59375 1.40625 27.90625 6.609375
L 26.59375 7.703125
C 24.5 5.203125 22.796875 4.203125 20.59375 4.203125
C 16.90625 4.203125 15.40625 6.921875 15.40625 13.234375
L 15.40625 41.90625
L 25.5 41.90625
z
"
id=
"Nimbus_Roman_No9_L_Regular-116"
/>
<path
d=
"M 47.5 45
L 34 45
L 34 43.5
C 37.203125 43.5 38.796875 42.59375 38.796875 40.984375
C 38.796875 40.578125 38.703125 39.984375 38.40625 39.28125
L 28.703125 11.59375
L 17.203125 37.140625
C 16.59375 38.5625 16.203125 39.875 16.203125 40.96875
C 16.203125 42.796875 17.703125 43.5 22 43.5
L 22 45
L 1.40625 45
L 1.40625 43.59375
C 4 43.203125 5.703125 42.09375 6.5 40.390625
L 17.90625 15.703125
L 18.203125 14.890625
L 19.703125 11.890625
C 22.5 6.875 24.09375 3.265625 24.09375 1.75
C 24.09375 0.25 21.796875 -6.078125 20.09375 -9.09375
C 18.703125 -11.703125 16.5 -13.609375 15.09375 -13.609375
C 14.5 -13.609375 13.59375 -13.40625 12.59375 -12.90625
C 10.703125 -12.203125 9 -11.796875 7.296875 -11.796875
C 5 -11.796875 3 -13.796875 3 -16.203125
C 3 -19.5 6.203125 -22 10.40625 -22
C 17.09375 -22 21.90625 -16.390625 27.296875 -1.9375
L 42.703125 38.984375
C 44 42.203125 45.09375 43.203125 47.5 43.5
z
"
id=
"Nimbus_Roman_No9_L_Regular-121"
/>
<path
d=
"M 46 11.546875
L 43.90625 8.9375
C 41 5.234375 39.203125 3.625 37.796875 3.625
C 37 3.625 36.203125 4.421875 36.203125 5.21875
C 36.203125 5.9375 36.203125 5.9375 37.59375 11.53125
L 43.296875 32.1875
C 43.796875 34.28125 44.203125 36.484375 44.203125 37.890625
C 44.203125 41.5 41.5 44 37.59375 44
C 31.203125 44 24.90625 38 14.59375 21.96875
L 21.296875 43.796875
L 21 43.984375
C 15.59375 42.890625 13.5 42.5 4.796875 40.90625
L 4.796875 39.21875
C 9.90625 39.21875 11.203125 38.625 11.203125 36.609375
C 11.203125 36 11.09375 35.40625 11 34.90625
L 1.40625 -0.1875
L 8.90625 -0.1875
C 13.59375 15.65625 14.5 17.875 18.90625 24.6875
C 24.90625 33.890625 30 38.921875 33.703125 38.921875
C 35.203125 38.921875 36.09375 37.8125 36.09375 36
C 36.09375 34.8125 35.5 31.5 34.703125 28.390625
L 30.296875 11.84375
C 29 6.734375 28.703125 5.328125 28.703125 4.328125
C 28.703125 0.515625 30.09375 -1.078125 33.40625 -1.078125
C 37.90625 -1.078125 40.5 1.03125 47.40625 10.25
z
"
id=
"Nimbus_Roman_No9_L_Regular_Italic-110"
/>
<path
d=
"M 20.90625 36
L 20.90625 55.203125
C 20.90625 62.34375 22 63.421875 29.703125 64.125
L 29.703125 66
L 1.90625 66
L 1.90625 64.125
C 9.59375 63.421875 10.703125 62.328125 10.703125 55.109375
L 10.703125 11.703125
C 10.703125 3.28125 9.703125 2.09375 1.90625 2.09375