CuraEngineのconfigファイル

default.cfgがないと言われるけどサンプルが見つからなかった.
ここでシェアしてる人がいた.
http://forum.seemecnc.com/viewtopic.php?f=56&t=1716
https://www.dropbox.com/s/0quioiaw1eb0n6m/RostockMAX.ini
RostockMAX.ini

[profile]
machine_center_x = 0
machine_center_y = 0
flip_x = False
flip_y = False
flip_z = False
swap_xz = False
swap_yz = False
model_scale = 1
model_rotate_base = 0
filament_diameter = 1.75
layer_height = 0.2
wall_thickness = 1.2
solid_layer_thickness = .8
fill_density = 0
skirt_line_count = 3
skirt_gap = 3.0
print_speed = 30
print_temperature = 230
support = None
enable_raft = False
filament_density = 1.0
nozzle_size = .5
retraction_min_travel = 2.5
retraction_speed = 50.0
retraction_amount = 8.0
retraction_extra = 0
travel_speed = 2000
max_z_speed = 150.0
bottom_layer_speed = 15.0
cool_min_layer_time = 30.
fan_enabled = False
bottom_thickness = .25
enable_skin = False
extra_base_wall_thickness = .4
cool_min_feedrate = 5
fan_layer = 1
fan_speed = 100
fan_speed_max = 100
raft_margin = 5
raft_base_material_amount = 100
raft_interface_material_amount = 100
support_rate = 40
support_distance = .3
infill_type = Grid Hexagonal
solid_top = True
fill_overlap = 25
bridge_speed = 90
sequence = Loops > Perimeter > Infill
force_first_layer_sequence = True
joris = False
retract_on_jumps_only = True
enable_dwindle = False
dwindle_pent_up_volume = 0.4
dwindle_slowdown_volume = 5.0

[alterations]
start.gcode = ;Sliced {filename} at: {day} {date} {time}
	;Basic settings: Layer height: {layer_height} Walls: {wall_thickness} Fill: {fill_density}
	;Print time: {print_time}
	;Filament used: {filament_amount}m {filament_weight}g
	;Filament cost: {filament_cost}
	G21        ;metric values
	G90        ;absolute positioning
	M107       ;start with the fan off
	G28
	G1 Z300.0 F{max_z_speed} ;move the platform down 15mm
	G92 E0.000
	G1 F{travel_speed}
end.gcode = ;End GCode
	G28                          ;move X/Y to min endstops, so the head is out of the way
	G90                         ;absolute positioning
	G84   ;motors off
support_start.gcode =
nextobject.gcode = ;Move to next object on the platform. clear_z is the minimal z height we need to make sure we do not hit any objects.
	G92 E0
	G91                                    ;relative positioning
	G1 E-1 F300                            ;retract the filament a bit before lifting the nozzle, to release some of the pressure
	G1 Z+0.5 E-5 F{travel_speed}           ;move Z up a bit and retract filament even more
	G90                                    ;absolute positioning
	G1 Z{clear_z} F{max_z_speed}
	G92 E0
	G1 X{machine_center_x} Y{machine_center_y} F{travel_speed}
	G1 F200 E5
	G92 E0
replace.csv =

やってみたけどエラーが出る.

./CuraEngine -c RostockMAX.ini test.stl -o hoge.gcode
...
Default config 'default.cfg' not used
Config(RostockMAX.ini): Line 1: No key value pair found
Failed to read config 'RostockMAX.ini'