* fixed logic error in PLA jamming gcode for P1S
* Fix use after free bug in LinesBucketQueue::emplace_back_bucket
I found a use after free bug in LinesBucketQueue::emplace_back_bucket. This was found by enabling address sanitizer.
The LinesBucketQueue class has two related members:
std::vector<LinesBucket> line_buckets;
std::priority_queue<LinesBucket *, std::vector<LinesBucket *>, LinesBucketPtrComp> line_bucket_ptr_queue;
line_bucket_ptr_queue holds pointers into line_buckets. However, since items are inserted into line_buckets one at a time, existing pointers that were stored inside line_bucket_ptr_queue become invalid. Specifically:
void LinesBucketQueue::emplace_back_bucket(ExtrusionLayers &&els, const void *objPtr, Point offset)
{
auto oldSize = line_buckets.capacity();
line_buckets.emplace_back(std::move(els), objPtr, offset); <--- Causes a reallocation, making previous pointers invalid
line_bucket_ptr_queue.push(&line_buckets.back()); <-- priority queue compares against old, now invalid pointers
...
The proposed fix is to calculate the required number of entries in ConflictChecker::find_inter_of_lines_in_diff_objs, and then calling line_buckets.reserve(count). This ensures that sufficient buffer is allocated up front and the pointers are stable as items are added.
* Updated to fix the handling of the capacity change, and removed the code I previously added to reserve upfront since it is not really needed
* Remove accidentally added whitespace
* Removed unused method
* ENH:add mz_zip_reader_extract_to_file_w api
to solove plugin install failed problem by special wide char
jira: none
Change-Id: Ic7d3efe3fdf852387650abf9df65803da9e46a60
(cherry picked from commit b68ad03717a63675fef2f3ef73d4058bf311adea)
* FIX: PrinterFileSystem report real connect error
Change-Id: I99d6ff7f6dcb1f53ccf59854f5f19d0bd39fa9fc
Jira: none
* rename preference name
* FIX:Relax restrictions on importing obj files
jira: none
Change-Id: I61a0156a8424a5f59922956918d37d38e2c3306a
* FIX: [6469] popup dialog too mach when reload object
Jira: 6469
Change-Id: I4097e3a3b018c7a676fea93bf63f8f778bb3148b
* FIX:fixed incorrect display of printer options page on Linux
jira:[STUDIO-6220]
Change-Id: Id1f084658b0b340b7f17ab97ba82c0fd3ae83fae
* FIX: handle exception of dividing by zero in arranging
jira: none
Change-Id: I0d20464dbe81a80293539100f06d72dee456a27b
(cherry picked from commit 94746ae9bf7f467243849570450567b4fdc78e3a)
* ENH:delete no use code
jira: none
Change-Id: I40e7ffa7ea47bb3cd4039eef9f6c28c604eb3abc
* FIX: PrinterFileSystem::FileRemoved
Change-Id: I891aaa8d58ff379dc1ebd8581064865a33388f74
* FIX: resend ttcode to printer on -90 error
Change-Id: I96dc45102a2759a9f1a0002f42c3a91b2c6b2d75
Jira: STUDIO-5947
(cherry picked from commit 97d687b7c88f8cd51b8eddd39120349d8eac42b1)
* FIX: fix some issue in multi machine
JIRA: STUDIO-6934 STUDIO-6888
1. Fix the issue of incomplete display caused by excessively long file names
2. Fix the issue of icon display being too large
3. Fix the issue of garbled Chinese characters in the task list
Change-Id: I36bc10bf2067f44aaa7e3651b58e526ea323c8ad
* FIX: Incorrect multiplier, when the multiplier is set to below 1
github: #3987 #3805
1. In some languages that use commas as decimal points, setting multiplier below 1 will resolve to 0
2. Unable to save multiplier correctly
Change-Id: I62bc55e270929ebb5e910eb79c6f97106e842b93
* Arrange
* FIX: wrong wipe tower when open 3mf file
1.wipe tower pos in 3mf was overwritten by default pos when opening 3mf
with a different printer profile.This patch fix it
jira: STUDIO-5890
Signed-off-by: xun.zhang <xun.zhang@bambulab.com>
Change-Id: I12e5d4b80a0ad86194db0682c1763ba4a9492521
* ENH: update A1 machine gcode
1.Adjust the y position of the A1 extrusion compensation line
jira:NEW
Signed-off-by: xun.zhang <xun.zhang@bambulab.com>
Change-Id: Iea690a0184ae10a47f53e1532272c31fc0a04cfa
* FIX: minor spelling mistake in gcode
github:#3477
Signed-off-by: xun.zhang <xun.zhang@bambulab.com>
Change-Id: Id3201bf8b8125ce060e2cac102ab2525877e27c1
* FIX: slice crash with height_range
github: 3917
Change-Id: Icdf83013213b47935b7a795ed75cc3d49057665d
* FIX: ERROR_RES_BUSY text
Change-Id: Ifde1a7b0c6ab915eb226c2072c46edd40f60cf9a
Jira: STUDIO-6436
* ENH:Unable to send printing without selecting a device
jira:[STUDIO-6850]
Change-Id: Ic537579727fd1618af364db93fce8fbbe4cd635a
* FIX:add exit_gizmo before slice model
jira: STUDIO-5531
Change-Id: Icddc9d73b3d91bb68e9768d13e48cbae0680e58e
* FIX: PrinterFileSystem report real connect error
Change-Id: Id6750cfa2a98fe8325ba677dabb606a0a701b495
* FIX: add can slice judgement in slice all plates processing
jira: STUDIO-6325
Change-Id: Ic7fb8cef000c03210bb77289a570ee6b60b6083e
* FIX:Fixed error in displaying the name of Bambu filaments
Change-Id: Ib42194c07b6eefe793eec81a588debc9d622d951
* FIX: text hidden in calibration tab
jira: STUDIO-6264
Change-Id: I24fbc590638a3213d948a973422e010486113923
* FIX: logic error in PLA fan control
github PR: #3948
Signed-off-by: xun.zhang <xun.zhang@bambulab.com>
Change-Id: I28e4a673e590e83d151e92cc82caab45012aeabe
* FIX:upgrade cluster algorithm to remove duplicate labels
jira: none
Change-Id: I4d68d8cd8e080932c7c308bc8f69e27546ffe309
* FIX: can not parse json float in ES on macOS
jira: STUDIO-5889
Change-Id: I622f4b474c378d77b0e43d67a320f023be2d5811
* ENH:Clear the value of the previous nozzle type
jira:[for nozzle check]
Change-Id: I9a932b833fb07de6cb0a91abe6372b0e91f273f1
* ENH: update A1 gcode
1.Modify the width of extrusion compensation line
jira:NEW
Signed-off-by: xun.zhang <xun.zhang@bambulab.com>
Change-Id: I90543758c866d74f2154e3135d7569109def84b8
* FIX: the height range is not valid in assemble object
github: 3876
Change-Id: Id38672bbf0c01bc9b9f0a3e2bf1052d945b45131
* FIX: calibration page text hidden in linux
jira: STUDIO-6264
Change-Id: If210abf64057eb2e9c2c5b11d41fa33f18684c72
* ENH:clear nozzle information
jira:[STUDIO-7050]
Change-Id: I15ca4973d09132ddb5cb5a56bedd795ba6976b27
* update plugin version
---------
Signed-off-by: xun.zhang <xun.zhang@bambulab.com>
Co-authored-by: afriede <me@afriede.dev>
Co-authored-by: Momin Al-Ghosien <momin@sanestudios.com>
Co-authored-by: zhou.xu <zhou.xu@bambulab.com>
Co-authored-by: chunmao.guo <chunmao.guo@bambulab.com>
Co-authored-by: maosheng.wei <maosheng.wei@bambulab.com>
Co-authored-by: tao wang <tao.wang@bambulab.com>
Co-authored-by: Arthur <arthur.tang@bambulab.com>
Co-authored-by: Kunlong Ma <kunlong.ma@bambulab.com>
Co-authored-by: xun.zhang <xun.zhang@bambulab.com>
Co-authored-by: zhimin.zeng <zhimin.zeng@bambulab.com>
Co-authored-by: liz.li <liz.li@bambulab.com>
2739 lines
92 KiB
JSON
2739 lines
92 KiB
JSON
{
|
|
"name": "Bambulab",
|
|
"url": "http://www.bambulab.com/Parameters/vendor/BBL.json",
|
|
"version": "01.09.00.10",
|
|
"force_update": "0",
|
|
"description": "the initial version of BBL configurations",
|
|
"machine_model_list": [
|
|
{
|
|
"name": "Bambu Lab X1 Carbon",
|
|
"sub_path": "machine/Bambu Lab X1 Carbon.json"
|
|
},
|
|
{
|
|
"name": "Bambu Lab X1",
|
|
"sub_path": "machine/Bambu Lab X1.json"
|
|
},
|
|
{
|
|
"name": "Bambu Lab X1E",
|
|
"sub_path": "machine/Bambu Lab X1E.json"
|
|
},
|
|
{
|
|
"name": "Bambu Lab P1P",
|
|
"sub_path": "machine/Bambu Lab P1P.json"
|
|
},
|
|
{
|
|
"name": "Bambu Lab P1S",
|
|
"sub_path": "machine/Bambu Lab P1S.json"
|
|
},
|
|
{
|
|
"name": "Bambu Lab A1 mini",
|
|
"sub_path": "machine/Bambu Lab A1 mini.json"
|
|
},
|
|
{
|
|
"name": "Bambu Lab A1",
|
|
"sub_path": "machine/Bambu Lab A1.json"
|
|
}
|
|
],
|
|
"process_list": [
|
|
{
|
|
"name": "fdm_process_common",
|
|
"sub_path": "process/fdm_process_common.json"
|
|
},
|
|
{
|
|
"name": "fdm_process_bbl_common",
|
|
"sub_path": "process/fdm_process_bbl_common.json"
|
|
},
|
|
{
|
|
"name": "fdm_process_bbl_0.08",
|
|
"sub_path": "process/fdm_process_bbl_0.08.json"
|
|
},
|
|
{
|
|
"name": "fdm_process_bbl_0.10_nozzle_0.2",
|
|
"sub_path": "process/fdm_process_bbl_0.10_nozzle_0.2.json"
|
|
},
|
|
{
|
|
"name": "fdm_process_bbl_0.40_nozzle_0.8",
|
|
"sub_path": "process/fdm_process_bbl_0.40_nozzle_0.8.json"
|
|
},
|
|
{
|
|
"name": "fdm_process_bbl_0.30_nozzle_0.6",
|
|
"sub_path": "process/fdm_process_bbl_0.30_nozzle_0.6.json"
|
|
},
|
|
{
|
|
"name": "fdm_process_bbl_0.12",
|
|
"sub_path": "process/fdm_process_bbl_0.12.json"
|
|
},
|
|
{
|
|
"name": "fdm_process_bbl_0.16",
|
|
"sub_path": "process/fdm_process_bbl_0.16.json"
|
|
},
|
|
{
|
|
"name": "fdm_process_bbl_0.20",
|
|
"sub_path": "process/fdm_process_bbl_0.20.json"
|
|
},
|
|
{
|
|
"name": "fdm_process_bbl_0.24",
|
|
"sub_path": "process/fdm_process_bbl_0.24.json"
|
|
},
|
|
{
|
|
"name": "fdm_process_bbl_0.28",
|
|
"sub_path": "process/fdm_process_bbl_0.28.json"
|
|
},
|
|
{
|
|
"name": "fdm_process_bbl_0.06_nozzle_0.2",
|
|
"sub_path": "process/fdm_process_bbl_0.06_nozzle_0.2.json"
|
|
},
|
|
{
|
|
"name": "fdm_process_bbl_0.08_nozzle_0.2",
|
|
"sub_path": "process/fdm_process_bbl_0.08_nozzle_0.2.json"
|
|
},
|
|
{
|
|
"name": "fdm_process_bbl_0.12_nozzle_0.2",
|
|
"sub_path": "process/fdm_process_bbl_0.12_nozzle_0.2.json"
|
|
},
|
|
{
|
|
"name": "fdm_process_bbl_0.14_nozzle_0.2",
|
|
"sub_path": "process/fdm_process_bbl_0.14_nozzle_0.2.json"
|
|
},
|
|
{
|
|
"name": "fdm_process_bbl_0.18_nozzle_0.6",
|
|
"sub_path": "process/fdm_process_bbl_0.18_nozzle_0.6.json"
|
|
},
|
|
{
|
|
"name": "fdm_process_bbl_0.24_nozzle_0.6",
|
|
"sub_path": "process/fdm_process_bbl_0.24_nozzle_0.6.json"
|
|
},
|
|
{
|
|
"name": "fdm_process_bbl_0.36_nozzle_0.6",
|
|
"sub_path": "process/fdm_process_bbl_0.36_nozzle_0.6.json"
|
|
},
|
|
{
|
|
"name": "fdm_process_bbl_0.42_nozzle_0.6",
|
|
"sub_path": "process/fdm_process_bbl_0.42_nozzle_0.6.json"
|
|
},
|
|
{
|
|
"name": "fdm_process_bbl_0.24_nozzle_0.8",
|
|
"sub_path": "process/fdm_process_bbl_0.24_nozzle_0.8.json"
|
|
},
|
|
{
|
|
"name": "fdm_process_bbl_0.32_nozzle_0.8",
|
|
"sub_path": "process/fdm_process_bbl_0.32_nozzle_0.8.json"
|
|
},
|
|
{
|
|
"name": "fdm_process_bbl_0.48_nozzle_0.8",
|
|
"sub_path": "process/fdm_process_bbl_0.48_nozzle_0.8.json"
|
|
},
|
|
{
|
|
"name": "fdm_process_bbl_0.56_nozzle_0.8",
|
|
"sub_path": "process/fdm_process_bbl_0.56_nozzle_0.8.json"
|
|
},
|
|
{
|
|
"name": "0.08mm Extra Fine @BBL X1C",
|
|
"sub_path": "process/0.08mm Extra Fine @BBL X1C.json"
|
|
},
|
|
{
|
|
"name": "0.08mm Extra Fine @BBL P1P",
|
|
"sub_path": "process/0.08mm Extra Fine @BBL P1P.json"
|
|
},
|
|
{
|
|
"name": "0.08mm Extra Fine @BBL A1M",
|
|
"sub_path": "process/0.08mm Extra Fine @BBL A1M.json"
|
|
},
|
|
{
|
|
"name": "0.08mm Extra Fine @BBL A1",
|
|
"sub_path": "process/0.08mm Extra Fine @BBL A1.json"
|
|
},
|
|
{
|
|
"name": "0.08mm High Quality @BBL X1C",
|
|
"sub_path": "process/0.08mm High Quality @BBL X1C.json"
|
|
},
|
|
{
|
|
"name": "0.08mm High Quality @BBL P1P",
|
|
"sub_path": "process/0.08mm High Quality @BBL P1P.json"
|
|
},
|
|
{
|
|
"name": "0.08mm High Quality @BBL A1M",
|
|
"sub_path": "process/0.08mm High Quality @BBL A1M.json"
|
|
},
|
|
{
|
|
"name": "0.08mm High Quality @BBL A1",
|
|
"sub_path": "process/0.08mm High Quality @BBL A1.json"
|
|
},
|
|
{
|
|
"name": "0.10mm Standard @BBL X1C 0.2 nozzle",
|
|
"sub_path": "process/0.10mm Standard @BBL X1C 0.2 nozzle.json"
|
|
},
|
|
{
|
|
"name": "0.10mm Standard @BBL P1P 0.2 nozzle",
|
|
"sub_path": "process/0.10mm Standard @BBL P1P 0.2 nozzle.json"
|
|
},
|
|
{
|
|
"name": "0.10mm Standard @BBL A1 0.2 nozzle",
|
|
"sub_path": "process/0.10mm Standard @BBL A1 0.2 nozzle.json"
|
|
},
|
|
{
|
|
"name": "0.10mm High Quality @BBL X1C 0.2 nozzle",
|
|
"sub_path": "process/0.10mm High Quality @BBL X1C 0.2 nozzle.json"
|
|
},
|
|
{
|
|
"name": "0.10mm High Quality @BBL P1P 0.2 nozzle",
|
|
"sub_path": "process/0.10mm High Quality @BBL P1P 0.2 nozzle.json"
|
|
},
|
|
{
|
|
"name": "0.10mm High Quality @BBL A1M 0.2 nozzle",
|
|
"sub_path": "process/0.10mm High Quality @BBL A1M 0.2 nozzle.json"
|
|
},
|
|
{
|
|
"name": "0.10mm High Quality @BBL A1 0.2 nozzle",
|
|
"sub_path": "process/0.10mm High Quality @BBL A1 0.2 nozzle.json"
|
|
},
|
|
{
|
|
"name": "0.40mm Standard @BBL X1C 0.8 nozzle",
|
|
"sub_path": "process/0.40mm Standard @BBL X1C 0.8 nozzle.json"
|
|
},
|
|
{
|
|
"name": "0.40mm Standard @BBL X1 0.8 nozzle",
|
|
"sub_path": "process/0.40mm Standard @BBL X1 0.8 nozzle.json"
|
|
},
|
|
{
|
|
"name": "0.40mm Standard @BBL P1P 0.8 nozzle",
|
|
"sub_path": "process/0.40mm Standard @BBL P1P 0.8 nozzle.json"
|
|
},
|
|
{
|
|
"name": "0.40mm Standard @BBL A1 0.8 nozzle",
|
|
"sub_path": "process/0.40mm Standard @BBL A1 0.8 nozzle.json"
|
|
},
|
|
{
|
|
"name": "0.30mm Standard @BBL X1C 0.6 nozzle",
|
|
"sub_path": "process/0.30mm Standard @BBL X1C 0.6 nozzle.json"
|
|
},
|
|
{
|
|
"name": "0.30mm Standard @BBL X1 0.6 nozzle",
|
|
"sub_path": "process/0.30mm Standard @BBL X1 0.6 nozzle.json"
|
|
},
|
|
{
|
|
"name": "0.30mm Standard @BBL P1P 0.6 nozzle",
|
|
"sub_path": "process/0.30mm Standard @BBL P1P 0.6 nozzle.json"
|
|
},
|
|
{
|
|
"name": "0.30mm Strength @BBL X1C 0.6 nozzle",
|
|
"sub_path": "process/0.30mm Strength @BBL X1C 0.6 nozzle.json"
|
|
},
|
|
{
|
|
"name": "0.30mm Strength @BBL A1M 0.6 nozzle",
|
|
"sub_path": "process/0.30mm Strength @BBL A1M 0.6 nozzle.json"
|
|
},
|
|
{
|
|
"name": "0.30mm Strength @BBL P1P 0.6 nozzle",
|
|
"sub_path": "process/0.30mm Strength @BBL P1P 0.6 nozzle.json"
|
|
},
|
|
{
|
|
"name": "0.30mm Standard @BBL A1 0.6 nozzle",
|
|
"sub_path": "process/0.30mm Standard @BBL A1 0.6 nozzle.json"
|
|
},
|
|
{
|
|
"name": "0.30mm Strength @BBL A1 0.6 nozzle",
|
|
"sub_path": "process/0.30mm Strength @BBL A1 0.6 nozzle.json"
|
|
},
|
|
{
|
|
"name": "0.12mm Fine @BBL X1C",
|
|
"sub_path": "process/0.12mm Fine @BBL X1C.json"
|
|
},
|
|
{
|
|
"name": "0.12mm Fine @BBL P1P",
|
|
"sub_path": "process/0.12mm Fine @BBL P1P.json"
|
|
},
|
|
{
|
|
"name": "0.12mm Fine @BBL A1M",
|
|
"sub_path": "process/0.12mm Fine @BBL A1M.json"
|
|
},
|
|
{
|
|
"name": "0.12mm Fine @BBL A1",
|
|
"sub_path": "process/0.12mm Fine @BBL A1.json"
|
|
},
|
|
{
|
|
"name": "0.12mm High Quality @BBL X1C",
|
|
"sub_path": "process/0.12mm High Quality @BBL X1C.json"
|
|
},
|
|
{
|
|
"name": "0.12mm High Quality @BBL P1P",
|
|
"sub_path": "process/0.12mm High Quality @BBL P1P.json"
|
|
},
|
|
{
|
|
"name": "0.12mm High Quality @BBL A1M",
|
|
"sub_path": "process/0.12mm High Quality @BBL A1M.json"
|
|
},
|
|
{
|
|
"name": "0.12mm High Quality @BBL A1",
|
|
"sub_path": "process/0.12mm High Quality @BBL A1.json"
|
|
},
|
|
{
|
|
"name": "0.16mm Optimal @BBL X1C",
|
|
"sub_path": "process/0.16mm Optimal @BBL X1C.json"
|
|
},
|
|
{
|
|
"name": "0.16mm Optimal @BBL P1P",
|
|
"sub_path": "process/0.16mm Optimal @BBL P1P.json"
|
|
},
|
|
{
|
|
"name": "0.16mm Optimal @BBL A1M",
|
|
"sub_path": "process/0.16mm Optimal @BBL A1M.json"
|
|
},
|
|
{
|
|
"name": "0.16mm Optimal @BBL A1",
|
|
"sub_path": "process/0.16mm Optimal @BBL A1.json"
|
|
},
|
|
{
|
|
"name": "0.16mm High Quality @BBL X1C",
|
|
"sub_path": "process/0.16mm High Quality @BBL X1C.json"
|
|
},
|
|
{
|
|
"name": "0.16mm High Quality @BBL P1P",
|
|
"sub_path": "process/0.16mm High Quality @BBL P1P.json"
|
|
},
|
|
{
|
|
"name": "0.16mm High Quality @BBL A1M",
|
|
"sub_path": "process/0.16mm High Quality @BBL A1M.json"
|
|
},
|
|
{
|
|
"name": "0.16mm High Quality @BBL A1",
|
|
"sub_path": "process/0.16mm High Quality @BBL A1.json"
|
|
},
|
|
{
|
|
"name": "0.20mm Standard @BBL X1C",
|
|
"sub_path": "process/0.20mm Standard @BBL X1C.json"
|
|
},
|
|
{
|
|
"name": "0.20mm Strength @BBL X1C",
|
|
"sub_path": "process/0.20mm Strength @BBL X1C.json"
|
|
},
|
|
{
|
|
"name": "0.20mm Standard @BBL P1P",
|
|
"sub_path": "process/0.20mm Standard @BBL P1P.json"
|
|
},
|
|
{
|
|
"name": "0.20mm Strength @BBL P1P",
|
|
"sub_path": "process/0.20mm Strength @BBL P1P.json"
|
|
},
|
|
{
|
|
"name": "0.20mm Standard @BBL A1",
|
|
"sub_path": "process/0.20mm Standard @BBL A1.json"
|
|
},
|
|
{
|
|
"name": "0.20mm Strength @BBL A1",
|
|
"sub_path": "process/0.20mm Strength @BBL A1.json"
|
|
},
|
|
{
|
|
"name": "0.24mm Draft @BBL X1C",
|
|
"sub_path": "process/0.24mm Draft @BBL X1C.json"
|
|
},
|
|
{
|
|
"name": "0.24mm Draft @BBL P1P",
|
|
"sub_path": "process/0.24mm Draft @BBL P1P.json"
|
|
},
|
|
{
|
|
"name": "0.24mm Draft @BBL A1M",
|
|
"sub_path": "process/0.24mm Draft @BBL A1M.json"
|
|
},
|
|
{
|
|
"name": "0.24mm Draft @BBL A1",
|
|
"sub_path": "process/0.24mm Draft @BBL A1.json"
|
|
},
|
|
{
|
|
"name": "0.28mm Extra Draft @BBL X1C",
|
|
"sub_path": "process/0.28mm Extra Draft @BBL X1C.json"
|
|
},
|
|
{
|
|
"name": "0.28mm Extra Draft @BBL P1P",
|
|
"sub_path": "process/0.28mm Extra Draft @BBL P1P.json"
|
|
},
|
|
{
|
|
"name": "0.28mm Extra Draft @BBL A1M",
|
|
"sub_path": "process/0.28mm Extra Draft @BBL A1M.json"
|
|
},
|
|
{
|
|
"name": "0.28mm Extra Draft @BBL A1",
|
|
"sub_path": "process/0.28mm Extra Draft @BBL A1.json"
|
|
},
|
|
{
|
|
"name": "0.06mm Standard @BBL X1C 0.2 nozzle",
|
|
"sub_path": "process/0.06mm Standard @BBL X1C 0.2 nozzle.json"
|
|
},
|
|
{
|
|
"name": "0.06mm Fine @BBL A1M 0.2 nozzle",
|
|
"sub_path": "process/0.06mm Fine @BBL A1M 0.2 nozzle.json"
|
|
},
|
|
{
|
|
"name": "0.06mm Fine @BBL P1P 0.2 nozzle",
|
|
"sub_path": "process/0.06mm Fine @BBL P1P 0.2 nozzle.json"
|
|
},
|
|
{
|
|
"name": "0.06mm Fine @BBL A1 0.2 nozzle",
|
|
"sub_path": "process/0.06mm Fine @BBL A1 0.2 nozzle.json"
|
|
},
|
|
{
|
|
"name": "0.06mm High Quality @BBL X1C 0.2 nozzle",
|
|
"sub_path": "process/0.06mm High Quality @BBL X1C 0.2 nozzle.json"
|
|
},
|
|
{
|
|
"name": "0.06mm High Quality @BBL P1P 0.2 nozzle",
|
|
"sub_path": "process/0.06mm High Quality @BBL P1P 0.2 nozzle.json"
|
|
},
|
|
{
|
|
"name": "0.06mm High Quality @BBL A1M 0.2 nozzle",
|
|
"sub_path": "process/0.06mm High Quality @BBL A1M 0.2 nozzle.json"
|
|
},
|
|
{
|
|
"name": "0.06mm High Quality @BBL A1 0.2 nozzle",
|
|
"sub_path": "process/0.06mm High Quality @BBL A1 0.2 nozzle.json"
|
|
},
|
|
{
|
|
"name": "0.08mm Standard @BBL X1C 0.2 nozzle",
|
|
"sub_path": "process/0.08mm Standard @BBL X1C 0.2 nozzle.json"
|
|
},
|
|
{
|
|
"name": "0.08mm Optimal @BBL A1M 0.2 nozzle",
|
|
"sub_path": "process/0.08mm Optimal @BBL A1M 0.2 nozzle.json"
|
|
},
|
|
{
|
|
"name": "0.08mm Optimal @BBL P1P 0.2 nozzle",
|
|
"sub_path": "process/0.08mm Optimal @BBL P1P 0.2 nozzle.json"
|
|
},
|
|
{
|
|
"name": "0.08mm Optimal @BBL A1 0.2 nozzle",
|
|
"sub_path": "process/0.08mm Optimal @BBL A1 0.2 nozzle.json"
|
|
},
|
|
{
|
|
"name": "0.08mm High Quality @BBL A1 0.2 nozzle",
|
|
"sub_path": "process/0.08mm High Quality @BBL A1 0.2 nozzle.json"
|
|
},
|
|
{
|
|
"name": "0.08mm High Quality @BBL A1M 0.2 nozzle",
|
|
"sub_path": "process/0.08mm High Quality @BBL A1M 0.2 nozzle.json"
|
|
},
|
|
{
|
|
"name": "0.08mm High Quality @BBL P1P 0.2 nozzle",
|
|
"sub_path": "process/0.08mm High Quality @BBL P1P 0.2 nozzle.json"
|
|
},
|
|
{
|
|
"name": "0.08mm High Quality @BBL X1C 0.2 nozzle",
|
|
"sub_path": "process/0.08mm High Quality @BBL X1C 0.2 nozzle.json"
|
|
},
|
|
{
|
|
"name": "0.12mm Standard @BBL X1C 0.2 nozzle",
|
|
"sub_path": "process/0.12mm Standard @BBL X1C 0.2 nozzle.json"
|
|
},
|
|
{
|
|
"name": "0.12mm Draft @BBL A1M 0.2 nozzle",
|
|
"sub_path": "process/0.12mm Draft @BBL A1M 0.2 nozzle.json"
|
|
},
|
|
{
|
|
"name": "0.12mm Draft @BBL P1P 0.2 nozzle",
|
|
"sub_path": "process/0.12mm Draft @BBL P1P 0.2 nozzle.json"
|
|
},
|
|
{
|
|
"name": "0.12mm Draft @BBL A1 0.2 nozzle",
|
|
"sub_path": "process/0.12mm Draft @BBL A1 0.2 nozzle.json"
|
|
},
|
|
{
|
|
"name": "0.14mm Standard @BBL X1C 0.2 nozzle",
|
|
"sub_path": "process/0.14mm Standard @BBL X1C 0.2 nozzle.json"
|
|
},
|
|
{
|
|
"name": "0.14mm Extra Draft @BBL A1M 0.2 nozzle",
|
|
"sub_path": "process/0.14mm Extra Draft @BBL A1M 0.2 nozzle.json"
|
|
},
|
|
{
|
|
"name": "0.14mm Extra Draft @BBL P1P 0.2 nozzle",
|
|
"sub_path": "process/0.14mm Extra Draft @BBL P1P 0.2 nozzle.json"
|
|
},
|
|
{
|
|
"name": "0.14mm Extra Draft @BBL A1 0.2 nozzle",
|
|
"sub_path": "process/0.14mm Extra Draft @BBL A1 0.2 nozzle.json"
|
|
},
|
|
{
|
|
"name": "0.18mm Standard @BBL X1C 0.6 nozzle",
|
|
"sub_path": "process/0.18mm Standard @BBL X1C 0.6 nozzle.json"
|
|
},
|
|
{
|
|
"name": "0.18mm Fine @BBL A1M 0.6 nozzle",
|
|
"sub_path": "process/0.18mm Fine @BBL A1M 0.6 nozzle.json"
|
|
},
|
|
{
|
|
"name": "0.18mm Fine @BBL P1P 0.6 nozzle",
|
|
"sub_path": "process/0.18mm Fine @BBL P1P 0.6 nozzle.json"
|
|
},
|
|
{
|
|
"name": "0.18mm Fine @BBL A1 0.6 nozzle",
|
|
"sub_path": "process/0.18mm Fine @BBL A1 0.6 nozzle.json"
|
|
},
|
|
{
|
|
"name": "0.24mm Standard @BBL X1C 0.6 nozzle",
|
|
"sub_path": "process/0.24mm Standard @BBL X1C 0.6 nozzle.json"
|
|
},
|
|
{
|
|
"name": "0.24mm Optimal @BBL A1M 0.6 nozzle",
|
|
"sub_path": "process/0.24mm Optimal @BBL A1M 0.6 nozzle.json"
|
|
},
|
|
{
|
|
"name": "0.24mm Optimal @BBL P1P 0.6 nozzle",
|
|
"sub_path": "process/0.24mm Optimal @BBL P1P 0.6 nozzle.json"
|
|
},
|
|
{
|
|
"name": "0.24mm Optimal @BBL A1 0.6 nozzle",
|
|
"sub_path": "process/0.24mm Optimal @BBL A1 0.6 nozzle.json"
|
|
},
|
|
{
|
|
"name": "0.36mm Standard @BBL X1C 0.6 nozzle",
|
|
"sub_path": "process/0.36mm Standard @BBL X1C 0.6 nozzle.json"
|
|
},
|
|
{
|
|
"name": "0.36mm Draft @BBL A1M 0.6 nozzle",
|
|
"sub_path": "process/0.36mm Draft @BBL A1M 0.6 nozzle.json"
|
|
},
|
|
{
|
|
"name": "0.36mm Draft @BBL P1P 0.6 nozzle",
|
|
"sub_path": "process/0.36mm Draft @BBL P1P 0.6 nozzle.json"
|
|
},
|
|
{
|
|
"name": "0.36mm Draft @BBL A1 0.6 nozzle",
|
|
"sub_path": "process/0.36mm Draft @BBL A1 0.6 nozzle.json"
|
|
},
|
|
{
|
|
"name": "0.42mm Standard @BBL X1C 0.6 nozzle",
|
|
"sub_path": "process/0.42mm Standard @BBL X1C 0.6 nozzle.json"
|
|
},
|
|
{
|
|
"name": "0.42mm Extra Draft @BBL A1M 0.6 nozzle",
|
|
"sub_path": "process/0.42mm Extra Draft @BBL A1M 0.6 nozzle.json"
|
|
},
|
|
{
|
|
"name": "0.42mm Extra Draft @BBL P1P 0.6 nozzle",
|
|
"sub_path": "process/0.42mm Extra Draft @BBL P1P 0.6 nozzle.json"
|
|
},
|
|
{
|
|
"name": "0.42mm Extra Draft @BBL A1 0.6 nozzle",
|
|
"sub_path": "process/0.42mm Extra Draft @BBL A1 0.6 nozzle.json"
|
|
},
|
|
{
|
|
"name": "0.24mm Standard @BBL X1C 0.8 nozzle",
|
|
"sub_path": "process/0.24mm Standard @BBL X1C 0.8 nozzle.json"
|
|
},
|
|
{
|
|
"name": "0.24mm Fine @BBL A1M 0.8 nozzle",
|
|
"sub_path": "process/0.24mm Fine @BBL A1M 0.8 nozzle.json"
|
|
},
|
|
{
|
|
"name": "0.24mm Fine @BBL P1P 0.8 nozzle",
|
|
"sub_path": "process/0.24mm Fine @BBL P1P 0.8 nozzle.json"
|
|
},
|
|
{
|
|
"name": "0.24mm Fine @BBL A1 0.8 nozzle",
|
|
"sub_path": "process/0.24mm Fine @BBL A1 0.8 nozzle.json"
|
|
},
|
|
{
|
|
"name": "0.32mm Standard @BBL X1C 0.8 nozzle",
|
|
"sub_path": "process/0.32mm Standard @BBL X1C 0.8 nozzle.json"
|
|
},
|
|
{
|
|
"name": "0.32mm Optimal @BBL A1M 0.8 nozzle",
|
|
"sub_path": "process/0.32mm Optimal @BBL A1M 0.8 nozzle.json"
|
|
},
|
|
{
|
|
"name": "0.32mm Optimal @BBL P1P 0.8 nozzle",
|
|
"sub_path": "process/0.32mm Optimal @BBL P1P 0.8 nozzle.json"
|
|
},
|
|
{
|
|
"name": "0.32mm Optimal @BBL A1 0.8 nozzle",
|
|
"sub_path": "process/0.32mm Optimal @BBL A1 0.8 nozzle.json"
|
|
},
|
|
{
|
|
"name": "0.48mm Standard @BBL X1C 0.8 nozzle",
|
|
"sub_path": "process/0.48mm Standard @BBL X1C 0.8 nozzle.json"
|
|
},
|
|
{
|
|
"name": "0.48mm Draft @BBL A1M 0.8 nozzle",
|
|
"sub_path": "process/0.48mm Draft @BBL A1M 0.8 nozzle.json"
|
|
},
|
|
{
|
|
"name": "0.48mm Draft @BBL P1P 0.8 nozzle",
|
|
"sub_path": "process/0.48mm Draft @BBL P1P 0.8 nozzle.json"
|
|
},
|
|
{
|
|
"name": "0.48mm Draft @BBL A1 0.8 nozzle",
|
|
"sub_path": "process/0.48mm Draft @BBL A1 0.8 nozzle.json"
|
|
},
|
|
{
|
|
"name": "0.56mm Standard @BBL X1C 0.8 nozzle",
|
|
"sub_path": "process/0.56mm Standard @BBL X1C 0.8 nozzle.json"
|
|
},
|
|
{
|
|
"name": "0.56mm Extra Draft @BBL A1M 0.8 nozzle",
|
|
"sub_path": "process/0.56mm Extra Draft @BBL A1M 0.8 nozzle.json"
|
|
},
|
|
{
|
|
"name": "0.56mm Extra Draft @BBL P1P 0.8 nozzle",
|
|
"sub_path": "process/0.56mm Extra Draft @BBL P1P 0.8 nozzle.json"
|
|
},
|
|
{
|
|
"name": "0.56mm Extra Draft @BBL A1 0.8 nozzle",
|
|
"sub_path": "process/0.56mm Extra Draft @BBL A1 0.8 nozzle.json"
|
|
},
|
|
{
|
|
"name": "0.10mm Standard @BBL A1M 0.2 nozzle",
|
|
"sub_path": "process/0.10mm Standard @BBL A1M 0.2 nozzle.json"
|
|
},
|
|
{
|
|
"name": "0.40mm Standard @BBL A1M 0.8 nozzle",
|
|
"sub_path": "process/0.40mm Standard @BBL A1M 0.8 nozzle.json"
|
|
},
|
|
{
|
|
"name": "0.30mm Standard @BBL A1M 0.6 nozzle",
|
|
"sub_path": "process/0.30mm Standard @BBL A1M 0.6 nozzle.json"
|
|
},
|
|
{
|
|
"name": "0.20mm Standard @BBL A1M",
|
|
"sub_path": "process/0.20mm Standard @BBL A1M.json"
|
|
},
|
|
{
|
|
"name": "0.20mm Strength @BBL A1M",
|
|
"sub_path": "process/0.20mm Strength @BBL A1M.json"
|
|
}
|
|
],
|
|
"filament_list": [
|
|
{
|
|
"name": "fdm_filament_common",
|
|
"sub_path": "filament/fdm_filament_common.json"
|
|
},
|
|
{
|
|
"name": "fdm_filament_pla",
|
|
"sub_path": "filament/fdm_filament_pla.json"
|
|
},
|
|
{
|
|
"name": "fdm_filament_tpu",
|
|
"sub_path": "filament/fdm_filament_tpu.json"
|
|
},
|
|
{
|
|
"name": "fdm_filament_pet",
|
|
"sub_path": "filament/fdm_filament_pet.json"
|
|
},
|
|
{
|
|
"name": "fdm_filament_abs",
|
|
"sub_path": "filament/fdm_filament_abs.json"
|
|
},
|
|
{
|
|
"name": "fdm_filament_pc",
|
|
"sub_path": "filament/fdm_filament_pc.json"
|
|
},
|
|
{
|
|
"name": "fdm_filament_asa",
|
|
"sub_path": "filament/fdm_filament_asa.json"
|
|
},
|
|
{
|
|
"name": "fdm_filament_pva",
|
|
"sub_path": "filament/fdm_filament_pva.json"
|
|
},
|
|
{
|
|
"name": "fdm_filament_pa",
|
|
"sub_path": "filament/fdm_filament_pa.json"
|
|
},
|
|
{
|
|
"name": "fdm_filament_hips",
|
|
"sub_path": "filament/fdm_filament_hips.json"
|
|
},
|
|
{
|
|
"name": "fdm_filament_pps",
|
|
"sub_path": "filament/fdm_filament_pps.json"
|
|
},
|
|
{
|
|
"name": "fdm_filament_ppa",
|
|
"sub_path": "filament/fdm_filament_ppa.json"
|
|
},
|
|
{
|
|
"name": "fdm_filament_pe",
|
|
"sub_path": "filament/fdm_filament_pe.json"
|
|
},
|
|
{
|
|
"name": "fdm_filament_pp",
|
|
"sub_path": "filament/fdm_filament_pp.json"
|
|
},
|
|
{
|
|
"name": "fdm_filament_eva",
|
|
"sub_path": "filament/fdm_filament_eva.json"
|
|
},
|
|
{
|
|
"name": "fdm_filament_pha",
|
|
"sub_path": "filament/fdm_filament_pha.json"
|
|
},
|
|
{
|
|
"name": "fdm_filament_bvoh",
|
|
"sub_path": "filament/fdm_filament_bvoh.json"
|
|
},
|
|
{
|
|
"name": "Bambu PLA Matte @base",
|
|
"sub_path": "filament/Bambu PLA Matte @base.json"
|
|
},
|
|
{
|
|
"name": "Bambu PLA Basic @base",
|
|
"sub_path": "filament/Bambu PLA Basic @base.json"
|
|
},
|
|
{
|
|
"name": "Bambu PLA Tough @base",
|
|
"sub_path": "filament/Bambu PLA Tough @base.json"
|
|
},
|
|
{
|
|
"name": "Bambu PLA Marble @base",
|
|
"sub_path": "filament/Bambu PLA Marble @base.json"
|
|
},
|
|
{
|
|
"name": "Bambu PLA Sparkle @base",
|
|
"sub_path": "filament/Bambu PLA Sparkle @base.json"
|
|
},
|
|
{
|
|
"name": "Bambu PLA Impact @base",
|
|
"sub_path": "filament/Bambu PLA Impact @base.json"
|
|
},
|
|
{
|
|
"name": "Bambu PLA Metal @base",
|
|
"sub_path": "filament/Bambu PLA Metal @base.json"
|
|
},
|
|
{
|
|
"name": "Bambu PLA Silk @base",
|
|
"sub_path": "filament/Bambu PLA Silk @base.json"
|
|
},
|
|
{
|
|
"name": "Bambu Support W @base",
|
|
"sub_path": "filament/Bambu Support W @base.json"
|
|
},
|
|
{
|
|
"name": "eSUN PLA+ @base",
|
|
"sub_path": "filament/eSUN PLA+ @base.json"
|
|
},
|
|
{
|
|
"name": "PolyTerra PLA @base",
|
|
"sub_path": "filament/PolyTerra PLA @base.json"
|
|
},
|
|
{
|
|
"name": "PolyLite PLA @base",
|
|
"sub_path": "filament/PolyLite PLA @base.json"
|
|
},
|
|
{
|
|
"name": "Generic PLA @base",
|
|
"sub_path": "filament/Generic PLA @base.json"
|
|
},
|
|
{
|
|
"name": "Generic PLA Silk @base",
|
|
"sub_path": "filament/Generic PLA Silk @base.json"
|
|
},
|
|
{
|
|
"name": "Generic PLA-CF @base",
|
|
"sub_path": "filament/Generic PLA-CF @base.json"
|
|
},
|
|
{
|
|
"name": "Bambu PLA-CF @base",
|
|
"sub_path": "filament/Bambu PLA-CF @base.json"
|
|
},
|
|
{
|
|
"name": "Bambu Support For PLA @base",
|
|
"sub_path": "filament/Bambu Support For PLA @base.json"
|
|
},
|
|
{
|
|
"name": "Bambu PLA Aero @base",
|
|
"sub_path": "filament/Bambu PLA Aero @base.json"
|
|
},
|
|
{
|
|
"name": "Overture PLA @base",
|
|
"sub_path": "filament/Overture PLA @base.json"
|
|
},
|
|
{
|
|
"name": "Overture Matte PLA @base",
|
|
"sub_path": "filament/Overture Matte PLA @base.json"
|
|
},
|
|
{
|
|
"name": "Generic PLA High Speed @base",
|
|
"sub_path": "filament/Generic PLA High Speed @base.json"
|
|
},
|
|
{
|
|
"name": "Bambu PLA Glow @base",
|
|
"sub_path": "filament/Bambu PLA Glow @base.json"
|
|
},
|
|
{
|
|
"name": "Bambu PLA Dynamic @base",
|
|
"sub_path": "filament/Bambu PLA Dynamic @base.json"
|
|
},
|
|
{
|
|
"name": "Bambu PLA Galaxy @base",
|
|
"sub_path": "filament/Bambu PLA Galaxy @base.json"
|
|
},
|
|
{
|
|
"name": "Bambu Support For PLA/PETG @base",
|
|
"sub_path": "filament/Bambu Support For PLA-PETG @base.json"
|
|
},
|
|
{
|
|
"name": "Bambu TPU 95A @base",
|
|
"sub_path": "filament/Bambu TPU 95A @base.json"
|
|
},
|
|
{
|
|
"name": "Generic TPU",
|
|
"sub_path": "filament/Generic TPU.json"
|
|
},
|
|
{
|
|
"name": "Generic TPU @BBL P1P",
|
|
"sub_path": "filament/P1P/Generic TPU @BBL P1P.json"
|
|
},
|
|
{
|
|
"name": "Bambu TPU 95A HF @base",
|
|
"sub_path": "filament/Bambu TPU 95A HF @base.json"
|
|
},
|
|
{
|
|
"name": "Bambu PETG Basic @base",
|
|
"sub_path": "filament/Bambu PETG Basic @base.json"
|
|
},
|
|
{
|
|
"name": "Bambu PET-CF @base",
|
|
"sub_path": "filament/Bambu PET-CF @base.json"
|
|
},
|
|
{
|
|
"name": "Generic PETG @base",
|
|
"sub_path": "filament/Generic PETG @base.json"
|
|
},
|
|
{
|
|
"name": "Generic PETG-CF @base",
|
|
"sub_path": "filament/Generic PETG-CF @base.json"
|
|
},
|
|
{
|
|
"name": "Bambu PETG-CF @base",
|
|
"sub_path": "filament/Bambu PETG-CF @base.json"
|
|
},
|
|
{
|
|
"name": "PolyLite PETG @base",
|
|
"sub_path": "filament/PolyLite PETG @base.json"
|
|
},
|
|
{
|
|
"name": "Bambu PETG Translucent @base",
|
|
"sub_path": "filament/Bambu PETG Translucent @base.json"
|
|
},
|
|
{
|
|
"name": "Generic PCTG @base",
|
|
"sub_path": "filament/Generic PCTG @base.json"
|
|
},
|
|
{
|
|
"name": "Bambu ABS @base",
|
|
"sub_path": "filament/Bambu ABS @base.json"
|
|
},
|
|
{
|
|
"name": "Generic ABS @base",
|
|
"sub_path": "filament/Generic ABS @base.json"
|
|
},
|
|
{
|
|
"name": "PolyLite ABS @base",
|
|
"sub_path": "filament/PolyLite ABS @base.json"
|
|
},
|
|
{
|
|
"name": "Bambu ABS-GF @base",
|
|
"sub_path": "filament/Bambu ABS-GF @base.json"
|
|
},
|
|
{
|
|
"name": "Bambu PC @base",
|
|
"sub_path": "filament/Bambu PC @base.json"
|
|
},
|
|
{
|
|
"name": "Generic PC @base",
|
|
"sub_path": "filament/Generic PC @base.json"
|
|
},
|
|
{
|
|
"name": "Generic ASA @base",
|
|
"sub_path": "filament/Generic ASA @base.json"
|
|
},
|
|
{
|
|
"name": "Bambu ASA @base",
|
|
"sub_path": "filament/Bambu ASA @base.json"
|
|
},
|
|
{
|
|
"name": "PolyLite ASA @base",
|
|
"sub_path": "filament/PolyLite ASA @base.json"
|
|
},
|
|
{
|
|
"name": "Bambu ASA-Aero @base",
|
|
"sub_path": "filament/Bambu ASA-Aero @base.json"
|
|
},
|
|
{
|
|
"name": "Generic PVA @base",
|
|
"sub_path": "filament/Generic PVA @base.json"
|
|
},
|
|
{
|
|
"name": "Bambu PVA @base",
|
|
"sub_path": "filament/Bambu PVA @base.json"
|
|
},
|
|
{
|
|
"name": "Bambu Support G @base",
|
|
"sub_path": "filament/Bambu Support G @base.json"
|
|
},
|
|
{
|
|
"name": "Bambu PA-CF @base",
|
|
"sub_path": "filament/Bambu PA-CF @base.json"
|
|
},
|
|
{
|
|
"name": "Generic PA",
|
|
"sub_path": "filament/Generic PA.json"
|
|
},
|
|
{
|
|
"name": "Generic PA-CF",
|
|
"sub_path": "filament/Generic PA-CF.json"
|
|
},
|
|
{
|
|
"name": "Bambu PAHT-CF @base",
|
|
"sub_path": "filament/Bambu PAHT-CF @base.json"
|
|
},
|
|
{
|
|
"name": "Generic PA-CF @BBL P1P",
|
|
"sub_path": "filament/P1P/Generic PA-CF @BBL P1P.json"
|
|
},
|
|
{
|
|
"name": "Generic PA @BBL P1P",
|
|
"sub_path": "filament/P1P/Generic PA @BBL P1P.json"
|
|
},
|
|
{
|
|
"name": "Bambu Support For PA/PET @base",
|
|
"sub_path": "filament/Bambu Support For PA PET @base.json"
|
|
},
|
|
{
|
|
"name": "Bambu PA6-CF @base",
|
|
"sub_path": "filament/Bambu PA6-CF @base.json"
|
|
},
|
|
{
|
|
"name": "Bambu PA6-GF @base",
|
|
"sub_path": "filament/Bambu PA6-GF @base.json"
|
|
},
|
|
{
|
|
"name": "Generic HIPS @base",
|
|
"sub_path": "filament/Generic HIPS @base.json"
|
|
},
|
|
{
|
|
"name": "Generic PPS-CF @base",
|
|
"sub_path": "filament/Generic PPS-CF @base.json"
|
|
},
|
|
{
|
|
"name": "Generic PPS @base",
|
|
"sub_path": "filament/Generic PPS @base.json"
|
|
},
|
|
{
|
|
"name": "Generic PPA-CF @base",
|
|
"sub_path": "filament/Generic PPA-CF @base.json"
|
|
},
|
|
{
|
|
"name": "Generic PPA-GF @base",
|
|
"sub_path": "filament/Generic PPA-GF @base.json"
|
|
},
|
|
{
|
|
"name": "Generic PE @base",
|
|
"sub_path": "filament/Generic PE @base.json"
|
|
},
|
|
{
|
|
"name": "Generic PE-CF @base",
|
|
"sub_path": "filament/Generic PE-CF @base.json"
|
|
},
|
|
{
|
|
"name": "Generic PP @base",
|
|
"sub_path": "filament/Generic PP @base.json"
|
|
},
|
|
{
|
|
"name": "Generic PP-CF @base",
|
|
"sub_path": "filament/Generic PP-CF @base.json"
|
|
},
|
|
{
|
|
"name": "Generic PP-GF @base",
|
|
"sub_path": "filament/Generic PP-GF @base.json"
|
|
},
|
|
{
|
|
"name": "Generic EVA @base",
|
|
"sub_path": "filament/Generic EVA @base.json"
|
|
},
|
|
{
|
|
"name": "Generic PHA @base",
|
|
"sub_path": "filament/Generic PHA @base.json"
|
|
},
|
|
{
|
|
"name": "Generic BVOH @base",
|
|
"sub_path": "filament/Generic BVOH @base.json"
|
|
},
|
|
{
|
|
"name": "Bambu PLA Matte @BBL X1C",
|
|
"sub_path": "filament/Bambu PLA Matte @BBL X1C.json"
|
|
},
|
|
{
|
|
"name": "Bambu PLA Matte @BBL X1C 0.2 nozzle",
|
|
"sub_path": "filament/Bambu PLA Matte @BBL X1C 0.2 nozzle.json"
|
|
},
|
|
{
|
|
"name": "Bambu PLA Matte @BBL X1C 0.8 nozzle",
|
|
"sub_path": "filament/Bambu PLA Matte @BBL X1C 0.8 nozzle.json"
|
|
},
|
|
{
|
|
"name": "Bambu PLA Matte @BBL X1",
|
|
"sub_path": "filament/Bambu PLA Matte @BBL X1.json"
|
|
},
|
|
{
|
|
"name": "Bambu PLA Matte @BBL P1P 0.2 nozzle",
|
|
"sub_path": "filament/P1P/Bambu PLA Matte @BBL P1P 0.2 nozzle.json"
|
|
},
|
|
{
|
|
"name": "Bambu PLA Matte @BBL P1P",
|
|
"sub_path": "filament/P1P/Bambu PLA Matte @BBL P1P.json"
|
|
},
|
|
{
|
|
"name": "Bambu PLA Matte @BBL A1M",
|
|
"sub_path": "filament/Bambu PLA Matte @BBL A1M.json"
|
|
},
|
|
{
|
|
"name": "Bambu PLA Matte @BBL A1M 0.2 nozzle",
|
|
"sub_path": "filament/Bambu PLA Matte @BBL A1M 0.2 nozzle.json"
|
|
},
|
|
{
|
|
"name": "Bambu PLA Matte @BBL A1",
|
|
"sub_path": "filament/Bambu PLA Matte @BBL A1.json"
|
|
},
|
|
{
|
|
"name": "Bambu PLA Matte @BBL A1 0.2 nozzle",
|
|
"sub_path": "filament/Bambu PLA Matte @BBL A1 0.2 nozzle.json"
|
|
},
|
|
{
|
|
"name": "Bambu PLA Basic @BBL X1C",
|
|
"sub_path": "filament/Bambu PLA Basic @BBL X1C.json"
|
|
},
|
|
{
|
|
"name": "Bambu PLA Basic @BBL X1C 0.2 nozzle",
|
|
"sub_path": "filament/Bambu PLA Basic @BBL X1C 0.2 nozzle.json"
|
|
},
|
|
{
|
|
"name": "Bambu PLA Basic @BBL X1C 0.8 nozzle",
|
|
"sub_path": "filament/Bambu PLA Basic @BBL X1C 0.8 nozzle.json"
|
|
},
|
|
{
|
|
"name": "Bambu PLA Basic @BBL X1",
|
|
"sub_path": "filament/Bambu PLA Basic @BBL X1.json"
|
|
},
|
|
{
|
|
"name": "Bambu PLA Basic @BBL P1P 0.2 nozzle",
|
|
"sub_path": "filament/P1P/Bambu PLA Basic @BBL P1P 0.2 nozzle.json"
|
|
},
|
|
{
|
|
"name": "Bambu PLA Basic @BBL P1P",
|
|
"sub_path": "filament/P1P/Bambu PLA Basic @BBL P1P.json"
|
|
},
|
|
{
|
|
"name": "Bambu PLA Basic @BBL A1M",
|
|
"sub_path": "filament/Bambu PLA Basic @BBL A1M.json"
|
|
},
|
|
{
|
|
"name": "Bambu PLA Basic @BBL A1M 0.2 nozzle",
|
|
"sub_path": "filament/Bambu PLA Basic @BBL A1M 0.2 nozzle.json"
|
|
},
|
|
{
|
|
"name": "Bambu PLA Basic @BBL A1",
|
|
"sub_path": "filament/Bambu PLA Basic @BBL A1.json"
|
|
},
|
|
{
|
|
"name": "Bambu PLA Basic @BBL A1 0.2 nozzle",
|
|
"sub_path": "filament/Bambu PLA Basic @BBL A1 0.2 nozzle.json"
|
|
},
|
|
{
|
|
"name": "Bambu PLA Tough @BBL X1C",
|
|
"sub_path": "filament/Bambu PLA Tough @BBL X1C.json"
|
|
},
|
|
{
|
|
"name": "Bambu PLA Tough @BBL X1C 0.2 nozzle",
|
|
"sub_path": "filament/Bambu PLA Tough @BBL X1C 0.2 nozzle.json"
|
|
},
|
|
{
|
|
"name": "Bambu PLA Tough @BBL X1",
|
|
"sub_path": "filament/Bambu PLA Tough @BBL X1.json"
|
|
},
|
|
{
|
|
"name": "Bambu PLA Tough @BBL P1P 0.2 nozzle",
|
|
"sub_path": "filament/P1P/Bambu PLA Tough @BBL P1P 0.2 nozzle.json"
|
|
},
|
|
{
|
|
"name": "Bambu PLA Tough @BBL P1P",
|
|
"sub_path": "filament/P1P/Bambu PLA Tough @BBL P1P.json"
|
|
},
|
|
{
|
|
"name": "Bambu PLA Tough @BBL A1M",
|
|
"sub_path": "filament/Bambu PLA Tough @BBL A1M.json"
|
|
},
|
|
{
|
|
"name": "Bambu PLA Tough @BBL A1M 0.2 nozzle",
|
|
"sub_path": "filament/Bambu PLA Tough @BBL A1M 0.2 nozzle.json"
|
|
},
|
|
{
|
|
"name": "Bambu PLA Tough @BBL A1",
|
|
"sub_path": "filament/Bambu PLA Tough @BBL A1.json"
|
|
},
|
|
{
|
|
"name": "Bambu PLA Tough @BBL A1 0.2 nozzle",
|
|
"sub_path": "filament/Bambu PLA Tough @BBL A1 0.2 nozzle.json"
|
|
},
|
|
{
|
|
"name": "Bambu PLA Marble @BBL X1",
|
|
"sub_path": "filament/Bambu PLA Marble @BBL X1.json"
|
|
},
|
|
{
|
|
"name": "Bambu PLA Marble @BBL X1C",
|
|
"sub_path": "filament/Bambu PLA Marble @BBL X1C.json"
|
|
},
|
|
{
|
|
"name": "Bambu PLA Marble @BBL P1P",
|
|
"sub_path": "filament/P1P/Bambu PLA Marble @BBL P1P.json"
|
|
},
|
|
{
|
|
"name": "Bambu PLA Marble @BBL A1M",
|
|
"sub_path": "filament/Bambu PLA Marble @BBL A1M.json"
|
|
},
|
|
{
|
|
"name": "Bambu PLA Marble @BBL A1",
|
|
"sub_path": "filament/Bambu PLA Marble @BBL A1.json"
|
|
},
|
|
{
|
|
"name": "Bambu PLA Sparkle @BBL X1",
|
|
"sub_path": "filament/Bambu PLA Sparkle @BBL X1.json"
|
|
},
|
|
{
|
|
"name": "Bambu PLA Sparkle @BBL X1C",
|
|
"sub_path": "filament/Bambu PLA Sparkle @BBL X1C.json"
|
|
},
|
|
{
|
|
"name": "Bambu PLA Sparkle @BBL P1P",
|
|
"sub_path": "filament/P1P/Bambu PLA Sparkle @BBL P1P.json"
|
|
},
|
|
{
|
|
"name": "Bambu PLA Sparkle @BBL A1M",
|
|
"sub_path": "filament/Bambu PLA Sparkle @BBL A1M.json"
|
|
},
|
|
{
|
|
"name": "Bambu PLA Sparkle @BBL A1",
|
|
"sub_path": "filament/Bambu PLA Sparkle @BBL A1.json"
|
|
},
|
|
{
|
|
"name": "Bambu PLA Metal @BBL X1C 0.2 nozzle",
|
|
"sub_path": "filament/Bambu PLA Metal @BBL X1C 0.2 nozzle.json"
|
|
},
|
|
{
|
|
"name": "Bambu PLA Metal @BBL X1",
|
|
"sub_path": "filament/Bambu PLA Metal @BBL X1.json"
|
|
},
|
|
{
|
|
"name": "Bambu PLA Metal @BBL X1C",
|
|
"sub_path": "filament/Bambu PLA Metal @BBL X1C.json"
|
|
},
|
|
{
|
|
"name": "Bambu PLA Metal @BBL P1P 0.2 nozzle",
|
|
"sub_path": "filament/P1P/Bambu PLA Metal @BBL P1P 0.2 nozzle.json"
|
|
},
|
|
{
|
|
"name": "Bambu PLA Metal @BBL P1P",
|
|
"sub_path": "filament/P1P/Bambu PLA Metal @BBL P1P.json"
|
|
},
|
|
{
|
|
"name": "Bambu PLA Metal @BBL A1M",
|
|
"sub_path": "filament/Bambu PLA Metal @BBL A1M.json"
|
|
},
|
|
{
|
|
"name": "Bambu PLA Metal @BBL A1M 0.2 nozzle",
|
|
"sub_path": "filament/Bambu PLA Metal @BBL A1M 0.2 nozzle.json"
|
|
},
|
|
{
|
|
"name": "Bambu PLA Metal @BBL A1",
|
|
"sub_path": "filament/Bambu PLA Metal @BBL A1.json"
|
|
},
|
|
{
|
|
"name": "Bambu PLA Metal @BBL A1 0.2 nozzle",
|
|
"sub_path": "filament/Bambu PLA Metal @BBL A1 0.2 nozzle.json"
|
|
},
|
|
{
|
|
"name": "Bambu PLA Silk @BBL X1",
|
|
"sub_path": "filament/Bambu PLA Silk @BBL X1.json"
|
|
},
|
|
{
|
|
"name": "Bambu PLA Silk @BBL X1C 0.2 nozzle",
|
|
"sub_path": "filament/Bambu PLA Silk @BBL X1C 0.2 nozzle.json"
|
|
},
|
|
{
|
|
"name": "Bambu PLA Silk @BBL X1C",
|
|
"sub_path": "filament/Bambu PLA Silk @BBL X1C.json"
|
|
},
|
|
{
|
|
"name": "Bambu PLA Silk @BBL P1P",
|
|
"sub_path": "filament/P1P/Bambu PLA Silk @BBL P1P.json"
|
|
},
|
|
{
|
|
"name": "Bambu PLA Silk @BBL P1P 0.2 nozzle",
|
|
"sub_path": "filament/P1P/Bambu PLA Silk @BBL P1P 0.2 nozzle.json"
|
|
},
|
|
{
|
|
"name": "Bambu PLA Silk @BBL A1M",
|
|
"sub_path": "filament/Bambu PLA Silk @BBL A1M.json"
|
|
},
|
|
{
|
|
"name": "Bambu PLA Silk @BBL A1M 0.2 nozzle",
|
|
"sub_path": "filament/Bambu PLA Silk @BBL A1M 0.2 nozzle.json"
|
|
},
|
|
{
|
|
"name": "Bambu PLA Silk @BBL A1",
|
|
"sub_path": "filament/Bambu PLA Silk @BBL A1.json"
|
|
},
|
|
{
|
|
"name": "Bambu PLA Silk @BBL A1 0.2 nozzle",
|
|
"sub_path": "filament/Bambu PLA Silk @BBL A1 0.2 nozzle.json"
|
|
},
|
|
{
|
|
"name": "Bambu Support W @BBL X1C",
|
|
"sub_path": "filament/Bambu Support W @BBL X1C.json"
|
|
},
|
|
{
|
|
"name": "Bambu Support W @BBL X1C 0.2 nozzle",
|
|
"sub_path": "filament/Bambu Support W @BBL X1C 0.2 nozzle.json"
|
|
},
|
|
{
|
|
"name": "Bambu Support W @BBL X1",
|
|
"sub_path": "filament/Bambu Support W @BBL X1.json"
|
|
},
|
|
{
|
|
"name": "Bambu Support W @BBL P1P 0.2 nozzle",
|
|
"sub_path": "filament/P1P/Bambu Support W @BBL P1P 0.2 nozzle.json"
|
|
},
|
|
{
|
|
"name": "Bambu Support W @BBL P1P",
|
|
"sub_path": "filament/P1P/Bambu Support W @BBL P1P.json"
|
|
},
|
|
{
|
|
"name": "Bambu Support W @BBL A1M",
|
|
"sub_path": "filament/Bambu Support W @BBL A1M.json"
|
|
},
|
|
{
|
|
"name": "Bambu Support W @BBL A1M 0.2 nozzle",
|
|
"sub_path": "filament/Bambu Support W @BBL A1M 0.2 nozzle.json"
|
|
},
|
|
{
|
|
"name": "Bambu Support W @BBL A1",
|
|
"sub_path": "filament/Bambu Support W @BBL A1.json"
|
|
},
|
|
{
|
|
"name": "Bambu Support W @BBL A1 0.2 nozzle",
|
|
"sub_path": "filament/Bambu Support W @BBL A1 0.2 nozzle.json"
|
|
},
|
|
{
|
|
"name": "eSUN PLA+ @BBL X1C",
|
|
"sub_path": "filament/eSUN PLA+ @BBL X1C.json"
|
|
},
|
|
{
|
|
"name": "eSUN PLA+ @BBL X1",
|
|
"sub_path": "filament/eSUN PLA+ @BBL X1.json"
|
|
},
|
|
{
|
|
"name": "eSUN PLA+ @BBL X1C 0.2 nozzle",
|
|
"sub_path": "filament/eSUN PLA+ @BBL X1C 0.2 nozzle.json"
|
|
},
|
|
{
|
|
"name": "eSUN PLA+ @BBL P1P",
|
|
"sub_path": "filament/P1P/eSUN PLA+ @BBL P1P.json"
|
|
},
|
|
{
|
|
"name": "eSUN PLA+ @BBL P1P 0.2 nozzle",
|
|
"sub_path": "filament/P1P/eSUN PLA+ @BBL P1P 0.2 nozzle.json"
|
|
},
|
|
{
|
|
"name": "eSUN PLA+ @BBL A1M",
|
|
"sub_path": "filament/eSUN PLA+ @BBL A1M.json"
|
|
},
|
|
{
|
|
"name": "eSUN PLA+ @BBL A1M 0.2 nozzle",
|
|
"sub_path": "filament/eSUN PLA+ @BBL A1M 0.2 nozzle.json"
|
|
},
|
|
{
|
|
"name": "eSUN PLA+ @BBL A1",
|
|
"sub_path": "filament/eSUN PLA+ @BBL A1.json"
|
|
},
|
|
{
|
|
"name": "eSUN PLA+ @BBL A1 0.2 nozzle",
|
|
"sub_path": "filament/eSUN PLA+ @BBL A1 0.2 nozzle.json"
|
|
},
|
|
{
|
|
"name": "PolyTerra PLA @BBL X1C",
|
|
"sub_path": "filament/PolyTerra PLA @BBL X1C.json"
|
|
},
|
|
{
|
|
"name": "PolyTerra PLA @BBL X1",
|
|
"sub_path": "filament/PolyTerra PLA @BBL X1.json"
|
|
},
|
|
{
|
|
"name": "PolyTerra PLA @BBL P1P",
|
|
"sub_path": "filament/P1P/PolyTerra PLA @BBL P1P.json"
|
|
},
|
|
{
|
|
"name": "PolyTerra PLA @BBL A1M",
|
|
"sub_path": "filament/PolyTerra PLA @BBL A1M.json"
|
|
},
|
|
{
|
|
"name": "PolyTerra PLA @BBL A1M 0.2 nozzle",
|
|
"sub_path": "filament/PolyTerra PLA @BBL A1M 0.2 nozzle.json"
|
|
},
|
|
{
|
|
"name": "PolyTerra PLA @BBL A1",
|
|
"sub_path": "filament/PolyTerra PLA @BBL A1.json"
|
|
},
|
|
{
|
|
"name": "PolyTerra PLA @BBL A1 0.2 nozzle",
|
|
"sub_path": "filament/PolyTerra PLA @BBL A1 0.2 nozzle.json"
|
|
},
|
|
{
|
|
"name": "PolyLite PLA @BBL X1C",
|
|
"sub_path": "filament/PolyLite PLA @BBL X1C.json"
|
|
},
|
|
{
|
|
"name": "PolyLite PLA @BBL X1",
|
|
"sub_path": "filament/PolyLite PLA @BBL X1.json"
|
|
},
|
|
{
|
|
"name": "PolyLite PLA @BBL P1P",
|
|
"sub_path": "filament/P1P/PolyLite PLA @BBL P1P.json"
|
|
},
|
|
{
|
|
"name": "PolyLite PLA @BBL A1M",
|
|
"sub_path": "filament/PolyLite PLA @BBL A1M.json"
|
|
},
|
|
{
|
|
"name": "PolyLite PLA @BBL A1M 0.2 nozzle",
|
|
"sub_path": "filament/PolyLite PLA @BBL A1M 0.2 nozzle.json"
|
|
},
|
|
{
|
|
"name": "PolyLite PLA @BBL A1",
|
|
"sub_path": "filament/PolyLite PLA @BBL A1.json"
|
|
},
|
|
{
|
|
"name": "PolyLite PLA @BBL A1 0.2 nozzle",
|
|
"sub_path": "filament/PolyLite PLA @BBL A1 0.2 nozzle.json"
|
|
},
|
|
{
|
|
"name": "Generic PLA",
|
|
"sub_path": "filament/Generic PLA.json"
|
|
},
|
|
{
|
|
"name": "Generic PLA @0.2 nozzle",
|
|
"sub_path": "filament/Generic PLA @0.2 nozzle.json"
|
|
},
|
|
{
|
|
"name": "Generic PLA @BBL P1P 0.2 nozzle",
|
|
"sub_path": "filament/P1P/Generic PLA @BBL P1P 0.2 nozzle.json"
|
|
},
|
|
{
|
|
"name": "Generic PLA @BBL P1P",
|
|
"sub_path": "filament/P1P/Generic PLA @BBL P1P.json"
|
|
},
|
|
{
|
|
"name": "Generic PLA @BBL A1M",
|
|
"sub_path": "filament/Generic PLA @BBL A1M.json"
|
|
},
|
|
{
|
|
"name": "Generic PLA @BBL A1M 0.2 nozzle",
|
|
"sub_path": "filament/Generic PLA @BBL A1M 0.2 nozzle.json"
|
|
},
|
|
{
|
|
"name": "Generic PLA @BBL A1",
|
|
"sub_path": "filament/Generic PLA @BBL A1.json"
|
|
},
|
|
{
|
|
"name": "Generic PLA @BBL A1 0.2 nozzle",
|
|
"sub_path": "filament/Generic PLA @BBL A1 0.2 nozzle.json"
|
|
},
|
|
{
|
|
"name": "Generic PLA Silk",
|
|
"sub_path": "filament/Generic PLA Silk.json"
|
|
},
|
|
{
|
|
"name": "Generic PLA Silk @BBL P1P",
|
|
"sub_path": "filament/P1P/Generic PLA Silk @BBL P1P.json"
|
|
},
|
|
{
|
|
"name": "Generic PLA Silk @BBL A1M",
|
|
"sub_path": "filament/Generic PLA Silk @BBL A1M.json"
|
|
},
|
|
{
|
|
"name": "Generic PLA Silk @BBL A1",
|
|
"sub_path": "filament/Generic PLA Silk @BBL A1.json"
|
|
},
|
|
{
|
|
"name": "Generic PLA-CF",
|
|
"sub_path": "filament/Generic PLA-CF.json"
|
|
},
|
|
{
|
|
"name": "Generic PLA-CF @BBL P1P",
|
|
"sub_path": "filament/P1P/Generic PLA-CF @BBL P1P.json"
|
|
},
|
|
{
|
|
"name": "Generic PLA-CF @BBL A1M",
|
|
"sub_path": "filament/Generic PLA-CF @BBL A1M.json"
|
|
},
|
|
{
|
|
"name": "Generic PLA-CF @BBL A1",
|
|
"sub_path": "filament/Generic PLA-CF @BBL A1.json"
|
|
},
|
|
{
|
|
"name": "Bambu PLA-CF @BBL X1C 0.8 nozzle",
|
|
"sub_path": "filament/Bambu PLA-CF @BBL X1C 0.8 nozzle.json"
|
|
},
|
|
{
|
|
"name": "Bambu PLA-CF @BBL X1C",
|
|
"sub_path": "filament/Bambu PLA-CF @BBL X1C.json"
|
|
},
|
|
{
|
|
"name": "Bambu PLA-CF @BBL P1P",
|
|
"sub_path": "filament/P1P/Bambu PLA-CF @BBL P1P.json"
|
|
},
|
|
{
|
|
"name": "Bambu PLA-CF @BBL P1P 0.8 nozzle",
|
|
"sub_path": "filament/P1P/Bambu PLA-CF @BBL P1P 0.8 nozzle.json"
|
|
},
|
|
{
|
|
"name": "Bambu PLA-CF @BBL A1M",
|
|
"sub_path": "filament/Bambu PLA-CF @BBL A1M.json"
|
|
},
|
|
{
|
|
"name": "Bambu PLA-CF @BBL A1M 0.8 nozzle",
|
|
"sub_path": "filament/Bambu PLA-CF @BBL A1M 0.8 nozzle.json"
|
|
},
|
|
{
|
|
"name": "Bambu PLA-CF @BBL A1",
|
|
"sub_path": "filament/Bambu PLA-CF @BBL A1.json"
|
|
},
|
|
{
|
|
"name": "Bambu PLA-CF @BBL A1 0.8 nozzle",
|
|
"sub_path": "filament/Bambu PLA-CF @BBL A1 0.8 nozzle.json"
|
|
},
|
|
{
|
|
"name": "Bambu Support For PLA @BBL X1C 0.2 nozzle",
|
|
"sub_path": "filament/Bambu Support For PLA @BBL X1C 0.2 nozzle.json"
|
|
},
|
|
{
|
|
"name": "Bambu Support For PLA @BBL X1C",
|
|
"sub_path": "filament/Bambu Support For PLA @BBL X1C.json"
|
|
},
|
|
{
|
|
"name": "Bambu Support For PLA @BBL P1P 0.2 nozzle",
|
|
"sub_path": "filament/P1P/Bambu Support For PLA @BBL P1P 0.2 nozzle.json"
|
|
},
|
|
{
|
|
"name": "Bambu Support For PLA @BBL P1P",
|
|
"sub_path": "filament/P1P/Bambu Support For PLA @BBL P1P.json"
|
|
},
|
|
{
|
|
"name": "Bambu Support For PLA @BBL A1M",
|
|
"sub_path": "filament/Bambu Support For PLA @BBL A1M.json"
|
|
},
|
|
{
|
|
"name": "Bambu Support For PLA @BBL A1M 0.2 nozzle",
|
|
"sub_path": "filament/Bambu Support For PLA @BBL A1M 0.2 nozzle.json"
|
|
},
|
|
{
|
|
"name": "Bambu Support For PLA @BBL A1",
|
|
"sub_path": "filament/Bambu Support For PLA @BBL A1.json"
|
|
},
|
|
{
|
|
"name": "Bambu Support For PLA @BBL A1 0.2 nozzle",
|
|
"sub_path": "filament/Bambu Support For PLA @BBL A1 0.2 nozzle.json"
|
|
},
|
|
{
|
|
"name": "Bambu PLA Aero @BBL X1",
|
|
"sub_path": "filament/Bambu PLA Aero @BBL X1.json"
|
|
},
|
|
{
|
|
"name": "Bambu PLA Aero @BBL X1C",
|
|
"sub_path": "filament/Bambu PLA Aero @BBL X1C.json"
|
|
},
|
|
{
|
|
"name": "Bambu PLA Aero @BBL P1P",
|
|
"sub_path": "filament/P1P/Bambu PLA Aero @BBL P1P.json"
|
|
},
|
|
{
|
|
"name": "Bambu PLA Aero @BBL A1M",
|
|
"sub_path": "filament/Bambu PLA Aero @BBL A1M.json"
|
|
},
|
|
{
|
|
"name": "Bambu PLA Aero @BBL A1",
|
|
"sub_path": "filament/Bambu PLA Aero @BBL A1.json"
|
|
},
|
|
{
|
|
"name": "Overture PLA @BBL X1C",
|
|
"sub_path": "filament/Overture PLA @BBL X1C.json"
|
|
},
|
|
{
|
|
"name": "Overture PLA @BBL X1",
|
|
"sub_path": "filament/Overture PLA @BBL X1.json"
|
|
},
|
|
{
|
|
"name": "Overture PLA @BBL P1P",
|
|
"sub_path": "filament/Overture PLA @BBL P1P.json"
|
|
},
|
|
{
|
|
"name": "Overture PLA @BBL A1M",
|
|
"sub_path": "filament/Overture PLA @BBL A1M.json"
|
|
},
|
|
{
|
|
"name": "Overture PLA @BBL A1",
|
|
"sub_path": "filament/Overture PLA @BBL A1.json"
|
|
},
|
|
{
|
|
"name": "Overture PLA @BBL A1 0.2 nozzle",
|
|
"sub_path": "filament/Overture PLA @BBL A1 0.2 nozzle.json"
|
|
},
|
|
{
|
|
"name": "Overture Matte PLA @BBL X1C",
|
|
"sub_path": "filament/Overture Matte PLA @BBL X1C.json"
|
|
},
|
|
{
|
|
"name": "Overture Matte PLA @BBL X1",
|
|
"sub_path": "filament/Overture Matte PLA @BBL X1.json"
|
|
},
|
|
{
|
|
"name": "Overture Matte PLA @BBL P1P",
|
|
"sub_path": "filament/Overture Matte PLA @BBL P1P.json"
|
|
},
|
|
{
|
|
"name": "Overture Matte PLA @BBL A1M",
|
|
"sub_path": "filament/Overture Matte PLA @BBL A1M.json"
|
|
},
|
|
{
|
|
"name": "Overture Matte PLA @BBL A1",
|
|
"sub_path": "filament/Overture Matte PLA @BBL A1.json"
|
|
},
|
|
{
|
|
"name": "Overture Matte PLA @BBL A1 0.2 nozzle",
|
|
"sub_path": "filament/Overture Matte PLA @BBL A1 0.2 nozzle.json"
|
|
},
|
|
{
|
|
"name": "Generic PLA High Speed @BBL X1C",
|
|
"sub_path": "filament/Generic PLA High Speed @BBL X1C.json"
|
|
},
|
|
{
|
|
"name": "Generic PLA High Speed @BBL P1P",
|
|
"sub_path": "filament/Generic PLA High Speed @BBL P1P.json"
|
|
},
|
|
{
|
|
"name": "Generic PLA High Speed @BBL A1M",
|
|
"sub_path": "filament/Generic PLA High Speed @BBL A1M.json"
|
|
},
|
|
{
|
|
"name": "Generic PLA High Speed @BBL A1",
|
|
"sub_path": "filament/Generic PLA High Speed @BBL A1.json"
|
|
},
|
|
{
|
|
"name": "Generic PLA High Speed @BBL A1 0.2 nozzle",
|
|
"sub_path": "filament/Generic PLA High Speed @BBL A1 0.2 nozzle.json"
|
|
},
|
|
{
|
|
"name": "Bambu PLA Glow @BBL X1C",
|
|
"sub_path": "filament/Bambu PLA Glow @BBL X1C.json"
|
|
},
|
|
{
|
|
"name": "Bambu PLA Glow @BBL P1P",
|
|
"sub_path": "filament/Bambu PLA Glow @BBL P1P.json"
|
|
},
|
|
{
|
|
"name": "Bambu PLA Glow @BBL X1E",
|
|
"sub_path": "filament/Bambu PLA Glow @BBL X1E.json"
|
|
},
|
|
{
|
|
"name": "Bambu PLA Glow @BBL X1",
|
|
"sub_path": "filament/Bambu PLA Glow @BBL X1.json"
|
|
},
|
|
{
|
|
"name": "Bambu PLA Glow @BBL A1 0.2 nozzle",
|
|
"sub_path": "filament/Bambu PLA Glow @BBL A1 0.2 nozzle.json"
|
|
},
|
|
{
|
|
"name": "Bambu PLA Glow @BBL A1",
|
|
"sub_path": "filament/Bambu PLA Glow @BBL A1.json"
|
|
},
|
|
{
|
|
"name": "Bambu PLA Dynamic @BBL X1C",
|
|
"sub_path": "filament/Bambu PLA Dynamic @BBL X1C.json"
|
|
},
|
|
{
|
|
"name": "Bambu PLA Dynamic @BBL X1C 0.2 nozzle",
|
|
"sub_path": "filament/Bambu PLA Dynamic @BBL X1C 0.2 nozzle.json"
|
|
},
|
|
{
|
|
"name": "Bambu PLA Dynamic @BBL X1C 0.8 nozzle",
|
|
"sub_path": "filament/Bambu PLA Dynamic @BBL X1C 0.8 nozzle.json"
|
|
},
|
|
{
|
|
"name": "Bambu PLA Dynamic @BBL P1P",
|
|
"sub_path": "filament/Bambu PLA Dynamic @BBL P1P.json"
|
|
},
|
|
{
|
|
"name": "Bambu PLA Dynamic @BBL P1P 0.2 nozzle",
|
|
"sub_path": "filament/Bambu PLA Dynamic @BBL P1P 0.2 nozzle.json"
|
|
},
|
|
{
|
|
"name": "Bambu PLA Dynamic @BBL A1",
|
|
"sub_path": "filament/Bambu PLA Dynamic @BBL A1.json"
|
|
},
|
|
{
|
|
"name": "Bambu PLA Dynamic @BBL A1 0.2 nozzle",
|
|
"sub_path": "filament/Bambu PLA Dynamic @BBL A1 0.2 nozzle.json"
|
|
},
|
|
{
|
|
"name": "Bambu PLA Dynamic @BBL A1M 0.2 nozzle",
|
|
"sub_path": "filament/Bambu PLA Dynamic @BBL A1M 0.2 nozzle.json"
|
|
},
|
|
{
|
|
"name": "Bambu PLA Dynamic @BBL A1M",
|
|
"sub_path": "filament/Bambu PLA Dynamic @BBL A1M.json"
|
|
},
|
|
{
|
|
"name": "Bambu PLA Galaxy @BBL X1C",
|
|
"sub_path": "filament/Bambu PLA Galaxy @BBL X1C.json"
|
|
},
|
|
{
|
|
"name": "Bambu PLA Galaxy @BBL X1C 0.2 nozzle",
|
|
"sub_path": "filament/Bambu PLA Galaxy @BBL X1C 0.2 nozzle.json"
|
|
},
|
|
{
|
|
"name": "Bambu PLA Galaxy @BBL X1C 0.8 nozzle",
|
|
"sub_path": "filament/Bambu PLA Galaxy @BBL X1C 0.8 nozzle.json"
|
|
},
|
|
{
|
|
"name": "Bambu PLA Galaxy @BBL P1P",
|
|
"sub_path": "filament/Bambu PLA Galaxy @BBL P1P.json"
|
|
},
|
|
{
|
|
"name": "Bambu PLA Galaxy @BBL P1P 0.2 nozzle",
|
|
"sub_path": "filament/Bambu PLA Galaxy @BBL P1P 0.2 nozzle.json"
|
|
},
|
|
{
|
|
"name": "Bambu PLA Galaxy @BBL A1",
|
|
"sub_path": "filament/Bambu PLA Galaxy @BBL A1.json"
|
|
},
|
|
{
|
|
"name": "Bambu PLA Galaxy @BBL A1 0.2 nozzle",
|
|
"sub_path": "filament/Bambu PLA Galaxy @BBL A1 0.2 nozzle.json"
|
|
},
|
|
{
|
|
"name": "Bambu PLA Galaxy @BBL A1M",
|
|
"sub_path": "filament/Bambu PLA Galaxy @BBL A1M.json"
|
|
},
|
|
{
|
|
"name": "Bambu PLA Galaxy @BBL A1M 0.2 nozzle",
|
|
"sub_path": "filament/Bambu PLA Galaxy @BBL A1M 0.2 nozzle.json"
|
|
},
|
|
{
|
|
"name": "Bambu Support For PLA/PETG @BBL X1C",
|
|
"sub_path": "filament/Bambu Support For PLA-PETG @BBL X1C.json"
|
|
},
|
|
{
|
|
"name": "Bambu Support For PLA/PETG @BBL X1C 0.2 nozzle",
|
|
"sub_path": "filament/Bambu Support For PLA-PETG @BBL X1C 0.2 nozzle.json"
|
|
},
|
|
{
|
|
"name": "Bambu Support For PLA/PETG @BBL P1P",
|
|
"sub_path": "filament/Bambu Support For PLA-PETG @BBL P1P.json"
|
|
},
|
|
{
|
|
"name": "Bambu Support For PLA/PETG @BBL P1P 0.2 nozzle",
|
|
"sub_path": "filament/Bambu Support For PLA-PETG @BBL P1P 0.2 nozzle.json"
|
|
},
|
|
{
|
|
"name": "Bambu Support For PLA/PETG @BBL A1M",
|
|
"sub_path": "filament/Bambu Support For PLA-PETG @BBL A1M.json"
|
|
},
|
|
{
|
|
"name": "Bambu Support For PLA/PETG @BBL A1M 0.2 nozzle",
|
|
"sub_path": "filament/Bambu Support For PLA-PETG @BBL A1M 0.2 nozzle.json"
|
|
},
|
|
{
|
|
"name": "Bambu Support For PLA/PETG @BBL A1",
|
|
"sub_path": "filament/Bambu Support For PLA-PETG @BBL A1.json"
|
|
},
|
|
{
|
|
"name": "Bambu Support For PLA/PETG @BBL A1 0.2 nozzle",
|
|
"sub_path": "filament/Bambu Support For PLA-PETG @BBL A1 0.2 nozzle.json"
|
|
},
|
|
{
|
|
"name": "Bambu TPU 95A @BBL X1C",
|
|
"sub_path": "filament/Bambu TPU 95A @BBL X1C.json"
|
|
},
|
|
{
|
|
"name": "Bambu TPU 95A @BBL X1",
|
|
"sub_path": "filament/Bambu TPU 95A @BBL X1.json"
|
|
},
|
|
{
|
|
"name": "Bambu TPU 95A @BBL P1P",
|
|
"sub_path": "filament/P1P/Bambu TPU 95A @BBL P1P.json"
|
|
},
|
|
{
|
|
"name": "Bambu TPU 95A @BBL A1M",
|
|
"sub_path": "filament/Bambu TPU 95A @BBL A1M.json"
|
|
},
|
|
{
|
|
"name": "Bambu TPU 95A @BBL A1",
|
|
"sub_path": "filament/Bambu TPU 95A @BBL A1.json"
|
|
},
|
|
{
|
|
"name": "Generic TPU @BBL A1M",
|
|
"sub_path": "filament/Generic TPU @BBL A1M.json"
|
|
},
|
|
{
|
|
"name": "Generic TPU @BBL A1",
|
|
"sub_path": "filament/Generic TPU @BBL A1.json"
|
|
},
|
|
{
|
|
"name": "Bambu TPU 95A HF @BBL X1C",
|
|
"sub_path": "filament/Bambu TPU 95A HF @BBL X1C.json"
|
|
},
|
|
{
|
|
"name": "Bambu TPU 95A HF @BBL X1",
|
|
"sub_path": "filament/Bambu TPU 95A HF @BBL X1.json"
|
|
},
|
|
{
|
|
"name": "Bambu TPU 95A HF @BBL P1P",
|
|
"sub_path": "filament/Bambu TPU 95A HF @BBL P1P.json"
|
|
},
|
|
{
|
|
"name": "Bambu TPU 95A HF @BBL P1S",
|
|
"sub_path": "filament/Bambu TPU 95A HF @BBL P1S.json"
|
|
},
|
|
{
|
|
"name": "Bambu TPU 95A HF @BBL X1E",
|
|
"sub_path": "filament/Bambu TPU 95A HF @BBL X1E.json"
|
|
},
|
|
{
|
|
"name": "Bambu TPU 95A HF @BBL A1M",
|
|
"sub_path": "filament/Bambu TPU 95A HF @BBL A1M.json"
|
|
},
|
|
{
|
|
"name": "Bambu TPU 95A HF @BBL A1",
|
|
"sub_path": "filament/Bambu TPU 95A HF @BBL A1.json"
|
|
},
|
|
{
|
|
"name": "Bambu PETG Basic @BBL X1C",
|
|
"sub_path": "filament/Bambu PETG Basic @BBL X1C.json"
|
|
},
|
|
{
|
|
"name": "Bambu PETG Basic @BBL X1C 0.2 nozzle",
|
|
"sub_path": "filament/Bambu PETG Basic @BBL X1C 0.2 nozzle.json"
|
|
},
|
|
{
|
|
"name": "Bambu PETG Basic @BBL X1C 0.8 nozzle",
|
|
"sub_path": "filament/Bambu PETG Basic @BBL X1C 0.8 nozzle.json"
|
|
},
|
|
{
|
|
"name": "Bambu PETG Basic @BBL A1",
|
|
"sub_path": "filament/Bambu PETG Basic @BBL A1.json"
|
|
},
|
|
{
|
|
"name": "Bambu PETG Basic @BBL A1 0.2 nozzle",
|
|
"sub_path": "filament/Bambu PETG Basic @BBL A1 0.2 nozzle.json"
|
|
},
|
|
{
|
|
"name": "Bambu PETG Basic @BBL A1 0.8 nozzle",
|
|
"sub_path": "filament/Bambu PETG Basic @BBL A1 0.8 nozzle.json"
|
|
},
|
|
{
|
|
"name": "Bambu PET-CF @BBL X1C",
|
|
"sub_path": "filament/Bambu PET-CF @BBL X1C.json"
|
|
},
|
|
{
|
|
"name": "Bambu PET-CF @BBL P1P",
|
|
"sub_path": "filament/P1P/Bambu PET-CF @BBL P1P.json"
|
|
},
|
|
{
|
|
"name": "Bambu PET-CF @BBL A1",
|
|
"sub_path": "filament/Bambu PET-CF @BBL A1.json"
|
|
},
|
|
{
|
|
"name": "Generic PETG",
|
|
"sub_path": "filament/Generic PETG.json"
|
|
},
|
|
{
|
|
"name": "Generic PETG @0.2 nozzle",
|
|
"sub_path": "filament/Generic PETG @0.2 nozzle.json"
|
|
},
|
|
{
|
|
"name": "Generic PETG @BBL P1P",
|
|
"sub_path": "filament/P1P/Generic PETG @BBL P1P.json"
|
|
},
|
|
{
|
|
"name": "Generic PETG @BBL P1P 0.2 nozzle",
|
|
"sub_path": "filament/P1P/Generic PETG @BBL P1P 0.2 nozzle.json"
|
|
},
|
|
{
|
|
"name": "Generic PETG @BBL A1M",
|
|
"sub_path": "filament/Generic PETG @BBL A1M.json"
|
|
},
|
|
{
|
|
"name": "Generic PETG @BBL A1M 0.2 nozzle",
|
|
"sub_path": "filament/Generic PETG @BBL A1M 0.2 nozzle.json"
|
|
},
|
|
{
|
|
"name": "Generic PETG @BBL A1",
|
|
"sub_path": "filament/Generic PETG @BBL A1.json"
|
|
},
|
|
{
|
|
"name": "Generic PETG @BBL A1 0.2 nozzle",
|
|
"sub_path": "filament/Generic PETG @BBL A1 0.2 nozzle.json"
|
|
},
|
|
{
|
|
"name": "Generic PETG-CF @BBL X1C",
|
|
"sub_path": "filament/Generic PETG-CF @BBL X1C.json"
|
|
},
|
|
{
|
|
"name": "Generic PETG-CF @BBL P1P",
|
|
"sub_path": "filament/P1P/Generic PETG-CF @BBL P1P.json"
|
|
},
|
|
{
|
|
"name": "Generic PETG-CF @BBL A1",
|
|
"sub_path": "filament/Generic PETG-CF @BBL A1.json"
|
|
},
|
|
{
|
|
"name": "Bambu PETG-CF @BBL X1C",
|
|
"sub_path": "filament/Bambu PETG-CF @BBL X1C.json"
|
|
},
|
|
{
|
|
"name": "Bambu PETG-CF @BBL X1C 0.4 nozzle",
|
|
"sub_path": "filament/Bambu PETG-CF @BBL X1C 0.4 nozzle.json"
|
|
},
|
|
{
|
|
"name": "Bambu PETG-CF @BBL P1P",
|
|
"sub_path": "filament/P1P/Bambu PETG-CF @BBL P1P.json"
|
|
},
|
|
{
|
|
"name": "Bambu PETG-CF @BBL P1P 0.4 nozzle",
|
|
"sub_path": "filament/P1P/Bambu PETG-CF @BBL P1P 0.4 nozzle.json"
|
|
},
|
|
{
|
|
"name": "Bambu PETG-CF @BBL A1M",
|
|
"sub_path": "filament/Bambu PETG-CF @BBL A1M.json"
|
|
},
|
|
{
|
|
"name": "Bambu PETG-CF @BBL A1 0.4 nozzle",
|
|
"sub_path": "filament/Bambu PETG-CF @BBL A1 0.4 nozzle.json"
|
|
},
|
|
{
|
|
"name": "Bambu PETG-CF @BBL A1 0.8 nozzle",
|
|
"sub_path": "filament/Bambu PETG-CF @BBL A1 0.8 nozzle.json"
|
|
},
|
|
{
|
|
"name": "PolyLite PETG @BBL X1C",
|
|
"sub_path": "filament/PolyLite PETG @BBL X1C.json"
|
|
},
|
|
{
|
|
"name": "PolyLite PETG @BBL P1P",
|
|
"sub_path": "filament/PolyLite PETG @BBL P1P.json"
|
|
},
|
|
{
|
|
"name": "PolyLite PETG @BBL A1M",
|
|
"sub_path": "filament/PolyLite PETG @BBL A1M.json"
|
|
},
|
|
{
|
|
"name": "PolyLite PETG @BBL A1",
|
|
"sub_path": "filament/PolyLite PETG @BBL A1.json"
|
|
},
|
|
{
|
|
"name": "PolyLite PETG @BBL A1 0.2 nozzle",
|
|
"sub_path": "filament/PolyLite PETG @BBL A1 0.2 nozzle.json"
|
|
},
|
|
{
|
|
"name": "Bambu PETG Translucent @BBL X1C",
|
|
"sub_path": "filament/Bambu PETG Translucent @BBL X1C.json"
|
|
},
|
|
{
|
|
"name": "Bambu PETG Translucent @BBL X1C 0.8 nozzle",
|
|
"sub_path": "filament/Bambu PETG Translucent @BBL X1C 0.8 nozzle.json"
|
|
},
|
|
{
|
|
"name": "Bambu PETG Translucent @BBL A1M",
|
|
"sub_path": "filament/Bambu PETG Translucent @BBL A1M.json"
|
|
},
|
|
{
|
|
"name": "Bambu PETG Translucent @BBL A1M 0.8 nozzle",
|
|
"sub_path": "filament/Bambu PETG Translucent @BBL A1M 0.8 nozzle.json"
|
|
},
|
|
{
|
|
"name": "Bambu PETG Translucent @BBL A1 0.8 nozzle",
|
|
"sub_path": "filament/Bambu PETG Translucent @BBL A1 0.8 nozzle.json"
|
|
},
|
|
{
|
|
"name": "Bambu PETG Translucent @BBL A1",
|
|
"sub_path": "filament/Bambu PETG Translucent @BBL A1.json"
|
|
},
|
|
{
|
|
"name": "Generic PCTG @BBL X1C",
|
|
"sub_path": "filament/Generic PCTG @BBL X1C.json"
|
|
},
|
|
{
|
|
"name": "Generic PCTG @BBL A1",
|
|
"sub_path": "filament/Generic PCTG @BBL A1.json"
|
|
},
|
|
{
|
|
"name": "Generic PCTG @BBL A1M",
|
|
"sub_path": "filament/Generic PCTG @BBL A1M.json"
|
|
},
|
|
{
|
|
"name": "Bambu ABS @BBL X1C",
|
|
"sub_path": "filament/Bambu ABS @BBL X1C.json"
|
|
},
|
|
{
|
|
"name": "Bambu ABS @BBL X1C 0.2 nozzle",
|
|
"sub_path": "filament/Bambu ABS @BBL X1C 0.2 nozzle.json"
|
|
},
|
|
{
|
|
"name": "Bambu ABS @BBL X1C 0.8 nozzle",
|
|
"sub_path": "filament/Bambu ABS @BBL X1C 0.8 nozzle.json"
|
|
},
|
|
{
|
|
"name": "Bambu ABS @BBL P1P 0.2 nozzle",
|
|
"sub_path": "filament/P1P/Bambu ABS @BBL P1P 0.2 nozzle.json"
|
|
},
|
|
{
|
|
"name": "Bambu ABS @BBL P1P",
|
|
"sub_path": "filament/P1P/Bambu ABS @BBL P1P.json"
|
|
},
|
|
{
|
|
"name": "Bambu ABS @BBL A1",
|
|
"sub_path": "filament/Bambu ABS @BBL A1.json"
|
|
},
|
|
{
|
|
"name": "Bambu ABS @BBL A1 0.2 nozzle",
|
|
"sub_path": "filament/Bambu ABS @BBL A1 0.2 nozzle.json"
|
|
},
|
|
{
|
|
"name": "Generic ABS",
|
|
"sub_path": "filament/Generic ABS.json"
|
|
},
|
|
{
|
|
"name": "Generic ABS @0.2 nozzle",
|
|
"sub_path": "filament/Generic ABS @0.2 nozzle.json"
|
|
},
|
|
{
|
|
"name": "Generic ABS @BBL P1P 0.2 nozzle",
|
|
"sub_path": "filament/P1P/Generic ABS @BBL P1P 0.2 nozzle.json"
|
|
},
|
|
{
|
|
"name": "Generic ABS @BBL P1P",
|
|
"sub_path": "filament/P1P/Generic ABS @BBL P1P.json"
|
|
},
|
|
{
|
|
"name": "Generic ABS @BBL A1",
|
|
"sub_path": "filament/Generic ABS @BBL A1.json"
|
|
},
|
|
{
|
|
"name": "Generic ABS @BBL A1 0.2 nozzle",
|
|
"sub_path": "filament/Generic ABS @BBL A1 0.2 nozzle.json"
|
|
},
|
|
{
|
|
"name": "PolyLite ABS @BBL X1C",
|
|
"sub_path": "filament/PolyLite ABS @BBL X1C.json"
|
|
},
|
|
{
|
|
"name": "PolyLite ABS @BBL P1P",
|
|
"sub_path": "filament/PolyLite ABS @BBL P1P.json"
|
|
},
|
|
{
|
|
"name": "PolyLite ABS @BBL A1",
|
|
"sub_path": "filament/PolyLite ABS @BBL A1.json"
|
|
},
|
|
{
|
|
"name": "PolyLite ABS @BBL A1 0.2 nozzle",
|
|
"sub_path": "filament/PolyLite ABS @BBL A1 0.2 nozzle.json"
|
|
},
|
|
{
|
|
"name": "Bambu ABS-GF @BBL X1C",
|
|
"sub_path": "filament/Bambu ABS-GF @BBL X1C.json"
|
|
},
|
|
{
|
|
"name": "Bambu ABS-GF @BBL P1P",
|
|
"sub_path": "filament/Bambu ABS-GF @BBL P1P.json"
|
|
},
|
|
{
|
|
"name": "Bambu ABS-GF @BBL A1",
|
|
"sub_path": "filament/Bambu ABS-GF @BBL A1.json"
|
|
},
|
|
{
|
|
"name": "Bambu PC @BBL X1C",
|
|
"sub_path": "filament/Bambu PC @BBL X1C.json"
|
|
},
|
|
{
|
|
"name": "Bambu PC @BBL X1C 0.2 nozzle",
|
|
"sub_path": "filament/Bambu PC @BBL X1C 0.2 nozzle.json"
|
|
},
|
|
{
|
|
"name": "Bambu PC @BBL X1C 0.8 nozzle",
|
|
"sub_path": "filament/Bambu PC @BBL X1C 0.8 nozzle.json"
|
|
},
|
|
{
|
|
"name": "Bambu PC @BBL X1C 0.6 nozzle",
|
|
"sub_path": "filament/Bambu PC @BBL X1C 0.6 nozzle.json"
|
|
},
|
|
{
|
|
"name": "Bambu PC @BBL P1P",
|
|
"sub_path": "filament/P1P/Bambu PC @BBL P1P.json"
|
|
},
|
|
{
|
|
"name": "Bambu PC @BBL P1P 0.2 nozzle",
|
|
"sub_path": "filament/P1P/Bambu PC @BBL P1P 0.2 nozzle.json"
|
|
},
|
|
{
|
|
"name": "Bambu PC @BBL A1 0.2 nozzle",
|
|
"sub_path": "filament/Bambu PC @BBL A1 0.2 nozzle.json"
|
|
},
|
|
{
|
|
"name": "Bambu PC @BBL A1",
|
|
"sub_path": "filament/Bambu PC @BBL A1.json"
|
|
},
|
|
{
|
|
"name": "Generic PC @0.2 nozzle",
|
|
"sub_path": "filament/Generic PC @0.2 nozzle.json"
|
|
},
|
|
{
|
|
"name": "Generic PC",
|
|
"sub_path": "filament/Generic PC.json"
|
|
},
|
|
{
|
|
"name": "Generic PC @BBL P1P 0.2 nozzle",
|
|
"sub_path": "filament/P1P/Generic PC @BBL P1P 0.2 nozzle.json"
|
|
},
|
|
{
|
|
"name": "Generic PC @BBL P1P",
|
|
"sub_path": "filament/P1P/Generic PC @BBL P1P.json"
|
|
},
|
|
{
|
|
"name": "Generic PC @BBL A1",
|
|
"sub_path": "filament/Generic PC @BBL A1.json"
|
|
},
|
|
{
|
|
"name": "Generic PC @BBL A1 0.2 nozzle",
|
|
"sub_path": "filament/Generic PC @BBL A1 0.2 nozzle.json"
|
|
},
|
|
{
|
|
"name": "Generic ASA @0.2 nozzle",
|
|
"sub_path": "filament/Generic ASA @0.2 nozzle.json"
|
|
},
|
|
{
|
|
"name": "Generic ASA",
|
|
"sub_path": "filament/Generic ASA.json"
|
|
},
|
|
{
|
|
"name": "Generic ASA @BBL P1P 0.2 nozzle",
|
|
"sub_path": "filament/P1P/Generic ASA @BBL P1P 0.2 nozzle.json"
|
|
},
|
|
{
|
|
"name": "Generic ASA @BBL P1P",
|
|
"sub_path": "filament/P1P/Generic ASA @BBL P1P.json"
|
|
},
|
|
{
|
|
"name": "Generic ASA @BBL A1 0.2 nozzle",
|
|
"sub_path": "filament/Generic ASA @BBL A1 0.2 nozzle.json"
|
|
},
|
|
{
|
|
"name": "Generic ASA @BBL A1",
|
|
"sub_path": "filament/Generic ASA @BBL A1.json"
|
|
},
|
|
{
|
|
"name": "Bambu ASA @BBL X1 0.2 nozzle",
|
|
"sub_path": "filament/Bambu ASA @BBL X1 0.2 nozzle.json"
|
|
},
|
|
{
|
|
"name": "Bambu ASA @BBL X1 0.6 nozzle",
|
|
"sub_path": "filament/Bambu ASA @BBL X1 0.6 nozzle.json"
|
|
},
|
|
{
|
|
"name": "Bambu ASA @BBL X1C",
|
|
"sub_path": "filament/Bambu ASA @BBL X1C.json"
|
|
},
|
|
{
|
|
"name": "Bambu ASA @BBL X1C 0.2 nozzle",
|
|
"sub_path": "filament/Bambu ASA @BBL X1C 0.2 nozzle.json"
|
|
},
|
|
{
|
|
"name": "Bambu ASA @BBL X1C 0.4 nozzle",
|
|
"sub_path": "filament/Bambu ASA @BBL X1C 0.4 nozzle.json"
|
|
},
|
|
{
|
|
"name": "Bambu ASA @BBL A1 0.6 nozzle",
|
|
"sub_path": "filament/Bambu ASA @BBL A1 0.6 nozzle.json"
|
|
},
|
|
{
|
|
"name": "Bambu ASA @BBL A1 0.4 nozzle",
|
|
"sub_path": "filament/Bambu ASA @BBL A1 0.4 nozzle.json"
|
|
},
|
|
{
|
|
"name": "Bambu ASA @BBL A1 0.2 nozzle",
|
|
"sub_path": "filament/Bambu ASA @BBL A1 0.2 nozzle.json"
|
|
},
|
|
{
|
|
"name": "PolyLite ASA @BBL X1C",
|
|
"sub_path": "filament/PolyLite ASA @BBL X1C.json"
|
|
},
|
|
{
|
|
"name": "PolyLite ASA @BBL P1P",
|
|
"sub_path": "filament/PolyLite ASA @BBL P1P.json"
|
|
},
|
|
{
|
|
"name": "PolyLite ASA @BBL A1 0.2 nozzle",
|
|
"sub_path": "filament/PolyLite ASA @BBL A1 0.2 nozzle.json"
|
|
},
|
|
{
|
|
"name": "PolyLite ASA @BBL A1",
|
|
"sub_path": "filament/PolyLite ASA @BBL A1.json"
|
|
},
|
|
{
|
|
"name": "Bambu ASA-Aero @BBL X1C",
|
|
"sub_path": "filament/Bambu ASA-Aero @BBL X1C.json"
|
|
},
|
|
{
|
|
"name": "Bambu ASA-Aero @BBL P1P",
|
|
"sub_path": "filament/Bambu ASA-Aero @BBL P1P.json"
|
|
},
|
|
{
|
|
"name": "Bambu ASA-Aero @BBL A1",
|
|
"sub_path": "filament/Bambu ASA-Aero @BBL A1.json"
|
|
},
|
|
{
|
|
"name": "Generic PVA @0.2 nozzle",
|
|
"sub_path": "filament/Generic PVA @0.2 nozzle.json"
|
|
},
|
|
{
|
|
"name": "Generic PVA",
|
|
"sub_path": "filament/Generic PVA.json"
|
|
},
|
|
{
|
|
"name": "Generic PVA @BBL P1P 0.2 nozzle",
|
|
"sub_path": "filament/P1P/Generic PVA @BBL P1P 0.2 nozzle.json"
|
|
},
|
|
{
|
|
"name": "Generic PVA @BBL P1P",
|
|
"sub_path": "filament/P1P/Generic PVA @BBL P1P.json"
|
|
},
|
|
{
|
|
"name": "Generic PVA @BBL A1M",
|
|
"sub_path": "filament/Generic PVA @BBL A1M.json"
|
|
},
|
|
{
|
|
"name": "Generic PVA @BBL A1M 0.2 nozzle",
|
|
"sub_path": "filament/Generic PVA @BBL A1M 0.2 nozzle.json"
|
|
},
|
|
{
|
|
"name": "Generic PVA @BBL A1",
|
|
"sub_path": "filament/Generic PVA @BBL A1.json"
|
|
},
|
|
{
|
|
"name": "Generic PVA @BBL A1 0.2 nozzle",
|
|
"sub_path": "filament/Generic PVA @BBL A1 0.2 nozzle.json"
|
|
},
|
|
{
|
|
"name": "Bambu PVA @BBL X1C",
|
|
"sub_path": "filament/Bambu PVA @BBL X1C.json"
|
|
},
|
|
{
|
|
"name": "Bambu PVA @BBL X1C 0.2 nozzle",
|
|
"sub_path": "filament/Bambu PVA @BBL X1C 0.2 nozzle.json"
|
|
},
|
|
{
|
|
"name": "Bambu PVA @BBL P1P",
|
|
"sub_path": "filament/Bambu PVA @BBL P1P.json"
|
|
},
|
|
{
|
|
"name": "Bambu PVA @BBL P1P 0.2 nozzle",
|
|
"sub_path": "filament/Bambu PVA @BBL P1P 0.2 nozzle.json"
|
|
},
|
|
{
|
|
"name": "Bambu PVA @BBL A1",
|
|
"sub_path": "filament/Bambu PVA @BBL A1.json"
|
|
},
|
|
{
|
|
"name": "Bambu PVA @BBL A1 0.2 nozzle",
|
|
"sub_path": "filament/Bambu PVA @BBL A1 0.2 nozzle.json"
|
|
},
|
|
{
|
|
"name": "Bambu PVA @BBL A1M",
|
|
"sub_path": "filament/Bambu PVA @BBL A1M.json"
|
|
},
|
|
{
|
|
"name": "Bambu PVA @BBL A1M 0.2 nozzle",
|
|
"sub_path": "filament/Bambu PVA @BBL A1M 0.2 nozzle.json"
|
|
},
|
|
{
|
|
"name": "Bambu Support G @BBL X1C",
|
|
"sub_path": "filament/Bambu Support G @BBL X1C.json"
|
|
},
|
|
{
|
|
"name": "Bambu Support G @BBL P1P",
|
|
"sub_path": "filament/P1P/Bambu Support G @BBL P1P.json"
|
|
},
|
|
{
|
|
"name": "Bambu Support G @BBL A1",
|
|
"sub_path": "filament/Bambu Support G @BBL A1.json"
|
|
},
|
|
{
|
|
"name": "Bambu PA-CF @BBL X1C",
|
|
"sub_path": "filament/Bambu PA-CF @BBL X1C.json"
|
|
},
|
|
{
|
|
"name": "Bambu PA-CF @BBL P1P",
|
|
"sub_path": "filament/P1P/Bambu PA-CF @BBL P1P.json"
|
|
},
|
|
{
|
|
"name": "Bambu PA-CF @BBL A1",
|
|
"sub_path": "filament/Bambu PA-CF @BBL A1.json"
|
|
},
|
|
{
|
|
"name": "Generic PA @BBL A1",
|
|
"sub_path": "filament/Generic PA @BBL A1.json"
|
|
},
|
|
{
|
|
"name": "Generic PA-CF @BBL X1E",
|
|
"sub_path": "filament/Generic PA-CF @BBL X1E.json"
|
|
},
|
|
{
|
|
"name": "Generic PA-CF @BBL A1",
|
|
"sub_path": "filament/Generic PA-CF @BBL A1.json"
|
|
},
|
|
{
|
|
"name": "Bambu PAHT-CF @BBL X1C",
|
|
"sub_path": "filament/Bambu PAHT-CF @BBL X1C.json"
|
|
},
|
|
{
|
|
"name": "Bambu PAHT-CF @BBL P1P",
|
|
"sub_path": "filament/P1P/Bambu PAHT-CF @BBL P1P.json"
|
|
},
|
|
{
|
|
"name": "Bambu PAHT-CF @BBL A1",
|
|
"sub_path": "filament/Bambu PAHT-CF @BBL A1.json"
|
|
},
|
|
{
|
|
"name": "Bambu Support For PA/PET @BBL P1P",
|
|
"sub_path": "filament/P1P/Bambu Support For PA PET @BBL P1P.json"
|
|
},
|
|
{
|
|
"name": "Bambu Support For PA/PET @BBL X1C",
|
|
"sub_path": "filament/Bambu Support For PA PET @BBL X1C.json"
|
|
},
|
|
{
|
|
"name": "Bambu Support For PA/PET @BBL A1",
|
|
"sub_path": "filament/Bambu Support For PA PET @BBL A1.json"
|
|
},
|
|
{
|
|
"name": "Bambu PA6-CF @BBL X1C",
|
|
"sub_path": "filament/Bambu PA6-CF @BBL X1C.json"
|
|
},
|
|
{
|
|
"name": "Bambu PA6-CF @BBL X1E",
|
|
"sub_path": "filament/Bambu PA6-CF @BBL X1E.json"
|
|
},
|
|
{
|
|
"name": "Bambu PA6-CF @BBL A1",
|
|
"sub_path": "filament/Bambu PA6-CF @BBL A1.json"
|
|
},
|
|
{
|
|
"name": "Bambu PA6-GF @BBL X1C",
|
|
"sub_path": "filament/Bambu PA6-GF @BBL X1C.json"
|
|
},
|
|
{
|
|
"name": "Bambu PA6-GF @BBL P1P",
|
|
"sub_path": "filament/Bambu PA6-GF @BBL P1P.json"
|
|
},
|
|
{
|
|
"name": "Bambu PA6-GF @BBL A1",
|
|
"sub_path": "filament/Bambu PA6-GF @BBL A1.json"
|
|
},
|
|
{
|
|
"name": "Generic HIPS @BBL X1C",
|
|
"sub_path": "filament/Generic HIPS @BBL X1C.json"
|
|
},
|
|
{
|
|
"name": "Generic HIPS @BBL X1C 0.2 nozzle",
|
|
"sub_path": "filament/Generic HIPS @BBL X1C 0.2 nozzle.json"
|
|
},
|
|
{
|
|
"name": "Generic HIPS @BBL A1M",
|
|
"sub_path": "filament/Generic HIPS @BBL A1M.json"
|
|
},
|
|
{
|
|
"name": "Generic HIPS @BBL A1M 0.2 nozzle",
|
|
"sub_path": "filament/Generic HIPS @BBL A1M 0.2 nozzle.json"
|
|
},
|
|
{
|
|
"name": "Generic HIPS @BBL A1",
|
|
"sub_path": "filament/Generic HIPS @BBL A1.json"
|
|
},
|
|
{
|
|
"name": "Generic HIPS @BBL A1 0.2 nozzle",
|
|
"sub_path": "filament/Generic HIPS @BBL A1 0.2 nozzle.json"
|
|
},
|
|
{
|
|
"name": "Generic PPS-CF @BBL X1E",
|
|
"sub_path": "filament/Generic PPS-CF @BBL X1E.json"
|
|
},
|
|
{
|
|
"name": "Generic PPS @BBL X1E",
|
|
"sub_path": "filament/Generic PPS @BBL X1E.json"
|
|
},
|
|
{
|
|
"name": "Generic PPA-CF @BBL X1E",
|
|
"sub_path": "filament/Generic PPA-CF @BBL X1E.json"
|
|
},
|
|
{
|
|
"name": "Generic PPA-CF @BBL X1C",
|
|
"sub_path": "filament/Generic PPA-CF @BBL X1C.json"
|
|
},
|
|
{
|
|
"name": "Generic PPA-GF @BBL X1C",
|
|
"sub_path": "filament/Generic PPA-GF @BBL X1C.json"
|
|
},
|
|
{
|
|
"name": "Generic PPA-GF @BBL X1E",
|
|
"sub_path": "filament/Generic PPA-GF @BBL X1E.json"
|
|
},
|
|
{
|
|
"name": "Generic PE @BBL X1C",
|
|
"sub_path": "filament/Generic PE @BBL X1C.json"
|
|
},
|
|
{
|
|
"name": "Generic PE @BBL A1",
|
|
"sub_path": "filament/Generic PE @BBL A1.json"
|
|
},
|
|
{
|
|
"name": "Generic PE @BBL A1M",
|
|
"sub_path": "filament/Generic PE @BBL A1M.json"
|
|
},
|
|
{
|
|
"name": "Generic PE-CF @BBL X1C",
|
|
"sub_path": "filament/Generic PE-CF @BBL X1C.json"
|
|
},
|
|
{
|
|
"name": "Generic PE-CF @BBL A1",
|
|
"sub_path": "filament/Generic PE-CF @BBL A1.json"
|
|
},
|
|
{
|
|
"name": "Generic PE-CF @BBL A1M",
|
|
"sub_path": "filament/Generic PE-CF @BBL A1M.json"
|
|
},
|
|
{
|
|
"name": "Generic PP @BBL X1C",
|
|
"sub_path": "filament/Generic PP @BBL X1C.json"
|
|
},
|
|
{
|
|
"name": "Generic PP @BBL A1",
|
|
"sub_path": "filament/Generic PP @BBL A1.json"
|
|
},
|
|
{
|
|
"name": "Generic PP @BBL A1M",
|
|
"sub_path": "filament/Generic PP @BBL A1M.json"
|
|
},
|
|
{
|
|
"name": "Generic PP-CF @BBL X1C",
|
|
"sub_path": "filament/Generic PP-CF @BBL X1C.json"
|
|
},
|
|
{
|
|
"name": "Generic PP-CF @BBL A1",
|
|
"sub_path": "filament/Generic PP-CF @BBL A1.json"
|
|
},
|
|
{
|
|
"name": "Generic PP-GF @BBL X1C",
|
|
"sub_path": "filament/Generic PP-GF @BBL X1C.json"
|
|
},
|
|
{
|
|
"name": "Generic PP-GF @BBL A1",
|
|
"sub_path": "filament/Generic PP-GF @BBL A1.json"
|
|
},
|
|
{
|
|
"name": "Generic EVA @BBL X1C",
|
|
"sub_path": "filament/Generic EVA @BBL X1C.json"
|
|
},
|
|
{
|
|
"name": "Generic EVA @BBL A1",
|
|
"sub_path": "filament/Generic EVA @BBL A1.json"
|
|
},
|
|
{
|
|
"name": "Generic EVA @BBL A1M",
|
|
"sub_path": "filament/Generic EVA @BBL A1M.json"
|
|
},
|
|
{
|
|
"name": "Generic PHA @BBL X1C",
|
|
"sub_path": "filament/Generic PHA @BBL X1C.json"
|
|
},
|
|
{
|
|
"name": "Generic PHA @BBL A1M",
|
|
"sub_path": "filament/Generic PHA @BBL A1M.json"
|
|
},
|
|
{
|
|
"name": "Generic PHA @BBL A1",
|
|
"sub_path": "filament/Generic PHA @BBL A1.json"
|
|
},
|
|
{
|
|
"name": "Generic BVOH @BBL X1C",
|
|
"sub_path": "filament/Generic BVOH @BBL X1C.json"
|
|
},
|
|
{
|
|
"name": "Generic BVOH @BBL A1M",
|
|
"sub_path": "filament/Generic BVOH @BBL A1M.json"
|
|
},
|
|
{
|
|
"name": "Generic BVOH @BBL A1",
|
|
"sub_path": "filament/Generic BVOH @BBL A1.json"
|
|
},
|
|
{
|
|
"name": "PolyTerra PLA @BBL X1C 0.2 nozzle",
|
|
"sub_path": "filament/PolyTerra PLA @BBL X1C 0.2 nozzle.json"
|
|
},
|
|
{
|
|
"name": "PolyTerra PLA @BBL P1P 0.2 nozzle",
|
|
"sub_path": "filament/P1P/PolyTerra PLA @BBL P1P 0.2 nozzle.json"
|
|
},
|
|
{
|
|
"name": "PolyLite PLA @BBL X1C 0.2 nozzle",
|
|
"sub_path": "filament/PolyLite PLA @BBL X1C 0.2 nozzle.json"
|
|
},
|
|
{
|
|
"name": "PolyLite PLA @BBL P1P 0.2 nozzle",
|
|
"sub_path": "filament/P1P/PolyLite PLA @BBL P1P 0.2 nozzle.json"
|
|
},
|
|
{
|
|
"name": "Overture PLA @BBL X1C 0.2 nozzle",
|
|
"sub_path": "filament/Overture PLA @BBL X1C 0.2 nozzle.json"
|
|
},
|
|
{
|
|
"name": "Overture PLA @BBL P1P 0.2 nozzle",
|
|
"sub_path": "filament/Overture PLA @BBL P1P 0.2 nozzle.json"
|
|
},
|
|
{
|
|
"name": "Overture PLA @BBL A1M 0.2 nozzle",
|
|
"sub_path": "filament/Overture PLA @BBL A1M 0.2 nozzle.json"
|
|
},
|
|
{
|
|
"name": "Overture Matte PLA @BBL X1C 0.2 nozzle",
|
|
"sub_path": "filament/Overture Matte PLA @BBL X1C 0.2 nozzle.json"
|
|
},
|
|
{
|
|
"name": "Overture Matte PLA @BBL P1P 0.2 nozzle",
|
|
"sub_path": "filament/Overture Matte PLA @BBL P1P 0.2 nozzle.json"
|
|
},
|
|
{
|
|
"name": "Overture Matte PLA @BBL A1M 0.2 nozzle",
|
|
"sub_path": "filament/Overture Matte PLA @BBL A1M 0.2 nozzle.json"
|
|
},
|
|
{
|
|
"name": "Generic PLA High Speed @BBL X1C 0.2 nozzle",
|
|
"sub_path": "filament/Generic PLA High Speed @BBL X1C 0.2 nozzle.json"
|
|
},
|
|
{
|
|
"name": "Generic PLA High Speed @BBL P1P 0.2 nozzle",
|
|
"sub_path": "filament/Generic PLA High Speed @BBL P1P 0.2 nozzle.json"
|
|
},
|
|
{
|
|
"name": "Generic PLA High Speed @BBL A1M 0.2 nozzle",
|
|
"sub_path": "filament/Generic PLA High Speed @BBL A1M 0.2 nozzle.json"
|
|
},
|
|
{
|
|
"name": "Bambu PLA Glow @BBL X1C 0.2 nozzle",
|
|
"sub_path": "filament/Bambu PLA Glow @BBL X1C 0.2 nozzle.json"
|
|
},
|
|
{
|
|
"name": "Bambu PLA Glow @BBL P1P 0.2 nozzle",
|
|
"sub_path": "filament/Bambu PLA Glow @BBL P1P 0.2 nozzle.json"
|
|
},
|
|
{
|
|
"name": "Bambu PLA Glow @BBL X1E 0.2 nozzle",
|
|
"sub_path": "filament/Bambu PLA Glow @BBL X1E 0.2 nozzle.json"
|
|
},
|
|
{
|
|
"name": "Bambu PLA Glow @BBL X1 0.2 nozzle",
|
|
"sub_path": "filament/Bambu PLA Glow @BBL X1 0.2 nozzle.json"
|
|
},
|
|
{
|
|
"name": "Bambu PETG Basic @BBL A1M 0.4 nozzle",
|
|
"sub_path": "filament/Bambu PETG Basic @BBL A1M 0.4 nozzle.json"
|
|
},
|
|
{
|
|
"name": "Bambu PETG Basic @BBL A1M 0.2 nozzle",
|
|
"sub_path": "filament/Bambu PETG Basic @BBL A1M 0.2 nozzle.json"
|
|
},
|
|
{
|
|
"name": "Bambu PETG Basic @BBL A1M 0.8 nozzle",
|
|
"sub_path": "filament/Bambu PETG Basic @BBL A1M 0.8 nozzle.json"
|
|
},
|
|
{
|
|
"name": "Generic PETG-CF @BBL A1M",
|
|
"sub_path": "filament/P1P/Generic PETG-CF @BBL A1M.json"
|
|
},
|
|
{
|
|
"name": "Bambu PETG-CF @BBL A1M 0.4 nozzle",
|
|
"sub_path": "filament/Bambu PETG-CF @BBL A1M 0.4 nozzle.json"
|
|
},
|
|
{
|
|
"name": "Bambu PET-CF @BBL X1E",
|
|
"sub_path": "filament/Bambu PET-CF @BBL X1E.json"
|
|
},
|
|
{
|
|
"name": "PolyLite PETG @BBL X1C 0.2 nozzle",
|
|
"sub_path": "filament/PolyLite PETG @BBL X1C 0.2 nozzle.json"
|
|
},
|
|
{
|
|
"name": "PolyLite PETG @BBL P1P 0.2 nozzle",
|
|
"sub_path": "filament/PolyLite PETG @BBL P1P 0.2 nozzle.json"
|
|
},
|
|
{
|
|
"name": "PolyLite PETG @BBL A1M 0.2 nozzle",
|
|
"sub_path": "filament/PolyLite PETG @BBL A1M 0.2 nozzle.json"
|
|
},
|
|
{
|
|
"name": "Bambu ABS @BBL X1E",
|
|
"sub_path": "filament/Bambu ABS @BBL X1E.json"
|
|
},
|
|
{
|
|
"name": "Bambu ABS @BBL X1E 0.2 nozzle",
|
|
"sub_path": "filament/Bambu ABS @BBL X1E 0.2 nozzle.json"
|
|
},
|
|
{
|
|
"name": "Bambu ABS @BBL X1E 0.8 nozzle",
|
|
"sub_path": "filament/Bambu ABS @BBL X1E 0.8 nozzle.json"
|
|
},
|
|
{
|
|
"name": "Generic ABS @BBL X1E",
|
|
"sub_path": "filament/Generic ABS @BBL X1E.json"
|
|
},
|
|
{
|
|
"name": "Generic ABS @BBL X1E 0.2 nozzle",
|
|
"sub_path": "filament/Generic ABS @BBL X1E 0.2 nozzle.json"
|
|
},
|
|
{
|
|
"name": "PolyLite ABS @BBL X1E",
|
|
"sub_path": "filament/PolyLite ABS @BBL X1E.json"
|
|
},
|
|
{
|
|
"name": "PolyLite ABS @BBL X1C 0.2 nozzle",
|
|
"sub_path": "filament/PolyLite ABS @BBL X1C 0.2 nozzle.json"
|
|
},
|
|
{
|
|
"name": "PolyLite ABS @BBL P1P 0.2 nozzle",
|
|
"sub_path": "filament/PolyLite ABS @BBL P1P 0.2 nozzle.json"
|
|
},
|
|
{
|
|
"name": "Bambu PC @BBL P1S",
|
|
"sub_path": "filament/Bambu PC @BBL P1S.json"
|
|
},
|
|
{
|
|
"name": "Bambu PC @BBL X1E",
|
|
"sub_path": "filament/Bambu PC @BBL X1E.json"
|
|
},
|
|
{
|
|
"name": "Bambu PC @BBL P1S 0.2 nozzle",
|
|
"sub_path": "filament/Bambu PC @BBL P1S 0.2 nozzle.json"
|
|
},
|
|
{
|
|
"name": "Bambu PC @BBL X1E 0.2 nozzle",
|
|
"sub_path": "filament/Bambu PC @BBL X1E 0.2 nozzle.json"
|
|
},
|
|
{
|
|
"name": "Bambu PC @BBL P1S 0.8 nozzle",
|
|
"sub_path": "filament/Bambu PC @BBL P1S 0.8 nozzle.json"
|
|
},
|
|
{
|
|
"name": "Bambu PC @BBL X1E 0.8 nozzle",
|
|
"sub_path": "filament/Bambu PC @BBL X1E 0.8 nozzle.json"
|
|
},
|
|
{
|
|
"name": "Bambu PC @BBL P1S 0.6 nozzle",
|
|
"sub_path": "filament/Bambu PC @BBL P1S 0.6 nozzle.json"
|
|
},
|
|
{
|
|
"name": "Bambu PC @BBL X1E 0.6 nozzle",
|
|
"sub_path": "filament/Bambu PC @BBL X1E 0.6 nozzle.json"
|
|
},
|
|
{
|
|
"name": "Generic PC @BBL P1S 0.2 nozzle",
|
|
"sub_path": "filament/Generic PC @BBL P1S 0.2 nozzle.json"
|
|
},
|
|
{
|
|
"name": "Generic PC @BBL X1E 0.2 nozzle",
|
|
"sub_path": "filament/Generic PC @BBL X1E 0.2 nozzle.json"
|
|
},
|
|
{
|
|
"name": "Generic PC @BBL P1S",
|
|
"sub_path": "filament/Generic PC @BBL P1S.json"
|
|
},
|
|
{
|
|
"name": "Generic PC @BBL X1E",
|
|
"sub_path": "filament/Generic PC @BBL X1E.json"
|
|
},
|
|
{
|
|
"name": "Generic ASA @BBL X1E 0.2 nozzle",
|
|
"sub_path": "filament/Generic ASA @BBL X1E 0.2 nozzle.json"
|
|
},
|
|
{
|
|
"name": "Generic ASA @BBL X1E",
|
|
"sub_path": "filament/Generic ASA @BBL X1E.json"
|
|
},
|
|
{
|
|
"name": "Bambu ASA @BBL X1E",
|
|
"sub_path": "filament/Bambu ASA @BBL X1E.json"
|
|
},
|
|
{
|
|
"name": "Bambu ASA @BBL X1E 0.2 nozzle",
|
|
"sub_path": "filament/Bambu ASA @BBL X1E 0.2 nozzle.json"
|
|
},
|
|
{
|
|
"name": "Bambu ASA @BBL X1E 0.4 nozzle",
|
|
"sub_path": "filament/Bambu ASA @BBL X1E 0.4 nozzle.json"
|
|
},
|
|
{
|
|
"name": "PolyLite ASA @BBL X1C 0.2 nozzle",
|
|
"sub_path": "filament/PolyLite ASA @BBL X1C 0.2 nozzle.json"
|
|
},
|
|
{
|
|
"name": "PolyLite ASA @BBL X1E",
|
|
"sub_path": "filament/PolyLite ASA @BBL X1E.json"
|
|
},
|
|
{
|
|
"name": "PolyLite ASA @BBL P1P 0.2 nozzle",
|
|
"sub_path": "filament/PolyLite ASA @BBL P1P 0.2 nozzle.json"
|
|
},
|
|
{
|
|
"name": "Bambu Support G @BBL X1E",
|
|
"sub_path": "filament/Bambu Support G @BBL X1E.json"
|
|
},
|
|
{
|
|
"name": "Bambu PA-CF @BBL X1E",
|
|
"sub_path": "filament/Bambu PA-CF @BBL X1E.json"
|
|
},
|
|
{
|
|
"name": "PolyLite ABS @BBL X1E 0.2 nozzle",
|
|
"sub_path": "filament/PolyLite ABS @BBL X1E 0.2 nozzle.json"
|
|
},
|
|
{
|
|
"name": "PolyLite ASA @BBL X1E 0.2 nozzle",
|
|
"sub_path": "filament/PolyLite ASA @BBL X1E 0.2 nozzle.json"
|
|
}
|
|
],
|
|
"machine_list": [
|
|
{
|
|
"name": "fdm_machine_common",
|
|
"sub_path": "machine/fdm_machine_common.json"
|
|
},
|
|
{
|
|
"name": "fdm_bbl_3dp_001_common",
|
|
"sub_path": "machine/fdm_bbl_3dp_001_common.json"
|
|
},
|
|
{
|
|
"name": "Bambu Lab X1 Carbon 0.4 nozzle",
|
|
"sub_path": "machine/Bambu Lab X1 Carbon 0.4 nozzle.json"
|
|
},
|
|
{
|
|
"name": "Bambu Lab X1 0.4 nozzle",
|
|
"sub_path": "machine/Bambu Lab X1 0.4 nozzle.json"
|
|
},
|
|
{
|
|
"name": "Bambu Lab P1P 0.4 nozzle",
|
|
"sub_path": "machine/Bambu Lab P1P 0.4 nozzle.json"
|
|
},
|
|
{
|
|
"name": "Bambu Lab P1S 0.4 nozzle",
|
|
"sub_path": "machine/Bambu Lab P1S 0.4 nozzle.json"
|
|
},
|
|
{
|
|
"name": "Bambu Lab A1 mini 0.4 nozzle",
|
|
"sub_path": "machine/Bambu Lab A1 mini 0.4 nozzle.json"
|
|
},
|
|
{
|
|
"name": "Bambu Lab X1E 0.4 nozzle",
|
|
"sub_path": "machine/Bambu Lab X1E 0.4 nozzle.json"
|
|
},
|
|
{
|
|
"name": "Bambu Lab A1 0.4 nozzle",
|
|
"sub_path": "machine/Bambu Lab A1 0.4 nozzle.json"
|
|
},
|
|
{
|
|
"name": "Bambu Lab X1 Carbon 0.2 nozzle",
|
|
"sub_path": "machine/Bambu Lab X1 Carbon 0.2 nozzle.json"
|
|
},
|
|
{
|
|
"name": "Bambu Lab X1 Carbon 0.6 nozzle",
|
|
"sub_path": "machine/Bambu Lab X1 Carbon 0.6 nozzle.json"
|
|
},
|
|
{
|
|
"name": "Bambu Lab X1 Carbon 0.8 nozzle",
|
|
"sub_path": "machine/Bambu Lab X1 Carbon 0.8 nozzle.json"
|
|
},
|
|
{
|
|
"name": "Bambu Lab X1 0.2 nozzle",
|
|
"sub_path": "machine/Bambu Lab X1 0.2 nozzle.json"
|
|
},
|
|
{
|
|
"name": "Bambu Lab X1 0.8 nozzle",
|
|
"sub_path": "machine/Bambu Lab X1 0.8 nozzle.json"
|
|
},
|
|
{
|
|
"name": "Bambu Lab X1 0.6 nozzle",
|
|
"sub_path": "machine/Bambu Lab X1 0.6 nozzle.json"
|
|
},
|
|
{
|
|
"name": "Bambu Lab P1P 0.2 nozzle",
|
|
"sub_path": "machine/Bambu Lab P1P 0.2 nozzle.json"
|
|
},
|
|
{
|
|
"name": "Bambu Lab P1P 0.6 nozzle",
|
|
"sub_path": "machine/Bambu Lab P1P 0.6 nozzle.json"
|
|
},
|
|
{
|
|
"name": "Bambu Lab P1P 0.8 nozzle",
|
|
"sub_path": "machine/Bambu Lab P1P 0.8 nozzle.json"
|
|
},
|
|
{
|
|
"name": "Bambu Lab P1S 0.2 nozzle",
|
|
"sub_path": "machine/Bambu Lab P1S 0.2 nozzle.json"
|
|
},
|
|
{
|
|
"name": "Bambu Lab P1S 0.6 nozzle",
|
|
"sub_path": "machine/Bambu Lab P1S 0.6 nozzle.json"
|
|
},
|
|
{
|
|
"name": "Bambu Lab P1S 0.8 nozzle",
|
|
"sub_path": "machine/Bambu Lab P1S 0.8 nozzle.json"
|
|
},
|
|
{
|
|
"name": "Bambu Lab A1 mini 0.2 nozzle",
|
|
"sub_path": "machine/Bambu Lab A1 mini 0.2 nozzle.json"
|
|
},
|
|
{
|
|
"name": "Bambu Lab A1 mini 0.6 nozzle",
|
|
"sub_path": "machine/Bambu Lab A1 mini 0.6 nozzle.json"
|
|
},
|
|
{
|
|
"name": "Bambu Lab A1 mini 0.8 nozzle",
|
|
"sub_path": "machine/Bambu Lab A1 mini 0.8 nozzle.json"
|
|
},
|
|
{
|
|
"name": "Bambu Lab X1E 0.2 nozzle",
|
|
"sub_path": "machine/Bambu Lab X1E 0.2 nozzle.json"
|
|
},
|
|
{
|
|
"name": "Bambu Lab X1E 0.6 nozzle",
|
|
"sub_path": "machine/Bambu Lab X1E 0.6 nozzle.json"
|
|
},
|
|
{
|
|
"name": "Bambu Lab X1E 0.8 nozzle",
|
|
"sub_path": "machine/Bambu Lab X1E 0.8 nozzle.json"
|
|
},
|
|
{
|
|
"name": "Bambu Lab A1 0.2 nozzle",
|
|
"sub_path": "machine/Bambu Lab A1 0.2 nozzle.json"
|
|
},
|
|
{
|
|
"name": "Bambu Lab A1 0.6 nozzle",
|
|
"sub_path": "machine/Bambu Lab A1 0.6 nozzle.json"
|
|
},
|
|
{
|
|
"name": "Bambu Lab A1 0.8 nozzle",
|
|
"sub_path": "machine/Bambu Lab A1 0.8 nozzle.json"
|
|
}
|
|
]
|
|
} |